Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /******************************************************************************* |
| 3 | * |
| 4 | * Module Name: hwregs - Read/write access functions for the various ACPI |
| 5 | * control and status registers. |
| 6 | * |
| 7 | ******************************************************************************/ |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 10 | #include "accommon.h" |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 11 | #include "acevents.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
| 13 | #define _COMPONENT ACPI_HARDWARE |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 14 | ACPI_MODULE_NAME("hwregs") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 16 | #if (!ACPI_REDUCED_HARDWARE) |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 17 | /* Local Prototypes */ |
Lv Zheng | b314a17 | 2016-05-05 12:58:39 +0800 | [diff] [blame] | 18 | static u8 |
Lv Zheng | 04cf053 | 2016-12-28 15:28:36 +0800 | [diff] [blame] | 19 | acpi_hw_get_access_bit_width(u64 address, |
| 20 | struct acpi_generic_address *reg, |
Lv Zheng | b314a17 | 2016-05-05 12:58:39 +0800 | [diff] [blame] | 21 | u8 max_bit_width); |
| 22 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 23 | static acpi_status |
| 24 | acpi_hw_read_multiple(u32 *value, |
| 25 | struct acpi_generic_address *register_a, |
| 26 | struct acpi_generic_address *register_b); |
| 27 | |
| 28 | static acpi_status |
| 29 | acpi_hw_write_multiple(u32 value, |
| 30 | struct acpi_generic_address *register_a, |
| 31 | struct acpi_generic_address *register_b); |
| 32 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 33 | #endif /* !ACPI_REDUCED_HARDWARE */ |
| 34 | |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 35 | /****************************************************************************** |
| 36 | * |
Lv Zheng | b314a17 | 2016-05-05 12:58:39 +0800 | [diff] [blame] | 37 | * FUNCTION: acpi_hw_get_access_bit_width |
| 38 | * |
Lv Zheng | 04cf053 | 2016-12-28 15:28:36 +0800 | [diff] [blame] | 39 | * PARAMETERS: address - GAS register address |
| 40 | * reg - GAS register structure |
Lv Zheng | b314a17 | 2016-05-05 12:58:39 +0800 | [diff] [blame] | 41 | * max_bit_width - Max bit_width supported (32 or 64) |
| 42 | * |
| 43 | * RETURN: Status |
| 44 | * |
| 45 | * DESCRIPTION: Obtain optimal access bit width |
| 46 | * |
| 47 | ******************************************************************************/ |
| 48 | |
| 49 | static u8 |
Lv Zheng | 04cf053 | 2016-12-28 15:28:36 +0800 | [diff] [blame] | 50 | acpi_hw_get_access_bit_width(u64 address, |
| 51 | struct acpi_generic_address *reg, u8 max_bit_width) |
Lv Zheng | b314a17 | 2016-05-05 12:58:39 +0800 | [diff] [blame] | 52 | { |
Lv Zheng | 04cf053 | 2016-12-28 15:28:36 +0800 | [diff] [blame] | 53 | u8 access_bit_width; |
Lv Zheng | 7f9bef9 | 2016-06-01 11:03:20 +0800 | [diff] [blame] | 54 | |
Lv Zheng | 04cf053 | 2016-12-28 15:28:36 +0800 | [diff] [blame] | 55 | /* |
| 56 | * GAS format "register", used by FADT: |
| 57 | * 1. Detected if bit_offset is 0 and bit_width is 8/16/32/64; |
| 58 | * 2. access_size field is ignored and bit_width field is used for |
| 59 | * determining the boundary of the IO accesses. |
| 60 | * GAS format "region", used by APEI registers: |
| 61 | * 1. Detected if bit_offset is not 0 or bit_width is not 8/16/32/64; |
| 62 | * 2. access_size field is used for determining the boundary of the |
| 63 | * IO accesses; |
| 64 | * 3. bit_offset/bit_width fields are used to describe the "region". |
| 65 | * |
| 66 | * Note: This algorithm assumes that the "Address" fields should always |
| 67 | * contain aligned values. |
| 68 | */ |
| 69 | if (!reg->bit_offset && reg->bit_width && |
| 70 | ACPI_IS_POWER_OF_TWO(reg->bit_width) && |
| 71 | ACPI_IS_ALIGNED(reg->bit_width, 8)) { |
| 72 | access_bit_width = reg->bit_width; |
| 73 | } else if (reg->access_width) { |
Lv Zheng | 4eebedd | 2017-08-03 14:26:19 +0800 | [diff] [blame] | 74 | access_bit_width = ACPI_ACCESS_BIT_WIDTH(reg->access_width); |
Lv Zheng | b314a17 | 2016-05-05 12:58:39 +0800 | [diff] [blame] | 75 | } else { |
Lv Zheng | 04cf053 | 2016-12-28 15:28:36 +0800 | [diff] [blame] | 76 | access_bit_width = |
| 77 | ACPI_ROUND_UP_POWER_OF_TWO_8(reg->bit_offset + |
| 78 | reg->bit_width); |
| 79 | if (access_bit_width <= 8) { |
| 80 | access_bit_width = 8; |
| 81 | } else { |
| 82 | while (!ACPI_IS_ALIGNED(address, access_bit_width >> 3)) { |
| 83 | access_bit_width >>= 1; |
| 84 | } |
| 85 | } |
Lv Zheng | b314a17 | 2016-05-05 12:58:39 +0800 | [diff] [blame] | 86 | } |
Lv Zheng | 04cf053 | 2016-12-28 15:28:36 +0800 | [diff] [blame] | 87 | |
| 88 | /* Maximum IO port access bit width is 32 */ |
| 89 | |
| 90 | if (reg->space_id == ACPI_ADR_SPACE_SYSTEM_IO) { |
| 91 | max_bit_width = 32; |
| 92 | } |
| 93 | |
| 94 | /* |
| 95 | * Return access width according to the requested maximum access bit width, |
| 96 | * as the caller should know the format of the register and may enforce |
| 97 | * a 32-bit accesses. |
| 98 | */ |
| 99 | if (access_bit_width < max_bit_width) { |
| 100 | return (access_bit_width); |
| 101 | } |
| 102 | return (max_bit_width); |
Lv Zheng | b314a17 | 2016-05-05 12:58:39 +0800 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | /****************************************************************************** |
| 106 | * |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 107 | * FUNCTION: acpi_hw_validate_register |
| 108 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 109 | * PARAMETERS: reg - GAS register structure |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 110 | * max_bit_width - Max bit_width supported (32 or 64) |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 111 | * address - Pointer to where the gas->address |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 112 | * is returned |
| 113 | * |
| 114 | * RETURN: Status |
| 115 | * |
| 116 | * DESCRIPTION: Validate the contents of a GAS register. Checks the GAS |
| 117 | * pointer, Address, space_id, bit_width, and bit_offset. |
| 118 | * |
| 119 | ******************************************************************************/ |
| 120 | |
| 121 | acpi_status |
| 122 | acpi_hw_validate_register(struct acpi_generic_address *reg, |
| 123 | u8 max_bit_width, u64 *address) |
| 124 | { |
Lv Zheng | 920de6e | 2016-03-24 09:41:09 +0800 | [diff] [blame] | 125 | u8 bit_width; |
| 126 | u8 access_width; |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 127 | |
| 128 | /* Must have a valid pointer to a GAS structure */ |
| 129 | |
| 130 | if (!reg) { |
| 131 | return (AE_BAD_PARAMETER); |
| 132 | } |
| 133 | |
| 134 | /* |
| 135 | * Copy the target address. This handles possible alignment issues. |
| 136 | * Address must not be null. A null address also indicates an optional |
| 137 | * ACPI register that is not supported, so no error message. |
| 138 | */ |
| 139 | ACPI_MOVE_64_TO_64(address, ®->address); |
| 140 | if (!(*address)) { |
| 141 | return (AE_BAD_ADDRESS); |
| 142 | } |
| 143 | |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 144 | /* Validate the space_ID */ |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 145 | |
| 146 | if ((reg->space_id != ACPI_ADR_SPACE_SYSTEM_MEMORY) && |
| 147 | (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO)) { |
| 148 | ACPI_ERROR((AE_INFO, |
| 149 | "Unsupported address space: 0x%X", reg->space_id)); |
| 150 | return (AE_SUPPORT); |
| 151 | } |
| 152 | |
Lv Zheng | 920de6e | 2016-03-24 09:41:09 +0800 | [diff] [blame] | 153 | /* Validate the access_width */ |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 154 | |
Lv Zheng | 920de6e | 2016-03-24 09:41:09 +0800 | [diff] [blame] | 155 | if (reg->access_width > 4) { |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 156 | ACPI_ERROR((AE_INFO, |
Lv Zheng | 920de6e | 2016-03-24 09:41:09 +0800 | [diff] [blame] | 157 | "Unsupported register access width: 0x%X", |
| 158 | reg->access_width)); |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 159 | return (AE_SUPPORT); |
| 160 | } |
| 161 | |
Lv Zheng | 920de6e | 2016-03-24 09:41:09 +0800 | [diff] [blame] | 162 | /* Validate the bit_width, convert access_width into number of bits */ |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 163 | |
Lv Zheng | 04cf053 | 2016-12-28 15:28:36 +0800 | [diff] [blame] | 164 | access_width = |
| 165 | acpi_hw_get_access_bit_width(*address, reg, max_bit_width); |
Lv Zheng | 920de6e | 2016-03-24 09:41:09 +0800 | [diff] [blame] | 166 | bit_width = |
| 167 | ACPI_ROUND_UP(reg->bit_offset + reg->bit_width, access_width); |
| 168 | if (max_bit_width < bit_width) { |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 169 | ACPI_WARNING((AE_INFO, |
Lv Zheng | 920de6e | 2016-03-24 09:41:09 +0800 | [diff] [blame] | 170 | "Requested bit width 0x%X is smaller than register bit width 0x%X", |
| 171 | max_bit_width, bit_width)); |
| 172 | return (AE_SUPPORT); |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | return (AE_OK); |
| 176 | } |
| 177 | |
| 178 | /****************************************************************************** |
| 179 | * |
| 180 | * FUNCTION: acpi_hw_read |
| 181 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 182 | * PARAMETERS: value - Where the value is returned |
| 183 | * reg - GAS register structure |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 184 | * |
| 185 | * RETURN: Status |
| 186 | * |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 187 | * DESCRIPTION: Read from either memory or IO space. This is a 64-bit max |
| 188 | * version of acpi_read. |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 189 | * |
| 190 | * LIMITATIONS: <These limitations also apply to acpi_hw_write> |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 191 | * space_ID must be system_memory or system_IO. |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 192 | * |
| 193 | ******************************************************************************/ |
| 194 | |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 195 | acpi_status acpi_hw_read(u64 *value, struct acpi_generic_address *reg) |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 196 | { |
| 197 | u64 address; |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 198 | u8 access_width; |
| 199 | u32 bit_width; |
| 200 | u8 bit_offset; |
Bob Moore | 653f4b5 | 2012-02-14 18:29:55 +0800 | [diff] [blame] | 201 | u64 value64; |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 202 | u32 value32; |
| 203 | u8 index; |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 204 | acpi_status status; |
| 205 | |
| 206 | ACPI_FUNCTION_NAME(hw_read); |
| 207 | |
| 208 | /* Validate contents of the GAS register */ |
| 209 | |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 210 | status = acpi_hw_validate_register(reg, 64, &address); |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 211 | if (ACPI_FAILURE(status)) { |
| 212 | return (status); |
| 213 | } |
| 214 | |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 215 | /* |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 216 | * Initialize entire 64-bit return value to zero, convert access_width |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 217 | * into number of bits based |
| 218 | */ |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 219 | *value = 0; |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 220 | access_width = acpi_hw_get_access_bit_width(address, reg, 64); |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 221 | bit_width = reg->bit_offset + reg->bit_width; |
| 222 | bit_offset = reg->bit_offset; |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 223 | |
| 224 | /* |
| 225 | * Two address spaces supported: Memory or IO. PCI_Config is |
| 226 | * not supported here because the GAS structure is insufficient |
| 227 | */ |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 228 | index = 0; |
| 229 | while (bit_width) { |
| 230 | if (bit_offset >= access_width) { |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 231 | value64 = 0; |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 232 | bit_offset -= access_width; |
| 233 | } else { |
| 234 | if (reg->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) { |
| 235 | status = |
| 236 | acpi_os_read_memory((acpi_physical_address) |
| 237 | address + |
| 238 | index * |
| 239 | ACPI_DIV_8 |
| 240 | (access_width), |
| 241 | &value64, access_width); |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 242 | } else { /* ACPI_ADR_SPACE_SYSTEM_IO, validated earlier */ |
Bob Moore | 653f4b5 | 2012-02-14 18:29:55 +0800 | [diff] [blame] | 243 | |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 244 | status = acpi_hw_read_port((acpi_io_address) |
| 245 | address + |
| 246 | index * |
| 247 | ACPI_DIV_8 |
| 248 | (access_width), |
| 249 | &value32, |
| 250 | access_width); |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 251 | value64 = (u64)value32; |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 252 | } |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | /* |
| 256 | * Use offset style bit writes because "Index * AccessWidth" is |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 257 | * ensured to be less than 64-bits by acpi_hw_validate_register(). |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 258 | */ |
| 259 | ACPI_SET_BITS(value, index * access_width, |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 260 | ACPI_MASK_BITS_ABOVE_64(access_width), value64); |
Lv Zheng | c3bc26d | 2016-05-05 12:58:52 +0800 | [diff] [blame] | 261 | |
| 262 | bit_width -= |
| 263 | bit_width > access_width ? access_width : bit_width; |
| 264 | index++; |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | ACPI_DEBUG_PRINT((ACPI_DB_IO, |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 268 | "Read: %8.8X%8.8X width %2d from %8.8X%8.8X (%s)\n", |
| 269 | ACPI_FORMAT_UINT64(*value), access_width, |
| 270 | ACPI_FORMAT_UINT64(address), |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 271 | acpi_ut_get_region_name(reg->space_id))); |
| 272 | |
| 273 | return (status); |
| 274 | } |
| 275 | |
| 276 | /****************************************************************************** |
| 277 | * |
| 278 | * FUNCTION: acpi_hw_write |
| 279 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 280 | * PARAMETERS: value - Value to be written |
| 281 | * reg - GAS register structure |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 282 | * |
| 283 | * RETURN: Status |
| 284 | * |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 285 | * DESCRIPTION: Write to either memory or IO space. This is a 64-bit max |
| 286 | * version of acpi_write. |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 287 | * |
| 288 | ******************************************************************************/ |
| 289 | |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 290 | acpi_status acpi_hw_write(u64 value, struct acpi_generic_address *reg) |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 291 | { |
| 292 | u64 address; |
Lv Zheng | dc4c737 | 2016-12-28 15:28:23 +0800 | [diff] [blame] | 293 | u8 access_width; |
| 294 | u32 bit_width; |
| 295 | u8 bit_offset; |
| 296 | u64 value64; |
Lv Zheng | dc4c737 | 2016-12-28 15:28:23 +0800 | [diff] [blame] | 297 | u8 index; |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 298 | acpi_status status; |
| 299 | |
| 300 | ACPI_FUNCTION_NAME(hw_write); |
| 301 | |
| 302 | /* Validate contents of the GAS register */ |
| 303 | |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 304 | status = acpi_hw_validate_register(reg, 64, &address); |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 305 | if (ACPI_FAILURE(status)) { |
| 306 | return (status); |
| 307 | } |
| 308 | |
Lv Zheng | dc4c737 | 2016-12-28 15:28:23 +0800 | [diff] [blame] | 309 | /* Convert access_width into number of bits based */ |
| 310 | |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 311 | access_width = acpi_hw_get_access_bit_width(address, reg, 64); |
Lv Zheng | dc4c737 | 2016-12-28 15:28:23 +0800 | [diff] [blame] | 312 | bit_width = reg->bit_offset + reg->bit_width; |
| 313 | bit_offset = reg->bit_offset; |
| 314 | |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 315 | /* |
| 316 | * Two address spaces supported: Memory or IO. PCI_Config is |
| 317 | * not supported here because the GAS structure is insufficient |
| 318 | */ |
Lv Zheng | dc4c737 | 2016-12-28 15:28:23 +0800 | [diff] [blame] | 319 | index = 0; |
| 320 | while (bit_width) { |
| 321 | /* |
| 322 | * Use offset style bit reads because "Index * AccessWidth" is |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 323 | * ensured to be less than 64-bits by acpi_hw_validate_register(). |
Lv Zheng | dc4c737 | 2016-12-28 15:28:23 +0800 | [diff] [blame] | 324 | */ |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 325 | value64 = ACPI_GET_BITS(&value, index * access_width, |
| 326 | ACPI_MASK_BITS_ABOVE_64(access_width)); |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 327 | |
Lv Zheng | dc4c737 | 2016-12-28 15:28:23 +0800 | [diff] [blame] | 328 | if (bit_offset >= access_width) { |
| 329 | bit_offset -= access_width; |
| 330 | } else { |
| 331 | if (reg->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) { |
Lv Zheng | dc4c737 | 2016-12-28 15:28:23 +0800 | [diff] [blame] | 332 | status = |
| 333 | acpi_os_write_memory((acpi_physical_address) |
| 334 | address + |
| 335 | index * |
| 336 | ACPI_DIV_8 |
| 337 | (access_width), |
| 338 | value64, access_width); |
| 339 | } else { /* ACPI_ADR_SPACE_SYSTEM_IO, validated earlier */ |
| 340 | |
| 341 | status = acpi_hw_write_port((acpi_io_address) |
| 342 | address + |
| 343 | index * |
| 344 | ACPI_DIV_8 |
| 345 | (access_width), |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 346 | (u32)value64, |
Lv Zheng | dc4c737 | 2016-12-28 15:28:23 +0800 | [diff] [blame] | 347 | access_width); |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | /* |
| 352 | * Index * access_width is ensured to be less than 32-bits by |
| 353 | * acpi_hw_validate_register(). |
| 354 | */ |
| 355 | bit_width -= |
| 356 | bit_width > access_width ? access_width : bit_width; |
| 357 | index++; |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | ACPI_DEBUG_PRINT((ACPI_DB_IO, |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 361 | "Wrote: %8.8X%8.8X width %2d to %8.8X%8.8X (%s)\n", |
| 362 | ACPI_FORMAT_UINT64(value), access_width, |
| 363 | ACPI_FORMAT_UINT64(address), |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 364 | acpi_ut_get_region_name(reg->space_id))); |
| 365 | |
| 366 | return (status); |
| 367 | } |
| 368 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 369 | #if (!ACPI_REDUCED_HARDWARE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | /******************************************************************************* |
| 371 | * |
| 372 | * FUNCTION: acpi_hw_clear_acpi_status |
| 373 | * |
Bob Moore | d8c71b6 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 374 | * PARAMETERS: None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | * |
Bob Moore | 7db5d82 | 2008-12-30 11:04:48 +0800 | [diff] [blame] | 376 | * RETURN: Status |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | * |
| 378 | * DESCRIPTION: Clears all fixed and general purpose status bits |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | * |
| 380 | ******************************************************************************/ |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 381 | |
Bob Moore | d8c71b6 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 382 | acpi_status acpi_hw_clear_acpi_status(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 384 | acpi_status status; |
Bob Moore | 4c90ece | 2006-06-08 16:29:00 -0400 | [diff] [blame] | 385 | acpi_cpu_flags lock_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 387 | ACPI_FUNCTION_TRACE(hw_clear_acpi_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Bob Moore | 8eb7b24 | 2009-04-22 10:28:22 +0800 | [diff] [blame] | 389 | ACPI_DEBUG_PRINT((ACPI_DB_IO, "About to write %04X to %8.8X%8.8X\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 390 | ACPI_BITMASK_ALL_FIXED_STATUS, |
Bob Moore | 8eb7b24 | 2009-04-22 10:28:22 +0800 | [diff] [blame] | 391 | ACPI_FORMAT_UINT64(acpi_gbl_xpm1a_status.address))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
Steven Rostedt | c57c0ad | 2018-04-25 16:28:27 +0200 | [diff] [blame] | 393 | lock_flags = acpi_os_acquire_raw_lock(acpi_gbl_hardware_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
Bob Moore | 227243a | 2009-02-18 14:24:50 +0800 | [diff] [blame] | 395 | /* Clear the fixed events in PM1 A/B */ |
Bob Moore | 531c633 | 2009-02-18 14:06:12 +0800 | [diff] [blame] | 396 | |
Alexey Starikovskiy | d30dc9ab | 2007-09-30 22:39:36 +0400 | [diff] [blame] | 397 | status = acpi_hw_register_write(ACPI_REGISTER_PM1_STATUS, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 398 | ACPI_BITMASK_ALL_FIXED_STATUS); |
Rakib Mullick | f7f71cf | 2011-11-06 21:18:17 +0600 | [diff] [blame] | 399 | |
Steven Rostedt | c57c0ad | 2018-04-25 16:28:27 +0200 | [diff] [blame] | 400 | acpi_os_release_raw_lock(acpi_gbl_hardware_lock, lock_flags); |
Rakib Mullick | f7f71cf | 2011-11-06 21:18:17 +0600 | [diff] [blame] | 401 | |
Lv Zheng | 7d3e83b | 2014-07-08 10:08:19 +0800 | [diff] [blame] | 402 | if (ACPI_FAILURE(status)) { |
Rakib Mullick | f7f71cf | 2011-11-06 21:18:17 +0600 | [diff] [blame] | 403 | goto exit; |
Lv Zheng | 7d3e83b | 2014-07-08 10:08:19 +0800 | [diff] [blame] | 404 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | /* Clear the GPE Bits in all GPE registers in all GPE blocks */ |
| 407 | |
Bob Moore | e97d6bf | 2008-12-30 09:45:17 +0800 | [diff] [blame] | 408 | status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
Rakib Mullick | f7f71cf | 2011-11-06 21:18:17 +0600 | [diff] [blame] | 410 | exit: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 411 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
| 413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | /******************************************************************************* |
| 415 | * |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 416 | * FUNCTION: acpi_hw_get_bit_register_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | * |
| 418 | * PARAMETERS: register_id - Index of ACPI Register to access |
| 419 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 420 | * RETURN: The bitmask to be used when accessing the register |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 422 | * DESCRIPTION: Map register_id into a register bitmask. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | * |
| 424 | ******************************************************************************/ |
Bob Moore | 7db5d82 | 2008-12-30 11:04:48 +0800 | [diff] [blame] | 425 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 426 | struct acpi_bit_register_info *acpi_hw_get_bit_register_info(u32 register_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | { |
Bob Moore | 4a90c7e | 2006-01-13 16:22:00 -0500 | [diff] [blame] | 428 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | |
| 430 | if (register_id > ACPI_BITREG_MAX) { |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 431 | ACPI_ERROR((AE_INFO, "Invalid BitRegister ID: 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 432 | register_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | return (NULL); |
| 434 | } |
| 435 | |
| 436 | return (&acpi_gbl_bit_register_info[register_id]); |
| 437 | } |
| 438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | /****************************************************************************** |
| 440 | * |
Bob Moore | 32c9ef9 | 2009-02-18 14:36:05 +0800 | [diff] [blame] | 441 | * FUNCTION: acpi_hw_write_pm1_control |
| 442 | * |
| 443 | * PARAMETERS: pm1a_control - Value to be written to PM1A control |
| 444 | * pm1b_control - Value to be written to PM1B control |
| 445 | * |
| 446 | * RETURN: Status |
| 447 | * |
| 448 | * DESCRIPTION: Write the PM1 A/B control registers. These registers are |
| 449 | * different than than the PM1 A/B status and enable registers |
| 450 | * in that different values can be written to the A/B registers. |
| 451 | * Most notably, the SLP_TYP bits can be different, as per the |
| 452 | * values returned from the _Sx predefined methods. |
| 453 | * |
| 454 | ******************************************************************************/ |
| 455 | |
| 456 | acpi_status acpi_hw_write_pm1_control(u32 pm1a_control, u32 pm1b_control) |
| 457 | { |
| 458 | acpi_status status; |
| 459 | |
| 460 | ACPI_FUNCTION_TRACE(hw_write_pm1_control); |
| 461 | |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 462 | status = |
| 463 | acpi_hw_write(pm1a_control, &acpi_gbl_FADT.xpm1a_control_block); |
Bob Moore | 32c9ef9 | 2009-02-18 14:36:05 +0800 | [diff] [blame] | 464 | if (ACPI_FAILURE(status)) { |
| 465 | return_ACPI_STATUS(status); |
| 466 | } |
| 467 | |
| 468 | if (acpi_gbl_FADT.xpm1b_control_block.address) { |
| 469 | status = |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 470 | acpi_hw_write(pm1b_control, |
| 471 | &acpi_gbl_FADT.xpm1b_control_block); |
Bob Moore | 32c9ef9 | 2009-02-18 14:36:05 +0800 | [diff] [blame] | 472 | } |
| 473 | return_ACPI_STATUS(status); |
| 474 | } |
| 475 | |
| 476 | /****************************************************************************** |
| 477 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | * FUNCTION: acpi_hw_register_read |
| 479 | * |
Alexey Starikovskiy | d30dc9ab | 2007-09-30 22:39:36 +0400 | [diff] [blame] | 480 | * PARAMETERS: register_id - ACPI Register ID |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 481 | * return_value - Where the register value is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | * |
| 483 | * RETURN: Status and the value read. |
| 484 | * |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 485 | * DESCRIPTION: Read from the specified ACPI register |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | * |
| 487 | ******************************************************************************/ |
Lv Zheng | 3e8214e | 2012-12-19 05:37:15 +0000 | [diff] [blame] | 488 | acpi_status acpi_hw_register_read(u32 register_id, u32 *return_value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | { |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 490 | u32 value = 0; |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 491 | u64 value64; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 492 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 494 | ACPI_FUNCTION_TRACE(hw_register_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | switch (register_id) { |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 497 | case ACPI_REGISTER_PM1_STATUS: /* PM1 A/B: 16-bit access each */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 499 | status = acpi_hw_read_multiple(&value, |
| 500 | &acpi_gbl_xpm1a_status, |
| 501 | &acpi_gbl_xpm1b_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | break; |
| 503 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 504 | case ACPI_REGISTER_PM1_ENABLE: /* PM1 A/B: 16-bit access each */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 506 | status = acpi_hw_read_multiple(&value, |
| 507 | &acpi_gbl_xpm1a_enable, |
| 508 | &acpi_gbl_xpm1b_enable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | break; |
| 510 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 511 | case ACPI_REGISTER_PM1_CONTROL: /* PM1 A/B: 16-bit access each */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 513 | status = acpi_hw_read_multiple(&value, |
| 514 | &acpi_gbl_FADT. |
| 515 | xpm1a_control_block, |
| 516 | &acpi_gbl_FADT. |
| 517 | xpm1b_control_block); |
Lin Ming | c3dd25f | 2009-03-19 09:51:01 +0800 | [diff] [blame] | 518 | |
| 519 | /* |
| 520 | * Zero the write-only bits. From the ACPI specification, "Hardware |
| 521 | * Write-Only Bits": "Upon reads to registers with write-only bits, |
| 522 | * software masks out all write-only bits." |
| 523 | */ |
| 524 | value &= ~ACPI_PM1_CONTROL_WRITEONLY_BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | break; |
| 526 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 527 | case ACPI_REGISTER_PM2_CONTROL: /* 8-bit access */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 529 | status = |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 530 | acpi_hw_read(&value64, &acpi_gbl_FADT.xpm2_control_block); |
Erik Schmauss | f016b19 | 2018-08-10 14:42:55 -0700 | [diff] [blame] | 531 | if (ACPI_SUCCESS(status)) { |
| 532 | value = (u32)value64; |
| 533 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | break; |
| 535 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 536 | case ACPI_REGISTER_PM_TIMER: /* 32-bit access */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 538 | status = acpi_hw_read(&value64, &acpi_gbl_FADT.xpm_timer_block); |
Erik Schmauss | f016b19 | 2018-08-10 14:42:55 -0700 | [diff] [blame] | 539 | if (ACPI_SUCCESS(status)) { |
| 540 | value = (u32)value64; |
| 541 | } |
| 542 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | break; |
| 544 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 545 | case ACPI_REGISTER_SMI_COMMAND_BLOCK: /* 8-bit access */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 547 | status = |
Bob Moore | 7f07190 | 2009-03-19 09:37:47 +0800 | [diff] [blame] | 548 | acpi_hw_read_port(acpi_gbl_FADT.smi_command, &value, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | break; |
| 550 | |
| 551 | default: |
Chao Guan | 1d1ea1b7 | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 552 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 553 | ACPI_ERROR((AE_INFO, "Unknown Register ID: 0x%X", register_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | status = AE_BAD_PARAMETER; |
| 555 | break; |
| 556 | } |
| 557 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 558 | if (ACPI_SUCCESS(status)) { |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 559 | *return_value = (u32)value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | } |
| 561 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 562 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | } |
| 564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | /****************************************************************************** |
| 566 | * |
| 567 | * FUNCTION: acpi_hw_register_write |
| 568 | * |
Alexey Starikovskiy | d30dc9ab | 2007-09-30 22:39:36 +0400 | [diff] [blame] | 569 | * PARAMETERS: register_id - ACPI Register ID |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 570 | * value - The value to write |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | * |
| 572 | * RETURN: Status |
| 573 | * |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 574 | * DESCRIPTION: Write to the specified ACPI register |
| 575 | * |
| 576 | * NOTE: In accordance with the ACPI specification, this function automatically |
| 577 | * preserves the value of the following bits, meaning that these bits cannot be |
| 578 | * changed via this interface: |
| 579 | * |
| 580 | * PM1_CONTROL[0] = SCI_EN |
| 581 | * PM1_CONTROL[9] |
| 582 | * PM1_STATUS[11] |
| 583 | * |
| 584 | * ACPI References: |
| 585 | * 1) Hardware Ignored Bits: When software writes to a register with ignored |
| 586 | * bit fields, it preserves the ignored bit fields |
| 587 | * 2) SCI_EN: OSPM always preserves this bit position |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | * |
| 589 | ******************************************************************************/ |
| 590 | |
Alexey Starikovskiy | d30dc9ab | 2007-09-30 22:39:36 +0400 | [diff] [blame] | 591 | acpi_status acpi_hw_register_write(u32 register_id, u32 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 593 | acpi_status status; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 594 | u32 read_value; |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 595 | u64 read_value64; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 597 | ACPI_FUNCTION_TRACE(hw_register_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | switch (register_id) { |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 600 | case ACPI_REGISTER_PM1_STATUS: /* PM1 A/B: 16-bit access each */ |
Bob Moore | 8636f8d | 2009-03-09 16:32:20 +0800 | [diff] [blame] | 601 | /* |
| 602 | * Handle the "ignored" bit in PM1 Status. According to the ACPI |
| 603 | * specification, ignored bits are to be preserved when writing. |
| 604 | * Normally, this would mean a read/modify/write sequence. However, |
| 605 | * preserving a bit in the status register is different. Writing a |
| 606 | * one clears the status, and writing a zero preserves the status. |
| 607 | * Therefore, we must always write zero to the ignored bit. |
| 608 | * |
| 609 | * This behavior is clarified in the ACPI 4.0 specification. |
| 610 | */ |
| 611 | value &= ~ACPI_PM1_STATUS_PRESERVED_BITS; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 612 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 613 | status = acpi_hw_write_multiple(value, |
| 614 | &acpi_gbl_xpm1a_status, |
| 615 | &acpi_gbl_xpm1b_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | break; |
| 617 | |
Lv Zheng | 75c8044 | 2012-12-19 05:36:49 +0000 | [diff] [blame] | 618 | case ACPI_REGISTER_PM1_ENABLE: /* PM1 A/B: 16-bit access each */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 620 | status = acpi_hw_write_multiple(value, |
| 621 | &acpi_gbl_xpm1a_enable, |
| 622 | &acpi_gbl_xpm1b_enable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | break; |
| 624 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 625 | case ACPI_REGISTER_PM1_CONTROL: /* PM1 A/B: 16-bit access each */ |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 626 | /* |
| 627 | * Perform a read first to preserve certain bits (per ACPI spec) |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 628 | * Note: This includes SCI_EN, we never want to change this bit |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 629 | */ |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 630 | status = acpi_hw_read_multiple(&read_value, |
| 631 | &acpi_gbl_FADT. |
| 632 | xpm1a_control_block, |
| 633 | &acpi_gbl_FADT. |
| 634 | xpm1b_control_block); |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 635 | if (ACPI_FAILURE(status)) { |
Alexey Starikovskiy | d30dc9ab | 2007-09-30 22:39:36 +0400 | [diff] [blame] | 636 | goto exit; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | /* Insert the bits to be preserved */ |
| 640 | |
| 641 | ACPI_INSERT_BITS(value, ACPI_PM1_CONTROL_PRESERVED_BITS, |
| 642 | read_value); |
| 643 | |
| 644 | /* Now we can write the data */ |
| 645 | |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 646 | status = acpi_hw_write_multiple(value, |
| 647 | &acpi_gbl_FADT. |
| 648 | xpm1a_control_block, |
| 649 | &acpi_gbl_FADT. |
| 650 | xpm1b_control_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | break; |
| 652 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 653 | case ACPI_REGISTER_PM2_CONTROL: /* 8-bit access */ |
Bob Moore | 20869dc | 2009-03-13 09:10:46 +0800 | [diff] [blame] | 654 | /* |
| 655 | * For control registers, all reserved bits must be preserved, |
| 656 | * as per the ACPI spec. |
| 657 | */ |
| 658 | status = |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 659 | acpi_hw_read(&read_value64, |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 660 | &acpi_gbl_FADT.xpm2_control_block); |
Bob Moore | 20869dc | 2009-03-13 09:10:46 +0800 | [diff] [blame] | 661 | if (ACPI_FAILURE(status)) { |
| 662 | goto exit; |
| 663 | } |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 664 | read_value = (u32)read_value64; |
Bob Moore | 20869dc | 2009-03-13 09:10:46 +0800 | [diff] [blame] | 665 | |
| 666 | /* Insert the bits to be preserved */ |
| 667 | |
| 668 | ACPI_INSERT_BITS(value, ACPI_PM2_CONTROL_PRESERVED_BITS, |
| 669 | read_value); |
| 670 | |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 671 | status = |
| 672 | acpi_hw_write(value, &acpi_gbl_FADT.xpm2_control_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | break; |
| 674 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 675 | case ACPI_REGISTER_PM_TIMER: /* 32-bit access */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 677 | status = acpi_hw_write(value, &acpi_gbl_FADT.xpm_timer_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | break; |
| 679 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 680 | case ACPI_REGISTER_SMI_COMMAND_BLOCK: /* 8-bit access */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | |
| 682 | /* SMI_CMD is currently always in IO space */ |
| 683 | |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 684 | status = |
Bob Moore | 7f07190 | 2009-03-19 09:37:47 +0800 | [diff] [blame] | 685 | acpi_hw_write_port(acpi_gbl_FADT.smi_command, value, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | break; |
| 687 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | default: |
Chao Guan | 1d1ea1b7 | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 689 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 690 | ACPI_ERROR((AE_INFO, "Unknown Register ID: 0x%X", register_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | status = AE_BAD_PARAMETER; |
| 692 | break; |
| 693 | } |
| 694 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 695 | exit: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 696 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 698 | |
| 699 | /****************************************************************************** |
| 700 | * |
| 701 | * FUNCTION: acpi_hw_read_multiple |
| 702 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 703 | * PARAMETERS: value - Where the register value is returned |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 704 | * register_a - First ACPI register (required) |
| 705 | * register_b - Second ACPI register (optional) |
| 706 | * |
| 707 | * RETURN: Status |
| 708 | * |
| 709 | * DESCRIPTION: Read from the specified two-part ACPI register (such as PM1 A/B) |
| 710 | * |
| 711 | ******************************************************************************/ |
| 712 | |
| 713 | static acpi_status |
| 714 | acpi_hw_read_multiple(u32 *value, |
| 715 | struct acpi_generic_address *register_a, |
| 716 | struct acpi_generic_address *register_b) |
| 717 | { |
| 718 | u32 value_a = 0; |
| 719 | u32 value_b = 0; |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 720 | u64 value64; |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 721 | acpi_status status; |
| 722 | |
| 723 | /* The first register is always required */ |
| 724 | |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 725 | status = acpi_hw_read(&value64, register_a); |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 726 | if (ACPI_FAILURE(status)) { |
| 727 | return (status); |
| 728 | } |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 729 | value_a = (u32)value64; |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 730 | |
| 731 | /* Second register is optional */ |
| 732 | |
| 733 | if (register_b->address) { |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 734 | status = acpi_hw_read(&value64, register_b); |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 735 | if (ACPI_FAILURE(status)) { |
| 736 | return (status); |
| 737 | } |
Lv Zheng | 8381c54 | 2017-09-20 10:00:11 +0800 | [diff] [blame] | 738 | value_b = (u32)value64; |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 739 | } |
| 740 | |
Bob Moore | aefc7f9 | 2009-02-18 14:26:02 +0800 | [diff] [blame] | 741 | /* |
| 742 | * OR the two return values together. No shifting or masking is necessary, |
| 743 | * because of how the PM1 registers are defined in the ACPI specification: |
| 744 | * |
| 745 | * "Although the bits can be split between the two register blocks (each |
| 746 | * register block has a unique pointer within the FADT), the bit positions |
| 747 | * are maintained. The register block with unimplemented bits (that is, |
| 748 | * those implemented in the other register block) always returns zeros, |
| 749 | * and writes have no side effects" |
| 750 | */ |
| 751 | *value = (value_a | value_b); |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 752 | return (AE_OK); |
| 753 | } |
| 754 | |
| 755 | /****************************************************************************** |
| 756 | * |
| 757 | * FUNCTION: acpi_hw_write_multiple |
| 758 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 759 | * PARAMETERS: value - The value to write |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 760 | * register_a - First ACPI register (required) |
| 761 | * register_b - Second ACPI register (optional) |
| 762 | * |
| 763 | * RETURN: Status |
| 764 | * |
| 765 | * DESCRIPTION: Write to the specified two-part ACPI register (such as PM1 A/B) |
| 766 | * |
| 767 | ******************************************************************************/ |
| 768 | |
| 769 | static acpi_status |
| 770 | acpi_hw_write_multiple(u32 value, |
| 771 | struct acpi_generic_address *register_a, |
| 772 | struct acpi_generic_address *register_b) |
| 773 | { |
| 774 | acpi_status status; |
| 775 | |
| 776 | /* The first register is always required */ |
| 777 | |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 778 | status = acpi_hw_write(value, register_a); |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 779 | if (ACPI_FAILURE(status)) { |
| 780 | return (status); |
| 781 | } |
| 782 | |
Bob Moore | aefc7f9 | 2009-02-18 14:26:02 +0800 | [diff] [blame] | 783 | /* |
| 784 | * Second register is optional |
| 785 | * |
| 786 | * No bit shifting or clearing is necessary, because of how the PM1 |
| 787 | * registers are defined in the ACPI specification: |
| 788 | * |
| 789 | * "Although the bits can be split between the two register blocks (each |
| 790 | * register block has a unique pointer within the FADT), the bit positions |
| 791 | * are maintained. The register block with unimplemented bits (that is, |
| 792 | * those implemented in the other register block) always returns zeros, |
| 793 | * and writes have no side effects" |
| 794 | */ |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 795 | if (register_b->address) { |
Bob Moore | c6b5774 | 2009-06-24 09:44:06 +0800 | [diff] [blame] | 796 | status = acpi_hw_write(value, register_b); |
Bob Moore | c520aba | 2009-02-18 14:20:12 +0800 | [diff] [blame] | 797 | } |
| 798 | |
| 799 | return (status); |
| 800 | } |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 801 | |
| 802 | #endif /* !ACPI_REDUCED_HARDWARE */ |