board-ek.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*
  2. * linux/arch/arm/mach-at91rm9200/board-ek.c
  3. *
  4. * Copyright (C) 2005 SAN People
  5. *
  6. * Epson S1D framebuffer glue code is:
  7. * Copyright (C) 2005 Thibaut VARENE <varenet@parisc-linux.org>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (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, MA 02111-1307 USA
  22. */
  23. #include <linux/types.h>
  24. #include <linux/init.h>
  25. #include <linux/mm.h>
  26. #include <linux/module.h>
  27. #include <linux/platform_device.h>
  28. #include <linux/spi/spi.h>
  29. #include <asm/hardware.h>
  30. #include <asm/setup.h>
  31. #include <asm/mach-types.h>
  32. #include <asm/irq.h>
  33. #include <asm/mach/arch.h>
  34. #include <asm/mach/map.h>
  35. #include <asm/mach/irq.h>
  36. #include <asm/arch/board.h>
  37. #include <asm/arch/gpio.h>
  38. #include "generic.h"
  39. /*
  40. * Serial port configuration.
  41. * 0 .. 3 = USART0 .. USART3
  42. * 4 = DBGU
  43. */
  44. static struct at91_uart_config __initdata ek_uart_config = {
  45. .console_tty = 0, /* ttyS0 */
  46. .nr_tty = 2,
  47. .tty_map = { 4, 1, -1, -1, -1 } /* ttyS0, ..., ttyS4 */
  48. };
  49. static void __init ek_map_io(void)
  50. {
  51. /* Initialize processor: 18.432 MHz crystal */
  52. at91rm9200_initialize(18432000, AT91RM9200_BGA);
  53. /* Setup the LEDs */
  54. at91_init_leds(AT91_PIN_PB1, AT91_PIN_PB2);
  55. /* Setup the serial ports and console */
  56. at91_init_serial(&ek_uart_config);
  57. }
  58. static void __init ek_init_irq(void)
  59. {
  60. at91rm9200_init_interrupts(NULL);
  61. }
  62. static struct at91_eth_data __initdata ek_eth_data = {
  63. .phy_irq_pin = AT91_PIN_PC4,
  64. .is_rmii = 1,
  65. };
  66. static struct at91_usbh_data __initdata ek_usbh_data = {
  67. .ports = 2,
  68. };
  69. static struct at91_udc_data __initdata ek_udc_data = {
  70. .vbus_pin = AT91_PIN_PD4,
  71. .pullup_pin = AT91_PIN_PD5,
  72. };
  73. static struct at91_mmc_data __initdata ek_mmc_data = {
  74. .det_pin = AT91_PIN_PB27,
  75. .is_b = 0,
  76. .wire4 = 1,
  77. .wp_pin = AT91_PIN_PA17,
  78. };
  79. static struct spi_board_info ek_spi_devices[] = {
  80. { /* DataFlash chip */
  81. .modalias = "mtd_dataflash",
  82. .chip_select = 0,
  83. .max_speed_hz = 15 * 1000 * 1000,
  84. },
  85. #ifdef CONFIG_MTD_AT91_DATAFLASH_CARD
  86. { /* DataFlash card */
  87. .modalias = "mtd_dataflash",
  88. .chip_select = 3,
  89. .max_speed_hz = 15 * 1000 * 1000,
  90. },
  91. #endif
  92. };
  93. static void __init ek_board_init(void)
  94. {
  95. /* Serial */
  96. at91_add_device_serial();
  97. /* Ethernet */
  98. at91_add_device_eth(&ek_eth_data);
  99. /* USB Host */
  100. at91_add_device_usbh(&ek_usbh_data);
  101. /* USB Device */
  102. at91_add_device_udc(&ek_udc_data);
  103. at91_set_multi_drive(ek_udc_data.pullup_pin, 1); /* pullup_pin is connected to reset */
  104. /* I2C */
  105. at91_add_device_i2c();
  106. /* SPI */
  107. at91_add_device_spi(ek_spi_devices, ARRAY_SIZE(ek_spi_devices));
  108. #ifdef CONFIG_MTD_AT91_DATAFLASH_CARD
  109. /* DataFlash card */
  110. at91_set_gpio_output(AT91_PIN_PB22, 0);
  111. #else
  112. /* MMC */
  113. at91_set_gpio_output(AT91_PIN_PB22, 1); /* this MMC card slot can optionally use SPI signaling (CS3). */
  114. at91_add_device_mmc(&ek_mmc_data);
  115. #endif
  116. /* VGA */
  117. // ek_add_device_video();
  118. }
  119. MACHINE_START(AT91RM9200EK, "Atmel AT91RM9200-EK")
  120. /* Maintainer: SAN People/Atmel */
  121. .phys_io = AT91_BASE_SYS,
  122. .io_pg_offst = (AT91_VA_BASE_SYS >> 18) & 0xfffc,
  123. .boot_params = AT91_SDRAM_BASE + 0x100,
  124. .timer = &at91rm9200_timer,
  125. .map_io = ek_map_io,
  126. .init_irq = ek_init_irq,
  127. .init_machine = ek_board_init,
  128. MACHINE_END