]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/arm926ejs/mx28/mx28.c
i.MX28: Implement boot pads sampling and reporting
[karo-tx-uboot.git] / arch / arm / cpu / arm926ejs / mx28 / mx28.c
1 /*
2  * Freescale i.MX28 common code
3  *
4  * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
5  * on behalf of DENX Software Engineering GmbH
6  *
7  * Based on code from LTIB:
8  * Copyright (C) 2010 Freescale Semiconductor, Inc.
9  *
10  * See file CREDITS for list of people who contributed to this
11  * project.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License as
15  * published by the Free Software Foundation; either version 2 of
16  * the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26  * MA 02111-1307 USA
27  */
28
29 #include <common.h>
30 #include <asm/errno.h>
31 #include <asm/io.h>
32 #include <asm/arch/clock.h>
33 #include <asm/arch/dma.h>
34 #include <asm/arch/gpio.h>
35 #include <asm/arch/iomux.h>
36 #include <asm/arch/imx-regs.h>
37 #include <asm/arch/sys_proto.h>
38
39 DECLARE_GLOBAL_DATA_PTR;
40
41 /* 1 second delay should be plenty of time for block reset. */
42 #define RESET_MAX_TIMEOUT       1000000
43
44 #define MX28_BLOCK_SFTRST       (1 << 31)
45 #define MX28_BLOCK_CLKGATE      (1 << 30)
46
47 /* Lowlevel init isn't used on i.MX28, so just have a dummy here */
48 inline void lowlevel_init(void) {}
49
50 void reset_cpu(ulong ignored) __attribute__((noreturn));
51
52 void reset_cpu(ulong ignored)
53 {
54
55         struct mx28_rtc_regs *rtc_regs =
56                 (struct mx28_rtc_regs *)MXS_RTC_BASE;
57
58         /* Wait 1 uS before doing the actual watchdog reset */
59         writel(1, &rtc_regs->hw_rtc_watchdog);
60         writel(RTC_CTRL_WATCHDOGEN, &rtc_regs->hw_rtc_ctrl_set);
61
62         /* Endless loop, reset will exit from here */
63         for (;;)
64                 ;
65 }
66
67 void enable_caches(void)
68 {
69 #ifndef CONFIG_SYS_ICACHE_OFF
70         icache_enable();
71 #endif
72 #ifndef CONFIG_SYS_DCACHE_OFF
73         dcache_enable();
74 #endif
75 }
76
77 int mx28_wait_mask_set(struct mx28_register_32 *reg, uint32_t mask, int timeout)
78 {
79         while (--timeout) {
80                 if ((readl(&reg->reg) & mask) == mask)
81                         break;
82                 udelay(1);
83         }
84
85         return !timeout;
86 }
87
88 int mx28_wait_mask_clr(struct mx28_register_32 *reg, uint32_t mask, int timeout)
89 {
90         while (--timeout) {
91                 if ((readl(&reg->reg) & mask) == 0)
92                         break;
93                 udelay(1);
94         }
95
96         return !timeout;
97 }
98
99 int mx28_reset_block(struct mx28_register_32 *reg)
100 {
101         /* Clear SFTRST */
102         writel(MX28_BLOCK_SFTRST, &reg->reg_clr);
103
104         if (mx28_wait_mask_clr(reg, MX28_BLOCK_SFTRST, RESET_MAX_TIMEOUT))
105                 return 1;
106
107         /* Clear CLKGATE */
108         writel(MX28_BLOCK_CLKGATE, &reg->reg_clr);
109
110         /* Set SFTRST */
111         writel(MX28_BLOCK_SFTRST, &reg->reg_set);
112
113         /* Wait for CLKGATE being set */
114         if (mx28_wait_mask_set(reg, MX28_BLOCK_CLKGATE, RESET_MAX_TIMEOUT))
115                 return 1;
116
117         /* Clear SFTRST */
118         writel(MX28_BLOCK_SFTRST, &reg->reg_clr);
119
120         if (mx28_wait_mask_clr(reg, MX28_BLOCK_SFTRST, RESET_MAX_TIMEOUT))
121                 return 1;
122
123         /* Clear CLKGATE */
124         writel(MX28_BLOCK_CLKGATE, &reg->reg_clr);
125
126         if (mx28_wait_mask_clr(reg, MX28_BLOCK_CLKGATE, RESET_MAX_TIMEOUT))
127                 return 1;
128
129         return 0;
130 }
131
132 void mx28_fixup_vt(uint32_t start_addr)
133 {
134         uint32_t *vt = (uint32_t *)0x20;
135         int i;
136
137         for (i = 0; i < 8; i++)
138                 vt[i] = start_addr + (4 * i);
139 }
140
141 #ifdef  CONFIG_ARCH_MISC_INIT
142 int arch_misc_init(void)
143 {
144         mx28_fixup_vt(gd->relocaddr);
145         return 0;
146 }
147 #endif
148
149 #ifdef  CONFIG_ARCH_CPU_INIT
150 int arch_cpu_init(void)
151 {
152         struct mx28_clkctrl_regs *clkctrl_regs =
153                 (struct mx28_clkctrl_regs *)MXS_CLKCTRL_BASE;
154         extern uint32_t _start;
155
156         mx28_fixup_vt((uint32_t)&_start);
157
158         /*
159          * Enable NAND clock
160          */
161         /* Clear bypass bit */
162         writel(CLKCTRL_CLKSEQ_BYPASS_GPMI,
163                 &clkctrl_regs->hw_clkctrl_clkseq_set);
164
165         /* Set GPMI clock to ref_gpmi / 12 */
166         clrsetbits_le32(&clkctrl_regs->hw_clkctrl_gpmi,
167                 CLKCTRL_GPMI_CLKGATE | CLKCTRL_GPMI_DIV_MASK, 1);
168
169         udelay(1000);
170
171         /*
172          * Configure GPIO unit
173          */
174         mxs_gpio_init();
175
176 #ifdef  CONFIG_APBH_DMA
177         /* Start APBH DMA */
178         mxs_dma_init();
179 #endif
180
181         return 0;
182 }
183 #endif
184
185 #if defined(CONFIG_DISPLAY_CPUINFO)
186 int print_cpuinfo(void)
187 {
188         struct mx28_spl_data *data = (struct mx28_spl_data *)
189                 ((CONFIG_SYS_TEXT_BASE - sizeof(struct mx28_spl_data)) & ~0xf);
190
191         printf("Freescale i.MX28 family at %d MHz\n",
192                         mxc_get_clock(MXC_ARM_CLK) / 1000000);
193         printf("BOOT:  %s\n", mx28_boot_modes[data->boot_mode_idx].mode);
194         return 0;
195 }
196 #endif
197
198 int do_mx28_showclocks(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
199 {
200         printf("CPU:   %3d MHz\n", mxc_get_clock(MXC_ARM_CLK) / 1000000);
201         printf("BUS:   %3d MHz\n", mxc_get_clock(MXC_AHB_CLK) / 1000000);
202         printf("EMI:   %3d MHz\n", mxc_get_clock(MXC_EMI_CLK));
203         printf("GPMI:  %3d MHz\n", mxc_get_clock(MXC_GPMI_CLK) / 1000000);
204         return 0;
205 }
206
207 /*
208  * Initializes on-chip ethernet controllers.
209  */
210 #ifdef  CONFIG_CMD_NET
211 int cpu_eth_init(bd_t *bis)
212 {
213         struct mx28_clkctrl_regs *clkctrl_regs =
214                 (struct mx28_clkctrl_regs *)MXS_CLKCTRL_BASE;
215
216         /* Turn on ENET clocks */
217         clrbits_le32(&clkctrl_regs->hw_clkctrl_enet,
218                 CLKCTRL_ENET_SLEEP | CLKCTRL_ENET_DISABLE);
219
220         /* Set up ENET PLL for 50 MHz */
221         /* Power on ENET PLL */
222         writel(CLKCTRL_PLL2CTRL0_POWER,
223                 &clkctrl_regs->hw_clkctrl_pll2ctrl0_set);
224
225         udelay(10);
226
227         /* Gate on ENET PLL */
228         writel(CLKCTRL_PLL2CTRL0_CLKGATE,
229                 &clkctrl_regs->hw_clkctrl_pll2ctrl0_clr);
230
231         /* Enable pad output */
232         setbits_le32(&clkctrl_regs->hw_clkctrl_enet, CLKCTRL_ENET_CLK_OUT_EN);
233
234         return 0;
235 }
236 #endif
237
238 static void __mx28_adjust_mac(int dev_id, unsigned char *mac)
239 {
240         mac[0] = 0x00;
241         mac[1] = 0x04; /* Use FSL vendor MAC address by default */
242
243         if (dev_id == 1) /* Let MAC1 be MAC0 + 1 by default */
244                 mac[5] += 1;
245 }
246
247 void mx28_adjust_mac(int dev_id, unsigned char *mac)
248         __attribute__((weak, alias("__mx28_adjust_mac")));
249
250 #ifdef  CONFIG_MX28_FEC_MAC_IN_OCOTP
251
252 #define MXS_OCOTP_MAX_TIMEOUT   1000000
253 void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
254 {
255         struct mx28_ocotp_regs *ocotp_regs =
256                 (struct mx28_ocotp_regs *)MXS_OCOTP_BASE;
257         uint32_t data;
258
259         memset(mac, 0, 6);
260
261         writel(OCOTP_CTRL_RD_BANK_OPEN, &ocotp_regs->hw_ocotp_ctrl_set);
262
263         if (mx28_wait_mask_clr(&ocotp_regs->hw_ocotp_ctrl_reg, OCOTP_CTRL_BUSY,
264                                 MXS_OCOTP_MAX_TIMEOUT)) {
265                 printf("MXS FEC: Can't get MAC from OCOTP\n");
266                 return;
267         }
268
269         data = readl(&ocotp_regs->hw_ocotp_cust0);
270
271         mac[2] = (data >> 24) & 0xff;
272         mac[3] = (data >> 16) & 0xff;
273         mac[4] = (data >> 8) & 0xff;
274         mac[5] = data & 0xff;
275         mx28_adjust_mac(dev_id, mac);
276 }
277 #else
278 void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
279 {
280         memset(mac, 0, 6);
281 }
282 #endif
283
284 int mx28_dram_init(void)
285 {
286         struct mx28_spl_data *data = (struct mx28_spl_data *)
287                 ((CONFIG_SYS_TEXT_BASE - sizeof(struct mx28_spl_data)) & ~0xf);
288
289         if (data->mem_dram_size == 0) {
290                 printf("MX28:\n"
291                         "Error, the RAM size passed up from SPL is 0!\n");
292                 hang();
293         }
294
295         gd->ram_size = data->mem_dram_size;
296         return 0;
297 }
298
299 U_BOOT_CMD(
300         clocks, CONFIG_SYS_MAXARGS, 1, do_mx28_showclocks,
301         "display clocks",
302         ""
303 );