uboot/board/keymile/km_arm/km_arm.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * (C) Copyright 2009
   4 * Marvell Semiconductor <www.marvell.com>
   5 * Prafulla Wadaskar <prafulla@marvell.com>
   6 *
   7 * (C) Copyright 2009
   8 * Stefan Roese, DENX Software Engineering, sr@denx.de.
   9 *
  10 * (C) Copyright 2010
  11 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
  12 */
  13
  14#include <common.h>
  15#include <env.h>
  16#include <i2c.h>
  17#include <nand.h>
  18#include <netdev.h>
  19#include <miiphy.h>
  20#include <spi.h>
  21#include <asm/io.h>
  22#include <asm/arch/cpu.h>
  23#include <asm/arch/soc.h>
  24#include <asm/arch/mpp.h>
  25
  26#include "../common/common.h"
  27
  28DECLARE_GLOBAL_DATA_PTR;
  29
  30/*
  31 * BOCO FPGA definitions
  32 */
  33#define BOCO            0x10
  34#define REG_CTRL_H              0x02
  35#define MASK_WRL_UNITRUN        0x01
  36#define MASK_RBX_PGY_PRESENT    0x40
  37#define REG_IRQ_CIRQ2           0x2d
  38#define MASK_RBI_DEFECT_16      0x01
  39
  40/*
  41 * PHY registers definitions
  42 */
  43#define PHY_MARVELL_OUI                                 0x5043
  44#define PHY_MARVELL_88E1118_MODEL                       0x0022
  45#define PHY_MARVELL_88E1118R_MODEL                      0x0024
  46
  47#define PHY_MARVELL_PAGE_REG                            0x0016
  48#define PHY_MARVELL_DEFAULT_PAGE                        0x0000
  49
  50#define PHY_MARVELL_88E1118R_LED_CTRL_PAGE              0x0003
  51#define PHY_MARVELL_88E1118R_LED_CTRL_REG               0x0010
  52
  53#define PHY_MARVELL_88E1118R_LED_CTRL_RESERVED          0x1000
  54#define PHY_MARVELL_88E1118R_LED_CTRL_LED0_1000MB       (0x7<<0)
  55#define PHY_MARVELL_88E1118R_LED_CTRL_LED1_ACT          (0x3<<4)
  56#define PHY_MARVELL_88E1118R_LED_CTRL_LED2_LINK         (0x0<<8)
  57
  58/* I/O pin to erase flash RGPP09 = MPP43 */
  59#define KM_FLASH_ERASE_ENABLE   43
  60
  61/* Multi-Purpose Pins Functionality configuration */
  62static const u32 kwmpp_config[] = {
  63        MPP0_NF_IO2,
  64        MPP1_NF_IO3,
  65        MPP2_NF_IO4,
  66        MPP3_NF_IO5,
  67        MPP4_NF_IO6,
  68        MPP5_NF_IO7,
  69        MPP6_SYSRST_OUTn,
  70#if defined(KM_PCIE_RESET_MPP7)
  71        MPP7_GPO,
  72#else
  73        MPP7_PEX_RST_OUTn,
  74#endif
  75#if defined(CONFIG_SYS_I2C_SOFT)
  76        MPP8_GPIO,              /* SDA */
  77        MPP9_GPIO,              /* SCL */
  78#endif
  79        MPP10_UART0_TXD,
  80        MPP11_UART0_RXD,
  81        MPP12_GPO,              /* Reserved */
  82        MPP13_UART1_TXD,
  83        MPP14_UART1_RXD,
  84        MPP15_GPIO,             /* Not used */
  85        MPP16_GPIO,             /* Not used */
  86        MPP17_GPIO,             /* Reserved */
  87        MPP18_NF_IO0,
  88        MPP19_NF_IO1,
  89        MPP20_GPIO,
  90        MPP21_GPIO,
  91        MPP22_GPIO,
  92        MPP23_GPIO,
  93        MPP24_GPIO,
  94        MPP25_GPIO,
  95        MPP26_GPIO,
  96        MPP27_GPIO,
  97        MPP28_GPIO,
  98        MPP29_GPIO,
  99        MPP30_GPIO,
 100        MPP31_GPIO,
 101        MPP32_GPIO,
 102        MPP33_GPIO,
 103        MPP34_GPIO,             /* CDL1 (input) */
 104        MPP35_GPIO,             /* CDL2 (input) */
 105        MPP36_GPIO,             /* MAIN_IRQ (input) */
 106        MPP37_GPIO,             /* BOARD_LED */
 107        MPP38_GPIO,             /* Piggy3 LED[1] */
 108        MPP39_GPIO,             /* Piggy3 LED[2] */
 109        MPP40_GPIO,             /* Piggy3 LED[3] */
 110        MPP41_GPIO,             /* Piggy3 LED[4] */
 111        MPP42_GPIO,             /* Piggy3 LED[5] */
 112        MPP43_GPIO,             /* Piggy3 LED[6] */
 113        MPP44_GPIO,             /* Piggy3 LED[7], BIST_EN_L */
 114        MPP45_GPIO,             /* Piggy3 LED[8] */
 115        MPP46_GPIO,             /* Reserved */
 116        MPP47_GPIO,             /* Reserved */
 117        MPP48_GPIO,             /* Reserved */
 118        MPP49_GPIO,             /* SW_INTOUTn */
 119        0
 120};
 121
 122static uchar ivm_content[CONFIG_SYS_IVM_EEPROM_MAX_LEN];
 123
 124#if defined(CONFIG_KM_MGCOGE3UN)
 125/*
 126 * Wait for startup OK from mgcoge3ne
 127 */
 128static int startup_allowed(void)
 129{
 130        unsigned char buf;
 131
 132        /*
 133         * Read CIRQ16 bit (bit 0)
 134         */
 135        if (i2c_read(BOCO, REG_IRQ_CIRQ2, 1, &buf, 1) != 0)
 136                printf("%s: Error reading Boco\n", __func__);
 137        else
 138                if ((buf & MASK_RBI_DEFECT_16) == MASK_RBI_DEFECT_16)
 139                        return 1;
 140        return 0;
 141}
 142#endif
 143
 144#if (defined(CONFIG_KM_PIGGY4_88E6061)|defined(CONFIG_KM_PIGGY4_88E6352))
 145/*
 146 * All boards with PIGGY4 connected via a simple switch have ethernet always
 147 * present.
 148 */
 149int ethernet_present(void)
 150{
 151        return 1;
 152}
 153#else
 154int ethernet_present(void)
 155{
 156        uchar   buf;
 157        int     ret = 0;
 158
 159        if (i2c_read(BOCO, REG_CTRL_H, 1, &buf, 1) != 0) {
 160                printf("%s: Error reading Boco\n", __func__);
 161                return -1;
 162        }
 163        if ((buf & MASK_RBX_PGY_PRESENT) == MASK_RBX_PGY_PRESENT)
 164                ret = 1;
 165
 166        return ret;
 167}
 168#endif
 169
 170static int initialize_unit_leds(void)
 171{
 172        /*
 173         * Init the unit LEDs per default they all are
 174         * ok apart from bootstat
 175         */
 176        uchar buf;
 177
 178        if (i2c_read(BOCO, REG_CTRL_H, 1, &buf, 1) != 0) {
 179                printf("%s: Error reading Boco\n", __func__);
 180                return -1;
 181        }
 182        buf |= MASK_WRL_UNITRUN;
 183        if (i2c_write(BOCO, REG_CTRL_H, 1, &buf, 1) != 0) {
 184                printf("%s: Error writing Boco\n", __func__);
 185                return -1;
 186        }
 187        return 0;
 188}
 189
 190static void set_bootcount_addr(void)
 191{
 192        uchar buf[32];
 193        unsigned int bootcountaddr;
 194        bootcountaddr = gd->ram_size - BOOTCOUNT_ADDR;
 195        sprintf((char *)buf, "0x%x", bootcountaddr);
 196        env_set("bootcountaddr", (char *)buf);
 197}
 198
 199int misc_init_r(void)
 200{
 201#if defined(CONFIG_KM_MGCOGE3UN)
 202        char *wait_for_ne;
 203        u8 dip_switch = kw_gpio_get_value(KM_FLASH_ERASE_ENABLE);
 204        wait_for_ne = env_get("waitforne");
 205
 206        if ((wait_for_ne != NULL) && (dip_switch == 0)) {
 207                if (strcmp(wait_for_ne, "true") == 0) {
 208                        int cnt = 0;
 209                        int abort = 0;
 210                        puts("NE go: ");
 211                        while (startup_allowed() == 0) {
 212                                if (tstc()) {
 213                                        (void) getc(); /* consume input */
 214                                        abort = 1;
 215                                        break;
 216                                }
 217                                udelay(200000);
 218                                cnt++;
 219                                if (cnt == 5)
 220                                        puts("wait\b\b\b\b");
 221                                if (cnt == 10) {
 222                                        cnt = 0;
 223                                        puts("    \b\b\b\b");
 224                                }
 225                        }
 226                        if (abort == 1)
 227                                printf("\nAbort waiting for ne\n");
 228                        else
 229                                puts("OK\n");
 230                }
 231        }
 232#endif
 233
 234        ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN);
 235
 236        initialize_unit_leds();
 237        set_km_env();
 238        set_bootcount_addr();
 239        return 0;
 240}
 241
 242int board_early_init_f(void)
 243{
 244#if defined(CONFIG_SYS_I2C_SOFT)
 245        u32 tmp;
 246
 247        /* set the 2 bitbang i2c pins as output gpios */
 248        tmp = readl(MVEBU_GPIO0_BASE + 4);
 249        writel(tmp & (~KM_KIRKWOOD_SOFT_I2C_GPIOS) , MVEBU_GPIO0_BASE + 4);
 250#endif
 251        /* adjust SDRAM size for bank 0 */
 252        mvebu_sdram_size_adjust(0);
 253        kirkwood_mpp_conf(kwmpp_config, NULL);
 254        return 0;
 255}
 256
 257int board_init(void)
 258{
 259        /* address of boot parameters */
 260        gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
 261
 262        /*
 263         * The KM_FLASH_GPIO_PIN switches between using a
 264         * NAND or a SPI FLASH. Set this pin on start
 265         * to NAND mode.
 266         */
 267        kw_gpio_set_valid(KM_FLASH_GPIO_PIN, 1);
 268        kw_gpio_direction_output(KM_FLASH_GPIO_PIN, 1);
 269
 270#if defined(CONFIG_SYS_I2C_SOFT)
 271        /*
 272         * Reinit the GPIO for I2C Bitbang driver so that the now
 273         * available gpio framework is consistent. The calls to
 274         * direction output in are not necessary, they are already done in
 275         * board_early_init_f
 276         */
 277        kw_gpio_set_valid(KM_KIRKWOOD_SDA_PIN, 1);
 278        kw_gpio_set_valid(KM_KIRKWOOD_SCL_PIN, 1);
 279#endif
 280
 281#if defined(CONFIG_SYS_EEPROM_WREN)
 282        kw_gpio_set_valid(KM_KIRKWOOD_ENV_WP, 38);
 283        kw_gpio_direction_output(KM_KIRKWOOD_ENV_WP, 1);
 284#endif
 285
 286#if defined(CONFIG_KM_FPGA_CONFIG)
 287        trigger_fpga_config();
 288#endif
 289
 290        return 0;
 291}
 292
 293int board_late_init(void)
 294{
 295#if (defined(CONFIG_KM_COGE5UN) | defined(CONFIG_KM_MGCOGE3UN))
 296        u8 dip_switch = kw_gpio_get_value(KM_FLASH_ERASE_ENABLE);
 297
 298        /* if pin 1 do full erase */
 299        if (dip_switch != 0) {
 300                /* start bootloader */
 301                puts("DIP:   Enabled\n");
 302                env_set("actual_bank", "0");
 303        }
 304#endif
 305
 306#if defined(CONFIG_KM_FPGA_CONFIG)
 307        wait_for_fpga_config();
 308        fpga_reset();
 309        toggle_eeprom_spi_bus();
 310#endif
 311        return 0;
 312}
 313
 314static const u32 spi_mpp_config[] = {
 315        MPP1_SPI_MOSI,
 316        MPP2_SPI_SCK,
 317        MPP3_SPI_MISO,
 318        0
 319};
 320
 321static u32 spi_mpp_backup[4];
 322
 323int mvebu_board_spi_claim_bus(struct udevice *dev)
 324{
 325        spi_mpp_backup[3] = 0;
 326
 327        /* set new spi mpp config and save current one */
 328        kirkwood_mpp_conf(spi_mpp_config, spi_mpp_backup);
 329
 330        kw_gpio_set_value(KM_FLASH_GPIO_PIN, 0);
 331
 332        return 0;
 333}
 334
 335int mvebu_board_spi_release_bus(struct udevice *dev)
 336{
 337        /* restore saved mpp config */
 338        kirkwood_mpp_conf(spi_mpp_backup, NULL);
 339
 340        kw_gpio_set_value(KM_FLASH_GPIO_PIN, 1);
 341
 342        return 0;
 343}
 344
 345#if (defined(CONFIG_KM_PIGGY4_88E6061))
 346
 347#define PHY_LED_SEL_REG         0x18
 348#define PHY_LED0_LINK           (0x5)
 349#define PHY_LED1_ACT            (0x8<<4)
 350#define PHY_LED2_INT            (0xe<<8)
 351#define PHY_SPEC_CTRL_REG       0x1c
 352#define PHY_RGMII_CLK_STABLE    (0x1<<10)
 353#define PHY_CLSA                (0x1<<1)
 354
 355/* Configure and enable MV88E3018 PHY */
 356void reset_phy(void)
 357{
 358        char *name = "egiga0";
 359        unsigned short reg;
 360
 361        if (miiphy_set_current_dev(name))
 362                return;
 363
 364        /* RGMII clk transition on data stable */
 365        if (miiphy_read(name, CONFIG_PHY_BASE_ADR, PHY_SPEC_CTRL_REG, &reg))
 366                printf("Error reading PHY spec ctrl reg\n");
 367        if (miiphy_write(name, CONFIG_PHY_BASE_ADR, PHY_SPEC_CTRL_REG,
 368                         reg | PHY_RGMII_CLK_STABLE | PHY_CLSA))
 369                printf("Error writing PHY spec ctrl reg\n");
 370
 371        /* leds setup */
 372        if (miiphy_write(name, CONFIG_PHY_BASE_ADR, PHY_LED_SEL_REG,
 373                         PHY_LED0_LINK | PHY_LED1_ACT | PHY_LED2_INT))
 374                printf("Error writing PHY LED reg\n");
 375
 376        /* reset the phy */
 377        miiphy_reset(name, CONFIG_PHY_BASE_ADR);
 378}
 379#elif defined(CONFIG_KM_PIGGY4_88E6352)
 380
 381#include <mv88e6352.h>
 382
 383#if defined(CONFIG_KM_NUSA)
 384struct mv88e_sw_reg extsw_conf[] = {
 385        /*
 386         * port 0, PIGGY4, autoneg
 387         * first the fix for the 1000Mbits Autoneg, this is from
 388         * a Marvell errata, the regs are undocumented
 389         */
 390        { PHY(0), PHY_PAGE, AN1000FIX_PAGE },
 391        { PHY(0), PHY_STATUS, AN1000FIX },
 392        { PHY(0), PHY_PAGE, 0 },
 393        /* now the real port and phy configuration */
 394        { PORT(0), PORT_PHY, NO_SPEED_FOR },
 395        { PORT(0), PORT_CTRL, FORWARDING | EGRS_FLD_ALL },
 396        { PHY(0), PHY_1000_CTRL, NO_ADV },
 397        { PHY(0), PHY_SPEC_CTRL, AUTO_MDIX_EN },
 398        { PHY(0), PHY_CTRL, PHY_100_MBPS | AUTONEG_EN | AUTONEG_RST |
 399                FULL_DUPLEX },
 400        /* port 1, unused */
 401        { PORT(1), PORT_CTRL, PORT_DIS },
 402        { PHY(1), PHY_CTRL, PHY_PWR_DOWN },
 403        { PHY(1), PHY_SPEC_CTRL, SPEC_PWR_DOWN },
 404        /* port 2, unused */
 405        { PORT(2), PORT_CTRL, PORT_DIS },
 406        { PHY(2), PHY_CTRL, PHY_PWR_DOWN },
 407        { PHY(2), PHY_SPEC_CTRL, SPEC_PWR_DOWN },
 408        /* port 3, unused */
 409        { PORT(3), PORT_CTRL, PORT_DIS },
 410        { PHY(3), PHY_CTRL, PHY_PWR_DOWN },
 411        { PHY(3), PHY_SPEC_CTRL, SPEC_PWR_DOWN },
 412        /* port 4, ICNEV, SerDes, SGMII */
 413        { PORT(4), PORT_STATUS, NO_PHY_DETECT },
 414        { PORT(4), PORT_PHY, SPEED_1000_FOR },
 415        { PORT(4), PORT_CTRL, FORWARDING | EGRS_FLD_ALL },
 416        { PHY(4), PHY_CTRL, PHY_PWR_DOWN },
 417        { PHY(4), PHY_SPEC_CTRL, SPEC_PWR_DOWN },
 418        /* port 5, CPU_RGMII */
 419        { PORT(5), PORT_PHY, RX_RGMII_TIM | TX_RGMII_TIM | FLOW_CTRL_EN |
 420                FLOW_CTRL_FOR | LINK_VAL | LINK_FOR | FULL_DPX |
 421                FULL_DPX_FOR | SPEED_1000_FOR },
 422        { PORT(5), PORT_CTRL, FORWARDING | EGRS_FLD_ALL },
 423        /* port 6, unused, this port has no phy */
 424        { PORT(6), PORT_CTRL, PORT_DIS },
 425};
 426#else
 427struct mv88e_sw_reg extsw_conf[] = {};
 428#endif
 429
 430void reset_phy(void)
 431{
 432#if defined(CONFIG_KM_MVEXTSW_ADDR)
 433        char *name = "egiga0";
 434
 435        if (miiphy_set_current_dev(name))
 436                return;
 437
 438        mv88e_sw_program(name, CONFIG_KM_MVEXTSW_ADDR, extsw_conf,
 439                ARRAY_SIZE(extsw_conf));
 440        mv88e_sw_reset(name, CONFIG_KM_MVEXTSW_ADDR);
 441#endif
 442}
 443
 444#else
 445/* Configure and enable MV88E1118 PHY on the piggy*/
 446void reset_phy(void)
 447{
 448        unsigned int oui;
 449        unsigned char model, rev;
 450
 451        char *name = "egiga0";
 452
 453        if (miiphy_set_current_dev(name))
 454                return;
 455
 456        /* reset the phy */
 457        miiphy_reset(name, CONFIG_PHY_BASE_ADR);
 458
 459        /* get PHY model */
 460        if (miiphy_info(name, CONFIG_PHY_BASE_ADR, &oui, &model, &rev))
 461                return;
 462
 463        /* check for Marvell 88E1118R Gigabit PHY (PIGGY3) */
 464        if ((oui == PHY_MARVELL_OUI) &&
 465            (model == PHY_MARVELL_88E1118R_MODEL)) {
 466                /* set page register to 3 */
 467                if (miiphy_write(name, CONFIG_PHY_BASE_ADR,
 468                                 PHY_MARVELL_PAGE_REG,
 469                                 PHY_MARVELL_88E1118R_LED_CTRL_PAGE))
 470                        printf("Error writing PHY page reg\n");
 471
 472                /*
 473                 * leds setup as printed on PCB:
 474                 * LED2 (Link): 0x0 (On Link, Off No Link)
 475                 * LED1 (Activity): 0x3 (On Activity, Off No Activity)
 476                 * LED0 (Speed): 0x7 (On 1000 MBits, Off Else)
 477                 */
 478                if (miiphy_write(name, CONFIG_PHY_BASE_ADR,
 479                                 PHY_MARVELL_88E1118R_LED_CTRL_REG,
 480                                 PHY_MARVELL_88E1118R_LED_CTRL_RESERVED |
 481                                 PHY_MARVELL_88E1118R_LED_CTRL_LED0_1000MB |
 482                                 PHY_MARVELL_88E1118R_LED_CTRL_LED1_ACT |
 483                                 PHY_MARVELL_88E1118R_LED_CTRL_LED2_LINK))
 484                        printf("Error writing PHY LED reg\n");
 485
 486                /* set page register back to 0 */
 487                if (miiphy_write(name, CONFIG_PHY_BASE_ADR,
 488                                 PHY_MARVELL_PAGE_REG,
 489                                 PHY_MARVELL_DEFAULT_PAGE))
 490                        printf("Error writing PHY page reg\n");
 491        }
 492}
 493#endif
 494
 495
 496#if defined(CONFIG_HUSH_INIT_VAR)
 497int hush_init_var(void)
 498{
 499        ivm_analyze_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN);
 500        return 0;
 501}
 502#endif
 503
 504#if defined(CONFIG_SYS_I2C_SOFT)
 505void set_sda(int state)
 506{
 507        I2C_ACTIVE;
 508        I2C_SDA(state);
 509}
 510
 511void set_scl(int state)
 512{
 513        I2C_SCL(state);
 514}
 515
 516int get_sda(void)
 517{
 518        I2C_TRISTATE;
 519        return I2C_READ;
 520}
 521
 522int get_scl(void)
 523{
 524        return kw_gpio_get_value(KM_KIRKWOOD_SCL_PIN) ? 1 : 0;
 525}
 526#endif
 527
 528#if defined(CONFIG_POST)
 529
 530#define KM_POST_EN_L    44
 531#define POST_WORD_OFF   8
 532
 533int post_hotkeys_pressed(void)
 534{
 535#if defined(CONFIG_KM_COGE5UN)
 536        return kw_gpio_get_value(KM_POST_EN_L);
 537#else
 538        return !kw_gpio_get_value(KM_POST_EN_L);
 539#endif
 540}
 541
 542ulong post_word_load(void)
 543{
 544        void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
 545        return in_le32(addr);
 546
 547}
 548void post_word_store(ulong value)
 549{
 550        void* addr = (void *) (gd->ram_size - BOOTCOUNT_ADDR + POST_WORD_OFF);
 551        out_le32(addr, value);
 552}
 553
 554int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
 555{
 556        *vstart = CONFIG_SYS_SDRAM_BASE;
 557
 558        /* we go up to relocation plus a 1 MB margin */
 559        *size = CONFIG_SYS_TEXT_BASE - (1<<20);
 560
 561        return 0;
 562}
 563#endif
 564
 565#if defined(CONFIG_SYS_EEPROM_WREN)
 566int eeprom_write_enable(unsigned dev_addr, int state)
 567{
 568        kw_gpio_set_value(KM_KIRKWOOD_ENV_WP, !state);
 569
 570        return !kw_gpio_get_value(KM_KIRKWOOD_ENV_WP);
 571}
 572#endif
 573