]>
Commit | Line | Data |
---|---|---|
4efb77d4 PW |
1 | /* |
2 | * (C) Copyright 2009 | |
3 | * Marvell Semiconductor <www.marvell.com> | |
4 | * Written-by: Prafulla Wadaskar <[email protected]> | |
5 | * | |
6 | * See file CREDITS for list of people who contributed to this | |
7 | * project. | |
8 | * | |
9 | * This program is free software; you can redistribute it and/or | |
10 | * modify it under the terms of the GNU General Public License as | |
11 | * published by the Free Software Foundation; either version 2 of | |
12 | * the License, or (at your option) any later version. | |
13 | * | |
14 | * This program is distributed in the hope that it will be useful, | |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | * GNU General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU General Public License | |
20 | * along with this program; if not, write to the Free Software | |
21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | |
22 | * MA 02110-1301 USA | |
23 | */ | |
24 | ||
25 | #include <common.h> | |
26 | #include <netdev.h> | |
27 | #include <asm/cache.h> | |
28 | #include <u-boot/md5.h> | |
29 | #include <asm/arch/kirkwood.h> | |
30 | ||
31 | #define BUFLEN 16 | |
32 | ||
33 | void reset_cpu(unsigned long ignored) | |
34 | { | |
35 | struct kwcpu_registers *cpureg = | |
36 | (struct kwcpu_registers *)KW_CPU_REG_BASE; | |
37 | ||
38 | writel(readl(&cpureg->rstoutn_mask) | (1 << 2), | |
39 | &cpureg->rstoutn_mask); | |
40 | writel(readl(&cpureg->sys_soft_rst) | 1, | |
41 | &cpureg->sys_soft_rst); | |
42 | while (1) ; | |
43 | } | |
44 | ||
45 | /* | |
46 | * Generates Ramdom hex number reading some time varient system registers | |
47 | * and using md5 algorithm | |
48 | */ | |
49 | unsigned char get_random_hex(void) | |
50 | { | |
51 | int i; | |
52 | u32 inbuf[BUFLEN]; | |
53 | u8 outbuf[BUFLEN]; | |
54 | ||
55 | /* | |
56 | * in case of 88F6281/88F6192 A0, | |
57 | * Bit7 need to reset to generate random values in KW_REG_UNDOC_0x1470 | |
58 | * Soc reg offsets KW_REG_UNDOC_0x1470 and KW_REG_UNDOC_0x1478 are reserved regs and | |
59 | * Does not have names at this moment (no errata available) | |
60 | */ | |
61 | writel(readl(KW_REG_UNDOC_0x1478) & ~(1 << 7), KW_REG_UNDOC_0x1478); | |
62 | for (i = 0; i < BUFLEN; i++) { | |
63 | inbuf[i] = readl(KW_REG_UNDOC_0x1470); | |
64 | } | |
65 | md5((u8 *) inbuf, (BUFLEN * sizeof(u32)), outbuf); | |
66 | return outbuf[outbuf[7] % 0x0f]; | |
67 | } | |
68 | ||
69 | /* | |
70 | * Window Size | |
71 | * Used with the Base register to set the address window size and location. | |
72 | * Must be programmed from LSB to MSB as sequence of ones followed by | |
73 | * sequence of zeros. The number of ones specifies the size of the window in | |
74 | * 64 KByte granularity (e.g., a value of 0x00FF specifies 256 = 16 MByte). | |
75 | * NOTE: A value of 0x0 specifies 64-KByte size. | |
76 | */ | |
78eabb90 | 77 | unsigned int kw_winctrl_calcsize(unsigned int sizeval) |
4efb77d4 PW |
78 | { |
79 | int i; | |
80 | unsigned int j = 0; | |
81 | u32 val = sizeval >> 1; | |
82 | ||
83 | for (i = 0; val > 0x10000; i++) { | |
84 | j |= (1 << i); | |
85 | val = val >> 1; | |
86 | } | |
87 | return (0x0000ffff & j); | |
88 | } | |
89 | ||
4efb77d4 PW |
90 | /* |
91 | * kw_config_adr_windows - Configure address Windows | |
92 | * | |
93 | * There are 8 address windows supported by Kirkwood Soc to addess different | |
94 | * devices. Each window can be configured for size, BAR and remap addr | |
95 | * Below configuration is standard for most of the cases | |
96 | * | |
97 | * If remap function not used, remap_lo must be set as base | |
98 | * | |
99 | * Reference Documentation: | |
100 | * Mbus-L to Mbus Bridge Registers Configuration. | |
101 | * (Sec 25.1 and 25.3 of Datasheet) | |
102 | */ | |
103 | int kw_config_adr_windows(void) | |
104 | { | |
105 | struct kwwin_registers *winregs = | |
106 | (struct kwwin_registers *)KW_CPU_WIN_BASE; | |
107 | ||
108 | /* Window 0: PCIE MEM address space */ | |
109 | writel(KWCPU_WIN_CTRL_DATA(1024 * 1024 * 256, KWCPU_TARGET_PCIE, | |
110 | KWCPU_ATTR_PCIE_MEM, KWCPU_WIN_ENABLE), &winregs[0].ctrl); | |
111 | ||
112 | writel(KW_DEFADR_PCI_MEM, &winregs[0].base); | |
113 | writel(KW_DEFADR_PCI_MEM, &winregs[0].remap_lo); | |
114 | writel(0x0, &winregs[0].remap_hi); | |
115 | ||
116 | /* Window 1: PCIE IO address space */ | |
117 | writel(KWCPU_WIN_CTRL_DATA(1024 * 64, KWCPU_TARGET_PCIE, | |
118 | KWCPU_ATTR_PCIE_IO, KWCPU_WIN_ENABLE), &winregs[1].ctrl); | |
119 | writel(KW_DEFADR_PCI_IO, &winregs[1].base); | |
120 | writel(KW_DEFADR_PCI_IO_REMAP, &winregs[1].remap_lo); | |
121 | writel(0x0, &winregs[1].remap_hi); | |
122 | ||
123 | /* Window 2: NAND Flash address space */ | |
124 | writel(KWCPU_WIN_CTRL_DATA(1024 * 1024 * 128, KWCPU_TARGET_MEMORY, | |
125 | KWCPU_ATTR_NANDFLASH, KWCPU_WIN_ENABLE), &winregs[2].ctrl); | |
126 | writel(KW_DEFADR_NANDF, &winregs[2].base); | |
127 | writel(KW_DEFADR_NANDF, &winregs[2].remap_lo); | |
128 | writel(0x0, &winregs[2].remap_hi); | |
129 | ||
130 | /* Window 3: SPI Flash address space */ | |
131 | writel(KWCPU_WIN_CTRL_DATA(1024 * 1024 * 128, KWCPU_TARGET_MEMORY, | |
132 | KWCPU_ATTR_SPIFLASH, KWCPU_WIN_ENABLE), &winregs[3].ctrl); | |
133 | writel(KW_DEFADR_SPIF, &winregs[3].base); | |
134 | writel(KW_DEFADR_SPIF, &winregs[3].remap_lo); | |
135 | writel(0x0, &winregs[3].remap_hi); | |
136 | ||
137 | /* Window 4: BOOT Memory address space */ | |
138 | writel(KWCPU_WIN_CTRL_DATA(1024 * 1024 * 128, KWCPU_TARGET_MEMORY, | |
139 | KWCPU_ATTR_BOOTROM, KWCPU_WIN_ENABLE), &winregs[4].ctrl); | |
140 | writel(KW_DEFADR_BOOTROM, &winregs[4].base); | |
141 | ||
142 | /* Window 5: Security SRAM address space */ | |
143 | writel(KWCPU_WIN_CTRL_DATA(1024 * 64, KWCPU_TARGET_SASRAM, | |
144 | KWCPU_ATTR_SASRAM, KWCPU_WIN_ENABLE), &winregs[5].ctrl); | |
145 | writel(KW_DEFADR_SASRAM, &winregs[5].base); | |
146 | ||
147 | /* Window 6-7: Disabled */ | |
148 | writel(KWCPU_WIN_DISABLE, &winregs[6].ctrl); | |
149 | writel(KWCPU_WIN_DISABLE, &winregs[7].ctrl); | |
150 | ||
151 | return 0; | |
152 | } | |
153 | ||
154 | /* | |
155 | * kw_config_gpio - GPIO configuration | |
156 | */ | |
157 | void kw_config_gpio(u32 gpp0_oe_val, u32 gpp1_oe_val, u32 gpp0_oe, u32 gpp1_oe) | |
158 | { | |
159 | struct kwgpio_registers *gpio0reg = | |
160 | (struct kwgpio_registers *)KW_GPIO0_BASE; | |
161 | struct kwgpio_registers *gpio1reg = | |
162 | (struct kwgpio_registers *)KW_GPIO1_BASE; | |
163 | ||
164 | /* Init GPIOS to default values as per board requirement */ | |
165 | writel(gpp0_oe_val, &gpio0reg->dout); | |
166 | writel(gpp1_oe_val, &gpio1reg->dout); | |
167 | writel(gpp0_oe, &gpio0reg->oe); | |
168 | writel(gpp1_oe, &gpio1reg->oe); | |
169 | } | |
170 | ||
171 | /* | |
172 | * kw_config_mpp - Multi-Purpose Pins Functionality configuration | |
173 | * | |
174 | * Each MPP can be configured to different functionality through | |
175 | * MPP control register, ref (sec 6.1 of kirkwood h/w specification) | |
176 | * | |
177 | * There are maximum 64 Multi-Pourpose Pins on Kirkwood | |
178 | * Each MPP functionality can be configuration by a 4bit value | |
179 | * of MPP control reg, the value and associated functionality depends | |
180 | * upon used SoC varient | |
181 | */ | |
182 | int kw_config_mpp(u32 mpp0_7, u32 mpp8_15, u32 mpp16_23, u32 mpp24_31, | |
183 | u32 mpp32_39, u32 mpp40_47, u32 mpp48_55) | |
184 | { | |
185 | u32 *mppreg = (u32 *) KW_MPP_BASE; | |
186 | ||
187 | /* program mpp registers */ | |
188 | writel(mpp0_7, &mppreg[0]); | |
189 | writel(mpp8_15, &mppreg[1]); | |
190 | writel(mpp16_23, &mppreg[2]); | |
191 | writel(mpp24_31, &mppreg[3]); | |
192 | writel(mpp32_39, &mppreg[4]); | |
193 | writel(mpp40_47, &mppreg[5]); | |
194 | writel(mpp48_55, &mppreg[6]); | |
195 | return 0; | |
196 | } | |
197 | ||
198 | #if defined(CONFIG_DISPLAY_CPUINFO) | |
199 | int print_cpuinfo(void) | |
200 | { | |
201 | char *name = "Unknown"; | |
202 | ||
203 | switch (readl(KW_REG_DEVICE_ID) & 0x03) { | |
204 | case 1: | |
205 | name = "88F6192_A0"; | |
206 | break; | |
207 | case 2: | |
208 | name = "88F6281_A0"; | |
209 | break; | |
210 | default: | |
211 | printf("SoC: Unsupported Kirkwood\n"); | |
212 | return -1; | |
213 | } | |
214 | printf("SoC: Kirkwood %s\n", name); | |
215 | return 0; | |
216 | } | |
217 | #endif /* CONFIG_DISPLAY_CPUINFO */ | |
218 | ||
219 | #ifdef CONFIG_ARCH_CPU_INIT | |
220 | int arch_cpu_init(void) | |
221 | { | |
222 | u32 reg; | |
223 | struct kwcpu_registers *cpureg = | |
224 | (struct kwcpu_registers *)KW_CPU_REG_BASE; | |
225 | ||
226 | /* Linux expects` the internal registers to be at 0xf1000000 */ | |
227 | writel(KW_REGS_PHY_BASE, KW_OFFSET_REG); | |
228 | ||
229 | /* Enable and invalidate L2 cache in write through mode */ | |
230 | writel(readl(&cpureg->l2_cfg) | 0x18, &cpureg->l2_cfg); | |
231 | invalidate_l2_cache(); | |
232 | ||
233 | kw_config_adr_windows(); | |
234 | ||
235 | #ifdef CONFIG_KIRKWOOD_RGMII_PAD_1V8 | |
236 | /* | |
237 | * Configures the I/O voltage of the pads connected to Egigabit | |
238 | * Ethernet interface to 1.8V | |
239 | * By defult it is set to 3.3V | |
240 | */ | |
241 | reg = readl(KW_REG_MPP_OUT_DRV_REG); | |
242 | reg |= (1 << 7); | |
243 | writel(reg, KW_REG_MPP_OUT_DRV_REG); | |
244 | #endif | |
245 | #ifdef CONFIG_KIRKWOOD_EGIGA_INIT | |
246 | /* | |
247 | * Set egiga port0/1 in normal functional mode | |
248 | * This is required becasue on kirkwood by default ports are in reset mode | |
249 | * OS egiga driver may not have provision to set them in normal mode | |
250 | * and if u-boot is build without network support, network may fail at OS level | |
251 | */ | |
252 | reg = readl(KWGBE_PORT_SERIAL_CONTROL1_REG(0)); | |
253 | reg &= ~(1 << 4); /* Clear PortReset Bit */ | |
254 | writel(reg, (KWGBE_PORT_SERIAL_CONTROL1_REG(0))); | |
255 | reg = readl(KWGBE_PORT_SERIAL_CONTROL1_REG(1)); | |
256 | reg &= ~(1 << 4); /* Clear PortReset Bit */ | |
257 | writel(reg, (KWGBE_PORT_SERIAL_CONTROL1_REG(1))); | |
258 | #endif | |
259 | #ifdef CONFIG_KIRKWOOD_PCIE_INIT | |
260 | /* | |
261 | * Enable PCI Express Port0 | |
262 | */ | |
263 | reg = readl(&cpureg->ctrl_stat); | |
264 | reg |= (1 << 0); /* Set PEX0En Bit */ | |
265 | writel(reg, &cpureg->ctrl_stat); | |
266 | #endif | |
267 | return 0; | |
268 | } | |
269 | #endif /* CONFIG_ARCH_CPU_INIT */ | |
270 | ||
271 | /* | |
272 | * SOC specific misc init | |
273 | */ | |
274 | #if defined(CONFIG_ARCH_MISC_INIT) | |
275 | int arch_misc_init(void) | |
276 | { | |
277 | volatile u32 temp; | |
278 | ||
279 | /*CPU streaming & write allocate */ | |
280 | temp = readfr_extra_feature_reg(); | |
281 | temp &= ~(1 << 28); /* disable wr alloc */ | |
282 | writefr_extra_feature_reg(temp); | |
283 | ||
284 | temp = readfr_extra_feature_reg(); | |
285 | temp &= ~(1 << 29); /* streaming disabled */ | |
286 | writefr_extra_feature_reg(temp); | |
287 | ||
288 | /* L2Cache settings */ | |
289 | temp = readfr_extra_feature_reg(); | |
290 | /* Disable L2C pre fetch - Set bit 24 */ | |
291 | temp |= (1 << 24); | |
292 | /* enable L2C - Set bit 22 */ | |
293 | temp |= (1 << 22); | |
294 | writefr_extra_feature_reg(temp); | |
295 | ||
296 | icache_enable(); | |
297 | /* Change reset vector to address 0x0 */ | |
298 | temp = get_cr(); | |
299 | set_cr(temp & ~CR_V); | |
300 | ||
301 | return 0; | |
302 | } | |
303 | #endif /* CONFIG_ARCH_MISC_INIT */ | |
304 | ||
305 | #ifdef CONFIG_KIRKWOOD_EGIGA | |
306 | int cpu_eth_init(bd_t *bis) | |
307 | { | |
308 | kirkwood_egiga_initialize(bis); | |
309 | return 0; | |
310 | } | |
311 | #endif |