at91sam9260ek.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /*
  2. * (C) Copyright 2007-2008
  3. * Stelian Pop <stelian.pop@leadtechdesign.com>
  4. * Lead Tech Design <www.leadtechdesign.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., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <common.h>
  25. #include <asm/arch/at91sam9260.h>
  26. #include <asm/arch/at91sam9260_matrix.h>
  27. #include <asm/arch/at91sam9_smc.h>
  28. #include <asm/arch/at91_common.h>
  29. #include <asm/arch/at91_pmc.h>
  30. #include <asm/arch/at91_rstc.h>
  31. #include <asm/arch/gpio.h>
  32. #include <asm/arch/io.h>
  33. #include <asm/arch/hardware.h>
  34. #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
  35. #include <net.h>
  36. #endif
  37. #include <netdev.h>
  38. DECLARE_GLOBAL_DATA_PTR;
  39. /* ------------------------------------------------------------------------- */
  40. /*
  41. * Miscelaneous platform dependent initialisations
  42. */
  43. #ifdef CONFIG_CMD_NAND
  44. static void at91sam9260ek_nand_hw_init(void)
  45. {
  46. unsigned long csa;
  47. /* Enable CS3 */
  48. csa = at91_sys_read(AT91_MATRIX_EBICSA);
  49. at91_sys_write(AT91_MATRIX_EBICSA,
  50. csa | AT91_MATRIX_CS3A_SMC_SMARTMEDIA);
  51. /* Configure SMC CS3 for NAND/SmartMedia */
  52. at91_sys_write(AT91_SMC_SETUP(3),
  53. AT91_SMC_NWESETUP_(1) | AT91_SMC_NCS_WRSETUP_(0) |
  54. AT91_SMC_NRDSETUP_(1) | AT91_SMC_NCS_RDSETUP_(0));
  55. at91_sys_write(AT91_SMC_PULSE(3),
  56. AT91_SMC_NWEPULSE_(3) | AT91_SMC_NCS_WRPULSE_(3) |
  57. AT91_SMC_NRDPULSE_(3) | AT91_SMC_NCS_RDPULSE_(3));
  58. at91_sys_write(AT91_SMC_CYCLE(3),
  59. AT91_SMC_NWECYCLE_(5) | AT91_SMC_NRDCYCLE_(5));
  60. at91_sys_write(AT91_SMC_MODE(3),
  61. AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
  62. AT91_SMC_EXNWMODE_DISABLE |
  63. #ifdef CONFIG_SYS_NAND_DBW_16
  64. AT91_SMC_DBW_16 |
  65. #else /* CONFIG_SYS_NAND_DBW_8 */
  66. AT91_SMC_DBW_8 |
  67. #endif
  68. AT91_SMC_TDF_(2));
  69. at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9260_ID_PIOC);
  70. /* Configure RDY/BSY */
  71. at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
  72. /* Enable NandFlash */
  73. at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
  74. }
  75. #endif
  76. #ifdef CONFIG_MACB
  77. static void at91sam9260ek_macb_hw_init(void)
  78. {
  79. unsigned long rstc;
  80. /* Enable clock */
  81. at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9260_ID_EMAC);
  82. /*
  83. * Disable pull-up on:
  84. * RXDV (PA17) => PHY normal mode (not Test mode)
  85. * ERX0 (PA14) => PHY ADDR0
  86. * ERX1 (PA15) => PHY ADDR1
  87. * ERX2 (PA25) => PHY ADDR2
  88. * ERX3 (PA26) => PHY ADDR3
  89. * ECRS (PA28) => PHY ADDR4 => PHYADDR = 0x0
  90. *
  91. * PHY has internal pull-down
  92. */
  93. writel(pin_to_mask(AT91_PIN_PA14) |
  94. pin_to_mask(AT91_PIN_PA15) |
  95. pin_to_mask(AT91_PIN_PA17) |
  96. pin_to_mask(AT91_PIN_PA25) |
  97. pin_to_mask(AT91_PIN_PA26) |
  98. pin_to_mask(AT91_PIN_PA28),
  99. pin_to_controller(AT91_PIN_PA0) + PIO_PUDR);
  100. rstc = at91_sys_read(AT91_RSTC_MR) & AT91_RSTC_ERSTL;
  101. /* Need to reset PHY -> 500ms reset */
  102. at91_sys_write(AT91_RSTC_MR, AT91_RSTC_KEY |
  103. (AT91_RSTC_ERSTL & (0x0D << 8)) |
  104. AT91_RSTC_URSTEN);
  105. at91_sys_write(AT91_RSTC_CR, AT91_RSTC_KEY | AT91_RSTC_EXTRST);
  106. /* Wait for end hardware reset */
  107. while (!(at91_sys_read(AT91_RSTC_SR) & AT91_RSTC_NRSTL));
  108. /* Restore NRST value */
  109. at91_sys_write(AT91_RSTC_MR, AT91_RSTC_KEY |
  110. (rstc) |
  111. AT91_RSTC_URSTEN);
  112. /* Re-enable pull-up */
  113. writel(pin_to_mask(AT91_PIN_PA14) |
  114. pin_to_mask(AT91_PIN_PA15) |
  115. pin_to_mask(AT91_PIN_PA17) |
  116. pin_to_mask(AT91_PIN_PA25) |
  117. pin_to_mask(AT91_PIN_PA26) |
  118. pin_to_mask(AT91_PIN_PA28),
  119. pin_to_controller(AT91_PIN_PA0) + PIO_PUER);
  120. at91_macb_hw_init();
  121. }
  122. #endif
  123. int board_init(void)
  124. {
  125. /* Enable Ctrlc */
  126. console_init_f();
  127. #ifdef CONFIG_AT91SAM9G20EK
  128. /* arch number of AT91SAM9260EK-Board */
  129. gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9G20EK;
  130. #else
  131. /* arch number of AT91SAM9260EK-Board */
  132. gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9260EK;
  133. #endif
  134. /* adress of boot parameters */
  135. gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
  136. at91_serial_hw_init();
  137. #ifdef CONFIG_CMD_NAND
  138. at91sam9260ek_nand_hw_init();
  139. #endif
  140. #ifdef CONFIG_HAS_DATAFLASH
  141. at91_spi0_hw_init((1 << 0) || (1 << 1));
  142. #endif
  143. #ifdef CONFIG_MACB
  144. at91sam9260ek_macb_hw_init();
  145. #endif
  146. return 0;
  147. }
  148. int dram_init(void)
  149. {
  150. gd->bd->bi_dram[0].start = PHYS_SDRAM;
  151. gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
  152. return 0;
  153. }
  154. #ifdef CONFIG_RESET_PHY_R
  155. void reset_phy(void)
  156. {
  157. #ifdef CONFIG_MACB
  158. /*
  159. * Initialize ethernet HW addr prior to starting Linux,
  160. * needed for nfsroot
  161. */
  162. eth_init(gd->bd);
  163. #endif
  164. }
  165. #endif
  166. int board_eth_init(bd_t *bis)
  167. {
  168. int rc = 0;
  169. #ifdef CONFIG_MACB
  170. rc = macb_eth_initialize(0, (void *)AT91SAM9260_BASE_EMAC, 0x00);
  171. #endif
  172. return rc;
  173. }