blob: cb3402b8f96723bde044918f6468a8a7e3d137a3 [file] [log] [blame]
Heiko Schocher60301192010-02-22 16:43:02 +05301/*
2 * (C) Copyright 2009
3 * Marvell Semiconductor <www.marvell.com>
4 * Prafulla Wadaskar <prafulla@marvell.com>
5 *
6 * (C) Copyright 2009
7 * Stefan Roese, DENX Software Engineering, sr@denx.de.
8 *
9 * (C) Copyright 2010
10 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
28 * MA 02110-1301 USA
29 */
30
31#include <common.h>
32#include <i2c.h>
33#include <nand.h>
34#include <netdev.h>
35#include <miiphy.h>
Valentin Longchamp96957ef2012-06-13 03:01:03 +000036#include <spi.h>
Heiko Schocher60301192010-02-22 16:43:02 +053037#include <asm/io.h>
Lei Wen298ae912011-10-18 20:11:42 +053038#include <asm/arch/cpu.h>
Heiko Schocher60301192010-02-22 16:43:02 +053039#include <asm/arch/kirkwood.h>
40#include <asm/arch/mpp.h>
41
42#include "../common/common.h"
43
44DECLARE_GLOBAL_DATA_PTR;
45
Holger Brunck4de3cdd2011-05-31 02:12:52 +000046/*
47 * BOCO FPGA definitions
48 */
49#define BOCO 0x10
50#define REG_CTRL_H 0x02
51#define MASK_WRL_UNITRUN 0x01
52#define MASK_RBX_PGY_PRESENT 0x40
53#define REG_IRQ_CIRQ2 0x2d
54#define MASK_RBI_DEFECT_16 0x01
55
Heiko Schocher60301192010-02-22 16:43:02 +053056/* Multi-Purpose Pins Functionality configuration */
57u32 kwmpp_config[] = {
58 MPP0_NF_IO2,
59 MPP1_NF_IO3,
60 MPP2_NF_IO4,
61 MPP3_NF_IO5,
62 MPP4_NF_IO6,
63 MPP5_NF_IO7,
64 MPP6_SYSRST_OUTn,
65 MPP7_PEX_RST_OUTn,
66#if defined(CONFIG_SOFT_I2C)
67 MPP8_GPIO, /* SDA */
68 MPP9_GPIO, /* SCL */
69#endif
70#if defined(CONFIG_HARD_I2C)
71 MPP8_TW_SDA,
72 MPP9_TW_SCK,
73#endif
74 MPP10_UART0_TXD,
75 MPP11_UART0_RXD,
76 MPP12_GPO, /* Reserved */
77 MPP13_UART1_TXD,
78 MPP14_UART1_RXD,
79 MPP15_GPIO, /* Not used */
80 MPP16_GPIO, /* Not used */
81 MPP17_GPIO, /* Reserved */
82 MPP18_NF_IO0,
83 MPP19_NF_IO1,
84 MPP20_GPIO,
85 MPP21_GPIO,
86 MPP22_GPIO,
87 MPP23_GPIO,
88 MPP24_GPIO,
89 MPP25_GPIO,
90 MPP26_GPIO,
91 MPP27_GPIO,
92 MPP28_GPIO,
93 MPP29_GPIO,
94 MPP30_GPIO,
95 MPP31_GPIO,
96 MPP32_GPIO,
97 MPP33_GPIO,
98 MPP34_GPIO, /* CDL1 (input) */
99 MPP35_GPIO, /* CDL2 (input) */
100 MPP36_GPIO, /* MAIN_IRQ (input) */
101 MPP37_GPIO, /* BOARD_LED */
102 MPP38_GPIO, /* Piggy3 LED[1] */
103 MPP39_GPIO, /* Piggy3 LED[2] */
104 MPP40_GPIO, /* Piggy3 LED[3] */
105 MPP41_GPIO, /* Piggy3 LED[4] */
106 MPP42_GPIO, /* Piggy3 LED[5] */
107 MPP43_GPIO, /* Piggy3 LED[6] */
Heiko Schocher9878f992011-02-22 09:13:00 +0100108 MPP44_GPIO, /* Piggy3 LED[7], BIST_EN_L */
Heiko Schocher60301192010-02-22 16:43:02 +0530109 MPP45_GPIO, /* Piggy3 LED[8] */
110 MPP46_GPIO, /* Reserved */
111 MPP47_GPIO, /* Reserved */
112 MPP48_GPIO, /* Reserved */
113 MPP49_GPIO, /* SW_INTOUTn */
114 0
115};
116
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000117#if defined(CONFIG_MGCOGE3UN)
118/*
119 * Wait for startup OK from mgcoge3ne
120 */
121int startup_allowed(void)
122{
123 unsigned char buf;
124
125 /*
126 * Read CIRQ16 bit (bit 0)
127 */
128 if (i2c_read(BOCO, REG_IRQ_CIRQ2, 1, &buf, 1) != 0)
129 printf("%s: Error reading Boco\n", __func__);
130 else
131 if ((buf & MASK_RBI_DEFECT_16) == MASK_RBI_DEFECT_16)
132 return 1;
133 return 0;
134}
Valentin Longchamp2ec63ad2011-06-16 18:11:15 +0530135#endif
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000136
Valentin Longchamp2ec63ad2011-06-16 18:11:15 +0530137#if (defined(CONFIG_MGCOGE3UN)|defined(CONFIG_PORTL2))
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000138/*
Valentin Longchamp2ec63ad2011-06-16 18:11:15 +0530139 * These two boards have always ethernet present. Its connected to the mv
140 * switch.
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000141 */
142int ethernet_present(void)
143{
144 return 1;
145}
146#else
Heiko Schocher60301192010-02-22 16:43:02 +0530147int ethernet_present(void)
148{
149 uchar buf;
150 int ret = 0;
151
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000152 if (i2c_read(BOCO, REG_CTRL_H, 1, &buf, 1) != 0) {
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100153 printf("%s: Error reading Boco\n", __func__);
Heiko Schocher60301192010-02-22 16:43:02 +0530154 return -1;
155 }
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000156 if ((buf & MASK_RBX_PGY_PRESENT) == MASK_RBX_PGY_PRESENT)
Heiko Schocher60301192010-02-22 16:43:02 +0530157 ret = 1;
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100158
Heiko Schocher60301192010-02-22 16:43:02 +0530159 return ret;
160}
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000161#endif
Heiko Schocher60301192010-02-22 16:43:02 +0530162
Heiko Schochere4533af2011-03-08 10:53:51 +0100163int initialize_unit_leds(void)
164{
165 /*
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000166 * Init the unit LEDs per default they all are
Heiko Schochere4533af2011-03-08 10:53:51 +0100167 * ok apart from bootstat
Heiko Schochere4533af2011-03-08 10:53:51 +0100168 */
Heiko Schochere4533af2011-03-08 10:53:51 +0100169 uchar buf;
170
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000171 if (i2c_read(BOCO, REG_CTRL_H, 1, &buf, 1) != 0) {
Heiko Schochere4533af2011-03-08 10:53:51 +0100172 printf("%s: Error reading Boco\n", __func__);
173 return -1;
174 }
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000175 buf |= MASK_WRL_UNITRUN;
176 if (i2c_write(BOCO, REG_CTRL_H, 1, &buf, 1) != 0) {
Heiko Schochere4533af2011-03-08 10:53:51 +0100177 printf("%s: Error writing Boco\n", __func__);
178 return -1;
179 }
180 return 0;
181}
182
Valentin Longchamp184907a2011-05-31 02:12:47 +0000183#if defined(CONFIG_BOOTCOUNT_LIMIT)
184void set_bootcount_addr(void)
185{
186 uchar buf[32];
187 unsigned int bootcountaddr;
188 bootcountaddr = gd->ram_size - BOOTCOUNT_ADDR;
189 sprintf((char *)buf, "0x%x", bootcountaddr);
190 setenv("bootcountaddr", (char *)buf);
191}
192#endif
193
Heiko Schocher60301192010-02-22 16:43:02 +0530194int misc_init_r(void)
195{
Heiko Schocher60301192010-02-22 16:43:02 +0530196 char *str;
197 int mach_type;
198
Heiko Schocher60301192010-02-22 16:43:02 +0530199 str = getenv("mach_type");
200 if (str != NULL) {
201 mach_type = simple_strtoul(str, NULL, 10);
202 printf("Overwriting MACH_TYPE with %d!!!\n", mach_type);
203 gd->bd->bi_arch_number = mach_type;
204 }
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000205#if defined(CONFIG_MGCOGE3UN)
206 char *wait_for_ne;
207 wait_for_ne = getenv("waitforne");
208 if (wait_for_ne != NULL) {
209 if (strcmp(wait_for_ne, "true") == 0) {
210 int cnt = 0;
Holger Brunck42874a72011-09-27 02:54:31 +0000211 int abort = 0;
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000212 puts("NE go: ");
213 while (startup_allowed() == 0) {
Holger Brunck42874a72011-09-27 02:54:31 +0000214 if (tstc()) {
215 (void) getc(); /* consume input */
216 abort = 1;
217 break;
218 }
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000219 udelay(200000);
220 cnt++;
221 if (cnt == 5)
222 puts("wait\b\b\b\b");
223 if (cnt == 10) {
224 cnt = 0;
225 puts(" \b\b\b\b");
226 }
227 }
Holger Brunck42874a72011-09-27 02:54:31 +0000228 if (abort == 1)
229 printf("\nAbort waiting for ne\n");
230 else
231 puts("OK\n");
Holger Brunck4de3cdd2011-05-31 02:12:52 +0000232 }
233 }
234#endif
Heiko Schochere4533af2011-03-08 10:53:51 +0100235
236 initialize_unit_leds();
Valentin Longchamp184907a2011-05-31 02:12:47 +0000237 set_km_env();
238#if defined(CONFIG_BOOTCOUNT_LIMIT)
239 set_bootcount_addr();
240#endif
Heiko Schocher60301192010-02-22 16:43:02 +0530241 return 0;
242}
243
Heiko Schocher3ebd02b2010-10-20 19:33:26 +0530244int board_early_init_f(void)
Heiko Schocher60301192010-02-22 16:43:02 +0530245{
246 u32 tmp;
247
Valentin Longchamp7d0d5022012-06-01 01:31:00 +0000248 kirkwood_mpp_conf(kwmpp_config, NULL);
Heiko Schocher60301192010-02-22 16:43:02 +0530249
250 /*
251 * The FLASH_GPIO_PIN switches between using a
252 * NAND or a SPI FLASH. Set this pin on start
253 * to NAND mode.
254 */
255 tmp = readl(KW_GPIO0_BASE);
256 writel(tmp | FLASH_GPIO_PIN , KW_GPIO0_BASE);
257 tmp = readl(KW_GPIO0_BASE + 4);
258 writel(tmp & (~FLASH_GPIO_PIN) , KW_GPIO0_BASE + 4);
Heiko Schocher60301192010-02-22 16:43:02 +0530259
Heiko Schocher60301192010-02-22 16:43:02 +0530260#if defined(CONFIG_SOFT_I2C)
261 /* init the GPIO for I2C Bitbang driver */
Heiko Schocher9878f992011-02-22 09:13:00 +0100262 kw_gpio_set_valid(KM_KIRKWOOD_SDA_PIN, 1);
263 kw_gpio_set_valid(KM_KIRKWOOD_SCL_PIN, 1);
264 kw_gpio_direction_output(KM_KIRKWOOD_SDA_PIN, 0);
265 kw_gpio_direction_output(KM_KIRKWOOD_SCL_PIN, 0);
Heiko Schocher60301192010-02-22 16:43:02 +0530266#endif
267#if defined(CONFIG_SYS_EEPROM_WREN)
Heiko Schocher9878f992011-02-22 09:13:00 +0100268 kw_gpio_set_valid(KM_KIRKWOOD_ENV_WP, 38);
269 kw_gpio_direction_output(KM_KIRKWOOD_ENV_WP, 1);
Heiko Schocher60301192010-02-22 16:43:02 +0530270#endif
Holger Brunck83270ca2011-09-13 22:41:05 +0000271#if defined(CONFIG_KM_RECONFIG_XLX)
272 /* trigger the reconfiguration of the xilinx fpga */
273 kw_gpio_set_valid(KM_XLX_PROGRAM_B_PIN, 1);
274 kw_gpio_direction_output(KM_XLX_PROGRAM_B_PIN, 0);
275 kw_gpio_direction_input(KM_XLX_PROGRAM_B_PIN);
276#endif
Heiko Schocher3ebd02b2010-10-20 19:33:26 +0530277 return 0;
278}
279
280int board_init(void)
281{
Heiko Schocher3ebd02b2010-10-20 19:33:26 +0530282 /* address of boot parameters */
283 gd->bd->bi_boot_params = kw_sdram_bar(0) + 0x100;
284
Heiko Schochercfc58042010-04-26 13:07:28 +0200285 return 0;
286}
287
Valentin Longchamp96957ef2012-06-13 03:01:03 +0000288int board_spi_claim_bus(struct spi_slave *slave)
Heiko Schocher60301192010-02-22 16:43:02 +0530289{
Valentin Longchamp96957ef2012-06-13 03:01:03 +0000290 kw_gpio_set_value(KM_FLASH_GPIO_PIN, 0);
Heiko Schocher60301192010-02-22 16:43:02 +0530291
292 return 0;
293}
294
Valentin Longchamp96957ef2012-06-13 03:01:03 +0000295void board_spi_release_bus(struct spi_slave *slave)
296{
297 kw_gpio_set_value(KM_FLASH_GPIO_PIN, 1);
298}
Heiko Schocher60301192010-02-22 16:43:02 +0530299
300int dram_init(void)
301{
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200302 /* dram_init must store complete ramsize in gd->ram_size */
303 /* Fix this */
Albert ARIBAUDa9606732011-07-03 05:55:33 +0000304 gd->ram_size = get_ram_size((void *)kw_sdram_bar(0),
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200305 kw_sdram_bs(0));
Heiko Schocher60301192010-02-22 16:43:02 +0530306 return 0;
307}
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200308
309void dram_init_banksize(void)
310{
311 int i;
312
313 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
314 gd->bd->bi_dram[i].start = kw_sdram_bar(i);
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200315 gd->bd->bi_dram[i].size = get_ram_size((long *)kw_sdram_bar(i),
316 kw_sdram_bs(i));
317 }
318}
Heiko Schocher60301192010-02-22 16:43:02 +0530319
Valentin Longchamp2ec63ad2011-06-16 18:11:15 +0530320#if (defined(CONFIG_MGCOGE3UN)|defined(CONFIG_PORTL2))
Valentin Longchamp3f29cbb2011-06-16 18:11:15 +0530321
322#define PHY_LED_SEL 0x18
323#define PHY_LED0_LINK (0x5)
324#define PHY_LED1_ACT (0x8<<4)
325#define PHY_LED2_INT (0xe<<8)
326#define PHY_SPEC_CTRL 0x1c
327#define PHY_RGMII_CLK_STABLE (0x1<<10)
328#define PHY_CLSA (0x1<<1)
329
330/* Configure and enable MV88E3018 PHY */
Heiko Schocher60301192010-02-22 16:43:02 +0530331void reset_phy(void)
332{
333 char *name = "egiga0";
Valentin Longchamp3f29cbb2011-06-16 18:11:15 +0530334 unsigned short reg;
Heiko Schocher60301192010-02-22 16:43:02 +0530335
336 if (miiphy_set_current_dev(name))
337 return;
338
Valentin Longchamp3f29cbb2011-06-16 18:11:15 +0530339 /* RGMII clk transition on data stable */
340 if (miiphy_read(name, CONFIG_PHY_BASE_ADR, PHY_SPEC_CTRL, &reg) != 0)
341 printf("Error reading PHY spec ctrl reg\n");
342 if (miiphy_write(name, CONFIG_PHY_BASE_ADR, PHY_SPEC_CTRL,
343 reg | PHY_RGMII_CLK_STABLE | PHY_CLSA) != 0)
344 printf("Error writing PHY spec ctrl reg\n");
345
346 /* leds setup */
347 if (miiphy_write(name, CONFIG_PHY_BASE_ADR, PHY_LED_SEL,
348 PHY_LED0_LINK | PHY_LED1_ACT | PHY_LED2_INT) != 0)
349 printf("Error writing PHY LED reg\n");
350
Heiko Schocher60301192010-02-22 16:43:02 +0530351 /* reset the phy */
352 miiphy_reset(name, CONFIG_PHY_BASE_ADR);
353}
Valentin Longchamp3f29cbb2011-06-16 18:11:15 +0530354#else
355/* Configure and enable MV88E1118 PHY on the piggy*/
356void reset_phy(void)
357{
358 char *name = "egiga0";
359
360 if (miiphy_set_current_dev(name))
361 return;
362
363 /* reset the phy */
364 miiphy_reset(name, CONFIG_PHY_BASE_ADR);
365}
366#endif
367
Heiko Schocher60301192010-02-22 16:43:02 +0530368
369#if defined(CONFIG_HUSH_INIT_VAR)
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100370int hush_init_var(void)
Heiko Schocher60301192010-02-22 16:43:02 +0530371{
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100372 ivm_read_eeprom();
Heiko Schocher60301192010-02-22 16:43:02 +0530373 return 0;
374}
375#endif
376
377#if defined(CONFIG_BOOTCOUNT_LIMIT)
Holger Brunck90204f22011-09-13 22:41:02 +0000378const ulong patterns[] = { 0x00000000,
379 0xFFFFFFFF,
380 0xFF00FF00,
381 0x0F0F0F0F,
382 0xF0F0F0F0};
Holger Brunck50913d62012-05-25 01:57:16 +0000383const ulong NBR_OF_PATTERNS = ARRAY_SIZE(patterns);
Holger Brunck90204f22011-09-13 22:41:02 +0000384const ulong OFFS_PATTERN = 3;
385const ulong REPEAT_PATTERN = 1000;
386
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100387void bootcount_store(ulong a)
Heiko Schocher60301192010-02-22 16:43:02 +0530388{
Holger Brunck763c2dc2011-12-14 05:31:20 +0000389 ulong *save_addr;
390 ulong size = 0;
Heiko Schocher60301192010-02-22 16:43:02 +0530391 int i;
Holger Brunck763c2dc2011-12-14 05:31:20 +0000392
393 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Heiko Schocher60301192010-02-22 16:43:02 +0530394 size += gd->bd->bi_dram[i].size;
Holger Brunck763c2dc2011-12-14 05:31:20 +0000395 save_addr = (ulong *)(size - BOOTCOUNT_ADDR);
Heiko Schocher60301192010-02-22 16:43:02 +0530396 writel(a, save_addr);
397 writel(BOOTCOUNT_MAGIC, &save_addr[1]);
Holger Brunck90204f22011-09-13 22:41:02 +0000398
399 for (i = 0; i < REPEAT_PATTERN; i++)
400 writel(patterns[i % NBR_OF_PATTERNS],
401 &save_addr[i+OFFS_PATTERN]);
402
Heiko Schocher60301192010-02-22 16:43:02 +0530403}
404
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100405ulong bootcount_load(void)
Heiko Schocher60301192010-02-22 16:43:02 +0530406{
Holger Brunck763c2dc2011-12-14 05:31:20 +0000407 ulong *save_addr;
408 ulong size = 0;
Holger Brunck90204f22011-09-13 22:41:02 +0000409 ulong counter = 0;
410 int i, tmp;
411
Holger Brunck763c2dc2011-12-14 05:31:20 +0000412 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
Heiko Schocher60301192010-02-22 16:43:02 +0530413 size += gd->bd->bi_dram[i].size;
Holger Brunck763c2dc2011-12-14 05:31:20 +0000414 save_addr = (ulong *)(size - BOOTCOUNT_ADDR);
Holger Brunck90204f22011-09-13 22:41:02 +0000415
416 counter = readl(&save_addr[0]);
417
418 /* Is the counter reliable, check in the big pattern for bit errors */
419 for (i = 0; (i < REPEAT_PATTERN) && (counter != 0); i++) {
420 tmp = readl(&save_addr[i+OFFS_PATTERN]);
421 if (tmp != patterns[i % NBR_OF_PATTERNS])
422 counter = 0;
423 }
424 return counter;
Heiko Schocher60301192010-02-22 16:43:02 +0530425}
426#endif
427
428#if defined(CONFIG_SOFT_I2C)
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100429void set_sda(int state)
Heiko Schocher60301192010-02-22 16:43:02 +0530430{
431 I2C_ACTIVE;
432 I2C_SDA(state);
433}
434
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100435void set_scl(int state)
Heiko Schocher60301192010-02-22 16:43:02 +0530436{
437 I2C_SCL(state);
438}
439
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100440int get_sda(void)
Heiko Schocher60301192010-02-22 16:43:02 +0530441{
442 I2C_TRISTATE;
443 return I2C_READ;
444}
445
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100446int get_scl(void)
Heiko Schocher60301192010-02-22 16:43:02 +0530447{
Heiko Schocher9878f992011-02-22 09:13:00 +0100448 return kw_gpio_get_value(KM_KIRKWOOD_SCL_PIN) ? 1 : 0;
Heiko Schocher60301192010-02-22 16:43:02 +0530449}
450#endif
451
Valentin Longchamp24ec9932011-09-12 04:18:42 +0000452#if defined(CONFIG_POST)
453
454#define KM_POST_EN_L 44
455#define POST_WORD_OFF 8
456
457int post_hotkeys_pressed(void)
458{
459 return !kw_gpio_get_value(KM_POST_EN_L);
460}
461
462ulong post_word_load(void)
463{
Holger Brunck763c2dc2011-12-14 05:31:20 +0000464 void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
Valentin Longchamp24ec9932011-09-12 04:18:42 +0000465 return in_le32(addr);
466
467}
468void post_word_store(ulong value)
469{
Holger Brunck763c2dc2011-12-14 05:31:20 +0000470 void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
Valentin Longchamp24ec9932011-09-12 04:18:42 +0000471 out_le32(addr, value);
472}
473
474int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
475{
476 *vstart = CONFIG_SYS_SDRAM_BASE;
477
478 /* we go up to relocation plus a 1 MB margin */
479 *size = CONFIG_SYS_TEXT_BASE - (1<<20);
480
481 return 0;
482}
483#endif
484
Heiko Schocher60301192010-02-22 16:43:02 +0530485#if defined(CONFIG_SYS_EEPROM_WREN)
Heiko Schocher8ce3dd52011-03-15 16:52:29 +0100486int eeprom_write_enable(unsigned dev_addr, int state)
Heiko Schocher60301192010-02-22 16:43:02 +0530487{
Heiko Schocher9878f992011-02-22 09:13:00 +0100488 kw_gpio_set_value(KM_KIRKWOOD_ENV_WP, !state);
Heiko Schocher60301192010-02-22 16:43:02 +0530489
Heiko Schocher9878f992011-02-22 09:13:00 +0100490 return !kw_gpio_get_value(KM_KIRKWOOD_ENV_WP);
Heiko Schocher60301192010-02-22 16:43:02 +0530491}
492#endif