at91sam9rl_devices.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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_PORTA, 6, 1); /* TXD0 */
  33. at91_set_a_periph(AT91_PIO_PORTA, 7, 0); /* RXD0 */
  34. writel(1 << AT91SAM9RL_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_PORTA, 11, 1); /* TXD1 */
  40. at91_set_a_periph(AT91_PIO_PORTA, 12, 0); /* RXD1 */
  41. writel(1 << AT91SAM9RL_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_PORTA, 13, 1); /* TXD2 */
  47. at91_set_a_periph(AT91_PIO_PORTA, 14, 0); /* RXD2 */
  48. writel(1 << AT91SAM9RL_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_PORTA, 21, 0); /* DRXD */
  54. at91_set_a_periph(AT91_PIO_PORTA, 22, 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_HAS_DATAFLASH
  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_PORTA, 25, 0); /* SPI0_MISO */
  77. at91_set_a_periph(AT91_PIO_PORTA, 26, 0); /* SPI0_MOSI */
  78. at91_set_a_periph(AT91_PIO_PORTA, 27, 0); /* SPI0_SPCK */
  79. /* Enable clock */
  80. writel(1 << AT91SAM9RL_ID_SPI, &pmc->pcer);
  81. if (cs_mask & (1 << 0)) {
  82. at91_set_a_periph(AT91_PIO_PORTA, 28, 1);
  83. }
  84. if (cs_mask & (1 << 1)) {
  85. at91_set_b_periph(AT91_PIO_PORTB, 7, 1);
  86. }
  87. if (cs_mask & (1 << 2)) {
  88. at91_set_a_periph(AT91_PIO_PORTD, 8, 1);
  89. }
  90. if (cs_mask & (1 << 3)) {
  91. at91_set_b_periph(AT91_PIO_PORTD, 9, 1);
  92. }
  93. if (cs_mask & (1 << 4)) {
  94. at91_set_pio_output(AT91_PIO_PORTA, 28, 1);
  95. }
  96. if (cs_mask & (1 << 5)) {
  97. at91_set_pio_output(AT91_PIO_PORTB, 7, 1);
  98. }
  99. if (cs_mask & (1 << 6)) {
  100. at91_set_pio_output(AT91_PIO_PORTD, 8, 1);
  101. }
  102. if (cs_mask & (1 << 7)) {
  103. at91_set_pio_output(AT91_PIO_PORTD, 9, 1);
  104. }
  105. }
  106. #endif