diff options
| author | Bob Moore <robert.moore@intel.com> | 2014-11-27 01:26:00 -0500 |
|---|---|---|
| committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-11-27 18:00:52 -0500 |
| commit | 4dcd78d80d37a360f5faab422a4e48b2cfd4abe4 (patch) | |
| tree | 2c90e16c2b3304274740fb32592b63fce4078f16 | |
| parent | 5d01410fe4d92081f349b013a2e7a95429e4f2c9 (diff) | |
ACPICA: iASL: Add support for to_PLD macro.
This macro is intended to simplify the constuction of _PLD buffers.
NOTE: Prototype only, subject to change before this macro is
added to the ACPI specification. David E. Box.
Signed-off-by: David E. Box <david.e.box@linux.intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
| -rw-r--r-- | drivers/acpi/acpica/utxface.c | 4 | ||||
| -rw-r--r-- | include/acpi/acbuffer.h | 14 |
2 files changed, 14 insertions, 4 deletions
diff --git a/drivers/acpi/acpica/utxface.c b/drivers/acpi/acpica/utxface.c index 502a8492dc83..49c873c68756 100644 --- a/drivers/acpi/acpica/utxface.c +++ b/drivers/acpi/acpica/utxface.c | |||
| @@ -531,7 +531,9 @@ acpi_decode_pld_buffer(u8 *in_buffer, | |||
| 531 | ACPI_MOVE_32_TO_32(&dword, &buffer[0]); | 531 | ACPI_MOVE_32_TO_32(&dword, &buffer[0]); |
| 532 | pld_info->revision = ACPI_PLD_GET_REVISION(&dword); | 532 | pld_info->revision = ACPI_PLD_GET_REVISION(&dword); |
| 533 | pld_info->ignore_color = ACPI_PLD_GET_IGNORE_COLOR(&dword); | 533 | pld_info->ignore_color = ACPI_PLD_GET_IGNORE_COLOR(&dword); |
| 534 | pld_info->color = ACPI_PLD_GET_COLOR(&dword); | 534 | pld_info->red = ACPI_PLD_GET_RED(&dword); |
| 535 | pld_info->green = ACPI_PLD_GET_GREEN(&dword); | ||
| 536 | pld_info->blue = ACPI_PLD_GET_BLUE(&dword); | ||
| 535 | 537 | ||
| 536 | /* Second 32-bit DWord */ | 538 | /* Second 32-bit DWord */ |
| 537 | 539 | ||
diff --git a/include/acpi/acbuffer.h b/include/acpi/acbuffer.h index 88cb477524a6..d5ec6c87810f 100644 --- a/include/acpi/acbuffer.h +++ b/include/acpi/acbuffer.h | |||
| @@ -111,7 +111,9 @@ struct acpi_gtm_info { | |||
| 111 | struct acpi_pld_info { | 111 | struct acpi_pld_info { |
| 112 | u8 revision; | 112 | u8 revision; |
| 113 | u8 ignore_color; | 113 | u8 ignore_color; |
| 114 | u32 color; | 114 | u8 red; |
| 115 | u8 green; | ||
| 116 | u8 blue; | ||
| 115 | u16 width; | 117 | u16 width; |
| 116 | u16 height; | 118 | u16 height; |
| 117 | u8 user_visible; | 119 | u8 user_visible; |
| @@ -155,8 +157,14 @@ struct acpi_pld_info { | |||
| 155 | #define ACPI_PLD_GET_IGNORE_COLOR(dword) ACPI_GET_BITS (dword, 7, ACPI_1BIT_MASK) | 157 | #define ACPI_PLD_GET_IGNORE_COLOR(dword) ACPI_GET_BITS (dword, 7, ACPI_1BIT_MASK) |
| 156 | #define ACPI_PLD_SET_IGNORE_COLOR(dword,value) ACPI_SET_BITS (dword, 7, ACPI_1BIT_MASK, value) /* Offset 7, Len 1 */ | 158 | #define ACPI_PLD_SET_IGNORE_COLOR(dword,value) ACPI_SET_BITS (dword, 7, ACPI_1BIT_MASK, value) /* Offset 7, Len 1 */ |
| 157 | 159 | ||
| 158 | #define ACPI_PLD_GET_COLOR(dword) ACPI_GET_BITS (dword, 8, ACPI_24BIT_MASK) | 160 | #define ACPI_PLD_GET_RED(dword) ACPI_GET_BITS (dword, 8, ACPI_8BIT_MASK) |
| 159 | #define ACPI_PLD_SET_COLOR(dword,value) ACPI_SET_BITS (dword, 8, ACPI_24BIT_MASK, value) /* Offset 8, Len 24 */ | 161 | #define ACPI_PLD_SET_RED(dword,value) ACPI_SET_BITS (dword, 8, ACPI_8BIT_MASK, value) /* Offset 8, Len 8 */ |
| 162 | |||
| 163 | #define ACPI_PLD_GET_GREEN(dword) ACPI_GET_BITS (dword, 16, ACPI_8BIT_MASK) | ||
| 164 | #define ACPI_PLD_SET_GREEN(dword,value) ACPI_SET_BITS (dword, 16, ACPI_8BIT_MASK, value) /* Offset 16, Len 8 */ | ||
| 165 | |||
| 166 | #define ACPI_PLD_GET_BLUE(dword) ACPI_GET_BITS (dword, 24, ACPI_8BIT_MASK) | ||
| 167 | #define ACPI_PLD_SET_BLUE(dword,value) ACPI_SET_BITS (dword, 24, ACPI_8BIT_MASK, value) /* Offset 24, Len 8 */ | ||
| 160 | 168 | ||
| 161 | /* Second 32-bit dword, bits 33:63 */ | 169 | /* Second 32-bit dword, bits 33:63 */ |
| 162 | 170 | ||
