3 * Marvell Semiconductor <www.marvell.com>
4 * Prafulla Wadaskar <prafulla@marvell.com>
7 * Stefan Roese, DENX Software Engineering, sr@denx.de.
10 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
12 * See file CREDITS for list of people who contributed to this
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.
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.
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,
37 #include <asm/arch/cpu.h>
38 #include <asm/arch/kirkwood.h>
39 #include <asm/arch/mpp.h>
41 #include "../common/common.h"
43 DECLARE_GLOBAL_DATA_PTR;
46 * BOCO FPGA definitions
49 #define REG_CTRL_H 0x02
50 #define MASK_WRL_UNITRUN 0x01
51 #define MASK_RBX_PGY_PRESENT 0x40
52 #define REG_IRQ_CIRQ2 0x2d
53 #define MASK_RBI_DEFECT_16 0x01
55 /* Multi-Purpose Pins Functionality configuration */
56 u32 kwmpp_config[] = {
65 #if defined(CONFIG_SOFT_I2C)
69 #if defined(CONFIG_HARD_I2C)
75 MPP12_GPO, /* Reserved */
78 MPP15_GPIO, /* Not used */
79 MPP16_GPIO, /* Not used */
80 MPP17_GPIO, /* Reserved */
97 MPP34_GPIO, /* CDL1 (input) */
98 MPP35_GPIO, /* CDL2 (input) */
99 MPP36_GPIO, /* MAIN_IRQ (input) */
100 MPP37_GPIO, /* BOARD_LED */
101 MPP38_GPIO, /* Piggy3 LED[1] */
102 MPP39_GPIO, /* Piggy3 LED[2] */
103 MPP40_GPIO, /* Piggy3 LED[3] */
104 MPP41_GPIO, /* Piggy3 LED[4] */
105 MPP42_GPIO, /* Piggy3 LED[5] */
106 MPP43_GPIO, /* Piggy3 LED[6] */
107 MPP44_GPIO, /* Piggy3 LED[7], BIST_EN_L */
108 MPP45_GPIO, /* Piggy3 LED[8] */
109 MPP46_GPIO, /* Reserved */
110 MPP47_GPIO, /* Reserved */
111 MPP48_GPIO, /* Reserved */
112 MPP49_GPIO, /* SW_INTOUTn */
116 #if defined(CONFIG_MGCOGE3UN)
118 * Wait for startup OK from mgcoge3ne
120 int startup_allowed(void)
125 * Read CIRQ16 bit (bit 0)
127 if (i2c_read(BOCO, REG_IRQ_CIRQ2, 1, &buf, 1) != 0)
128 printf("%s: Error reading Boco\n", __func__);
130 if ((buf & MASK_RBI_DEFECT_16) == MASK_RBI_DEFECT_16)
136 #if (defined(CONFIG_MGCOGE3UN)|defined(CONFIG_PORTL2))
138 * These two boards have always ethernet present. Its connected to the mv
141 int ethernet_present(void)
146 int ethernet_present(void)
151 if (i2c_read(BOCO, REG_CTRL_H, 1, &buf, 1) != 0) {
152 printf("%s: Error reading Boco\n", __func__);
155 if ((buf & MASK_RBX_PGY_PRESENT) == MASK_RBX_PGY_PRESENT)
162 int initialize_unit_leds(void)
165 * Init the unit LEDs per default they all are
166 * ok apart from bootstat
170 if (i2c_read(BOCO, REG_CTRL_H, 1, &buf, 1) != 0) {
171 printf("%s: Error reading Boco\n", __func__);
174 buf |= MASK_WRL_UNITRUN;
175 if (i2c_write(BOCO, REG_CTRL_H, 1, &buf, 1) != 0) {
176 printf("%s: Error writing Boco\n", __func__);
182 #if defined(CONFIG_BOOTCOUNT_LIMIT)
183 void set_bootcount_addr(void)
186 unsigned int bootcountaddr;
187 bootcountaddr = gd->ram_size - BOOTCOUNT_ADDR;
188 sprintf((char *)buf, "0x%x", bootcountaddr);
189 setenv("bootcountaddr", (char *)buf);
193 int misc_init_r(void)
198 str = getenv("mach_type");
200 mach_type = simple_strtoul(str, NULL, 10);
201 printf("Overwriting MACH_TYPE with %d!!!\n", mach_type);
202 gd->bd->bi_arch_number = mach_type;
204 #if defined(CONFIG_MGCOGE3UN)
206 wait_for_ne = getenv("waitforne");
207 if (wait_for_ne != NULL) {
208 if (strcmp(wait_for_ne, "true") == 0) {
212 while (startup_allowed() == 0) {
214 (void) getc(); /* consume input */
221 puts("wait\b\b\b\b");
228 printf("\nAbort waiting for ne\n");
235 initialize_unit_leds();
237 #if defined(CONFIG_BOOTCOUNT_LIMIT)
238 set_bootcount_addr();
243 int board_early_init_f(void)
247 kirkwood_mpp_conf(kwmpp_config);
250 * The FLASH_GPIO_PIN switches between using a
251 * NAND or a SPI FLASH. Set this pin on start
254 tmp = readl(KW_GPIO0_BASE);
255 writel(tmp | FLASH_GPIO_PIN , KW_GPIO0_BASE);
256 tmp = readl(KW_GPIO0_BASE + 4);
257 writel(tmp & (~FLASH_GPIO_PIN) , KW_GPIO0_BASE + 4);
259 #if defined(CONFIG_SOFT_I2C)
260 /* init the GPIO for I2C Bitbang driver */
261 kw_gpio_set_valid(KM_KIRKWOOD_SDA_PIN, 1);
262 kw_gpio_set_valid(KM_KIRKWOOD_SCL_PIN, 1);
263 kw_gpio_direction_output(KM_KIRKWOOD_SDA_PIN, 0);
264 kw_gpio_direction_output(KM_KIRKWOOD_SCL_PIN, 0);
266 #if defined(CONFIG_SYS_EEPROM_WREN)
267 kw_gpio_set_valid(KM_KIRKWOOD_ENV_WP, 38);
268 kw_gpio_direction_output(KM_KIRKWOOD_ENV_WP, 1);
270 #if defined(CONFIG_KM_RECONFIG_XLX)
271 /* trigger the reconfiguration of the xilinx fpga */
272 kw_gpio_set_valid(KM_XLX_PROGRAM_B_PIN, 1);
273 kw_gpio_direction_output(KM_XLX_PROGRAM_B_PIN, 0);
274 kw_gpio_direction_input(KM_XLX_PROGRAM_B_PIN);
281 /* address of boot parameters */
282 gd->bd->bi_boot_params = kw_sdram_bar(0) + 0x100;
287 #if defined(CONFIG_CMD_SF)
288 int do_spi_toggle(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
292 return cmd_usage(cmdtp);
294 if ((strcmp(argv[1], "off") == 0)) {
295 printf("SPI FLASH disabled, NAND enabled\n");
296 /* Multi-Purpose Pins Functionality configuration */
297 kwmpp_config[0] = MPP0_NF_IO2;
298 kwmpp_config[1] = MPP1_NF_IO3;
299 kwmpp_config[2] = MPP2_NF_IO4;
300 kwmpp_config[3] = MPP3_NF_IO5;
302 kirkwood_mpp_conf(kwmpp_config);
303 tmp = readl(KW_GPIO0_BASE);
304 writel(tmp | FLASH_GPIO_PIN , KW_GPIO0_BASE);
305 } else if ((strcmp(argv[1], "on") == 0)) {
306 printf("SPI FLASH enabled, NAND disabled\n");
307 /* Multi-Purpose Pins Functionality configuration */
308 kwmpp_config[0] = MPP0_SPI_SCn;
309 kwmpp_config[1] = MPP1_SPI_MOSI;
310 kwmpp_config[2] = MPP2_SPI_SCK;
311 kwmpp_config[3] = MPP3_SPI_MISO;
313 kirkwood_mpp_conf(kwmpp_config);
314 tmp = readl(KW_GPIO0_BASE);
315 writel(tmp & (~FLASH_GPIO_PIN) , KW_GPIO0_BASE);
317 return cmd_usage(cmdtp);
324 spitoggle, 2, 0, do_spi_toggle,
325 "En-/disable SPI FLASH access",
326 "<on|off> - Enable (on) or disable (off) SPI FLASH access\n"
332 /* dram_init must store complete ramsize in gd->ram_size */
334 gd->ram_size = get_ram_size((void *)kw_sdram_bar(0),
339 void dram_init_banksize(void)
343 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
344 gd->bd->bi_dram[i].start = kw_sdram_bar(i);
345 gd->bd->bi_dram[i].size = get_ram_size((long *)kw_sdram_bar(i),
350 #if (defined(CONFIG_MGCOGE3UN)|defined(CONFIG_PORTL2))
352 #define PHY_LED_SEL 0x18
353 #define PHY_LED0_LINK (0x5)
354 #define PHY_LED1_ACT (0x8<<4)
355 #define PHY_LED2_INT (0xe<<8)
356 #define PHY_SPEC_CTRL 0x1c
357 #define PHY_RGMII_CLK_STABLE (0x1<<10)
358 #define PHY_CLSA (0x1<<1)
360 /* Configure and enable MV88E3018 PHY */
363 char *name = "egiga0";
366 if (miiphy_set_current_dev(name))
369 /* RGMII clk transition on data stable */
370 if (miiphy_read(name, CONFIG_PHY_BASE_ADR, PHY_SPEC_CTRL, ®) != 0)
371 printf("Error reading PHY spec ctrl reg\n");
372 if (miiphy_write(name, CONFIG_PHY_BASE_ADR, PHY_SPEC_CTRL,
373 reg | PHY_RGMII_CLK_STABLE | PHY_CLSA) != 0)
374 printf("Error writing PHY spec ctrl reg\n");
377 if (miiphy_write(name, CONFIG_PHY_BASE_ADR, PHY_LED_SEL,
378 PHY_LED0_LINK | PHY_LED1_ACT | PHY_LED2_INT) != 0)
379 printf("Error writing PHY LED reg\n");
382 miiphy_reset(name, CONFIG_PHY_BASE_ADR);
385 /* Configure and enable MV88E1118 PHY on the piggy*/
388 char *name = "egiga0";
390 if (miiphy_set_current_dev(name))
394 miiphy_reset(name, CONFIG_PHY_BASE_ADR);
399 #if defined(CONFIG_HUSH_INIT_VAR)
400 int hush_init_var(void)
407 #if defined(CONFIG_BOOTCOUNT_LIMIT)
408 const ulong patterns[] = { 0x00000000,
413 const ulong NBR_OF_PATTERNS = sizeof(patterns)/sizeof(*patterns);
414 const ulong OFFS_PATTERN = 3;
415 const ulong REPEAT_PATTERN = 1000;
417 void bootcount_store(ulong a)
423 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
424 size += gd->bd->bi_dram[i].size;
425 save_addr = (ulong *)(size - BOOTCOUNT_ADDR);
426 writel(a, save_addr);
427 writel(BOOTCOUNT_MAGIC, &save_addr[1]);
429 for (i = 0; i < REPEAT_PATTERN; i++)
430 writel(patterns[i % NBR_OF_PATTERNS],
431 &save_addr[i+OFFS_PATTERN]);
435 ulong bootcount_load(void)
442 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
443 size += gd->bd->bi_dram[i].size;
444 save_addr = (ulong *)(size - BOOTCOUNT_ADDR);
446 counter = readl(&save_addr[0]);
448 /* Is the counter reliable, check in the big pattern for bit errors */
449 for (i = 0; (i < REPEAT_PATTERN) && (counter != 0); i++) {
450 tmp = readl(&save_addr[i+OFFS_PATTERN]);
451 if (tmp != patterns[i % NBR_OF_PATTERNS])
458 #if defined(CONFIG_SOFT_I2C)
459 void set_sda(int state)
465 void set_scl(int state)
478 return kw_gpio_get_value(KM_KIRKWOOD_SCL_PIN) ? 1 : 0;
482 #if defined(CONFIG_POST)
484 #define KM_POST_EN_L 44
485 #define POST_WORD_OFF 8
487 int post_hotkeys_pressed(void)
489 return !kw_gpio_get_value(KM_POST_EN_L);
492 ulong post_word_load(void)
494 void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
495 return in_le32(addr);
498 void post_word_store(ulong value)
500 void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
501 out_le32(addr, value);
504 int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
506 *vstart = CONFIG_SYS_SDRAM_BASE;
508 /* we go up to relocation plus a 1 MB margin */
509 *size = CONFIG_SYS_TEXT_BASE - (1<<20);
515 #if defined(CONFIG_SYS_EEPROM_WREN)
516 int eeprom_write_enable(unsigned dev_addr, int state)
518 kw_gpio_set_value(KM_KIRKWOOD_ENV_WP, !state);
520 return !kw_gpio_get_value(KM_KIRKWOOD_ENV_WP);