net: net_secret should not depend on TCP
[linux/fpc-iii.git] / arch / mips / sni / pcit.c
blob05bb51676e82e5649d3d37b0c1f0ab4735417219
1 /*
2 * PCI Tower specific code
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
6 * for more details.
8 * Copyright (C) 2006 Thomas Bogendoerfer (tsbogend@alpha.franken.de)
9 */
11 #include <linux/init.h>
12 #include <linux/interrupt.h>
13 #include <linux/irq.h>
14 #include <linux/pci.h>
15 #include <linux/serial_8250.h>
17 #include <asm/sni.h>
18 #include <asm/time.h>
19 #include <asm/irq_cpu.h>
22 #define PORT(_base,_irq) \
23 { \
24 .iobase = _base, \
25 .irq = _irq, \
26 .uartclk = 1843200, \
27 .iotype = UPIO_PORT, \
28 .flags = UPF_BOOT_AUTOCONF, \
31 static struct plat_serial8250_port pcit_data[] = {
32 PORT(0x3f8, 0),
33 PORT(0x2f8, 3),
34 { },
37 static struct platform_device pcit_serial8250_device = {
38 .name = "serial8250",
39 .id = PLAT8250_DEV_PLATFORM,
40 .dev = {
41 .platform_data = pcit_data,
45 static struct plat_serial8250_port pcit_cplus_data[] = {
46 PORT(0x3f8, 0),
47 PORT(0x2f8, 3),
48 PORT(0x3e8, 4),
49 PORT(0x2e8, 3),
50 { },
53 static struct platform_device pcit_cplus_serial8250_device = {
54 .name = "serial8250",
55 .id = PLAT8250_DEV_PLATFORM,
56 .dev = {
57 .platform_data = pcit_cplus_data,
61 static struct resource pcit_cmos_rsrc[] = {
63 .start = 0x70,
64 .end = 0x71,
65 .flags = IORESOURCE_IO
68 .start = 8,
69 .end = 8,
70 .flags = IORESOURCE_IRQ
74 static struct platform_device pcit_cmos_device = {
75 .name = "rtc_cmos",
76 .num_resources = ARRAY_SIZE(pcit_cmos_rsrc),
77 .resource = pcit_cmos_rsrc
80 static struct platform_device pcit_pcspeaker_pdev = {
81 .name = "pcspkr",
82 .id = -1,
85 static struct resource sni_io_resource = {
86 .start = 0x00000000UL,
87 .end = 0x03bfffffUL,
88 .name = "PCIT IO",
89 .flags = IORESOURCE_IO,
92 static struct resource pcit_io_resources[] = {
94 .start = 0x00,
95 .end = 0x1f,
96 .name = "dma1",
97 .flags = IORESOURCE_BUSY
98 }, {
99 .start = 0x40,
100 .end = 0x5f,
101 .name = "timer",
102 .flags = IORESOURCE_BUSY
103 }, {
104 .start = 0x60,
105 .end = 0x6f,
106 .name = "keyboard",
107 .flags = IORESOURCE_BUSY
108 }, {
109 .start = 0x80,
110 .end = 0x8f,
111 .name = "dma page reg",
112 .flags = IORESOURCE_BUSY
113 }, {
114 .start = 0xc0,
115 .end = 0xdf,
116 .name = "dma2",
117 .flags = IORESOURCE_BUSY
118 }, {
119 .start = 0xcf8,
120 .end = 0xcfb,
121 .name = "PCI config addr",
122 .flags = IORESOURCE_BUSY
123 }, {
124 .start = 0xcfc,
125 .end = 0xcff,
126 .name = "PCI config data",
127 .flags = IORESOURCE_BUSY
131 static void __init sni_pcit_resource_init(void)
133 int i;
135 /* request I/O space for devices used on all i[345]86 PCs */
136 for (i = 0; i < ARRAY_SIZE(pcit_io_resources); i++)
137 request_resource(&sni_io_resource, pcit_io_resources + i);
141 extern struct pci_ops sni_pcit_ops;
143 #ifdef CONFIG_PCI
144 static struct resource sni_mem_resource = {
145 .start = 0x18000000UL,
146 .end = 0x1fbfffffUL,
147 .name = "PCIT PCI MEM",
148 .flags = IORESOURCE_MEM
151 static struct pci_controller sni_pcit_controller = {
152 .pci_ops = &sni_pcit_ops,
153 .mem_resource = &sni_mem_resource,
154 .mem_offset = 0x00000000UL,
155 .io_resource = &sni_io_resource,
156 .io_offset = 0x00000000UL,
157 .io_map_base = SNI_PORT_BASE
159 #endif /* CONFIG_PCI */
161 static void enable_pcit_irq(struct irq_data *d)
163 u32 mask = 1 << (d->irq - SNI_PCIT_INT_START + 24);
165 *(volatile u32 *)SNI_PCIT_INT_REG |= mask;
168 void disable_pcit_irq(struct irq_data *d)
170 u32 mask = 1 << (d->irq - SNI_PCIT_INT_START + 24);
172 *(volatile u32 *)SNI_PCIT_INT_REG &= ~mask;
175 static struct irq_chip pcit_irq_type = {
176 .name = "PCIT",
177 .irq_mask = disable_pcit_irq,
178 .irq_unmask = enable_pcit_irq,
181 static void pcit_hwint1(void)
183 u32 pending = *(volatile u32 *)SNI_PCIT_INT_REG;
184 int irq;
186 clear_c0_status(IE_IRQ1);
187 irq = ffs((pending >> 16) & 0x7f);
189 if (likely(irq > 0))
190 do_IRQ(irq + SNI_PCIT_INT_START - 1);
191 set_c0_status(IE_IRQ1);
194 static void pcit_hwint0(void)
196 u32 pending = *(volatile u32 *)SNI_PCIT_INT_REG;
197 int irq;
199 clear_c0_status(IE_IRQ0);
200 irq = ffs((pending >> 16) & 0x3f);
202 if (likely(irq > 0))
203 do_IRQ(irq + SNI_PCIT_INT_START - 1);
204 set_c0_status(IE_IRQ0);
207 static void sni_pcit_hwint(void)
209 u32 pending = read_c0_cause() & read_c0_status();
211 if (pending & C_IRQ1)
212 pcit_hwint1();
213 else if (pending & C_IRQ2)
214 do_IRQ(MIPS_CPU_IRQ_BASE + 4);
215 else if (pending & C_IRQ3)
216 do_IRQ(MIPS_CPU_IRQ_BASE + 5);
217 else if (pending & C_IRQ5)
218 do_IRQ(MIPS_CPU_IRQ_BASE + 7);
221 static void sni_pcit_hwint_cplus(void)
223 u32 pending = read_c0_cause() & read_c0_status();
225 if (pending & C_IRQ0)
226 pcit_hwint0();
227 else if (pending & C_IRQ1)
228 do_IRQ(MIPS_CPU_IRQ_BASE + 3);
229 else if (pending & C_IRQ2)
230 do_IRQ(MIPS_CPU_IRQ_BASE + 4);
231 else if (pending & C_IRQ3)
232 do_IRQ(MIPS_CPU_IRQ_BASE + 5);
233 else if (pending & C_IRQ5)
234 do_IRQ(MIPS_CPU_IRQ_BASE + 7);
237 void __init sni_pcit_irq_init(void)
239 int i;
241 mips_cpu_irq_init();
242 for (i = SNI_PCIT_INT_START; i <= SNI_PCIT_INT_END; i++)
243 irq_set_chip_and_handler(i, &pcit_irq_type, handle_level_irq);
244 *(volatile u32 *)SNI_PCIT_INT_REG = 0;
245 sni_hwint = sni_pcit_hwint;
246 change_c0_status(ST0_IM, IE_IRQ1);
247 setup_irq(SNI_PCIT_INT_START + 6, &sni_isa_irq);
250 void __init sni_pcit_cplus_irq_init(void)
252 int i;
254 mips_cpu_irq_init();
255 for (i = SNI_PCIT_INT_START; i <= SNI_PCIT_INT_END; i++)
256 irq_set_chip_and_handler(i, &pcit_irq_type, handle_level_irq);
257 *(volatile u32 *)SNI_PCIT_INT_REG = 0x40000000;
258 sni_hwint = sni_pcit_hwint_cplus;
259 change_c0_status(ST0_IM, IE_IRQ0);
260 setup_irq(MIPS_CPU_IRQ_BASE + 3, &sni_isa_irq);
263 void __init sni_pcit_init(void)
265 ioport_resource.end = sni_io_resource.end;
266 #ifdef CONFIG_PCI
267 PCIBIOS_MIN_IO = 0x9000;
268 register_pci_controller(&sni_pcit_controller);
269 #endif
270 sni_pcit_resource_init();
273 static int __init snirm_pcit_setup_devinit(void)
275 switch (sni_brd_type) {
276 case SNI_BRD_PCI_TOWER:
277 platform_device_register(&pcit_serial8250_device);
278 platform_device_register(&pcit_cmos_device);
279 platform_device_register(&pcit_pcspeaker_pdev);
280 break;
282 case SNI_BRD_PCI_TOWER_CPLUS:
283 platform_device_register(&pcit_cplus_serial8250_device);
284 platform_device_register(&pcit_cmos_device);
285 platform_device_register(&pcit_pcspeaker_pdev);
286 break;
288 return 0;
291 device_initcall(snirm_pcit_setup_devinit);