2 * arch/arm/mach-ns9xxx/board-a9m9750dev.c
4 * Copyright (C) 2006,2007 by Digi International Inc.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
11 #include <linux/platform_device.h>
12 #include <linux/serial_8250.h>
13 #include <linux/irq.h>
15 #include <asm/mach/map.h>
17 #include <asm/arch-ns9xxx/board.h>
18 #include <asm/arch-ns9xxx/regs-sys.h>
19 #include <asm/arch-ns9xxx/regs-mem.h>
20 #include <asm/arch-ns9xxx/regs-bbu.h>
21 #include <asm/arch-ns9xxx/regs-board-a9m9750dev.h>
23 #include "board-a9m9750dev.h"
25 static struct map_desc board_a9m9750dev_io_desc
[] __initdata
= {
27 .virtual = io_p2v(NS9XXX_CSxSTAT_PHYS(0)),
28 .pfn
= __phys_to_pfn(NS9XXX_CSxSTAT_PHYS(0)),
29 .length
= NS9XXX_CS0STAT_LENGTH
,
34 void __init
board_a9m9750dev_map_io(void)
36 iotable_init(board_a9m9750dev_io_desc
,
37 ARRAY_SIZE(board_a9m9750dev_io_desc
));
40 static void a9m9750dev_fpga_ack_irq(unsigned int irq
)
45 static void a9m9750dev_fpga_mask_irq(unsigned int irq
)
47 FPGA_IER
&= ~(1 << (irq
- FPGA_IRQ(0)));
50 static void a9m9750dev_fpga_maskack_irq(unsigned int irq
)
52 a9m9750dev_fpga_mask_irq(irq
);
53 a9m9750dev_fpga_ack_irq(irq
);
56 static void a9m9750dev_fpga_unmask_irq(unsigned int irq
)
58 FPGA_IER
|= 1 << (irq
- FPGA_IRQ(0));
61 static struct irq_chip a9m9750dev_fpga_chip
= {
62 .ack
= a9m9750dev_fpga_ack_irq
,
63 .mask
= a9m9750dev_fpga_mask_irq
,
64 .mask_ack
= a9m9750dev_fpga_maskack_irq
,
65 .unmask
= a9m9750dev_fpga_unmask_irq
,
68 static void a9m9750dev_fpga_demux_handler(unsigned int irq
,
69 struct irq_desc
*desc
)
74 int irqno
= fls(stat
) - 1;
76 stat
&= ~(1 << irqno
);
78 desc
= irq_desc
+ FPGA_IRQ(irqno
);
80 desc_handle_irq(irqno
, desc
);
84 void __init
board_a9m9750dev_init_irq(void)
90 * configure gpio for IRQ_EXT2
91 * use GPIO 11, because GPIO 32 is used for the LCD
93 /* XXX: proper GPIO handling */
96 for (i
= FPGA_IRQ(0); i
<= FPGA_IRQ(7); ++i
) {
97 set_irq_chip(i
, &a9m9750dev_fpga_chip
);
98 set_irq_handler(i
, handle_level_irq
);
99 set_irq_flags(i
, IRQF_VALID
);
102 /* IRQ_EXT2: level sensitive + active low */
104 REGSET(reg
, SYS_EIC
, PLTY
, AL
);
105 REGSET(reg
, SYS_EIC
, LVEDG
, LEVEL
);
108 set_irq_chained_handler(IRQ_EXT2
,
109 a9m9750dev_fpga_demux_handler
);
112 static struct plat_serial8250_port board_a9m9750dev_serial8250_port
[] = {
114 .iobase
= FPGA_UARTA_BASE
,
115 .membase
= (unsigned char*)FPGA_UARTA_BASE
,
116 .mapbase
= FPGA_UARTA_BASE
,
117 .irq
= IRQ_FPGA_UARTA
,
121 .flags
= UPF_BOOT_AUTOCONF
| UPF_SHARE_IRQ
,
123 .iobase
= FPGA_UARTB_BASE
,
124 .membase
= (unsigned char*)FPGA_UARTB_BASE
,
125 .mapbase
= FPGA_UARTB_BASE
,
126 .irq
= IRQ_FPGA_UARTB
,
130 .flags
= UPF_BOOT_AUTOCONF
| UPF_SHARE_IRQ
,
132 .iobase
= FPGA_UARTC_BASE
,
133 .membase
= (unsigned char*)FPGA_UARTC_BASE
,
134 .mapbase
= FPGA_UARTC_BASE
,
135 .irq
= IRQ_FPGA_UARTC
,
139 .flags
= UPF_BOOT_AUTOCONF
| UPF_SHARE_IRQ
,
141 .iobase
= FPGA_UARTD_BASE
,
142 .membase
= (unsigned char*)FPGA_UARTD_BASE
,
143 .mapbase
= FPGA_UARTD_BASE
,
144 .irq
= IRQ_FPGA_UARTD
,
148 .flags
= UPF_BOOT_AUTOCONF
| UPF_SHARE_IRQ
,
154 static struct platform_device board_a9m9750dev_serial_device
= {
155 .name
= "serial8250",
157 .platform_data
= board_a9m9750dev_serial8250_port
,
161 static struct platform_device
*board_a9m9750dev_devices
[] __initdata
= {
162 &board_a9m9750dev_serial_device
,
165 void __init
board_a9m9750dev_init_machine(void)
169 /* setup static CS0: memory base ... */
170 REGSETIM(SYS_SMCSSMB(0), SYS_SMCSSMB
, CSxB
,
171 NS9XXX_CSxSTAT_PHYS(0) >> 12);
174 reg
= SYS_SMCSSMM(0);
175 REGSETIM(reg
, SYS_SMCSSMM
, CSxM
, 0xfffff);
176 REGSET(reg
, SYS_SMCSSMM
, CSEx
, EN
);
177 SYS_SMCSSMM(0) = reg
;
179 /* setup static CS0: memory configuration */
181 REGSET(reg
, MEM_SMC
, WSMC
, OFF
);
182 REGSET(reg
, MEM_SMC
, BSMC
, OFF
);
183 REGSET(reg
, MEM_SMC
, EW
, OFF
);
184 REGSET(reg
, MEM_SMC
, PB
, 1);
185 REGSET(reg
, MEM_SMC
, PC
, AL
);
186 REGSET(reg
, MEM_SMC
, PM
, DIS
);
187 REGSET(reg
, MEM_SMC
, MW
, 8);
190 /* setup static CS0: timing */
196 platform_add_devices(board_a9m9750dev_devices
,
197 ARRAY_SIZE(board_a9m9750dev_devices
));