/* $NetBSD: acpi_iort.c,v 1.4 2020/09/13 21:41:17 jmcneill Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Jared McNeill . * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include __KERNEL_RCSID(0, "$NetBSD: acpi_iort.c,v 1.4 2020/09/13 21:41:17 jmcneill Exp $"); #include #include #include #include #include #include static ACPI_IORT_ID_MAPPING * acpi_iort_id_map(ACPI_IORT_NODE *node, uint32_t *id) { ACPI_IORT_ID_MAPPING *map; uint32_t offset, n; offset = le32toh(node->MappingOffset); for (n = 0; n < le32toh(node->MappingCount); n++) { map = ACPI_ADD_PTR(ACPI_IORT_ID_MAPPING, node, offset); if (le32toh(map->Flags) & ACPI_IORT_ID_SINGLE_MAPPING) { *id = le32toh(map->OutputBase); return map; } if (*id >= le32toh(map->InputBase) && *id <= le32toh(map->InputBase) + le32toh(map->IdCount)) { *id = *id - le32toh(map->InputBase) + le32toh(map->OutputBase); return map; } offset += sizeof(ACPI_IORT_ID_MAPPING); } return NULL; } static ACPI_IORT_NODE * acpi_iort_find_ref(ACPI_TABLE_IORT *iort, ACPI_IORT_NODE *node, uint32_t *id) { ACPI_IORT_ID_MAPPING *map; map = acpi_iort_id_map(node, id); if (map == NULL) return NULL; return ACPI_ADD_PTR(ACPI_IORT_NODE, iort, le32toh(map->OutputReference)); } uint32_t acpi_iort_pci_root_map(u_int seg, uint32_t devid) { ACPI_TABLE_IORT *iort; ACPI_IORT_NODE *node; ACPI_IORT_ROOT_COMPLEX *root; uint32_t offset, n; ACPI_STATUS rv; rv = AcpiGetTable(ACPI_SIG_IORT, 0, (ACPI_TABLE_HEADER **)&iort); if (ACPI_FAILURE(rv)) return devid; offset = le32toh(iort->NodeOffset); for (n = 0; n < le32toh(iort->NodeCount); n++) { node = ACPI_ADD_PTR(ACPI_IORT_NODE, iort, offset); if (node->Type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) { root = (ACPI_IORT_ROOT_COMPLEX *)node->NodeData; if (le32toh(root->PciSegmentNumber) == seg) { const uint32_t odevid = devid; do { node = acpi_iort_find_ref(iort, node, &devid); } while (node != NULL); aprint_debug("ACPI: IORT mapped devid %#x -> devid %#x\n", odevid, devid); return devid; } } offset += le16toh(node->Length); } return devid; } uint32_t acpi_iort_its_id_map(u_int seg, uint32_t devid) { ACPI_TABLE_IORT *iort; ACPI_IORT_NODE *node; ACPI_IORT_ROOT_COMPLEX *root; ACPI_IORT_ITS_GROUP *its_group; uint32_t offset, n; ACPI_STATUS rv; rv = AcpiGetTable(ACPI_SIG_IORT, 0, (ACPI_TABLE_HEADER **)&iort); if (ACPI_FAILURE(rv)) return 0; offset = le32toh(iort->NodeOffset); for (n = 0; n < le32toh(iort->NodeCount); n++) { node = ACPI_ADD_PTR(ACPI_IORT_NODE, iort, offset); if (node->Type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) { root = (ACPI_IORT_ROOT_COMPLEX *)node->NodeData; if (le32toh(root->PciSegmentNumber) == seg) { const uint32_t odevid = devid; do { node = acpi_iort_find_ref(iort, node, &devid); if (node != NULL && node->Type == ACPI_IORT_NODE_ITS_GROUP) { its_group = (ACPI_IORT_ITS_GROUP *)node->NodeData; if (le32toh(its_group->ItsCount) == 0) return 0; aprint_debug("ACPI: IORT mapped devid %#x -> ITS %#x\n", odevid, le32toh(its_group->Identifiers[0])); return le32toh(its_group->Identifiers[0]); } } while (node != NULL); return 0; } } offset += le16toh(node->Length); } return 0; }