goflexhome.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * Copyright (C) 2013 Suriyan Ramasami <suriyan.r@gmail.com>
  3. *
  4. * Based on dockstar.c originally written by
  5. * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
  6. *
  7. * Based on sheevaplug.c originally written by
  8. * Prafulla Wadaskar <prafulla@marvell.com>
  9. * (C) Copyright 2009
  10. * Marvell Semiconductor <www.marvell.com>
  11. *
  12. * SPDX-License-Identifier: GPL-2.0+
  13. */
  14. #include <common.h>
  15. #include <miiphy.h>
  16. #include <asm/arch/soc.h>
  17. #include <asm/arch/mpp.h>
  18. #include <asm/arch/cpu.h>
  19. #include <asm/io.h>
  20. DECLARE_GLOBAL_DATA_PTR;
  21. int board_early_init_f(void)
  22. {
  23. /* Multi-Purpose Pins Functionality configuration */
  24. static const u32 kwmpp_config[] = {
  25. MPP0_NF_IO2,
  26. MPP1_NF_IO3,
  27. MPP2_NF_IO4,
  28. MPP3_NF_IO5,
  29. MPP4_NF_IO6,
  30. MPP5_NF_IO7,
  31. MPP6_SYSRST_OUTn,
  32. MPP7_GPO,
  33. MPP8_UART0_RTS,
  34. MPP9_UART0_CTS,
  35. MPP10_UART0_TXD,
  36. MPP11_UART0_RXD,
  37. MPP12_SD_CLK,
  38. MPP13_SD_CMD,
  39. MPP14_SD_D0,
  40. MPP15_SD_D1,
  41. MPP16_SD_D2,
  42. MPP17_SD_D3,
  43. MPP18_NF_IO0,
  44. MPP19_NF_IO1,
  45. MPP20_GPIO,
  46. MPP21_GPIO,
  47. MPP22_GPIO,
  48. MPP23_GPIO,
  49. MPP24_GPIO,
  50. MPP25_GPIO,
  51. MPP26_GPIO,
  52. MPP27_GPIO,
  53. MPP28_GPIO,
  54. MPP29_TSMP9,
  55. MPP30_GPIO,
  56. MPP31_GPIO,
  57. MPP32_GPIO,
  58. MPP33_GPIO,
  59. MPP34_GPIO,
  60. MPP35_GPIO,
  61. MPP36_GPIO,
  62. MPP37_GPIO,
  63. MPP38_GPIO,
  64. MPP39_GPIO,
  65. MPP40_GPIO,
  66. MPP41_GPIO,
  67. MPP42_GPIO,
  68. MPP43_GPIO,
  69. MPP44_GPIO,
  70. MPP45_GPIO,
  71. MPP46_GPIO,
  72. MPP47_GPIO,
  73. MPP48_GPIO,
  74. MPP49_GPIO,
  75. 0
  76. };
  77. /*
  78. * default gpio configuration
  79. * There are maximum 64 gpios controlled through 2 sets of registers
  80. * the below configuration configures mainly initial LED status
  81. */
  82. mvebu_config_gpio(GOFLEXHOME_OE_VAL_LOW,
  83. GOFLEXHOME_OE_VAL_HIGH,
  84. GOFLEXHOME_OE_LOW, GOFLEXHOME_OE_HIGH);
  85. kirkwood_mpp_conf(kwmpp_config, NULL);
  86. return 0;
  87. }
  88. int board_init(void)
  89. {
  90. /*
  91. * arch number of board
  92. */
  93. gd->bd->bi_arch_number = MACH_TYPE_GOFLEXHOME;
  94. /* address of boot parameters */
  95. gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
  96. return 0;
  97. }
  98. #ifdef CONFIG_RESET_PHY_R
  99. /* Configure and enable MV88E1116 PHY */
  100. void reset_phy(void)
  101. {
  102. u16 reg;
  103. u16 devadr;
  104. char *name = "egiga0";
  105. if (miiphy_set_current_dev(name))
  106. return;
  107. /* command to read PHY dev address */
  108. if (miiphy_read(name, 0xEE, 0xEE, (u16 *)&devadr)) {
  109. printf("Err..%s could not read PHY dev address\n",
  110. __func__);
  111. return;
  112. }
  113. /*
  114. * Enable RGMII delay on Tx and Rx for CPU port
  115. * Ref: sec 4.7.2 of chip datasheet
  116. */
  117. miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
  118. miiphy_read(name, devadr, MV88E1116_MAC_CTRL_REG, &reg);
  119. reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
  120. miiphy_write(name, devadr, MV88E1116_MAC_CTRL_REG, reg);
  121. miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
  122. /* reset the phy */
  123. miiphy_reset(name, devadr);
  124. printf("88E1116 Initialized on %s\n", name);
  125. }
  126. #endif /* CONFIG_RESET_PHY_R */
  127. #define GREEN_LED (1 << 14)
  128. #define ORANGE_LED (1 << 15)
  129. #define BOTH_LEDS (GREEN_LED | ORANGE_LED)
  130. #define NEITHER_LED 0
  131. static void set_leds(u32 leds, u32 blinking)
  132. {
  133. struct kwgpio_registers *r;
  134. u32 oe;
  135. u32 bl;
  136. r = (struct kwgpio_registers *)MVEBU_GPIO1_BASE;
  137. oe = readl(&r->oe) | BOTH_LEDS;
  138. writel(oe & ~leds, &r->oe); /* active low */
  139. bl = readl(&r->blink_en) & ~BOTH_LEDS;
  140. writel(bl | blinking, &r->blink_en);
  141. }
  142. void show_boot_progress(int val)
  143. {
  144. switch (val) {
  145. case BOOTSTAGE_ID_RUN_OS: /* booting Linux */
  146. set_leds(BOTH_LEDS, NEITHER_LED);
  147. break;
  148. case BOOTSTAGE_ID_NET_ETH_START: /* Ethernet initialization */
  149. set_leds(GREEN_LED, GREEN_LED);
  150. break;
  151. default:
  152. if (val < 0) /* error */
  153. set_leds(ORANGE_LED, ORANGE_LED);
  154. break;
  155. }
  156. }