1 /* ASB2305 PCI resource stuff
3 * Copyright (C) 2001 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 * - Derived from arch/i386/pci-i386.c
6 * - Copyright 1997--2000 Martin Mares <mj@suse.cz>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public Licence
10 * as published by the Free Software Foundation; either version
11 * 2 of the Licence, or (at your option) any later version.
13 #include <linux/types.h>
14 #include <linux/kernel.h>
15 #include <linux/pci.h>
16 #include <linux/init.h>
17 #include <linux/ioport.h>
18 #include <linux/errno.h>
19 #include "pci-asb2305.h"
22 * We need to avoid collisions with `mirrored' VGA ports
23 * and other strange ISA hardware, so we always want the
24 * addresses to be allocated in the 0x000-0x0ff region
27 * Why? Because some silly external IO cards only decode
28 * the low 10 bits of the IO address. The 0x00-0xff region
29 * is reserved for motherboard devices that decode all 16
30 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
31 * but we want to try to avoid allocating at 0x2900-0x2bff
32 * which might have be mirrored at 0x0100-0x03ff..
34 void pcibios_align_resource(void *data
, struct resource
*res
,
35 resource_size_t size
, resource_size_t align
)
38 struct pci_dev
*dev
= data
;
41 "### PCIBIOS_ALIGN_RESOURCE(%s,,{%08lx-%08lx,%08lx},%lx)\n",
50 if (res
->flags
& IORESOURCE_IO
) {
51 unsigned long start
= res
->start
;
54 start
= (start
+ 0x3ff) & ~0x3ff;
62 * Handle resources of PCI devices. If the world were perfect, we could
63 * just allocate all the resource regions and do nothing more. It isn't.
64 * On the other hand, we cannot just re-allocate all devices, as it would
65 * require us to know lots of host bridge internals. So we attempt to
66 * keep as much of the original configuration as possible, but tweak it
67 * when it's found to be wrong.
69 * Known BIOS problems we have to work around:
70 * - I/O or memory regions not configured
71 * - regions configured, but not enabled in the command register
72 * - bogus I/O addresses above 64K used
73 * - expansion ROMs left enabled (this may sound harmless, but given
74 * the fact the PCI specs explicitly allow address decoders to be
75 * shared between expansion ROMs and other resource regions, it's
79 * (1) Allocate resources for all buses behind PCI-to-PCI bridges.
80 * This gives us fixed barriers on where we can allocate.
81 * (2) Allocate resources for all enabled devices. If there is
82 * a collision, just mark the resource as unallocated. Also
83 * disable expansion ROMs during this step.
84 * (3) Try to allocate resources for disabled devices. If the
85 * resources were assigned correctly, everything goes well,
86 * if they weren't, they won't disturb allocation of other
88 * (4) Assign new addresses to resources which were either
89 * not configured at all or misconfigured. If explicitly
90 * requested by the user, configure expansion ROM address
93 static void __init
pcibios_allocate_bus_resources(struct list_head
*bus_list
)
98 struct resource
*r
, *pr
;
100 /* Depth-First Search on bus tree */
101 list_for_each_entry(bus
, bus_list
, node
) {
104 for (idx
= PCI_BRIDGE_RESOURCES
;
105 idx
< PCI_NUM_RESOURCES
;
107 r
= &dev
->resource
[idx
];
110 pr
= pci_find_parent_resource(dev
, r
);
113 request_resource(pr
, r
) < 0) {
114 printk(KERN_ERR
"PCI:"
115 " Cannot allocate resource"
116 " region %d of bridge %s\n",
118 /* Something is wrong with the region.
119 * Invalidate the resource to prevent
120 * child resource allocations in this
126 pcibios_allocate_bus_resources(&bus
->children
);
130 static void __init
pcibios_allocate_resources(int pass
)
132 struct pci_dev
*dev
= NULL
;
135 struct resource
*r
, *pr
;
137 for_each_pci_dev(dev
) {
138 pci_read_config_word(dev
, PCI_COMMAND
, &command
);
139 for (idx
= 0; idx
< 6; idx
++) {
140 r
= &dev
->resource
[idx
];
141 if (r
->parent
) /* Already allocated */
143 if (!r
->start
) /* Address not assigned */
145 if (r
->flags
& IORESOURCE_IO
)
146 disabled
= !(command
& PCI_COMMAND_IO
);
148 disabled
= !(command
& PCI_COMMAND_MEMORY
);
149 if (pass
== disabled
) {
150 DBG("PCI[%s]: Resource %08lx-%08lx"
151 " (f=%lx, d=%d, p=%d)\n",
152 pci_name(dev
), r
->start
, r
->end
, r
->flags
,
154 pr
= pci_find_parent_resource(dev
, r
);
155 if (!pr
|| request_resource(pr
, r
) < 0) {
156 printk(KERN_ERR
"PCI:"
157 " Cannot allocate resource"
158 " region %d of device %s\n",
160 /* We'll assign a new address later */
167 r
= &dev
->resource
[PCI_ROM_RESOURCE
];
168 if (r
->flags
& IORESOURCE_ROM_ENABLE
) {
169 /* Turn the ROM off, leave the resource region,
170 * but keep it unregistered. */
172 DBG("PCI: Switching off ROM of %s\n",
174 r
->flags
&= ~IORESOURCE_ROM_ENABLE
;
175 pci_read_config_dword(
176 dev
, dev
->rom_base_reg
, ®
);
177 pci_write_config_dword(
178 dev
, dev
->rom_base_reg
,
179 reg
& ~PCI_ROM_ADDRESS_ENABLE
);
185 static int __init
pcibios_assign_resources(void)
187 struct pci_dev
*dev
= NULL
;
188 struct resource
*r
, *pr
;
190 if (!(pci_probe
& PCI_ASSIGN_ROMS
)) {
191 /* Try to use BIOS settings for ROMs, otherwise let
192 pci_assign_unassigned_resources() allocate the new
194 for_each_pci_dev(dev
) {
195 r
= &dev
->resource
[PCI_ROM_RESOURCE
];
196 if (!r
->flags
|| !r
->start
)
198 pr
= pci_find_parent_resource(dev
, r
);
199 if (!pr
|| request_resource(pr
, r
) < 0) {
206 pci_assign_unassigned_resources();
211 fs_initcall(pcibios_assign_resources
);
213 void __init
pcibios_resource_survey(void)
215 DBG("PCI: Allocating resources\n");
216 pcibios_allocate_bus_resources(&pci_root_buses
);
217 pcibios_allocate_resources(0);
218 pcibios_allocate_resources(1);
222 * If we set up a device for bus mastering, we need to check the latency
223 * timer as certain crappy BIOSes forget to set it properly.
225 unsigned int pcibios_max_latency
= 255;
227 void pcibios_set_master(struct pci_dev
*dev
)
231 pci_read_config_byte(dev
, PCI_LATENCY_TIMER
, &lat
);
234 lat
= (64 <= pcibios_max_latency
) ? 64 : pcibios_max_latency
;
235 else if (lat
> pcibios_max_latency
)
236 lat
= pcibios_max_latency
;
240 pci_write_config_byte(dev
, PCI_LATENCY_TIMER
, lat
);
243 int pci_mmap_page_range(struct pci_dev
*dev
, struct vm_area_struct
*vma
,
244 enum pci_mmap_state mmap_state
, int write_combine
)
248 /* Leave vm_pgoff as-is, the PCI space address is the physical
249 * address on this platform.
251 vma
->vm_flags
|= VM_LOCKED
| VM_IO
;
253 prot
= pgprot_val(vma
->vm_page_prot
);
254 prot
&= ~_PAGE_CACHE
;
255 vma
->vm_page_prot
= __pgprot(prot
);
257 /* Write-combine setting is ignored */
258 if (io_remap_pfn_range(vma
, vma
->vm_start
, vma
->vm_pgoff
,
259 vma
->vm_end
- vma
->vm_start
,