2 * linux/arch/arm/mach-pxa/generic.c
4 * Author: Nicolas Pitre
5 * Created: Jun 15, 2001
6 * Copyright: MontaVista Software Inc.
8 * Code common to all PXA machines.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 * Since this file should be linked before any other machine specific file,
15 * the __initcall() here will be executed first. This serves as default
16 * initialization stuff for PXA machines which can be overridden later if
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/delay.h>
23 #include <linux/device.h>
24 #include <linux/ioport.h>
27 #include <asm/hardware.h>
29 #include <asm/system.h>
30 #include <asm/pgtable.h>
31 #include <asm/mach/map.h>
33 #include <asm/arch/pxa-regs.h>
34 #include <asm/arch/udc.h>
35 #include <asm/arch/pxafb.h>
36 #include <asm/arch/mmc.h>
37 #include <asm/arch/i2c.h>
42 * Handy function to set GPIO alternate functions
45 void pxa_gpio_mode(int gpio_mode
)
48 int gpio
= gpio_mode
& GPIO_MD_MASK_NR
;
49 int fn
= (gpio_mode
& GPIO_MD_MASK_FN
) >> 8;
52 local_irq_save(flags
);
53 if (gpio_mode
& GPIO_DFLT_LOW
)
54 GPCR(gpio
) = GPIO_bit(gpio
);
55 else if (gpio_mode
& GPIO_DFLT_HIGH
)
56 GPSR(gpio
) = GPIO_bit(gpio
);
57 if (gpio_mode
& GPIO_MD_MASK_DIR
)
58 GPDR(gpio
) |= GPIO_bit(gpio
);
60 GPDR(gpio
) &= ~GPIO_bit(gpio
);
61 gafr
= GAFR(gpio
) & ~(0x3 << (((gpio
) & 0xf)*2));
62 GAFR(gpio
) = gafr
| (fn
<< (((gpio
) & 0xf)*2));
63 local_irq_restore(flags
);
66 EXPORT_SYMBOL(pxa_gpio_mode
);
69 * Routine to safely enable or disable a clock in the CKEN
71 void pxa_set_cken(int clock
, int enable
)
74 local_irq_save(flags
);
81 local_irq_restore(flags
);
84 EXPORT_SYMBOL(pxa_set_cken
);
87 * Intel PXA2xx internal register mapping.
89 * Note 1: not all PXA2xx variants implement all those addresses.
91 * Note 2: virtual 0xfffe0000-0xffffffff is reserved for the vector table
92 * and cache flush area.
94 static struct map_desc standard_io_desc
[] __initdata
= {
96 .virtual = 0xf2000000,
97 .pfn
= __phys_to_pfn(0x40000000),
101 .virtual = 0xf4000000,
102 .pfn
= __phys_to_pfn(0x44000000),
103 .length
= 0x00100000,
106 .virtual = 0xf6000000,
107 .pfn
= __phys_to_pfn(0x48000000),
108 .length
= 0x00100000,
111 .virtual = 0xf8000000,
112 .pfn
= __phys_to_pfn(0x4c000000),
113 .length
= 0x00100000,
116 .virtual = 0xfa000000,
117 .pfn
= __phys_to_pfn(0x50000000),
118 .length
= 0x00100000,
121 .virtual = 0xfe000000,
122 .pfn
= __phys_to_pfn(0x58000000),
123 .length
= 0x00100000,
125 }, { /* UNCACHED_PHYS_0 */
126 .virtual = 0xff000000,
127 .pfn
= __phys_to_pfn(0x00000000),
128 .length
= 0x00100000,
133 void __init
pxa_map_io(void)
135 iotable_init(standard_io_desc
, ARRAY_SIZE(standard_io_desc
));
136 get_clk_frequency_khz(1);
140 static struct resource pxamci_resources
[] = {
144 .flags
= IORESOURCE_MEM
,
149 .flags
= IORESOURCE_IRQ
,
153 static u64 pxamci_dmamask
= 0xffffffffUL
;
155 static struct platform_device pxamci_device
= {
156 .name
= "pxa2xx-mci",
159 .dma_mask
= &pxamci_dmamask
,
160 .coherent_dma_mask
= 0xffffffff,
162 .num_resources
= ARRAY_SIZE(pxamci_resources
),
163 .resource
= pxamci_resources
,
166 void __init
pxa_set_mci_info(struct pxamci_platform_data
*info
)
168 pxamci_device
.dev
.platform_data
= info
;
172 static struct pxa2xx_udc_mach_info pxa_udc_info
;
174 void __init
pxa_set_udc_info(struct pxa2xx_udc_mach_info
*info
)
176 memcpy(&pxa_udc_info
, info
, sizeof *info
);
179 static struct resource pxa2xx_udc_resources
[] = {
183 .flags
= IORESOURCE_MEM
,
188 .flags
= IORESOURCE_IRQ
,
192 static u64 udc_dma_mask
= ~(u32
)0;
194 static struct platform_device udc_device
= {
195 .name
= "pxa2xx-udc",
197 .resource
= pxa2xx_udc_resources
,
198 .num_resources
= ARRAY_SIZE(pxa2xx_udc_resources
),
200 .platform_data
= &pxa_udc_info
,
201 .dma_mask
= &udc_dma_mask
,
205 static struct pxafb_mach_info pxa_fb_info
;
207 void __init
set_pxa_fb_info(struct pxafb_mach_info
*hard_pxa_fb_info
)
209 memcpy(&pxa_fb_info
,hard_pxa_fb_info
,sizeof(struct pxafb_mach_info
));
212 static struct resource pxafb_resources
[] = {
216 .flags
= IORESOURCE_MEM
,
221 .flags
= IORESOURCE_IRQ
,
225 static u64 fb_dma_mask
= ~(u64
)0;
227 static struct platform_device pxafb_device
= {
231 .platform_data
= &pxa_fb_info
,
232 .dma_mask
= &fb_dma_mask
,
233 .coherent_dma_mask
= 0xffffffff,
235 .num_resources
= ARRAY_SIZE(pxafb_resources
),
236 .resource
= pxafb_resources
,
239 void __init
set_pxa_fb_parent(struct device
*parent_dev
)
241 pxafb_device
.dev
.parent
= parent_dev
;
244 static struct platform_device ffuart_device
= {
245 .name
= "pxa2xx-uart",
248 static struct platform_device btuart_device
= {
249 .name
= "pxa2xx-uart",
252 static struct platform_device stuart_device
= {
253 .name
= "pxa2xx-uart",
257 static struct resource i2c_resources
[] = {
261 .flags
= IORESOURCE_MEM
,
265 .flags
= IORESOURCE_IRQ
,
269 static struct platform_device i2c_device
= {
270 .name
= "pxa2xx-i2c",
272 .resource
= i2c_resources
,
273 .num_resources
= ARRAY_SIZE(i2c_resources
),
276 void __init
pxa_set_i2c_info(struct i2c_pxa_platform_data
*info
)
278 i2c_device
.dev
.platform_data
= info
;
281 static struct resource i2s_resources
[] = {
285 .flags
= IORESOURCE_MEM
,
289 .flags
= IORESOURCE_IRQ
,
293 static struct platform_device i2s_device
= {
294 .name
= "pxa2xx-i2s",
296 .resource
= i2s_resources
,
297 .num_resources
= ARRAY_SIZE(i2s_resources
),
300 static struct platform_device
*devices
[] __initdata
= {
311 static int __init
pxa_init(void)
313 return platform_add_devices(devices
, ARRAY_SIZE(devices
));
316 subsys_initcall(pxa_init
);