2 * ATSTK1003 daughterboard-specific init code
4 * Copyright (C) 2007 Atmel Corporation
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.
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>
18 #include <linux/spi/at73c213.h>
19 #include <linux/spi/spi.h>
21 #include <asm/setup.h>
22 #include <asm/atmel-mci.h>
24 #include <mach/at32ap700x.h>
25 #include <mach/board.h>
26 #include <mach/init.h>
27 #include <mach/portmux.h>
29 #include "atstk1000.h"
31 /* Oscillator frequencies. These are board specific */
32 unsigned long at32_board_osc_rates[3] = {
33 [0] = 32768, /* 32.768 kHz on RTC osc */
34 [1] = 20000000, /* 20 MHz on osc0 */
35 [2] = 12000000, /* 12 MHz on osc1 */
38 #ifdef CONFIG_BOARD_ATSTK1000_EXTDAC
39 static struct at73c213_board_info at73c213_data = {
41 .shortname = "AVR32 STK1000 external DAC",
45 #ifndef CONFIG_BOARD_ATSTK100X_SW1_CUSTOM
46 static struct spi_board_info spi0_board_info[] __initdata = {
47 #ifdef CONFIG_BOARD_ATSTK1000_EXTDAC
50 .modalias = "at73c213",
51 .max_speed_hz = 200000,
54 .platform_data = &at73c213_data,
58 * We can control the LTV350QV LCD panel, but it isn't much
59 * point since we don't have an LCD controller...
64 #ifdef CONFIG_BOARD_ATSTK100X_SPI1
65 static struct spi_board_info spi1_board_info[] __initdata = { {
66 /* patch in custom entries here */
70 #ifndef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
71 static struct mci_platform_data __initdata mci0_data = {
74 .detect_pin = -ENODEV,
80 #ifdef CONFIG_BOARD_ATSTK1000_EXTDAC
81 static void __init atstk1003_setup_extdac(void)
86 gclk = clk_get(NULL, "gclk0");
89 pll = clk_get(NULL, "pll0");
93 if (clk_set_parent(gclk, pll)) {
94 pr_debug("STK1000: failed to set pll0 as parent for DAC clock\n");
98 at32_select_periph(GPIO_PIOA_BASE, (1 << 30), GPIO_PERIPH_A, 0);
99 at73c213_data.dac_clk = gclk;
109 static void __init atstk1003_setup_extdac(void)
113 #endif /* CONFIG_BOARD_ATSTK1000_EXTDAC */
115 void __init setup_board(void)
117 #ifdef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
118 at32_map_usart(0, 1); /* USART 0/B: /dev/ttyS1, IRDA */
120 at32_map_usart(1, 0); /* USART 1/A: /dev/ttyS0, DB9 */
122 /* USART 2/unused: expansion connector */
123 at32_map_usart(3, 2); /* USART 3/C: /dev/ttyS2, DB9 */
125 at32_setup_serial_console(0);
128 static int __init atstk1003_init(void)
131 * ATSTK1000 uses 32-bit SDRAM interface. Reserve the
132 * SDRAM-specific pins so that nobody messes with them.
134 at32_reserve_pin(GPIO_PIN_PE(0)); /* DATA[16] */
135 at32_reserve_pin(GPIO_PIN_PE(1)); /* DATA[17] */
136 at32_reserve_pin(GPIO_PIN_PE(2)); /* DATA[18] */
137 at32_reserve_pin(GPIO_PIN_PE(3)); /* DATA[19] */
138 at32_reserve_pin(GPIO_PIN_PE(4)); /* DATA[20] */
139 at32_reserve_pin(GPIO_PIN_PE(5)); /* DATA[21] */
140 at32_reserve_pin(GPIO_PIN_PE(6)); /* DATA[22] */
141 at32_reserve_pin(GPIO_PIN_PE(7)); /* DATA[23] */
142 at32_reserve_pin(GPIO_PIN_PE(8)); /* DATA[24] */
143 at32_reserve_pin(GPIO_PIN_PE(9)); /* DATA[25] */
144 at32_reserve_pin(GPIO_PIN_PE(10)); /* DATA[26] */
145 at32_reserve_pin(GPIO_PIN_PE(11)); /* DATA[27] */
146 at32_reserve_pin(GPIO_PIN_PE(12)); /* DATA[28] */
147 at32_reserve_pin(GPIO_PIN_PE(13)); /* DATA[29] */
148 at32_reserve_pin(GPIO_PIN_PE(14)); /* DATA[30] */
149 at32_reserve_pin(GPIO_PIN_PE(15)); /* DATA[31] */
150 at32_reserve_pin(GPIO_PIN_PE(26)); /* SDCS */
152 #ifdef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
153 at32_add_device_usart(1);
155 at32_add_device_usart(0);
157 at32_add_device_usart(2);
159 #ifndef CONFIG_BOARD_ATSTK100X_SW1_CUSTOM
160 at32_add_device_spi(0, spi0_board_info, ARRAY_SIZE(spi0_board_info));
162 #ifdef CONFIG_BOARD_ATSTK100X_SPI1
163 at32_add_device_spi(1, spi1_board_info, ARRAY_SIZE(spi1_board_info));
165 #ifndef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
166 at32_add_device_mci(0, &mci0_data);
168 at32_add_device_usba(0, NULL);
169 #ifndef CONFIG_BOARD_ATSTK100X_SW3_CUSTOM
170 at32_add_device_ssc(0, ATMEL_SSC_TX);
173 atstk1000_setup_j2_leds();
174 atstk1003_setup_extdac();
178 postcore_initcall(atstk1003_init);