2 * linux/arch/arm/common/it8152.c
4 * Copyright Compulab Ltd, 2002-2007
5 * Mike Rapoport <mike@compulab.co.il>
7 * The DMA bouncing part is taken from arch/arm/mach-ixp4xx/common-pci.c
8 * (see this file for respective copyrights)
10 * Thanks to Guennadi Liakhovetski <gl@dsa-ac.de> for IRQ enumberation
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
18 #include <linux/sched.h>
19 #include <linux/kernel.h>
20 #include <linux/pci.h>
21 #include <linux/ptrace.h>
22 #include <linux/interrupt.h>
24 #include <linux/slab.h>
25 #include <linux/init.h>
26 #include <linux/ioport.h>
27 #include <linux/irq.h>
30 #include <asm/mach/pci.h>
31 #include <asm/hardware/it8152.h>
35 static void it8152_mask_irq(unsigned int irq
)
37 if (irq
>= IT8152_LD_IRQ(0)) {
38 __raw_writel((__raw_readl(IT8152_INTC_LDCNIMR
) |
39 (1 << (irq
- IT8152_LD_IRQ(0)))),
41 } else if (irq
>= IT8152_LP_IRQ(0)) {
42 __raw_writel((__raw_readl(IT8152_INTC_LPCNIMR
) |
43 (1 << (irq
- IT8152_LP_IRQ(0)))),
45 } else if (irq
>= IT8152_PD_IRQ(0)) {
46 __raw_writel((__raw_readl(IT8152_INTC_PDCNIMR
) |
47 (1 << (irq
- IT8152_PD_IRQ(0)))),
52 static void it8152_unmask_irq(unsigned int irq
)
54 if (irq
>= IT8152_LD_IRQ(0)) {
55 __raw_writel((__raw_readl(IT8152_INTC_LDCNIMR
) &
56 ~(1 << (irq
- IT8152_LD_IRQ(0)))),
58 } else if (irq
>= IT8152_LP_IRQ(0)) {
59 __raw_writel((__raw_readl(IT8152_INTC_LPCNIMR
) &
60 ~(1 << (irq
- IT8152_LP_IRQ(0)))),
62 } else if (irq
>= IT8152_PD_IRQ(0)) {
63 __raw_writel((__raw_readl(IT8152_INTC_PDCNIMR
) &
64 ~(1 << (irq
- IT8152_PD_IRQ(0)))),
69 static inline void it8152_irq(int irq
)
71 struct irq_desc
*desc
;
73 printk(KERN_DEBUG
"===> %s: irq=%d\n", __FUNCTION__
, irq
);
75 desc
= irq_desc
+ irq
;
76 desc_handle_irq(irq
, desc
);
79 static struct irq_chip it8152_irq_chip
= {
81 .ack
= it8152_mask_irq
,
82 .mask
= it8152_mask_irq
,
83 .unmask
= it8152_unmask_irq
,
86 void it8152_init_irq(void)
90 __raw_writel((0xffff), IT8152_INTC_PDCNIMR
);
91 __raw_writel((0), IT8152_INTC_PDCNIRR
);
92 __raw_writel((0xffff), IT8152_INTC_LPCNIMR
);
93 __raw_writel((0), IT8152_INTC_LPCNIRR
);
94 __raw_writel((0xffff), IT8152_INTC_LDCNIMR
);
95 __raw_writel((0), IT8152_INTC_LDCNIRR
);
97 for (irq
= IT8152_IRQ(0); irq
<= IT8152_LAST_IRQ
; irq
++) {
98 set_irq_chip(irq
, &it8152_irq_chip
);
99 set_irq_handler(irq
, handle_level_irq
);
100 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
104 void it8152_irq_demux(unsigned int irq
, struct irq_desc
*desc
)
106 int bits_pd
, bits_lp
, bits_ld
;
109 printk(KERN_DEBUG
"=> %s: irq = %d\n", __FUNCTION__
, irq
);
113 bits_pd
= __raw_readl(IT8152_INTC_PDCNIRR
);
114 bits_lp
= __raw_readl(IT8152_INTC_LPCNIRR
);
115 bits_ld
= __raw_readl(IT8152_INTC_LDCNIRR
);
118 __raw_writel((~bits_pd
), IT8152_INTC_PDCNIRR
);
119 __raw_writel((~bits_lp
), IT8152_INTC_LPCNIRR
);
120 __raw_writel((~bits_ld
), IT8152_INTC_LDCNIRR
);
122 if (!(bits_ld
| bits_lp
| bits_pd
)) {
123 /* Re-read to guarantee, that there was a moment of
124 time, when they all three were 0. */
125 bits_pd
= __raw_readl(IT8152_INTC_PDCNIRR
);
126 bits_lp
= __raw_readl(IT8152_INTC_LPCNIRR
);
127 if (!(bits_ld
| bits_lp
| bits_pd
))
131 bits_pd
&= ((1 << IT8152_PD_IRQ_COUNT
) - 1);
134 it8152_irq(IT8152_PD_IRQ(i
));
135 bits_pd
&= ~(1 << i
);
138 bits_lp
&= ((1 << IT8152_LP_IRQ_COUNT
) - 1);
141 it8152_irq(IT8152_LP_IRQ(i
));
142 bits_lp
&= ~(1 << i
);
145 bits_ld
&= ((1 << IT8152_LD_IRQ_COUNT
) - 1);
148 it8152_irq(IT8152_LD_IRQ(i
));
149 bits_ld
&= ~(1 << i
);
154 /* mapping for on-chip devices */
155 int __init
it8152_pci_map_irq(struct pci_dev
*dev
, u8 slot
, u8 pin
)
157 if ((dev
->vendor
== PCI_VENDOR_ID_ITE
) &&
158 (dev
->device
== PCI_DEVICE_ID_ITE_8152
)) {
159 if ((dev
->class >> 8) == PCI_CLASS_MULTIMEDIA_AUDIO
)
160 return IT8152_AUDIO_INT
;
161 if ((dev
->class >> 8) == PCI_CLASS_SERIAL_USB
)
162 return IT8152_USB_INT
;
163 if ((dev
->class >> 8) == PCI_CLASS_SYSTEM_DMA
)
164 return IT8152_CDMA_INT
;
170 static unsigned long it8152_pci_dev_base_address(struct pci_bus
*bus
,
173 unsigned long addr
= 0;
175 if (bus
->number
== 0) {
176 if (devfn
< PCI_DEVFN(MAX_SLOTS
, 0))
179 addr
= (bus
->number
<< 16) | (devfn
<< 8);
184 static int it8152_pci_read_config(struct pci_bus
*bus
,
185 unsigned int devfn
, int where
,
186 int size
, u32
*value
)
188 unsigned long addr
= it8152_pci_dev_base_address(bus
, devfn
);
194 __raw_writel((addr
+ where
), IT8152_PCI_CFG_ADDR
);
195 v
= (__raw_readl(IT8152_PCI_CFG_DATA
) >> (8 * (shift
)));
199 return PCIBIOS_SUCCESSFUL
;
202 static int it8152_pci_write_config(struct pci_bus
*bus
,
203 unsigned int devfn
, int where
,
206 unsigned long addr
= it8152_pci_dev_base_address(bus
, devfn
);
207 u32 v
, vtemp
, mask
= 0;
217 __raw_writel((addr
+ where
), IT8152_PCI_CFG_ADDR
);
218 vtemp
= __raw_readl(IT8152_PCI_CFG_DATA
);
221 vtemp
&= ~(mask
<< (8 * shift
));
225 v
= (value
<< (8 * shift
));
226 __raw_writel((addr
+ where
), IT8152_PCI_CFG_ADDR
);
227 __raw_writel((v
| vtemp
), IT8152_PCI_CFG_DATA
);
229 return PCIBIOS_SUCCESSFUL
;
232 static struct pci_ops it8152_ops
= {
233 .read
= it8152_pci_read_config
,
234 .write
= it8152_pci_write_config
,
237 static struct resource it8152_io
= {
238 .name
= "IT8152 PCI I/O region",
239 .flags
= IORESOURCE_IO
,
242 static struct resource it8152_mem
= {
243 .name
= "IT8152 PCI memory region",
246 .flags
= IORESOURCE_MEM
,
250 * The following functions are needed for DMA bouncing.
251 * ITE8152 chip can addrees up to 64MByte, so all the devices
252 * connected to ITE8152 (PCI and USB) should have limited DMA window
256 * Setup DMA mask to 64MB on devices connected to ITE8152. Ignore all
259 static int it8152_pci_platform_notify(struct device
*dev
)
261 if (dev
->bus
== &pci_bus_type
) {
263 *dev
->dma_mask
= (SZ_64M
- 1) | PHYS_OFFSET
;
264 dev
->coherent_dma_mask
= (SZ_64M
- 1) | PHYS_OFFSET
;
265 dmabounce_register_dev(dev
, 2048, 4096);
270 static int it8152_pci_platform_notify_remove(struct device
*dev
)
272 if (dev
->bus
== &pci_bus_type
)
273 dmabounce_unregister_dev(dev
);
278 int dma_needs_bounce(struct device
*dev
, dma_addr_t dma_addr
, size_t size
)
280 dev_dbg(dev
, "%s: dma_addr %08x, size %08x\n",
281 __FUNCTION__
, dma_addr
, size
);
282 return (dev
->bus
== &pci_bus_type
) &&
283 ((dma_addr
+ size
- PHYS_OFFSET
) >= SZ_64M
);
287 * We override these so we properly do dmabounce otherwise drivers
288 * are able to set the dma_mask to 0xffffffff and we can no longer
291 * We just return true on everyhing except for < 64MB in which case
292 * we will fail miseralby and die since we can't handle that case.
294 int pci_set_dma_mask(struct pci_dev
*dev
, u64 mask
)
296 printk(KERN_DEBUG
"%s: %s %llx\n",
297 __FUNCTION__
, dev
->dev
.bus_id
, mask
);
298 if (mask
>= PHYS_OFFSET
+ SZ_64M
- 1)
305 pci_set_consistent_dma_mask(struct pci_dev
*dev
, u64 mask
)
307 printk(KERN_DEBUG
"%s: %s %llx\n",
308 __FUNCTION__
, dev
->dev
.bus_id
, mask
);
309 if (mask
>= PHYS_OFFSET
+ SZ_64M
- 1)
315 int __init
it8152_pci_setup(int nr
, struct pci_sys_data
*sys
)
317 it8152_io
.start
= IT8152_IO_BASE
+ 0x12000;
318 it8152_io
.end
= IT8152_IO_BASE
+ 0x12000 + 0x100000;
320 sys
->mem_offset
= 0x10000000;
321 sys
->io_offset
= IT8152_IO_BASE
;
323 if (request_resource(&ioport_resource
, &it8152_io
)) {
324 printk(KERN_ERR
"PCI: unable to allocate IO region\n");
327 if (request_resource(&iomem_resource
, &it8152_mem
)) {
328 printk(KERN_ERR
"PCI: unable to allocate memory region\n");
332 sys
->resource
[0] = &it8152_io
;
333 sys
->resource
[1] = &it8152_mem
;
335 if (platform_notify
|| platform_notify_remove
) {
336 printk(KERN_ERR
"PCI: Can't use platform_notify\n");
340 platform_notify
= it8152_pci_platform_notify
;
341 platform_notify_remove
= it8152_pci_platform_notify_remove
;
346 release_resource(&it8152_io
);
348 release_resource(&it8152_mem
);
354 * If we set up a device for bus mastering, we need to check the latency
355 * timer as we don't have even crappy BIOSes to set it properly.
356 * The implementation is from arch/i386/pci/i386.c
358 unsigned int pcibios_max_latency
= 255;
360 void pcibios_set_master(struct pci_dev
*dev
)
364 /* no need to update on-chip OHCI controller */
365 if ((dev
->vendor
== PCI_VENDOR_ID_ITE
) &&
366 (dev
->device
== PCI_DEVICE_ID_ITE_8152
) &&
367 ((dev
->class >> 8) == PCI_CLASS_SERIAL_USB
))
370 pci_read_config_byte(dev
, PCI_LATENCY_TIMER
, &lat
);
372 lat
= (64 <= pcibios_max_latency
) ? 64 : pcibios_max_latency
;
373 else if (lat
> pcibios_max_latency
)
374 lat
= pcibios_max_latency
;
377 printk(KERN_DEBUG
"PCI: Setting latency timer of device %s to %d\n",
379 pci_write_config_byte(dev
, PCI_LATENCY_TIMER
, lat
);
383 struct pci_bus
* __init
it8152_pci_scan_bus(int nr
, struct pci_sys_data
*sys
)
385 return pci_scan_bus(nr
, &it8152_ops
, sys
);