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