atstk1002.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /*
  2. * ATSTK1002 daughterboard-specific init code
  3. *
  4. * Copyright (C) 2005-2006 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/etherdevice.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/spi.h>
  18. #include <video/atmel_lcdc.h>
  19. #include <asm/io.h>
  20. #include <asm/setup.h>
  21. #include <asm/arch/at32ap7000.h>
  22. #include <asm/arch/board.h>
  23. #include <asm/arch/init.h>
  24. #include <asm/arch/portmux.h>
  25. #include "atstk1000.h"
  26. struct eth_addr {
  27. u8 addr[6];
  28. };
  29. static struct eth_addr __initdata hw_addr[2];
  30. static struct eth_platform_data __initdata eth_data[2] = {
  31. {
  32. /*
  33. * The MDIO pullups on STK1000 are a bit too weak for
  34. * the autodetection to work properly, so we have to
  35. * mask out everything but the correct address.
  36. */
  37. .phy_mask = ~(1U << 16),
  38. },
  39. {
  40. .phy_mask = ~(1U << 17),
  41. },
  42. };
  43. #ifndef CONFIG_BOARD_ATSTK1002_SW1_CUSTOM
  44. static struct spi_board_info spi0_board_info[] __initdata = {
  45. {
  46. /* QVGA display */
  47. .modalias = "ltv350qv",
  48. .max_speed_hz = 16000000,
  49. .chip_select = 1,
  50. .mode = SPI_MODE_3,
  51. },
  52. };
  53. #endif
  54. #ifdef CONFIG_BOARD_ATSTK1002_SPI1
  55. static struct spi_board_info spi1_board_info[] __initdata = { {
  56. /* patch in custom entries here */
  57. } };
  58. #endif
  59. /*
  60. * The next two functions should go away as the boot loader is
  61. * supposed to initialize the macb address registers with a valid
  62. * ethernet address. But we need to keep it around for a while until
  63. * we can be reasonably sure the boot loader does this.
  64. *
  65. * The phy_id is ignored as the driver will probe for it.
  66. */
  67. static int __init parse_tag_ethernet(struct tag *tag)
  68. {
  69. int i;
  70. i = tag->u.ethernet.mac_index;
  71. if (i < ARRAY_SIZE(hw_addr))
  72. memcpy(hw_addr[i].addr, tag->u.ethernet.hw_address,
  73. sizeof(hw_addr[i].addr));
  74. return 0;
  75. }
  76. __tagtable(ATAG_ETHERNET, parse_tag_ethernet);
  77. static void __init set_hw_addr(struct platform_device *pdev)
  78. {
  79. struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  80. const u8 *addr;
  81. void __iomem *regs;
  82. struct clk *pclk;
  83. if (!res)
  84. return;
  85. if (pdev->id >= ARRAY_SIZE(hw_addr))
  86. return;
  87. addr = hw_addr[pdev->id].addr;
  88. if (!is_valid_ether_addr(addr))
  89. return;
  90. /*
  91. * Since this is board-specific code, we'll cheat and use the
  92. * physical address directly as we happen to know that it's
  93. * the same as the virtual address.
  94. */
  95. regs = (void __iomem __force *)res->start;
  96. pclk = clk_get(&pdev->dev, "pclk");
  97. if (!pclk)
  98. return;
  99. clk_enable(pclk);
  100. __raw_writel((addr[3] << 24) | (addr[2] << 16)
  101. | (addr[1] << 8) | addr[0], regs + 0x98);
  102. __raw_writel((addr[5] << 8) | addr[4], regs + 0x9c);
  103. clk_disable(pclk);
  104. clk_put(pclk);
  105. }
  106. void __init setup_board(void)
  107. {
  108. #ifdef CONFIG_BOARD_ATSTK1002_SW2_CUSTOM
  109. at32_map_usart(0, 1); /* USART 0/B: /dev/ttyS1, IRDA */
  110. #else
  111. at32_map_usart(1, 0); /* USART 1/A: /dev/ttyS0, DB9 */
  112. #endif
  113. /* USART 2/unused: expansion connector */
  114. at32_map_usart(3, 2); /* USART 3/C: /dev/ttyS2, DB9 */
  115. at32_setup_serial_console(0);
  116. }
  117. static int __init atstk1002_init(void)
  118. {
  119. /*
  120. * ATSTK1000 uses 32-bit SDRAM interface. Reserve the
  121. * SDRAM-specific pins so that nobody messes with them.
  122. */
  123. at32_reserve_pin(GPIO_PIN_PE(0)); /* DATA[16] */
  124. at32_reserve_pin(GPIO_PIN_PE(1)); /* DATA[17] */
  125. at32_reserve_pin(GPIO_PIN_PE(2)); /* DATA[18] */
  126. at32_reserve_pin(GPIO_PIN_PE(3)); /* DATA[19] */
  127. at32_reserve_pin(GPIO_PIN_PE(4)); /* DATA[20] */
  128. at32_reserve_pin(GPIO_PIN_PE(5)); /* DATA[21] */
  129. at32_reserve_pin(GPIO_PIN_PE(6)); /* DATA[22] */
  130. at32_reserve_pin(GPIO_PIN_PE(7)); /* DATA[23] */
  131. at32_reserve_pin(GPIO_PIN_PE(8)); /* DATA[24] */
  132. at32_reserve_pin(GPIO_PIN_PE(9)); /* DATA[25] */
  133. at32_reserve_pin(GPIO_PIN_PE(10)); /* DATA[26] */
  134. at32_reserve_pin(GPIO_PIN_PE(11)); /* DATA[27] */
  135. at32_reserve_pin(GPIO_PIN_PE(12)); /* DATA[28] */
  136. at32_reserve_pin(GPIO_PIN_PE(13)); /* DATA[29] */
  137. at32_reserve_pin(GPIO_PIN_PE(14)); /* DATA[30] */
  138. at32_reserve_pin(GPIO_PIN_PE(15)); /* DATA[31] */
  139. at32_reserve_pin(GPIO_PIN_PE(26)); /* SDCS */
  140. at32_add_system_devices();
  141. #ifdef CONFIG_BOARD_ATSTK1002_SW2_CUSTOM
  142. at32_add_device_usart(1);
  143. #else
  144. at32_add_device_usart(0);
  145. #endif
  146. at32_add_device_usart(2);
  147. #ifndef CONFIG_BOARD_ATSTK1002_SW6_CUSTOM
  148. set_hw_addr(at32_add_device_eth(0, &eth_data[0]));
  149. #endif
  150. #ifndef CONFIG_BOARD_ATSTK1002_SW1_CUSTOM
  151. at32_add_device_spi(0, spi0_board_info, ARRAY_SIZE(spi0_board_info));
  152. #endif
  153. #ifdef CONFIG_BOARD_ATSTK1002_SPI1
  154. at32_add_device_spi(1, spi1_board_info, ARRAY_SIZE(spi1_board_info));
  155. #endif
  156. #ifdef CONFIG_BOARD_ATSTK1002_SW5_CUSTOM
  157. set_hw_addr(at32_add_device_eth(1, &eth_data[1]));
  158. #else
  159. at32_add_device_lcdc(0, &atstk1000_lcdc_data,
  160. fbmem_start, fbmem_size);
  161. #endif
  162. #ifndef CONFIG_BOARD_ATSTK1002_SW3_CUSTOM
  163. at32_add_device_ssc(0, ATMEL_SSC_TX);
  164. #endif
  165. return 0;
  166. }
  167. postcore_initcall(atstk1002_init);