mm: remove include/linux/bootmem.h
[linux-2.6-block.git] / arch / xtensa / kernel / pci.c
CommitLineData
5a0015d6 1/*
f30c2269 2 * arch/xtensa/kernel/pci.c
5a0015d6
CZ
3 *
4 * PCI bios-type initialisation for PCI machines
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
11 * Copyright (C) 2001-2005 Tensilica Inc.
12 *
13 * Based largely on work from Cort (ppc/kernel/pci.c)
14 * IO functions copied from sparc.
15 *
16 * Chris Zankel <chris@zankel.net>
17 *
18 */
19
5a0015d6
CZ
20#include <linux/kernel.h>
21#include <linux/pci.h>
22#include <linux/delay.h>
23#include <linux/string.h>
24#include <linux/init.h>
25#include <linux/sched.h>
26#include <linux/errno.h>
57c8a661 27#include <linux/memblock.h>
5a0015d6
CZ
28
29#include <asm/pci-bridge.h>
30#include <asm/platform.h>
31
5a0015d6
CZ
32/* PCI Controller */
33
34
35/*
36 * pcibios_alloc_controller
37 * pcibios_enable_device
38 * pcibios_fixups
39 * pcibios_align_resource
40 * pcibios_fixup_bus
5a0015d6 41 * pci_bus_add_device
5a0015d6
CZ
42 */
43
f242132b
BH
44static struct pci_controller *pci_ctrl_head;
45static struct pci_controller **pci_ctrl_tail = &pci_ctrl_head;
5a0015d6
CZ
46
47static int pci_bus_count;
48
5a0015d6
CZ
49/*
50 * We need to avoid collisions with `mirrored' VGA ports
51 * and other strange ISA hardware, so we always want the
52 * addresses to be allocated in the 0x000-0x0ff region
53 * modulo 0x400.
54 *
55 * Why? Because some silly external IO cards only decode
56 * the low 10 bits of the IO address. The 0x00-0xff region
57 * is reserved for motherboard devices that decode all 16
58 * bits, so it's ok to allocate at, say, 0x2800-0x28ff,
59 * but we want to try to avoid allocating at 0x2900-0x2bff
60 * which might have be mirrored at 0x0100-0x03ff..
61 */
b26b2d49 62resource_size_t
3b7a17fc
DB
63pcibios_align_resource(void *data, const struct resource *res,
64 resource_size_t size, resource_size_t align)
5a0015d6
CZ
65{
66 struct pci_dev *dev = data;
b26b2d49 67 resource_size_t start = res->start;
5a0015d6
CZ
68
69 if (res->flags & IORESOURCE_IO) {
5a0015d6 70 if (size > 0x100) {
fd95ee73
MF
71 pr_err("PCI: I/O Region %s/%d too large (%u bytes)\n",
72 pci_name(dev), dev->resource - res,
73 size);
5a0015d6
CZ
74 }
75
b26b2d49 76 if (start & 0x300)
5a0015d6 77 start = (start + 0x3ff) & ~0x3ff;
5a0015d6 78 }
b26b2d49
DB
79
80 return start;
5a0015d6
CZ
81}
82
7ec303a7
BH
83static void __init pci_controller_apertures(struct pci_controller *pci_ctrl,
84 struct list_head *resources)
85{
86 struct resource *res;
87 unsigned long io_offset;
88 int i;
89
90 io_offset = (unsigned long)pci_ctrl->io_space.base;
91 res = &pci_ctrl->io_resource;
92 if (!res->flags) {
93 if (io_offset)
c130d3be
MF
94 pr_err("I/O resource not set for host bridge %d\n",
95 pci_ctrl->index);
7ec303a7
BH
96 res->start = 0;
97 res->end = IO_SPACE_LIMIT;
98 res->flags = IORESOURCE_IO;
99 }
100 res->start += io_offset;
101 res->end += io_offset;
4ba2aef3 102 pci_add_resource_offset(resources, res, io_offset);
7ec303a7
BH
103
104 for (i = 0; i < 3; i++) {
105 res = &pci_ctrl->mem_resources[i];
106 if (!res->flags) {
107 if (i > 0)
108 continue;
c130d3be
MF
109 pr_err("Memory resource not set for host bridge %d\n",
110 pci_ctrl->index);
7ec303a7
BH
111 res->start = 0;
112 res->end = ~0U;
113 res->flags = IORESOURCE_MEM;
114 }
115 pci_add_resource(resources, res);
116 }
117}
118
5a0015d6
CZ
119static int __init pcibios_init(void)
120{
121 struct pci_controller *pci_ctrl;
7ec303a7 122 struct list_head resources;
5a0015d6 123 struct pci_bus *bus;
b97ea289 124 int next_busno = 0, ret;
5a0015d6 125
c130d3be 126 pr_info("PCI: Probing PCI hardware\n");
5a0015d6
CZ
127
128 /* Scan all of the recorded PCI controllers. */
129 for (pci_ctrl = pci_ctrl_head; pci_ctrl; pci_ctrl = pci_ctrl->next) {
130 pci_ctrl->last_busno = 0xff;
7ec303a7
BH
131 INIT_LIST_HEAD(&resources);
132 pci_controller_apertures(pci_ctrl, &resources);
133 bus = pci_scan_root_bus(NULL, pci_ctrl->first_busno,
134 pci_ctrl->ops, pci_ctrl, &resources);
b97ea289
YW
135 if (!bus)
136 continue;
137
5a0015d6 138 pci_ctrl->bus = bus;
b918c62e 139 pci_ctrl->last_busno = bus->busn_res.end;
5a0015d6
CZ
140 if (next_busno <= pci_ctrl->last_busno)
141 next_busno = pci_ctrl->last_busno+1;
142 }
143 pci_bus_count = next_busno;
b97ea289
YW
144 ret = platform_pcibios_fixup();
145 if (ret)
146 return ret;
5a0015d6 147
b97ea289
YW
148 for (pci_ctrl = pci_ctrl_head; pci_ctrl; pci_ctrl = pci_ctrl->next) {
149 if (pci_ctrl->bus)
150 pci_bus_add_devices(pci_ctrl->bus);
151 }
152
153 return 0;
5a0015d6
CZ
154}
155
156subsys_initcall(pcibios_init);
157
fd95ee73 158void pcibios_fixup_bus(struct pci_bus *bus)
5a0015d6 159{
237865f1
BH
160 if (bus->parent) {
161 /* This is a subordinate bridge */
162 pci_read_bridge_bases(bus);
163 }
5a0015d6
CZ
164}
165
9cdce18d
MS
166void pcibios_set_master(struct pci_dev *dev)
167{
168 /* No special bus mastering setup handling */
169}
170
5a0015d6
CZ
171int pcibios_enable_device(struct pci_dev *dev, int mask)
172{
173 u16 cmd, old_cmd;
174 int idx;
175 struct resource *r;
176
177 pci_read_config_word(dev, PCI_COMMAND, &cmd);
178 old_cmd = cmd;
179 for (idx=0; idx<6; idx++) {
180 r = &dev->resource[idx];
181 if (!r->start && r->end) {
78f7aada 182 pci_err(dev, "can't enable device: resource collisions\n");
5a0015d6
CZ
183 return -EINVAL;
184 }
185 if (r->flags & IORESOURCE_IO)
186 cmd |= PCI_COMMAND_IO;
187 if (r->flags & IORESOURCE_MEM)
188 cmd |= PCI_COMMAND_MEMORY;
189 }
190 if (cmd != old_cmd) {
78f7aada 191 pci_info(dev, "enabling device (%04x -> %04x)\n", old_cmd, cmd);
5a0015d6
CZ
192 pci_write_config_word(dev, PCI_COMMAND, cmd);
193 }
194
195 return 0;
196}
197
5a0015d6 198/*
46e15a2a 199 * Platform support for /proc/bus/pci/X/Y mmap()s.
5a0015d6
CZ
200 * -- paulus.
201 */
202
46e15a2a 203int pci_iobar_pfn(struct pci_dev *pdev, int bar, struct vm_area_struct *vma)
5a0015d6 204{
46e15a2a
DW
205 struct pci_controller *pci_ctrl = (struct pci_controller*) pdev->sysdata;
206 resource_size_t ioaddr = pci_resource_start(pdev, bar);
5a0015d6
CZ
207
208 if (pci_ctrl == 0)
209 return -EINVAL; /* should never happen */
210
46e15a2a
DW
211 /* Convert to an offset within this PCI controller */
212 ioaddr -= (unsigned long)pci_ctrl->io_space.base;
5a0015d6 213
46e15a2a
DW
214 vma->vm_pgoff += (ioaddr + pci_ctrl->io_space.start) >> PAGE_SHIFT;
215 return 0;
5a0015d6 216}