]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/tegra2/board.c
Unified codebase for TX28, TX48, TX51, TX53
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / tegra2 / 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 <asm/io.h>
26 #include <asm/arch/ap20.h>
27 #include <asm/arch/clock.h>
28 #include <asm/arch/funcmux.h>
29 #include <asm/arch/pmc.h>
30 #include <asm/arch/sys_proto.h>
31 #include <asm/arch/tegra2.h>
32
33 DECLARE_GLOBAL_DATA_PTR;
34
35 enum {
36         /* UARTs which we can enable */
37         UARTA   = 1 << 0,
38         UARTB   = 1 << 1,
39         UARTD   = 1 << 3,
40         UART_COUNT = 4,
41 };
42
43 /*
44  * Boot ROM initializes the odmdata in APBDEV_PMC_SCRATCH20_0,
45  * so we are using this value to identify memory size.
46  */
47
48 unsigned int query_sdram_size(void)
49 {
50         struct pmc_ctlr *const pmc = (struct pmc_ctlr *)TEGRA2_PMC_BASE;
51         u32 reg;
52
53         reg = readl(&pmc->pmc_scratch20);
54         debug("pmc->pmc_scratch20 (ODMData) = 0x%08x\n", reg);
55
56         /* bits 31:28 in OdmData are used for RAM size  */
57         switch ((reg) >> 28) {
58         case 1:
59                 return 0x10000000;      /* 256 MB */
60         case 2:
61         default:
62                 return 0x20000000;      /* 512 MB */
63         case 3:
64                 return 0x40000000;      /* 1GB */
65         }
66 }
67
68 int dram_init(void)
69 {
70         /* We do not initialise DRAM here. We just query the size */
71         gd->ram_size = query_sdram_size();
72         return 0;
73 }
74
75 #ifdef CONFIG_DISPLAY_BOARDINFO
76 int checkboard(void)
77 {
78         printf("Board: %s\n", sysinfo.board_string);
79         return 0;
80 }
81 #endif  /* CONFIG_DISPLAY_BOARDINFO */
82
83 #ifdef CONFIG_ARCH_CPU_INIT
84 /*
85  * Note this function is executed by the ARM7TDMI AVP. It does not return
86  * in this case. It is also called once the A9 starts up, but does nothing in
87  * that case.
88  */
89 int arch_cpu_init(void)
90 {
91         /* Fire up the Cortex A9 */
92         tegra2_start();
93
94         /* We didn't do this init in start.S, so do it now */
95         cpu_init_cp15();
96
97         /* Initialize essential common plls */
98         clock_early_init();
99
100         return 0;
101 }
102 #endif
103
104 /**
105  * Set up the specified uarts
106  *
107  * @param uarts_ids     Mask containing UARTs to init (UARTx)
108  */
109 static void setup_uarts(int uart_ids)
110 {
111         static enum periph_id id_for_uart[] = {
112                 PERIPH_ID_UART1,
113                 PERIPH_ID_UART2,
114                 PERIPH_ID_UART3,
115                 PERIPH_ID_UART4,
116         };
117         size_t i;
118
119         for (i = 0; i < UART_COUNT; i++) {
120                 if (uart_ids & (1 << i)) {
121                         enum periph_id id = id_for_uart[i];
122
123                         funcmux_select(id, FUNCMUX_DEFAULT);
124                         clock_ll_start_uart(id);
125                 }
126         }
127 }
128
129 void board_init_uart_f(void)
130 {
131         int uart_ids = 0;       /* bit mask of which UART ids to enable */
132
133 #ifdef CONFIG_TEGRA2_ENABLE_UARTA
134         uart_ids |= UARTA;
135 #endif
136 #ifdef CONFIG_TEGRA2_ENABLE_UARTB
137         uart_ids |= UARTB;
138 #endif
139 #ifdef CONFIG_TEGRA2_ENABLE_UARTD
140         uart_ids |= UARTD;
141 #endif
142         setup_uarts(uart_ids);
143 }
144
145 #ifndef CONFIG_SYS_DCACHE_OFF
146 void enable_caches(void)
147 {
148         /* Enable D-cache. I-cache is already enabled in start.S */
149         dcache_enable();
150 }
151 #endif