at91sam9m10g45_devices.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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/at91_common.h>
  26. #include <asm/arch/at91_pmc.h>
  27. #include <asm/arch/gpio.h>
  28. #include <asm/arch/io.h>
  29. void at91_serial0_hw_init(void)
  30. {
  31. at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
  32. at91_set_a_periph(AT91_PIO_PORTB, 19, 1); /* TXD0 */
  33. at91_set_a_periph(AT91_PIO_PORTB, 18, 0); /* RXD0 */
  34. writel(1 << AT91SAM9G45_ID_US0, &pmc->pcer);
  35. }
  36. void at91_serial1_hw_init(void)
  37. {
  38. at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
  39. at91_set_a_periph(AT91_PIO_PORTB, 4, 1); /* TXD1 */
  40. at91_set_a_periph(AT91_PIO_PORTB, 5, 0); /* RXD1 */
  41. writel(1 << AT91SAM9G45_ID_US1, &pmc->pcer);
  42. }
  43. void at91_serial2_hw_init(void)
  44. {
  45. at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
  46. at91_set_a_periph(AT91_PIO_PORTD, 6, 1); /* TXD2 */
  47. at91_set_a_periph(AT91_PIO_PORTD, 7, 0); /* RXD2 */
  48. writel(1 << AT91SAM9G45_ID_US2, &pmc->pcer);
  49. }
  50. void at91_serial3_hw_init(void)
  51. {
  52. at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
  53. at91_set_a_periph(AT91_PIO_PORTB, 12, 0); /* DRXD */
  54. at91_set_a_periph(AT91_PIO_PORTB, 13, 1); /* DTXD */
  55. writel(1 << AT91_ID_SYS, &pmc->pcer);
  56. }
  57. void at91_serial_hw_init(void)
  58. {
  59. #ifdef CONFIG_USART0
  60. at91_serial0_hw_init();
  61. #endif
  62. #ifdef CONFIG_USART1
  63. at91_serial1_hw_init();
  64. #endif
  65. #ifdef CONFIG_USART2
  66. at91_serial2_hw_init();
  67. #endif
  68. #ifdef CONFIG_USART3 /* DBGU */
  69. at91_serial3_hw_init();
  70. #endif
  71. }
  72. #ifdef CONFIG_ATMEL_SPI
  73. void at91_spi0_hw_init(unsigned long cs_mask)
  74. {
  75. at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
  76. at91_set_a_periph(AT91_PIO_PORTB, 0, 0); /* SPI0_MISO */
  77. at91_set_a_periph(AT91_PIO_PORTB, 1, 0); /* SPI0_MOSI */
  78. at91_set_a_periph(AT91_PIO_PORTB, 2, 0); /* SPI0_SPCK */
  79. /* Enable clock */
  80. writel(1 << AT91SAM9G45_ID_SPI0, &pmc->pcer);
  81. if (cs_mask & (1 << 0)) {
  82. at91_set_a_periph(AT91_PIO_PORTB, 3, 0);
  83. }
  84. if (cs_mask & (1 << 1)) {
  85. at91_set_b_periph(AT91_PIO_PORTB, 18, 0);
  86. }
  87. if (cs_mask & (1 << 2)) {
  88. at91_set_b_periph(AT91_PIO_PORTB, 19, 0);
  89. }
  90. if (cs_mask & (1 << 3)) {
  91. at91_set_b_periph(AT91_PIO_PORTD, 27, 0);
  92. }
  93. if (cs_mask & (1 << 4)) {
  94. at91_set_pio_output(AT91_PIO_PORTB, 3, 0);
  95. }
  96. if (cs_mask & (1 << 5)) {
  97. at91_set_pio_output(AT91_PIO_PORTB, 18, 0);
  98. }
  99. if (cs_mask & (1 << 6)) {
  100. at91_set_pio_output(AT91_PIO_PORTB, 19, 0);
  101. }
  102. if (cs_mask & (1 << 7)) {
  103. at91_set_pio_output(AT91_PIO_PORTD, 27, 0);
  104. }
  105. }
  106. void at91_spi1_hw_init(unsigned long cs_mask)
  107. {
  108. at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
  109. at91_set_a_periph(AT91_PIO_PORTB, 14, 0); /* SPI1_MISO */
  110. at91_set_a_periph(AT91_PIO_PORTB, 15, 0); /* SPI1_MOSI */
  111. at91_set_a_periph(AT91_PIO_PORTB, 16, 0); /* SPI1_SPCK */
  112. /* Enable clock */
  113. writel(1 << AT91SAM9G45_ID_SPI1, &pmc->pcer);
  114. if (cs_mask & (1 << 0)) {
  115. at91_set_a_periph(AT91_PIO_PORTB, 17, 0);
  116. }
  117. if (cs_mask & (1 << 1)) {
  118. at91_set_b_periph(AT91_PIO_PORTD, 28, 0);
  119. }
  120. if (cs_mask & (1 << 2)) {
  121. at91_set_a_periph(AT91_PIO_PORTD, 18, 0);
  122. }
  123. if (cs_mask & (1 << 3)) {
  124. at91_set_a_periph(AT91_PIO_PORTD, 19, 0);
  125. }
  126. if (cs_mask & (1 << 4)) {
  127. at91_set_pio_output(AT91_PIO_PORTB, 17, 0);
  128. }
  129. if (cs_mask & (1 << 5)) {
  130. at91_set_pio_output(AT91_PIO_PORTD, 28, 0);
  131. }
  132. if (cs_mask & (1 << 6)) {
  133. at91_set_pio_output(AT91_PIO_PORTD, 18, 0);
  134. }
  135. if (cs_mask & (1 << 7)) {
  136. at91_set_pio_output(AT91_PIO_PORTD, 19, 0);
  137. }
  138. }
  139. #endif
  140. #ifdef CONFIG_MACB
  141. void at91_macb_hw_init(void)
  142. {
  143. at91_set_a_periph(AT91_PIO_PORTA, 17, 0); /* ETXCK_EREFCK */
  144. at91_set_a_periph(AT91_PIO_PORTA, 15, 0); /* ERXDV */
  145. at91_set_a_periph(AT91_PIO_PORTA, 12, 0); /* ERX0 */
  146. at91_set_a_periph(AT91_PIO_PORTA, 13, 0); /* ERX1 */
  147. at91_set_a_periph(AT91_PIO_PORTA, 16, 0); /* ERXER */
  148. at91_set_a_periph(AT91_PIO_PORTA, 14, 0); /* ETXEN */
  149. at91_set_a_periph(AT91_PIO_PORTA, 10, 0); /* ETX0 */
  150. at91_set_a_periph(AT91_PIO_PORTA, 11, 0); /* ETX1 */
  151. at91_set_a_periph(AT91_PIO_PORTA, 19, 0); /* EMDIO */
  152. at91_set_a_periph(AT91_PIO_PORTA, 18, 0); /* EMDC */
  153. #ifndef CONFIG_RMII
  154. at91_set_b_periph(AT91_PIO_PORTA, 29, 0); /* ECRS */
  155. at91_set_b_periph(AT91_PIO_PORTA, 30, 0); /* ECOL */
  156. at91_set_b_periph(AT91_PIO_PORTA, 8, 0); /* ERX2 */
  157. at91_set_b_periph(AT91_PIO_PORTA, 9, 0); /* ERX3 */
  158. at91_set_b_periph(AT91_PIO_PORTA, 28, 0); /* ERXCK */
  159. at91_set_b_periph(AT91_PIO_PORTA, 6, 0); /* ETX2 */
  160. at91_set_b_periph(AT91_PIO_PORTA, 7, 0); /* ETX3 */
  161. at91_set_b_periph(AT91_PIO_PORTA, 27, 0); /* ETXER */
  162. #endif
  163. }
  164. #endif