Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
colibri-pxa300.c
Go to the documentation of this file.
1 /*
2  * arch/arm/mach-pxa/colibri-pxa300.c
3  *
4  * Support for Toradex PXA300/310 based Colibri module
5  *
6  * Daniel Mack <[email protected]>
7  * Matthias Meier <[email protected]>
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 version 2 as
11  * published by the Free Software Foundation.
12  */
13 
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/platform_device.h>
17 #include <linux/gpio.h>
18 #include <linux/interrupt.h>
19 
20 #include <asm/mach-types.h>
21 #include <asm/sizes.h>
22 #include <asm/mach/arch.h>
23 #include <asm/mach/irq.h>
24 
25 #include <mach/pxa300.h>
26 #include <mach/colibri.h>
29 #include <mach/audio.h>
30 
31 #include "generic.h"
32 #include "devices.h"
33 
34 
35 #ifdef CONFIG_MACH_COLIBRI_EVALBOARD
36 static mfp_cfg_t colibri_pxa300_evalboard_pin_config[] __initdata = {
37  /* MMC */
44  GPIO13_GPIO, /* GPIO13_COLIBRI_PXA300_SD_DETECT */
45 
46  /* UHC */
55 
56  /* I2C */
59 };
60 #else
61 static mfp_cfg_t colibri_pxa300_evalboard_pin_config[] __initdata = {};
62 #endif
63 
64 #if defined(CONFIG_AX88796)
65 #define COLIBRI_ETH_IRQ_GPIO mfp_to_gpio(GPIO26_GPIO)
66 /*
67  * Asix AX88796 Ethernet
68  */
69 static struct ax_plat_data colibri_asix_platdata = {
70  .flags = 0, /* defined later */
71  .wordlength = 2,
72 };
73 
74 static struct resource colibri_asix_resource[] = {
75  [0] = {
77  .end = PXA3xx_CS2_PHYS + (0x20 * 2) - 1,
79  },
80  [1] = {
81  .start = PXA_GPIO_TO_IRQ(COLIBRI_ETH_IRQ_GPIO),
82  .end = PXA_GPIO_TO_IRQ(COLIBRI_ETH_IRQ_GPIO),
84  }
85 };
86 
87 static struct platform_device asix_device = {
88  .name = "ax88796",
89  .id = 0,
90  .num_resources = ARRAY_SIZE(colibri_asix_resource),
91  .resource = colibri_asix_resource,
92  .dev = {
93  .platform_data = &colibri_asix_platdata
94  }
95 };
96 
97 static mfp_cfg_t colibri_pxa300_eth_pin_config[] __initdata = {
98  GPIO1_nCS2, /* AX88796 chip select */
99  GPIO26_GPIO | MFP_PULL_HIGH /* AX88796 IRQ */
100 };
101 
102 static void __init colibri_pxa300_init_eth(void)
103 {
104  colibri_pxa3xx_init_eth(&colibri_asix_platdata);
105  pxa3xx_mfp_config(ARRAY_AND_SIZE(colibri_pxa300_eth_pin_config));
106  platform_device_register(&asix_device);
107 }
108 #else
109 static inline void __init colibri_pxa300_init_eth(void) {}
110 #endif /* CONFIG_AX88796 */
111 
112 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
113 static mfp_cfg_t colibri_pxa300_lcd_pin_config[] __initdata = {
138 };
139 
140 static void __init colibri_pxa300_init_lcd(void)
141 {
142  pxa3xx_mfp_config(ARRAY_AND_SIZE(colibri_pxa300_lcd_pin_config));
143 }
144 
145 #else
146 static inline void colibri_pxa300_init_lcd(void) {}
147 #endif /* CONFIG_FB_PXA || CONFIG_FB_PXA_MODULE */
148 
149 #if defined(CONFIG_SND_AC97_CODEC) || defined(CONFIG_SND_AC97_CODEC_MODULE)
150 static mfp_cfg_t colibri_pxa310_ac97_pin_config[] __initdata = {
157 };
158 
159 static inline void __init colibri_pxa310_init_ac97(void)
160 {
161  /* no AC97 codec on Colibri PXA300 */
162  if (!cpu_is_pxa310())
163  return;
164 
165  pxa3xx_mfp_config(ARRAY_AND_SIZE(colibri_pxa310_ac97_pin_config));
167 }
168 #else
169 static inline void colibri_pxa310_init_ac97(void) {}
170 #endif
171 
173 {
174  colibri_pxa300_init_eth();
175  colibri_pxa3xx_init_nand();
176  colibri_pxa300_init_lcd();
177  colibri_pxa3xx_init_lcd(mfp_to_gpio(GPIO39_GPIO));
178  colibri_pxa310_init_ac97();
179 
180  /* Evalboard init */
181  pxa3xx_mfp_config(ARRAY_AND_SIZE(colibri_pxa300_evalboard_pin_config));
183 }
184 
185 MACHINE_START(COLIBRI300, "Toradex Colibri PXA300")
186  .atag_offset = 0x100,
187  .init_machine = colibri_pxa300_init,
188  .map_io = pxa3xx_map_io,
189  .nr_irqs = PXA_NR_IRQS,
190  .init_irq = pxa3xx_init_irq,
191  .handle_irq = pxa3xx_handle_irq,
192  .timer = &pxa_timer,
193  .restart = pxa_restart,
195