]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/tegra-common/board.c
tegra: remove IRDA pinmux synonym
[karo-tx-uboot.git] / arch / arm / cpu / tegra-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 <asm/io.h>
26 #include <asm/arch/clock.h>
27 #include <asm/arch/funcmux.h>
28 #include <asm/arch/tegra.h>
29 #include <asm/arch-tegra/board.h>
30 #include <asm/arch-tegra/pmc.h>
31 #include <asm/arch-tegra/sys_proto.h>
32 #include <asm/arch-tegra/warmboot.h>
33
34 DECLARE_GLOBAL_DATA_PTR;
35
36 enum {
37         /* UARTs which we can enable */
38         UARTA   = 1 << 0,
39         UARTB   = 1 << 1,
40         UARTD   = 1 << 3,
41         UART_COUNT = 4,
42 };
43
44 /*
45  * Boot ROM initializes the odmdata in APBDEV_PMC_SCRATCH20_0,
46  * so we are using this value to identify memory size.
47  */
48
49 unsigned int query_sdram_size(void)
50 {
51         struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
52         u32 reg;
53
54         reg = readl(&pmc->pmc_scratch20);
55         debug("pmc->pmc_scratch20 (ODMData) = 0x%08x\n", reg);
56
57 #if defined(CONFIG_TEGRA20)
58         /* bits 30:28 in OdmData are used for RAM size on T20  */
59         reg &= 0x70000000;
60
61         switch ((reg) >> 28) {
62         case 1:
63                 return 0x10000000;      /* 256 MB */
64         case 0:
65         case 2:
66         default:
67                 return 0x20000000;      /* 512 MB */
68         case 3:
69                 return 0x40000000;      /* 1GB */
70         }
71 #else   /* Tegra30 */
72         /* bits 31:28 in OdmData are used for RAM size on T30  */
73         switch ((reg) >> 28) {
74         case 0:
75         case 1:
76         default:
77                 return 0x10000000;      /* 256 MB */
78         case 2:
79                 return 0x20000000;      /* 512 MB */
80         case 3:
81                 return 0x30000000;      /* 768 MB */
82         case 4:
83                 return 0x40000000;      /* 1GB */
84         case 8:
85                 return 0x7ff00000;      /* 2GB - 1MB */
86         }
87 #endif
88 }
89
90 int dram_init(void)
91 {
92         /* We do not initialise DRAM here. We just query the size */
93         gd->ram_size = query_sdram_size();
94         return 0;
95 }
96
97 #ifdef CONFIG_DISPLAY_BOARDINFO
98 int checkboard(void)
99 {
100         printf("Board: %s\n", sysinfo.board_string);
101         return 0;
102 }
103 #endif  /* CONFIG_DISPLAY_BOARDINFO */
104
105 static int uart_configs[] = {
106 #if defined(CONFIG_TEGRA20)
107  #if defined(CONFIG_TEGRA_UARTA_UAA_UAB)
108         FUNCMUX_UART1_UAA_UAB,
109  #elif defined(CONFIG_TEGRA_UARTA_GPU)
110         FUNCMUX_UART1_GPU,
111  #elif defined(CONFIG_TEGRA_UARTA_SDIO1)
112         FUNCMUX_UART1_SDIO1,
113  #else
114         FUNCMUX_UART1_IRRX_IRTX,
115  #endif
116         FUNCMUX_UART2_UARTB,
117         -1,
118         FUNCMUX_UART4_GMC,
119         -1,
120 #else   /* Tegra30 */
121         FUNCMUX_UART1_ULPI,     /* UARTA */
122         -1,
123         -1,
124         -1,
125         -1,
126 #endif
127 };
128
129 /**
130  * Set up the specified uarts
131  *
132  * @param uarts_ids     Mask containing UARTs to init (UARTx)
133  */
134 static void setup_uarts(int uart_ids)
135 {
136         static enum periph_id id_for_uart[] = {
137                 PERIPH_ID_UART1,
138                 PERIPH_ID_UART2,
139                 PERIPH_ID_UART3,
140                 PERIPH_ID_UART4,
141         };
142         size_t i;
143
144         for (i = 0; i < UART_COUNT; i++) {
145                 if (uart_ids & (1 << i)) {
146                         enum periph_id id = id_for_uart[i];
147
148                         funcmux_select(id, uart_configs[i]);
149                         clock_ll_start_uart(id);
150                 }
151         }
152 }
153
154 void board_init_uart_f(void)
155 {
156         int uart_ids = 0;       /* bit mask of which UART ids to enable */
157
158 #ifdef CONFIG_TEGRA_ENABLE_UARTA
159         uart_ids |= UARTA;
160 #endif
161 #ifdef CONFIG_TEGRA_ENABLE_UARTB
162         uart_ids |= UARTB;
163 #endif
164 #ifdef CONFIG_TEGRA_ENABLE_UARTD
165         uart_ids |= UARTD;
166 #endif
167         setup_uarts(uart_ids);
168 }
169
170 #ifndef CONFIG_SYS_DCACHE_OFF
171 void enable_caches(void)
172 {
173         /* Enable D-cache. I-cache is already enabled in start.S */
174         dcache_enable();
175 }
176 #endif