xref: /rk3399_rockchip-uboot/board/nvidia/dalmore/dalmore.c (revision 07067145dee374e970ffc033cff76982e8cf2e19)
1*07067145STom Warren /*
2*07067145STom Warren  * Copyright (c) 2010-2013, NVIDIA CORPORATION.  All rights reserved.
3*07067145STom Warren  *
4*07067145STom Warren  * This program is free software; you can redistribute it and/or modify it
5*07067145STom Warren  * under the terms and conditions of the GNU General Public License,
6*07067145STom Warren  * version 2, as published by the Free Software Foundation.
7*07067145STom Warren  *
8*07067145STom Warren  * This program is distributed in the hope it will be useful, but WITHOUT
9*07067145STom Warren  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10*07067145STom Warren  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
11*07067145STom Warren  * more details.
12*07067145STom Warren  *
13*07067145STom Warren  * You should have received a copy of the GNU General Public License
14*07067145STom Warren  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15*07067145STom Warren  */
16*07067145STom Warren 
17*07067145STom Warren #include <common.h>
18*07067145STom Warren #include <asm/arch/pinmux.h>
19*07067145STom Warren #include "pinmux-config-dalmore.h"
20*07067145STom Warren 
21*07067145STom Warren /*
22*07067145STom Warren  * Routine: pinmux_init
23*07067145STom Warren  * Description: Do individual peripheral pinmux configs
24*07067145STom Warren  */
25*07067145STom Warren void pinmux_init(void)
26*07067145STom Warren {
27*07067145STom Warren 	pinmux_config_table(tegra114_pinmux_common,
28*07067145STom Warren 		ARRAY_SIZE(tegra114_pinmux_common));
29*07067145STom Warren 
30*07067145STom Warren 	pinmux_config_table(unused_pins_lowpower,
31*07067145STom Warren 		ARRAY_SIZE(unused_pins_lowpower));
32*07067145STom Warren }
33