1 1.48 riastrad /* $NetBSD: drm_pci.c,v 1.48 2022/10/28 21:58:48 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.48 riastrad __KERNEL_RCSID(0, "$NetBSD: drm_pci.c,v 1.48 2022/10/28 21:58:48 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.43 riastrad #include <linux/err.h> 42 1.42 riastrad #include <drm/drm_agpsupport.h> 43 1.41 riastrad #include <drm/drm_device.h> 44 1.37 riastrad #include <drm/drm_drv.h> 45 1.22 riastrad #include <drm/drm_legacy.h> 46 1.41 riastrad #include <drm/drm_pci.h> 47 1.2 riastrad 48 1.35 riastrad #include "../dist/drm/drm_internal.h" 49 1.35 riastrad 50 1.16 nonaka struct drm_bus_irq_cookie { 51 1.16 nonaka pci_intr_handle_t *intr_handles; 52 1.16 nonaka void *ih_cookie; 53 1.16 nonaka }; 54 1.16 nonaka 55 1.2 riastrad static const struct pci_attach_args * 56 1.2 riastrad drm_pci_attach_args(struct drm_device *dev) 57 1.2 riastrad { 58 1.2 riastrad return &dev->pdev->pd_pa; 59 1.2 riastrad } 60 1.2 riastrad 61 1.2 riastrad int 62 1.46 riastrad drm_pci_attach(struct drm_device *dev, struct pci_dev *pdev) 63 1.2 riastrad { 64 1.44 riastrad device_t self = dev->dev; 65 1.46 riastrad const struct pci_attach_args *pa = &pdev->pd_pa; 66 1.2 riastrad unsigned int unit; 67 1.4 riastrad int ret; 68 1.2 riastrad 69 1.31 riastrad /* Ensure the drm agp hooks are initialized. */ 70 1.10 riastrad /* XXX errno NetBSD->Linux */ 71 1.31 riastrad ret = -drm_guarantee_initialized(); 72 1.10 riastrad if (ret) 73 1.44 riastrad return ret; 74 1.4 riastrad 75 1.2 riastrad dev->pdev = pdev; 76 1.2 riastrad 77 1.2 riastrad /* XXX Set the power state to D0? */ 78 1.2 riastrad 79 1.4 riastrad /* Set up the bus space and bus DMA tags. */ 80 1.2 riastrad dev->bst = pa->pa_memt; 81 1.2 riastrad dev->bus_dmat = (pci_dma64_available(pa)? pa->pa_dmat64 : pa->pa_dmat); 82 1.29 riastrad dev->bus_dmat32 = pa->pa_dmat; 83 1.2 riastrad dev->dmat = dev->bus_dmat; 84 1.2 riastrad dev->dmat_subregion_p = false; 85 1.29 riastrad dev->dmat_subregion_min = 0; 86 1.29 riastrad dev->dmat_subregion_max = __type_max(bus_addr_t); 87 1.2 riastrad 88 1.4 riastrad /* Find all the memory maps. */ 89 1.4 riastrad CTASSERT(PCI_NUM_RESOURCES < (SIZE_MAX / sizeof(dev->bus_maps[0]))); 90 1.4 riastrad dev->bus_maps = kmem_zalloc(PCI_NUM_RESOURCES * 91 1.4 riastrad sizeof(dev->bus_maps[0]), KM_SLEEP); 92 1.4 riastrad dev->bus_nmaps = PCI_NUM_RESOURCES; 93 1.4 riastrad for (unit = 0; unit < PCI_NUM_RESOURCES; unit++) { 94 1.2 riastrad struct drm_bus_map *const bm = &dev->bus_maps[unit]; 95 1.2 riastrad const int reg = PCI_BAR(unit); 96 1.2 riastrad const pcireg_t type = 97 1.2 riastrad pci_mapreg_type(pa->pa_pc, pa->pa_tag, reg); 98 1.2 riastrad 99 1.2 riastrad /* Reject non-memory mappings. */ 100 1.2 riastrad if ((type & PCI_MAPREG_TYPE_MEM) != PCI_MAPREG_TYPE_MEM) { 101 1.2 riastrad aprint_debug_dev(self, "map %u has non-memory type:" 102 1.2 riastrad " 0x%"PRIxMAX"\n", unit, (uintmax_t)type); 103 1.2 riastrad continue; 104 1.2 riastrad } 105 1.2 riastrad 106 1.32 riastrad /* 107 1.32 riastrad * If it's a 64-bit mapping, don't interpret the second 108 1.32 riastrad * half of it as another BAR in the next iteration of 109 1.32 riastrad * the loop -- move on to the next unit. 110 1.32 riastrad */ 111 1.32 riastrad if (PCI_MAPREG_MEM_TYPE(type) == PCI_MAPREG_MEM_TYPE_64BIT) 112 1.32 riastrad unit++; 113 1.32 riastrad 114 1.20 riastrad /* Inquire about it. We'll map it in drm_legacy_ioremap. */ 115 1.2 riastrad if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, reg, type, 116 1.2 riastrad &bm->bm_base, &bm->bm_size, &bm->bm_flags) != 0) { 117 1.2 riastrad aprint_debug_dev(self, "map %u failed\n", unit); 118 1.2 riastrad continue; 119 1.2 riastrad } 120 1.2 riastrad 121 1.2 riastrad /* Assume since it is a memory mapping it can be linear. */ 122 1.2 riastrad bm->bm_flags |= BUS_SPACE_MAP_LINEAR; 123 1.2 riastrad } 124 1.2 riastrad 125 1.4 riastrad /* Set up AGP stuff if requested. */ 126 1.4 riastrad if (drm_core_check_feature(dev, DRIVER_USE_AGP)) { 127 1.34 riastrad if (pci_find_capability(dev->pdev, PCI_CAP_ID_AGP)) 128 1.4 riastrad dev->agp = drm_agp_init(dev); 129 1.4 riastrad if (dev->agp) 130 1.4 riastrad dev->agp->agp_mtrr = arch_phys_wc_add(dev->agp->base, 131 1.4 riastrad dev->agp->agp_info.aki_info.ai_aperture_size); 132 1.4 riastrad } 133 1.4 riastrad 134 1.4 riastrad /* Success! */ 135 1.4 riastrad return 0; 136 1.2 riastrad } 137 1.2 riastrad 138 1.44 riastrad void 139 1.44 riastrad drm_pci_detach(struct drm_device *dev) 140 1.2 riastrad { 141 1.2 riastrad 142 1.4 riastrad /* Tear down AGP stuff if necessary. */ 143 1.47 riastrad if (dev->agp) { 144 1.47 riastrad arch_phys_wc_del(dev->agp->agp_mtrr); 145 1.47 riastrad drm_agp_fini(dev); 146 1.47 riastrad KASSERT(dev->agp == NULL); 147 1.47 riastrad } 148 1.4 riastrad 149 1.4 riastrad /* Free the record of available bus space mappings. */ 150 1.4 riastrad dev->bus_nmaps = 0; 151 1.4 riastrad kmem_free(dev->bus_maps, PCI_NUM_RESOURCES * sizeof(dev->bus_maps[0])); 152 1.2 riastrad 153 1.4 riastrad /* Tear down bus space and bus DMA tags. */ 154 1.27 riastrad if (dev->dmat_subregion_p) { 155 1.2 riastrad bus_dmatag_destroy(dev->dmat); 156 1.27 riastrad } 157 1.2 riastrad } 158 1.2 riastrad 159 1.22 riastrad int 160 1.22 riastrad drm_pci_request_irq(struct drm_device *dev, int flags) 161 1.2 riastrad { 162 1.22 riastrad const char *const name = device_xname(dev->dev); 163 1.22 riastrad int (*const handler)(void *) = dev->driver->irq_handler; 164 1.2 riastrad const struct pci_attach_args *const pa = drm_pci_attach_args(dev); 165 1.2 riastrad const char *intrstr; 166 1.3 christos char intrbuf[PCI_INTRSTR_LEN]; 167 1.16 nonaka struct drm_bus_irq_cookie *irq_cookie; 168 1.2 riastrad 169 1.16 nonaka irq_cookie = kmem_alloc(sizeof(*irq_cookie), KM_SLEEP); 170 1.16 nonaka 171 1.16 nonaka if (dev->pdev->msi_enabled) { 172 1.21 riastrad if (dev->pdev->pd_intr_handles == NULL) { 173 1.18 nonaka if (pci_msi_alloc_exact(pa, &irq_cookie->intr_handles, 174 1.18 nonaka 1)) { 175 1.18 nonaka aprint_error_dev(dev->dev, 176 1.18 nonaka "couldn't allocate MSI (%s)\n", name); 177 1.18 nonaka goto error; 178 1.18 nonaka } 179 1.18 nonaka } else { 180 1.21 riastrad irq_cookie->intr_handles = dev->pdev->pd_intr_handles; 181 1.21 riastrad dev->pdev->pd_intr_handles = NULL; 182 1.18 nonaka } 183 1.16 nonaka } else { 184 1.18 nonaka if (pci_intx_alloc(pa, &irq_cookie->intr_handles)) { 185 1.18 nonaka aprint_error_dev(dev->dev, 186 1.18 nonaka "couldn't allocate INTx interrupt (%s)\n", name); 187 1.18 nonaka goto error; 188 1.18 nonaka } 189 1.16 nonaka } 190 1.2 riastrad 191 1.48 riastrad pci_intr_setattr(pa->pa_pc, &irq_cookie->intr_handles[0], 192 1.48 riastrad PCI_INTR_MPSAFE, true); 193 1.16 nonaka intrstr = pci_intr_string(pa->pa_pc, irq_cookie->intr_handles[0], 194 1.16 nonaka intrbuf, sizeof(intrbuf)); 195 1.16 nonaka irq_cookie->ih_cookie = pci_intr_establish_xname(pa->pa_pc, 196 1.22 riastrad irq_cookie->intr_handles[0], IPL_DRM, handler, dev, name); 197 1.16 nonaka if (irq_cookie->ih_cookie == NULL) { 198 1.2 riastrad aprint_error_dev(dev->dev, 199 1.16 nonaka "couldn't establish interrupt at %s (%s)\n", intrstr, name); 200 1.18 nonaka pci_intr_release(pa->pa_pc, irq_cookie->intr_handles, 1); 201 1.18 nonaka goto error; 202 1.2 riastrad } 203 1.2 riastrad 204 1.16 nonaka aprint_normal_dev(dev->dev, "interrupting at %s (%s)\n", intrstr, name); 205 1.22 riastrad dev->irq_cookie = irq_cookie; 206 1.2 riastrad return 0; 207 1.18 nonaka 208 1.18 nonaka error: 209 1.18 nonaka kmem_free(irq_cookie, sizeof(*irq_cookie)); 210 1.18 nonaka return -ENOENT; 211 1.2 riastrad } 212 1.2 riastrad 213 1.22 riastrad void 214 1.22 riastrad drm_pci_free_irq(struct drm_device *dev) 215 1.2 riastrad { 216 1.22 riastrad struct drm_bus_irq_cookie *const cookie = dev->irq_cookie; 217 1.2 riastrad const struct pci_attach_args *pa = drm_pci_attach_args(dev); 218 1.2 riastrad 219 1.16 nonaka pci_intr_disestablish(pa->pa_pc, cookie->ih_cookie); 220 1.16 nonaka pci_intr_release(pa->pa_pc, cookie->intr_handles, 1); 221 1.16 nonaka kmem_free(cookie, sizeof(*cookie)); 222 1.22 riastrad dev->irq_cookie = NULL; 223 1.2 riastrad } 224