OMAP: Add new function to check wether there is irq pending
[linux-ginger.git] / arch / arm / mach-orion5x / ts78xx-fpga.h
blob0f9cdf458952f0da68c0450e35f9c1875d7239da
1 #define FPGAID(_magic, _rev) ((_magic << 8) + _rev)
3 /*
4 * get yer id's from http://ts78xx.digriz.org.uk/
5 * do *not* make up your own or 'borrow' any!
6 */
7 enum fpga_ids {
8 /* Technologic Systems */
9 TS7800_REV_1 = FPGAID(0x00b480, 0x01),
10 TS7800_REV_2 = FPGAID(0x00b480, 0x02),
11 TS7800_REV_3 = FPGAID(0x00b480, 0x03),
12 TS7800_REV_4 = FPGAID(0x00b480, 0x04),
13 TS7800_REV_5 = FPGAID(0x00b480, 0x05),
15 /* Unaffordable & Expensive */
16 UAE_DUMMY = FPGAID(0xffffff, 0x01),
19 struct fpga_device {
20 unsigned present:1;
21 unsigned init:1;
24 struct fpga_devices {
25 /* Technologic Systems */
26 struct fpga_device ts_rtc;
27 struct fpga_device ts_nand;
30 struct ts78xx_fpga_data {
31 unsigned int id;
32 int state;
34 struct fpga_devices supports;