|
@@ -84,6 +84,7 @@ struct acpi_rsconvert_info *acpi_gbl_set_resource_dispatch[] = {
|
|
acpi_rs_convert_pin_config, /* 0x15, ACPI_RESOURCE_TYPE_PIN_CONFIG */
|
|
acpi_rs_convert_pin_config, /* 0x15, ACPI_RESOURCE_TYPE_PIN_CONFIG */
|
|
acpi_rs_convert_pin_group, /* 0x16, ACPI_RESOURCE_TYPE_PIN_GROUP */
|
|
acpi_rs_convert_pin_group, /* 0x16, ACPI_RESOURCE_TYPE_PIN_GROUP */
|
|
acpi_rs_convert_pin_group_function, /* 0x17, ACPI_RESOURCE_TYPE_PIN_GROUP_FUNCTION */
|
|
acpi_rs_convert_pin_group_function, /* 0x17, ACPI_RESOURCE_TYPE_PIN_GROUP_FUNCTION */
|
|
|
|
+ acpi_rs_convert_pin_group_config, /* 0x18, ACPI_RESOURCE_TYPE_PIN_GROUP_CONFIG */
|
|
};
|
|
};
|
|
|
|
|
|
/* Dispatch tables for AML-to-resource (Get Resource) conversion functions */
|
|
/* Dispatch tables for AML-to-resource (Get Resource) conversion functions */
|
|
@@ -128,6 +129,7 @@ struct acpi_rsconvert_info *acpi_gbl_get_resource_dispatch[] = {
|
|
acpi_rs_convert_pin_config, /* 0x0F, ACPI_RESOURCE_NAME_PIN_CONFIG */
|
|
acpi_rs_convert_pin_config, /* 0x0F, ACPI_RESOURCE_NAME_PIN_CONFIG */
|
|
acpi_rs_convert_pin_group, /* 0x10, ACPI_RESOURCE_NAME_PIN_GROUP */
|
|
acpi_rs_convert_pin_group, /* 0x10, ACPI_RESOURCE_NAME_PIN_GROUP */
|
|
acpi_rs_convert_pin_group_function, /* 0x11, ACPI_RESOURCE_NAME_PIN_GROUP_FUNCTION */
|
|
acpi_rs_convert_pin_group_function, /* 0x11, ACPI_RESOURCE_NAME_PIN_GROUP_FUNCTION */
|
|
|
|
+ acpi_rs_convert_pin_group_config, /* 0x12, ACPI_RESOURCE_NAME_PIN_GROUP_CONFIG */
|
|
};
|
|
};
|
|
|
|
|
|
/* Subtype table for serial_bus -- I2C, SPI, and UART */
|
|
/* Subtype table for serial_bus -- I2C, SPI, and UART */
|
|
@@ -168,6 +170,7 @@ struct acpi_rsdump_info *acpi_gbl_dump_resource_dispatch[] = {
|
|
acpi_rs_dump_pin_config, /* ACPI_RESOURCE_TYPE_PIN_CONFIG */
|
|
acpi_rs_dump_pin_config, /* ACPI_RESOURCE_TYPE_PIN_CONFIG */
|
|
acpi_rs_dump_pin_group, /* ACPI_RESOURCE_TYPE_PIN_GROUP */
|
|
acpi_rs_dump_pin_group, /* ACPI_RESOURCE_TYPE_PIN_GROUP */
|
|
acpi_rs_dump_pin_group_function, /* ACPI_RESOURCE_TYPE_PIN_GROUP_FUNCTION */
|
|
acpi_rs_dump_pin_group_function, /* ACPI_RESOURCE_TYPE_PIN_GROUP_FUNCTION */
|
|
|
|
+ acpi_rs_dump_pin_group_config, /* ACPI_RESOURCE_TYPE_PIN_GROUP_CONFIG */
|
|
};
|
|
};
|
|
|
|
|
|
struct acpi_rsdump_info *acpi_gbl_dump_serial_bus_dispatch[] = {
|
|
struct acpi_rsdump_info *acpi_gbl_dump_serial_bus_dispatch[] = {
|
|
@@ -208,6 +211,7 @@ const u8 acpi_gbl_aml_resource_sizes[] = {
|
|
sizeof(struct aml_resource_pin_config), /* ACPI_RESOURCE_TYPE_PIN_CONFIG */
|
|
sizeof(struct aml_resource_pin_config), /* ACPI_RESOURCE_TYPE_PIN_CONFIG */
|
|
sizeof(struct aml_resource_pin_group), /* ACPI_RESOURCE_TYPE_PIN_GROUP */
|
|
sizeof(struct aml_resource_pin_group), /* ACPI_RESOURCE_TYPE_PIN_GROUP */
|
|
sizeof(struct aml_resource_pin_group_function), /* ACPI_RESOURCE_TYPE_PIN_GROUP_FUNCTION */
|
|
sizeof(struct aml_resource_pin_group_function), /* ACPI_RESOURCE_TYPE_PIN_GROUP_FUNCTION */
|
|
|
|
+ sizeof(struct aml_resource_pin_group_config), /* ACPI_RESOURCE_TYPE_PIN_GROUP_CONFIG */
|
|
};
|
|
};
|
|
|
|
|
|
const u8 acpi_gbl_resource_struct_sizes[] = {
|
|
const u8 acpi_gbl_resource_struct_sizes[] = {
|
|
@@ -250,6 +254,7 @@ const u8 acpi_gbl_resource_struct_sizes[] = {
|
|
ACPI_RS_SIZE(struct acpi_resource_pin_config),
|
|
ACPI_RS_SIZE(struct acpi_resource_pin_config),
|
|
ACPI_RS_SIZE(struct acpi_resource_pin_group),
|
|
ACPI_RS_SIZE(struct acpi_resource_pin_group),
|
|
ACPI_RS_SIZE(struct acpi_resource_pin_group_function),
|
|
ACPI_RS_SIZE(struct acpi_resource_pin_group_function),
|
|
|
|
+ ACPI_RS_SIZE(struct acpi_resource_pin_group_config),
|
|
};
|
|
};
|
|
|
|
|
|
const u8 acpi_gbl_aml_resource_serial_bus_sizes[] = {
|
|
const u8 acpi_gbl_aml_resource_serial_bus_sizes[] = {
|