2 * linux/arch/arm/mach-pxa/lubbock.c
4 * Support for the Intel DBPXA250 Development Platform.
6 * Author: Nicolas Pitre
7 * Created: Jun 15, 2001
8 * Copyright: MontaVista Software Inc.
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 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/device.h>
18 #include <linux/major.h>
20 #include <linux/interrupt.h>
22 #include <asm/setup.h>
23 #include <asm/memory.h>
24 #include <asm/mach-types.h>
25 #include <asm/hardware.h>
28 #include <asm/mach/arch.h>
29 #include <asm/mach/map.h>
30 #include <asm/mach/irq.h>
32 #include <asm/hardware/sa1111.h>
34 #include <asm/arch/pxa-regs.h>
35 #include <asm/arch/lubbock.h>
36 #include <asm/arch/udc.h>
37 #include <asm/arch/pxafb.h>
38 #include <asm/arch/mmc.h>
43 #define LUB_MISC_WR __LUB_REG(LUBBOCK_FPGA_PHYS + 0x080)
45 void lubbock_set_misc_wr(unsigned int mask
, unsigned int set
)
49 local_irq_save(flags
);
50 LUB_MISC_WR
= (LUB_MISC_WR
& ~mask
) | (set
& mask
);
51 local_irq_restore(flags
);
53 EXPORT_SYMBOL(lubbock_set_misc_wr
);
55 static unsigned long lubbock_irq_enabled
;
57 static void lubbock_mask_irq(unsigned int irq
)
59 int lubbock_irq
= (irq
- LUBBOCK_IRQ(0));
60 LUB_IRQ_MASK_EN
= (lubbock_irq_enabled
&= ~(1 << lubbock_irq
));
63 static void lubbock_unmask_irq(unsigned int irq
)
65 int lubbock_irq
= (irq
- LUBBOCK_IRQ(0));
66 /* the irq can be acknowledged only if deasserted, so it's done here */
67 LUB_IRQ_SET_CLR
&= ~(1 << lubbock_irq
);
68 LUB_IRQ_MASK_EN
= (lubbock_irq_enabled
|= (1 << lubbock_irq
));
71 static struct irqchip lubbock_irq_chip
= {
72 .ack
= lubbock_mask_irq
,
73 .mask
= lubbock_mask_irq
,
74 .unmask
= lubbock_unmask_irq
,
77 static void lubbock_irq_handler(unsigned int irq
, struct irqdesc
*desc
,
80 unsigned long pending
= LUB_IRQ_SET_CLR
& lubbock_irq_enabled
;
82 GEDR(0) = GPIO_bit(0); /* clear our parent irq */
83 if (likely(pending
)) {
84 irq
= LUBBOCK_IRQ(0) + __ffs(pending
);
85 desc
= irq_desc
+ irq
;
86 desc
->handle(irq
, desc
, regs
);
88 pending
= LUB_IRQ_SET_CLR
& lubbock_irq_enabled
;
92 static void __init
lubbock_init_irq(void)
98 /* setup extra lubbock irqs */
99 for (irq
= LUBBOCK_IRQ(0); irq
<= LUBBOCK_LAST_IRQ
; irq
++) {
100 set_irq_chip(irq
, &lubbock_irq_chip
);
101 set_irq_handler(irq
, do_level_IRQ
);
102 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
105 set_irq_chained_handler(IRQ_GPIO(0), lubbock_irq_handler
);
106 set_irq_type(IRQ_GPIO(0), IRQT_FALLING
);
109 static int lubbock_udc_is_connected(void)
111 return (LUB_MISC_RD
& (1 << 9)) == 0;
114 static struct pxa2xx_udc_mach_info udc_info __initdata
= {
115 .udc_is_connected
= lubbock_udc_is_connected
,
116 // no D+ pullup; lubbock can't connect/disconnect in software
119 static struct resource sa1111_resources
[] = {
123 .flags
= IORESOURCE_MEM
,
126 .start
= LUBBOCK_SA1111_IRQ
,
127 .end
= LUBBOCK_SA1111_IRQ
,
128 .flags
= IORESOURCE_IRQ
,
132 static struct platform_device sa1111_device
= {
135 .num_resources
= ARRAY_SIZE(sa1111_resources
),
136 .resource
= sa1111_resources
,
139 static struct resource smc91x_resources
[] = {
141 .name
= "smc91x-regs",
144 .flags
= IORESOURCE_MEM
,
147 .start
= LUBBOCK_ETH_IRQ
,
148 .end
= LUBBOCK_ETH_IRQ
,
149 .flags
= IORESOURCE_IRQ
,
152 .name
= "smc91x-attrib",
155 .flags
= IORESOURCE_MEM
,
159 static struct platform_device smc91x_device
= {
162 .num_resources
= ARRAY_SIZE(smc91x_resources
),
163 .resource
= smc91x_resources
,
166 static struct platform_device
*devices
[] __initdata
= {
171 static struct pxafb_mach_info sharp_lm8v31 __initdata
= {
182 .sync
= FB_SYNC_HOR_HIGH_ACT
| FB_SYNC_VERT_HIGH_ACT
,
187 .lccr3
= LCCR3_PCP
| LCCR3_Acb(255),
190 static int lubbock_mci_init(struct device
*dev
, irqreturn_t (*lubbock_detect_int
)(int, void *, struct pt_regs
*), void *data
)
192 /* setup GPIO for PXA25x MMC controller */
193 pxa_gpio_mode(GPIO6_MMCCLK_MD
);
194 pxa_gpio_mode(GPIO8_MMCCS0_MD
);
199 static struct pxamci_platform_data lubbock_mci_platform_data
= {
200 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
201 .init
= lubbock_mci_init
,
204 static void __init
lubbock_init(void)
206 pxa_set_udc_info(&udc_info
);
207 set_pxa_fb_info(&sharp_lm8v31
);
208 pxa_set_mci_info(&lubbock_mci_platform_data
);
209 (void) platform_add_devices(devices
, ARRAY_SIZE(devices
));
212 static struct map_desc lubbock_io_desc
[] __initdata
= {
213 { LUBBOCK_FPGA_VIRT
, LUBBOCK_FPGA_PHYS
, 0x00100000, MT_DEVICE
}, /* CPLD */
216 static void __init
lubbock_map_io(void)
219 iotable_init(lubbock_io_desc
, ARRAY_SIZE(lubbock_io_desc
));
221 /* This enables the BTUART */
222 pxa_gpio_mode(GPIO42_BTRXD_MD
);
223 pxa_gpio_mode(GPIO43_BTTXD_MD
);
224 pxa_gpio_mode(GPIO44_BTCTS_MD
);
225 pxa_gpio_mode(GPIO45_BTRTS_MD
);
227 /* This is for the SMC chip select */
228 pxa_gpio_mode(GPIO79_nCS_3_MD
);
230 /* setup sleep mode values */
240 MACHINE_START(LUBBOCK
, "Intel DBPXA250 Development Platform (aka Lubbock)")
241 MAINTAINER("MontaVista Software Inc.")
242 BOOT_MEM(0xa0000000, 0x40000000, io_p2v(0x40000000))
243 MAPIO(lubbock_map_io
)
244 INITIRQ(lubbock_init_irq
)
246 INIT_MACHINE(lubbock_init
)