3 #include <linux/config.h>
5 #include <asm/blackfin.h>
6 #include <asm/mem_init.h>
9 #if (CONFIG_CCLK_DIV == 1)
10 #define CONFIG_CCLK_ACT_DIV CCLK_DIV1
12 #if (CONFIG_CCLK_DIV == 2)
13 #define CONFIG_CCLK_ACT_DIV CCLK_DIV2
15 #if (CONFIG_CCLK_DIV == 4)
16 #define CONFIG_CCLK_ACT_DIV CCLK_DIV4
18 #if (CONFIG_CCLK_DIV == 8)
19 #define CONFIG_CCLK_ACT_DIV CCLK_DIV8
21 #ifndef CONFIG_CCLK_ACT_DIV
22 #define CONFIG_CCLK_ACT_DIV CONFIG_CCLK_DIV_not_defined_properly
31 #if (BFIN_BOOT_MODE == BF533_SPI_BOOT)
34 r0.l = CONFIG_SPI_BAUD;
40 * PLL_LOCKCNT - how many SCLK Cycles to delay while PLL becomes stable
42 p0.h = hi(PLL_LOCKCNT);
43 p0.l = lo(PLL_LOCKCNT);
49 * Put SDRAM in self-refresh, incase anything is running
51 P2.H = hi(EBIU_SDGCTL);
52 P2.L = lo(EBIU_SDGCTL);
59 * Set PLL_CTL with the value that we calculate in R0
60 * - [14:09] = MSEL[5:0] : CLKIN / VCO multiplication factors
61 * - [8] = BYPASS : BYPASS the PLL, run CLKIN into CCLK/SCLK
62 * - [7] = output delay (add 200ps of delay to mem signals)
63 * - [6] = input delay (add 200ps of input delay to mem signals)
64 * - [5] = PDWN : 1=All Clocks off
65 * - [3] = STOPCK : 1=Core Clock off
66 * - [1] = PLL_OFF : 1=Disable Power to PLL
67 * - [0] = DF : 1=Pass CLKIN/2 to PLL / 0=Pass CLKIN to PLL
68 * all other bits set to zero
71 r0 = CONFIG_VCO_MULT & 63; /* Load the VCO multiplier */
72 r0 = r0 << 9; /* Shift it over, */
73 r1 = CONFIG_CLKIN_HALF; /* Do we need to divide CLKIN by 2?*/
75 r1 = CONFIG_PLL_BYPASS; /* Bypass the PLL? */
76 r1 = r1 << 8; /* Shift it over */
77 r0 = r1 | r0; /* add them all together */
80 p0.l = lo(PLL_CTL); /* Load the address */
81 cli r2; /* Disable interrupts */
83 w[p0] = r0.l; /* Set the value */
84 idle; /* Wait for the PLL to stablize */
85 sti r2; /* Enable interrupts */
92 if ! CC jump check_again;
94 /* Configure SCLK & CCLK Dividers */
95 r0 = (CONFIG_CCLK_ACT_DIV | CONFIG_SCLK_DIV);
102 * We now are running at speed, time to set the Async mem bank wait states
103 * This will speed up execution, since we are normally running from FLASH.
106 p2.h = (EBIU_AMBCTL1 >> 16);
107 p2.l = (EBIU_AMBCTL1 & 0xFFFF);
108 r0.h = (AMBCTL1VAL >> 16);
109 r0.l = (AMBCTL1VAL & 0xFFFF);
113 p2.h = (EBIU_AMBCTL0 >> 16);
114 p2.l = (EBIU_AMBCTL0 & 0xFFFF);
115 r0.h = (AMBCTL0VAL >> 16);
116 r0.l = (AMBCTL0VAL & 0xFFFF);
120 p2.h = (EBIU_AMGCTL >> 16);
121 p2.l = (EBIU_AMGCTL & 0xffff);
127 * Now, Initialize the SDRAM,
128 * start with the SDRAM Refresh Rate Control Register
130 p0.l = lo(EBIU_SDRRC);
131 p0.h = hi(EBIU_SDRRC);
137 * SDRAM Memory Bank Control Register - bank specific parameters
139 p0.l = (EBIU_SDBCTL & 0xFFFF);
140 p0.h = (EBIU_SDBCTL >> 16);
146 * SDRAM Global Control Register - global programmable parameters
147 * Disable self-refresh
149 P2.H = hi(EBIU_SDGCTL);
150 P2.L = lo(EBIU_SDGCTL);
155 * Check if SDRAM is already powered up, if it is, enable self-refresh
157 p0.h = hi(EBIU_SDSTAT);
158 p0.l = lo(EBIU_SDSTAT);
168 /* Write in the new value in the register */
169 R0.L = lo(mem_SDGCTL);
170 R0.H = hi(mem_SDGCTL);