iconnect.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * Copyright (C) 2009-2012
  3. * Wojciech Dubowik <wojciech.dubowik@neratec.com>
  4. * Luka Perkov <luka@openwrt.org>
  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, see <http://www.gnu.org/licenses/>.
  21. */
  22. #include <common.h>
  23. #include <miiphy.h>
  24. #include <asm/arch/cpu.h>
  25. #include <asm/arch/kirkwood.h>
  26. #include <asm/arch/mpp.h>
  27. #include "iconnect.h"
  28. DECLARE_GLOBAL_DATA_PTR;
  29. int board_early_init_f(void)
  30. {
  31. /*
  32. * default gpio configuration
  33. * There are maximum 64 gpios controlled through 2 sets of registers
  34. * the below configuration configures mainly initial LED status
  35. */
  36. kw_config_gpio(ICONNECT_OE_VAL_LOW,
  37. ICONNECT_OE_VAL_HIGH,
  38. ICONNECT_OE_LOW, ICONNECT_OE_HIGH);
  39. /* Multi-Purpose Pins Functionality configuration */
  40. static const u32 kwmpp_config[] = {
  41. MPP0_NF_IO2,
  42. MPP1_NF_IO3,
  43. MPP2_NF_IO4,
  44. MPP3_NF_IO5,
  45. MPP4_NF_IO6,
  46. MPP5_NF_IO7,
  47. MPP6_SYSRST_OUTn, /* Reset signal */
  48. MPP7_GPO,
  49. MPP8_TW_SDA, /* I2C */
  50. MPP9_TW_SCK, /* I2C */
  51. MPP10_UART0_TXD,
  52. MPP11_UART0_RXD,
  53. MPP12_GPO, /* Reset button */
  54. MPP13_SD_CMD,
  55. MPP14_SD_D0,
  56. MPP15_SD_D1,
  57. MPP16_SD_D2,
  58. MPP17_SD_D3,
  59. MPP18_NF_IO0,
  60. MPP19_NF_IO1,
  61. MPP20_GE1_0,
  62. MPP21_GE1_1,
  63. MPP22_GE1_2,
  64. MPP23_GE1_3,
  65. MPP24_GE1_4,
  66. MPP25_GE1_5,
  67. MPP26_GE1_6,
  68. MPP27_GE1_7,
  69. MPP28_GPIO,
  70. MPP29_GPIO,
  71. MPP30_GE1_10,
  72. MPP31_GE1_11,
  73. MPP32_GE1_12,
  74. MPP33_GE1_13,
  75. MPP34_GE1_14,
  76. MPP35_GPIO, /* OTB button */
  77. MPP36_AUDIO_SPDIFI,
  78. MPP37_AUDIO_SPDIFO,
  79. MPP38_GPIO,
  80. MPP39_TDM_SPI_CS0,
  81. MPP40_TDM_SPI_SCK,
  82. MPP41_GPIO, /* LED brightness */
  83. MPP42_GPIO, /* LED power (blue) */
  84. MPP43_GPIO, /* LED power (red) */
  85. MPP44_GPIO, /* LED USB 1 */
  86. MPP45_GPIO, /* LED USB 2 */
  87. MPP46_GPIO, /* LED USB 3 */
  88. MPP47_GPIO, /* LED USB 4 */
  89. MPP48_GPIO, /* LED OTB */
  90. MPP49_GPIO,
  91. 0
  92. };
  93. kirkwood_mpp_conf(kwmpp_config, NULL);
  94. return 0;
  95. }
  96. int board_init(void)
  97. {
  98. /* adress of boot parameters */
  99. gd->bd->bi_boot_params = kw_sdram_bar(0) + 0x100;
  100. return 0;
  101. }