]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/blackfin/cpu/initcode.c
Blackfin: expand EVT1 usage documentation a bit more
[karo-tx-uboot.git] / arch / blackfin / cpu / initcode.c
1 /*
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  *
7  * Copyright (c) 2004-2008 Analog Devices Inc.
8  *
9  * Licensed under the GPL-2 or later.
10  */
11
12 #define BFIN_IN_INITCODE
13
14 #include <config.h>
15 #include <asm/blackfin.h>
16 #include <asm/mach-common/bits/bootrom.h>
17 #include <asm/mach-common/bits/core.h>
18 #include <asm/mach-common/bits/ebiu.h>
19 #include <asm/mach-common/bits/pll.h>
20 #include <asm/mach-common/bits/uart.h>
21
22 #include "serial.h"
23
24 __attribute__((always_inline))
25 static inline void serial_init(void)
26 {
27 #ifdef __ADSPBF54x__
28 # ifdef BFIN_BOOT_UART_USE_RTS
29 #  define BFIN_UART_USE_RTS 1
30 # else
31 #  define BFIN_UART_USE_RTS 0
32 # endif
33         if (BFIN_UART_USE_RTS && CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART) {
34                 size_t i;
35
36                 /* force RTS rather than relying on auto RTS */
37                 bfin_write16(&pUART->mcr, bfin_read16(&pUART->mcr) | FCPOL);
38
39                 /* Wait for the line to clear up.  We cannot rely on UART
40                  * registers as none of them reflect the status of the RSR.
41                  * Instead, we'll sleep for ~10 bit times at 9600 baud.
42                  * We can precalc things here by assuming boot values for
43                  * PLL rather than loading registers and calculating.
44                  *      baud    = SCLK / (16 ^ (1 - EDBO) * Divisor)
45                  *      EDB0    = 0
46                  *      Divisor = (SCLK / baud) / 16
47                  *      SCLK    = baud * 16 * Divisor
48                  *      SCLK    = (0x14 * CONFIG_CLKIN_HZ) / 5
49                  *      CCLK    = (16 * Divisor * 5) * (9600 / 10)
50                  * In reality, this will probably be just about 1 second delay,
51                  * so assuming 9600 baud is OK (both as a very low and too high
52                  * speed as this will buffer things enough).
53                  */
54 #define _NUMBITS (10)                                   /* how many bits to delay */
55 #define _LOWBAUD (9600)                                 /* low baud rate */
56 #define _SCLK    ((0x14 * CONFIG_CLKIN_HZ) / 5)         /* SCLK based on PLL */
57 #define _DIVISOR ((_SCLK / _LOWBAUD) / 16)              /* UART DLL/DLH */
58 #define _NUMINS  (3)                                    /* how many instructions in loop */
59 #define _CCLK    (((16 * _DIVISOR * 5) * (_LOWBAUD / _NUMBITS)) / _NUMINS)
60                 i = _CCLK;
61                 while (i--)
62                         asm volatile("" : : : "memory");
63         }
64 #endif
65
66         if (BFIN_DEBUG_EARLY_SERIAL) {
67                 int ucen = bfin_read16(&pUART->gctl) & UCEN;
68                 serial_early_init();
69
70                 /* If the UART is off, that means we need to program
71                  * the baud rate ourselves initially.
72                  */
73                 if (ucen != UCEN)
74                         serial_early_set_baud(CONFIG_BAUDRATE);
75         }
76 }
77
78 __attribute__((always_inline))
79 static inline void serial_deinit(void)
80 {
81 #ifdef __ADSPBF54x__
82         if (BFIN_UART_USE_RTS && CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART) {
83                 /* clear forced RTS rather than relying on auto RTS */
84                 bfin_write16(&pUART->mcr, bfin_read16(&pUART->mcr) & ~FCPOL);
85         }
86 #endif
87 }
88
89 __attribute__((always_inline))
90 static inline void serial_putc(char c)
91 {
92         if (!BFIN_DEBUG_EARLY_SERIAL)
93                 return;
94
95         if (c == '\n')
96                 serial_putc('\r');
97
98         bfin_write16(&pUART->thr, c);
99
100         while (!(bfin_read16(&pUART->lsr) & TEMT))
101                 continue;
102 }
103
104
105 /* Max SCLK can be 133MHz ... dividing that by (2*4) gives
106  * us a freq of 16MHz for SPI which should generally be
107  * slow enough for the slow reads the bootrom uses.
108  */
109 #if !defined(CONFIG_SPI_FLASH_SLOW_READ) && \
110     ((defined(__ADSPBF52x__) && __SILICON_REVISION__ >= 2) || \
111      (defined(__ADSPBF54x__) && __SILICON_REVISION__ >= 1))
112 # define BOOTROM_SUPPORTS_SPI_FAST_READ 1
113 #else
114 # define BOOTROM_SUPPORTS_SPI_FAST_READ 0
115 #endif
116 #ifndef CONFIG_SPI_BAUD_INITBLOCK
117 # define CONFIG_SPI_BAUD_INITBLOCK (BOOTROM_SUPPORTS_SPI_FAST_READ ? 2 : 4)
118 #endif
119 #ifdef SPI0_BAUD
120 # define bfin_write_SPI_BAUD bfin_write_SPI0_BAUD
121 #endif
122
123 /* PLL_DIV defines */
124 #ifndef CONFIG_PLL_DIV_VAL
125 # if (CONFIG_CCLK_DIV == 1)
126 #  define CONFIG_CCLK_ACT_DIV CCLK_DIV1
127 # elif (CONFIG_CCLK_DIV == 2)
128 #  define CONFIG_CCLK_ACT_DIV CCLK_DIV2
129 # elif (CONFIG_CCLK_DIV == 4)
130 #  define CONFIG_CCLK_ACT_DIV CCLK_DIV4
131 # elif (CONFIG_CCLK_DIV == 8)
132 #  define CONFIG_CCLK_ACT_DIV CCLK_DIV8
133 # else
134 #  define CONFIG_CCLK_ACT_DIV CONFIG_CCLK_DIV_not_defined_properly
135 # endif
136 # define CONFIG_PLL_DIV_VAL (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV)
137 #endif
138
139 #ifndef CONFIG_PLL_LOCKCNT_VAL
140 # define CONFIG_PLL_LOCKCNT_VAL 0x0300
141 #endif
142
143 #ifndef CONFIG_PLL_CTL_VAL
144 # define CONFIG_PLL_CTL_VAL (SPORT_HYST | (CONFIG_VCO_MULT << 9) | CONFIG_CLKIN_HALF)
145 #endif
146
147 #ifndef CONFIG_EBIU_RSTCTL_VAL
148 # define CONFIG_EBIU_RSTCTL_VAL 0 /* only MDDRENABLE is useful */
149 #endif
150 #if ((CONFIG_EBIU_RSTCTL_VAL & 0xFFFFFFC4) != 0)
151 # error invalid EBIU_RSTCTL value: must not set reserved bits
152 #endif
153
154 #ifndef CONFIG_EBIU_MBSCTL_VAL
155 # define CONFIG_EBIU_MBSCTL_VAL 0
156 #endif
157
158 #if defined(CONFIG_EBIU_DDRQUE_VAL) && ((CONFIG_EBIU_DDRQUE_VAL & 0xFFFF8000) != 0)
159 # error invalid EBIU_DDRQUE value: must not set reserved bits
160 #endif
161
162 /* Make sure our voltage value is sane so we don't blow up! */
163 #ifndef CONFIG_VR_CTL_VAL
164 # define BFIN_CCLK ((CONFIG_CLKIN_HZ * CONFIG_VCO_MULT) / CONFIG_CCLK_DIV)
165 # if defined(__ADSPBF533__) || defined(__ADSPBF532__) || defined(__ADSPBF531__)
166 #  define CCLK_VLEV_120 400000000
167 #  define CCLK_VLEV_125 533000000
168 # elif defined(__ADSPBF537__) || defined(__ADSPBF536__) || defined(__ADSPBF534__)
169 #  define CCLK_VLEV_120 401000000
170 #  define CCLK_VLEV_125 401000000
171 # elif defined(__ADSPBF561__)
172 #  define CCLK_VLEV_120 300000000
173 #  define CCLK_VLEV_125 501000000
174 # endif
175 # if BFIN_CCLK < CCLK_VLEV_120
176 #  define CONFIG_VR_CTL_VLEV VLEV_120
177 # elif BFIN_CCLK < CCLK_VLEV_125
178 #  define CONFIG_VR_CTL_VLEV VLEV_125
179 # else
180 #  define CONFIG_VR_CTL_VLEV VLEV_130
181 # endif
182 # if defined(__ADSPBF52x__)     /* TBD; use default */
183 #  undef CONFIG_VR_CTL_VLEV
184 #  define CONFIG_VR_CTL_VLEV VLEV_110
185 # elif defined(__ADSPBF54x__)   /* TBD; use default */
186 #  undef CONFIG_VR_CTL_VLEV
187 #  define CONFIG_VR_CTL_VLEV VLEV_120
188 # elif defined(__ADSPBF538__) || defined(__ADSPBF539__) /* TBD; use default */
189 #  undef CONFIG_VR_CTL_VLEV
190 #  define CONFIG_VR_CTL_VLEV VLEV_125
191 # endif
192
193 # ifdef CONFIG_BFIN_MAC
194 #  define CONFIG_VR_CTL_CLKBUF CLKBUFOE
195 # else
196 #  define CONFIG_VR_CTL_CLKBUF 0
197 # endif
198
199 # if defined(__ADSPBF52x__)
200 #  define CONFIG_VR_CTL_FREQ FREQ_1000
201 # else
202 #  define CONFIG_VR_CTL_FREQ (GAIN_20 | FREQ_1000)
203 # endif
204
205 # define CONFIG_VR_CTL_VAL (CONFIG_VR_CTL_CLKBUF | CONFIG_VR_CTL_VLEV | CONFIG_VR_CTL_FREQ)
206 #endif
207
208 /* some parts do not have an on-chip voltage regulator */
209 #if defined(__ADSPBF51x__)
210 # define CONFIG_HAS_VR 0
211 # undef CONFIG_VR_CTL_VAL
212 # define CONFIG_VR_CTL_VAL 0
213 #else
214 # define CONFIG_HAS_VR 1
215 #endif
216
217 #if CONFIG_MEM_SIZE
218 #ifndef EBIU_RSTCTL
219 /* Blackfin with SDRAM */
220 #ifndef CONFIG_EBIU_SDBCTL_VAL
221 # if CONFIG_MEM_SIZE == 16
222 #  define CONFIG_EBSZ_VAL EBSZ_16
223 # elif CONFIG_MEM_SIZE == 32
224 #  define CONFIG_EBSZ_VAL EBSZ_32
225 # elif CONFIG_MEM_SIZE == 64
226 #  define CONFIG_EBSZ_VAL EBSZ_64
227 # elif CONFIG_MEM_SIZE == 128
228 #  define CONFIG_EBSZ_VAL EBSZ_128
229 # elif CONFIG_MEM_SIZE == 256
230 #  define CONFIG_EBSZ_VAL EBSZ_256
231 # elif CONFIG_MEM_SIZE == 512
232 #  define CONFIG_EBSZ_VAL EBSZ_512
233 # else
234 #  error You need to define CONFIG_EBIU_SDBCTL_VAL or CONFIG_MEM_SIZE
235 # endif
236 # if CONFIG_MEM_ADD_WDTH == 8
237 #  define CONFIG_EBCAW_VAL EBCAW_8
238 # elif CONFIG_MEM_ADD_WDTH == 9
239 #  define CONFIG_EBCAW_VAL EBCAW_9
240 # elif CONFIG_MEM_ADD_WDTH == 10
241 #  define CONFIG_EBCAW_VAL EBCAW_10
242 # elif CONFIG_MEM_ADD_WDTH == 11
243 #  define CONFIG_EBCAW_VAL EBCAW_11
244 # else
245 #  error You need to define CONFIG_EBIU_SDBCTL_VAL or CONFIG_MEM_ADD_WDTH
246 # endif
247 # define CONFIG_EBIU_SDBCTL_VAL (CONFIG_EBCAW_VAL | CONFIG_EBSZ_VAL | EBE)
248 #endif
249 #endif
250 #endif
251
252 /* Conflicting Column Address Widths Causes SDRAM Errors:
253  * EB2CAW and EB3CAW must be the same
254  */
255 #if ANOMALY_05000362
256 # if ((CONFIG_EBIU_SDBCTL_VAL & 0x30000000) >> 8) != (CONFIG_EBIU_SDBCTL_VAL & 0x00300000)
257 #  error "Anomaly 05000362: EB2CAW and EB3CAW must be the same"
258 # endif
259 #endif
260
261 __attribute__((always_inline)) static inline void
262 program_early_devices(ADI_BOOT_DATA *bs, uint *sdivB, uint *divB, uint *vcoB)
263 {
264         serial_putc('a');
265
266         /* Save the clock pieces that are used in baud rate calculation */
267         if (BFIN_DEBUG_EARLY_SERIAL || CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART) {
268                 serial_putc('b');
269                 *sdivB = bfin_read_PLL_DIV() & 0xf;
270                 *vcoB = (bfin_read_PLL_CTL() >> 9) & 0x3f;
271                 *divB = serial_early_get_div();
272                 serial_putc('c');
273         }
274
275         serial_putc('d');
276
277 #ifdef CONFIG_HW_WATCHDOG
278 # ifndef CONFIG_HW_WATCHDOG_TIMEOUT_INITCODE
279 #  define CONFIG_HW_WATCHDOG_TIMEOUT_INITCODE 20000
280 # endif
281         /* Program the watchdog with an initial timeout of ~20 seconds.
282          * Hopefully that should be long enough to load the u-boot LDR
283          * (from wherever) and then the common u-boot code can take over.
284          * In bypass mode, the start.S would have already set a much lower
285          * timeout, so don't clobber that.
286          */
287         if (CONFIG_BFIN_BOOT_MODE != BFIN_BOOT_BYPASS) {
288                 serial_putc('e');
289                 bfin_write_WDOG_CNT(MSEC_TO_SCLK(CONFIG_HW_WATCHDOG_TIMEOUT_INITCODE));
290                 bfin_write_WDOG_CTL(0);
291                 serial_putc('f');
292         }
293 #endif
294
295         serial_putc('g');
296
297         /* Blackfin bootroms use the SPI slow read opcode instead of the SPI
298          * fast read, so we need to slow down the SPI clock a lot more during
299          * boot.  Once we switch over to u-boot's SPI flash driver, we'll
300          * increase the speed appropriately.
301          */
302         if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER) {
303                 serial_putc('h');
304                 if (BOOTROM_SUPPORTS_SPI_FAST_READ && CONFIG_SPI_BAUD_INITBLOCK < 4)
305                         bs->dFlags |= BFLAG_FASTREAD;
306                 bfin_write_SPI_BAUD(CONFIG_SPI_BAUD_INITBLOCK);
307                 serial_putc('i');
308         }
309
310         serial_putc('j');
311 }
312
313 __attribute__((always_inline)) static inline bool
314 maybe_self_refresh(ADI_BOOT_DATA *bs)
315 {
316         serial_putc('a');
317
318         if (!CONFIG_MEM_SIZE)
319                 return false;
320
321         /* If external memory is enabled, put it into self refresh first. */
322 #ifdef EBIU_RSTCTL
323         if (bfin_read_EBIU_RSTCTL() & DDR_SRESET) {
324                 serial_putc('b');
325                 bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() | SRREQ);
326                 return true;
327         }
328 #else
329         if (bfin_read_EBIU_SDBCTL() & EBE) {
330                 serial_putc('b');
331                 bfin_write_EBIU_SDGCTL(bfin_read_EBIU_SDGCTL() | SRFS);
332                 return true;
333         }
334 #endif
335
336         serial_putc('c');
337
338         return false;
339 }
340
341 __attribute__((always_inline)) static inline u16
342 program_clocks(ADI_BOOT_DATA *bs, bool put_into_srfs)
343 {
344         u16 vr_ctl;
345
346         serial_putc('a');
347
348         vr_ctl = bfin_read_VR_CTL();
349
350         serial_putc('b');
351
352         /* If we're entering self refresh, make sure it has happened. */
353         if (put_into_srfs)
354 #ifdef EBIU_RSTCTL
355                 while (!(bfin_read_EBIU_RSTCTL() & SRACK))
356 #else
357                 while (!(bfin_read_EBIU_SDSTAT() & SDSRA))
358 #endif
359                         continue;
360
361         serial_putc('c');
362
363         /* With newer bootroms, we use the helper function to set up
364          * the memory controller.  Older bootroms lacks such helpers
365          * so we do it ourselves.
366          */
367         if (!ANOMALY_05000386) {
368                 serial_putc('d');
369
370                 /* Always programming PLL_LOCKCNT avoids Anomaly 05000430 */
371                 ADI_SYSCTRL_VALUES memory_settings;
372                 uint32_t actions = SYSCTRL_WRITE | SYSCTRL_PLLCTL | SYSCTRL_PLLDIV | SYSCTRL_LOCKCNT;
373                 if (CONFIG_HAS_VR) {
374                         actions |= SYSCTRL_VRCTL;
375                         if (CONFIG_VR_CTL_VAL & FREQ_MASK)
376                                 actions |= SYSCTRL_INTVOLTAGE;
377                         else
378                                 actions |= SYSCTRL_EXTVOLTAGE;
379                         memory_settings.uwVrCtl = CONFIG_VR_CTL_VAL;
380                 } else
381                         actions |= SYSCTRL_EXTVOLTAGE;
382                 memory_settings.uwPllCtl = CONFIG_PLL_CTL_VAL;
383                 memory_settings.uwPllDiv = CONFIG_PLL_DIV_VAL;
384                 memory_settings.uwPllLockCnt = CONFIG_PLL_LOCKCNT_VAL;
385 #if ANOMALY_05000432
386                 bfin_write_SIC_IWR1(0);
387 #endif
388                 serial_putc('e');
389                 bfrom_SysControl(actions, &memory_settings, NULL);
390                 serial_putc('f');
391 #if ANOMALY_05000432
392                 bfin_write_SIC_IWR1(-1);
393 #endif
394 #if ANOMALY_05000171
395                 bfin_write_SICA_IWR0(-1);
396                 bfin_write_SICA_IWR1(-1);
397 #endif
398                 serial_putc('g');
399         } else {
400                 serial_putc('h');
401
402                 /* Disable all peripheral wakeups except for the PLL event. */
403 #ifdef SIC_IWR0
404                 bfin_write_SIC_IWR0(1);
405                 bfin_write_SIC_IWR1(0);
406 # ifdef SIC_IWR2
407                 bfin_write_SIC_IWR2(0);
408 # endif
409 #elif defined(SICA_IWR0)
410                 bfin_write_SICA_IWR0(1);
411                 bfin_write_SICA_IWR1(0);
412 #else
413                 bfin_write_SIC_IWR(1);
414 #endif
415
416                 serial_putc('i');
417
418                 /* Always programming PLL_LOCKCNT avoids Anomaly 05000430 */
419                 bfin_write_PLL_LOCKCNT(CONFIG_PLL_LOCKCNT_VAL);
420
421                 serial_putc('j');
422
423                 /* Only reprogram when needed to avoid triggering unnecessary
424                  * PLL relock sequences.
425                  */
426                 if (vr_ctl != CONFIG_VR_CTL_VAL) {
427                         serial_putc('?');
428                         bfin_write_VR_CTL(CONFIG_VR_CTL_VAL);
429                         asm("idle;");
430                         serial_putc('!');
431                 }
432
433                 serial_putc('k');
434
435                 bfin_write_PLL_DIV(CONFIG_PLL_DIV_VAL);
436
437                 serial_putc('l');
438
439                 /* Only reprogram when needed to avoid triggering unnecessary
440                  * PLL relock sequences.
441                  */
442                 if (ANOMALY_05000242 || bfin_read_PLL_CTL() != CONFIG_PLL_CTL_VAL) {
443                         serial_putc('?');
444                         bfin_write_PLL_CTL(CONFIG_PLL_CTL_VAL);
445                         asm("idle;");
446                         serial_putc('!');
447                 }
448
449                 serial_putc('m');
450
451                 /* Restore all peripheral wakeups. */
452 #ifdef SIC_IWR0
453                 bfin_write_SIC_IWR0(-1);
454                 bfin_write_SIC_IWR1(-1);
455 # ifdef SIC_IWR2
456                 bfin_write_SIC_IWR2(-1);
457 # endif
458 #elif defined(SICA_IWR0)
459                 bfin_write_SICA_IWR0(-1);
460                 bfin_write_SICA_IWR1(-1);
461 #else
462                 bfin_write_SIC_IWR(-1);
463 #endif
464
465                 serial_putc('n');
466         }
467
468         serial_putc('o');
469
470         return vr_ctl;
471 }
472
473 __attribute__((always_inline)) static inline void
474 update_serial_clocks(ADI_BOOT_DATA *bs, uint sdivB, uint divB, uint vcoB)
475 {
476         serial_putc('a');
477
478         /* Since we've changed the SCLK above, we may need to update
479          * the UART divisors (UART baud rates are based on SCLK).
480          * Do the division by hand as there are no native instructions
481          * for dividing which means we'd generate a libgcc reference.
482          */
483         if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART) {
484                 serial_putc('b');
485                 unsigned int sdivR, vcoR;
486                 sdivR = bfin_read_PLL_DIV() & 0xf;
487                 vcoR = (bfin_read_PLL_CTL() >> 9) & 0x3f;
488                 int dividend = sdivB * divB * vcoR;
489                 int divisor = vcoB * sdivR;
490                 unsigned int quotient;
491                 for (quotient = 0; dividend > 0; ++quotient)
492                         dividend -= divisor;
493                 serial_early_put_div(quotient - ANOMALY_05000230);
494                 serial_putc('c');
495         }
496
497         serial_putc('d');
498 }
499
500 __attribute__((always_inline)) static inline void
501 program_memory_controller(ADI_BOOT_DATA *bs, bool put_into_srfs)
502 {
503         serial_putc('a');
504
505         if (!CONFIG_MEM_SIZE)
506                 return;
507
508         serial_putc('b');
509
510         /* Program the external memory controller before we come out of
511          * self-refresh.  This only works with our SDRAM controller.
512          */
513 #ifndef EBIU_RSTCTL
514 # ifdef CONFIG_EBIU_SDRRC_VAL
515         bfin_write_EBIU_SDRRC(CONFIG_EBIU_SDRRC_VAL);
516 # endif
517 # ifdef CONFIG_EBIU_SDBCTL_VAL
518         bfin_write_EBIU_SDBCTL(CONFIG_EBIU_SDBCTL_VAL);
519 # endif
520 # ifdef CONFIG_EBIU_SDGCTL_VAL
521         bfin_write_EBIU_SDGCTL(CONFIG_EBIU_SDGCTL_VAL);
522 # endif
523 #endif
524
525         serial_putc('c');
526
527         /* Now that we've reprogrammed, take things out of self refresh. */
528         if (put_into_srfs)
529 #ifdef EBIU_RSTCTL
530                 bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() & ~(SRREQ));
531 #else
532                 bfin_write_EBIU_SDGCTL(bfin_read_EBIU_SDGCTL() & ~(SRFS));
533 #endif
534
535         serial_putc('d');
536
537         /* Our DDR controller sucks and cannot be programmed while in
538          * self-refresh.  So we have to pull it out before programming.
539          */
540 #ifdef EBIU_RSTCTL
541 # ifdef CONFIG_EBIU_RSTCTL_VAL
542         bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() | 0x1 /*DDRSRESET*/ | CONFIG_EBIU_RSTCTL_VAL);
543 # endif
544 # ifdef CONFIG_EBIU_DDRCTL0_VAL
545         bfin_write_EBIU_DDRCTL0(CONFIG_EBIU_DDRCTL0_VAL);
546 # endif
547 # ifdef CONFIG_EBIU_DDRCTL1_VAL
548         bfin_write_EBIU_DDRCTL1(CONFIG_EBIU_DDRCTL1_VAL);
549 # endif
550 # ifdef CONFIG_EBIU_DDRCTL2_VAL
551         bfin_write_EBIU_DDRCTL2(CONFIG_EBIU_DDRCTL2_VAL);
552 # endif
553 # ifdef CONFIG_EBIU_DDRCTL3_VAL
554         /* default is disable, so don't need to force this */
555         bfin_write_EBIU_DDRCTL3(CONFIG_EBIU_DDRCTL3_VAL);
556 # endif
557 # ifdef CONFIG_EBIU_DDRQUE_VAL
558         bfin_write_EBIU_DDRQUE(bfin_read_EBIU_DDRQUE() | CONFIG_EBIU_DDRQUE_VAL);
559 # endif
560 #endif
561
562         serial_putc('e');
563 }
564
565 __attribute__((always_inline)) static inline void
566 check_hibernation(ADI_BOOT_DATA *bs, u16 vr_ctl, bool put_into_srfs)
567 {
568         serial_putc('a');
569
570         if (!CONFIG_MEM_SIZE)
571                 return;
572
573         serial_putc('b');
574
575         /* Are we coming out of hibernate (suspend to memory) ?
576          * The memory layout is:
577          * 0x0: hibernate magic for anomaly 307 (0xDEADBEEF)
578          * 0x4: return address
579          * 0x8: stack pointer
580          *
581          * SCKELOW is unreliable on older parts (anomaly 307)
582          */
583         if (ANOMALY_05000307 || vr_ctl & 0x8000) {
584                 uint32_t *hibernate_magic = 0;
585                 __builtin_bfin_ssync(); /* make sure memory controller is done */
586                 if (hibernate_magic[0] == 0xDEADBEEF) {
587                         serial_putc('c');
588                         bfin_write_EVT15(hibernate_magic[1]);
589                         bfin_write_IMASK(EVT_IVG15);
590                         __asm__ __volatile__ (
591                                 /* load reti early to avoid anomaly 281 */
592                                 "reti = %0;"
593                                 /* clear hibernate magic */
594                                 "[%0] = %1;"
595                                 /* load stack pointer */
596                                 "SP = [%0 + 8];"
597                                 /* lower ourselves from reset ivg to ivg15 */
598                                 "raise 15;"
599                                 "rti;"
600                                 :
601                                 : "p"(hibernate_magic), "d"(0x2000 /* jump.s 0 */)
602                         );
603                 }
604                 serial_putc('d');
605         }
606
607         serial_putc('e');
608 }
609
610 __attribute__((always_inline)) static inline void
611 program_async_controller(ADI_BOOT_DATA *bs)
612 {
613         serial_putc('a');
614
615         /* Program the async banks controller. */
616         bfin_write_EBIU_AMBCTL0(CONFIG_EBIU_AMBCTL0_VAL);
617         bfin_write_EBIU_AMBCTL1(CONFIG_EBIU_AMBCTL1_VAL);
618         bfin_write_EBIU_AMGCTL(CONFIG_EBIU_AMGCTL_VAL);
619
620         serial_putc('b');
621
622         /* Not all parts have these additional MMRs. */
623 #ifdef EBIU_MODE
624 # ifdef CONFIG_EBIU_MBSCTL_VAL
625         bfin_write_EBIU_MBSCTL(CONFIG_EBIU_MBSCTL_VAL);
626 # endif
627 # ifdef CONFIG_EBIU_MODE_VAL
628         bfin_write_EBIU_MODE(CONFIG_EBIU_MODE_VAL);
629 # endif
630 # ifdef CONFIG_EBIU_FCTL_VAL
631         bfin_write_EBIU_FCTL(CONFIG_EBIU_FCTL_VAL);
632 # endif
633 #endif
634
635         serial_putc('c');
636 }
637
638 BOOTROM_CALLED_FUNC_ATTR
639 void initcode(ADI_BOOT_DATA *bs)
640 {
641         ADI_BOOT_DATA bootstruct_scratch;
642
643         serial_init();
644
645         serial_putc('A');
646
647         /* If the bootstruct is NULL, then it's because we're loading
648          * dynamically and not via LDR (bootrom).  So set the struct to
649          * some scratch space.
650          */
651         if (!bs)
652                 bs = &bootstruct_scratch;
653
654         serial_putc('B');
655         bool put_into_srfs = maybe_self_refresh(bs);
656
657         serial_putc('C');
658         uint sdivB, divB, vcoB;
659         program_early_devices(bs, &sdivB, &divB, &vcoB);
660
661         serial_putc('D');
662         u16 vr_ctl = program_clocks(bs, put_into_srfs);
663
664         serial_putc('E');
665         update_serial_clocks(bs, sdivB, divB, vcoB);
666
667         serial_putc('F');
668         program_memory_controller(bs, put_into_srfs);
669
670         serial_putc('G');
671         check_hibernation(bs, vr_ctl, put_into_srfs);
672
673         serial_putc('H');
674         program_async_controller(bs);
675
676 #ifdef CONFIG_BFIN_BOOTROM_USES_EVT1
677         serial_putc('I');
678         /* Tell the bootrom where our entry point is so that it knows
679          * where to jump to when finishing processing the LDR.  This
680          * allows us to avoid small jump blocks in the LDR, and also
681          * works around anomaly 05000389 (init address in external
682          * memory causes bootrom to trigger external addressing IVHW).
683          */
684         if (CONFIG_BFIN_BOOT_MODE != BFIN_BOOT_BYPASS)
685                 bfin_write_EVT1(CONFIG_SYS_MONITOR_BASE);
686 #endif
687
688         serial_putc('>');
689         serial_putc('\n');
690
691         serial_deinit();
692 }