Message ID | 20190812123847.50802-9-mika.westerberg@linux.intel.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
Series | thunderbolt: Intel Ice Lake support | expand |
On Mon, Aug 12, 2019 at 2:39 PM Mika Westerberg <mika.westerberg@linux.intel.com> wrote: > > Ice Lake Thunderbolt controller includes two new device property > compatible properties that we need to be able to extract in the driver > so add them to the growing array of GUIDs. > > Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> > --- > drivers/acpi/property.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/drivers/acpi/property.c b/drivers/acpi/property.c > index ea3d700da3ca..e095334eaec9 100644 > --- a/drivers/acpi/property.c > +++ b/drivers/acpi/property.c > @@ -39,6 +39,12 @@ static const guid_t prp_guids[] = { > /* External facing port GUID: efcc06cc-73ac-4bc3-bff0-76143807c389 */ > GUID_INIT(0xefcc06cc, 0x73ac, 0x4bc3, > 0xbf, 0xf0, 0x76, 0x14, 0x38, 0x07, 0xc3, 0x89), > + /* Thunderbolt GUID for IMR_VALID: c44d002f-69f9-4e7d-a904-a7baabdf43f7 */ > + GUID_INIT(0xc44d002f, 0x69f9, 0x4e7d, > + 0xa9, 0x04, 0xa7, 0xba, 0xab, 0xdf, 0x43, 0xf7), > + /* Thunderbolt GUID for WAKE_SUPPORTED: 6c501103-c189-4296-ba72-9bf5a26ebe5d */ > + GUID_INIT(0x6c501103, 0xc189, 0x4296, > + 0xba, 0x72, 0x9b, 0xf5, 0xa2, 0x6e, 0xbe, 0x5d), > }; > > /* ACPI _DSD data subnodes GUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */ > -- > 2.20.1 >
diff --git a/drivers/acpi/property.c b/drivers/acpi/property.c index ea3d700da3ca..e095334eaec9 100644 --- a/drivers/acpi/property.c +++ b/drivers/acpi/property.c @@ -39,6 +39,12 @@ static const guid_t prp_guids[] = { /* External facing port GUID: efcc06cc-73ac-4bc3-bff0-76143807c389 */ GUID_INIT(0xefcc06cc, 0x73ac, 0x4bc3, 0xbf, 0xf0, 0x76, 0x14, 0x38, 0x07, 0xc3, 0x89), + /* Thunderbolt GUID for IMR_VALID: c44d002f-69f9-4e7d-a904-a7baabdf43f7 */ + GUID_INIT(0xc44d002f, 0x69f9, 0x4e7d, + 0xa9, 0x04, 0xa7, 0xba, 0xab, 0xdf, 0x43, 0xf7), + /* Thunderbolt GUID for WAKE_SUPPORTED: 6c501103-c189-4296-ba72-9bf5a26ebe5d */ + GUID_INIT(0x6c501103, 0xc189, 0x4296, + 0xba, 0x72, 0x9b, 0xf5, 0xa2, 0x6e, 0xbe, 0x5d), }; /* ACPI _DSD data subnodes GUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */
Ice Lake Thunderbolt controller includes two new device property compatible properties that we need to be able to extract in the driver so add them to the growing array of GUIDs. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> --- drivers/acpi/property.c | 6 ++++++ 1 file changed, 6 insertions(+)