drm_pci.c revision 1.24 1 1.19 riastrad /* $NetBSD: drm_pci.c,v 1.24 2018/08/27 07:55:59 riastradh Exp $ */
2 1.2 riastrad
3 1.2 riastrad /*-
4 1.2 riastrad * Copyright (c) 2013 The NetBSD Foundation, Inc.
5 1.2 riastrad * All rights reserved.
6 1.2 riastrad *
7 1.2 riastrad * This code is derived from software contributed to The NetBSD Foundation
8 1.2 riastrad * by Taylor R. Campbell.
9 1.2 riastrad *
10 1.2 riastrad * Redistribution and use in source and binary forms, with or without
11 1.2 riastrad * modification, are permitted provided that the following conditions
12 1.2 riastrad * are met:
13 1.2 riastrad * 1. Redistributions of source code must retain the above copyright
14 1.2 riastrad * notice, this list of conditions and the following disclaimer.
15 1.2 riastrad * 2. Redistributions in binary form must reproduce the above copyright
16 1.2 riastrad * notice, this list of conditions and the following disclaimer in the
17 1.2 riastrad * documentation and/or other materials provided with the distribution.
18 1.2 riastrad *
19 1.2 riastrad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.2 riastrad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.2 riastrad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.2 riastrad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.2 riastrad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.2 riastrad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.2 riastrad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.2 riastrad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.2 riastrad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.2 riastrad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.2 riastrad * POSSIBILITY OF SUCH DAMAGE.
30 1.2 riastrad */
31 1.2 riastrad
32 1.2 riastrad #include <sys/cdefs.h>
33 1.19 riastrad __KERNEL_RCSID(0, "$NetBSD: drm_pci.c,v 1.24 2018/08/27 07:55:59 riastradh Exp $");
34 1.2 riastrad
35 1.2 riastrad #include <sys/types.h>
36 1.2 riastrad #include <sys/errno.h>
37 1.2 riastrad #include <sys/systm.h>
38 1.2 riastrad
39 1.2 riastrad #include <dev/pci/pcivar.h>
40 1.2 riastrad
41 1.2 riastrad #include <drm/drmP.h>
42 1.22 riastrad #include <drm/drm_legacy.h>
43 1.23 riastrad #include <drm/drm_internal.h>
44 1.2 riastrad
45 1.16 nonaka struct drm_bus_irq_cookie {
46 1.16 nonaka pci_intr_handle_t *intr_handles;
47 1.16 nonaka void *ih_cookie;
48 1.16 nonaka };
49 1.16 nonaka
50 1.2 riastrad static const struct pci_attach_args *
51 1.2 riastrad drm_pci_attach_args(struct drm_device *dev)
52 1.2 riastrad {
53 1.2 riastrad return &dev->pdev->pd_pa;
54 1.2 riastrad }
55 1.2 riastrad
56 1.2 riastrad int
57 1.22 riastrad drm_pci_init(struct drm_driver *driver __unused,
58 1.22 riastrad struct pci_driver *pdriver __unused)
59 1.2 riastrad {
60 1.2 riastrad
61 1.2 riastrad return 0;
62 1.2 riastrad }
63 1.2 riastrad
64 1.2 riastrad void
65 1.2 riastrad drm_pci_exit(struct drm_driver *driver __unused,
66 1.2 riastrad struct pci_driver *pdriver __unused)
67 1.2 riastrad {
68 1.2 riastrad }
69 1.2 riastrad
70 1.4 riastrad int
71 1.2 riastrad drm_pci_attach(device_t self, const struct pci_attach_args *pa,
72 1.4 riastrad struct pci_dev *pdev, struct drm_driver *driver, unsigned long cookie,
73 1.4 riastrad struct drm_device **devp)
74 1.2 riastrad {
75 1.4 riastrad struct drm_device *dev;
76 1.2 riastrad unsigned int unit;
77 1.4 riastrad int ret;
78 1.2 riastrad
79 1.10 riastrad /* Ensure the drm agp hooks are installed. */
80 1.10 riastrad /* XXX errno NetBSD->Linux */
81 1.10 riastrad ret = -drmkms_pci_agp_guarantee_initialized();
82 1.10 riastrad if (ret)
83 1.10 riastrad goto fail0;
84 1.10 riastrad
85 1.4 riastrad /* Initialize the Linux PCI device descriptor. */
86 1.2 riastrad linux_pci_dev_init(pdev, self, pa, 0);
87 1.2 riastrad
88 1.4 riastrad /* Create a DRM device. */
89 1.4 riastrad dev = drm_dev_alloc(driver, self);
90 1.4 riastrad if (dev == NULL) {
91 1.4 riastrad ret = -ENOMEM;
92 1.4 riastrad goto fail0;
93 1.4 riastrad }
94 1.4 riastrad
95 1.2 riastrad dev->pdev = pdev;
96 1.11 riastrad pdev->pd_drm_dev = dev; /* XXX Nouveau kludge. */
97 1.2 riastrad
98 1.2 riastrad /* XXX Set the power state to D0? */
99 1.2 riastrad
100 1.4 riastrad /* Set up the bus space and bus DMA tags. */
101 1.2 riastrad dev->bst = pa->pa_memt;
102 1.2 riastrad /* XXX Let the driver say something about 32-bit vs 64-bit DMA? */
103 1.2 riastrad dev->bus_dmat = (pci_dma64_available(pa)? pa->pa_dmat64 : pa->pa_dmat);
104 1.2 riastrad dev->dmat = dev->bus_dmat;
105 1.2 riastrad dev->dmat_subregion_p = false;
106 1.2 riastrad
107 1.4 riastrad /* Find all the memory maps. */
108 1.4 riastrad CTASSERT(PCI_NUM_RESOURCES < (SIZE_MAX / sizeof(dev->bus_maps[0])));
109 1.4 riastrad dev->bus_maps = kmem_zalloc(PCI_NUM_RESOURCES *
110 1.4 riastrad sizeof(dev->bus_maps[0]), KM_SLEEP);
111 1.4 riastrad dev->bus_nmaps = PCI_NUM_RESOURCES;
112 1.4 riastrad for (unit = 0; unit < PCI_NUM_RESOURCES; unit++) {
113 1.2 riastrad struct drm_bus_map *const bm = &dev->bus_maps[unit];
114 1.2 riastrad const int reg = PCI_BAR(unit);
115 1.2 riastrad const pcireg_t type =
116 1.2 riastrad pci_mapreg_type(pa->pa_pc, pa->pa_tag, reg);
117 1.2 riastrad
118 1.2 riastrad /* Reject non-memory mappings. */
119 1.2 riastrad if ((type & PCI_MAPREG_TYPE_MEM) != PCI_MAPREG_TYPE_MEM) {
120 1.2 riastrad aprint_debug_dev(self, "map %u has non-memory type:"
121 1.2 riastrad " 0x%"PRIxMAX"\n", unit, (uintmax_t)type);
122 1.2 riastrad continue;
123 1.2 riastrad }
124 1.2 riastrad
125 1.20 riastrad /* Inquire about it. We'll map it in drm_legacy_ioremap. */
126 1.2 riastrad if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, reg, type,
127 1.2 riastrad &bm->bm_base, &bm->bm_size, &bm->bm_flags) != 0) {
128 1.2 riastrad aprint_debug_dev(self, "map %u failed\n", unit);
129 1.2 riastrad continue;
130 1.2 riastrad }
131 1.2 riastrad
132 1.2 riastrad /* Assume since it is a memory mapping it can be linear. */
133 1.2 riastrad bm->bm_flags |= BUS_SPACE_MAP_LINEAR;
134 1.2 riastrad }
135 1.2 riastrad
136 1.4 riastrad /* Set up AGP stuff if requested. */
137 1.4 riastrad if (drm_core_check_feature(dev, DRIVER_USE_AGP)) {
138 1.4 riastrad if (drm_pci_device_is_agp(dev))
139 1.4 riastrad dev->agp = drm_agp_init(dev);
140 1.4 riastrad if (dev->agp)
141 1.4 riastrad dev->agp->agp_mtrr = arch_phys_wc_add(dev->agp->base,
142 1.4 riastrad dev->agp->agp_info.aki_info.ai_aperture_size);
143 1.4 riastrad }
144 1.4 riastrad
145 1.4 riastrad /* Register the DRM device and do driver-specific initialization. */
146 1.4 riastrad ret = drm_dev_register(dev, cookie);
147 1.4 riastrad if (ret)
148 1.4 riastrad goto fail1;
149 1.4 riastrad
150 1.4 riastrad /* Success! */
151 1.4 riastrad *devp = dev;
152 1.4 riastrad return 0;
153 1.4 riastrad
154 1.4 riastrad fail2: __unused
155 1.4 riastrad drm_dev_unregister(dev);
156 1.4 riastrad fail1: drm_pci_agp_destroy(dev);
157 1.4 riastrad dev->bus_nmaps = 0;
158 1.4 riastrad kmem_free(dev->bus_maps, PCI_NUM_RESOURCES * sizeof(dev->bus_maps[0]));
159 1.5 riastrad if (dev->dmat_subregion_p)
160 1.5 riastrad bus_dmatag_destroy(dev->dmat);
161 1.4 riastrad drm_dev_unref(dev);
162 1.4 riastrad fail0: return ret;
163 1.2 riastrad }
164 1.2 riastrad
165 1.2 riastrad int
166 1.4 riastrad drm_pci_detach(struct drm_device *dev, int flags __unused)
167 1.2 riastrad {
168 1.2 riastrad
169 1.4 riastrad /* Do driver-specific detachment and unregister the device. */
170 1.4 riastrad drm_dev_unregister(dev);
171 1.4 riastrad
172 1.4 riastrad /* Tear down AGP stuff if necessary. */
173 1.8 riastrad drm_pci_agp_destroy(dev);
174 1.4 riastrad
175 1.4 riastrad /* Free the record of available bus space mappings. */
176 1.4 riastrad dev->bus_nmaps = 0;
177 1.4 riastrad kmem_free(dev->bus_maps, PCI_NUM_RESOURCES * sizeof(dev->bus_maps[0]));
178 1.2 riastrad
179 1.4 riastrad /* Tear down bus space and bus DMA tags. */
180 1.2 riastrad if (dev->dmat_subregion_p)
181 1.2 riastrad bus_dmatag_destroy(dev->dmat);
182 1.2 riastrad
183 1.4 riastrad drm_dev_unref(dev);
184 1.4 riastrad
185 1.2 riastrad return 0;
186 1.2 riastrad }
187 1.2 riastrad
188 1.4 riastrad void
189 1.4 riastrad drm_pci_agp_destroy(struct drm_device *dev)
190 1.4 riastrad {
191 1.4 riastrad
192 1.4 riastrad if (dev->agp) {
193 1.4 riastrad arch_phys_wc_del(dev->agp->agp_mtrr);
194 1.4 riastrad drm_agp_clear(dev);
195 1.4 riastrad kfree(dev->agp); /* XXX Should go in drm_agp_clear... */
196 1.4 riastrad dev->agp = NULL;
197 1.4 riastrad }
198 1.4 riastrad }
199 1.4 riastrad
200 1.22 riastrad int
201 1.22 riastrad drm_pci_request_irq(struct drm_device *dev, int flags)
202 1.2 riastrad {
203 1.22 riastrad const char *const name = device_xname(dev->dev);
204 1.22 riastrad int (*const handler)(void *) = dev->driver->irq_handler;
205 1.2 riastrad const struct pci_attach_args *const pa = drm_pci_attach_args(dev);
206 1.2 riastrad const char *intrstr;
207 1.3 christos char intrbuf[PCI_INTRSTR_LEN];
208 1.16 nonaka struct drm_bus_irq_cookie *irq_cookie;
209 1.2 riastrad
210 1.16 nonaka irq_cookie = kmem_alloc(sizeof(*irq_cookie), KM_SLEEP);
211 1.16 nonaka
212 1.16 nonaka if (dev->pdev->msi_enabled) {
213 1.21 riastrad if (dev->pdev->pd_intr_handles == NULL) {
214 1.18 nonaka if (pci_msi_alloc_exact(pa, &irq_cookie->intr_handles,
215 1.18 nonaka 1)) {
216 1.18 nonaka aprint_error_dev(dev->dev,
217 1.18 nonaka "couldn't allocate MSI (%s)\n", name);
218 1.18 nonaka goto error;
219 1.18 nonaka }
220 1.18 nonaka } else {
221 1.21 riastrad irq_cookie->intr_handles = dev->pdev->pd_intr_handles;
222 1.21 riastrad dev->pdev->pd_intr_handles = NULL;
223 1.18 nonaka }
224 1.16 nonaka } else {
225 1.18 nonaka if (pci_intx_alloc(pa, &irq_cookie->intr_handles)) {
226 1.18 nonaka aprint_error_dev(dev->dev,
227 1.18 nonaka "couldn't allocate INTx interrupt (%s)\n", name);
228 1.18 nonaka goto error;
229 1.18 nonaka }
230 1.16 nonaka }
231 1.2 riastrad
232 1.16 nonaka intrstr = pci_intr_string(pa->pa_pc, irq_cookie->intr_handles[0],
233 1.16 nonaka intrbuf, sizeof(intrbuf));
234 1.16 nonaka irq_cookie->ih_cookie = pci_intr_establish_xname(pa->pa_pc,
235 1.22 riastrad irq_cookie->intr_handles[0], IPL_DRM, handler, dev, name);
236 1.16 nonaka if (irq_cookie->ih_cookie == NULL) {
237 1.2 riastrad aprint_error_dev(dev->dev,
238 1.16 nonaka "couldn't establish interrupt at %s (%s)\n", intrstr, name);
239 1.18 nonaka pci_intr_release(pa->pa_pc, irq_cookie->intr_handles, 1);
240 1.18 nonaka goto error;
241 1.2 riastrad }
242 1.2 riastrad
243 1.16 nonaka aprint_normal_dev(dev->dev, "interrupting at %s (%s)\n", intrstr, name);
244 1.22 riastrad dev->irq_cookie = irq_cookie;
245 1.2 riastrad return 0;
246 1.18 nonaka
247 1.18 nonaka error:
248 1.18 nonaka kmem_free(irq_cookie, sizeof(*irq_cookie));
249 1.18 nonaka return -ENOENT;
250 1.2 riastrad }
251 1.2 riastrad
252 1.22 riastrad void
253 1.22 riastrad drm_pci_free_irq(struct drm_device *dev)
254 1.2 riastrad {
255 1.22 riastrad struct drm_bus_irq_cookie *const cookie = dev->irq_cookie;
256 1.2 riastrad const struct pci_attach_args *pa = drm_pci_attach_args(dev);
257 1.2 riastrad
258 1.16 nonaka pci_intr_disestablish(pa->pa_pc, cookie->ih_cookie);
259 1.16 nonaka pci_intr_release(pa->pa_pc, cookie->intr_handles, 1);
260 1.16 nonaka kmem_free(cookie, sizeof(*cookie));
261 1.22 riastrad dev->irq_cookie = NULL;
262 1.2 riastrad }
263 1.2 riastrad
264 1.19 riastrad int
265 1.2 riastrad drm_pci_set_busid(struct drm_device *dev, struct drm_master *master)
266 1.2 riastrad {
267 1.22 riastrad const struct pci_attach_args *const pa = &dev->pdev->pd_pa;
268 1.2 riastrad
269 1.22 riastrad master->unique = kasprintf(GFP_KERNEL, "pci:%04x:%02x:%02x.%d",
270 1.22 riastrad device_unit(device_parent(dev->dev)),
271 1.22 riastrad pa->pa_bus, pa->pa_device, pa->pa_function);
272 1.22 riastrad if (master->unique == NULL)
273 1.22 riastrad return -ENOMEM;
274 1.22 riastrad master->unique_len = strlen(master->unique);
275 1.2 riastrad
276 1.2 riastrad return 0;
277 1.2 riastrad }
278 1.23 riastrad
279 1.23 riastrad int
280 1.23 riastrad drm_irq_by_busid(struct drm_device *dev, void *data, struct drm_file *file)
281 1.23 riastrad {
282 1.23 riastrad
283 1.24 riastrad return -ENODEV;
284 1.24 riastrad }
285 1.24 riastrad
286 1.24 riastrad int
287 1.24 riastrad drm_pci_set_unique(struct drm_device *dev, struct drm_master *master,
288 1.24 riastrad struct drm_unique *unique)
289 1.24 riastrad {
290 1.24 riastrad char kbuf[64], ubuf[64];
291 1.24 riastrad int ret;
292 1.24 riastrad
293 1.24 riastrad /* Reject excessively long unique strings. */
294 1.24 riastrad if (unique->unique_len > sizeof(ubuf) - 1)
295 1.24 riastrad return -EINVAL;
296 1.24 riastrad
297 1.24 riastrad /* Copy in the alleged unique string, NUL-terminated. */
298 1.24 riastrad ret = -copyin(unique->unique, ubuf, unique->unique_len);
299 1.24 riastrad if (ret)
300 1.24 riastrad return ret;
301 1.24 riastrad ubuf[unique->unique_len] = '\0';
302 1.24 riastrad
303 1.24 riastrad /* Make sure it matches what we expect. */
304 1.24 riastrad snprintf(kbuf, sizeof kbuf, "PCI:%d:%ld:%ld", dev->pdev->bus->number,
305 1.24 riastrad PCI_SLOT(dev->pdev->devfn), PCI_FUNC(dev->pdev->devfn));
306 1.24 riastrad if (strncmp(kbuf, ubuf, sizeof(kbuf)) != 0)
307 1.24 riastrad return -EINVAL;
308 1.24 riastrad
309 1.24 riastrad /* Remember it. */
310 1.24 riastrad master->unique = kstrdup(ubuf, GFP_KERNEL);
311 1.24 riastrad master->unique_len = strlen(master->unique);
312 1.24 riastrad
313 1.24 riastrad /* Success! */
314 1.24 riastrad return 0;
315 1.23 riastrad }
316