dockstar.c 3.4 KB

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