1*999c6bafSTom Warren /* 2*999c6bafSTom Warren * (C) Copyright 2013 3*999c6bafSTom Warren * NVIDIA Corporation <www.nvidia.com> 4*999c6bafSTom Warren * 5*999c6bafSTom Warren * SPDX-License-Identifier: GPL-2.0+ 6*999c6bafSTom Warren */ 7*999c6bafSTom Warren 8*999c6bafSTom Warren /* Tegra124 high-level function multiplexing */ 9*999c6bafSTom Warren 10*999c6bafSTom Warren #ifndef _TEGRA124_FUNCMUX_H_ 11*999c6bafSTom Warren #define _TEGRA124_FUNCMUX_H_ 12*999c6bafSTom Warren 13*999c6bafSTom Warren #include <asm/arch-tegra/funcmux.h> 14*999c6bafSTom Warren 15*999c6bafSTom Warren /* Configs supported by the func mux */ 16*999c6bafSTom Warren enum { 17*999c6bafSTom Warren FUNCMUX_DEFAULT = 0, /* default config */ 18*999c6bafSTom Warren 19*999c6bafSTom Warren /* UART configs */ 20*999c6bafSTom Warren FUNCMUX_UART1_KBC = 0, 21*999c6bafSTom Warren FUNCMUX_UART4_GPIO = 0, 22*999c6bafSTom Warren }; 23*999c6bafSTom Warren #endif /* _TEGRA124_FUNCMUX_H_ */ 24