funcmux.h 459 B

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