/* * Copyright (c) 2009, Intel Corporation. * All rights reserved. */ /* * There are three types of container object defined in ACPI sepc as below. * PNP0A05: Generic Container Device * A device whose settings are totally controlled by its ACPI resource * information, and otherwise needs no device or bus-specific driver support. * This was originally known as Generic ISA Bus Device. * This ID should only be used for containers that do not produce resources * for consumption by child devices. Any system resources claimed by a PNP0A05 * device's _CRS object must be consumed by the container itself. * PNP0A06: Generic Container Device * This device behaves exactly the same as the PNP0A05 device. * This was originally known as Extended I/O Bus. * This ID should only be used for containers that do not produce resources * for consumption by child devices. Any system resources claimed by a PNP0A06 * device's _CRS object must be consumed by the container itself. * ACPI0004: Module Device. * This device is a container object that acts as a bus node in a namespace. * A Module Device without any of the _CRS, _PRS and _SRS methods behaves * the same way as the Generic Container Devices (PNP0A05 or PNP0A06). * If the Module Device contains a _CRS method, only these resources * described in the _CRS are available for consumption by its child devices. * Also, the Module Device can support _PRS and _SRS methods if _CRS is * supported. */ #include #include #include #include #include #include #include #include static ACPI_STATUS acpidev_container_probe(acpidev_walk_info_t *infop); static acpidev_filter_result_t acpidev_container_filter( acpidev_walk_info_t *infop, char *devname, int maxlen); static ACPI_STATUS acpidev_container_init(acpidev_walk_info_t *infop); static acpidev_filter_result_t acpidev_container_filter_func( acpidev_walk_info_t *infop, ACPI_HANDLE hdl, acpidev_filter_rule_t *rulep, char *devname, int devnamelen); /* * Default class driver for ACPI container objects. */ acpidev_class_t acpidev_class_container = { 0, /* adc_refcnt */ ACPIDEV_CLASS_REV1, /* adc_version */ ACPIDEV_CLASS_ID_CONTAINER, /* adc_class_id */ "ACPI Container", /* adc_class_name */ ACPIDEV_TYPE_CONTAINER, /* adc_dev_type */ NULL, /* adc_private */ NULL, /* adc_pre_probe */ NULL, /* adc_post_probe */ acpidev_container_probe, /* adc_probe */ acpidev_container_filter, /* adc_filter */ acpidev_container_init, /* adc_init */ NULL, /* adc_fini */ }; static char *acpidev_container_device_ids[] = { ACPIDEV_HID_MODULE, ACPIDEV_HID_CONTAINER1, ACPIDEV_HID_CONTAINER2, }; static char *acpidev_container_uid_formats[] = { "CPUSCK%x", }; /* Filter rule table for container objects. */ static acpidev_filter_rule_t acpidev_container_filters[] = { { /* Ignore all container objects under ACPI root object */ NULL, 0, ACPIDEV_FILTER_SKIP, NULL, 1, 1, NULL, NULL, }, { /* Create node and scan child for all other container objects */ acpidev_container_filter_func, 0, ACPIDEV_FILTER_DEFAULT, &acpidev_class_list_device, 2, INT_MAX, NULL, ACPIDEV_NODE_NAME_CONTAINER, } }; static ACPI_STATUS acpidev_container_probe(acpidev_walk_info_t *infop) { ACPI_STATUS rc; int flags; ASSERT(infop != NULL); ASSERT(infop->awi_hdl != NULL); ASSERT(infop->awi_info != NULL); if (infop->awi_info->Type != ACPI_TYPE_DEVICE || acpidev_match_device_id(infop->awi_info, ACPIDEV_ARRAY_PARAM(acpidev_container_device_ids)) == 0) { return (AE_OK); } if (infop->awi_op_type == ACPIDEV_OP_BOOT_PROBE) { flags = ACPIDEV_PROCESS_FLAG_SCAN | ACPIDEV_PROCESS_FLAG_CREATE; rc = acpidev_process_object(infop, flags); } else if (infop->awi_op_type == ACPIDEV_OP_BOOT_REPROBE) { flags = ACPIDEV_PROCESS_FLAG_SCAN; rc = acpidev_process_object(infop, flags); } else if (infop->awi_op_type == ACPIDEV_OP_HOTPLUG_PROBE) { flags = ACPIDEV_PROCESS_FLAG_SCAN | ACPIDEV_PROCESS_FLAG_CREATE; rc = acpidev_process_object(infop, flags); } else { ACPIDEV_DEBUG(CE_WARN, "acpidev: unknown operation type %u in container_probe().", infop->awi_op_type); rc = AE_BAD_PARAMETER; } if (ACPI_FAILURE(rc) && rc != AE_NOT_EXIST && rc != AE_ALREADY_EXISTS) { cmn_err(CE_CONT, "?acpidev: failed to process container object %s.\n", infop->awi_name); } else { rc = AE_OK; } return (rc); } /*ARGSUSED*/ static ACPI_STATUS acpidev_container_search_dev(ACPI_HANDLE hdl, UINT32 lvl, void *ctx, void **retval) { int *fp = (int *)ctx; *fp = lvl; return (AE_CTRL_TERMINATE); } static acpidev_filter_result_t acpidev_container_filter_func(acpidev_walk_info_t *infop, ACPI_HANDLE hdl, acpidev_filter_rule_t *rulep, char *devname, int devnamelen) { ACPI_BUFFER buf; void *retval; int proc_lvl, cpu_lvl, module_lvl; acpidev_filter_result_t res; static char *cpu_hids[] = { ACPIDEV_HID_CPU, }; static char *module_hids[] = { ACPIDEV_HID_MODULE, }; res = acpidev_filter_default(infop, hdl, rulep, devname, devnamelen); /* Return if don't need to generate device name. */ if (devname == NULL || res == ACPIDEV_FILTER_FAILED || res == ACPIDEV_FILTER_SKIP) { return (res); } /* Try to figure out most specific device name for object. */ retval = NULL; proc_lvl = INT_MAX; cpu_lvl = INT_MAX; module_lvl = INT_MAX; /* Search for ACPI Processor object. */ (void) AcpiWalkNamespace(ACPI_TYPE_PROCESSOR, hdl, 2, acpidev_container_search_dev, &proc_lvl, &retval); /* Search for CPU Device object. */ (void) acpidev_get_device_by_id(hdl, ACPIDEV_ARRAY_PARAM(cpu_hids), 2, B_FALSE, acpidev_container_search_dev, &cpu_lvl, &retval); /* Search for Module Device object. */ (void) acpidev_get_device_by_id(hdl, ACPIDEV_ARRAY_PARAM(module_hids), 2, B_FALSE, acpidev_container_search_dev, &module_lvl, &retval); buf.Pointer = devname; buf.Length = devnamelen; if (cpu_lvl > proc_lvl) { cpu_lvl = proc_lvl; } /* CPU as child, most possibly a physical CPU. */ if (cpu_lvl == 1) { (void) strncpy(devname, ACPIDEV_NODE_NAME_MODULE_CPU, devnamelen); /* CPU as grandchild, most possibly a system board. */ } else if (cpu_lvl == 2 && module_lvl == 1) { (void) strncpy(devname, ACPIDEV_NODE_NAME_MODULE_SBD, devnamelen); /* Use ACPI object name as default name. */ } else if (ACPI_FAILURE(AcpiGetName(infop->awi_hdl, ACPI_SINGLE_NAME, &buf))) { /* Failed to get ACPI object name, use generic name. */ (void) strncpy(devname, ACPIDEV_NODE_NAME_CONTAINER, devnamelen); } return (res); } static acpidev_filter_result_t acpidev_container_filter(acpidev_walk_info_t *infop, char *devname, int maxlen) { acpidev_filter_result_t res; ASSERT(infop != NULL); if (infop->awi_op_type == ACPIDEV_OP_BOOT_PROBE || infop->awi_op_type == ACPIDEV_OP_BOOT_REPROBE || infop->awi_op_type == ACPIDEV_OP_HOTPLUG_PROBE) { res = acpidev_filter_device(infop, infop->awi_hdl, ACPIDEV_ARRAY_PARAM(acpidev_container_filters), devname, maxlen); } else { res = ACPIDEV_FILTER_FAILED; } return (res); } static ACPI_STATUS acpidev_container_init(acpidev_walk_info_t *infop) { static char *compatibles[] = { ACPIDEV_TYPE_CONTAINER, ACPIDEV_HID_VIRTNEX, ACPIDEV_TYPE_VIRTNEX, }; ASSERT(infop != NULL); ASSERT(infop->awi_hdl != NULL); ASSERT(infop->awi_dip != NULL); if (ACPI_FAILURE(acpidev_set_compatibles(infop, ACPIDEV_ARRAY_PARAM(compatibles)))) { return (AE_ERROR); } if (ACPI_FAILURE(acpidev_set_unitaddr(infop, ACPIDEV_ARRAY_PARAM(acpidev_container_uid_formats), NULL))) { return (AE_ERROR); } return (AE_OK); }