1 /* pci-vdk.c: MB93090-MB00 (VDK) PCI support
3 * Copyright (C) 2003, 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/types.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/pci.h>
16 #include <linux/init.h>
17 #include <linux/ioport.h>
18 #include <linux/delay.h>
20 #include <asm/segment.h>
22 #include <asm/mb-regs.h>
23 #include <asm/mb86943a.h>
26 unsigned int __nongpreldata pci_probe
= 1;
28 struct pci_ops
*__nongpreldata pci_root_ops
;
31 * The accessible PCI window does not cover the entire CPU address space, but
32 * there are devices we want to access outside of that window, so we need to
33 * insert specific PCI bus resources instead of using the platform-level bus
34 * resources directly for the PCI root bus.
36 * These are configured and inserted by pcibios_init() and are attached to the
37 * root bus by pcibios_fixup_bus().
39 static struct resource pci_ioport_resource
= {
42 .end
= IO_SPACE_LIMIT
,
43 .flags
= IORESOURCE_IO
,
46 static struct resource pci_iomem_resource
= {
50 .flags
= IORESOURCE_MEM
,
54 * Functions for accessing PCI configuration space
57 #define CONFIG_CMD(bus, dev, where) \
58 (0x80000000 | (bus->number << 16) | (devfn << 8) | (where & ~3))
60 #define __set_PciCfgAddr(A) writel((A), (volatile void __iomem *) __region_CS1 + 0x80)
62 #define __get_PciCfgDataB(A) readb((volatile void __iomem *) __region_CS1 + 0x88 + ((A) & 3))
63 #define __get_PciCfgDataW(A) readw((volatile void __iomem *) __region_CS1 + 0x88 + ((A) & 2))
64 #define __get_PciCfgDataL(A) readl((volatile void __iomem *) __region_CS1 + 0x88)
66 #define __set_PciCfgDataB(A,V) \
67 writeb((V), (volatile void __iomem *) __region_CS1 + 0x88 + (3 - ((A) & 3)))
69 #define __set_PciCfgDataW(A,V) \
70 writew((V), (volatile void __iomem *) __region_CS1 + 0x88 + (2 - ((A) & 2)))
72 #define __set_PciCfgDataL(A,V) \
73 writel((V), (volatile void __iomem *) __region_CS1 + 0x88)
75 #define __get_PciBridgeDataB(A) readb((volatile void __iomem *) __region_CS1 + 0x800 + (A))
76 #define __get_PciBridgeDataW(A) readw((volatile void __iomem *) __region_CS1 + 0x800 + (A))
77 #define __get_PciBridgeDataL(A) readl((volatile void __iomem *) __region_CS1 + 0x800 + (A))
79 #define __set_PciBridgeDataB(A,V) writeb((V), (volatile void __iomem *) __region_CS1 + 0x800 + (A))
80 #define __set_PciBridgeDataW(A,V) writew((V), (volatile void __iomem *) __region_CS1 + 0x800 + (A))
81 #define __set_PciBridgeDataL(A,V) writel((V), (volatile void __iomem *) __region_CS1 + 0x800 + (A))
83 static inline int __query(const struct pci_dev
*dev
)
85 // return dev->bus->number==0 && (dev->devfn==PCI_DEVFN(0,0));
86 // return dev->bus->number==1;
87 // return dev->bus->number==0 &&
88 // (dev->devfn==PCI_DEVFN(2,0) || dev->devfn==PCI_DEVFN(3,0));
92 /*****************************************************************************/
96 static int pci_frv_read_config(struct pci_bus
*bus
, unsigned int devfn
, int where
, int size
,
101 if (bus
->number
== 0 && devfn
== PCI_DEVFN(0, 0)) {
102 _value
= __get_PciBridgeDataL(where
& ~3);
105 __set_PciCfgAddr(CONFIG_CMD(bus
, devfn
, where
));
106 _value
= __get_PciCfgDataL(where
& ~3);
111 _value
= _value
>> ((where
& 3) * 8);
115 _value
= _value
>> ((where
& 2) * 8);
126 return PCIBIOS_SUCCESSFUL
;
129 static int pci_frv_write_config(struct pci_bus
*bus
, unsigned int devfn
, int where
, int size
,
134 if (bus
->number
== 0 && devfn
== PCI_DEVFN(0, 0)) {
135 __set_PciBridgeDataB(where
, value
);
138 __set_PciCfgAddr(CONFIG_CMD(bus
, devfn
, where
));
139 __set_PciCfgDataB(where
, value
);
144 if (bus
->number
== 0 && devfn
== PCI_DEVFN(0, 0)) {
145 __set_PciBridgeDataW(where
, value
);
148 __set_PciCfgAddr(CONFIG_CMD(bus
, devfn
, where
));
149 __set_PciCfgDataW(where
, value
);
154 if (bus
->number
== 0 && devfn
== PCI_DEVFN(0, 0)) {
155 __set_PciBridgeDataL(where
, value
);
158 __set_PciCfgAddr(CONFIG_CMD(bus
, devfn
, where
));
159 __set_PciCfgDataL(where
, value
);
167 return PCIBIOS_SUCCESSFUL
;
170 static struct pci_ops pci_direct_frv
= {
172 pci_frv_write_config
,
176 * Before we decide to use direct hardware access mechanisms, we try to do some
177 * trivial checks to ensure it at least _seems_ to be working -- we just test
178 * whether bus 00 contains a host bridge (this is similar to checking
179 * techniques used in XFree86, but ours should be more reliable since we
180 * attempt to make use of direct access hints provided by the PCI BIOS).
182 * This should be close to trivial, but it isn't, because there are buggy
183 * chipsets (yes, you guessed it, by Intel and Compaq) that have no class ID.
185 static int __init
pci_sanity_check(struct pci_ops
*o
)
187 struct pci_bus bus
; /* Fake bus and device */
192 if (o
->read(&bus
, 0, PCI_VENDOR_ID
, 4, &id
) == PCIBIOS_SUCCESSFUL
) {
193 printk("PCI: VDK Bridge device:vendor: %08x\n", id
);
194 if (id
== 0x200e10cf)
198 printk("PCI: VDK Bridge: Sanity check failed\n");
202 static struct pci_ops
* __init
pci_check_direct(void)
206 local_irq_save(flags
);
208 /* check if access works */
209 if (pci_sanity_check(&pci_direct_frv
)) {
210 local_irq_restore(flags
);
211 printk("PCI: Using configuration frv\n");
212 // request_mem_region(0xBE040000, 256, "FRV bridge");
213 // request_mem_region(0xBFFFFFF4, 12, "PCI frv");
214 return &pci_direct_frv
;
217 local_irq_restore(flags
);
222 * Exceptions for specific devices. Usually work-arounds for fatal design flaws.
225 static void __init
pci_fixup_umc_ide(struct pci_dev
*d
)
228 * UM8886BF IDE controller sets region type bits incorrectly,
229 * therefore they look like memory despite of them being I/O.
233 printk("PCI: Fixing base address flags for device %s\n", pci_name(d
));
235 d
->resource
[i
].flags
|= PCI_BASE_ADDRESS_SPACE_IO
;
238 static void pci_fixup_ide_bases(struct pci_dev
*d
)
243 * PCI IDE controllers use non-standard I/O port decoding, respect it.
245 if ((d
->class >> 8) != PCI_CLASS_STORAGE_IDE
)
247 printk("PCI: IDE base address fixup for %s\n", pci_name(d
));
249 struct resource
*r
= &d
->resource
[i
];
250 if ((r
->start
& ~0x80) == 0x374) {
257 static void pci_fixup_ide_trash(struct pci_dev
*d
)
262 * There exist PCI IDE controllers which have utter garbage
263 * in first four base registers. Ignore that.
265 printk("PCI: IDE base address trash cleared for %s\n", pci_name(d
));
267 d
->resource
[i
].start
= d
->resource
[i
].end
= d
->resource
[i
].flags
= 0;
270 static void pci_fixup_latency(struct pci_dev
*d
)
273 * SiS 5597 and 5598 chipsets require latency timer set to
274 * at most 32 to avoid lockups.
276 DBG("PCI: Setting max latency to 32\n");
277 pcibios_max_latency
= 32;
280 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_UMC
, PCI_DEVICE_ID_UMC_UM8886BF
, pci_fixup_umc_ide
);
281 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SI
, PCI_DEVICE_ID_SI_5513
, pci_fixup_ide_trash
);
282 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SI
, PCI_DEVICE_ID_SI_5597
, pci_fixup_latency
);
283 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SI
, PCI_DEVICE_ID_SI_5598
, pci_fixup_latency
);
284 DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID
, PCI_ANY_ID
, pci_fixup_ide_bases
);
287 * Called after each bus is probed, but before its children
291 void pcibios_fixup_bus(struct pci_bus
*bus
)
294 printk("### PCIBIOS_FIXUP_BUS(%d)\n",bus
->number
);
297 pci_read_bridge_bases(bus
);
299 if (bus
->number
== 0) {
301 list_for_each_entry(dev
, &bus
->devices
, bus_list
) {
302 if (dev
->devfn
== 0) {
303 dev
->resource
[0].start
= 0;
304 dev
->resource
[0].end
= 0;
311 * Initialization. Try all known PCI access methods. Note that we support
312 * using both PCI BIOS and direct access: in such cases, we use I/O ports
313 * to access config space, but we still keep BIOS order of cards to be
314 * compatible with 2.0.X. This should go away some day.
317 int __init
pcibios_init(void)
319 struct pci_ops
*dir
= NULL
;
320 LIST_HEAD(resources
);
322 if (!mb93090_mb00_detected
)
325 __reg_MB86943_sl_ctl
|= MB86943_SL_CTL_DRCT_MASTER_SWAP
| MB86943_SL_CTL_DRCT_SLAVE_SWAP
;
327 __reg_MB86943_ecs_base(1) = ((__region_CS2
+ 0x01000000) >> 9) | 0x08000000;
328 __reg_MB86943_ecs_base(2) = ((__region_CS2
+ 0x00000000) >> 9) | 0x08000000;
330 *(volatile uint32_t *) (__region_CS1
+ 0x848) = 0xe0000000;
331 *(volatile uint32_t *) (__region_CS1
+ 0x8b8) = 0x00000000;
333 __reg_MB86943_sl_pci_io_base
= (__region_CS2
+ 0x04000000) >> 9;
334 __reg_MB86943_sl_pci_mem_base
= (__region_CS2
+ 0x08000000) >> 9;
335 __reg_MB86943_pci_sl_io_base
= __region_CS2
+ 0x04000000;
336 __reg_MB86943_pci_sl_mem_base
= __region_CS2
+ 0x08000000;
339 /* enable PCI arbitration */
340 __reg_MB86943_pci_arbiter
= MB86943_PCIARB_EN
;
342 pci_ioport_resource
.start
= (__reg_MB86943_sl_pci_io_base
<< 9) & 0xfffffc00;
343 pci_ioport_resource
.end
= (__reg_MB86943_sl_pci_io_range
<< 9) | 0x3ff;
344 pci_ioport_resource
.end
+= pci_ioport_resource
.start
;
346 printk("PCI IO window: %08llx-%08llx\n",
347 (unsigned long long) pci_ioport_resource
.start
,
348 (unsigned long long) pci_ioport_resource
.end
);
350 pci_iomem_resource
.start
= (__reg_MB86943_sl_pci_mem_base
<< 9) & 0xfffffc00;
351 pci_iomem_resource
.end
= (__reg_MB86943_sl_pci_mem_range
<< 9) | 0x3ff;
352 pci_iomem_resource
.end
+= pci_iomem_resource
.start
;
354 /* Reserve somewhere to write to flush posted writes. This is used by
355 * __flush_PCI_writes() from asm/io.h to force the write FIFO in the
356 * CPU-PCI bridge to flush as this doesn't happen automatically when a
357 * read is performed on the MB93090 development kit motherboard.
359 pci_iomem_resource
.start
+= 0x400;
361 printk("PCI MEM window: %08llx-%08llx\n",
362 (unsigned long long) pci_iomem_resource
.start
,
363 (unsigned long long) pci_iomem_resource
.end
);
364 printk("PCI DMA memory: %08lx-%08lx\n",
365 dma_coherent_mem_start
, dma_coherent_mem_end
);
367 if (insert_resource(&iomem_resource
, &pci_iomem_resource
) < 0)
368 panic("Unable to insert PCI IOMEM resource\n");
369 if (insert_resource(&ioport_resource
, &pci_ioport_resource
) < 0)
370 panic("Unable to insert PCI IOPORT resource\n");
375 dir
= pci_check_direct();
379 printk("PCI: No PCI bus detected\n");
383 printk("PCI: Probing PCI hardware\n");
384 pci_add_resource(&resources
, &pci_ioport_resource
);
385 pci_add_resource(&resources
, &pci_iomem_resource
);
386 pci_scan_root_bus(NULL
, 0, pci_root_ops
, NULL
, &resources
);
389 pcibios_fixup_irqs();
390 pcibios_resource_survey();
395 arch_initcall(pcibios_init
);
397 char * __init
pcibios_setup(char *str
)
399 if (!strcmp(str
, "off")) {
406 int pcibios_enable_device(struct pci_dev
*dev
, int mask
)
410 if ((err
= pci_enable_resources(dev
, mask
)) < 0)
412 if (!dev
->msi_enabled
)
413 pcibios_enable_irq(dev
);