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