atstk1003.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * ATSTK1003 daughterboard-specific init code
  3. *
  4. * Copyright (C) 2007 Atmel Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/clk.h>
  11. #include <linux/err.h>
  12. #include <linux/init.h>
  13. #include <linux/kernel.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/string.h>
  16. #include <linux/types.h>
  17. #include <linux/spi/at73c213.h>
  18. #include <linux/spi/spi.h>
  19. #include <asm/setup.h>
  20. #include <asm/arch/at32ap700x.h>
  21. #include <asm/arch/board.h>
  22. #include <asm/arch/init.h>
  23. #include <asm/arch/portmux.h>
  24. #include "atstk1000.h"
  25. #ifdef CONFIG_BOARD_ATSTK1000_EXTDAC
  26. static struct at73c213_board_info at73c213_data = {
  27. .ssc_id = 0,
  28. .shortname = "AVR32 STK1000 external DAC",
  29. };
  30. #endif
  31. #ifndef CONFIG_BOARD_ATSTK100X_SW1_CUSTOM
  32. static struct spi_board_info spi0_board_info[] __initdata = {
  33. #ifdef CONFIG_BOARD_ATSTK1000_EXTDAC
  34. {
  35. /* AT73C213 */
  36. .modalias = "at73c213",
  37. .max_speed_hz = 200000,
  38. .chip_select = 0,
  39. .mode = SPI_MODE_1,
  40. .platform_data = &at73c213_data,
  41. },
  42. #endif
  43. /*
  44. * We can control the LTV350QV LCD panel, but it isn't much
  45. * point since we don't have an LCD controller...
  46. */
  47. };
  48. #endif
  49. #ifdef CONFIG_BOARD_ATSTK100X_SPI1
  50. static struct spi_board_info spi1_board_info[] __initdata = { {
  51. /* patch in custom entries here */
  52. } };
  53. #endif
  54. #ifdef CONFIG_BOARD_ATSTK1000_EXTDAC
  55. static void __init atstk1003_setup_extdac(void)
  56. {
  57. struct clk *gclk;
  58. struct clk *pll;
  59. gclk = clk_get(NULL, "gclk0");
  60. if (IS_ERR(gclk))
  61. goto err_gclk;
  62. pll = clk_get(NULL, "pll0");
  63. if (IS_ERR(pll))
  64. goto err_pll;
  65. if (clk_set_parent(gclk, pll)) {
  66. pr_debug("STK1000: failed to set pll0 as parent for DAC clock\n");
  67. goto err_set_clk;
  68. }
  69. at32_select_periph(GPIO_PIN_PA(30), GPIO_PERIPH_A, 0);
  70. at73c213_data.dac_clk = gclk;
  71. err_set_clk:
  72. clk_put(pll);
  73. err_pll:
  74. clk_put(gclk);
  75. err_gclk:
  76. return;
  77. }
  78. #else
  79. static void __init atstk1003_setup_extdac(void)
  80. {
  81. }
  82. #endif /* CONFIG_BOARD_ATSTK1000_EXTDAC */
  83. void __init setup_board(void)
  84. {
  85. #ifdef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
  86. at32_map_usart(0, 1); /* USART 0/B: /dev/ttyS1, IRDA */
  87. #else
  88. at32_map_usart(1, 0); /* USART 1/A: /dev/ttyS0, DB9 */
  89. #endif
  90. /* USART 2/unused: expansion connector */
  91. at32_map_usart(3, 2); /* USART 3/C: /dev/ttyS2, DB9 */
  92. at32_setup_serial_console(0);
  93. }
  94. static int __init atstk1003_init(void)
  95. {
  96. /*
  97. * ATSTK1000 uses 32-bit SDRAM interface. Reserve the
  98. * SDRAM-specific pins so that nobody messes with them.
  99. */
  100. at32_reserve_pin(GPIO_PIN_PE(0)); /* DATA[16] */
  101. at32_reserve_pin(GPIO_PIN_PE(1)); /* DATA[17] */
  102. at32_reserve_pin(GPIO_PIN_PE(2)); /* DATA[18] */
  103. at32_reserve_pin(GPIO_PIN_PE(3)); /* DATA[19] */
  104. at32_reserve_pin(GPIO_PIN_PE(4)); /* DATA[20] */
  105. at32_reserve_pin(GPIO_PIN_PE(5)); /* DATA[21] */
  106. at32_reserve_pin(GPIO_PIN_PE(6)); /* DATA[22] */
  107. at32_reserve_pin(GPIO_PIN_PE(7)); /* DATA[23] */
  108. at32_reserve_pin(GPIO_PIN_PE(8)); /* DATA[24] */
  109. at32_reserve_pin(GPIO_PIN_PE(9)); /* DATA[25] */
  110. at32_reserve_pin(GPIO_PIN_PE(10)); /* DATA[26] */
  111. at32_reserve_pin(GPIO_PIN_PE(11)); /* DATA[27] */
  112. at32_reserve_pin(GPIO_PIN_PE(12)); /* DATA[28] */
  113. at32_reserve_pin(GPIO_PIN_PE(13)); /* DATA[29] */
  114. at32_reserve_pin(GPIO_PIN_PE(14)); /* DATA[30] */
  115. at32_reserve_pin(GPIO_PIN_PE(15)); /* DATA[31] */
  116. at32_reserve_pin(GPIO_PIN_PE(26)); /* SDCS */
  117. at32_add_system_devices();
  118. #ifdef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
  119. at32_add_device_usart(1);
  120. #else
  121. at32_add_device_usart(0);
  122. #endif
  123. at32_add_device_usart(2);
  124. #ifndef CONFIG_BOARD_ATSTK100X_SW1_CUSTOM
  125. at32_add_device_spi(0, spi0_board_info, ARRAY_SIZE(spi0_board_info));
  126. #endif
  127. #ifdef CONFIG_BOARD_ATSTK100X_SPI1
  128. at32_add_device_spi(1, spi1_board_info, ARRAY_SIZE(spi1_board_info));
  129. #endif
  130. #ifndef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
  131. at32_add_device_mci(0);
  132. #endif
  133. at32_add_device_usba(0, NULL);
  134. #ifndef CONFIG_BOARD_ATSTK100X_SW3_CUSTOM
  135. at32_add_device_ssc(0, ATMEL_SSC_TX);
  136. #endif
  137. atstk1000_setup_j2_leds();
  138. atstk1003_setup_extdac();
  139. return 0;
  140. }
  141. postcore_initcall(atstk1003_init);