Wed Jul 24 03:32:19 2013 UTC ()
Add kludgey implementation of pci_map_rom.


(riastradh)
diff -r1.1.2.13 -r1.1.2.14 src/sys/external/bsd/drm2/include/linux/pci.h
diff -r1.1.2.2 -r1.1.2.3 src/sys/external/bsd/drm2/pci/drm_pci.c

cvs diff -r1.1.2.13 -r1.1.2.14 src/sys/external/bsd/drm2/include/linux/pci.h (switch to unified diff)

--- src/sys/external/bsd/drm2/include/linux/pci.h 2013/07/24 03:24:03 1.1.2.13
+++ src/sys/external/bsd/drm2/include/linux/pci.h 2013/07/24 03:32:19 1.1.2.14
@@ -1,332 +1,383 @@ @@ -1,332 +1,383 @@
1/* $NetBSD: pci.h,v 1.1.2.13 2013/07/24 03:24:03 riastradh Exp $ */ 1/* $NetBSD: pci.h,v 1.1.2.14 2013/07/24 03:32:19 riastradh Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2013 The NetBSD Foundation, Inc. 4 * Copyright (c) 2013 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Taylor R. Campbell. 8 * by Taylor R. Campbell.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the 16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * 18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#ifndef _LINUX_PCI_H_ 32#ifndef _LINUX_PCI_H_
33#define _LINUX_PCI_H_ 33#define _LINUX_PCI_H_
34 34
35#include <sys/types.h> 35#include <sys/types.h>
36#include <sys/bus.h> 36#include <sys/bus.h>
37#include <sys/kmem.h> 37#include <sys/kmem.h>
38#include <sys/systm.h> 38#include <sys/systm.h>
39 39
40#include <dev/pci/pcidevs.h> 40#include <dev/pci/pcidevs.h>
41#include <dev/pci/pcireg.h> 41#include <dev/pci/pcireg.h>
42#include <dev/pci/pcivar.h> 42#include <dev/pci/pcivar.h>
43 43
44#include <linux/ioport.h> 44#include <linux/ioport.h>
45 45
46struct pci_bus; 46struct pci_bus;
47 47
48struct pci_device_id { 48struct pci_device_id {
49 uint32_t vendor; 49 uint32_t vendor;
50 uint32_t device; 50 uint32_t device;
51 uint32_t subvendor; 51 uint32_t subvendor;
52 uint32_t subdevice; 52 uint32_t subdevice;
53 uint32_t class; 53 uint32_t class;
54 uint32_t class_mask; 54 uint32_t class_mask;
55 unsigned long driver_data; 55 unsigned long driver_data;
56}; 56};
57 57
58#define PCI_ANY_ID ((pcireg_t)-1) 58#define PCI_ANY_ID ((pcireg_t)-1)
59 59
60#define PCI_BASE_CLASS_DISPLAY PCI_CLASS_DISPLAY 60#define PCI_BASE_CLASS_DISPLAY PCI_CLASS_DISPLAY
61 61
62#define PCI_CLASS_BRIDGE_ISA \ 62#define PCI_CLASS_BRIDGE_ISA \
63 ((PCI_CLASS_BRIDGE << 8) | PCI_SUBCLASS_BRIDGE_ISA) 63 ((PCI_CLASS_BRIDGE << 8) | PCI_SUBCLASS_BRIDGE_ISA)
64CTASSERT(PCI_CLASS_BRIDGE_ISA == 0x0601); 64CTASSERT(PCI_CLASS_BRIDGE_ISA == 0x0601);
65 65
66#define PCI_VENDOR_ID_INTEL PCI_VENDOR_INTEL 66#define PCI_VENDOR_ID_INTEL PCI_VENDOR_INTEL
67 67
68#define PCI_DEVFN(DEV, FN) \ 68#define PCI_DEVFN(DEV, FN) \
69 (__SHIFTIN((DEV), __BITS(3, 7)) | __SHIFTIN((FN), __BITS(0, 2))) 69 (__SHIFTIN((DEV), __BITS(3, 7)) | __SHIFTIN((FN), __BITS(0, 2)))
70#define PCI_SLOT(DEVFN) __SHIFTOUT((DEVFN), __BITS(3, 7)) 70#define PCI_SLOT(DEVFN) __SHIFTOUT((DEVFN), __BITS(3, 7))
71#define PCI_FUNC(DEVFN) __SHIFTOUT((DEVFN), __BITS(0, 2)) 71#define PCI_FUNC(DEVFN) __SHIFTOUT((DEVFN), __BITS(0, 2))
72 72
73#define PCI_CAP_ID_AGP PCI_CAP_AGP 73#define PCI_CAP_ID_AGP PCI_CAP_AGP
74 74
75struct pci_dev { 75struct pci_dev {
76 struct pci_attach_args pd_pa; 76 struct pci_attach_args pd_pa;
77 bool pd_kludged; /* XXX pci_kludgey_find_dev */ 77 int pd_kludges; /* Gotta lose 'em... */
 78#define NBPCI_KLUDGE_GET_MUMBLE 0x01
 79#define NBPCI_KLUDGE_MAP_ROM 0x02
 80 bus_space_tag_t pd_rom_bst;
 81 bus_space_handle_t pd_rom_bsh;
 82 bus_size_t pd_rom_size;
 83 void *pd_rom_vaddr;
78 device_t pd_dev; 84 device_t pd_dev;
79 struct pci_bus *bus; 85 struct pci_bus *bus;
80 uint32_t devfn; 86 uint32_t devfn;
81 uint16_t vendor; 87 uint16_t vendor;
82 uint16_t device; 88 uint16_t device;
83 uint16_t subsystem_vendor; 89 uint16_t subsystem_vendor;
84 uint16_t subsystem_device; 90 uint16_t subsystem_device;
85 uint8_t revision; 91 uint8_t revision;
86 uint32_t class; 92 uint32_t class;
87 bool msi_enabled; 93 bool msi_enabled;
88}; 94};
89 95
90static inline device_t 96static inline device_t
91pci_dev_dev(struct pci_dev *pdev) 97pci_dev_dev(struct pci_dev *pdev)
92{ 98{
93 return pdev->pd_dev; 99 return pdev->pd_dev;
94} 100}
95 101
96static inline void 102static inline void
97linux_pci_dev_init(struct pci_dev *pdev, device_t dev, 103linux_pci_dev_init(struct pci_dev *pdev, device_t dev,
98 const struct pci_attach_args *pa, bool kludged) 104 const struct pci_attach_args *pa, int kludges)
99{ 105{
100 const uint32_t subsystem_id = pci_conf_read(pa->pa_pc, pa->pa_tag, 106 const uint32_t subsystem_id = pci_conf_read(pa->pa_pc, pa->pa_tag,
101 PCI_SUBSYS_ID_REG); 107 PCI_SUBSYS_ID_REG);
102 108
103 pdev->pd_pa = *pa; 109 pdev->pd_pa = *pa;
104 pdev->pd_kludged = kludged; 110 pdev->pd_kludges = kludges;
 111 pdev->pd_rom_vaddr = NULL;
105 pdev->pd_dev = dev; 112 pdev->pd_dev = dev;
106 pdev->bus = NULL; /* XXX struct pci_dev::bus */ 113 pdev->bus = NULL; /* XXX struct pci_dev::bus */
107 pdev->devfn = PCI_DEVFN(pa->pa_device, pa->pa_function); 114 pdev->devfn = PCI_DEVFN(pa->pa_device, pa->pa_function);
108 pdev->vendor = PCI_VENDOR(pa->pa_id); 115 pdev->vendor = PCI_VENDOR(pa->pa_id);
109 pdev->device = PCI_PRODUCT(pa->pa_id); 116 pdev->device = PCI_PRODUCT(pa->pa_id);
110 pdev->subsystem_vendor = PCI_SUBSYS_VENDOR(subsystem_id); 117 pdev->subsystem_vendor = PCI_SUBSYS_VENDOR(subsystem_id);
111 pdev->subsystem_device = PCI_SUBSYS_ID(subsystem_id); 118 pdev->subsystem_device = PCI_SUBSYS_ID(subsystem_id);
112 pdev->revision = PCI_REVISION(pa->pa_class); 119 pdev->revision = PCI_REVISION(pa->pa_class);
113 pdev->class = __SHIFTOUT(pa->pa_class, 0xffffff00UL); /* ? */ 120 pdev->class = __SHIFTOUT(pa->pa_class, 0xffffff00UL); /* ? */
114 pdev->msi_enabled = false; 121 pdev->msi_enabled = false;
115} 122}
116 123
117static inline int 124static inline int
118pci_find_capability(struct pci_dev *pdev, int cap) 125pci_find_capability(struct pci_dev *pdev, int cap)
119{ 126{
120 return pci_get_capability(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, cap, 127 return pci_get_capability(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, cap,
121 NULL, NULL); 128 NULL, NULL);
122} 129}
123 130
124static inline void 131static inline void
125pci_read_config_dword(struct pci_dev *pdev, int reg, uint32_t *valuep) 132pci_read_config_dword(struct pci_dev *pdev, int reg, uint32_t *valuep)
126{ 133{
127 KASSERT(!ISSET(reg, 3)); 134 KASSERT(!ISSET(reg, 3));
128 *valuep = pci_conf_read(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, reg); 135 *valuep = pci_conf_read(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, reg);
129} 136}
130 137
131static inline void 138static inline void
132pci_read_config_word(struct pci_dev *pdev, int reg, uint16_t *valuep) 139pci_read_config_word(struct pci_dev *pdev, int reg, uint16_t *valuep)
133{ 140{
134 KASSERT(!ISSET(reg, 1)); 141 KASSERT(!ISSET(reg, 1));
135 *valuep = pci_conf_read(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, 142 *valuep = pci_conf_read(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag,
136 (reg &~ 3)) >> (8 * (reg & 3)); 143 (reg &~ 3)) >> (8 * (reg & 3));
137} 144}
138 145
139static inline void 146static inline void
140pci_read_config_byte(struct pci_dev *pdev, int reg, uint8_t *valuep) 147pci_read_config_byte(struct pci_dev *pdev, int reg, uint8_t *valuep)
141{ 148{
142 *valuep = pci_conf_read(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, 149 *valuep = pci_conf_read(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag,
143 (reg &~ 1)) >> (8 * (reg & 1)); 150 (reg &~ 1)) >> (8 * (reg & 1));
144} 151}
145 152
146static inline void 153static inline void
147pci_write_config_dword(struct pci_dev *pdev, int reg, uint32_t value) 154pci_write_config_dword(struct pci_dev *pdev, int reg, uint32_t value)
148{ 155{
149 KASSERT(!ISSET(reg, 3)); 156 KASSERT(!ISSET(reg, 3));
150 pci_conf_write(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, reg, value); 157 pci_conf_write(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, reg, value);
151} 158}
152 159
153static inline void 160static inline void
154pci_rmw_config(struct pci_dev *pdev, int reg, unsigned int bytes, 161pci_rmw_config(struct pci_dev *pdev, int reg, unsigned int bytes,
155 uint32_t value) 162 uint32_t value)
156{ 163{
157 const uint32_t mask = ~((~0UL) << (8 * bytes)); 164 const uint32_t mask = ~((~0UL) << (8 * bytes));
158 const int reg32 = (reg &~ 3); 165 const int reg32 = (reg &~ 3);
159 const unsigned int shift = (8 * (reg & 3)); 166 const unsigned int shift = (8 * (reg & 3));
160 uint32_t value32; 167 uint32_t value32;
161 168
162 KASSERT(bytes <= 4); 169 KASSERT(bytes <= 4);
163 KASSERT(!ISSET(value, ~mask)); 170 KASSERT(!ISSET(value, ~mask));
164 pci_read_config_dword(pdev, reg32, &value32); 171 pci_read_config_dword(pdev, reg32, &value32);
165 value32 &=~ (mask << shift); 172 value32 &=~ (mask << shift);
166 value32 |= (value << shift); 173 value32 |= (value << shift);
167 pci_write_config_dword(pdev, reg32, value32); 174 pci_write_config_dword(pdev, reg32, value32);
168} 175}
169 176
170static inline void 177static inline void
171pci_write_config_word(struct pci_dev *pdev, int reg, uint16_t value) 178pci_write_config_word(struct pci_dev *pdev, int reg, uint16_t value)
172{ 179{
173 KASSERT(!ISSET(reg, 1)); 180 KASSERT(!ISSET(reg, 1));
174 pci_rmw_config(pdev, reg, 2, value); 181 pci_rmw_config(pdev, reg, 2, value);
175} 182}
176 183
177static inline void 184static inline void
178pci_write_config_byte(struct pci_dev *pdev, int reg, uint8_t value) 185pci_write_config_byte(struct pci_dev *pdev, int reg, uint8_t value)
179{ 186{
180 pci_rmw_config(pdev, reg, 1, value); 187 pci_rmw_config(pdev, reg, 1, value);
181} 188}
182 189
183/* 190/*
184 * XXX pci msi 191 * XXX pci msi
185 */ 192 */
186static inline void 193static inline void
187pci_enable_msi(struct pci_dev *pdev) 194pci_enable_msi(struct pci_dev *pdev)
188{ 195{
189 KASSERT(!pdev->msi_enabled); 196 KASSERT(!pdev->msi_enabled);
190 pdev->msi_enabled = true; 197 pdev->msi_enabled = true;
191} 198}
192 199
193static inline void 200static inline void
194pci_disable_msi(struct pci_dev *pdev) 201pci_disable_msi(struct pci_dev *pdev)
195{ 202{
196 KASSERT(pdev->msi_enabled); 203 KASSERT(pdev->msi_enabled);
197 pdev->msi_enabled = false; 204 pdev->msi_enabled = false;
198} 205}
199 206
200static inline void 207static inline void
201pci_set_master(struct pci_dev *pdev) 208pci_set_master(struct pci_dev *pdev)
202{ 209{
203 pcireg_t csr; 210 pcireg_t csr;
204 211
205 csr = pci_conf_read(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, 212 csr = pci_conf_read(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag,
206 PCI_COMMAND_STATUS_REG); 213 PCI_COMMAND_STATUS_REG);
207 csr |= PCI_COMMAND_MASTER_ENABLE; 214 csr |= PCI_COMMAND_MASTER_ENABLE;
208 pci_conf_write(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag, 215 pci_conf_write(pdev->pd_pa.pa_pc, pdev->pd_pa.pa_tag,
209 PCI_COMMAND_STATUS_REG, csr); 216 PCI_COMMAND_STATUS_REG, csr);
210} 217}
211 218
212#define PCIBIOS_MIN_MEM 0 /* XXX bogus x86 kludge bollocks */ 219#define PCIBIOS_MIN_MEM 0 /* XXX bogus x86 kludge bollocks */
213 220
214static inline bus_addr_t 221static inline bus_addr_t
215pcibios_align_resource(void *p, const struct resource *resource, 222pcibios_align_resource(void *p, const struct resource *resource,
216 bus_addr_t addr, bus_size_t size) 223 bus_addr_t addr, bus_size_t size)
217{ 224{
218 panic("pcibios_align_resource has accessed unaligned neurons!"); 225 panic("pcibios_align_resource has accessed unaligned neurons!");
219} 226}
220 227
221static inline int 228static inline int
222pci_bus_alloc_resource(struct pci_bus *bus, struct resource *resource, 229pci_bus_alloc_resource(struct pci_bus *bus, struct resource *resource,
223 bus_size_t size, bus_size_t align, bus_addr_t start, int type __unused, 230 bus_size_t size, bus_size_t align, bus_addr_t start, int type __unused,
224 bus_addr_t (*align_fn)(void *, const struct resource *, bus_addr_t, 231 bus_addr_t (*align_fn)(void *, const struct resource *, bus_addr_t,
225 bus_size_t) __unused, 232 bus_size_t) __unused,
226 struct pci_dev *pdev) 233 struct pci_dev *pdev)
227{ 234{
228 const struct pci_attach_args *const pa = &pdev->pd_pa; 235 const struct pci_attach_args *const pa = &pdev->pd_pa;
229 bus_space_tag_t bst; 236 bus_space_tag_t bst;
230 int error; 237 int error;
231 238
232 switch (resource->flags) { 239 switch (resource->flags) {
233 case IORESOURCE_MEM: 240 case IORESOURCE_MEM:
234 bst = pa->pa_memt; 241 bst = pa->pa_memt;
235 break; 242 break;
236 243
237 case IORESOURCE_IO: 244 case IORESOURCE_IO:
238 bst = pa->pa_iot; 245 bst = pa->pa_iot;
239 break; 246 break;
240 247
241 default: 248 default:
242 panic("I don't know what kind of resource you want!"); 249 panic("I don't know what kind of resource you want!");
243 } 250 }
244 251
245 resource->r_bst = bst; 252 resource->r_bst = bst;
246 error = bus_space_alloc(bst, start, 0xffffffffffffffffULL /* XXX */, 253 error = bus_space_alloc(bst, start, 0xffffffffffffffffULL /* XXX */,
247 size, align, 0, 0, &resource->start, &resource->r_bsh); 254 size, align, 0, 0, &resource->start, &resource->r_bsh);
248 if (error) 255 if (error)
249 return error; 256 return error;
250 257
251 resource->size = size; 258 resource->size = size;
252 return 0; 259 return 0;
253} 260}
254 261
255/* 262/*
256 * XXX Mega-kludgerific! pci_get_bus_and_slot and pci_get_class are 263 * XXX Mega-kludgerific! pci_get_bus_and_slot and pci_get_class are
257 * defined only for their single purposes in i915drm, in 264 * defined only for their single purposes in i915drm, in
258 * i915_get_bridge_dev and intel_detect_pch. We can't define them more 265 * i915_get_bridge_dev and intel_detect_pch. We can't define them more
259 * generally without adapting pci_find_device (and pci_enumerate_bus 266 * generally without adapting pci_find_device (and pci_enumerate_bus
260 * internally) to pass a cookie through. 267 * internally) to pass a cookie through.
261 */ 268 */
262 269
263static inline int /* XXX inline? */ 270static inline int /* XXX inline? */
264pci_kludgey_match_bus0_dev0_func0(const struct pci_attach_args *pa) 271pci_kludgey_match_bus0_dev0_func0(const struct pci_attach_args *pa)
265{ 272{
266 273
267 if (pa->pa_bus != 0) 274 if (pa->pa_bus != 0)
268 return 0; 275 return 0;
269 if (pa->pa_device != 0) 276 if (pa->pa_device != 0)
270 return 0; 277 return 0;
271 if (pa->pa_function != 0) 278 if (pa->pa_function != 0)
272 return 0; 279 return 0;
273 280
274 return 1; 281 return 1;
275} 282}
276 283
277static inline struct pci_dev * 284static inline struct pci_dev *
278pci_get_bus_and_slot(int bus, int slot) 285pci_get_bus_and_slot(int bus, int slot)
279{ 286{
280 struct pci_attach_args pa; 287 struct pci_attach_args pa;
281 288
282 KASSERT(bus == 0); 289 KASSERT(bus == 0);
283 KASSERT(slot == PCI_DEVFN(0, 0)); 290 KASSERT(slot == PCI_DEVFN(0, 0));
284 291
285 if (!pci_find_device(&pa, &pci_kludgey_match_bus0_dev0_func0)) 292 if (!pci_find_device(&pa, &pci_kludgey_match_bus0_dev0_func0))
286 return NULL; 293 return NULL;
287 294
288 struct pci_dev *const pdev = kmem_zalloc(sizeof(*pdev), KM_SLEEP); 295 struct pci_dev *const pdev = kmem_zalloc(sizeof(*pdev), KM_SLEEP);
289 linux_pci_dev_init(pdev, NULL, &pa, true); 296 linux_pci_dev_init(pdev, NULL, &pa, NBPCI_KLUDGE_GET_MUMBLE);
290 297
291 return pdev; 298 return pdev;
292} 299}
293 300
294static inline int /* XXX inline? */ 301static inline int /* XXX inline? */
295pci_kludgey_match_isa_bridge(const struct pci_attach_args *pa) 302pci_kludgey_match_isa_bridge(const struct pci_attach_args *pa)
296{ 303{
297 304
298 if (PCI_CLASS(pa->pa_class) != PCI_CLASS_BRIDGE) 305 if (PCI_CLASS(pa->pa_class) != PCI_CLASS_BRIDGE)
299 return 0; 306 return 0;
300 if (PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_BRIDGE_ISA) 307 if (PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_BRIDGE_ISA)
301 return 0; 308 return 0;
302 309
303 return 1; 310 return 1;
304} 311}
305 312
306static inline struct pci_dev * 313static inline struct pci_dev *
307pci_get_class(uint32_t class_subclass_shifted __unused, 314pci_get_class(uint32_t class_subclass_shifted __unused,
308 struct pci_dev *from __unused) 315 struct pci_dev *from __unused)
309{ 316{
310 struct pci_attach_args pa; 317 struct pci_attach_args pa;
311 318
312 KASSERT(class_subclass_shifted == (PCI_CLASS_BRIDGE_ISA << 8)); 319 KASSERT(class_subclass_shifted == (PCI_CLASS_BRIDGE_ISA << 8));
313 KASSERT(from == NULL); 320 KASSERT(from == NULL);
314 321
315 if (!pci_find_device(&pa, &pci_kludgey_match_isa_bridge)) 322 if (!pci_find_device(&pa, &pci_kludgey_match_isa_bridge))
316 return NULL; 323 return NULL;
317 324
318 struct pci_dev *const pdev = kmem_zalloc(sizeof(*pdev), KM_SLEEP); 325 struct pci_dev *const pdev = kmem_zalloc(sizeof(*pdev), KM_SLEEP);
319 linux_pci_dev_init(pdev, NULL, &pa, true); 326 linux_pci_dev_init(pdev, NULL, &pa, NBPCI_KLUDGE_GET_MUMBLE);
320 327
321 return pdev; 328 return pdev;
322} 329}
323 330
324static inline void 331static inline void
325pci_dev_put(struct pci_dev *pdev) 332pci_dev_put(struct pci_dev *pdev)
326{ 333{
327 334
328 KASSERT(pdev->pd_kludged); 335 KASSERT(ISSET(pdev->pd_kludges, NBPCI_KLUDGE_GET_MUMBLE));
329 kmem_free(pdev, sizeof(*pdev)); 336 kmem_free(pdev, sizeof(*pdev));
330} 337}
331 338
 339#define __pci_rom_iomem
 340
 341static inline void
 342pci_unmap_rom(struct pci_dev *pdev, void __pci_rom_iomem *vaddr __unused)
 343{
 344
 345 KASSERT(ISSET(pdev->pd_kludges, NBPCI_KLUDGE_MAP_ROM));
 346 KASSERT(vaddr == pdev->pd_rom_vaddr);
 347 bus_space_unmap(pdev->pd_rom_bst, pdev->pd_rom_bsh, pdev->pd_rom_size);
 348 pdev->pd_kludges &= ~NBPCI_KLUDGE_MAP_ROM;
 349 pdev->pd_rom_vaddr = NULL;
 350}
 351
 352static inline void __pci_rom_iomem *
 353pci_map_rom(struct pci_dev *pdev, size_t *sizep)
 354{
 355 bus_space_handle_t bsh;
 356 bus_size_t size;
 357
 358 KASSERT(!ISSET(pdev->pd_kludges, NBPCI_KLUDGE_MAP_ROM));
 359
 360 if (pci_mapreg_map(&pdev->pd_pa, PCI_MAPREG_ROM, PCI_MAPREG_TYPE_ROM,
 361 (BUS_SPACE_MAP_PREFETCHABLE | BUS_SPACE_MAP_LINEAR),
 362 &pdev->pd_rom_bst, &pdev->pd_rom_bsh, NULL, &pdev->pd_rom_size)
 363 != 0) {
 364 aprint_error_dev(pdev->pd_dev, "unable to map ROM\n");
 365 return NULL;
 366 }
 367 pdev->pd_kludges |= NBPCI_KLUDGE_MAP_ROM;
 368
 369 /* XXX This type is obviously wrong in general... */
 370 if (pci_find_rom(&pdev->pd_pa, pdev->pd_rom_bst, pdev->pd_rom_bsh,
 371 PCI_ROM_CODE_TYPE_X86, &bsh, &size)) {
 372 aprint_error_dev(pdev->pd_dev, "unable to find ROM\n");
 373 pci_unmap_rom(pdev, NULL);
 374 return NULL;
 375 }
 376
 377 KASSERT(size <= SIZE_T_MAX);
 378 *sizep = size;
 379 pdev->pd_rom_vaddr = bus_space_vaddr(pdev->pd_rom_bst, bsh);
 380 return pdev->pd_rom_vaddr;
 381}
 382
332#endif /* _LINUX_PCI_H_ */ 383#endif /* _LINUX_PCI_H_ */

cvs diff -r1.1.2.2 -r1.1.2.3 src/sys/external/bsd/drm2/pci/drm_pci.c (switch to unified diff)

--- src/sys/external/bsd/drm2/pci/drm_pci.c 2013/07/24 03:24:03 1.1.2.2
+++ src/sys/external/bsd/drm2/pci/drm_pci.c 2013/07/24 03:32:19 1.1.2.3
@@ -1,184 +1,184 @@ @@ -1,184 +1,184 @@
1/* $NetBSD: drm_pci.c,v 1.1.2.2 2013/07/24 03:24:03 riastradh Exp $ */ 1/* $NetBSD: drm_pci.c,v 1.1.2.3 2013/07/24 03:32:19 riastradh Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2013 The NetBSD Foundation, Inc. 4 * Copyright (c) 2013 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Taylor R. Campbell. 8 * by Taylor R. Campbell.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the 16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * 18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#include <sys/cdefs.h> 32#include <sys/cdefs.h>
33__KERNEL_RCSID(0, "$NetBSD: drm_pci.c,v 1.1.2.2 2013/07/24 03:24:03 riastradh Exp $"); 33__KERNEL_RCSID(0, "$NetBSD: drm_pci.c,v 1.1.2.3 2013/07/24 03:32:19 riastradh Exp $");
34 34
35#include <sys/types.h> 35#include <sys/types.h>
36#include <sys/errno.h> 36#include <sys/errno.h>
37#include <sys/systm.h> 37#include <sys/systm.h>
38 38
39#include <dev/pci/pcivar.h> 39#include <dev/pci/pcivar.h>
40 40
41#include <drm/drmP.h> 41#include <drm/drmP.h>
42 42
43static int drm_pci_get_irq(struct drm_device *); 43static int drm_pci_get_irq(struct drm_device *);
44static int drm_pci_irq_install(struct drm_device *, 44static int drm_pci_irq_install(struct drm_device *,
45 irqreturn_t (*)(void *), int, const char *, void *, 45 irqreturn_t (*)(void *), int, const char *, void *,
46 struct drm_bus_irq_cookie **); 46 struct drm_bus_irq_cookie **);
47static void drm_pci_irq_uninstall(struct drm_device *, 47static void drm_pci_irq_uninstall(struct drm_device *,
48 struct drm_bus_irq_cookie *); 48 struct drm_bus_irq_cookie *);
49static const char * 49static const char *
50 drm_pci_get_name(struct drm_device *); 50 drm_pci_get_name(struct drm_device *);
51static int drm_pci_set_busid(struct drm_device *, struct drm_master *); 51static int drm_pci_set_busid(struct drm_device *, struct drm_master *);
52static int drm_pci_set_unique(struct drm_device *, struct drm_master *, 52static int drm_pci_set_unique(struct drm_device *, struct drm_master *,
53 struct drm_unique *); 53 struct drm_unique *);
54static int drm_pci_irq_by_busid(struct drm_device *, 54static int drm_pci_irq_by_busid(struct drm_device *,
55 struct drm_irq_busid *); 55 struct drm_irq_busid *);
56static int drm_pci_agp_init(struct drm_device *); 56static int drm_pci_agp_init(struct drm_device *);
57 57
58const struct drm_bus drm_pci_bus = { 58const struct drm_bus drm_pci_bus = {
59 .bus_type = DRIVER_BUS_PCI, 59 .bus_type = DRIVER_BUS_PCI,
60 .get_irq = drm_pci_get_irq, 60 .get_irq = drm_pci_get_irq,
61 .irq_install = drm_pci_irq_install, 61 .irq_install = drm_pci_irq_install,
62 .irq_uninstall = drm_pci_irq_uninstall, 62 .irq_uninstall = drm_pci_irq_uninstall,
63 .get_name = drm_pci_get_name, 63 .get_name = drm_pci_get_name,
64 .set_busid = drm_pci_set_busid, 64 .set_busid = drm_pci_set_busid,
65 .set_unique = drm_pci_set_unique, 65 .set_unique = drm_pci_set_unique,
66 .irq_by_busid = drm_pci_irq_by_busid, 66 .irq_by_busid = drm_pci_irq_by_busid,
67 .agp_init = drm_pci_agp_init, 67 .agp_init = drm_pci_agp_init,
68}; 68};
69 69
70static const struct pci_attach_args * 70static const struct pci_attach_args *
71drm_pci_attach_args(struct drm_device *dev) 71drm_pci_attach_args(struct drm_device *dev)
72{ 72{
73 return &dev->pdev->pd_pa; 73 return &dev->pdev->pd_pa;
74} 74}
75 75
76void 76void
77drm_pci_attach(device_t self, const struct pci_attach_args *pa, 77drm_pci_attach(device_t self, const struct pci_attach_args *pa,
78 struct pci_dev *pdev, struct drm_device *dev) 78 struct pci_dev *pdev, struct drm_device *dev)
79{ 79{
80 80
81 linux_pci_dev_init(pdev, self, pa, false); 81 linux_pci_dev_init(pdev, self, pa, 0);
82 82
83 dev->pdev = pdev; 83 dev->pdev = pdev;
84 dev->pci_vendor = pdev->vendor; 84 dev->pci_vendor = pdev->vendor;
85 dev->pci_device = pdev->device; 85 dev->pci_device = pdev->device;
86 86
87 /* XXX Set the power state to D0? */ 87 /* XXX Set the power state to D0? */
88} 88}
89 89
90int 90int
91drm_pci_detach(struct drm_device *dev __unused, int flags __unused) 91drm_pci_detach(struct drm_device *dev __unused, int flags __unused)
92{ 92{
93 93
94 /* XXX Disestablish irqs or anything? */ 94 /* XXX Disestablish irqs or anything? */
95 return 0; 95 return 0;
96} 96}
97 97
98static int 98static int
99drm_pci_get_irq(struct drm_device *dev) 99drm_pci_get_irq(struct drm_device *dev)
100{ 100{
101 pci_intr_handle_t ih_pih; 101 pci_intr_handle_t ih_pih;
102 int ih_int; 102 int ih_int;
103 103
104 /* 104 /*
105 * This is a compile-time assertion that the types match. If 105 * This is a compile-time assertion that the types match. If
106 * this fails, we have to change a bunch of drm code that uses 106 * this fails, we have to change a bunch of drm code that uses
107 * int for intr handles. 107 * int for intr handles.
108 */ 108 */
109 KASSERT(&ih_pih != &ih_int); 109 KASSERT(&ih_pih != &ih_int);
110 110
111 if (pci_intr_map(drm_pci_attach_args(dev), &ih_pih)) 111 if (pci_intr_map(drm_pci_attach_args(dev), &ih_pih))
112 return -1; /* XXX Hope -1 is an invalid intr handle. */ 112 return -1; /* XXX Hope -1 is an invalid intr handle. */
113 113
114 ih_int = ih_pih; 114 ih_int = ih_pih;
115 return ih_int; 115 return ih_int;
116} 116}
117 117
118static int 118static int
119drm_pci_irq_install(struct drm_device *dev, irqreturn_t (*handler)(void *), 119drm_pci_irq_install(struct drm_device *dev, irqreturn_t (*handler)(void *),
120 int flags, const char *name, void *arg, 120 int flags, const char *name, void *arg,
121 struct drm_bus_irq_cookie **cookiep) 121 struct drm_bus_irq_cookie **cookiep)
122{ 122{
123 const struct pci_attach_args *const pa = drm_pci_attach_args(dev); 123 const struct pci_attach_args *const pa = drm_pci_attach_args(dev);
124 pci_intr_handle_t ih; 124 pci_intr_handle_t ih;
125 const char *intrstr; 125 const char *intrstr;
126 void *ih_cookie; 126 void *ih_cookie;
127 127
128 if (pci_intr_map(pa, &ih)) 128 if (pci_intr_map(pa, &ih))
129 return -ENOENT; 129 return -ENOENT;
130 130
131 intrstr = pci_intr_string(pa->pa_pc, ih); 131 intrstr = pci_intr_string(pa->pa_pc, ih);
132 ih_cookie = pci_intr_establish(pa->pa_pc, ih, IPL_DRM, handler, arg); 132 ih_cookie = pci_intr_establish(pa->pa_pc, ih, IPL_DRM, handler, arg);
133 if (ih_cookie == NULL) { 133 if (ih_cookie == NULL) {
134 aprint_error_dev(dev->dev, 134 aprint_error_dev(dev->dev,
135 "couldn't establish interrupt at %s (%s)\n", 135 "couldn't establish interrupt at %s (%s)\n",
136 intrstr, name); 136 intrstr, name);
137 return -ENOENT; 137 return -ENOENT;
138 } 138 }
139 139
140 aprint_normal_dev(dev->dev, "interrupting at %s (%s)\n", 140 aprint_normal_dev(dev->dev, "interrupting at %s (%s)\n",
141 intrstr, name); 141 intrstr, name);
142 *cookiep = (struct drm_bus_irq_cookie *)ih_cookie; 142 *cookiep = (struct drm_bus_irq_cookie *)ih_cookie;
143 return 0; 143 return 0;
144} 144}
145 145
146static void 146static void
147drm_pci_irq_uninstall(struct drm_device *dev, 147drm_pci_irq_uninstall(struct drm_device *dev,
148 struct drm_bus_irq_cookie *cookie) 148 struct drm_bus_irq_cookie *cookie)
149{ 149{
150 const struct pci_attach_args *pa = drm_pci_attach_args(dev); 150 const struct pci_attach_args *pa = drm_pci_attach_args(dev);
151 151
152 pci_intr_disestablish(pa->pa_pc, (void *)cookie); 152 pci_intr_disestablish(pa->pa_pc, (void *)cookie);
153} 153}
154 154
155static const char * 155static const char *
156drm_pci_get_name(struct drm_device *dev) 156drm_pci_get_name(struct drm_device *dev)
157{ 157{
158 return "pci"; /* XXX PCI bus names? */ 158 return "pci"; /* XXX PCI bus names? */
159} 159}
160 160
161static int 161static int
162drm_pci_set_busid(struct drm_device *dev, struct drm_master *master) 162drm_pci_set_busid(struct drm_device *dev, struct drm_master *master)
163{ 163{
164 return -ENOSYS; /* XXX PCI bus ids? */ 164 return -ENOSYS; /* XXX PCI bus ids? */
165} 165}
166 166
167static int 167static int
168drm_pci_set_unique(struct drm_device *dev, struct drm_master *master, 168drm_pci_set_unique(struct drm_device *dev, struct drm_master *master,
169 struct drm_unique *unique) 169 struct drm_unique *unique)
170{ 170{
171 return -ENOSYS; /* XXX */ 171 return -ENOSYS; /* XXX */
172} 172}
173 173
174static int 174static int
175drm_pci_irq_by_busid(struct drm_device *dev, struct drm_irq_busid *busid) 175drm_pci_irq_by_busid(struct drm_device *dev, struct drm_irq_busid *busid)
176{ 176{
177 return -ENOSYS; /* XXX */ 177 return -ENOSYS; /* XXX */
178} 178}
179 179
180static int 180static int
181drm_pci_agp_init(struct drm_device *dev) 181drm_pci_agp_init(struct drm_device *dev)
182{ 182{
183 return -ENOSYS; /* XXX */ 183 return -ENOSYS; /* XXX */
184} 184}