Home | History | Annotate | Line # | Download | only in acpi
acpipchb.c revision 1.9
      1 /* $NetBSD: acpipchb.c,v 1.9 2019/06/25 22:23:39 jmcneill Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 2018 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jared McNeill <jmcneill (at) invisible.ca>.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     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
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     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
     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
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 #include <sys/cdefs.h>
     33 __KERNEL_RCSID(0, "$NetBSD: acpipchb.c,v 1.9 2019/06/25 22:23:39 jmcneill Exp $");
     34 
     35 #include <sys/param.h>
     36 #include <sys/bus.h>
     37 #include <sys/device.h>
     38 #include <sys/intr.h>
     39 #include <sys/systm.h>
     40 #include <sys/kernel.h>
     41 #include <sys/extent.h>
     42 #include <sys/queue.h>
     43 #include <sys/mutex.h>
     44 #include <sys/kmem.h>
     45 
     46 #include <machine/cpu.h>
     47 
     48 #include <arm/cpufunc.h>
     49 
     50 #include <dev/pci/pcireg.h>
     51 #include <dev/pci/pcivar.h>
     52 #include <dev/pci/pciconf.h>
     53 
     54 #include <dev/acpi/acpivar.h>
     55 #include <dev/acpi/acpi_pci.h>
     56 #include <dev/acpi/acpi_mcfg.h>
     57 
     58 #include <arm/acpi/acpi_pci_machdep.h>
     59 
     60 #define	PCIHOST_CACHELINE_SIZE		arm_dcache_align
     61 
     62 #define	ACPIPCHB_MAX_RANGES	64	/* XXX arbitrary limit */
     63 
     64 struct acpipchb_bus_range {
     65 	bus_addr_t		min;
     66 	bus_addr_t		max;
     67 	bus_addr_t		offset;
     68 };
     69 
     70 struct acpipchb_bus_space {
     71 	struct bus_space	bs;
     72 
     73 	struct acpipchb_bus_range range[ACPIPCHB_MAX_RANGES];
     74 	int			nrange;
     75 
     76 	int			(*map)(void *, bus_addr_t, bus_size_t,
     77 				       int, bus_space_handle_t *);
     78 };
     79 
     80 struct acpipchb_softc {
     81 	device_t		sc_dev;
     82 
     83 	bus_space_tag_t		sc_memt;
     84 
     85 	struct arm32_bus_dma_tag sc_dmat;
     86 	struct acpi_pci_context sc_ap;
     87 
     88 	ACPI_HANDLE		sc_handle;
     89 	ACPI_INTEGER		sc_bus;
     90 
     91 	struct acpipchb_bus_space sc_pcimem_bst;
     92 	struct acpipchb_bus_space sc_pciio_bst;
     93 };
     94 
     95 static int	acpipchb_match(device_t, cfdata_t, void *);
     96 static void	acpipchb_attach(device_t, device_t, void *);
     97 
     98 static void	acpipchb_setup_ranges(struct acpipchb_softc *, struct pcibus_attach_args *);
     99 
    100 CFATTACH_DECL_NEW(acpipchb, sizeof(struct acpipchb_softc),
    101 	acpipchb_match, acpipchb_attach, NULL, NULL);
    102 
    103 static const char * const compatible[] = {
    104 	"PNP0A08",
    105 	NULL
    106 };
    107 
    108 static int
    109 acpipchb_match(device_t parent, cfdata_t cf, void *aux)
    110 {
    111 	struct acpi_attach_args *aa = aux;
    112 
    113 	if (aa->aa_node->ad_type != ACPI_TYPE_DEVICE)
    114 		return 0;
    115 
    116 	return acpi_match_hid(aa->aa_node->ad_devinfo, compatible);
    117 }
    118 
    119 static void
    120 acpipchb_attach(device_t parent, device_t self, void *aux)
    121 {
    122 	struct acpipchb_softc * const sc = device_private(self);
    123 	struct acpi_attach_args *aa = aux;
    124 	struct pcibus_attach_args pba;
    125 	ACPI_INTEGER cca, seg;
    126 
    127 	sc->sc_dev = self;
    128 	sc->sc_memt = aa->aa_memt;
    129 	sc->sc_handle = aa->aa_node->ad_handle;
    130 
    131 	if (ACPI_FAILURE(acpi_eval_integer(sc->sc_handle, "_BBN", &sc->sc_bus)))
    132 		sc->sc_bus = 0;
    133 
    134 	if (ACPI_FAILURE(acpi_eval_integer(sc->sc_handle, "_SEG", &seg)))
    135 		seg = 0;
    136 
    137 	if (ACPI_FAILURE(acpi_eval_integer(sc->sc_handle, "_CCA", &cca)))
    138 		cca = 1;
    139 
    140 	aprint_naive("\n");
    141 	aprint_normal(": PCI Express Host Bridge\n");
    142 
    143 	sc->sc_dmat = *aa->aa_dmat;
    144 	if (cca == 0)
    145 		sc->sc_dmat._nranges = 0;
    146 
    147 	sc->sc_ap.ap_pc = *aa->aa_pc;
    148 	sc->sc_ap.ap_pc.pc_conf_v = &sc->sc_ap;
    149 	sc->sc_ap.ap_seg = seg;
    150 
    151 	if (acpi_pci_ignore_boot_config(sc->sc_handle)) {
    152 		if (acpimcfg_configure_bus(self, &sc->sc_ap.ap_pc, sc->sc_handle, sc->sc_bus, PCIHOST_CACHELINE_SIZE) != 0)
    153 			aprint_error_dev(self, "failed to configure bus\n");
    154 	}
    155 
    156 	memset(&pba, 0, sizeof(pba));
    157 	pba.pba_flags = aa->aa_pciflags & ~(PCI_FLAGS_MEM_OKAY | PCI_FLAGS_IO_OKAY);
    158 	pba.pba_memt = 0;
    159 	pba.pba_iot = 0;
    160 	pba.pba_dmat = &sc->sc_dmat;
    161 #ifdef _PCI_HAVE_DMA64
    162 	pba.pba_dmat64 = &sc->sc_dmat;
    163 #endif
    164 	pba.pba_pc = &sc->sc_ap.ap_pc;
    165 	pba.pba_bus = sc->sc_bus;
    166 
    167 	acpipchb_setup_ranges(sc, &pba);
    168 
    169 	config_found_ia(self, "pcibus", &pba, pcibusprint);
    170 }
    171 
    172 struct acpipchb_setup_ranges_args {
    173 	struct acpipchb_softc *sc;
    174 	struct pcibus_attach_args *pba;
    175 };
    176 
    177 static int
    178 acpipchb_bus_space_map(void *t, bus_addr_t bpa, bus_size_t size, int flag,
    179     bus_space_handle_t *bshp)
    180 {
    181 	struct acpipchb_bus_space * const abs = t;
    182 	int i;
    183 
    184 	if (size == 0)
    185 		return ERANGE;
    186 
    187 	for (i = 0; i < abs->nrange; i++) {
    188 		struct acpipchb_bus_range * const range = &abs->range[i];
    189 		if (bpa >= range->min && bpa + size - 1 <= range->max)
    190 			return abs->map(t, bpa + range->offset, size, flag, bshp);
    191 	}
    192 
    193 	return ERANGE;
    194 }
    195 
    196 static ACPI_STATUS
    197 acpipchb_setup_ranges_cb(ACPI_RESOURCE *res, void *ctx)
    198 {
    199 	struct acpipchb_setup_ranges_args * const args = ctx;
    200 	struct acpipchb_softc * const sc = args->sc;
    201 	struct pcibus_attach_args *pba = args->pba;
    202 	struct acpipchb_bus_space *abs;
    203 	struct acpipchb_bus_range *range;
    204 	const char *range_type;
    205 	u_int pci_flags;
    206 
    207 	if (res->Type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
    208 	    res->Type != ACPI_RESOURCE_TYPE_ADDRESS64)
    209 		return AE_OK;
    210 
    211 	switch (res->Data.Address.ResourceType) {
    212 	case ACPI_IO_RANGE:
    213 		abs = &sc->sc_pciio_bst;
    214 		range_type = "I/O";
    215 		pci_flags = PCI_FLAGS_IO_OKAY;
    216 		break;
    217 	case ACPI_MEMORY_RANGE:
    218 		abs = &sc->sc_pcimem_bst;
    219 		range_type = "MEM";
    220 		pci_flags = PCI_FLAGS_MEM_OKAY;
    221 		break;
    222 	default:
    223 		return AE_OK;
    224 	}
    225 
    226 	if (abs->nrange == ACPIPCHB_MAX_RANGES) {
    227 		aprint_error_dev(sc->sc_dev,
    228 		    "maximum number of ranges reached, increase ACPIPCHB_MAX_RANGES\n");
    229 		return AE_LIMIT;
    230 	}
    231 
    232 	range = &abs->range[abs->nrange];
    233 	switch (res->Type) {
    234 	case ACPI_RESOURCE_TYPE_ADDRESS32:
    235 		range->min = res->Data.Address32.Address.Minimum;
    236 		range->max = res->Data.Address32.Address.Maximum;
    237 		range->offset = res->Data.Address32.Address.TranslationOffset;
    238 		break;
    239 	case ACPI_RESOURCE_TYPE_ADDRESS64:
    240 		range->min = res->Data.Address64.Address.Minimum;
    241 		range->max = res->Data.Address64.Address.Maximum;
    242 		range->offset = res->Data.Address64.Address.TranslationOffset;
    243 		break;
    244 	default:
    245 		return AE_OK;
    246 	}
    247 	abs->nrange++;
    248 
    249 	aprint_debug_dev(sc->sc_dev, "PCI %s [%#lx-%#lx] -> %#lx\n", range_type, range->min, range->max, range->offset);
    250 
    251 	if ((pba->pba_flags & pci_flags) == 0) {
    252 		abs->bs = *sc->sc_memt;
    253 		abs->bs.bs_cookie = abs;
    254 		abs->map = abs->bs.bs_map;
    255 		abs->bs.bs_map = acpipchb_bus_space_map;
    256 		if ((pci_flags & PCI_FLAGS_IO_OKAY) != 0)
    257 			pba->pba_iot = &abs->bs;
    258 		else if ((pci_flags & PCI_FLAGS_MEM_OKAY) != 0)
    259 			pba->pba_memt = &abs->bs;
    260 		pba->pba_flags |= pci_flags;
    261 	}
    262 
    263 	return AE_OK;
    264 }
    265 
    266 static void
    267 acpipchb_setup_ranges(struct acpipchb_softc *sc, struct pcibus_attach_args *pba)
    268 {
    269 	struct acpipchb_setup_ranges_args args;
    270 
    271 	args.sc = sc;
    272 	args.pba = pba;
    273 
    274 	AcpiWalkResources(sc->sc_handle, "_CRS", acpipchb_setup_ranges_cb, &args);
    275 }
    276