funcmux.h 463 B

1234567891011121314151617181920212223
  1. /*
  2. * (C) Copyright 2013-2015
  3. * NVIDIA Corporation <www.nvidia.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. /* Tegra210 high-level function multiplexing */
  8. #ifndef _TEGRA210_FUNCMUX_H_
  9. #define _TEGRA210_FUNCMUX_H_
  10. #include <asm/arch-tegra/funcmux.h>
  11. /* Configs supported by the func mux */
  12. enum {
  13. FUNCMUX_DEFAULT = 0, /* default config */
  14. /* UART configs */
  15. FUNCMUX_UART1_UART1 = 0,
  16. FUNCMUX_UART4_UART4 = 0,
  17. };
  18. #endif /* _TEGRA210_FUNCMUX_H_ */