tk71.c 3.6 KB

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