]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/nvidia/common/board.c
tegra2: Tidy UART selection
[karo-tx-uboot.git] / board / nvidia / common / board.c
1 /*
2  *  (C) Copyright 2010,2011
3  *  NVIDIA Corporation <www.nvidia.com>
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 #include <common.h>
25 #include <ns16550.h>
26 #include <asm/io.h>
27 #include <asm/arch/tegra2.h>
28 #include <asm/arch/sys_proto.h>
29
30 #include <asm/arch/clk_rst.h>
31 #include <asm/arch/clock.h>
32 #include <asm/arch/pinmux.h>
33 #include <asm/arch/uart.h>
34 #include "board.h"
35
36 DECLARE_GLOBAL_DATA_PTR;
37
38 enum {
39         /* UARTs which we can enable */
40         UARTA   = 1 << 0,
41         UARTD   = 1 << 3,
42 };
43
44 const struct tegra2_sysinfo sysinfo = {
45         CONFIG_TEGRA2_BOARD_STRING
46 };
47
48 /*
49  * Routine: timer_init
50  * Description: init the timestamp and lastinc value
51  */
52 int timer_init(void)
53 {
54         return 0;
55 }
56
57 static void enable_uart(enum periph_id pid)
58 {
59         /* Assert UART reset and enable clock */
60         reset_set_enable(pid, 1);
61         clock_enable(pid);
62         clock_ll_set_source(pid, 0);    /* UARTx_CLK_SRC = 00, PLLP_OUT0 */
63
64         /* wait for 2us */
65         udelay(2);
66
67         /* De-assert reset to UART */
68         reset_set_enable(pid, 0);
69 }
70
71 /*
72  * Routine: clock_init_uart
73  * Description: init clock for the UART(s)
74  */
75 static void clock_init_uart(int uart_ids)
76 {
77         if (uart_ids & UARTA)
78                 enable_uart(PERIPH_ID_UART1);
79         if (uart_ids & UARTD)
80                 enable_uart(PERIPH_ID_UART4);
81 }
82
83 /*
84  * Routine: pin_mux_uart
85  * Description: setup the pin muxes/tristate values for the UART(s)
86  */
87 static void pin_mux_uart(int uart_ids)
88 {
89         if (uart_ids & UARTA) {
90                 pinmux_set_func(PINGRP_IRRX, PMUX_FUNC_UARTA);
91                 pinmux_set_func(PINGRP_IRTX, PMUX_FUNC_UARTA);
92                 pinmux_tristate_disable(PINGRP_IRRX);
93                 pinmux_tristate_disable(PINGRP_IRTX);
94         }
95         if (uart_ids & UARTD) {
96                 pinmux_set_func(PINGRP_GMC, PMUX_FUNC_UARTD);
97                 pinmux_tristate_disable(PINGRP_GMC);
98         }
99 }
100
101 /*
102  * Routine: board_init
103  * Description: Early hardware init.
104  */
105 int board_init(void)
106 {
107         clock_init();
108         clock_verify();
109
110         /* boot param addr */
111         gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100);
112
113         return 0;
114 }
115
116 #ifdef CONFIG_BOARD_EARLY_INIT_F
117 int board_early_init_f(void)
118 {
119         int uart_ids = 0;       /* bit mask of which UART ids to enable */
120
121 #ifdef CONFIG_TEGRA2_ENABLE_UARTA
122         uart_ids |= UARTA;
123 #endif
124 #ifdef CONFIG_TEGRA2_ENABLE_UARTD
125         uart_ids |= UARTD;
126 #endif
127
128         /* We didn't do this init in start.S, so do it now */
129         cpu_init_cp15();
130
131         /* Initialize essential common plls */
132         clock_early_init();
133
134         /* Initialize UART clocks */
135         clock_init_uart(uart_ids);
136
137         /* Initialize periph pinmuxes */
138         pin_mux_uart(uart_ids);
139
140         /* Initialize periph GPIOs */
141         gpio_config_uart();
142         return 0;
143 }
144 #endif  /* EARLY_INIT */