4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2006 Thomas Bogendoerfer (tsbogend@alpha.franken.de)
11 #include <linux/init.h>
12 #include <linux/interrupt.h>
13 #include <linux/platform_device.h>
14 #include <linux/serial_8250.h>
19 #define PORT(_base,_irq) \
24 .iotype = UPIO_PORT, \
25 .flags = UPF_BOOT_AUTOCONF, \
28 static struct plat_serial8250_port a20r_data[] = {
34 static struct platform_device a20r_serial8250_device = {
36 .id = PLAT8250_DEV_PLATFORM,
38 .platform_data = a20r_data,
42 static struct resource a20r_ds1216_rsrc[] = {
46 .flags = IORESOURCE_MEM
50 static struct platform_device a20r_ds1216_device = {
52 .num_resources = ARRAY_SIZE(a20r_ds1216_rsrc),
53 .resource = a20r_ds1216_rsrc
56 static struct resource snirm_82596_rsrc[] = {
60 .flags = IORESOURCE_MEM
65 .flags = IORESOURCE_MEM
70 .flags = IORESOURCE_MEM
75 .flags = IORESOURCE_IRQ
78 .flags = 0x01 /* 16bit mpu port access */
82 static struct platform_device snirm_82596_pdev = {
83 .name = "snirm_82596",
84 .num_resources = ARRAY_SIZE(snirm_82596_rsrc),
85 .resource = snirm_82596_rsrc
88 static struct resource snirm_53c710_rsrc[] = {
92 .flags = IORESOURCE_MEM
97 .flags = IORESOURCE_IRQ
101 static struct platform_device snirm_53c710_pdev = {
102 .name = "snirm_53c710",
103 .num_resources = ARRAY_SIZE(snirm_53c710_rsrc),
104 .resource = snirm_53c710_rsrc
107 static struct resource sc26xx_rsrc[] = {
111 .flags = IORESOURCE_MEM
116 .flags = IORESOURCE_IRQ
120 static struct platform_device sc26xx_pdev = {
122 .num_resources = ARRAY_SIZE(sc26xx_rsrc),
123 .resource = sc26xx_rsrc
126 static u32 a20r_ack_hwint(void)
128 u32 status = read_c0_status();
130 write_c0_status (status | 0x00010000);
155 : "Jr" (PCIMT_UCONF), "Jr" (0xbc000000));
156 write_c0_status(status);
161 static inline void unmask_a20r_irq(unsigned int irq)
163 set_c0_status(0x100 << (irq - SNI_A20R_IRQ_BASE));
167 static inline void mask_a20r_irq(unsigned int irq)
169 clear_c0_status(0x100 << (irq - SNI_A20R_IRQ_BASE));
170 irq_disable_hazard();
173 static void end_a20r_irq(unsigned int irq)
175 if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS))) {
177 unmask_a20r_irq(irq);
181 static struct irq_chip a20r_irq_type = {
183 .ack = mask_a20r_irq,
184 .mask = mask_a20r_irq,
185 .mask_ack = mask_a20r_irq,
186 .unmask = unmask_a20r_irq,
191 * hwint 0 receive all interrupts
193 static void a20r_hwint(void)
198 clear_c0_status (IE_IRQ0);
199 status = a20r_ack_hwint();
200 cause = read_c0_cause();
202 irq = ffs(((cause & status) >> 8) & 0xf8);
204 do_IRQ(SNI_A20R_IRQ_BASE + irq - 1);
205 set_c0_status(IE_IRQ0);
208 void __init sni_a20r_irq_init(void)
212 for (i = SNI_A20R_IRQ_BASE + 2 ; i < SNI_A20R_IRQ_BASE + 8; i++)
213 set_irq_chip(i, &a20r_irq_type);
214 sni_hwint = a20r_hwint;
215 change_c0_status(ST0_IM, IE_IRQ0);
216 setup_irq (SNI_A20R_IRQ_BASE + 3, &sni_isa_irq);
219 void sni_a20r_init(void)
221 /* FIXME, remove if not needed */
224 static int __init snirm_a20r_setup_devinit(void)
226 switch (sni_brd_type) {
227 case SNI_BRD_TOWER_OASIC:
228 case SNI_BRD_MINITOWER:
229 platform_device_register(&snirm_82596_pdev);
230 platform_device_register(&snirm_53c710_pdev);
231 platform_device_register(&sc26xx_pdev);
232 platform_device_register(&a20r_serial8250_device);
233 platform_device_register(&a20r_ds1216_device);
240 device_initcall(snirm_a20r_setup_devinit);