dreamplug.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*
  2. * (C) Copyright 2011
  3. * Jason Cooper <u-boot@lakedaemon.net>
  4. *
  5. * Based on work by:
  6. * Marvell Semiconductor <www.marvell.com>
  7. * Written-by: Siddarth Gore <gores@marvell.com>
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  25. * MA 02110-1301 USA
  26. */
  27. #include <common.h>
  28. #include <miiphy.h>
  29. #include <asm/arch/kirkwood.h>
  30. #include <asm/arch/mpp.h>
  31. #include "dreamplug.h"
  32. DECLARE_GLOBAL_DATA_PTR;
  33. int board_early_init_f(void)
  34. {
  35. /*
  36. * default gpio configuration
  37. * There are maximum 64 gpios controlled through 2 sets of registers
  38. * the below configuration configures mainly initial LED status
  39. */
  40. kw_config_gpio(DREAMPLUG_OE_VAL_LOW,
  41. DREAMPLUG_OE_VAL_HIGH,
  42. DREAMPLUG_OE_LOW, DREAMPLUG_OE_HIGH);
  43. /* Multi-Purpose Pins Functionality configuration */
  44. u32 kwmpp_config[] = {
  45. MPP0_SPI_SCn, /* SPI Flash */
  46. MPP1_SPI_MOSI,
  47. MPP2_SPI_SCK,
  48. MPP3_SPI_MISO,
  49. MPP4_NF_IO6,
  50. MPP5_NF_IO7,
  51. MPP6_SYSRST_OUTn,
  52. MPP7_GPO,
  53. MPP8_TW_SDA,
  54. MPP9_TW_SCK,
  55. MPP10_UART0_TXD, /* Serial */
  56. MPP11_UART0_RXD,
  57. MPP12_SD_CLK, /* SDIO Slot */
  58. MPP13_SD_CMD,
  59. MPP14_SD_D0,
  60. MPP15_SD_D1,
  61. MPP16_SD_D2,
  62. MPP17_SD_D3,
  63. MPP18_NF_IO0,
  64. MPP19_NF_IO1,
  65. MPP20_GE1_0, /* Gigabit Ethernet */
  66. MPP21_GE1_1,
  67. MPP22_GE1_2,
  68. MPP23_GE1_3,
  69. MPP24_GE1_4,
  70. MPP25_GE1_5,
  71. MPP26_GE1_6,
  72. MPP27_GE1_7,
  73. MPP28_GE1_8,
  74. MPP29_GE1_9,
  75. MPP30_GE1_10,
  76. MPP31_GE1_11,
  77. MPP32_GE1_12,
  78. MPP33_GE1_13,
  79. MPP34_GE1_14,
  80. MPP35_GE1_15,
  81. MPP36_GPIO, /* 7 external GPIO pins (36 - 45) */
  82. MPP37_GPIO,
  83. MPP38_GPIO,
  84. MPP39_GPIO,
  85. MPP40_TDM_SPI_SCK,
  86. MPP41_TDM_SPI_MISO,
  87. MPP42_TDM_SPI_MOSI,
  88. MPP43_GPIO,
  89. MPP44_GPIO,
  90. MPP45_GPIO,
  91. MPP46_GPIO,
  92. MPP47_GPIO, /* Bluetooth LED */
  93. MPP48_GPIO, /* Wifi LED */
  94. MPP49_GPIO, /* Wifi AP LED */
  95. 0
  96. };
  97. kirkwood_mpp_conf(kwmpp_config);
  98. return 0;
  99. }
  100. int board_init(void)
  101. {
  102. /* adress of boot parameters */
  103. gd->bd->bi_boot_params = kw_sdram_bar(0) + 0x100;
  104. return 0;
  105. }
  106. #ifdef CONFIG_RESET_PHY_R
  107. void mv_phy_88e1116_init(char *name)
  108. {
  109. u16 reg;
  110. u16 devadr;
  111. if (miiphy_set_current_dev(name))
  112. return;
  113. /* command to read PHY dev address */
  114. if (miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr)) {
  115. printf("Err..%s could not read PHY dev address\n",
  116. __func__);
  117. return;
  118. }
  119. /*
  120. * Enable RGMII delay on Tx and Rx for CPU port
  121. * Ref: sec 4.7.2 of chip datasheet
  122. */
  123. miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
  124. miiphy_read(name, devadr, MV88E1116_MAC_CTRL2_REG, &reg);
  125. reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
  126. miiphy_write(name, devadr, MV88E1116_MAC_CTRL2_REG, reg);
  127. miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
  128. /* reset the phy */
  129. miiphy_reset(name, devadr);
  130. printf("88E1116 Initialized on %s\n", name);
  131. }
  132. void reset_phy(void)
  133. {
  134. /* configure and initialize both PHY's */
  135. mv_phy_88e1116_init("egiga0");
  136. mv_phy_88e1116_init("egiga1");
  137. }
  138. #endif /* CONFIG_RESET_PHY_R */