#define SDW_LINK_TYPE 4 /* from Intel ACPI documentation */
staticint ctrl_link_mask;
module_param_named(sdw_link_mask, ctrl_link_mask, int, 0444);
MODULE_PARM_DESC(sdw_link_mask, "Intel link mask (one bit per link)");
/* * Found controller, find links supported * * In theory we could check the number of links supported in * hardware, but in that step we cannot assume SoundWire IP is * powered. * * In addition, if the BIOS doesn't even provide this * 'master-count' property then all the inits based on link * masks will fail as well. * * We will check the hardware capabilities in the startup() step
*/
ret = fwnode_property_read_u32(fwnode, "mipi-sdw-manager-list", &tmp); if (ret) {
ret = fwnode_property_read_u32(fwnode, "mipi-sdw-master-count", &count); if (ret) {
dev_err(&adev->dev, "Failed to read mipi-sdw-master-count: %d\n",
ret); return ret;
}
list = GENMASK(count - 1, 0);
} else {
list = tmp;
count = hweight32(list);
}
/* Check count is within bounds */ if (count > SDW_INTEL_MAX_LINKS) {
dev_err(&adev->dev, "Link count %d exceeds max %d\n",
count, SDW_INTEL_MAX_LINKS); return -EINVAL;
}
if (!count) {
dev_warn(&adev->dev, "No SoundWire links detected\n"); return -EINVAL;
}
dev_dbg(&adev->dev, "ACPI reports %d SDW Link devices\n", count);
info->count = count;
info->link_mask = 0;
for_each_set_bit(i, &list, SDW_INTEL_MAX_LINKS) { if (ctrl_link_mask && !(ctrl_link_mask & BIT(i))) {
dev_dbg(&adev->dev, "Link %d masked, will not be enabled\n", i); continue;
}
if (!is_link_enabled(fwnode, i)) {
dev_dbg(&adev->dev, "Link %d not selected in firmware\n", i); continue;
}
/* * On some Intel platforms, multiple children of the HDAS * device can be found, but only one of them is the SoundWire * controller. The SNDW device is always exposed with * Name(_ADR, 0x40000000), with bits 31..28 representing the * SoundWire link so filter accordingly
*/ if (FIELD_GET(GENMASK(31, 28), adr) != SDW_LINK_TYPE) return AE_OK; /* keep going */
if (adr != ctrl_addr) return AE_OK; /* keep going */
/* found the correct SoundWire controller */
info->handle = handle;
/* device found, stop namespace walk */ return AE_CTRL_TERMINATE;
}
/** * sdw_intel_acpi_scan() - SoundWire Intel init routine * @parent_handle: ACPI parent handle * @info: description of what firmware/DSDT tables expose * * This scans the namespace and queries firmware to figure out which * links to enable. A follow-up use of sdw_intel_probe() and * sdw_intel_startup() is required for creation of devices and bus * startup
*/ int sdw_intel_acpi_scan(acpi_handle parent_handle, struct sdw_intel_acpi_info *info)
{
acpi_status status;
info->handle = NULL; /* * In the HDAS ACPI scope, 'SNDW' may be either the child of * 'HDAS' or the grandchild of 'HDAS'. So let's go through * the ACPI from 'HDAS' at max depth of 2 to find the 'SNDW' * device.
*/
status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
parent_handle, 2,
sdw_intel_acpi_cb,
NULL, info, NULL); if (ACPI_FAILURE(status) || info->handle == NULL) return -ENODEV;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.