blob: 194ba1c85df18a325e870a3f28fe2bc8fc65ae5e [file] [log] [blame]
Prafulla Wadaskara09bbe52009-06-20 11:01:53 +02001/*
2 * (C) Copyright 2009
3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
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
33void 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 */
49unsigned 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 */
77static unsigned int kw_winctrl_calcsize(unsigned int sizeval)
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
90/* prepares data to be loaded in win_Ctrl register */
91#define KWCPU_WIN_CTRL_DATA(size, target, attr, en) (en | (target << 4) \
92 | (attr << 8) | (kw_winctrl_calcsize(size) << 16))
93
94/*
95 * kw_config_adr_windows - Configure address Windows
96 *
97 * There are 8 address windows supported by Kirkwood Soc to addess different
98 * devices. Each window can be configured for size, BAR and remap addr
99 * Below configuration is standard for most of the cases
100 *
101 * If remap function not used, remap_lo must be set as base
102 *
103 * Reference Documentation:
104 * Mbus-L to Mbus Bridge Registers Configuration.
105 * (Sec 25.1 and 25.3 of Datasheet)
106 */
107int kw_config_adr_windows(void)
108{
109 struct kwwin_registers *winregs =
110 (struct kwwin_registers *)KW_CPU_WIN_BASE;
111
112 /* Window 0: PCIE MEM address space */
113 writel(KWCPU_WIN_CTRL_DATA(1024 * 1024 * 256, KWCPU_TARGET_PCIE,
114 KWCPU_ATTR_PCIE_MEM, KWCPU_WIN_ENABLE), &winregs[0].ctrl);
115
116 writel(KW_DEFADR_PCI_MEM, &winregs[0].base);
117 writel(KW_DEFADR_PCI_MEM, &winregs[0].remap_lo);
118 writel(0x0, &winregs[0].remap_hi);
119
120 /* Window 1: PCIE IO address space */
121 writel(KWCPU_WIN_CTRL_DATA(1024 * 64, KWCPU_TARGET_PCIE,
122 KWCPU_ATTR_PCIE_IO, KWCPU_WIN_ENABLE), &winregs[1].ctrl);
123 writel(KW_DEFADR_PCI_IO, &winregs[1].base);
124 writel(KW_DEFADR_PCI_IO_REMAP, &winregs[1].remap_lo);
125 writel(0x0, &winregs[1].remap_hi);
126
127 /* Window 2: NAND Flash address space */
128 writel(KWCPU_WIN_CTRL_DATA(1024 * 1024 * 128, KWCPU_TARGET_MEMORY,
129 KWCPU_ATTR_NANDFLASH, KWCPU_WIN_ENABLE), &winregs[2].ctrl);
130 writel(KW_DEFADR_NANDF, &winregs[2].base);
131 writel(KW_DEFADR_NANDF, &winregs[2].remap_lo);
132 writel(0x0, &winregs[2].remap_hi);
133
134 /* Window 3: SPI Flash address space */
135 writel(KWCPU_WIN_CTRL_DATA(1024 * 1024 * 128, KWCPU_TARGET_MEMORY,
136 KWCPU_ATTR_SPIFLASH, KWCPU_WIN_ENABLE), &winregs[3].ctrl);
137 writel(KW_DEFADR_SPIF, &winregs[3].base);
138 writel(KW_DEFADR_SPIF, &winregs[3].remap_lo);
139 writel(0x0, &winregs[3].remap_hi);
140
141 /* Window 4: BOOT Memory address space */
142 writel(KWCPU_WIN_CTRL_DATA(1024 * 1024 * 128, KWCPU_TARGET_MEMORY,
143 KWCPU_ATTR_BOOTROM, KWCPU_WIN_ENABLE), &winregs[4].ctrl);
144 writel(KW_DEFADR_BOOTROM, &winregs[4].base);
145
146 /* Window 5: Security SRAM address space */
147 writel(KWCPU_WIN_CTRL_DATA(1024 * 64, KWCPU_TARGET_SASRAM,
148 KWCPU_ATTR_SASRAM, KWCPU_WIN_ENABLE), &winregs[5].ctrl);
149 writel(KW_DEFADR_SASRAM, &winregs[5].base);
150
151 /* Window 6-7: Disabled */
152 writel(KWCPU_WIN_DISABLE, &winregs[6].ctrl);
153 writel(KWCPU_WIN_DISABLE, &winregs[7].ctrl);
154
155 return 0;
156}
157
158/*
159 * kw_config_gpio - GPIO configuration
160 */
161void kw_config_gpio(u32 gpp0_oe_val, u32 gpp1_oe_val, u32 gpp0_oe, u32 gpp1_oe)
162{
163 struct kwgpio_registers *gpio0reg =
164 (struct kwgpio_registers *)KW_GPIO0_BASE;
165 struct kwgpio_registers *gpio1reg =
166 (struct kwgpio_registers *)KW_GPIO1_BASE;
167
168 /* Init GPIOS to default values as per board requirement */
169 writel(gpp0_oe_val, &gpio0reg->dout);
170 writel(gpp1_oe_val, &gpio1reg->dout);
171 writel(gpp0_oe, &gpio0reg->oe);
172 writel(gpp1_oe, &gpio1reg->oe);
173}
174
175/*
176 * kw_config_mpp - Multi-Purpose Pins Functionality configuration
177 *
178 * Each MPP can be configured to different functionality through
179 * MPP control register, ref (sec 6.1 of kirkwood h/w specification)
180 *
181 * There are maximum 64 Multi-Pourpose Pins on Kirkwood
182 * Each MPP functionality can be configuration by a 4bit value
183 * of MPP control reg, the value and associated functionality depends
184 * upon used SoC varient
185 */
186int kw_config_mpp(u32 mpp0_7, u32 mpp8_15, u32 mpp16_23, u32 mpp24_31,
187 u32 mpp32_39, u32 mpp40_47, u32 mpp48_55)
188{
189 u32 *mppreg = (u32 *) KW_MPP_BASE;
190
191 /* program mpp registers */
192 writel(mpp0_7, &mppreg[0]);
193 writel(mpp8_15, &mppreg[1]);
194 writel(mpp16_23, &mppreg[2]);
195 writel(mpp24_31, &mppreg[3]);
196 writel(mpp32_39, &mppreg[4]);
197 writel(mpp40_47, &mppreg[5]);
198 writel(mpp48_55, &mppreg[6]);
199 return 0;
200}
201
202#if defined(CONFIG_DISPLAY_CPUINFO)
203int print_cpuinfo(void)
204{
205 char *name = "Unknown";
206
207 switch (readl(KW_REG_DEVICE_ID) & 0x03) {
208 case 1:
209 name = "88F6192_A0";
210 break;
211 case 2:
212 name = "88F6281_A0";
213 break;
214 default:
215 printf("SoC: Unsupported Kirkwood\n");
216 return -1;
217 }
218 printf("SoC: Kirkwood %s\n", name);
219 return 0;
220}
221#endif /* CONFIG_DISPLAY_CPUINFO */
222
223#ifdef CONFIG_ARCH_CPU_INIT
224int arch_cpu_init(void)
225{
226 u32 reg;
227 struct kwcpu_registers *cpureg =
228 (struct kwcpu_registers *)KW_CPU_REG_BASE;
229
230 /* Linux expects` the internal registers to be at 0xf1000000 */
231 writel(KW_REGS_PHY_BASE, KW_OFFSET_REG);
232
233 /* Enable and invalidate L2 cache in write through mode */
234 writel(readl(&cpureg->l2_cfg) | 0x18, &cpureg->l2_cfg);
235 invalidate_l2_cache();
236
237 kw_config_adr_windows();
238
239#ifdef CONFIG_KIRKWOOD_RGMII_PAD_1V8
240 /*
241 * Configures the I/O voltage of the pads connected to Egigabit
242 * Ethernet interface to 1.8V
243 * By defult it is set to 3.3V
244 */
245 reg = readl(KW_REG_MPP_OUT_DRV_REG);
246 reg |= (1 << 7);
247 writel(reg, KW_REG_MPP_OUT_DRV_REG);
248#endif
249#ifdef CONFIG_KIRKWOOD_EGIGA_INIT
250 /*
251 * Set egiga port0/1 in normal functional mode
252 * This is required becasue on kirkwood by default ports are in reset mode
253 * OS egiga driver may not have provision to set them in normal mode
254 * and if u-boot is build without network support, network may fail at OS level
255 */
256 reg = readl(KWGBE_PORT_SERIAL_CONTROL1_REG(0));
257 reg &= ~(1 << 4); /* Clear PortReset Bit */
258 writel(reg, (KWGBE_PORT_SERIAL_CONTROL1_REG(0)));
259 reg = readl(KWGBE_PORT_SERIAL_CONTROL1_REG(1));
260 reg &= ~(1 << 4); /* Clear PortReset Bit */
261 writel(reg, (KWGBE_PORT_SERIAL_CONTROL1_REG(1)));
262#endif
263#ifdef CONFIG_KIRKWOOD_PCIE_INIT
264 /*
265 * Enable PCI Express Port0
266 */
267 reg = readl(&cpureg->ctrl_stat);
268 reg |= (1 << 0); /* Set PEX0En Bit */
269 writel(reg, &cpureg->ctrl_stat);
270#endif
271 return 0;
272}
273#endif /* CONFIG_ARCH_CPU_INIT */
274
275/*
276 * SOC specific misc init
277 */
278#if defined(CONFIG_ARCH_MISC_INIT)
279int arch_misc_init(void)
280{
281 volatile u32 temp;
282
283 /*CPU streaming & write allocate */
284 temp = readfr_extra_feature_reg();
285 temp &= ~(1 << 28); /* disable wr alloc */
286 writefr_extra_feature_reg(temp);
287
288 temp = readfr_extra_feature_reg();
289 temp &= ~(1 << 29); /* streaming disabled */
290 writefr_extra_feature_reg(temp);
291
292 /* L2Cache settings */
293 temp = readfr_extra_feature_reg();
294 /* Disable L2C pre fetch - Set bit 24 */
295 temp |= (1 << 24);
296 /* enable L2C - Set bit 22 */
297 temp |= (1 << 22);
298 writefr_extra_feature_reg(temp);
299
300 icache_enable();
301 /* Change reset vector to address 0x0 */
302 temp = get_cr();
303 set_cr(temp & ~CR_V);
304
305 return 0;
306}
307#endif /* CONFIG_ARCH_MISC_INIT */
308
309#ifdef CONFIG_KIRKWOOD_EGIGA
310int cpu_eth_init(bd_t *bis)
311{
312 kirkwood_egiga_initialize(bis);
313 return 0;
314}
315#endif