1 /*
2  * arch/arm/mach-ixp2000/ixdp2x00.c
3  *
4  * Code common to IXDP2400 and IXDP2800 platforms.
5  *
6  * Original Author: Naeem Afzal <naeem.m.afzal@intel.com>
7  * Maintainer: Deepak Saxena <dsaxena@plexity.net>
8  *
9  * Copyright (C) 2002 Intel Corp.
10  * Copyright (C) 2003-2004 MontaVista Software, Inc.
11  *
12  *  This program is free software; you can redistribute  it and/or modify it
13  *  under  the terms of  the GNU General  Public License as published by the
14  *  Free Software Foundation;  either version 2 of the  License, or (at your
15  *  option) any later version.
16  */
17 #include <linux/gpio.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/mm.h>
21 #include <linux/sched.h>
22 #include <linux/interrupt.h>
23 #include <linux/platform_device.h>
24 #include <linux/bitops.h>
25 #include <linux/pci.h>
26 #include <linux/ioport.h>
27 #include <linux/delay.h>
28 #include <linux/io.h>
29 
30 #include <asm/irq.h>
31 #include <asm/pgtable.h>
32 #include <asm/page.h>
33 #include <mach/hardware.h>
34 #include <asm/mach-types.h>
35 
36 #include <asm/mach/pci.h>
37 #include <asm/mach/map.h>
38 #include <asm/mach/irq.h>
39 #include <asm/mach/time.h>
40 #include <asm/mach/flash.h>
41 #include <asm/mach/arch.h>
42 
43 #include <mach/gpio-ixp2000.h>
44 
45 /*************************************************************************
46  * IXDP2x00 IRQ Initialization
47  *************************************************************************/
48 static volatile unsigned long *board_irq_mask;
49 static volatile unsigned long *board_irq_stat;
50 static unsigned long board_irq_count;
51 
52 #ifdef CONFIG_ARCH_IXDP2400
53 /*
54  * Slowport configuration for accessing CPLD registers on IXDP2x00
55  */
56 static struct slowport_cfg slowport_cpld_cfg = {
57 	.CCR =	SLOWPORT_CCR_DIV_2,
58 	.WTC = 0x00000070,
59 	.RTC = 0x00000070,
60 	.PCR = SLOWPORT_MODE_FLASH,
61 	.ADC = SLOWPORT_ADDR_WIDTH_24 | SLOWPORT_DATA_WIDTH_8
62 };
63 #endif
64 
ixdp2x00_irq_mask(struct irq_data * d)65 static void ixdp2x00_irq_mask(struct irq_data *d)
66 {
67 	unsigned long dummy;
68 	static struct slowport_cfg old_cfg;
69 
70 	/*
71 	 * This is ugly in common code but really don't know
72 	 * of a better way to handle it. :(
73 	 */
74 #ifdef CONFIG_ARCH_IXDP2400
75 	if (machine_is_ixdp2400())
76 		ixp2000_acquire_slowport(&slowport_cpld_cfg, &old_cfg);
77 #endif
78 
79 	dummy = *board_irq_mask;
80 	dummy |=  IXP2000_BOARD_IRQ_MASK(d->irq);
81 	ixp2000_reg_wrb(board_irq_mask, dummy);
82 
83 #ifdef CONFIG_ARCH_IXDP2400
84 	if (machine_is_ixdp2400())
85 		ixp2000_release_slowport(&old_cfg);
86 #endif
87 }
88 
ixdp2x00_irq_unmask(struct irq_data * d)89 static void ixdp2x00_irq_unmask(struct irq_data *d)
90 {
91 	unsigned long dummy;
92 	static struct slowport_cfg old_cfg;
93 
94 #ifdef CONFIG_ARCH_IXDP2400
95 	if (machine_is_ixdp2400())
96 		ixp2000_acquire_slowport(&slowport_cpld_cfg, &old_cfg);
97 #endif
98 
99 	dummy = *board_irq_mask;
100 	dummy &=  ~IXP2000_BOARD_IRQ_MASK(d->irq);
101 	ixp2000_reg_wrb(board_irq_mask, dummy);
102 
103 	if (machine_is_ixdp2400())
104 		ixp2000_release_slowport(&old_cfg);
105 }
106 
ixdp2x00_irq_handler(unsigned int irq,struct irq_desc * desc)107 static void ixdp2x00_irq_handler(unsigned int irq, struct irq_desc *desc)
108 {
109         volatile u32 ex_interrupt = 0;
110 	static struct slowport_cfg old_cfg;
111 	int i;
112 
113 	desc->irq_data.chip->irq_mask(&desc->irq_data);
114 
115 #ifdef CONFIG_ARCH_IXDP2400
116 	if (machine_is_ixdp2400())
117 		ixp2000_acquire_slowport(&slowport_cpld_cfg, &old_cfg);
118 #endif
119         ex_interrupt = *board_irq_stat & 0xff;
120 	if (machine_is_ixdp2400())
121 		ixp2000_release_slowport(&old_cfg);
122 
123 	if(!ex_interrupt) {
124 		printk(KERN_ERR "Spurious IXDP2x00 CPLD interrupt!\n");
125 		return;
126 	}
127 
128 	for(i = 0; i < board_irq_count; i++) {
129 		if(ex_interrupt & (1 << i))  {
130 			int cpld_irq = IXP2000_BOARD_IRQ(0) + i;
131 			generic_handle_irq(cpld_irq);
132 		}
133 	}
134 
135 	desc->irq_data.chip->irq_unmask(&desc->irq_data);
136 }
137 
138 static struct irq_chip ixdp2x00_cpld_irq_chip = {
139 	.irq_ack	= ixdp2x00_irq_mask,
140 	.irq_mask	= ixdp2x00_irq_mask,
141 	.irq_unmask	= ixdp2x00_irq_unmask
142 };
143 
ixdp2x00_init_irq(volatile unsigned long * stat_reg,volatile unsigned long * mask_reg,unsigned long nr_of_irqs)144 void __init ixdp2x00_init_irq(volatile unsigned long *stat_reg, volatile unsigned long *mask_reg, unsigned long nr_of_irqs)
145 {
146 	unsigned int irq;
147 
148 	ixp2000_init_irq();
149 
150 	if (!ixdp2x00_master_npu())
151 		return;
152 
153 	board_irq_stat = stat_reg;
154 	board_irq_mask = mask_reg;
155 	board_irq_count = nr_of_irqs;
156 
157 	*board_irq_mask = 0xffffffff;
158 
159 	for(irq = IXP2000_BOARD_IRQ(0); irq < IXP2000_BOARD_IRQ(board_irq_count); irq++) {
160 		irq_set_chip_and_handler(irq, &ixdp2x00_cpld_irq_chip,
161 					 handle_level_irq);
162 		set_irq_flags(irq, IRQF_VALID);
163 	}
164 
165 	/* Hook into PCI interrupt */
166 	irq_set_chained_handler(IRQ_IXP2000_PCIB, ixdp2x00_irq_handler);
167 }
168 
169 /*************************************************************************
170  * IXDP2x00 memory map
171  *************************************************************************/
172 static struct map_desc ixdp2x00_io_desc __initdata = {
173 	.virtual	= IXDP2X00_VIRT_CPLD_BASE,
174 	.pfn		= __phys_to_pfn(IXDP2X00_PHYS_CPLD_BASE),
175 	.length		= IXDP2X00_CPLD_SIZE,
176 	.type		= MT_DEVICE
177 };
178 
ixdp2x00_map_io(void)179 void __init ixdp2x00_map_io(void)
180 {
181 	ixp2000_map_io();
182 
183 	iotable_init(&ixdp2x00_io_desc, 1);
184 }
185 
186 /*************************************************************************
187  * IXDP2x00-common PCI init
188  *
189  * The IXDP2[48]00 has a horrid PCI bus layout. Basically the board
190  * contains two NPUs (ingress and egress) connected over PCI,  both running
191  * instances  of the kernel. So far so good. Peers on the PCI bus running
192  * Linux is a common design in telecom systems. The problem is that instead
193  * of all the devices being controlled by a single host, different
194  * devices are controlled by different NPUs on the same bus, leading to
195  * multiple hosts on the bus. The exact bus layout looks like:
196  *
197  *                   Bus 0
198  *    Master NPU <-------------------+-------------------> Slave NPU
199  *                                   |
200  *                                   |
201  *                                  P2P
202  *                                   |
203  *
204  *                  Bus 1            |
205  *               <--+------+---------+---------+------+-->
206  *                  |      |         |         |      |
207  *                  |      |         |         |      |
208  *             ... Dev    PMC       Media     Eth0   Eth1 ...
209  *
210  * The master controls all but Eth1, which is controlled by the
211  * slave. What this means is that the both the master and the slave
212  * have to scan the bus, but only one of them can enumerate the bus.
213  * In addition, after the bus is scanned, each kernel must remove
214  * the device(s) it does not control from the PCI dev list otherwise
215  * a driver on each NPU will try to manage it and we will have horrible
216  * conflicts. Oh..and the slave NPU needs to see the master NPU
217  * for Intel's drivers to work properly. Closed source drivers...
218  *
219  * The way we deal with this is fairly simple but ugly:
220  *
221  * 1) Let master scan and enumerate the bus completely.
222  * 2) Master deletes Eth1 from device list.
223  * 3) Slave scans bus and then deletes all but Eth1 (Eth0 on slave)
224  *    from device list.
225  * 4) Find HW designers and LART them.
226  *
227  * The boards also do not do normal PCI IRQ routing, or any sort of
228  * sensical  swizzling, so we just need to check where on the  bus a
229  * device sits and figure out to which CPLD pin the interrupt is routed.
230  * See ixdp2[48]00.c files.
231  *
232  *************************************************************************/
ixdp2x00_slave_pci_postinit(void)233 void ixdp2x00_slave_pci_postinit(void)
234 {
235 	struct pci_dev *dev;
236 
237 	/*
238 	 * Remove PMC device is there is one
239 	 */
240 	if((dev = pci_get_bus_and_slot(1, IXDP2X00_PMC_DEVFN))) {
241 		pci_stop_and_remove_bus_device(dev);
242 		pci_dev_put(dev);
243 	}
244 
245 	dev = pci_get_bus_and_slot(0, IXDP2X00_21555_DEVFN);
246 	pci_stop_and_remove_bus_device(dev);
247 	pci_dev_put(dev);
248 }
249 
250 /**************************************************************************
251  * IXDP2x00 Machine Setup
252  *************************************************************************/
253 static struct flash_platform_data ixdp2x00_platform_data = {
254 	.map_name	= "cfi_probe",
255 	.width		= 1,
256 };
257 
258 static struct ixp2000_flash_data ixdp2x00_flash_data = {
259 	.platform_data	= &ixdp2x00_platform_data,
260 	.nr_banks	= 1
261 };
262 
263 static struct resource ixdp2x00_flash_resource = {
264 	.start		= 0xc4000000,
265 	.end		= 0xc4000000 + 0x00ffffff,
266 	.flags		= IORESOURCE_MEM,
267 };
268 
269 static struct platform_device ixdp2x00_flash = {
270 	.name		= "IXP2000-Flash",
271 	.id		= 0,
272 	.dev		= {
273 		.platform_data = &ixdp2x00_flash_data,
274 	},
275 	.num_resources	= 1,
276 	.resource	= &ixdp2x00_flash_resource,
277 };
278 
279 static struct ixp2000_i2c_pins ixdp2x00_i2c_gpio_pins = {
280 	.sda_pin	= IXDP2X00_GPIO_SDA,
281 	.scl_pin	= IXDP2X00_GPIO_SCL,
282 };
283 
284 static struct platform_device ixdp2x00_i2c_controller = {
285 	.name		= "IXP2000-I2C",
286 	.id		= 0,
287 	.dev		= {
288 		.platform_data = &ixdp2x00_i2c_gpio_pins,
289 	},
290 	.num_resources	= 0
291 };
292 
293 static struct platform_device *ixdp2x00_devices[] __initdata = {
294 	&ixdp2x00_flash,
295 	&ixdp2x00_i2c_controller
296 };
297 
ixdp2x00_init_machine(void)298 void __init ixdp2x00_init_machine(void)
299 {
300 	gpio_line_set(IXDP2X00_GPIO_I2C_ENABLE, 1);
301 	gpio_line_config(IXDP2X00_GPIO_I2C_ENABLE, GPIO_OUT);
302 
303 	platform_add_devices(ixdp2x00_devices, ARRAY_SIZE(ixdp2x00_devices));
304 	ixp2000_uart_init();
305 }
306 
307