2 * $Id: setup.c,v 1.4 2003/08/03 03:05:10 lethal Exp $
4 * Setup and IRQ handling code for the HD64465 companion chip.
5 * by Greg Banks <gbanks@pocketpenguins.com>
6 * Copyright (c) 2000 PocketPenguins Inc
8 * Derived from setup_hd64461.c which bore the message:
9 * Copyright (C) 2000 YAEGASHI Takeshi
12 #include <linux/sched.h>
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/param.h>
16 #include <linux/ioport.h>
17 #include <linux/interrupt.h>
18 #include <linux/init.h>
19 #include <linux/irq.h>
22 #include <asm/hd64465/hd64465.h>
24 static void disable_hd64465_irq(unsigned int irq
)
27 unsigned short mask
= 1 << (irq
- HD64465_IRQ_BASE
);
29 pr_debug("disable_hd64465_irq(%d): mask=%x\n", irq
, mask
);
30 nimr
= inw(HD64465_REG_NIMR
);
32 outw(nimr
, HD64465_REG_NIMR
);
35 static void enable_hd64465_irq(unsigned int irq
)
38 unsigned short mask
= 1 << (irq
- HD64465_IRQ_BASE
);
40 pr_debug("enable_hd64465_irq(%d): mask=%x\n", irq
, mask
);
41 nimr
= inw(HD64465_REG_NIMR
);
43 outw(nimr
, HD64465_REG_NIMR
);
46 static void mask_and_ack_hd64465(unsigned int irq
)
48 disable_hd64465_irq(irq
);
51 static void end_hd64465_irq(unsigned int irq
)
53 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
|IRQ_INPROGRESS
)))
54 enable_hd64465_irq(irq
);
57 static unsigned int startup_hd64465_irq(unsigned int irq
)
59 enable_hd64465_irq(irq
);
63 static void shutdown_hd64465_irq(unsigned int irq
)
65 disable_hd64465_irq(irq
);
68 static struct hw_interrupt_type hd64465_irq_type
= {
69 .typename
= "HD64465-IRQ",
70 .startup
= startup_hd64465_irq
,
71 .shutdown
= shutdown_hd64465_irq
,
72 .enable
= enable_hd64465_irq
,
73 .disable
= disable_hd64465_irq
,
74 .ack
= mask_and_ack_hd64465
,
75 .end
= end_hd64465_irq
,
78 static irqreturn_t
hd64465_interrupt(int irq
, void *dev_id
)
81 "HD64465: spurious interrupt, nirr: 0x%x nimr: 0x%x\n",
82 inw(HD64465_REG_NIRR
), inw(HD64465_REG_NIMR
));
88 * Support for a secondary IRQ demux step. This is necessary
89 * because the HD64465 presents a very thin interface to the
90 * PCMCIA bus; a lot of features (such as remapping interrupts)
91 * normally done in hardware by other PCMCIA host bridges is
92 * instead done in software.
95 int (*func
)(int, void *);
97 } hd64465_demux
[HD64465_IRQ_NUM
];
99 void hd64465_register_irq_demux(int irq
,
100 int (*demux
)(int irq
, void *dev
), void *dev
)
102 hd64465_demux
[irq
- HD64465_IRQ_BASE
].func
= demux
;
103 hd64465_demux
[irq
- HD64465_IRQ_BASE
].dev
= dev
;
105 EXPORT_SYMBOL(hd64465_register_irq_demux
);
107 void hd64465_unregister_irq_demux(int irq
)
109 hd64465_demux
[irq
- HD64465_IRQ_BASE
].func
= 0;
111 EXPORT_SYMBOL(hd64465_unregister_irq_demux
);
113 int hd64465_irq_demux(int irq
)
115 if (irq
== CONFIG_HD64465_IRQ
) {
116 unsigned short i
, bit
;
117 unsigned short nirr
= inw(HD64465_REG_NIRR
);
118 unsigned short nimr
= inw(HD64465_REG_NIMR
);
120 pr_debug("hd64465_irq_demux, nirr=%04x, nimr=%04x\n", nirr
, nimr
);
122 for (bit
= 1, i
= 0 ; i
< HD64465_IRQ_NUM
; bit
<<= 1, i
++)
126 if (i
< HD64465_IRQ_NUM
) {
127 irq
= HD64465_IRQ_BASE
+ i
;
128 if (hd64465_demux
[i
].func
!= 0)
129 irq
= hd64465_demux
[i
].func(irq
, hd64465_demux
[i
].dev
);
135 static struct irqaction irq0
= {
136 .handler
= hd64465_interrupt
,
137 .flags
= IRQF_DISABLED
,
138 .mask
= CPU_MASK_NONE
,
142 static int __init
setup_hd64465(void)
146 unsigned short smscr
;
151 printk(KERN_INFO
"HD64465 configured at 0x%x on irq %d(mapped into %d to %d)\n",
152 CONFIG_HD64465_IOBASE
,
155 HD64465_IRQ_BASE
+HD64465_IRQ_NUM
-1);
157 if (inw(HD64465_REG_SDID
) != HD64465_SDID
) {
158 printk(KERN_ERR
"HD64465 device ID not found, check base address\n");
161 rev
= inw(HD64465_REG_SRR
);
162 printk(KERN_INFO
"HD64465 hardware revision %d.%d\n", (rev
>> 8) & 0xff, rev
& 0xff);
164 outw(0xffff, HD64465_REG_NIMR
); /* mask all interrupts */
166 for (i
= 0; i
< HD64465_IRQ_NUM
; i
++) {
167 irq_desc
[HD64465_IRQ_BASE
+ i
].chip
= &hd64465_irq_type
;
170 setup_irq(CONFIG_HD64465_IRQ
, &irq0
);
172 /* wake up the UART from STANDBY at this point */
173 smscr
= inw(HD64465_REG_SMSCR
);
174 outw(smscr
& (~HD64465_SMSCR_UARTST
), HD64465_REG_SMSCR
);
176 /* remap IO ports for first ISA serial port to HD64465 UART */
177 hd64465_port_map(0x3f8, 8, CONFIG_HD64465_IOBASE
+ 0x8000, 1);
181 module_init(setup_hd64465
);