1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright (c) 2010-2012, NVIDIA CORPORATION. All rights reserved. 4 */ 5 6 /* Tegra30 high-level function multiplexing */ 7 8 #ifndef _TEGRA30_FUNCMUX_H_ 9 #define _TEGRA30_FUNCMUX_H_ 10 11 #include <asm/arch-tegra/funcmux.h> 12 13 /* Configs supported by the func mux */ 14 enum { 15 FUNCMUX_DEFAULT = 0, /* default config */ 16 17 /* UART configs */ 18 FUNCMUX_UART1_ULPI = 0, 19 }; 20 #endif /* _TEGRA30_FUNCMUX_H_ */ 21