Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

375 строки
8.1KB

  1. /*
  2. * linux/arch/arm/mach-at91/board-sam9260ek.c
  3. *
  4. * Copyright (C) 2005 SAN People
  5. * Copyright (C) 2006 Atmel
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/types.h>
  22. #include <linux/init.h>
  23. #include <linux/mm.h>
  24. #include <linux/module.h>
  25. #include <linux/platform_device.h>
  26. #include <linux/spi/spi.h>
  27. #include <linux/spi/at73c213.h>
  28. #include <linux/clk.h>
  29. #include <linux/gpio_keys.h>
  30. #include <linux/input.h>
  31. #include <asm/setup.h>
  32. #include <asm/mach-types.h>
  33. #include <asm/irq.h>
  34. #include <asm/mach/arch.h>
  35. #include <asm/mach/map.h>
  36. #include <asm/mach/irq.h>
  37. #include <mach/hardware.h>
  38. #include <mach/board.h>
  39. #include <mach/gpio.h>
  40. #include <mach/at91sam9_smc.h>
  41. #include <mach/at91_shdwc.h>
  42. #include "sam9_smc.h"
  43. #include "generic.h"
  44. static void __init ek_map_io(void)
  45. {
  46. /* Initialize processor: 18.432 MHz crystal */
  47. at91sam9260_initialize(18432000);
  48. /* DGBU on ttyS0. (Rx & Tx only) */
  49. at91_register_uart(0, 0, 0);
  50. /* USART0 on ttyS1. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */
  51. at91_register_uart(AT91SAM9260_ID_US0, 1, 0);
  52. /* USART2 on ttyS2. (Rx, Tx, RTS, CTS) */
  53. at91_register_uart(AT91SAM9260_ID_US2, 2, ATMEL_UART_CTS | ATMEL_UART_RTS);
  54. /* set serial console to ttyS0 (ie, DBGU) */
  55. at91_set_serial_console(0);
  56. }
  57. static void __init ek_init_irq(void)
  58. {
  59. at91sam9260_init_interrupts(NULL);
  60. }
  61. /*
  62. * USB Host port
  63. */
  64. static struct at91_usbh_data __initdata ek_usbh_data = {
  65. .ports = 2,
  66. };
  67. /*
  68. * USB Device port
  69. */
  70. static struct at91_udc_data __initdata ek_udc_data = {
  71. .vbus_pin = AT91_PIN_PC5,
  72. .pullup_pin = 0, /* pull-up driven by UDC */
  73. };
  74. /*
  75. * Compact Flash (via Expansion Connector)
  76. */
  77. static struct at91_cf_data __initdata ek_cf_data = {
  78. // .irq_pin = ... user defined
  79. // .det_pin = ... user defined
  80. // .vcc_pin = ... user defined
  81. // .rst_pin = ... user defined
  82. .chipselect = 4,
  83. };
  84. /*
  85. * Audio
  86. */
  87. static struct at73c213_board_info at73c213_data = {
  88. .ssc_id = 0,
  89. .shortname = "AT91SAM9260-EK external DAC",
  90. };
  91. #if defined(CONFIG_SND_AT73C213) || defined(CONFIG_SND_AT73C213_MODULE)
  92. static void __init at73c213_set_clk(struct at73c213_board_info *info)
  93. {
  94. struct clk *pck0;
  95. struct clk *plla;
  96. pck0 = clk_get(NULL, "pck0");
  97. plla = clk_get(NULL, "plla");
  98. /* AT73C213 MCK Clock */
  99. at91_set_B_periph(AT91_PIN_PC1, 0); /* PCK0 */
  100. clk_set_parent(pck0, plla);
  101. clk_put(plla);
  102. info->dac_clk = pck0;
  103. }
  104. #else
  105. static void __init at73c213_set_clk(struct at73c213_board_info *info) {}
  106. #endif
  107. /*
  108. * SPI devices.
  109. */
  110. static struct spi_board_info ek_spi_devices[] = {
  111. #if !defined(CONFIG_MMC_AT91)
  112. { /* DataFlash chip */
  113. .modalias = "mtd_dataflash",
  114. .chip_select = 1,
  115. .max_speed_hz = 15 * 1000 * 1000,
  116. .bus_num = 0,
  117. },
  118. #if defined(CONFIG_MTD_AT91_DATAFLASH_CARD)
  119. { /* DataFlash card */
  120. .modalias = "mtd_dataflash",
  121. .chip_select = 0,
  122. .max_speed_hz = 15 * 1000 * 1000,
  123. .bus_num = 0,
  124. },
  125. #endif
  126. #endif
  127. #if defined(CONFIG_SND_AT73C213) || defined(CONFIG_SND_AT73C213_MODULE)
  128. { /* AT73C213 DAC */
  129. .modalias = "at73c213",
  130. .chip_select = 0,
  131. .max_speed_hz = 10 * 1000 * 1000,
  132. .bus_num = 1,
  133. .mode = SPI_MODE_1,
  134. .platform_data = &at73c213_data,
  135. },
  136. #endif
  137. {
  138. .modalias = "spidev",
  139. .chip_select = 0,
  140. .bus_num = 1,
  141. .max_speed_hz = 15 * 1000 * 1000
  142. }
  143. };
  144. /*
  145. * MACB Ethernet device
  146. */
  147. static struct at91_eth_data __initdata ek_macb_data = {
  148. .phy_irq_pin = AT91_PIN_PA7,
  149. .is_rmii = 1,
  150. };
  151. /*
  152. * NAND flash
  153. */
  154. static struct mtd_partition __initdata ek_nand_partition[] = {
  155. {
  156. .name = "Bootstrap",
  157. .offset = 0,
  158. .size = SZ_4M,
  159. },
  160. {
  161. .name = "Partition 1",
  162. .offset = MTDPART_OFS_NXTBLK,
  163. .size = 60 * SZ_1M,
  164. },
  165. {
  166. .name = "Partition 2",
  167. .offset = MTDPART_OFS_NXTBLK,
  168. .size = MTDPART_SIZ_FULL,
  169. },
  170. };
  171. static struct mtd_partition * __init nand_partitions(int size, int *num_partitions)
  172. {
  173. *num_partitions = ARRAY_SIZE(ek_nand_partition);
  174. return ek_nand_partition;
  175. }
  176. static struct atmel_nand_data __initdata ek_nand_data = {
  177. .ale = 21,
  178. .cle = 22,
  179. // .det_pin = ... not connected
  180. .rdy_pin = AT91_PIN_PC13,
  181. .enable_pin = AT91_PIN_PC14,
  182. .partition_info = nand_partitions,
  183. #if defined(CONFIG_MTD_NAND_ATMEL_BUSWIDTH_16)
  184. .bus_width_16 = 1,
  185. #else
  186. .bus_width_16 = 0,
  187. #endif
  188. };
  189. static struct sam9_smc_config __initdata ek_nand_smc_config = {
  190. .ncs_read_setup = 0,
  191. .nrd_setup = 1,
  192. .ncs_write_setup = 0,
  193. .nwe_setup = 1,
  194. .ncs_read_pulse = 3,
  195. .nrd_pulse = 3,
  196. .ncs_write_pulse = 3,
  197. .nwe_pulse = 3,
  198. .read_cycle = 5,
  199. .write_cycle = 5,
  200. .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE,
  201. .tdf_cycles = 2,
  202. };
  203. static void __init ek_add_device_nand(void)
  204. {
  205. /* setup bus-width (8 or 16) */
  206. if (ek_nand_data.bus_width_16)
  207. ek_nand_smc_config.mode |= AT91_SMC_DBW_16;
  208. else
  209. ek_nand_smc_config.mode |= AT91_SMC_DBW_8;
  210. /* configure chip-select 3 (NAND) */
  211. sam9_smc_configure(3, &ek_nand_smc_config);
  212. at91_add_device_nand(&ek_nand_data);
  213. }
  214. /*
  215. * MCI (SD/MMC)
  216. */
  217. static struct at91_mmc_data __initdata ek_mmc_data = {
  218. .slot_b = 1,
  219. .wire4 = 1,
  220. // .det_pin = ... not connected
  221. // .wp_pin = ... not connected
  222. // .vcc_pin = ... not connected
  223. };
  224. /*
  225. * LEDs
  226. */
  227. static struct gpio_led ek_leds[] = {
  228. { /* "bottom" led, green, userled1 to be defined */
  229. .name = "ds5",
  230. .gpio = AT91_PIN_PA6,
  231. .active_low = 1,
  232. .default_trigger = "none",
  233. },
  234. { /* "power" led, yellow */
  235. .name = "ds1",
  236. .gpio = AT91_PIN_PA9,
  237. .default_trigger = "heartbeat",
  238. }
  239. };
  240. /*
  241. * GPIO Buttons
  242. */
  243. #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
  244. static struct gpio_keys_button ek_buttons[] = {
  245. {
  246. .gpio = AT91_PIN_PA30,
  247. .code = BTN_3,
  248. .desc = "Button 3",
  249. .active_low = 1,
  250. .wakeup = 1,
  251. },
  252. {
  253. .gpio = AT91_PIN_PA31,
  254. .code = BTN_4,
  255. .desc = "Button 4",
  256. .active_low = 1,
  257. .wakeup = 1,
  258. }
  259. };
  260. static struct gpio_keys_platform_data ek_button_data = {
  261. .buttons = ek_buttons,
  262. .nbuttons = ARRAY_SIZE(ek_buttons),
  263. };
  264. static struct platform_device ek_button_device = {
  265. .name = "gpio-keys",
  266. .id = -1,
  267. .num_resources = 0,
  268. .dev = {
  269. .platform_data = &ek_button_data,
  270. }
  271. };
  272. static void __init ek_add_device_buttons(void)
  273. {
  274. at91_set_gpio_input(AT91_PIN_PA30, 1); /* btn3 */
  275. at91_set_deglitch(AT91_PIN_PA30, 1);
  276. at91_set_gpio_input(AT91_PIN_PA31, 1); /* btn4 */
  277. at91_set_deglitch(AT91_PIN_PA31, 1);
  278. platform_device_register(&ek_button_device);
  279. }
  280. #else
  281. static void __init ek_add_device_buttons(void) {}
  282. #endif
  283. static void __init ek_board_init(void)
  284. {
  285. /* Serial */
  286. at91_add_device_serial();
  287. /* USB Host */
  288. at91_add_device_usbh(&ek_usbh_data);
  289. /* USB Device */
  290. at91_add_device_udc(&ek_udc_data);
  291. /* SPI */
  292. at91_add_device_spi(ek_spi_devices, ARRAY_SIZE(ek_spi_devices));
  293. /* NAND */
  294. ek_add_device_nand();
  295. /* Ethernet */
  296. at91_add_device_eth(&ek_macb_data);
  297. /* MMC */
  298. at91_add_device_mmc(0, &ek_mmc_data);
  299. /* I2C */
  300. at91_add_device_i2c(NULL, 0);
  301. /* Compact Flash */
  302. at91_add_device_cf(&ek_cf_data);
  303. /* SSC (to AT73C213) */
  304. at73c213_set_clk(&at73c213_data);
  305. at91_add_device_ssc(AT91SAM9260_ID_SSC, ATMEL_SSC_TX);
  306. /* LEDs */
  307. at91_gpio_leds(ek_leds, ARRAY_SIZE(ek_leds));
  308. /* Push Buttons */
  309. ek_add_device_buttons();
  310. /* shutdown controller, wakeup button (5 msec low) */
  311. at91_sys_write(AT91_SHDW_MR, AT91_SHDW_CPTWK0_(10) | AT91_SHDW_WKMODE0_LOW
  312. | AT91_SHDW_RTTWKEN);
  313. }
  314. MACHINE_START(AT91SAM9260EK, "Atmel AT91SAM9260-EK")
  315. /* Maintainer: Atmel */
  316. .phys_io = AT91_BASE_SYS,
  317. .io_pg_offst = (AT91_VA_BASE_SYS >> 18) & 0xfffc,
  318. .boot_params = AT91_SDRAM_BASE + 0x100,
  319. .timer = &at91sam926x_timer,
  320. .map_io = ek_map_io,
  321. .init_irq = ek_init_irq,
  322. .init_machine = ek_board_init,
  323. MACHINE_END