3 * Marvell Semiconductor <www.marvell.com>
6 * See file CREDITS for list of people who contributed to this
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.
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.
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,
27 #include <asm/cache.h>
28 #include <u-boot/md5.h>
29 #include <asm/arch/kirkwood.h>
33 void reset_cpu(unsigned long ignored)
35 struct kwcpu_registers *cpureg =
36 (struct kwcpu_registers *)KW_CPU_REG_BASE;
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);
46 * Generates Ramdom hex number reading some time varient system registers
47 * and using md5 algorithm
49 unsigned char get_random_hex(void)
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)
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);
65 md5((u8 *) inbuf, (BUFLEN * sizeof(u32)), outbuf);
66 return outbuf[outbuf[7] % 0x0f];
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.
77 unsigned int kw_winctrl_calcsize(unsigned int sizeval)
81 u32 val = sizeval >> 1;
83 for (i = 0; val > 0x10000; i++) {
87 return (0x0000ffff & j);
91 * kw_config_adr_windows - Configure address Windows
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
97 * If remap function not used, remap_lo must be set as base
99 * Reference Documentation:
100 * Mbus-L to Mbus Bridge Registers Configuration.
101 * (Sec 25.1 and 25.3 of Datasheet)
103 int kw_config_adr_windows(void)
105 struct kwwin_registers *winregs =
106 (struct kwwin_registers *)KW_CPU_WIN_BASE;
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);
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);
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);
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);
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);
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);
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);
147 /* Window 6-7: Disabled */
148 writel(KWCPU_WIN_DISABLE, &winregs[6].ctrl);
149 writel(KWCPU_WIN_DISABLE, &winregs[7].ctrl);
155 * kw_config_gpio - GPIO configuration
157 void kw_config_gpio(u32 gpp0_oe_val, u32 gpp1_oe_val, u32 gpp0_oe, u32 gpp1_oe)
159 struct kwgpio_registers *gpio0reg =
160 (struct kwgpio_registers *)KW_GPIO0_BASE;
161 struct kwgpio_registers *gpio1reg =
162 (struct kwgpio_registers *)KW_GPIO1_BASE;
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);
172 * kw_config_mpp - Multi-Purpose Pins Functionality configuration
174 * Each MPP can be configured to different functionality through
175 * MPP control register, ref (sec 6.1 of kirkwood h/w specification)
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
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)
185 u32 *mppreg = (u32 *) KW_MPP_BASE;
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]);
198 #if defined(CONFIG_DISPLAY_CPUINFO)
199 int print_cpuinfo(void)
201 char *name = "Unknown";
203 switch (readl(KW_REG_DEVICE_ID) & 0x03) {
211 printf("SoC: Unsupported Kirkwood\n");
214 printf("SoC: Kirkwood %s\n", name);
217 #endif /* CONFIG_DISPLAY_CPUINFO */
219 #ifdef CONFIG_ARCH_CPU_INIT
220 int arch_cpu_init(void)
223 struct kwcpu_registers *cpureg =
224 (struct kwcpu_registers *)KW_CPU_REG_BASE;
226 /* Linux expects` the internal registers to be at 0xf1000000 */
227 writel(KW_REGS_PHY_BASE, KW_OFFSET_REG);
229 /* Enable and invalidate L2 cache in write through mode */
230 writel(readl(&cpureg->l2_cfg) | 0x18, &cpureg->l2_cfg);
231 invalidate_l2_cache();
233 kw_config_adr_windows();
235 #ifdef CONFIG_KIRKWOOD_RGMII_PAD_1V8
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
241 reg = readl(KW_REG_MPP_OUT_DRV_REG);
243 writel(reg, KW_REG_MPP_OUT_DRV_REG);
245 #ifdef CONFIG_KIRKWOOD_EGIGA_INIT
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
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)));
259 #ifdef CONFIG_KIRKWOOD_PCIE_INIT
261 * Enable PCI Express Port0
263 reg = readl(&cpureg->ctrl_stat);
264 reg |= (1 << 0); /* Set PEX0En Bit */
265 writel(reg, &cpureg->ctrl_stat);
269 #endif /* CONFIG_ARCH_CPU_INIT */
272 * SOC specific misc init
274 #if defined(CONFIG_ARCH_MISC_INIT)
275 int arch_misc_init(void)
279 /*CPU streaming & write allocate */
280 temp = readfr_extra_feature_reg();
281 temp &= ~(1 << 28); /* disable wr alloc */
282 writefr_extra_feature_reg(temp);
284 temp = readfr_extra_feature_reg();
285 temp &= ~(1 << 29); /* streaming disabled */
286 writefr_extra_feature_reg(temp);
288 /* L2Cache settings */
289 temp = readfr_extra_feature_reg();
290 /* Disable L2C pre fetch - Set bit 24 */
292 /* enable L2C - Set bit 22 */
294 writefr_extra_feature_reg(temp);
297 /* Change reset vector to address 0x0 */
299 set_cr(temp & ~CR_V);
303 #endif /* CONFIG_ARCH_MISC_INIT */
305 #ifdef CONFIG_KIRKWOOD_EGIGA
306 int cpu_eth_init(bd_t *bis)
308 kirkwood_egiga_initialize(bis);