sheevaplug.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * (C) Copyright 2009
  3. * Marvell Semiconductor <www.marvell.com>
  4. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  22. * MA 02110-1301 USA
  23. */
  24. #include <common.h>
  25. #include <miiphy.h>
  26. #include <asm/arch/cpu.h>
  27. #include <asm/arch/kirkwood.h>
  28. #include <asm/arch/mpp.h>
  29. #include "sheevaplug.h"
  30. DECLARE_GLOBAL_DATA_PTR;
  31. int board_early_init_f(void)
  32. {
  33. /*
  34. * default gpio configuration
  35. * There are maximum 64 gpios controlled through 2 sets of registers
  36. * the below configuration configures mainly initial LED status
  37. */
  38. kw_config_gpio(SHEEVAPLUG_OE_VAL_LOW,
  39. SHEEVAPLUG_OE_VAL_HIGH,
  40. SHEEVAPLUG_OE_LOW, SHEEVAPLUG_OE_HIGH);
  41. /* Multi-Purpose Pins Functionality configuration */
  42. u32 kwmpp_config[] = {
  43. MPP0_NF_IO2,
  44. MPP1_NF_IO3,
  45. MPP2_NF_IO4,
  46. MPP3_NF_IO5,
  47. MPP4_NF_IO6,
  48. MPP5_NF_IO7,
  49. MPP6_SYSRST_OUTn,
  50. MPP7_GPO,
  51. MPP8_UART0_RTS,
  52. MPP9_UART0_CTS,
  53. MPP10_UART0_TXD,
  54. MPP11_UART0_RXD,
  55. MPP12_SD_CLK,
  56. MPP13_SD_CMD,
  57. MPP14_SD_D0,
  58. MPP15_SD_D1,
  59. MPP16_SD_D2,
  60. MPP17_SD_D3,
  61. MPP18_NF_IO0,
  62. MPP19_NF_IO1,
  63. MPP20_GPIO,
  64. MPP21_GPIO,
  65. MPP22_GPIO,
  66. MPP23_GPIO,
  67. MPP24_GPIO,
  68. MPP25_GPIO,
  69. MPP26_GPIO,
  70. MPP27_GPIO,
  71. MPP28_GPIO,
  72. MPP29_TSMP9,
  73. MPP30_GPIO,
  74. MPP31_GPIO,
  75. MPP32_GPIO,
  76. MPP33_GPIO,
  77. MPP34_GPIO,
  78. MPP35_GPIO,
  79. MPP36_GPIO,
  80. MPP37_GPIO,
  81. MPP38_GPIO,
  82. MPP39_GPIO,
  83. MPP40_GPIO,
  84. MPP41_GPIO,
  85. MPP42_GPIO,
  86. MPP43_GPIO,
  87. MPP44_GPIO,
  88. MPP45_GPIO,
  89. MPP46_GPIO,
  90. MPP47_GPIO,
  91. MPP48_GPIO,
  92. MPP49_GPIO,
  93. 0
  94. };
  95. kirkwood_mpp_conf(kwmpp_config);
  96. return 0;
  97. }
  98. int board_init(void)
  99. {
  100. /*
  101. * arch number of board
  102. */
  103. gd->bd->bi_arch_number = MACH_TYPE_SHEEVAPLUG;
  104. /* adress of boot parameters */
  105. gd->bd->bi_boot_params = kw_sdram_bar(0) + 0x100;
  106. return 0;
  107. }
  108. #ifdef CONFIG_RESET_PHY_R
  109. /* Configure and enable MV88E1116 PHY */
  110. void reset_phy(void)
  111. {
  112. u16 reg;
  113. u16 devadr;
  114. char *name = "egiga0";
  115. if (miiphy_set_current_dev(name))
  116. return;
  117. /* command to read PHY dev address */
  118. if (miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr)) {
  119. printf("Err..%s could not read PHY dev address\n",
  120. __FUNCTION__);
  121. return;
  122. }
  123. /*
  124. * Enable RGMII delay on Tx and Rx for CPU port
  125. * Ref: sec 4.7.2 of chip datasheet
  126. */
  127. miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
  128. miiphy_read(name, devadr, MV88E1116_MAC_CTRL_REG, &reg);
  129. reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
  130. miiphy_write(name, devadr, MV88E1116_MAC_CTRL_REG, reg);
  131. miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
  132. /* reset the phy */
  133. miiphy_reset(name, devadr);
  134. printf("88E1116 Initialized on %s\n", name);
  135. }
  136. #endif /* CONFIG_RESET_PHY_R */