blob: ce9a43598c7951167029aa202204443a30f0beb8 [file] [log] [blame]
Mike Frysinger9171fc82008-03-30 15:46:13 -04001/*
2 * initcode.c - Initialize the processor. This is usually entails things
3 * like external memory, voltage regulators, etc... Note that this file
4 * cannot make any function calls as it may be executed all by itself by
5 * the Blackfin's bootrom in LDR format.
6 *
Mike Frysinger4150cec2011-05-30 13:47:38 -04007 * Copyright (c) 2004-2011 Analog Devices Inc.
Mike Frysinger9171fc82008-03-30 15:46:13 -04008 *
9 * Licensed under the GPL-2 or later.
10 */
11
Mike Frysingerdbda2c62009-11-09 19:44:04 -050012#define BFIN_IN_INITCODE
13
Mike Frysinger9171fc82008-03-30 15:46:13 -040014#include <config.h>
15#include <asm/blackfin.h>
16#include <asm/mach-common/bits/bootrom.h>
Mike Frysinger74398b22008-10-11 21:58:33 -040017#include <asm/mach-common/bits/core.h>
Mike Frysinger9171fc82008-03-30 15:46:13 -040018
Mike Frysingerb1e574d2011-06-06 16:47:31 -040019#define BUG() while (1) { asm volatile("emuexcpt;"); }
20
Mike Frysinger9171fc82008-03-30 15:46:13 -040021#include "serial.h"
22
Sonic Zhanga2979dc2012-08-16 11:56:14 +080023#ifndef __ADSPBF60x__
24#include <asm/mach-common/bits/ebiu.h>
25#include <asm/mach-common/bits/pll.h>
26#else /* __ADSPBF60x__ */
27#include <asm/mach-common/bits/cgu.h>
28
29#define CONFIG_BFIN_GET_DCLK_M \
30 ((CONFIG_CLKIN_HZ*CONFIG_VCO_MULT)/(CONFIG_DCLK_DIV*1000000))
31
32#ifndef CONFIG_DMC_DDRCFG
33#if ((CONFIG_BFIN_GET_DCLK_M != 125) && \
34 (CONFIG_BFIN_GET_DCLK_M != 133) && \
35 (CONFIG_BFIN_GET_DCLK_M != 150) && \
36 (CONFIG_BFIN_GET_DCLK_M != 166) && \
37 (CONFIG_BFIN_GET_DCLK_M != 200) && \
38 (CONFIG_BFIN_GET_DCLK_M != 225) && \
39 (CONFIG_BFIN_GET_DCLK_M != 250))
40#error "DDR2 CLK must be in (125, 133, 150, 166, 200, 225, 250)MHz"
41#endif
42#endif
43
44/* DMC control bits */
45#define SRREQ 0x8
46
47/* DMC status bits */
48#define IDLE 0x1
49#define MEMINITDONE 0x4
50#define SRACK 0x8
51#define PDACK 0x10
52#define DPDACK 0x20
53#define DLLCALDONE 0x2000
54#define PENDREF 0xF0000
55#define PHYRDPHASE 0xF00000
56#define PHYRDPHASE_OFFSET 20
57
58/* DMC DLL control bits */
59#define DLLCALRDCNT 0xFF
60#define DATACYC_OFFSET 8
61
62struct ddr_config {
63 u32 ddr_clk;
64 u32 dmc_ddrctl;
65 u32 dmc_ddrcfg;
66 u32 dmc_ddrtr0;
67 u32 dmc_ddrtr1;
68 u32 dmc_ddrtr2;
69 u32 dmc_ddrmr;
70 u32 dmc_ddrmr1;
71};
72
73static struct ddr_config ddr_config_table[] = {
74 [0] = {
75 .ddr_clk = 125, /* 125MHz */
76 .dmc_ddrctl = 0x00000904,
77 .dmc_ddrcfg = 0x00000422,
78 .dmc_ddrtr0 = 0x20705212,
79 .dmc_ddrtr1 = 0x201003CF,
80 .dmc_ddrtr2 = 0x00320107,
81 .dmc_ddrmr = 0x00000422,
82 .dmc_ddrmr1 = 0x4,
83 },
84 [1] = {
85 .ddr_clk = 133, /* 133MHz */
86 .dmc_ddrctl = 0x00000904,
87 .dmc_ddrcfg = 0x00000422,
88 .dmc_ddrtr0 = 0x20806313,
89 .dmc_ddrtr1 = 0x2013040D,
90 .dmc_ddrtr2 = 0x00320108,
91 .dmc_ddrmr = 0x00000632,
92 .dmc_ddrmr1 = 0x4,
93 },
94 [2] = {
95 .ddr_clk = 150, /* 150MHz */
96 .dmc_ddrctl = 0x00000904,
97 .dmc_ddrcfg = 0x00000422,
98 .dmc_ddrtr0 = 0x20A07323,
99 .dmc_ddrtr1 = 0x20160492,
100 .dmc_ddrtr2 = 0x00320209,
101 .dmc_ddrmr = 0x00000632,
102 .dmc_ddrmr1 = 0x4,
103 },
104 [3] = {
105 .ddr_clk = 166, /* 166MHz */
106 .dmc_ddrctl = 0x00000904,
107 .dmc_ddrcfg = 0x00000422,
108 .dmc_ddrtr0 = 0x20A07323,
109 .dmc_ddrtr1 = 0x2016050E,
110 .dmc_ddrtr2 = 0x00320209,
111 .dmc_ddrmr = 0x00000632,
112 .dmc_ddrmr1 = 0x4,
113 },
114 [4] = {
115 .ddr_clk = 200, /* 200MHz */
116 .dmc_ddrctl = 0x00000904,
117 .dmc_ddrcfg = 0x00000422,
118 .dmc_ddrtr0 = 0x20a07323,
119 .dmc_ddrtr1 = 0x2016050f,
120 .dmc_ddrtr2 = 0x00320509,
121 .dmc_ddrmr = 0x00000632,
122 .dmc_ddrmr1 = 0x4,
123 },
124 [5] = {
125 .ddr_clk = 225, /* 225MHz */
126 .dmc_ddrctl = 0x00000904,
127 .dmc_ddrcfg = 0x00000422,
128 .dmc_ddrtr0 = 0x20E0A424,
129 .dmc_ddrtr1 = 0x302006DB,
130 .dmc_ddrtr2 = 0x0032020D,
131 .dmc_ddrmr = 0x00000842,
132 .dmc_ddrmr1 = 0x4,
133 },
134 [6] = {
135 .ddr_clk = 250, /* 250MHz */
136 .dmc_ddrctl = 0x00000904,
137 .dmc_ddrcfg = 0x00000422,
138 .dmc_ddrtr0 = 0x20E0A424,
139 .dmc_ddrtr1 = 0x3020079E,
140 .dmc_ddrtr2 = 0x0032050D,
141 .dmc_ddrmr = 0x00000842,
142 .dmc_ddrmr1 = 0x4,
143 },
144};
145#endif /* __ADSPBF60x__ */
146
Mike Frysinger9171fc82008-03-30 15:46:13 -0400147__attribute__((always_inline))
Mike Frysingerf790ef62008-12-10 12:33:54 -0500148static inline void serial_init(void)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400149{
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800150 uint32_t uart_base = UART_BASE;
Mike Frysinger635f3302011-04-29 23:23:28 -0400151
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800152#if defined(__ADSPBF54x__) || defined(__ADSPBF60x__)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400153# ifdef BFIN_BOOT_UART_USE_RTS
154# define BFIN_UART_USE_RTS 1
155# else
156# define BFIN_UART_USE_RTS 0
157# endif
158 if (BFIN_UART_USE_RTS && CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART) {
159 size_t i;
160
161 /* force RTS rather than relying on auto RTS */
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800162#if BFIN_UART_HW_VER < 4
Mike Frysingerf9481582009-11-12 18:42:53 -0500163 bfin_write16(&pUART->mcr, bfin_read16(&pUART->mcr) | FCPOL);
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800164#else
165 bfin_write32(&pUART->control, bfin_read32(&pUART->control) |
166 FCPOL);
167#endif
Mike Frysinger9171fc82008-03-30 15:46:13 -0400168
169 /* Wait for the line to clear up. We cannot rely on UART
170 * registers as none of them reflect the status of the RSR.
171 * Instead, we'll sleep for ~10 bit times at 9600 baud.
172 * We can precalc things here by assuming boot values for
173 * PLL rather than loading registers and calculating.
174 * baud = SCLK / (16 ^ (1 - EDBO) * Divisor)
175 * EDB0 = 0
176 * Divisor = (SCLK / baud) / 16
177 * SCLK = baud * 16 * Divisor
178 * SCLK = (0x14 * CONFIG_CLKIN_HZ) / 5
179 * CCLK = (16 * Divisor * 5) * (9600 / 10)
180 * In reality, this will probably be just about 1 second delay,
181 * so assuming 9600 baud is OK (both as a very low and too high
182 * speed as this will buffer things enough).
183 */
184#define _NUMBITS (10) /* how many bits to delay */
185#define _LOWBAUD (9600) /* low baud rate */
186#define _SCLK ((0x14 * CONFIG_CLKIN_HZ) / 5) /* SCLK based on PLL */
187#define _DIVISOR ((_SCLK / _LOWBAUD) / 16) /* UART DLL/DLH */
188#define _NUMINS (3) /* how many instructions in loop */
189#define _CCLK (((16 * _DIVISOR * 5) * (_LOWBAUD / _NUMBITS)) / _NUMINS)
190 i = _CCLK;
191 while (i--)
192 asm volatile("" : : : "memory");
193 }
194#endif
195
Mike Frysinger9171fc82008-03-30 15:46:13 -0400196 if (BFIN_DEBUG_EARLY_SERIAL) {
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800197 int enabled = serial_early_enabled(uart_base);
198
Mike Frysinger635f3302011-04-29 23:23:28 -0400199 serial_early_init(uart_base);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400200
201 /* If the UART is off, that means we need to program
202 * the baud rate ourselves initially.
203 */
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800204 if (!enabled)
Mike Frysinger635f3302011-04-29 23:23:28 -0400205 serial_early_set_baud(uart_base, CONFIG_BAUDRATE);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400206 }
Mike Frysinger9171fc82008-03-30 15:46:13 -0400207}
208
209__attribute__((always_inline))
210static inline void serial_deinit(void)
211{
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800212#if defined(__ADSPBF54x__) || defined(__ADSPBF60x__)
213 uint32_t uart_base = UART_BASE;
Mike Frysinger635f3302011-04-29 23:23:28 -0400214
Mike Frysinger9171fc82008-03-30 15:46:13 -0400215 if (BFIN_UART_USE_RTS && CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART) {
216 /* clear forced RTS rather than relying on auto RTS */
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800217#if BFIN_UART_HW_VER < 4
Mike Frysingerf9481582009-11-12 18:42:53 -0500218 bfin_write16(&pUART->mcr, bfin_read16(&pUART->mcr) & ~FCPOL);
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800219#else
220 bfin_write32(&pUART->control, bfin_read32(&pUART->control) &
221 ~FCPOL);
222#endif
Mike Frysinger9171fc82008-03-30 15:46:13 -0400223 }
224#endif
225}
226
Mike Frysinger9171fc82008-03-30 15:46:13 -0400227__attribute__((always_inline))
228static inline void serial_putc(char c)
229{
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800230 uint32_t uart_base = UART_BASE;
Mike Frysinger635f3302011-04-29 23:23:28 -0400231
Mike Frysinger9171fc82008-03-30 15:46:13 -0400232 if (!BFIN_DEBUG_EARLY_SERIAL)
233 return;
234
235 if (c == '\n')
Mike Frysingeraf2c3732009-04-24 23:22:48 -0400236 serial_putc('\r');
Mike Frysinger9171fc82008-03-30 15:46:13 -0400237
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800238 bfin_write(&pUART->thr, c);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400239
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800240 while (!(_lsr_read(pUART) & TEMT))
Mike Frysinger9171fc82008-03-30 15:46:13 -0400241 continue;
242}
243
Mike Frysinger4150cec2011-05-30 13:47:38 -0400244#include "initcode.h"
245
Mike Frysingerce53fc62010-05-05 02:07:44 -0400246__attribute__((always_inline)) static inline void
247program_nmi_handler(void)
248{
249 u32 tmp1, tmp2;
250
251 /* Older bootroms don't create a dummy NMI handler,
252 * so make one ourselves ASAP in case it fires.
253 */
254 if (CONFIG_BFIN_BOOT_MODE != BFIN_BOOT_BYPASS && !ANOMALY_05000219)
255 return;
256
257 asm volatile (
258 "%0 = RETS;" /* Save current RETS */
259 "CALL 1f;" /* Figure out current PC */
260 "RTN;" /* The simple NMI handler */
261 "1:"
262 "%1 = RETS;" /* Load addr of NMI handler */
263 "RETS = %0;" /* Restore RETS */
264 "[%2] = %1;" /* Write NMI handler */
265 : "=r"(tmp1), "=r"(tmp2) : "ab"(EVT2)
266 );
267}
Mike Frysinger9171fc82008-03-30 15:46:13 -0400268
Mike Frysinger97f265f2008-12-09 17:21:08 -0500269/* Max SCLK can be 133MHz ... dividing that by (2*4) gives
270 * us a freq of 16MHz for SPI which should generally be
Mike Frysinger9171fc82008-03-30 15:46:13 -0400271 * slow enough for the slow reads the bootrom uses.
272 */
Mike Frysinger97f265f2008-12-09 17:21:08 -0500273#if !defined(CONFIG_SPI_FLASH_SLOW_READ) && \
274 ((defined(__ADSPBF52x__) && __SILICON_REVISION__ >= 2) || \
275 (defined(__ADSPBF54x__) && __SILICON_REVISION__ >= 1))
276# define BOOTROM_SUPPORTS_SPI_FAST_READ 1
277#else
278# define BOOTROM_SUPPORTS_SPI_FAST_READ 0
279#endif
Mike Frysinger9171fc82008-03-30 15:46:13 -0400280#ifndef CONFIG_SPI_BAUD_INITBLOCK
Mike Frysinger97f265f2008-12-09 17:21:08 -0500281# define CONFIG_SPI_BAUD_INITBLOCK (BOOTROM_SUPPORTS_SPI_FAST_READ ? 2 : 4)
282#endif
283#ifdef SPI0_BAUD
284# define bfin_write_SPI_BAUD bfin_write_SPI0_BAUD
Mike Frysinger9171fc82008-03-30 15:46:13 -0400285#endif
286
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800287#ifdef __ADSPBF60x__
288
289#ifndef CONFIG_CGU_CTL_VAL
290# define CONFIG_CGU_CTL_VAL ((CONFIG_VCO_MULT << 8) | CONFIG_CLKIN_HALF)
291#endif
292
293#ifndef CONFIG_CGU_DIV_VAL
294# define CONFIG_CGU_DIV_VAL \
295 ((CONFIG_CCLK_DIV << CSEL_P) | \
296 (CONFIG_SCLK0_DIV << S0SEL_P) | \
297 (CONFIG_SCLK_DIV << SYSSEL_P) | \
298 (CONFIG_SCLK1_DIV << S1SEL_P) | \
299 (CONFIG_DCLK_DIV << DSEL_P) | \
300 (CONFIG_OCLK_DIV << OSEL_P))
301#endif
302
303#else /* __ADSPBF60x__ */
304
Mike Frysinger9171fc82008-03-30 15:46:13 -0400305/* PLL_DIV defines */
306#ifndef CONFIG_PLL_DIV_VAL
307# if (CONFIG_CCLK_DIV == 1)
308# define CONFIG_CCLK_ACT_DIV CCLK_DIV1
309# elif (CONFIG_CCLK_DIV == 2)
310# define CONFIG_CCLK_ACT_DIV CCLK_DIV2
311# elif (CONFIG_CCLK_DIV == 4)
312# define CONFIG_CCLK_ACT_DIV CCLK_DIV4
313# elif (CONFIG_CCLK_DIV == 8)
314# define CONFIG_CCLK_ACT_DIV CCLK_DIV8
315# else
316# define CONFIG_CCLK_ACT_DIV CONFIG_CCLK_DIV_not_defined_properly
317# endif
318# define CONFIG_PLL_DIV_VAL (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV)
319#endif
320
321#ifndef CONFIG_PLL_LOCKCNT_VAL
322# define CONFIG_PLL_LOCKCNT_VAL 0x0300
323#endif
324
325#ifndef CONFIG_PLL_CTL_VAL
Mike Frysinger4f6a3132008-06-01 01:26:29 -0400326# define CONFIG_PLL_CTL_VAL (SPORT_HYST | (CONFIG_VCO_MULT << 9) | CONFIG_CLKIN_HALF)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400327#endif
328
Mike Frysinger9171fc82008-03-30 15:46:13 -0400329/* Make sure our voltage value is sane so we don't blow up! */
330#ifndef CONFIG_VR_CTL_VAL
331# define BFIN_CCLK ((CONFIG_CLKIN_HZ * CONFIG_VCO_MULT) / CONFIG_CCLK_DIV)
332# if defined(__ADSPBF533__) || defined(__ADSPBF532__) || defined(__ADSPBF531__)
333# define CCLK_VLEV_120 400000000
334# define CCLK_VLEV_125 533000000
335# elif defined(__ADSPBF537__) || defined(__ADSPBF536__) || defined(__ADSPBF534__)
336# define CCLK_VLEV_120 401000000
337# define CCLK_VLEV_125 401000000
338# elif defined(__ADSPBF561__)
339# define CCLK_VLEV_120 300000000
340# define CCLK_VLEV_125 501000000
341# endif
342# if BFIN_CCLK < CCLK_VLEV_120
343# define CONFIG_VR_CTL_VLEV VLEV_120
344# elif BFIN_CCLK < CCLK_VLEV_125
345# define CONFIG_VR_CTL_VLEV VLEV_125
346# else
347# define CONFIG_VR_CTL_VLEV VLEV_130
348# endif
349# if defined(__ADSPBF52x__) /* TBD; use default */
350# undef CONFIG_VR_CTL_VLEV
351# define CONFIG_VR_CTL_VLEV VLEV_110
352# elif defined(__ADSPBF54x__) /* TBD; use default */
353# undef CONFIG_VR_CTL_VLEV
354# define CONFIG_VR_CTL_VLEV VLEV_120
Mike Frysinger622a8dc2008-10-11 21:54:00 -0400355# elif defined(__ADSPBF538__) || defined(__ADSPBF539__) /* TBD; use default */
356# undef CONFIG_VR_CTL_VLEV
357# define CONFIG_VR_CTL_VLEV VLEV_125
Mike Frysinger9171fc82008-03-30 15:46:13 -0400358# endif
359
360# ifdef CONFIG_BFIN_MAC
361# define CONFIG_VR_CTL_CLKBUF CLKBUFOE
362# else
363# define CONFIG_VR_CTL_CLKBUF 0
364# endif
365
366# if defined(__ADSPBF52x__)
367# define CONFIG_VR_CTL_FREQ FREQ_1000
368# else
369# define CONFIG_VR_CTL_FREQ (GAIN_20 | FREQ_1000)
370# endif
371
372# define CONFIG_VR_CTL_VAL (CONFIG_VR_CTL_CLKBUF | CONFIG_VR_CTL_VLEV | CONFIG_VR_CTL_FREQ)
373#endif
374
Mike Frysingerd347d572008-10-11 21:56:08 -0400375/* some parts do not have an on-chip voltage regulator */
376#if defined(__ADSPBF51x__)
377# define CONFIG_HAS_VR 0
378# undef CONFIG_VR_CTL_VAL
379# define CONFIG_VR_CTL_VAL 0
380#else
381# define CONFIG_HAS_VR 1
382#endif
383
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500384#if CONFIG_MEM_SIZE
Mike Frysinger0d4f24b2008-06-01 01:28:24 -0400385#ifndef EBIU_RSTCTL
386/* Blackfin with SDRAM */
387#ifndef CONFIG_EBIU_SDBCTL_VAL
388# if CONFIG_MEM_SIZE == 16
389# define CONFIG_EBSZ_VAL EBSZ_16
390# elif CONFIG_MEM_SIZE == 32
391# define CONFIG_EBSZ_VAL EBSZ_32
392# elif CONFIG_MEM_SIZE == 64
393# define CONFIG_EBSZ_VAL EBSZ_64
394# elif CONFIG_MEM_SIZE == 128
395# define CONFIG_EBSZ_VAL EBSZ_128
396# elif CONFIG_MEM_SIZE == 256
397# define CONFIG_EBSZ_VAL EBSZ_256
398# elif CONFIG_MEM_SIZE == 512
399# define CONFIG_EBSZ_VAL EBSZ_512
400# else
401# error You need to define CONFIG_EBIU_SDBCTL_VAL or CONFIG_MEM_SIZE
402# endif
403# if CONFIG_MEM_ADD_WDTH == 8
404# define CONFIG_EBCAW_VAL EBCAW_8
405# elif CONFIG_MEM_ADD_WDTH == 9
406# define CONFIG_EBCAW_VAL EBCAW_9
407# elif CONFIG_MEM_ADD_WDTH == 10
408# define CONFIG_EBCAW_VAL EBCAW_10
409# elif CONFIG_MEM_ADD_WDTH == 11
410# define CONFIG_EBCAW_VAL EBCAW_11
411# else
412# error You need to define CONFIG_EBIU_SDBCTL_VAL or CONFIG_MEM_ADD_WDTH
413# endif
414# define CONFIG_EBIU_SDBCTL_VAL (CONFIG_EBCAW_VAL | CONFIG_EBSZ_VAL | EBE)
415#endif
416#endif
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500417#endif
Mike Frysinger0d4f24b2008-06-01 01:28:24 -0400418
Mike Frysinger8ef929a2009-04-04 08:40:13 -0400419/* Conflicting Column Address Widths Causes SDRAM Errors:
420 * EB2CAW and EB3CAW must be the same
421 */
422#if ANOMALY_05000362
423# if ((CONFIG_EBIU_SDBCTL_VAL & 0x30000000) >> 8) != (CONFIG_EBIU_SDBCTL_VAL & 0x00300000)
424# error "Anomaly 05000362: EB2CAW and EB3CAW must be the same"
425# endif
426#endif
427
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800428#endif /* __ADSPBF60x__ */
429
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500430__attribute__((always_inline)) static inline void
431program_early_devices(ADI_BOOT_DATA *bs, uint *sdivB, uint *divB, uint *vcoB)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400432{
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500433 serial_putc('a');
Mike Frysingerad907322009-02-13 17:10:58 -0500434
Mike Frysingerf790ef62008-12-10 12:33:54 -0500435 /* Save the clock pieces that are used in baud rate calculation */
Mike Frysingerf790ef62008-12-10 12:33:54 -0500436 if (BFIN_DEBUG_EARLY_SERIAL || CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART) {
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500437 serial_putc('b');
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800438#ifdef __ADSPBF60x__
439 *sdivB = bfin_read_CGU_DIV();
440 *sdivB = ((*sdivB >> 8) & 0x1f) * ((*sdivB >> 5) & 0x7);
441 *vcoB = (bfin_read_CGU_CTL() >> 8) & 0x7f;
442#else
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500443 *sdivB = bfin_read_PLL_DIV() & 0xf;
444 *vcoB = (bfin_read_PLL_CTL() >> 9) & 0x3f;
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800445#endif
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500446 *divB = serial_early_get_div();
447 serial_putc('c');
Mike Frysingerf790ef62008-12-10 12:33:54 -0500448 }
Mike Frysinger9171fc82008-03-30 15:46:13 -0400449
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500450 serial_putc('d');
Mike Frysingerad907322009-02-13 17:10:58 -0500451
Mike Frysinger9171fc82008-03-30 15:46:13 -0400452#ifdef CONFIG_HW_WATCHDOG
453# ifndef CONFIG_HW_WATCHDOG_TIMEOUT_INITCODE
454# define CONFIG_HW_WATCHDOG_TIMEOUT_INITCODE 20000
455# endif
456 /* Program the watchdog with an initial timeout of ~20 seconds.
457 * Hopefully that should be long enough to load the u-boot LDR
458 * (from wherever) and then the common u-boot code can take over.
459 * In bypass mode, the start.S would have already set a much lower
460 * timeout, so don't clobber that.
461 */
462 if (CONFIG_BFIN_BOOT_MODE != BFIN_BOOT_BYPASS) {
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500463 serial_putc('e');
Bob Liu49c2da52011-12-27 15:05:53 +0800464#ifdef __ADSPBF60x__
465 bfin_write_SEC_GCTL(0x2);
466 SSYNC();
467 bfin_write_SEC_FCTL(0xc1);
468 bfin_write_SEC_SCTL(2, bfin_read_SEC_SCTL(2) | 0x6);
469
470 bfin_write_SEC_CCTL(0x2);
471 SSYNC();
472 bfin_write_SEC_GCTL(0x1);
473 bfin_write_SEC_CCTL(0x1);
474#endif
Mike Frysinger9171fc82008-03-30 15:46:13 -0400475 bfin_write_WDOG_CNT(MSEC_TO_SCLK(CONFIG_HW_WATCHDOG_TIMEOUT_INITCODE));
Bob Liu49c2da52011-12-27 15:05:53 +0800476#if CONFIG_BFIN_BOOT_MODE != BFIN_BOOT_UART
Mike Frysinger9171fc82008-03-30 15:46:13 -0400477 bfin_write_WDOG_CTL(0);
Bob Liu49c2da52011-12-27 15:05:53 +0800478#endif
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500479 serial_putc('f');
Mike Frysinger9171fc82008-03-30 15:46:13 -0400480 }
481#endif
482
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500483 serial_putc('g');
Mike Frysinger9171fc82008-03-30 15:46:13 -0400484
485 /* Blackfin bootroms use the SPI slow read opcode instead of the SPI
486 * fast read, so we need to slow down the SPI clock a lot more during
487 * boot. Once we switch over to u-boot's SPI flash driver, we'll
488 * increase the speed appropriately.
489 */
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800490#ifdef SPI_BAUD
Mike Frysinger97f265f2008-12-09 17:21:08 -0500491 if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER) {
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500492 serial_putc('h');
Mike Frysinger97f265f2008-12-09 17:21:08 -0500493 if (BOOTROM_SUPPORTS_SPI_FAST_READ && CONFIG_SPI_BAUD_INITBLOCK < 4)
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500494 bs->dFlags |= BFLAG_FASTREAD;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400495 bfin_write_SPI_BAUD(CONFIG_SPI_BAUD_INITBLOCK);
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500496 serial_putc('i');
Mike Frysinger97f265f2008-12-09 17:21:08 -0500497 }
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800498#endif
Mike Frysinger9171fc82008-03-30 15:46:13 -0400499
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500500 serial_putc('j');
501}
502
503__attribute__((always_inline)) static inline bool
504maybe_self_refresh(ADI_BOOT_DATA *bs)
505{
506 serial_putc('a');
507
508 if (!CONFIG_MEM_SIZE)
509 return false;
510
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800511#ifdef __ADSPBF60x__
512
513#else /* __ADSPBF60x__ */
514
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500515 /* If external memory is enabled, put it into self refresh first. */
Mike Frysingercca07412010-12-17 15:25:09 -0500516#if defined(EBIU_RSTCTL)
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500517 if (bfin_read_EBIU_RSTCTL() & DDR_SRESET) {
518 serial_putc('b');
519 bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() | SRREQ);
520 return true;
521 }
Mike Frysingercca07412010-12-17 15:25:09 -0500522#elif defined(EBIU_SDGCTL)
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500523 if (bfin_read_EBIU_SDBCTL() & EBE) {
524 serial_putc('b');
525 bfin_write_EBIU_SDGCTL(bfin_read_EBIU_SDGCTL() | SRFS);
526 return true;
527 }
528#endif
529
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800530#endif /* __ADSPBF60x__ */
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500531 serial_putc('c');
532
533 return false;
534}
535
536__attribute__((always_inline)) static inline u16
537program_clocks(ADI_BOOT_DATA *bs, bool put_into_srfs)
538{
539 u16 vr_ctl;
540
541 serial_putc('a');
542
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800543#ifdef __ADSPBF60x__
544 if (bfin_read_DMC0_STAT() & MEMINITDONE) {
545 bfin_write_DMC0_CTL(bfin_read_DMC0_CTL() | SRREQ);
546 SSYNC();
547 while (!(bfin_read_DMC0_STAT() & SRACK))
548 continue;
549 }
550
551 /* Don't set the same value of MSEL and DF to CGU_CTL */
552 if ((bfin_read_CGU_CTL() & (MSEL_MASK | DF_MASK))
553 != CONFIG_CGU_CTL_VAL) {
554 bfin_write_CGU_DIV(CONFIG_CGU_DIV_VAL);
555 bfin_write_CGU_CTL(CONFIG_CGU_CTL_VAL);
556 while ((bfin_read_CGU_STAT() & (CLKSALGN | PLLBP)) ||
557 !(bfin_read_CGU_STAT() & PLLLK))
558 continue;
559 }
560
561 bfin_write_CGU_DIV(CONFIG_CGU_DIV_VAL | UPDT);
562 while (bfin_read_CGU_STAT() & CLKSALGN)
563 continue;
564
565 if (bfin_read_DMC0_STAT() & MEMINITDONE) {
566 bfin_write_DMC0_CTL(bfin_read_DMC0_CTL() & ~SRREQ);
567 SSYNC();
568 while (bfin_read_DMC0_STAT() & SRACK)
569 continue;
570 }
571
572#else /* __ADSPBF60x__ */
573
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500574 vr_ctl = bfin_read_VR_CTL();
575
576 serial_putc('b');
Mike Frysinger9171fc82008-03-30 15:46:13 -0400577
Mike Frysinger74398b22008-10-11 21:58:33 -0400578 /* If we're entering self refresh, make sure it has happened. */
579 if (put_into_srfs)
Mike Frysingercca07412010-12-17 15:25:09 -0500580#if defined(EBIU_RSTCTL)
Mike Frysinger74398b22008-10-11 21:58:33 -0400581 while (!(bfin_read_EBIU_RSTCTL() & SRACK))
Mike Frysinger74398b22008-10-11 21:58:33 -0400582 continue;
Mike Frysingercca07412010-12-17 15:25:09 -0500583#elif defined(EBIU_SDGCTL)
584 while (!(bfin_read_EBIU_SDSTAT() & SDSRA))
585 continue;
586#else
587 ;
588#endif
Mike Frysinger74398b22008-10-11 21:58:33 -0400589
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500590 serial_putc('c');
Mike Frysinger9171fc82008-03-30 15:46:13 -0400591
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400592 /* With newer bootroms, we use the helper function to set up
593 * the memory controller. Older bootroms lacks such helpers
594 * so we do it ourselves.
Mike Frysinger9171fc82008-03-30 15:46:13 -0400595 */
Mike Frysinger74398b22008-10-11 21:58:33 -0400596 if (!ANOMALY_05000386) {
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500597 serial_putc('d');
Mike Frysinger9171fc82008-03-30 15:46:13 -0400598
Mike Frysingerc2e07442009-04-04 08:29:55 -0400599 /* Always programming PLL_LOCKCNT avoids Anomaly 05000430 */
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400600 ADI_SYSCTRL_VALUES memory_settings;
Mike Frysinger5641f342010-10-14 14:29:17 -0400601 uint32_t actions = SYSCTRL_WRITE | SYSCTRL_PLLCTL | SYSCTRL_LOCKCNT;
602 if (!ANOMALY_05000440)
603 actions |= SYSCTRL_PLLDIV;
Mike Frysingerd347d572008-10-11 21:56:08 -0400604 if (CONFIG_HAS_VR) {
605 actions |= SYSCTRL_VRCTL;
606 if (CONFIG_VR_CTL_VAL & FREQ_MASK)
607 actions |= SYSCTRL_INTVOLTAGE;
608 else
609 actions |= SYSCTRL_EXTVOLTAGE;
610 memory_settings.uwVrCtl = CONFIG_VR_CTL_VAL;
611 } else
612 actions |= SYSCTRL_EXTVOLTAGE;
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400613 memory_settings.uwPllCtl = CONFIG_PLL_CTL_VAL;
614 memory_settings.uwPllDiv = CONFIG_PLL_DIV_VAL;
615 memory_settings.uwPllLockCnt = CONFIG_PLL_LOCKCNT_VAL;
Mike Frysinger3986e982008-12-06 18:06:58 -0500616#if ANOMALY_05000432
617 bfin_write_SIC_IWR1(0);
618#endif
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500619 serial_putc('e');
Mike Frysingerd347d572008-10-11 21:56:08 -0400620 bfrom_SysControl(actions, &memory_settings, NULL);
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500621 serial_putc('f');
Mike Frysinger5641f342010-10-14 14:29:17 -0400622 if (ANOMALY_05000440)
623 bfin_write_PLL_DIV(CONFIG_PLL_DIV_VAL);
Mike Frysinger3986e982008-12-06 18:06:58 -0500624#if ANOMALY_05000432
625 bfin_write_SIC_IWR1(-1);
626#endif
Mike Frysingerce1fe4b2009-04-04 08:09:24 -0400627#if ANOMALY_05000171
628 bfin_write_SICA_IWR0(-1);
629 bfin_write_SICA_IWR1(-1);
630#endif
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500631 serial_putc('g');
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400632 } else {
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500633 serial_putc('h');
Mike Frysinger74398b22008-10-11 21:58:33 -0400634
635 /* Disable all peripheral wakeups except for the PLL event. */
636#ifdef SIC_IWR0
637 bfin_write_SIC_IWR0(1);
638 bfin_write_SIC_IWR1(0);
639# ifdef SIC_IWR2
640 bfin_write_SIC_IWR2(0);
641# endif
642#elif defined(SICA_IWR0)
643 bfin_write_SICA_IWR0(1);
644 bfin_write_SICA_IWR1(0);
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800645#elif defined(SIC_IWR)
Mike Frysinger74398b22008-10-11 21:58:33 -0400646 bfin_write_SIC_IWR(1);
647#endif
648
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500649 serial_putc('i');
Mike Frysinger9171fc82008-03-30 15:46:13 -0400650
Mike Frysingerc2e07442009-04-04 08:29:55 -0400651 /* Always programming PLL_LOCKCNT avoids Anomaly 05000430 */
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400652 bfin_write_PLL_LOCKCNT(CONFIG_PLL_LOCKCNT_VAL);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400653
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500654 serial_putc('j');
Mike Frysinger9171fc82008-03-30 15:46:13 -0400655
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400656 /* Only reprogram when needed to avoid triggering unnecessary
657 * PLL relock sequences.
658 */
Mike Frysinger74398b22008-10-11 21:58:33 -0400659 if (vr_ctl != CONFIG_VR_CTL_VAL) {
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500660 serial_putc('?');
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400661 bfin_write_VR_CTL(CONFIG_VR_CTL_VAL);
662 asm("idle;");
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500663 serial_putc('!');
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400664 }
665
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500666 serial_putc('k');
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400667
668 bfin_write_PLL_DIV(CONFIG_PLL_DIV_VAL);
669
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500670 serial_putc('l');
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400671
672 /* Only reprogram when needed to avoid triggering unnecessary
673 * PLL relock sequences.
674 */
Mike Frysinger48ab1502009-04-04 08:10:22 -0400675 if (ANOMALY_05000242 || bfin_read_PLL_CTL() != CONFIG_PLL_CTL_VAL) {
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500676 serial_putc('?');
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400677 bfin_write_PLL_CTL(CONFIG_PLL_CTL_VAL);
678 asm("idle;");
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500679 serial_putc('!');
Mike Frysinger09dc6b02008-06-01 01:29:57 -0400680 }
Mike Frysinger74398b22008-10-11 21:58:33 -0400681
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500682 serial_putc('m');
Mike Frysinger74398b22008-10-11 21:58:33 -0400683
684 /* Restore all peripheral wakeups. */
685#ifdef SIC_IWR0
686 bfin_write_SIC_IWR0(-1);
687 bfin_write_SIC_IWR1(-1);
688# ifdef SIC_IWR2
689 bfin_write_SIC_IWR2(-1);
690# endif
691#elif defined(SICA_IWR0)
692 bfin_write_SICA_IWR0(-1);
693 bfin_write_SICA_IWR1(-1);
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800694#elif defined(SIC_IWR)
Mike Frysinger74398b22008-10-11 21:58:33 -0400695 bfin_write_SIC_IWR(-1);
696#endif
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500697
698 serial_putc('n');
Mike Frysinger9171fc82008-03-30 15:46:13 -0400699 }
700
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800701#endif /* __ADSPBF60x__ */
702
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500703 serial_putc('o');
704
705 return vr_ctl;
706}
707
708__attribute__((always_inline)) static inline void
709update_serial_clocks(ADI_BOOT_DATA *bs, uint sdivB, uint divB, uint vcoB)
710{
711 serial_putc('a');
Mike Frysinger74398b22008-10-11 21:58:33 -0400712
Mike Frysinger9171fc82008-03-30 15:46:13 -0400713 /* Since we've changed the SCLK above, we may need to update
714 * the UART divisors (UART baud rates are based on SCLK).
Mike Frysingerf790ef62008-12-10 12:33:54 -0500715 * Do the division by hand as there are no native instructions
716 * for dividing which means we'd generate a libgcc reference.
Mike Frysinger9171fc82008-03-30 15:46:13 -0400717 */
Mike Frysingerf790ef62008-12-10 12:33:54 -0500718 if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART) {
719 unsigned int sdivR, vcoR;
Mike Frysingerf790ef62008-12-10 12:33:54 -0500720 int dividend = sdivB * divB * vcoR;
721 int divisor = vcoB * sdivR;
722 unsigned int quotient;
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800723
724 serial_putc('b');
725
726#ifdef __ADSPBF60x__
727 sdivR = bfin_read_CGU_DIV();
728 sdivR = ((sdivR >> 8) & 0x1f) * ((sdivR >> 5) & 0x7);
729 vcoR = (bfin_read_CGU_CTL() >> 8) & 0x7f;
730#else
731 sdivR = bfin_read_PLL_DIV() & 0xf;
732 vcoR = (bfin_read_PLL_CTL() >> 9) & 0x3f;
733#endif
734
Mike Frysingerf790ef62008-12-10 12:33:54 -0500735 for (quotient = 0; dividend > 0; ++quotient)
736 dividend -= divisor;
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800737 serial_early_put_div(quotient - ANOMALY_05000230);
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500738 serial_putc('c');
Mike Frysingerf790ef62008-12-10 12:33:54 -0500739 }
Mike Frysinger9171fc82008-03-30 15:46:13 -0400740
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500741 serial_putc('d');
742}
743
744__attribute__((always_inline)) static inline void
745program_memory_controller(ADI_BOOT_DATA *bs, bool put_into_srfs)
746{
747 serial_putc('a');
748
749 if (!CONFIG_MEM_SIZE)
750 return;
751
752 serial_putc('b');
Mike Frysinger74398b22008-10-11 21:58:33 -0400753
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800754#ifdef __ADSPBF60x__
755 int dlldatacycle;
756 int dll_ctl;
757 int i = 0;
758
759 if (CONFIG_BFIN_GET_DCLK_M == 125)
760 i = 0;
761 else if (CONFIG_BFIN_GET_DCLK_M == 133)
762 i = 1;
763 else if (CONFIG_BFIN_GET_DCLK_M == 150)
764 i = 2;
765 else if (CONFIG_BFIN_GET_DCLK_M == 166)
766 i = 3;
767 else if (CONFIG_BFIN_GET_DCLK_M == 200)
768 i = 4;
769 else if (CONFIG_BFIN_GET_DCLK_M == 225)
770 i = 5;
771 else if (CONFIG_BFIN_GET_DCLK_M == 250)
772 i = 6;
773
774#if 0
775 for (i = 0; i < ARRAY_SIZE(ddr_config_table); i++)
776 if (CONFIG_BFIN_GET_DCLK_M == ddr_config_table[i].ddr_clk)
777 break;
778#endif
779
780#ifndef CONFIG_DMC_DDRCFG
781 bfin_write_DMC0_CFG(ddr_config_table[i].dmc_ddrcfg);
782#else
783 bfin_write_DMC0_CFG(CONFIG_DMC_DDRCFG);
784#endif
785#ifndef CONFIG_DMC_DDRTR0
786 bfin_write_DMC0_TR0(ddr_config_table[i].dmc_ddrtr0);
787#else
788 bfin_write_DMC0_TR0(CONFIG_DMC_DDRTR0);
789#endif
790#ifndef CONFIG_DMC_DDRTR1
791 bfin_write_DMC0_TR1(ddr_config_table[i].dmc_ddrtr1);
792#else
793 bfin_write_DMC0_TR1(CONFIG_DMC_DDRTR1);
794#endif
795#ifndef CONFIG_DMC_DDRTR2
796 bfin_write_DMC0_TR2(ddr_config_table[i].dmc_ddrtr2);
797#else
798 bfin_write_DMC0_TR2(CONFIG_DMC_DDRTR2);
799#endif
800#ifndef CONFIG_DMC_DDRMR
801 bfin_write_DMC0_MR(ddr_config_table[i].dmc_ddrmr);
802#else
803 bfin_write_DMC0_MR(CONFIG_DMC_DDRMR);
804#endif
805#ifndef CONFIG_DMC_DDREMR1
806 bfin_write_DMC0_EMR1(ddr_config_table[i].dmc_ddrmr1);
807#else
808 bfin_write_DMC0_EMR1(CONFIG_DMC_DDREMR1);
809#endif
810#ifndef CONFIG_DMC_DDRCTL
811 bfin_write_DMC0_CTL(ddr_config_table[i].dmc_ddrctl);
812#else
813 bfin_write_DMC0_CTL(CONFIG_DMC_DDRCTL);
814#endif
815
816 SSYNC();
817 while (!(bfin_read_DMC0_STAT() & MEMINITDONE))
818 continue;
819
820 dlldatacycle = (bfin_read_DMC0_STAT() & PHYRDPHASE) >>
821 PHYRDPHASE_OFFSET;
822 dll_ctl = bfin_read_DMC0_DLLCTL();
823 dll_ctl &= 0x0ff;
824 bfin_write_DMC0_DLLCTL(dll_ctl | (dlldatacycle << DATACYC_OFFSET));
825
826 SSYNC();
827 while (!(bfin_read_DMC0_STAT() & DLLCALDONE))
828 continue;
829 serial_putc('!');
830#else /* __ADSPBF60x__ */
831
Mike Frysinger74398b22008-10-11 21:58:33 -0400832 /* Program the external memory controller before we come out of
833 * self-refresh. This only works with our SDRAM controller.
834 */
Mike Frysingercca07412010-12-17 15:25:09 -0500835#ifdef EBIU_SDGCTL
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500836# ifdef CONFIG_EBIU_SDRRC_VAL
Mike Frysinger74398b22008-10-11 21:58:33 -0400837 bfin_write_EBIU_SDRRC(CONFIG_EBIU_SDRRC_VAL);
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500838# endif
839# ifdef CONFIG_EBIU_SDBCTL_VAL
Mike Frysinger74398b22008-10-11 21:58:33 -0400840 bfin_write_EBIU_SDBCTL(CONFIG_EBIU_SDBCTL_VAL);
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500841# endif
842# ifdef CONFIG_EBIU_SDGCTL_VAL
Mike Frysinger74398b22008-10-11 21:58:33 -0400843 bfin_write_EBIU_SDGCTL(CONFIG_EBIU_SDGCTL_VAL);
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500844# endif
Mike Frysinger74398b22008-10-11 21:58:33 -0400845#endif
846
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500847 serial_putc('c');
Mike Frysinger74398b22008-10-11 21:58:33 -0400848
849 /* Now that we've reprogrammed, take things out of self refresh. */
850 if (put_into_srfs)
Mike Frysingercca07412010-12-17 15:25:09 -0500851#if defined(EBIU_RSTCTL)
Mike Frysinger74398b22008-10-11 21:58:33 -0400852 bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() & ~(SRREQ));
Mike Frysingercca07412010-12-17 15:25:09 -0500853#elif defined(EBIU_SDGCTL)
Mike Frysinger74398b22008-10-11 21:58:33 -0400854 bfin_write_EBIU_SDGCTL(bfin_read_EBIU_SDGCTL() & ~(SRFS));
855#endif
856
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500857 serial_putc('d');
Mike Frysinger74398b22008-10-11 21:58:33 -0400858
859 /* Our DDR controller sucks and cannot be programmed while in
860 * self-refresh. So we have to pull it out before programming.
861 */
862#ifdef EBIU_RSTCTL
Mike Frysinger7527fee2009-11-09 19:38:23 -0500863# ifdef CONFIG_EBIU_RSTCTL_VAL
Mike Frysinger74398b22008-10-11 21:58:33 -0400864 bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() | 0x1 /*DDRSRESET*/ | CONFIG_EBIU_RSTCTL_VAL);
Mike Frysinger7527fee2009-11-09 19:38:23 -0500865# endif
866# ifdef CONFIG_EBIU_DDRCTL0_VAL
Mike Frysinger74398b22008-10-11 21:58:33 -0400867 bfin_write_EBIU_DDRCTL0(CONFIG_EBIU_DDRCTL0_VAL);
Mike Frysinger7527fee2009-11-09 19:38:23 -0500868# endif
869# ifdef CONFIG_EBIU_DDRCTL1_VAL
Mike Frysinger74398b22008-10-11 21:58:33 -0400870 bfin_write_EBIU_DDRCTL1(CONFIG_EBIU_DDRCTL1_VAL);
Mike Frysinger7527fee2009-11-09 19:38:23 -0500871# endif
872# ifdef CONFIG_EBIU_DDRCTL2_VAL
Mike Frysinger74398b22008-10-11 21:58:33 -0400873 bfin_write_EBIU_DDRCTL2(CONFIG_EBIU_DDRCTL2_VAL);
Mike Frysinger7527fee2009-11-09 19:38:23 -0500874# endif
Mike Frysinger74398b22008-10-11 21:58:33 -0400875# ifdef CONFIG_EBIU_DDRCTL3_VAL
876 /* default is disable, so don't need to force this */
877 bfin_write_EBIU_DDRCTL3(CONFIG_EBIU_DDRCTL3_VAL);
878# endif
879# ifdef CONFIG_EBIU_DDRQUE_VAL
880 bfin_write_EBIU_DDRQUE(bfin_read_EBIU_DDRQUE() | CONFIG_EBIU_DDRQUE_VAL);
881# endif
882#endif
883
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800884#endif /* __ADSPBF60x__ */
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500885 serial_putc('e');
886}
887
888__attribute__((always_inline)) static inline void
889check_hibernation(ADI_BOOT_DATA *bs, u16 vr_ctl, bool put_into_srfs)
890{
891 serial_putc('a');
892
893 if (!CONFIG_MEM_SIZE)
894 return;
895
896 serial_putc('b');
Mike Frysinger74398b22008-10-11 21:58:33 -0400897
898 /* Are we coming out of hibernate (suspend to memory) ?
899 * The memory layout is:
900 * 0x0: hibernate magic for anomaly 307 (0xDEADBEEF)
901 * 0x4: return address
902 * 0x8: stack pointer
903 *
904 * SCKELOW is unreliable on older parts (anomaly 307)
905 */
906 if (ANOMALY_05000307 || vr_ctl & 0x8000) {
907 uint32_t *hibernate_magic = 0;
Sonic Zhanga2979dc2012-08-16 11:56:14 +0800908
909 SSYNC();
Mike Frysinger74398b22008-10-11 21:58:33 -0400910 if (hibernate_magic[0] == 0xDEADBEEF) {
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500911 serial_putc('c');
Mike Frysinger74398b22008-10-11 21:58:33 -0400912 bfin_write_EVT15(hibernate_magic[1]);
913 bfin_write_IMASK(EVT_IVG15);
914 __asm__ __volatile__ (
915 /* load reti early to avoid anomaly 281 */
916 "reti = %0;"
917 /* clear hibernate magic */
918 "[%0] = %1;"
919 /* load stack pointer */
920 "SP = [%0 + 8];"
921 /* lower ourselves from reset ivg to ivg15 */
922 "raise 15;"
923 "rti;"
924 :
925 : "p"(hibernate_magic), "d"(0x2000 /* jump.s 0 */)
926 );
927 }
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500928 serial_putc('d');
Mike Frysinger74398b22008-10-11 21:58:33 -0400929 }
930
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500931 serial_putc('e');
932}
933
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500934BOOTROM_CALLED_FUNC_ATTR
935void initcode(ADI_BOOT_DATA *bs)
936{
937 ADI_BOOT_DATA bootstruct_scratch;
938
Mike Frysingerce53fc62010-05-05 02:07:44 -0400939 /* Setup NMI handler before anything else */
940 program_nmi_handler();
941
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500942 serial_init();
943
944 serial_putc('A');
945
946 /* If the bootstruct is NULL, then it's because we're loading
947 * dynamically and not via LDR (bootrom). So set the struct to
948 * some scratch space.
949 */
950 if (!bs)
951 bs = &bootstruct_scratch;
952
953 serial_putc('B');
954 bool put_into_srfs = maybe_self_refresh(bs);
955
956 serial_putc('C');
957 uint sdivB, divB, vcoB;
958 program_early_devices(bs, &sdivB, &divB, &vcoB);
959
960 serial_putc('D');
961 u16 vr_ctl = program_clocks(bs, put_into_srfs);
962
963 serial_putc('E');
964 update_serial_clocks(bs, sdivB, divB, vcoB);
965
966 serial_putc('F');
967 program_memory_controller(bs, put_into_srfs);
968
969 serial_putc('G');
970 check_hibernation(bs, vr_ctl, put_into_srfs);
971
972 serial_putc('H');
973 program_async_controller(bs);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400974
Mike Frysinger02778f22009-04-24 23:39:41 -0400975#ifdef CONFIG_BFIN_BOOTROM_USES_EVT1
Mike Frysingerdbda2c62009-11-09 19:44:04 -0500976 serial_putc('I');
Mike Frysingerb30453a2010-04-29 02:49:41 -0400977 /* Tell the bootrom where our entry point is so that it knows
978 * where to jump to when finishing processing the LDR. This
979 * allows us to avoid small jump blocks in the LDR, and also
980 * works around anomaly 05000389 (init address in external
981 * memory causes bootrom to trigger external addressing IVHW).
982 */
Mike Frysinger7e1d2122008-10-18 04:04:49 -0400983 if (CONFIG_BFIN_BOOT_MODE != BFIN_BOOT_BYPASS)
984 bfin_write_EVT1(CONFIG_SYS_MONITOR_BASE);
Mike Frysinger02778f22009-04-24 23:39:41 -0400985#endif
Mike Frysinger7e1d2122008-10-18 04:04:49 -0400986
Mike Frysinger9171fc82008-03-30 15:46:13 -0400987 serial_putc('>');
988 serial_putc('\n');
989
990 serial_deinit();
991}