1*2fc65e28STom Warren /*
2*2fc65e28STom Warren  * Copyright (c) 2010-2013, NVIDIA CORPORATION.  All rights reserved.
3*2fc65e28STom Warren  *
4*2fc65e28STom Warren  * This program is free software; you can redistribute it and/or modify it
5*2fc65e28STom Warren  * under the terms and conditions of the GNU General Public License,
6*2fc65e28STom Warren  * version 2, as published by the Free Software Foundation.
7*2fc65e28STom Warren  *
8*2fc65e28STom Warren  * This program is distributed in the hope it will be useful, but WITHOUT
9*2fc65e28STom Warren  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10*2fc65e28STom Warren  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
11*2fc65e28STom Warren  * more details.
12*2fc65e28STom Warren  *
13*2fc65e28STom Warren  * You should have received a copy of the GNU General Public License
14*2fc65e28STom Warren  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15*2fc65e28STom Warren  */
16*2fc65e28STom Warren 
17*2fc65e28STom Warren /* Tegra114 high-level function multiplexing */
18*2fc65e28STom Warren 
19*2fc65e28STom Warren #ifndef _TEGRA114_FUNCMUX_H_
20*2fc65e28STom Warren #define _TEGRA114_FUNCMUX_H_
21*2fc65e28STom Warren 
22*2fc65e28STom Warren #include <asm/arch-tegra/funcmux.h>
23*2fc65e28STom Warren 
24*2fc65e28STom Warren /* Configs supported by the func mux */
25*2fc65e28STom Warren enum {
26*2fc65e28STom Warren 	FUNCMUX_DEFAULT = 0,	/* default config */
27*2fc65e28STom Warren 
28*2fc65e28STom Warren 	/* UART configs */
29*2fc65e28STom Warren 	FUNCMUX_UART4_GMI = 0,
30*2fc65e28STom Warren };
31*2fc65e28STom Warren #endif	/* _TEGRA114_FUNCMUX_H_ */
32