2 * bios32.c - PCI BIOS functions for m68k systems.
4 * Written by Wout Klaren.
6 * Based on the DEC Alpha bios32.c by Dave Rusling and David Mosberger.
9 #include <linux/config.h>
10 #include <linux/init.h>
11 #include <linux/kernel.h>
14 # define DBG_DEVS(args) printk args
16 # define DBG_DEVS(args)
22 * PCI support for Linux/m68k. Currently only the Hades is supported.
24 * The support for PCI bridges in the DEC Alpha version has
25 * been removed in this version.
28 #include <linux/pci.h>
29 #include <linux/slab.h>
34 #include <asm/uaccess.h>
44 * Align VAL to ALIGN, which must be a power of two.
47 #define ALIGN(val,align) (((val) + ((align) - 1)) & ~((align) - 1))
50 * Offsets relative to the I/O and memory base addresses from where resources
54 #define IO_ALLOC_OFFSET 0x00004000
55 #define MEM_ALLOC_OFFSET 0x04000000
58 * Declarations of hardware specific initialisation functions.
61 extern struct pci_bus_info
*init_hades_pci(void);
64 * Bus info structure of the PCI bus. A pointer to this structure is
65 * put in the sysdata member of the pci_bus structure.
68 static struct pci_bus_info
*bus_info
;
70 static int pci_modify
= 1; /* If set, layout the PCI bus ourself. */
71 static int skip_vga
; /* If set do not modify base addresses
73 static int disable_pci_burst
; /* If set do not allow PCI bursts. */
75 static unsigned int io_base
;
76 static unsigned int mem_base
;
79 * static void disable_dev(struct pci_dev *dev)
81 * Disable PCI device DEV so that it does not respond to I/O or memory
86 * dev - device to disable.
89 static void __init
disable_dev(struct pci_dev
*dev
)
93 if (((dev
->class >> 8 == PCI_CLASS_NOT_DEFINED_VGA
) ||
94 (dev
->class >> 8 == PCI_CLASS_DISPLAY_VGA
) ||
95 (dev
->class >> 8 == PCI_CLASS_DISPLAY_XGA
)) && skip_vga
)
98 pci_read_config_word(dev
, PCI_COMMAND
, &cmd
);
100 cmd
&= (~PCI_COMMAND_IO
& ~PCI_COMMAND_MEMORY
& ~PCI_COMMAND_MASTER
);
101 pci_write_config_word(dev
, PCI_COMMAND
, cmd
);
105 * static void layout_dev(struct pci_dev *dev)
107 * Layout memory and I/O for a device.
111 * device - device to layout memory and I/O for.
114 static void __init
layout_dev(struct pci_dev
*dev
)
117 unsigned int base
, mask
, size
, reg
;
118 unsigned int alignto
;
122 * Skip video cards if requested.
125 if (((dev
->class >> 8 == PCI_CLASS_NOT_DEFINED_VGA
) ||
126 (dev
->class >> 8 == PCI_CLASS_DISPLAY_VGA
) ||
127 (dev
->class >> 8 == PCI_CLASS_DISPLAY_XGA
)) && skip_vga
)
130 pci_read_config_word(dev
, PCI_COMMAND
, &cmd
);
132 for (reg
= PCI_BASE_ADDRESS_0
, i
= 0; reg
<= PCI_BASE_ADDRESS_5
; reg
+= 4, i
++)
135 * Figure out how much space and of what type this
139 pci_write_config_dword(dev
, reg
, 0xffffffff);
140 pci_read_config_dword(dev
, reg
, &base
);
144 /* this base-address register is unused */
145 dev
->resource
[i
].start
= 0;
146 dev
->resource
[i
].end
= 0;
147 dev
->resource
[i
].flags
= 0;
152 * We've read the base address register back after
153 * writing all ones and so now we must decode it.
156 if (base
& PCI_BASE_ADDRESS_SPACE_IO
)
159 * I/O space base address register.
162 cmd
|= PCI_COMMAND_IO
;
164 base
&= PCI_BASE_ADDRESS_IO_MASK
;
165 mask
= (~base
<< 1) | 0x1;
166 size
= (mask
& base
) & 0xffffffff;
169 * Align to multiple of size of minimum base.
172 alignto
= max_t(unsigned int, 0x040, size
);
173 base
= ALIGN(io_base
, alignto
);
174 io_base
= base
+ size
;
175 pci_write_config_dword(dev
, reg
, base
| PCI_BASE_ADDRESS_SPACE_IO
);
177 dev
->resource
[i
].start
= base
;
178 dev
->resource
[i
].end
= dev
->resource
[i
].start
+ size
- 1;
179 dev
->resource
[i
].flags
= IORESOURCE_IO
| PCI_BASE_ADDRESS_SPACE_IO
;
181 DBG_DEVS(("layout_dev: IO address: %lX\n", base
));
188 * Memory space base address register.
191 cmd
|= PCI_COMMAND_MEMORY
;
192 type
= base
& PCI_BASE_ADDRESS_MEM_TYPE_MASK
;
193 base
&= PCI_BASE_ADDRESS_MEM_MASK
;
194 mask
= (~base
<< 1) | 0x1;
195 size
= (mask
& base
) & 0xffffffff;
198 case PCI_BASE_ADDRESS_MEM_TYPE_32
:
199 case PCI_BASE_ADDRESS_MEM_TYPE_64
:
202 case PCI_BASE_ADDRESS_MEM_TYPE_1M
:
203 printk("bios32 WARNING: slot %d, function %d "
204 "requests memory below 1MB---don't "
205 "know how to do that.\n",
206 PCI_SLOT(dev
->devfn
),
207 PCI_FUNC(dev
->devfn
));
212 * Align to multiple of size of minimum base.
215 alignto
= max_t(unsigned int, 0x1000, size
);
216 base
= ALIGN(mem_base
, alignto
);
217 mem_base
= base
+ size
;
218 pci_write_config_dword(dev
, reg
, base
);
220 dev
->resource
[i
].start
= base
;
221 dev
->resource
[i
].end
= dev
->resource
[i
].start
+ size
- 1;
222 dev
->resource
[i
].flags
= IORESOURCE_MEM
;
224 if (type
== PCI_BASE_ADDRESS_MEM_TYPE_64
)
227 * 64-bit address, set the highest 32 bits
232 pci_write_config_dword(dev
, reg
, 0);
235 dev
->resource
[i
].start
= 0;
236 dev
->resource
[i
].end
= 0;
237 dev
->resource
[i
].flags
= 0;
246 if (dev
->class >> 8 == PCI_CLASS_NOT_DEFINED
||
247 dev
->class >> 8 == PCI_CLASS_NOT_DEFINED_VGA
||
248 dev
->class >> 8 == PCI_CLASS_DISPLAY_VGA
||
249 dev
->class >> 8 == PCI_CLASS_DISPLAY_XGA
)
252 * All of these (may) have I/O scattered all around
253 * and may not use i/o-base address registers at all.
254 * So we just have to always enable I/O to these
257 cmd
|= PCI_COMMAND_IO
;
260 pci_write_config_word(dev
, PCI_COMMAND
, cmd
| PCI_COMMAND_MASTER
);
262 pci_write_config_byte(dev
, PCI_LATENCY_TIMER
, (disable_pci_burst
) ? 0 : 32);
264 if (bus_info
!= NULL
)
265 bus_info
->conf_device(dev
); /* Machine dependent configuration. */
267 DBG_DEVS(("layout_dev: bus %d slot 0x%x VID 0x%x DID 0x%x class 0x%x\n",
268 dev
->bus
->number
, PCI_SLOT(dev
->devfn
), dev
->vendor
, dev
->device
, dev
->class));
272 * static void layout_bus(struct pci_bus *bus)
274 * Layout memory and I/O for all devices on the given bus.
281 static void __init
layout_bus(struct pci_bus
*bus
)
283 unsigned int bio
, bmem
;
286 DBG_DEVS(("layout_bus: starting bus %d\n", bus
->number
));
288 if (!bus
->devices
&& !bus
->children
)
292 * Align the current bases on appropriate boundaries (4K for
293 * IO and 1MB for memory).
296 bio
= io_base
= ALIGN(io_base
, 4*KB
);
297 bmem
= mem_base
= ALIGN(mem_base
, 1*MB
);
300 * PCI devices might have been setup by a PCI BIOS emulation
301 * running under TOS. In these cases there is a
302 * window during which two devices may have an overlapping
303 * address range. To avoid this causing trouble, we first
304 * turn off the I/O and memory address decoders for all PCI
305 * devices. They'll be re-enabled only once all address
306 * decoders are programmed consistently.
309 DBG_DEVS(("layout_bus: disable_dev for bus %d\n", bus
->number
));
311 for (dev
= bus
->devices
; dev
; dev
= dev
->sibling
)
313 if ((dev
->class >> 16 != PCI_BASE_CLASS_BRIDGE
) ||
314 (dev
->class >> 8 == PCI_CLASS_BRIDGE_PCMCIA
))
319 * Allocate space to each device:
322 DBG_DEVS(("layout_bus: starting bus %d devices\n", bus
->number
));
324 for (dev
= bus
->devices
; dev
; dev
= dev
->sibling
)
326 if ((dev
->class >> 16 != PCI_BASE_CLASS_BRIDGE
) ||
327 (dev
->class >> 8 == PCI_CLASS_BRIDGE_PCMCIA
))
331 DBG_DEVS(("layout_bus: bus %d finished\n", bus
->number
));
335 * static void pcibios_fixup(void)
337 * Layout memory and I/O of all devices on the PCI bus if 'pci_modify' is
338 * true. This might be necessary because not every m68k machine with a PCI
339 * bus has a PCI BIOS. This function should be called right after
340 * pci_scan_bus() in pcibios_init().
343 static void __init
pcibios_fixup(void)
348 * Set base addresses for allocation of I/O and memory space.
351 io_base
= bus_info
->io_space
.start
+ IO_ALLOC_OFFSET
;
352 mem_base
= bus_info
->mem_space
.start
+ MEM_ALLOC_OFFSET
;
355 * Scan the tree, allocating PCI memory and I/O space.
358 layout_bus(pci_bus_b(pci_root
.next
));
362 * Fix interrupt assignments, etc.
365 bus_info
->fixup(pci_modify
);
369 * static void pcibios_claim_resources(struct pci_bus *bus)
371 * Claim all resources that are assigned to devices on the given bus.
378 static void __init
pcibios_claim_resources(struct pci_bus
*bus
)
385 for (dev
= bus
->devices
; (dev
!= NULL
); dev
= dev
->sibling
)
387 for (i
= 0; i
< PCI_NUM_RESOURCES
; i
++)
389 struct resource
*r
= &dev
->resource
[i
];
391 struct pci_bus_info
*bus_info
= (struct pci_bus_info
*) dev
->sysdata
;
393 if ((r
->start
== 0) || (r
->parent
!= NULL
))
396 if (r
->flags
& IORESOURCE_IO
)
397 pr
= &bus_info
->io_space
;
399 pr
= &bus_info
->mem_space
;
401 if (r
->flags
& IORESOURCE_IO
)
402 pr
= &ioport_resource
;
404 pr
= &iomem_resource
;
406 if (request_resource(pr
, r
) < 0)
408 printk(KERN_ERR
"PCI: Address space collision on region %d of device %s\n", i
, dev
->name
);
414 pcibios_claim_resources(bus
->children
);
421 * int pcibios_assign_resource(struct pci_dev *dev, int i)
423 * Assign a new address to a PCI resource.
430 * Result: 0 if successful.
433 int __init
pcibios_assign_resource(struct pci_dev
*dev
, int i
)
435 struct resource
*r
= &dev
->resource
[i
];
436 struct resource
*pr
= pci_find_parent_resource(dev
, r
);
437 unsigned long size
= r
->end
+ 1;
442 if (r
->flags
& IORESOURCE_IO
)
447 if (allocate_resource(pr
, r
, size
, bus_info
->io_space
.start
+
448 IO_ALLOC_OFFSET
, bus_info
->io_space
.end
, 1024))
453 if (allocate_resource(pr
, r
, size
, bus_info
->mem_space
.start
+
454 MEM_ALLOC_OFFSET
, bus_info
->mem_space
.end
, size
))
459 pci_write_config_dword(dev
, PCI_BASE_ADDRESS_0
+ 4 * i
, r
->start
);
464 void __init
pcibios_fixup_bus(struct pci_bus
*bus
)
469 sysdata
= (bus
->parent
) ? bus
->parent
->sysdata
: bus
->sysdata
;
471 for (dev
= bus
->devices
; (dev
!= NULL
); dev
= dev
->sibling
)
472 dev
->sysdata
= sysdata
;
475 void __init
pcibios_init(void)
477 printk("Linux/m68k PCI BIOS32 revision %x.%02x\n", MAJOR_REV
, MINOR_REV
);
482 bus_info
= init_hades_pci();
484 if (bus_info
!= NULL
)
486 printk("PCI: Probing PCI hardware\n");
487 pci_scan_bus(0, bus_info
->m68k_pci_ops
, bus_info
);
489 pcibios_claim_resources(pci_root
);
492 printk("PCI: No PCI bus detected\n");
495 char * __init
pcibios_setup(char *str
)
497 if (!strcmp(str
, "nomodify"))
502 else if (!strcmp(str
, "skipvga"))
507 else if (!strcmp(str
, "noburst"))
509 disable_pci_burst
= 1;
515 #endif /* CONFIG_PCI */