2 * Host communication command constants for ChromeOS EC
4 * Copyright (C) 2012 Google, Inc
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * The ChromeOS EC multi function device is used to mux all the requests
16 * to the EC device for its multiple features: keyboard controller,
17 * battery charging and regulator control, firmware update.
19 * NOTE: This file is copied verbatim from the ChromeOS EC Open Source
20 * project in an attempt to make future updates easy to make.
23 #ifndef __CROS_EC_COMMANDS_H
24 #define __CROS_EC_COMMANDS_H
27 * Current version of this protocol
29 * TODO(crosbug.com/p/11223): This is effectively useless; protocol is
30 * determined in other ways. Remove this once the kernel code no longer
33 #define EC_PROTO_VERSION 0x00000002
35 /* Command version mask */
36 #define EC_VER_MASK(version) (1UL << (version))
38 /* I/O addresses for ACPI commands */
39 #define EC_LPC_ADDR_ACPI_DATA 0x62
40 #define EC_LPC_ADDR_ACPI_CMD 0x66
42 /* I/O addresses for host command */
43 #define EC_LPC_ADDR_HOST_DATA 0x200
44 #define EC_LPC_ADDR_HOST_CMD 0x204
46 /* I/O addresses for host command args and params */
47 /* Protocol version 2 */
48 #define EC_LPC_ADDR_HOST_ARGS 0x800 /* And 0x801, 0x802, 0x803 */
49 #define EC_LPC_ADDR_HOST_PARAM 0x804 /* For version 2 params; size is
50 * EC_PROTO2_MAX_PARAM_SIZE */
51 /* Protocol version 3 */
52 #define EC_LPC_ADDR_HOST_PACKET 0x800 /* Offset of version 3 packet */
53 #define EC_LPC_HOST_PACKET_SIZE 0x100 /* Max size of version 3 packet */
55 /* The actual block is 0x800-0x8ff, but some BIOSes think it's 0x880-0x8ff
56 * and they tell the kernel that so we have to think of it as two parts. */
57 #define EC_HOST_CMD_REGION0 0x800
58 #define EC_HOST_CMD_REGION1 0x880
59 #define EC_HOST_CMD_REGION_SIZE 0x80
61 /* EC command register bit functions */
62 #define EC_LPC_CMDR_DATA (1 << 0) /* Data ready for host to read */
63 #define EC_LPC_CMDR_PENDING (1 << 1) /* Write pending to EC */
64 #define EC_LPC_CMDR_BUSY (1 << 2) /* EC is busy processing a command */
65 #define EC_LPC_CMDR_CMD (1 << 3) /* Last host write was a command */
66 #define EC_LPC_CMDR_ACPI_BRST (1 << 4) /* Burst mode (not used) */
67 #define EC_LPC_CMDR_SCI (1 << 5) /* SCI event is pending */
68 #define EC_LPC_CMDR_SMI (1 << 6) /* SMI event is pending */
70 #define EC_LPC_ADDR_MEMMAP 0x900
71 #define EC_MEMMAP_SIZE 255 /* ACPI IO buffer max is 255 bytes */
72 #define EC_MEMMAP_TEXT_MAX 8 /* Size of a string in the memory map */
74 /* The offset address of each type of data in mapped memory. */
75 #define EC_MEMMAP_TEMP_SENSOR 0x00 /* Temp sensors 0x00 - 0x0f */
76 #define EC_MEMMAP_FAN 0x10 /* Fan speeds 0x10 - 0x17 */
77 #define EC_MEMMAP_TEMP_SENSOR_B 0x18 /* More temp sensors 0x18 - 0x1f */
78 #define EC_MEMMAP_ID 0x20 /* 0x20 == 'E', 0x21 == 'C' */
79 #define EC_MEMMAP_ID_VERSION 0x22 /* Version of data in 0x20 - 0x2f */
80 #define EC_MEMMAP_THERMAL_VERSION 0x23 /* Version of data in 0x00 - 0x1f */
81 #define EC_MEMMAP_BATTERY_VERSION 0x24 /* Version of data in 0x40 - 0x7f */
82 #define EC_MEMMAP_SWITCHES_VERSION 0x25 /* Version of data in 0x30 - 0x33 */
83 #define EC_MEMMAP_EVENTS_VERSION 0x26 /* Version of data in 0x34 - 0x3f */
84 #define EC_MEMMAP_HOST_CMD_FLAGS 0x27 /* Host cmd interface flags (8 bits) */
85 /* Unused 0x28 - 0x2f */
86 #define EC_MEMMAP_SWITCHES 0x30 /* 8 bits */
87 /* Unused 0x31 - 0x33 */
88 #define EC_MEMMAP_HOST_EVENTS 0x34 /* 32 bits */
89 /* Reserve 0x38 - 0x3f for additional host event-related stuff */
90 /* Battery values are all 32 bits */
91 #define EC_MEMMAP_BATT_VOLT 0x40 /* Battery Present Voltage */
92 #define EC_MEMMAP_BATT_RATE 0x44 /* Battery Present Rate */
93 #define EC_MEMMAP_BATT_CAP 0x48 /* Battery Remaining Capacity */
94 #define EC_MEMMAP_BATT_FLAG 0x4c /* Battery State, defined below */
95 #define EC_MEMMAP_BATT_DCAP 0x50 /* Battery Design Capacity */
96 #define EC_MEMMAP_BATT_DVLT 0x54 /* Battery Design Voltage */
97 #define EC_MEMMAP_BATT_LFCC 0x58 /* Battery Last Full Charge Capacity */
98 #define EC_MEMMAP_BATT_CCNT 0x5c /* Battery Cycle Count */
99 /* Strings are all 8 bytes (EC_MEMMAP_TEXT_MAX) */
100 #define EC_MEMMAP_BATT_MFGR 0x60 /* Battery Manufacturer String */
101 #define EC_MEMMAP_BATT_MODEL 0x68 /* Battery Model Number String */
102 #define EC_MEMMAP_BATT_SERIAL 0x70 /* Battery Serial Number String */
103 #define EC_MEMMAP_BATT_TYPE 0x78 /* Battery Type String */
104 #define EC_MEMMAP_ALS 0x80 /* ALS readings in lux (2 X 16 bits) */
105 /* Unused 0x84 - 0x8f */
106 #define EC_MEMMAP_ACC_STATUS 0x90 /* Accelerometer status (8 bits )*/
108 #define EC_MEMMAP_ACC_DATA 0x92 /* Accelerometer data 0x92 - 0x9f */
109 #define EC_MEMMAP_GYRO_DATA 0xa0 /* Gyroscope data 0xa0 - 0xa5 */
110 /* Unused 0xa6 - 0xfe (remember, 0xff is NOT part of the memmap region) */
113 /* Define the format of the accelerometer mapped memory status byte. */
114 #define EC_MEMMAP_ACC_STATUS_SAMPLE_ID_MASK 0x0f
115 #define EC_MEMMAP_ACC_STATUS_BUSY_BIT (1 << 4)
116 #define EC_MEMMAP_ACC_STATUS_PRESENCE_BIT (1 << 7)
118 /* Number of temp sensors at EC_MEMMAP_TEMP_SENSOR */
119 #define EC_TEMP_SENSOR_ENTRIES 16
121 * Number of temp sensors at EC_MEMMAP_TEMP_SENSOR_B.
123 * Valid only if EC_MEMMAP_THERMAL_VERSION returns >= 2.
125 #define EC_TEMP_SENSOR_B_ENTRIES 8
127 /* Special values for mapped temperature sensors */
128 #define EC_TEMP_SENSOR_NOT_PRESENT 0xff
129 #define EC_TEMP_SENSOR_ERROR 0xfe
130 #define EC_TEMP_SENSOR_NOT_POWERED 0xfd
131 #define EC_TEMP_SENSOR_NOT_CALIBRATED 0xfc
133 * The offset of temperature value stored in mapped memory. This allows
134 * reporting a temperature range of 200K to 454K = -73C to 181C.
136 #define EC_TEMP_SENSOR_OFFSET 200
139 * Number of ALS readings at EC_MEMMAP_ALS
141 #define EC_ALS_ENTRIES 2
144 * The default value a temperature sensor will return when it is present but
145 * has not been read this boot. This is a reasonable number to avoid
146 * triggering alarms on the host.
148 #define EC_TEMP_SENSOR_DEFAULT (296 - EC_TEMP_SENSOR_OFFSET)
150 #define EC_FAN_SPEED_ENTRIES 4 /* Number of fans at EC_MEMMAP_FAN */
151 #define EC_FAN_SPEED_NOT_PRESENT 0xffff /* Entry not present */
152 #define EC_FAN_SPEED_STALLED 0xfffe /* Fan stalled */
154 /* Battery bit flags at EC_MEMMAP_BATT_FLAG. */
155 #define EC_BATT_FLAG_AC_PRESENT 0x01
156 #define EC_BATT_FLAG_BATT_PRESENT 0x02
157 #define EC_BATT_FLAG_DISCHARGING 0x04
158 #define EC_BATT_FLAG_CHARGING 0x08
159 #define EC_BATT_FLAG_LEVEL_CRITICAL 0x10
161 /* Switch flags at EC_MEMMAP_SWITCHES */
162 #define EC_SWITCH_LID_OPEN 0x01
163 #define EC_SWITCH_POWER_BUTTON_PRESSED 0x02
164 #define EC_SWITCH_WRITE_PROTECT_DISABLED 0x04
165 /* Was recovery requested via keyboard; now unused. */
166 #define EC_SWITCH_IGNORE1 0x08
167 /* Recovery requested via dedicated signal (from servo board) */
168 #define EC_SWITCH_DEDICATED_RECOVERY 0x10
169 /* Was fake developer mode switch; now unused. Remove in next refactor. */
170 #define EC_SWITCH_IGNORE0 0x20
172 /* Host command interface flags */
173 /* Host command interface supports LPC args (LPC interface only) */
174 #define EC_HOST_CMD_FLAG_LPC_ARGS_SUPPORTED 0x01
175 /* Host command interface supports version 3 protocol */
176 #define EC_HOST_CMD_FLAG_VERSION_3 0x02
178 /* Wireless switch flags */
179 #define EC_WIRELESS_SWITCH_ALL ~0x00 /* All flags */
180 #define EC_WIRELESS_SWITCH_WLAN 0x01 /* WLAN radio */
181 #define EC_WIRELESS_SWITCH_BLUETOOTH 0x02 /* Bluetooth radio */
182 #define EC_WIRELESS_SWITCH_WWAN 0x04 /* WWAN power */
183 #define EC_WIRELESS_SWITCH_WLAN_POWER 0x08 /* WLAN power */
186 * This header file is used in coreboot both in C and ACPI code. The ACPI code
187 * is pre-processed to handle constants but the ASL compiler is unable to
188 * handle actual C code so keep it separate.
193 * Define __packed if someone hasn't beat us to it. Linux kernel style
194 * checking prefers __packed over __attribute__((packed)).
197 #define __packed __attribute__((packed))
200 /* LPC command status byte masks */
201 /* EC has written a byte in the data register and host hasn't read it yet */
202 #define EC_LPC_STATUS_TO_HOST 0x01
203 /* Host has written a command/data byte and the EC hasn't read it yet */
204 #define EC_LPC_STATUS_FROM_HOST 0x02
205 /* EC is processing a command */
206 #define EC_LPC_STATUS_PROCESSING 0x04
207 /* Last write to EC was a command, not data */
208 #define EC_LPC_STATUS_LAST_CMD 0x08
209 /* EC is in burst mode. Unsupported by Chrome EC, so this bit is never set */
210 #define EC_LPC_STATUS_BURST_MODE 0x10
211 /* SCI event is pending (requesting SCI query) */
212 #define EC_LPC_STATUS_SCI_PENDING 0x20
213 /* SMI event is pending (requesting SMI query) */
214 #define EC_LPC_STATUS_SMI_PENDING 0x40
216 #define EC_LPC_STATUS_RESERVED 0x80
219 * EC is busy. This covers both the EC processing a command, and the host has
220 * written a new command but the EC hasn't picked it up yet.
222 #define EC_LPC_STATUS_BUSY_MASK \
223 (EC_LPC_STATUS_FROM_HOST | EC_LPC_STATUS_PROCESSING)
225 /* Host command response codes */
228 EC_RES_INVALID_COMMAND = 1,
230 EC_RES_INVALID_PARAM = 3,
231 EC_RES_ACCESS_DENIED = 4,
232 EC_RES_INVALID_RESPONSE = 5,
233 EC_RES_INVALID_VERSION = 6,
234 EC_RES_INVALID_CHECKSUM = 7,
235 EC_RES_IN_PROGRESS = 8, /* Accepted, command in progress */
236 EC_RES_UNAVAILABLE = 9, /* No response available */
237 EC_RES_TIMEOUT = 10, /* We got a timeout */
238 EC_RES_OVERFLOW = 11, /* Table / data overflow */
239 EC_RES_INVALID_HEADER = 12, /* Header contains invalid data */
240 EC_RES_REQUEST_TRUNCATED = 13, /* Didn't get the entire request */
241 EC_RES_RESPONSE_TOO_BIG = 14 /* Response was too big to handle */
245 * Host event codes. Note these are 1-based, not 0-based, because ACPI query
246 * EC command uses code 0 to mean "no event pending". We explicitly specify
247 * each value in the enum listing so they won't change if we delete/insert an
248 * item or rearrange the list (it needs to be stable across platforms, not
249 * just within a single compiled instance).
251 enum host_event_code {
252 EC_HOST_EVENT_LID_CLOSED = 1,
253 EC_HOST_EVENT_LID_OPEN = 2,
254 EC_HOST_EVENT_POWER_BUTTON = 3,
255 EC_HOST_EVENT_AC_CONNECTED = 4,
256 EC_HOST_EVENT_AC_DISCONNECTED = 5,
257 EC_HOST_EVENT_BATTERY_LOW = 6,
258 EC_HOST_EVENT_BATTERY_CRITICAL = 7,
259 EC_HOST_EVENT_BATTERY = 8,
260 EC_HOST_EVENT_THERMAL_THRESHOLD = 9,
261 EC_HOST_EVENT_THERMAL_OVERLOAD = 10,
262 EC_HOST_EVENT_THERMAL = 11,
263 EC_HOST_EVENT_USB_CHARGER = 12,
264 EC_HOST_EVENT_KEY_PRESSED = 13,
266 * EC has finished initializing the host interface. The host can check
267 * for this event following sending a EC_CMD_REBOOT_EC command to
268 * determine when the EC is ready to accept subsequent commands.
270 EC_HOST_EVENT_INTERFACE_READY = 14,
271 /* Keyboard recovery combo has been pressed */
272 EC_HOST_EVENT_KEYBOARD_RECOVERY = 15,
274 /* Shutdown due to thermal overload */
275 EC_HOST_EVENT_THERMAL_SHUTDOWN = 16,
276 /* Shutdown due to battery level too low */
277 EC_HOST_EVENT_BATTERY_SHUTDOWN = 17,
279 /* Suggest that the AP throttle itself */
280 EC_HOST_EVENT_THROTTLE_START = 18,
281 /* Suggest that the AP resume normal speed */
282 EC_HOST_EVENT_THROTTLE_STOP = 19,
284 /* Hang detect logic detected a hang and host event timeout expired */
285 EC_HOST_EVENT_HANG_DETECT = 20,
286 /* Hang detect logic detected a hang and warm rebooted the AP */
287 EC_HOST_EVENT_HANG_REBOOT = 21,
288 /* PD MCU triggering host event */
289 EC_HOST_EVENT_PD_MCU = 22,
291 /* EC desires to change state of host-controlled USB mux */
292 EC_HOST_EVENT_USB_MUX = 28,
294 /* EC RTC event occurred */
295 EC_HOST_EVENT_RTC = 26,
298 * The high bit of the event mask is not used as a host event code. If
299 * it reads back as set, then the entire event mask should be
300 * considered invalid by the host. This can happen when reading the
301 * raw event status via EC_MEMMAP_HOST_EVENTS but the LPC interface is
302 * not initialized on the EC, or improperly configured on the host.
304 EC_HOST_EVENT_INVALID = 32
306 /* Host event mask */
307 #define EC_HOST_EVENT_MASK(event_code) (1UL << ((event_code) - 1))
310 * struct ec_lpc_host_args - Arguments at EC_LPC_ADDR_HOST_ARGS
311 * @flags: The host argument flags.
312 * @command_version: Command version.
313 * @data_size: The length of data.
314 * @checksum: Checksum; sum of command + flags + command_version + data_size +
315 * all params/response data bytes.
317 struct ec_lpc_host_args {
319 uint8_t command_version;
324 /* Flags for ec_lpc_host_args.flags */
326 * Args are from host. Data area at EC_LPC_ADDR_HOST_PARAM contains command
329 * If EC gets a command and this flag is not set, this is an old-style command.
330 * Command version is 0 and params from host are at EC_LPC_ADDR_OLD_PARAM with
331 * unknown length. EC must respond with an old-style response (that is,
332 * withouth setting EC_HOST_ARGS_FLAG_TO_HOST).
334 #define EC_HOST_ARGS_FLAG_FROM_HOST 0x01
336 * Args are from EC. Data area at EC_LPC_ADDR_HOST_PARAM contains response.
338 * If EC responds to a command and this flag is not set, this is an old-style
339 * response. Command version is 0 and response data from EC is at
340 * EC_LPC_ADDR_OLD_PARAM with unknown length.
342 #define EC_HOST_ARGS_FLAG_TO_HOST 0x02
344 /*****************************************************************************/
346 * Byte codes returned by EC over SPI interface.
348 * These can be used by the AP to debug the EC interface, and to determine
349 * when the EC is not in a state where it will ever get around to responding
352 * Example of sequence of bytes read from EC for a current good transfer:
353 * 1. - - AP asserts chip select (CS#)
354 * 2. EC_SPI_OLD_READY - AP sends first byte(s) of request
355 * 3. - - EC starts handling CS# interrupt
356 * 4. EC_SPI_RECEIVING - AP sends remaining byte(s) of request
357 * 5. EC_SPI_PROCESSING - EC starts processing request; AP is clocking in
358 * bytes looking for EC_SPI_FRAME_START
359 * 6. - - EC finishes processing and sets up response
360 * 7. EC_SPI_FRAME_START - AP reads frame byte
361 * 8. (response packet) - AP reads response packet
362 * 9. EC_SPI_PAST_END - Any additional bytes read by AP
363 * 10 - - AP deasserts chip select
364 * 11 - - EC processes CS# interrupt and sets up DMA for
367 * If the AP is waiting for EC_SPI_FRAME_START and sees any value other than
368 * the following byte values:
374 * Then the EC found an error in the request, or was not ready for the request
375 * and lost data. The AP should give up waiting for EC_SPI_FRAME_START,
376 * because the EC is unable to tell when the AP is done sending its request.
380 * Framing byte which precedes a response packet from the EC. After sending a
381 * request, the AP will clock in bytes until it sees the framing byte, then
382 * clock in the response packet.
384 #define EC_SPI_FRAME_START 0xec
387 * Padding bytes which are clocked out after the end of a response packet.
389 #define EC_SPI_PAST_END 0xed
392 * EC is ready to receive, and has ignored the byte sent by the AP. EC expects
393 * that the AP will send a valid packet header (starting with
394 * EC_COMMAND_PROTOCOL_3) in the next 32 bytes.
396 #define EC_SPI_RX_READY 0xf8
399 * EC has started receiving the request from the AP, but hasn't started
402 #define EC_SPI_RECEIVING 0xf9
404 /* EC has received the entire request from the AP and is processing it. */
405 #define EC_SPI_PROCESSING 0xfa
408 * EC received bad data from the AP, such as a packet header with an invalid
409 * length. EC will ignore all data until chip select deasserts.
411 #define EC_SPI_RX_BAD_DATA 0xfb
414 * EC received data from the AP before it was ready. That is, the AP asserted
415 * chip select and started clocking data before the EC was ready to receive it.
416 * EC will ignore all data until chip select deasserts.
418 #define EC_SPI_NOT_READY 0xfc
421 * EC was ready to receive a request from the AP. EC has treated the byte sent
422 * by the AP as part of a request packet, or (for old-style ECs) is processing
423 * a fully received packet but is not ready to respond yet.
425 #define EC_SPI_OLD_READY 0xfd
427 /*****************************************************************************/
430 * Protocol version 2 for I2C and SPI send a request this way:
432 * 0 EC_CMD_VERSION0 + (command version)
434 * 2 Length of params = N
435 * 3..N+2 Params, if any
436 * N+3 8-bit checksum of bytes 0..N+2
438 * The corresponding response is:
440 * 0 Result code (EC_RES_*)
441 * 1 Length of params = M
442 * 2..M+1 Params, if any
443 * M+2 8-bit checksum of bytes 0..M+1
445 #define EC_PROTO2_REQUEST_HEADER_BYTES 3
446 #define EC_PROTO2_REQUEST_TRAILER_BYTES 1
447 #define EC_PROTO2_REQUEST_OVERHEAD (EC_PROTO2_REQUEST_HEADER_BYTES + \
448 EC_PROTO2_REQUEST_TRAILER_BYTES)
450 #define EC_PROTO2_RESPONSE_HEADER_BYTES 2
451 #define EC_PROTO2_RESPONSE_TRAILER_BYTES 1
452 #define EC_PROTO2_RESPONSE_OVERHEAD (EC_PROTO2_RESPONSE_HEADER_BYTES + \
453 EC_PROTO2_RESPONSE_TRAILER_BYTES)
455 /* Parameter length was limited by the LPC interface */
456 #define EC_PROTO2_MAX_PARAM_SIZE 0xfc
458 /* Maximum request and response packet sizes for protocol version 2 */
459 #define EC_PROTO2_MAX_REQUEST_SIZE (EC_PROTO2_REQUEST_OVERHEAD + \
460 EC_PROTO2_MAX_PARAM_SIZE)
461 #define EC_PROTO2_MAX_RESPONSE_SIZE (EC_PROTO2_RESPONSE_OVERHEAD + \
462 EC_PROTO2_MAX_PARAM_SIZE)
464 /*****************************************************************************/
467 * Value written to legacy command port / prefix byte to indicate protocol
468 * 3+ structs are being used. Usage is bus-dependent.
470 #define EC_COMMAND_PROTOCOL_3 0xda
472 #define EC_HOST_REQUEST_VERSION 3
475 * struct ec_host_request - Version 3 request from host.
476 * @struct_version: Should be 3. The EC will return EC_RES_INVALID_HEADER if it
477 * receives a header with a version it doesn't know how to
479 * @checksum: Checksum of request and data; sum of all bytes including checksum
481 * @command: Command to send (EC_CMD_...)
482 * @command_version: Command version.
483 * @reserved: Unused byte in current protocol version; set to 0.
484 * @data_len: Length of data which follows this header.
486 struct ec_host_request {
487 uint8_t struct_version;
490 uint8_t command_version;
495 #define EC_HOST_RESPONSE_VERSION 3
498 * struct ec_host_response - Version 3 response from EC.
499 * @struct_version: Struct version (=3).
500 * @checksum: Checksum of response and data; sum of all bytes including
501 * checksum should total to 0.
502 * @result: EC's response to the command (separate from communication failure)
503 * @data_len: Length of data which follows this header.
504 * @reserved: Unused bytes in current protocol version; set to 0.
506 struct ec_host_response {
507 uint8_t struct_version;
514 /*****************************************************************************/
518 * Each command is an 16-bit command value. Commands which take params or
519 * return response data specify structs for that data. If no struct is
520 * specified, the command does not input or output data, respectively.
521 * Parameter/response length is implicit in the structs. Some underlying
522 * communication protocols (I2C, SPI) may add length or checksum headers, but
523 * those are implementation-dependent and not defined here.
526 /*****************************************************************************/
527 /* General / test commands */
530 * Get protocol version, used to deal with non-backward compatible protocol
533 #define EC_CMD_PROTO_VERSION 0x00
536 * struct ec_response_proto_version - Response to the proto version command.
537 * @version: The protocol version.
539 struct ec_response_proto_version {
544 * Hello. This is a simple command to test the EC is responsive to
547 #define EC_CMD_HELLO 0x01
550 * struct ec_params_hello - Parameters to the hello command.
551 * @in_data: Pass anything here.
553 struct ec_params_hello {
558 * struct ec_response_hello - Response to the hello command.
559 * @out_data: Output will be in_data + 0x01020304.
561 struct ec_response_hello {
565 /* Get version number */
566 #define EC_CMD_GET_VERSION 0x02
568 enum ec_current_image {
569 EC_IMAGE_UNKNOWN = 0,
575 * struct ec_response_get_version - Response to the get version command.
576 * @version_string_ro: Null-terminated RO firmware version string.
577 * @version_string_rw: Null-terminated RW firmware version string.
578 * @reserved: Unused bytes; was previously RW-B firmware version string.
579 * @current_image: One of ec_current_image.
581 struct ec_response_get_version {
582 char version_string_ro[32];
583 char version_string_rw[32];
585 uint32_t current_image;
589 #define EC_CMD_READ_TEST 0x03
592 * struct ec_params_read_test - Parameters for the read test command.
593 * @offset: Starting value for read buffer.
594 * @size: Size to read in bytes.
596 struct ec_params_read_test {
602 * struct ec_response_read_test - Response to the read test command.
603 * @data: Data returned by the read test command.
605 struct ec_response_read_test {
610 * Get build information
612 * Response is null-terminated string.
614 #define EC_CMD_GET_BUILD_INFO 0x04
617 #define EC_CMD_GET_CHIP_INFO 0x05
620 * struct ec_response_get_chip_info - Response to the get chip info command.
621 * @vendor: Null-terminated string for chip vendor.
622 * @name: Null-terminated string for chip name.
623 * @revision: Null-terminated string for chip mask version.
625 struct ec_response_get_chip_info {
631 /* Get board HW version */
632 #define EC_CMD_GET_BOARD_VERSION 0x06
635 * struct ec_response_board_version - Response to the board version command.
636 * @board_version: A monotonously incrementing number.
638 struct ec_response_board_version {
639 uint16_t board_version;
643 * Read memory-mapped data.
645 * This is an alternate interface to memory-mapped data for bus protocols
646 * which don't support direct-mapped memory - I2C, SPI, etc.
648 * Response is params.size bytes of data.
650 #define EC_CMD_READ_MEMMAP 0x07
653 * struct ec_params_read_memmap - Parameters for the read memory map command.
654 * @offset: Offset in memmap (EC_MEMMAP_*).
655 * @size: Size to read in bytes.
657 struct ec_params_read_memmap {
662 /* Read versions supported for a command */
663 #define EC_CMD_GET_CMD_VERSIONS 0x08
666 * struct ec_params_get_cmd_versions - Parameters for the get command versions.
667 * @cmd: Command to check.
669 struct ec_params_get_cmd_versions {
674 * struct ec_params_get_cmd_versions_v1 - Parameters for the get command
676 * @cmd: Command to check.
678 struct ec_params_get_cmd_versions_v1 {
683 * struct ec_response_get_cmd_version - Response to the get command versions.
684 * @version_mask: Mask of supported versions; use EC_VER_MASK() to compare with
687 struct ec_response_get_cmd_versions {
688 uint32_t version_mask;
692 * Check EC communcations status (busy). This is needed on i2c/spi but not
693 * on lpc since it has its own out-of-band busy indicator.
695 * lpc must read the status from the command register. Attempting this on
696 * lpc will overwrite the args/parameter space and corrupt its data.
698 #define EC_CMD_GET_COMMS_STATUS 0x09
700 /* Avoid using ec_status which is for return values */
701 enum ec_comms_status {
702 EC_COMMS_STATUS_PROCESSING = 1 << 0, /* Processing cmd */
706 * struct ec_response_get_comms_status - Response to the get comms status
708 * @flags: Mask of enum ec_comms_status.
710 struct ec_response_get_comms_status {
711 uint32_t flags; /* Mask of enum ec_comms_status */
714 /* Fake a variety of responses, purely for testing purposes. */
715 #define EC_CMD_TEST_PROTOCOL 0x0a
717 /* Tell the EC what to send back to us. */
718 struct ec_params_test_protocol {
724 /* Here it comes... */
725 struct ec_response_test_protocol {
729 /* Get prococol information */
730 #define EC_CMD_GET_PROTOCOL_INFO 0x0b
732 /* Flags for ec_response_get_protocol_info.flags */
733 /* EC_RES_IN_PROGRESS may be returned if a command is slow */
734 #define EC_PROTOCOL_INFO_IN_PROGRESS_SUPPORTED (1 << 0)
737 * struct ec_response_get_protocol_info - Response to the get protocol info.
738 * @protocol_versions: Bitmask of protocol versions supported (1 << n means
740 * @max_request_packet_size: Maximum request packet size in bytes.
741 * @max_response_packet_size: Maximum response packet size in bytes.
742 * @flags: see EC_PROTOCOL_INFO_*
744 struct ec_response_get_protocol_info {
745 /* Fields which exist if at least protocol version 3 supported */
746 uint32_t protocol_versions;
747 uint16_t max_request_packet_size;
748 uint16_t max_response_packet_size;
753 /*****************************************************************************/
754 /* Get/Set miscellaneous values */
756 /* The upper byte of .flags tells what to do (nothing means "get") */
757 #define EC_GSV_SET 0x80000000
760 * The lower three bytes of .flags identifies the parameter, if that has
761 * meaning for an individual command.
763 #define EC_GSV_PARAM_MASK 0x00ffffff
765 struct ec_params_get_set_value {
770 struct ec_response_get_set_value {
775 /* More than one command can use these structs to get/set paramters. */
776 #define EC_CMD_GSV_PAUSE_IN_S5 0x0c
778 /*****************************************************************************/
779 /* List the features supported by the firmware */
780 #define EC_CMD_GET_FEATURES 0x0d
782 /* Supported features */
783 enum ec_feature_code {
785 * This image contains a limited set of features. Another image
786 * in RW partition may support more features.
788 EC_FEATURE_LIMITED = 0,
790 * Commands for probing/reading/writing/erasing the flash in the
793 EC_FEATURE_FLASH = 1,
795 * Can control the fan speed directly.
797 EC_FEATURE_PWM_FAN = 2,
799 * Can control the intensity of the keyboard backlight.
801 EC_FEATURE_PWM_KEYB = 3,
803 * Support Google lightbar, introduced on Pixel.
805 EC_FEATURE_LIGHTBAR = 4,
806 /* Control of LEDs */
808 /* Exposes an interface to control gyro and sensors.
809 * The host goes through the EC to access these sensors.
810 * In addition, the EC may provide composite sensors, like lid angle.
812 EC_FEATURE_MOTION_SENSE = 6,
813 /* The keyboard is controlled by the EC */
815 /* The AP can use part of the EC flash as persistent storage. */
816 EC_FEATURE_PSTORE = 8,
817 /* The EC monitors BIOS port 80h, and can return POST codes. */
818 EC_FEATURE_PORT80 = 9,
820 * Thermal management: include TMP specific commands.
821 * Higher level than direct fan control.
823 EC_FEATURE_THERMAL = 10,
824 /* Can switch the screen backlight on/off */
825 EC_FEATURE_BKLIGHT_SWITCH = 11,
826 /* Can switch the wifi module on/off */
827 EC_FEATURE_WIFI_SWITCH = 12,
828 /* Monitor host events, through for example SMI or SCI */
829 EC_FEATURE_HOST_EVENTS = 13,
830 /* The EC exposes GPIO commands to control/monitor connected devices. */
831 EC_FEATURE_GPIO = 14,
832 /* The EC can send i2c messages to downstream devices. */
834 /* Command to control charger are included */
835 EC_FEATURE_CHARGER = 16,
836 /* Simple battery support. */
837 EC_FEATURE_BATTERY = 17,
839 * Support Smart battery protocol
840 * (Common Smart Battery System Interface Specification)
842 EC_FEATURE_SMART_BATTERY = 18,
843 /* EC can dectect when the host hangs. */
844 EC_FEATURE_HANG_DETECT = 19,
845 /* Report power information, for pit only */
847 /* Another Cros EC device is present downstream of this one */
848 EC_FEATURE_SUB_MCU = 21,
849 /* Support USB Power delivery (PD) commands */
850 EC_FEATURE_USB_PD = 22,
851 /* Control USB multiplexer, for audio through USB port for instance. */
852 EC_FEATURE_USB_MUX = 23,
853 /* Motion Sensor code has an internal software FIFO */
854 EC_FEATURE_MOTION_SENSE_FIFO = 24,
855 /* EC has RTC feature that can be controlled by host commands */
857 /* EC supports CEC commands */
861 #define EC_FEATURE_MASK_0(event_code) (1UL << (event_code % 32))
862 #define EC_FEATURE_MASK_1(event_code) (1UL << (event_code - 32))
864 struct ec_response_get_features {
868 /*****************************************************************************/
872 #define EC_CMD_FLASH_INFO 0x10
875 * struct ec_response_flash_info - Response to the flash info command.
876 * @flash_size: Usable flash size in bytes.
877 * @write_block_size: Write block size. Write offset and size must be a
879 * @erase_block_size: Erase block size. Erase offset and size must be a
881 * @protect_block_size: Protection block size. Protection offset and size
882 * must be a multiple of this.
884 * Version 0 returns these fields.
886 struct ec_response_flash_info {
888 uint32_t write_block_size;
889 uint32_t erase_block_size;
890 uint32_t protect_block_size;
893 /* Flags for version 1+ flash info command */
894 /* EC flash erases bits to 0 instead of 1 */
895 #define EC_FLASH_INFO_ERASE_TO_0 (1 << 0)
898 * struct ec_response_flash_info_1 - Response to the flash info v1 command.
899 * @flash_size: Usable flash size in bytes.
900 * @write_block_size: Write block size. Write offset and size must be a
902 * @erase_block_size: Erase block size. Erase offset and size must be a
904 * @protect_block_size: Protection block size. Protection offset and size
905 * must be a multiple of this.
906 * @write_ideal_size: Ideal write size in bytes. Writes will be fastest if
907 * size is exactly this and offset is a multiple of this.
908 * For example, an EC may have a write buffer which can do
909 * half-page operations if data is aligned, and a slower
910 * word-at-a-time write mode.
911 * @flags: Flags; see EC_FLASH_INFO_*
913 * Version 1 returns the same initial fields as version 0, with additional
916 * gcc anonymous structs don't seem to get along with the __packed directive;
917 * if they did we'd define the version 0 struct as a sub-struct of this one.
919 struct ec_response_flash_info_1 {
920 /* Version 0 fields; see above for description */
922 uint32_t write_block_size;
923 uint32_t erase_block_size;
924 uint32_t protect_block_size;
926 /* Version 1 adds these fields: */
927 uint32_t write_ideal_size;
934 * Response is params.size bytes of data.
936 #define EC_CMD_FLASH_READ 0x11
939 * struct ec_params_flash_read - Parameters for the flash read command.
940 * @offset: Byte offset to read.
941 * @size: Size to read in bytes.
943 struct ec_params_flash_read {
949 #define EC_CMD_FLASH_WRITE 0x12
950 #define EC_VER_FLASH_WRITE 1
952 /* Version 0 of the flash command supported only 64 bytes of data */
953 #define EC_FLASH_WRITE_VER0_SIZE 64
956 * struct ec_params_flash_write - Parameters for the flash write command.
957 * @offset: Byte offset to write.
958 * @size: Size to write in bytes.
960 struct ec_params_flash_write {
963 /* Followed by data to write */
967 #define EC_CMD_FLASH_ERASE 0x13
970 * struct ec_params_flash_erase - Parameters for the flash erase command.
971 * @offset: Byte offset to erase.
972 * @size: Size to erase in bytes.
974 struct ec_params_flash_erase {
980 * Get/set flash protection.
982 * If mask!=0, sets/clear the requested bits of flags. Depending on the
983 * firmware write protect GPIO, not all flags will take effect immediately;
984 * some flags require a subsequent hard reset to take effect. Check the
985 * returned flags bits to see what actually happened.
987 * If mask=0, simply returns the current flags state.
989 #define EC_CMD_FLASH_PROTECT 0x15
990 #define EC_VER_FLASH_PROTECT 1 /* Command version 1 */
992 /* Flags for flash protection */
993 /* RO flash code protected when the EC boots */
994 #define EC_FLASH_PROTECT_RO_AT_BOOT (1 << 0)
996 * RO flash code protected now. If this bit is set, at-boot status cannot
999 #define EC_FLASH_PROTECT_RO_NOW (1 << 1)
1000 /* Entire flash code protected now, until reboot. */
1001 #define EC_FLASH_PROTECT_ALL_NOW (1 << 2)
1002 /* Flash write protect GPIO is asserted now */
1003 #define EC_FLASH_PROTECT_GPIO_ASSERTED (1 << 3)
1004 /* Error - at least one bank of flash is stuck locked, and cannot be unlocked */
1005 #define EC_FLASH_PROTECT_ERROR_STUCK (1 << 4)
1007 * Error - flash protection is in inconsistent state. At least one bank of
1008 * flash which should be protected is not protected. Usually fixed by
1009 * re-requesting the desired flags, or by a hard reset if that fails.
1011 #define EC_FLASH_PROTECT_ERROR_INCONSISTENT (1 << 5)
1012 /* Entile flash code protected when the EC boots */
1013 #define EC_FLASH_PROTECT_ALL_AT_BOOT (1 << 6)
1016 * struct ec_params_flash_protect - Parameters for the flash protect command.
1017 * @mask: Bits in flags to apply.
1018 * @flags: New flags to apply.
1020 struct ec_params_flash_protect {
1026 * struct ec_response_flash_protect - Response to the flash protect command.
1027 * @flags: Current value of flash protect flags.
1028 * @valid_flags: Flags which are valid on this platform. This allows the
1029 * caller to distinguish between flags which aren't set vs. flags
1030 * which can't be set on this platform.
1031 * @writable_flags: Flags which can be changed given the current protection
1034 struct ec_response_flash_protect {
1036 uint32_t valid_flags;
1037 uint32_t writable_flags;
1041 * Note: commands 0x14 - 0x19 version 0 were old commands to get/set flash
1042 * write protect. These commands may be reused with version > 0.
1045 /* Get the region offset/size */
1046 #define EC_CMD_FLASH_REGION_INFO 0x16
1047 #define EC_VER_FLASH_REGION_INFO 1
1049 enum ec_flash_region {
1050 /* Region which holds read-only EC image */
1051 EC_FLASH_REGION_RO = 0,
1052 /* Region which holds rewritable EC image */
1055 * Region which should be write-protected in the factory (a superset of
1056 * EC_FLASH_REGION_RO)
1058 EC_FLASH_REGION_WP_RO,
1059 /* Number of regions */
1060 EC_FLASH_REGION_COUNT,
1064 * struct ec_params_flash_region_info - Parameters for the flash region info
1066 * @region: Flash region; see EC_FLASH_REGION_*
1068 struct ec_params_flash_region_info {
1072 struct ec_response_flash_region_info {
1077 /* Read/write VbNvContext */
1078 #define EC_CMD_VBNV_CONTEXT 0x17
1079 #define EC_VER_VBNV_CONTEXT 1
1080 #define EC_VBNV_BLOCK_SIZE 16
1082 enum ec_vbnvcontext_op {
1083 EC_VBNV_CONTEXT_OP_READ,
1084 EC_VBNV_CONTEXT_OP_WRITE,
1087 struct ec_params_vbnvcontext {
1089 uint8_t block[EC_VBNV_BLOCK_SIZE];
1092 struct ec_response_vbnvcontext {
1093 uint8_t block[EC_VBNV_BLOCK_SIZE];
1096 /*****************************************************************************/
1099 /* Get fan target RPM */
1100 #define EC_CMD_PWM_GET_FAN_TARGET_RPM 0x20
1102 struct ec_response_pwm_get_fan_rpm {
1106 /* Set target fan RPM */
1107 #define EC_CMD_PWM_SET_FAN_TARGET_RPM 0x21
1109 struct ec_params_pwm_set_fan_target_rpm {
1113 /* Get keyboard backlight */
1114 #define EC_CMD_PWM_GET_KEYBOARD_BACKLIGHT 0x22
1116 struct ec_response_pwm_get_keyboard_backlight {
1121 /* Set keyboard backlight */
1122 #define EC_CMD_PWM_SET_KEYBOARD_BACKLIGHT 0x23
1124 struct ec_params_pwm_set_keyboard_backlight {
1128 /* Set target fan PWM duty cycle */
1129 #define EC_CMD_PWM_SET_FAN_DUTY 0x24
1131 struct ec_params_pwm_set_fan_duty {
1135 #define EC_CMD_PWM_SET_DUTY 0x25
1136 /* 16 bit duty cycle, 0xffff = 100% */
1137 #define EC_PWM_MAX_DUTY 0xffff
1140 /* All types, indexed by board-specific enum pwm_channel */
1141 EC_PWM_TYPE_GENERIC = 0,
1142 /* Keyboard backlight */
1143 EC_PWM_TYPE_KB_LIGHT,
1144 /* Display backlight */
1145 EC_PWM_TYPE_DISPLAY_LIGHT,
1149 struct ec_params_pwm_set_duty {
1150 uint16_t duty; /* Duty cycle, EC_PWM_MAX_DUTY = 100% */
1151 uint8_t pwm_type; /* ec_pwm_type */
1152 uint8_t index; /* Type-specific index, or 0 if unique */
1155 #define EC_CMD_PWM_GET_DUTY 0x26
1157 struct ec_params_pwm_get_duty {
1158 uint8_t pwm_type; /* ec_pwm_type */
1159 uint8_t index; /* Type-specific index, or 0 if unique */
1162 struct ec_response_pwm_get_duty {
1163 uint16_t duty; /* Duty cycle, EC_PWM_MAX_DUTY = 100% */
1166 /*****************************************************************************/
1168 * Lightbar commands. This looks worse than it is. Since we only use one HOST
1169 * command to say "talk to the lightbar", we put the "and tell it to do X" part
1170 * into a subcommand. We'll make separate structs for subcommands with
1171 * different input args, so that we know how much to expect.
1173 #define EC_CMD_LIGHTBAR_CMD 0x28
1179 #define LB_BATTERY_LEVELS 4
1182 * List of tweakable parameters. NOTE: It's __packed so it can be sent in a
1183 * host command, but the alignment is the same regardless. Keep it that way.
1185 struct lightbar_params_v0 {
1187 int32_t google_ramp_up;
1188 int32_t google_ramp_down;
1189 int32_t s3s0_ramp_up;
1190 int32_t s0_tick_delay[2]; /* AC=0/1 */
1191 int32_t s0a_tick_delay[2]; /* AC=0/1 */
1192 int32_t s0s3_ramp_down;
1193 int32_t s3_sleep_for;
1195 int32_t s3_ramp_down;
1199 uint8_t osc_min[2]; /* AC=0/1 */
1200 uint8_t osc_max[2]; /* AC=0/1 */
1201 uint8_t w_ofs[2]; /* AC=0/1 */
1203 /* Brightness limits based on the backlight and AC. */
1204 uint8_t bright_bl_off_fixed[2]; /* AC=0/1 */
1205 uint8_t bright_bl_on_min[2]; /* AC=0/1 */
1206 uint8_t bright_bl_on_max[2]; /* AC=0/1 */
1208 /* Battery level thresholds */
1209 uint8_t battery_threshold[LB_BATTERY_LEVELS - 1];
1211 /* Map [AC][battery_level] to color index */
1212 uint8_t s0_idx[2][LB_BATTERY_LEVELS]; /* AP is running */
1213 uint8_t s3_idx[2][LB_BATTERY_LEVELS]; /* AP is sleeping */
1216 struct rgb_s color[8]; /* 0-3 are Google colors */
1219 struct lightbar_params_v1 {
1221 int32_t google_ramp_up;
1222 int32_t google_ramp_down;
1223 int32_t s3s0_ramp_up;
1224 int32_t s0_tick_delay[2]; /* AC=0/1 */
1225 int32_t s0a_tick_delay[2]; /* AC=0/1 */
1226 int32_t s0s3_ramp_down;
1227 int32_t s3_sleep_for;
1229 int32_t s3_ramp_down;
1230 int32_t tap_tick_delay;
1231 int32_t tap_display_time;
1233 /* Tap-for-battery params */
1234 uint8_t tap_pct_red;
1235 uint8_t tap_pct_green;
1236 uint8_t tap_seg_min_on;
1237 uint8_t tap_seg_max_on;
1238 uint8_t tap_seg_osc;
1242 uint8_t osc_min[2]; /* AC=0/1 */
1243 uint8_t osc_max[2]; /* AC=0/1 */
1244 uint8_t w_ofs[2]; /* AC=0/1 */
1246 /* Brightness limits based on the backlight and AC. */
1247 uint8_t bright_bl_off_fixed[2]; /* AC=0/1 */
1248 uint8_t bright_bl_on_min[2]; /* AC=0/1 */
1249 uint8_t bright_bl_on_max[2]; /* AC=0/1 */
1251 /* Battery level thresholds */
1252 uint8_t battery_threshold[LB_BATTERY_LEVELS - 1];
1254 /* Map [AC][battery_level] to color index */
1255 uint8_t s0_idx[2][LB_BATTERY_LEVELS]; /* AP is running */
1256 uint8_t s3_idx[2][LB_BATTERY_LEVELS]; /* AP is sleeping */
1259 struct rgb_s color[8]; /* 0-3 are Google colors */
1262 /* Lightbar program */
1263 #define EC_LB_PROG_LEN 192
1264 struct lightbar_program {
1266 uint8_t data[EC_LB_PROG_LEN];
1269 struct ec_params_lightbar {
1270 uint8_t cmd; /* Command (see enum lightbar_command) */
1274 } dump, off, on, init, get_seq, get_params_v0, get_params_v1,
1275 version, get_brightness, get_demo, suspend, resume;
1279 } set_brightness, seq, demo;
1282 uint8_t ctrl, reg, value;
1286 uint8_t led, red, green, blue;
1295 } manual_suspend_ctrl;
1297 struct lightbar_params_v0 set_params_v0;
1298 struct lightbar_params_v1 set_params_v1;
1299 struct lightbar_program set_program;
1303 struct ec_response_lightbar {
1315 } get_seq, get_brightness, get_demo;
1317 struct lightbar_params_v0 get_params_v0;
1318 struct lightbar_params_v1 get_params_v1;
1326 uint8_t red, green, blue;
1330 /* no return params */
1331 } off, on, init, set_brightness, seq, reg, set_rgb,
1332 demo, set_params_v0, set_params_v1,
1333 set_program, manual_suspend_ctrl, suspend, resume;
1337 /* Lightbar commands */
1338 enum lightbar_command {
1339 LIGHTBAR_CMD_DUMP = 0,
1340 LIGHTBAR_CMD_OFF = 1,
1341 LIGHTBAR_CMD_ON = 2,
1342 LIGHTBAR_CMD_INIT = 3,
1343 LIGHTBAR_CMD_SET_BRIGHTNESS = 4,
1344 LIGHTBAR_CMD_SEQ = 5,
1345 LIGHTBAR_CMD_REG = 6,
1346 LIGHTBAR_CMD_SET_RGB = 7,
1347 LIGHTBAR_CMD_GET_SEQ = 8,
1348 LIGHTBAR_CMD_DEMO = 9,
1349 LIGHTBAR_CMD_GET_PARAMS_V0 = 10,
1350 LIGHTBAR_CMD_SET_PARAMS_V0 = 11,
1351 LIGHTBAR_CMD_VERSION = 12,
1352 LIGHTBAR_CMD_GET_BRIGHTNESS = 13,
1353 LIGHTBAR_CMD_GET_RGB = 14,
1354 LIGHTBAR_CMD_GET_DEMO = 15,
1355 LIGHTBAR_CMD_GET_PARAMS_V1 = 16,
1356 LIGHTBAR_CMD_SET_PARAMS_V1 = 17,
1357 LIGHTBAR_CMD_SET_PROGRAM = 18,
1358 LIGHTBAR_CMD_MANUAL_SUSPEND_CTRL = 19,
1359 LIGHTBAR_CMD_SUSPEND = 20,
1360 LIGHTBAR_CMD_RESUME = 21,
1364 /*****************************************************************************/
1365 /* LED control commands */
1367 #define EC_CMD_LED_CONTROL 0x29
1370 /* LED to indicate battery state of charge */
1371 EC_LED_ID_BATTERY_LED = 0,
1373 * LED to indicate system power state (on or in suspend).
1374 * May be on power button or on C-panel.
1376 EC_LED_ID_POWER_LED,
1377 /* LED on power adapter or its plug */
1378 EC_LED_ID_ADAPTER_LED,
1383 /* LED control flags */
1384 #define EC_LED_FLAGS_QUERY (1 << 0) /* Query LED capability only */
1385 #define EC_LED_FLAGS_AUTO (1 << 1) /* Switch LED back to automatic control */
1387 enum ec_led_colors {
1388 EC_LED_COLOR_RED = 0,
1391 EC_LED_COLOR_YELLOW,
1397 struct ec_params_led_control {
1398 uint8_t led_id; /* Which LED to control */
1399 uint8_t flags; /* Control flags */
1401 uint8_t brightness[EC_LED_COLOR_COUNT];
1404 struct ec_response_led_control {
1406 * Available brightness value range.
1408 * Range 0 means color channel not present.
1409 * Range 1 means on/off control.
1410 * Other values means the LED is control by PWM.
1412 uint8_t brightness_range[EC_LED_COLOR_COUNT];
1415 /*****************************************************************************/
1416 /* Verified boot commands */
1419 * Note: command code 0x29 version 0 was VBOOT_CMD in Link EVT; it may be
1420 * reused for other purposes with version > 0.
1423 /* Verified boot hash command */
1424 #define EC_CMD_VBOOT_HASH 0x2A
1426 struct ec_params_vboot_hash {
1427 uint8_t cmd; /* enum ec_vboot_hash_cmd */
1428 uint8_t hash_type; /* enum ec_vboot_hash_type */
1429 uint8_t nonce_size; /* Nonce size; may be 0 */
1430 uint8_t reserved0; /* Reserved; set 0 */
1431 uint32_t offset; /* Offset in flash to hash */
1432 uint32_t size; /* Number of bytes to hash */
1433 uint8_t nonce_data[64]; /* Nonce data; ignored if nonce_size=0 */
1436 struct ec_response_vboot_hash {
1437 uint8_t status; /* enum ec_vboot_hash_status */
1438 uint8_t hash_type; /* enum ec_vboot_hash_type */
1439 uint8_t digest_size; /* Size of hash digest in bytes */
1440 uint8_t reserved0; /* Ignore; will be 0 */
1441 uint32_t offset; /* Offset in flash which was hashed */
1442 uint32_t size; /* Number of bytes hashed */
1443 uint8_t hash_digest[64]; /* Hash digest data */
1446 enum ec_vboot_hash_cmd {
1447 EC_VBOOT_HASH_GET = 0, /* Get current hash status */
1448 EC_VBOOT_HASH_ABORT = 1, /* Abort calculating current hash */
1449 EC_VBOOT_HASH_START = 2, /* Start computing a new hash */
1450 EC_VBOOT_HASH_RECALC = 3, /* Synchronously compute a new hash */
1453 enum ec_vboot_hash_type {
1454 EC_VBOOT_HASH_TYPE_SHA256 = 0, /* SHA-256 */
1457 enum ec_vboot_hash_status {
1458 EC_VBOOT_HASH_STATUS_NONE = 0, /* No hash (not started, or aborted) */
1459 EC_VBOOT_HASH_STATUS_DONE = 1, /* Finished computing a hash */
1460 EC_VBOOT_HASH_STATUS_BUSY = 2, /* Busy computing a hash */
1464 * Special values for offset for EC_VBOOT_HASH_START and EC_VBOOT_HASH_RECALC.
1465 * If one of these is specified, the EC will automatically update offset and
1466 * size to the correct values for the specified image (RO or RW).
1468 #define EC_VBOOT_HASH_OFFSET_RO 0xfffffffe
1469 #define EC_VBOOT_HASH_OFFSET_RW 0xfffffffd
1471 /*****************************************************************************/
1473 * Motion sense commands. We'll make separate structs for sub-commands with
1474 * different input args, so that we know how much to expect.
1476 #define EC_CMD_MOTION_SENSE_CMD 0x2B
1478 /* Motion sense commands */
1479 enum motionsense_command {
1481 * Dump command returns all motion sensor data including motion sense
1482 * module flags and individual sensor flags.
1484 MOTIONSENSE_CMD_DUMP = 0,
1487 * Info command returns data describing the details of a given sensor,
1488 * including enum motionsensor_type, enum motionsensor_location, and
1489 * enum motionsensor_chip.
1491 MOTIONSENSE_CMD_INFO = 1,
1494 * EC Rate command is a setter/getter command for the EC sampling rate
1495 * of all motion sensors in milliseconds.
1497 MOTIONSENSE_CMD_EC_RATE = 2,
1500 * Sensor ODR command is a setter/getter command for the output data
1501 * rate of a specific motion sensor in millihertz.
1503 MOTIONSENSE_CMD_SENSOR_ODR = 3,
1506 * Sensor range command is a setter/getter command for the range of
1507 * a specified motion sensor in +/-G's or +/- deg/s.
1509 MOTIONSENSE_CMD_SENSOR_RANGE = 4,
1512 * Setter/getter command for the keyboard wake angle. When the lid
1513 * angle is greater than this value, keyboard wake is disabled in S3,
1514 * and when the lid angle goes less than this value, keyboard wake is
1515 * enabled. Note, the lid angle measurement is an approximate,
1516 * un-calibrated value, hence the wake angle isn't exact.
1518 MOTIONSENSE_CMD_KB_WAKE_ANGLE = 5,
1521 * Returns a single sensor data.
1523 MOTIONSENSE_CMD_DATA = 6,
1526 * Perform low level calibration.. On sensors that support it, ask to
1527 * do offset calibration.
1529 MOTIONSENSE_CMD_PERFORM_CALIB = 10,
1532 * Sensor Offset command is a setter/getter command for the offset used
1533 * for calibration. The offsets can be calculated by the host, or via
1534 * PERFORM_CALIB command.
1536 MOTIONSENSE_CMD_SENSOR_OFFSET = 11,
1538 /* Number of motionsense sub-commands. */
1539 MOTIONSENSE_NUM_CMDS
1542 enum motionsensor_id {
1543 EC_MOTION_SENSOR_ACCEL_BASE = 0,
1544 EC_MOTION_SENSOR_ACCEL_LID = 1,
1545 EC_MOTION_SENSOR_GYRO = 2,
1548 * Note, if more sensors are added and this count changes, the padding
1549 * in ec_response_motion_sense dump command must be modified.
1551 EC_MOTION_SENSOR_COUNT = 3
1554 /* List of motion sensor types. */
1555 enum motionsensor_type {
1556 MOTIONSENSE_TYPE_ACCEL = 0,
1557 MOTIONSENSE_TYPE_GYRO = 1,
1558 MOTIONSENSE_TYPE_MAG = 2,
1559 MOTIONSENSE_TYPE_PROX = 3,
1560 MOTIONSENSE_TYPE_LIGHT = 4,
1561 MOTIONSENSE_TYPE_ACTIVITY = 5,
1562 MOTIONSENSE_TYPE_BARO = 6,
1563 MOTIONSENSE_TYPE_MAX,
1566 /* List of motion sensor locations. */
1567 enum motionsensor_location {
1568 MOTIONSENSE_LOC_BASE = 0,
1569 MOTIONSENSE_LOC_LID = 1,
1570 MOTIONSENSE_LOC_MAX,
1573 /* List of motion sensor chips. */
1574 enum motionsensor_chip {
1575 MOTIONSENSE_CHIP_KXCJ9 = 0,
1578 /* Module flag masks used for the dump sub-command. */
1579 #define MOTIONSENSE_MODULE_FLAG_ACTIVE (1<<0)
1581 /* Sensor flag masks used for the dump sub-command. */
1582 #define MOTIONSENSE_SENSOR_FLAG_PRESENT (1<<0)
1585 * Send this value for the data element to only perform a read. If you
1586 * send any other value, the EC will interpret it as data to set and will
1587 * return the actual value set.
1589 #define EC_MOTION_SENSE_NO_VALUE -1
1591 #define EC_MOTION_SENSE_INVALID_CALIB_TEMP 0x8000
1593 /* Set Calibration information */
1594 #define MOTION_SENSE_SET_OFFSET 1
1596 struct ec_response_motion_sensor_data {
1597 /* Flags for each sensor. */
1599 /* Sensor number the data comes from */
1601 /* Each sensor is up to 3-axis. */
1609 uint8_t activity; /* motionsensor_activity */
1611 int16_t add_info[2];
1616 struct ec_params_motion_sense {
1619 /* Used for MOTIONSENSE_CMD_DUMP. */
1625 * Used for MOTIONSENSE_CMD_EC_RATE and
1626 * MOTIONSENSE_CMD_KB_WAKE_ANGLE.
1629 /* Data to set or EC_MOTION_SENSE_NO_VALUE to read. */
1631 } ec_rate, kb_wake_angle;
1633 /* Used for MOTIONSENSE_CMD_SENSOR_OFFSET */
1638 * bit 0: If set (MOTION_SENSE_SET_OFFSET), set
1639 * the calibration information in the EC.
1640 * If unset, just retrieve calibration information.
1645 * Temperature at calibration, in units of 0.01 C
1646 * 0x8000: invalid / unknown.
1653 * Offset for calibration.
1655 * Accelerometer: 1/1024 g
1656 * Gyro: 1/1024 deg/s
1660 } __packed sensor_offset;
1662 /* Used for MOTIONSENSE_CMD_INFO. */
1668 * Used for MOTIONSENSE_CMD_SENSOR_ODR and
1669 * MOTIONSENSE_CMD_SENSOR_RANGE.
1672 /* Should be element of enum motionsensor_id. */
1675 /* Rounding flag, true for round-up, false for down. */
1680 /* Data to set or EC_MOTION_SENSE_NO_VALUE to read. */
1682 } sensor_odr, sensor_range;
1686 struct ec_response_motion_sense {
1688 /* Used for MOTIONSENSE_CMD_DUMP. */
1690 /* Flags representing the motion sensor module. */
1691 uint8_t module_flags;
1693 /* Number of sensors managed directly by the EC. */
1694 uint8_t sensor_count;
1697 * Sensor data is truncated if response_max is too small
1698 * for holding all the data.
1700 struct ec_response_motion_sensor_data sensor[0];
1703 /* Used for MOTIONSENSE_CMD_INFO. */
1705 /* Should be element of enum motionsensor_type. */
1708 /* Should be element of enum motionsensor_location. */
1711 /* Should be element of enum motionsensor_chip. */
1715 /* Used for MOTIONSENSE_CMD_DATA */
1716 struct ec_response_motion_sensor_data data;
1719 * Used for MOTIONSENSE_CMD_EC_RATE, MOTIONSENSE_CMD_SENSOR_ODR,
1720 * MOTIONSENSE_CMD_SENSOR_RANGE, and
1721 * MOTIONSENSE_CMD_KB_WAKE_ANGLE.
1724 /* Current value of the parameter queried. */
1726 } ec_rate, sensor_odr, sensor_range, kb_wake_angle;
1728 /* Used for MOTIONSENSE_CMD_SENSOR_OFFSET */
1732 } sensor_offset, perform_calib;
1736 /*****************************************************************************/
1737 /* USB charging control commands */
1739 /* Set USB port charging mode */
1740 #define EC_CMD_USB_CHARGE_SET_MODE 0x30
1742 struct ec_params_usb_charge_set_mode {
1743 uint8_t usb_port_id;
1747 /*****************************************************************************/
1748 /* Persistent storage for host */
1750 /* Maximum bytes that can be read/written in a single command */
1751 #define EC_PSTORE_SIZE_MAX 64
1753 /* Get persistent storage info */
1754 #define EC_CMD_PSTORE_INFO 0x40
1756 struct ec_response_pstore_info {
1757 /* Persistent storage size, in bytes */
1758 uint32_t pstore_size;
1759 /* Access size; read/write offset and size must be a multiple of this */
1760 uint32_t access_size;
1764 * Read persistent storage
1766 * Response is params.size bytes of data.
1768 #define EC_CMD_PSTORE_READ 0x41
1770 struct ec_params_pstore_read {
1771 uint32_t offset; /* Byte offset to read */
1772 uint32_t size; /* Size to read in bytes */
1775 /* Write persistent storage */
1776 #define EC_CMD_PSTORE_WRITE 0x42
1778 struct ec_params_pstore_write {
1779 uint32_t offset; /* Byte offset to write */
1780 uint32_t size; /* Size to write in bytes */
1781 uint8_t data[EC_PSTORE_SIZE_MAX];
1784 /*****************************************************************************/
1785 /* Real-time clock */
1787 /* RTC params and response structures */
1788 struct ec_params_rtc {
1792 struct ec_response_rtc {
1796 /* These use ec_response_rtc */
1797 #define EC_CMD_RTC_GET_VALUE 0x44
1798 #define EC_CMD_RTC_GET_ALARM 0x45
1800 /* These all use ec_params_rtc */
1801 #define EC_CMD_RTC_SET_VALUE 0x46
1802 #define EC_CMD_RTC_SET_ALARM 0x47
1804 /* Pass as param to SET_ALARM to clear the current alarm */
1805 #define EC_RTC_ALARM_CLEAR 0
1807 /*****************************************************************************/
1808 /* Port80 log access */
1810 /* Maximum entries that can be read/written in a single command */
1811 #define EC_PORT80_SIZE_MAX 32
1813 /* Get last port80 code from previous boot */
1814 #define EC_CMD_PORT80_LAST_BOOT 0x48
1815 #define EC_CMD_PORT80_READ 0x48
1817 enum ec_port80_subcmd {
1818 EC_PORT80_GET_INFO = 0,
1819 EC_PORT80_READ_BUFFER,
1822 struct ec_params_port80_read {
1827 uint32_t num_entries;
1832 struct ec_response_port80_read {
1836 uint32_t history_size;
1840 uint16_t codes[EC_PORT80_SIZE_MAX];
1845 struct ec_response_port80_last_boot {
1849 /*****************************************************************************/
1850 /* Thermal engine commands. Note that there are two implementations. We'll
1851 * reuse the command number, but the data and behavior is incompatible.
1852 * Version 0 is what originally shipped on Link.
1853 * Version 1 separates the CPU thermal limits from the fan control.
1856 #define EC_CMD_THERMAL_SET_THRESHOLD 0x50
1857 #define EC_CMD_THERMAL_GET_THRESHOLD 0x51
1859 /* The version 0 structs are opaque. You have to know what they are for
1860 * the get/set commands to make any sense.
1863 /* Version 0 - set */
1864 struct ec_params_thermal_set_threshold {
1865 uint8_t sensor_type;
1866 uint8_t threshold_id;
1870 /* Version 0 - get */
1871 struct ec_params_thermal_get_threshold {
1872 uint8_t sensor_type;
1873 uint8_t threshold_id;
1876 struct ec_response_thermal_get_threshold {
1881 /* The version 1 structs are visible. */
1882 enum ec_temp_thresholds {
1883 EC_TEMP_THRESH_WARN = 0,
1884 EC_TEMP_THRESH_HIGH,
1885 EC_TEMP_THRESH_HALT,
1887 EC_TEMP_THRESH_COUNT
1890 /* Thermal configuration for one temperature sensor. Temps are in degrees K.
1891 * Zero values will be silently ignored by the thermal task.
1893 struct ec_thermal_config {
1894 uint32_t temp_host[EC_TEMP_THRESH_COUNT]; /* levels of hotness */
1895 uint32_t temp_fan_off; /* no active cooling needed */
1896 uint32_t temp_fan_max; /* max active cooling needed */
1899 /* Version 1 - get config for one sensor. */
1900 struct ec_params_thermal_get_threshold_v1 {
1901 uint32_t sensor_num;
1903 /* This returns a struct ec_thermal_config */
1905 /* Version 1 - set config for one sensor.
1906 * Use read-modify-write for best results! */
1907 struct ec_params_thermal_set_threshold_v1 {
1908 uint32_t sensor_num;
1909 struct ec_thermal_config cfg;
1911 /* This returns no data */
1913 /****************************************************************************/
1915 /* Toggle automatic fan control */
1916 #define EC_CMD_THERMAL_AUTO_FAN_CTRL 0x52
1918 /* Get TMP006 calibration data */
1919 #define EC_CMD_TMP006_GET_CALIBRATION 0x53
1921 struct ec_params_tmp006_get_calibration {
1925 struct ec_response_tmp006_get_calibration {
1932 /* Set TMP006 calibration data */
1933 #define EC_CMD_TMP006_SET_CALIBRATION 0x54
1935 struct ec_params_tmp006_set_calibration {
1937 uint8_t reserved[3]; /* Reserved; set 0 */
1944 /* Read raw TMP006 data */
1945 #define EC_CMD_TMP006_GET_RAW 0x55
1947 struct ec_params_tmp006_get_raw {
1951 struct ec_response_tmp006_get_raw {
1952 int32_t t; /* In 1/100 K */
1953 int32_t v; /* In nV */
1956 /*****************************************************************************/
1957 /* MKBP - Matrix KeyBoard Protocol */
1962 * Returns raw data for keyboard cols; see ec_response_mkbp_info.cols for
1963 * expected response size.
1965 * NOTE: This has been superseded by EC_CMD_MKBP_GET_NEXT_EVENT. If you wish
1966 * to obtain the instantaneous state, use EC_CMD_MKBP_INFO with the type
1967 * EC_MKBP_INFO_CURRENT and event EC_MKBP_EVENT_KEY_MATRIX.
1969 #define EC_CMD_MKBP_STATE 0x60
1972 * Provide information about various MKBP things. See enum ec_mkbp_info_type.
1974 #define EC_CMD_MKBP_INFO 0x61
1976 struct ec_response_mkbp_info {
1979 /* Formerly "switches", which was 0. */
1983 struct ec_params_mkbp_info {
1988 enum ec_mkbp_info_type {
1990 * Info about the keyboard matrix: number of rows and columns.
1992 * Returns struct ec_response_mkbp_info.
1994 EC_MKBP_INFO_KBD = 0,
1997 * For buttons and switches, info about which specifically are
1998 * supported. event_type must be set to one of the values in enum
2001 * For EC_MKBP_EVENT_BUTTON and EC_MKBP_EVENT_SWITCH, returns a 4 byte
2002 * bitmask indicating which buttons or switches are present. See the
2003 * bit inidices below.
2005 EC_MKBP_INFO_SUPPORTED = 1,
2008 * Instantaneous state of buttons and switches.
2010 * event_type must be set to one of the values in enum ec_mkbp_event.
2012 * For EC_MKBP_EVENT_KEY_MATRIX, returns uint8_t key_matrix[13]
2013 * indicating the current state of the keyboard matrix.
2015 * For EC_MKBP_EVENT_HOST_EVENT, return uint32_t host_event, the raw
2018 * For EC_MKBP_EVENT_BUTTON, returns uint32_t buttons, indicating the
2019 * state of supported buttons.
2021 * For EC_MKBP_EVENT_SWITCH, returns uint32_t switches, indicating the
2022 * state of supported switches.
2024 EC_MKBP_INFO_CURRENT = 2,
2027 /* Simulate key press */
2028 #define EC_CMD_MKBP_SIMULATE_KEY 0x62
2030 struct ec_params_mkbp_simulate_key {
2036 /* Configure keyboard scanning */
2037 #define EC_CMD_MKBP_SET_CONFIG 0x64
2038 #define EC_CMD_MKBP_GET_CONFIG 0x65
2041 enum mkbp_config_flags {
2042 EC_MKBP_FLAGS_ENABLE = 1, /* Enable keyboard scanning */
2045 enum mkbp_config_valid {
2046 EC_MKBP_VALID_SCAN_PERIOD = 1 << 0,
2047 EC_MKBP_VALID_POLL_TIMEOUT = 1 << 1,
2048 EC_MKBP_VALID_MIN_POST_SCAN_DELAY = 1 << 3,
2049 EC_MKBP_VALID_OUTPUT_SETTLE = 1 << 4,
2050 EC_MKBP_VALID_DEBOUNCE_DOWN = 1 << 5,
2051 EC_MKBP_VALID_DEBOUNCE_UP = 1 << 6,
2052 EC_MKBP_VALID_FIFO_MAX_DEPTH = 1 << 7,
2055 /* Configuration for our key scanning algorithm */
2056 struct ec_mkbp_config {
2057 uint32_t valid_mask; /* valid fields */
2058 uint8_t flags; /* some flags (enum mkbp_config_flags) */
2059 uint8_t valid_flags; /* which flags are valid */
2060 uint16_t scan_period_us; /* period between start of scans */
2061 /* revert to interrupt mode after no activity for this long */
2062 uint32_t poll_timeout_us;
2064 * minimum post-scan relax time. Once we finish a scan we check
2065 * the time until we are due to start the next one. If this time is
2066 * shorter this field, we use this instead.
2068 uint16_t min_post_scan_delay_us;
2069 /* delay between setting up output and waiting for it to settle */
2070 uint16_t output_settle_us;
2071 uint16_t debounce_down_us; /* time for debounce on key down */
2072 uint16_t debounce_up_us; /* time for debounce on key up */
2073 /* maximum depth to allow for fifo (0 = no keyscan output) */
2074 uint8_t fifo_max_depth;
2077 struct ec_params_mkbp_set_config {
2078 struct ec_mkbp_config config;
2081 struct ec_response_mkbp_get_config {
2082 struct ec_mkbp_config config;
2085 /* Run the key scan emulation */
2086 #define EC_CMD_KEYSCAN_SEQ_CTRL 0x66
2088 enum ec_keyscan_seq_cmd {
2089 EC_KEYSCAN_SEQ_STATUS = 0, /* Get status information */
2090 EC_KEYSCAN_SEQ_CLEAR = 1, /* Clear sequence */
2091 EC_KEYSCAN_SEQ_ADD = 2, /* Add item to sequence */
2092 EC_KEYSCAN_SEQ_START = 3, /* Start running sequence */
2093 EC_KEYSCAN_SEQ_COLLECT = 4, /* Collect sequence summary data */
2096 enum ec_collect_flags {
2098 * Indicates this scan was processed by the EC. Due to timing, some
2099 * scans may be skipped.
2101 EC_KEYSCAN_SEQ_FLAG_DONE = 1 << 0,
2104 struct ec_collect_item {
2105 uint8_t flags; /* some flags (enum ec_collect_flags) */
2108 struct ec_params_keyscan_seq_ctrl {
2109 uint8_t cmd; /* Command to send (enum ec_keyscan_seq_cmd) */
2112 uint8_t active; /* still active */
2113 uint8_t num_items; /* number of items */
2114 /* Current item being presented */
2119 * Absolute time for this scan, measured from the
2120 * start of the sequence.
2123 uint8_t scan[0]; /* keyscan data */
2126 uint8_t start_item; /* First item to return */
2127 uint8_t num_items; /* Number of items to return */
2132 struct ec_result_keyscan_seq_ctrl {
2135 uint8_t num_items; /* Number of items */
2136 /* Data for each item */
2137 struct ec_collect_item item[0];
2143 * Command for retrieving the next pending MKBP event from the EC device
2145 * The device replies with UNAVAILABLE if there aren't any pending events.
2147 #define EC_CMD_GET_NEXT_EVENT 0x67
2149 enum ec_mkbp_event {
2150 /* Keyboard matrix changed. The event data is the new matrix state. */
2151 EC_MKBP_EVENT_KEY_MATRIX = 0,
2153 /* New host event. The event data is 4 bytes of host event flags. */
2154 EC_MKBP_EVENT_HOST_EVENT = 1,
2156 /* New Sensor FIFO data. The event data is fifo_info structure. */
2157 EC_MKBP_EVENT_SENSOR_FIFO = 2,
2159 /* The state of the non-matrixed buttons have changed. */
2160 EC_MKBP_EVENT_BUTTON = 3,
2162 /* The state of the switches have changed. */
2163 EC_MKBP_EVENT_SWITCH = 4,
2165 /* EC sent a sysrq command */
2166 EC_MKBP_EVENT_SYSRQ = 6,
2168 /* Notify the AP that something happened on CEC */
2169 EC_MKBP_EVENT_CEC_EVENT = 8,
2171 /* Send an incoming CEC message to the AP */
2172 EC_MKBP_EVENT_CEC_MESSAGE = 9,
2174 /* Number of MKBP events */
2175 EC_MKBP_EVENT_COUNT,
2178 union ec_response_get_next_data {
2179 uint8_t key_matrix[13];
2182 uint32_t host_event;
2189 union ec_response_get_next_data_v1 {
2190 uint8_t key_matrix[16];
2191 uint32_t host_event;
2195 uint32_t cec_events;
2196 uint8_t cec_message[16];
2199 struct ec_response_get_next_event {
2201 /* Followed by event data if any */
2202 union ec_response_get_next_data data;
2205 struct ec_response_get_next_event_v1 {
2207 /* Followed by event data if any */
2208 union ec_response_get_next_data_v1 data;
2211 /* Bit indices for buttons and switches.*/
2213 #define EC_MKBP_POWER_BUTTON 0
2214 #define EC_MKBP_VOL_UP 1
2215 #define EC_MKBP_VOL_DOWN 2
2218 #define EC_MKBP_LID_OPEN 0
2219 #define EC_MKBP_TABLET_MODE 1
2220 #define EC_MKBP_BASE_ATTACHED 2
2222 /*****************************************************************************/
2223 /* Temperature sensor commands */
2225 /* Read temperature sensor info */
2226 #define EC_CMD_TEMP_SENSOR_GET_INFO 0x70
2228 struct ec_params_temp_sensor_get_info {
2232 struct ec_response_temp_sensor_get_info {
2233 char sensor_name[32];
2234 uint8_t sensor_type;
2237 /*****************************************************************************/
2240 * Note: host commands 0x80 - 0x87 are reserved to avoid conflict with ACPI
2241 * commands accidentally sent to the wrong interface. See the ACPI section
2245 /*****************************************************************************/
2246 /* Host event commands */
2249 * Host event mask params and response structures, shared by all of the host
2250 * event commands below.
2252 struct ec_params_host_event_mask {
2256 struct ec_response_host_event_mask {
2260 /* These all use ec_response_host_event_mask */
2261 #define EC_CMD_HOST_EVENT_GET_B 0x87
2262 #define EC_CMD_HOST_EVENT_GET_SMI_MASK 0x88
2263 #define EC_CMD_HOST_EVENT_GET_SCI_MASK 0x89
2264 #define EC_CMD_HOST_EVENT_GET_WAKE_MASK 0x8d
2266 /* These all use ec_params_host_event_mask */
2267 #define EC_CMD_HOST_EVENT_SET_SMI_MASK 0x8a
2268 #define EC_CMD_HOST_EVENT_SET_SCI_MASK 0x8b
2269 #define EC_CMD_HOST_EVENT_CLEAR 0x8c
2270 #define EC_CMD_HOST_EVENT_SET_WAKE_MASK 0x8e
2271 #define EC_CMD_HOST_EVENT_CLEAR_B 0x8f
2273 /*****************************************************************************/
2274 /* Switch commands */
2276 /* Enable/disable LCD backlight */
2277 #define EC_CMD_SWITCH_ENABLE_BKLIGHT 0x90
2279 struct ec_params_switch_enable_backlight {
2283 /* Enable/disable WLAN/Bluetooth */
2284 #define EC_CMD_SWITCH_ENABLE_WIRELESS 0x91
2285 #define EC_VER_SWITCH_ENABLE_WIRELESS 1
2287 /* Version 0 params; no response */
2288 struct ec_params_switch_enable_wireless_v0 {
2292 /* Version 1 params */
2293 struct ec_params_switch_enable_wireless_v1 {
2294 /* Flags to enable now */
2297 /* Which flags to copy from now_flags */
2301 * Flags to leave enabled in S3, if they're on at the S0->S3
2302 * transition. (Other flags will be disabled by the S0->S3
2305 uint8_t suspend_flags;
2307 /* Which flags to copy from suspend_flags */
2308 uint8_t suspend_mask;
2311 /* Version 1 response */
2312 struct ec_response_switch_enable_wireless_v1 {
2313 /* Flags to enable now */
2316 /* Flags to leave enabled in S3 */
2317 uint8_t suspend_flags;
2320 /*****************************************************************************/
2321 /* GPIO commands. Only available on EC if write protect has been disabled. */
2323 /* Set GPIO output value */
2324 #define EC_CMD_GPIO_SET 0x92
2326 struct ec_params_gpio_set {
2331 /* Get GPIO value */
2332 #define EC_CMD_GPIO_GET 0x93
2334 /* Version 0 of input params and response */
2335 struct ec_params_gpio_get {
2338 struct ec_response_gpio_get {
2342 /* Version 1 of input params and response */
2343 struct ec_params_gpio_get_v1 {
2348 } get_value_by_name;
2355 struct ec_response_gpio_get_v1 {
2359 } get_value_by_name, get_count;
2368 enum gpio_get_subcmd {
2369 EC_GPIO_GET_BY_NAME = 0,
2370 EC_GPIO_GET_COUNT = 1,
2371 EC_GPIO_GET_INFO = 2,
2374 /*****************************************************************************/
2375 /* I2C commands. Only available when flash write protect is unlocked. */
2378 * TODO(crosbug.com/p/23570): These commands are deprecated, and will be
2379 * removed soon. Use EC_CMD_I2C_XFER instead.
2383 #define EC_CMD_I2C_READ 0x94
2385 struct ec_params_i2c_read {
2386 uint16_t addr; /* 8-bit address (7-bit shifted << 1) */
2387 uint8_t read_size; /* Either 8 or 16. */
2391 struct ec_response_i2c_read {
2396 #define EC_CMD_I2C_WRITE 0x95
2398 struct ec_params_i2c_write {
2400 uint16_t addr; /* 8-bit address (7-bit shifted << 1) */
2401 uint8_t write_size; /* Either 8 or 16. */
2406 /*****************************************************************************/
2407 /* Charge state commands. Only available when flash write protect unlocked. */
2409 /* Force charge state machine to stop charging the battery or force it to
2410 * discharge the battery.
2412 #define EC_CMD_CHARGE_CONTROL 0x96
2413 #define EC_VER_CHARGE_CONTROL 1
2415 enum ec_charge_control_mode {
2416 CHARGE_CONTROL_NORMAL = 0,
2417 CHARGE_CONTROL_IDLE,
2418 CHARGE_CONTROL_DISCHARGE,
2421 struct ec_params_charge_control {
2422 uint32_t mode; /* enum charge_control_mode */
2425 /*****************************************************************************/
2426 /* Console commands. Only available when flash write protect is unlocked. */
2428 /* Snapshot console output buffer for use by EC_CMD_CONSOLE_READ. */
2429 #define EC_CMD_CONSOLE_SNAPSHOT 0x97
2432 * Read data from the saved snapshot. If the subcmd parameter is
2433 * CONSOLE_READ_NEXT, this will return data starting from the beginning of
2434 * the latest snapshot. If it is CONSOLE_READ_RECENT, it will start from the
2435 * end of the previous snapshot.
2437 * The params are only looked at in version >= 1 of this command. Prior
2438 * versions will just default to CONSOLE_READ_NEXT behavior.
2440 * Response is null-terminated string. Empty string, if there is no more
2443 #define EC_CMD_CONSOLE_READ 0x98
2445 enum ec_console_read_subcmd {
2446 CONSOLE_READ_NEXT = 0,
2450 struct ec_params_console_read_v1 {
2451 uint8_t subcmd; /* enum ec_console_read_subcmd */
2454 /*****************************************************************************/
2457 * Cut off battery power immediately or after the host has shut down.
2459 * return EC_RES_INVALID_COMMAND if unsupported by a board/battery.
2460 * EC_RES_SUCCESS if the command was successful.
2461 * EC_RES_ERROR if the cut off command failed.
2464 #define EC_CMD_BATTERY_CUT_OFF 0x99
2466 #define EC_BATTERY_CUTOFF_FLAG_AT_SHUTDOWN (1 << 0)
2468 struct ec_params_battery_cutoff {
2472 /*****************************************************************************/
2473 /* USB port mux control. */
2476 * Switch USB mux or return to automatic switching.
2478 #define EC_CMD_USB_MUX 0x9a
2480 struct ec_params_usb_mux {
2484 /*****************************************************************************/
2485 /* LDOs / FETs control. */
2488 EC_LDO_STATE_OFF = 0, /* the LDO / FET is shut down */
2489 EC_LDO_STATE_ON = 1, /* the LDO / FET is ON / providing power */
2493 * Switch on/off a LDO.
2495 #define EC_CMD_LDO_SET 0x9b
2497 struct ec_params_ldo_set {
2505 #define EC_CMD_LDO_GET 0x9c
2507 struct ec_params_ldo_get {
2511 struct ec_response_ldo_get {
2515 /*****************************************************************************/
2521 #define EC_CMD_POWER_INFO 0x9d
2523 struct ec_response_power_info {
2524 uint32_t usb_dev_type;
2525 uint16_t voltage_ac;
2526 uint16_t voltage_system;
2527 uint16_t current_system;
2528 uint16_t usb_current_limit;
2531 /*****************************************************************************/
2532 /* I2C passthru command */
2534 #define EC_CMD_I2C_PASSTHRU 0x9e
2536 /* Read data; if not present, message is a write */
2537 #define EC_I2C_FLAG_READ (1 << 15)
2539 /* Mask for address */
2540 #define EC_I2C_ADDR_MASK 0x3ff
2542 #define EC_I2C_STATUS_NAK (1 << 0) /* Transfer was not acknowledged */
2543 #define EC_I2C_STATUS_TIMEOUT (1 << 1) /* Timeout during transfer */
2546 #define EC_I2C_STATUS_ERROR (EC_I2C_STATUS_NAK | EC_I2C_STATUS_TIMEOUT)
2548 struct ec_params_i2c_passthru_msg {
2549 uint16_t addr_flags; /* I2C slave address (7 or 10 bits) and flags */
2550 uint16_t len; /* Number of bytes to read or write */
2553 struct ec_params_i2c_passthru {
2554 uint8_t port; /* I2C port number */
2555 uint8_t num_msgs; /* Number of messages */
2556 struct ec_params_i2c_passthru_msg msg[];
2557 /* Data to write for all messages is concatenated here */
2560 struct ec_response_i2c_passthru {
2561 uint8_t i2c_status; /* Status flags (EC_I2C_STATUS_...) */
2562 uint8_t num_msgs; /* Number of messages processed */
2563 uint8_t data[]; /* Data read by messages concatenated here */
2566 /*****************************************************************************/
2567 /* Power button hang detect */
2569 #define EC_CMD_HANG_DETECT 0x9f
2571 /* Reasons to start hang detection timer */
2572 /* Power button pressed */
2573 #define EC_HANG_START_ON_POWER_PRESS (1 << 0)
2576 #define EC_HANG_START_ON_LID_CLOSE (1 << 1)
2579 #define EC_HANG_START_ON_LID_OPEN (1 << 2)
2581 /* Start of AP S3->S0 transition (booting or resuming from suspend) */
2582 #define EC_HANG_START_ON_RESUME (1 << 3)
2584 /* Reasons to cancel hang detection */
2586 /* Power button released */
2587 #define EC_HANG_STOP_ON_POWER_RELEASE (1 << 8)
2589 /* Any host command from AP received */
2590 #define EC_HANG_STOP_ON_HOST_COMMAND (1 << 9)
2592 /* Stop on end of AP S0->S3 transition (suspending or shutting down) */
2593 #define EC_HANG_STOP_ON_SUSPEND (1 << 10)
2596 * If this flag is set, all the other fields are ignored, and the hang detect
2597 * timer is started. This provides the AP a way to start the hang timer
2598 * without reconfiguring any of the other hang detect settings. Note that
2599 * you must previously have configured the timeouts.
2601 #define EC_HANG_START_NOW (1 << 30)
2604 * If this flag is set, all the other fields are ignored (including
2605 * EC_HANG_START_NOW). This provides the AP a way to stop the hang timer
2606 * without reconfiguring any of the other hang detect settings.
2608 #define EC_HANG_STOP_NOW (1 << 31)
2610 struct ec_params_hang_detect {
2611 /* Flags; see EC_HANG_* */
2614 /* Timeout in msec before generating host event, if enabled */
2615 uint16_t host_event_timeout_msec;
2617 /* Timeout in msec before generating warm reboot, if enabled */
2618 uint16_t warm_reboot_timeout_msec;
2621 /*****************************************************************************/
2622 /* Commands for battery charging */
2625 * This is the single catch-all host command to exchange data regarding the
2626 * charge state machine (v2 and up).
2628 #define EC_CMD_CHARGE_STATE 0xa0
2630 /* Subcommands for this host command */
2631 enum charge_state_command {
2632 CHARGE_STATE_CMD_GET_STATE,
2633 CHARGE_STATE_CMD_GET_PARAM,
2634 CHARGE_STATE_CMD_SET_PARAM,
2635 CHARGE_STATE_NUM_CMDS
2639 * Known param numbers are defined here. Ranges are reserved for board-specific
2640 * params, which are handled by the particular implementations.
2642 enum charge_state_params {
2643 CS_PARAM_CHG_VOLTAGE, /* charger voltage limit */
2644 CS_PARAM_CHG_CURRENT, /* charger current limit */
2645 CS_PARAM_CHG_INPUT_CURRENT, /* charger input current limit */
2646 CS_PARAM_CHG_STATUS, /* charger-specific status */
2647 CS_PARAM_CHG_OPTION, /* charger-specific options */
2648 /* How many so far? */
2651 /* Range for CONFIG_CHARGER_PROFILE_OVERRIDE params */
2652 CS_PARAM_CUSTOM_PROFILE_MIN = 0x10000,
2653 CS_PARAM_CUSTOM_PROFILE_MAX = 0x1ffff,
2655 /* Other custom param ranges go here... */
2658 struct ec_params_charge_state {
2659 uint8_t cmd; /* enum charge_state_command */
2666 uint32_t param; /* enum charge_state_param */
2670 uint32_t param; /* param to set */
2671 uint32_t value; /* value to set */
2676 struct ec_response_charge_state {
2682 int chg_input_current;
2683 int batt_state_of_charge;
2690 /* no return values */
2697 * Set maximum battery charging current.
2699 #define EC_CMD_CHARGE_CURRENT_LIMIT 0xa1
2701 struct ec_params_current_limit {
2702 uint32_t limit; /* in mA */
2706 * Set maximum external voltage / current.
2708 #define EC_CMD_EXTERNAL_POWER_LIMIT 0x00A2
2710 /* Command v0 is used only on Spring and is obsolete + unsupported */
2711 struct ec_params_external_power_limit_v1 {
2712 uint16_t current_lim; /* in mA, or EC_POWER_LIMIT_NONE to clear limit */
2713 uint16_t voltage_lim; /* in mV, or EC_POWER_LIMIT_NONE to clear limit */
2716 #define EC_POWER_LIMIT_NONE 0xffff
2718 /* Inform the EC when entering a sleep state */
2719 #define EC_CMD_HOST_SLEEP_EVENT 0xa9
2721 enum host_sleep_event {
2722 HOST_SLEEP_EVENT_S3_SUSPEND = 1,
2723 HOST_SLEEP_EVENT_S3_RESUME = 2,
2724 HOST_SLEEP_EVENT_S0IX_SUSPEND = 3,
2725 HOST_SLEEP_EVENT_S0IX_RESUME = 4
2728 struct ec_params_host_sleep_event {
2729 uint8_t sleep_event;
2732 /*****************************************************************************/
2733 /* Smart battery pass-through */
2735 /* Get / Set 16-bit smart battery registers */
2736 #define EC_CMD_SB_READ_WORD 0xb0
2737 #define EC_CMD_SB_WRITE_WORD 0xb1
2739 /* Get / Set string smart battery parameters
2740 * formatted as SMBUS "block".
2742 #define EC_CMD_SB_READ_BLOCK 0xb2
2743 #define EC_CMD_SB_WRITE_BLOCK 0xb3
2745 struct ec_params_sb_rd {
2749 struct ec_response_sb_rd_word {
2753 struct ec_params_sb_wr_word {
2758 struct ec_response_sb_rd_block {
2762 struct ec_params_sb_wr_block {
2767 /*****************************************************************************/
2768 /* Battery vendor parameters
2770 * Get or set vendor-specific parameters in the battery. Implementations may
2771 * differ between boards or batteries. On a set operation, the response
2772 * contains the actual value set, which may be rounded or clipped from the
2776 #define EC_CMD_BATTERY_VENDOR_PARAM 0xb4
2778 enum ec_battery_vendor_param_mode {
2779 BATTERY_VENDOR_PARAM_MODE_GET = 0,
2780 BATTERY_VENDOR_PARAM_MODE_SET,
2783 struct ec_params_battery_vendor_param {
2789 struct ec_response_battery_vendor_param {
2793 /*****************************************************************************/
2794 /* System commands */
2797 * TODO(crosbug.com/p/23747): This is a confusing name, since it doesn't
2798 * necessarily reboot the EC. Rename to "image" or something similar?
2800 #define EC_CMD_REBOOT_EC 0xd2
2803 enum ec_reboot_cmd {
2804 EC_REBOOT_CANCEL = 0, /* Cancel a pending reboot */
2805 EC_REBOOT_JUMP_RO = 1, /* Jump to RO without rebooting */
2806 EC_REBOOT_JUMP_RW = 2, /* Jump to RW without rebooting */
2807 /* (command 3 was jump to RW-B) */
2808 EC_REBOOT_COLD = 4, /* Cold-reboot */
2809 EC_REBOOT_DISABLE_JUMP = 5, /* Disable jump until next reboot */
2810 EC_REBOOT_HIBERNATE = 6 /* Hibernate EC */
2813 /* Flags for ec_params_reboot_ec.reboot_flags */
2814 #define EC_REBOOT_FLAG_RESERVED0 (1 << 0) /* Was recovery request */
2815 #define EC_REBOOT_FLAG_ON_AP_SHUTDOWN (1 << 1) /* Reboot after AP shutdown */
2817 struct ec_params_reboot_ec {
2818 uint8_t cmd; /* enum ec_reboot_cmd */
2819 uint8_t flags; /* See EC_REBOOT_FLAG_* */
2823 * Get information on last EC panic.
2825 * Returns variable-length platform-dependent panic information. See panic.h
2828 #define EC_CMD_GET_PANIC_INFO 0xd3
2830 /*****************************************************************************/
2834 * These are valid ONLY on the ACPI command/data port.
2838 * ACPI Read Embedded Controller
2840 * This reads from ACPI memory space on the EC (EC_ACPI_MEM_*).
2842 * Use the following sequence:
2844 * - Write EC_CMD_ACPI_READ to EC_LPC_ADDR_ACPI_CMD
2845 * - Wait for EC_LPC_CMDR_PENDING bit to clear
2846 * - Write address to EC_LPC_ADDR_ACPI_DATA
2847 * - Wait for EC_LPC_CMDR_DATA bit to set
2848 * - Read value from EC_LPC_ADDR_ACPI_DATA
2850 #define EC_CMD_ACPI_READ 0x80
2853 * ACPI Write Embedded Controller
2855 * This reads from ACPI memory space on the EC (EC_ACPI_MEM_*).
2857 * Use the following sequence:
2859 * - Write EC_CMD_ACPI_WRITE to EC_LPC_ADDR_ACPI_CMD
2860 * - Wait for EC_LPC_CMDR_PENDING bit to clear
2861 * - Write address to EC_LPC_ADDR_ACPI_DATA
2862 * - Wait for EC_LPC_CMDR_PENDING bit to clear
2863 * - Write value to EC_LPC_ADDR_ACPI_DATA
2865 #define EC_CMD_ACPI_WRITE 0x81
2868 * ACPI Query Embedded Controller
2870 * This clears the lowest-order bit in the currently pending host events, and
2871 * sets the result code to the 1-based index of the bit (event 0x00000001 = 1,
2872 * event 0x80000000 = 32), or 0 if no event was pending.
2874 #define EC_CMD_ACPI_QUERY_EVENT 0x84
2876 /* Valid addresses in ACPI memory space, for read/write commands */
2878 /* Memory space version; set to EC_ACPI_MEM_VERSION_CURRENT */
2879 #define EC_ACPI_MEM_VERSION 0x00
2881 * Test location; writing value here updates test compliment byte to (0xff -
2884 #define EC_ACPI_MEM_TEST 0x01
2885 /* Test compliment; writes here are ignored. */
2886 #define EC_ACPI_MEM_TEST_COMPLIMENT 0x02
2888 /* Keyboard backlight brightness percent (0 - 100) */
2889 #define EC_ACPI_MEM_KEYBOARD_BACKLIGHT 0x03
2890 /* DPTF Target Fan Duty (0-100, 0xff for auto/none) */
2891 #define EC_ACPI_MEM_FAN_DUTY 0x04
2894 * DPTF temp thresholds. Any of the EC's temp sensors can have up to two
2895 * independent thresholds attached to them. The current value of the ID
2896 * register determines which sensor is affected by the THRESHOLD and COMMIT
2897 * registers. The THRESHOLD register uses the same EC_TEMP_SENSOR_OFFSET scheme
2898 * as the memory-mapped sensors. The COMMIT register applies those settings.
2900 * The spec does not mandate any way to read back the threshold settings
2901 * themselves, but when a threshold is crossed the AP needs a way to determine
2902 * which sensor(s) are responsible. Each reading of the ID register clears and
2903 * returns one sensor ID that has crossed one of its threshold (in either
2904 * direction) since the last read. A value of 0xFF means "no new thresholds
2905 * have tripped". Setting or enabling the thresholds for a sensor will clear
2906 * the unread event count for that sensor.
2908 #define EC_ACPI_MEM_TEMP_ID 0x05
2909 #define EC_ACPI_MEM_TEMP_THRESHOLD 0x06
2910 #define EC_ACPI_MEM_TEMP_COMMIT 0x07
2912 * Here are the bits for the COMMIT register:
2913 * bit 0 selects the threshold index for the chosen sensor (0/1)
2914 * bit 1 enables/disables the selected threshold (0 = off, 1 = on)
2915 * Each write to the commit register affects one threshold.
2917 #define EC_ACPI_MEM_TEMP_COMMIT_SELECT_MASK (1 << 0)
2918 #define EC_ACPI_MEM_TEMP_COMMIT_ENABLE_MASK (1 << 1)
2922 * Set the thresholds for sensor 2 to 50 C and 60 C:
2923 * write 2 to [0x05] -- select temp sensor 2
2924 * write 0x7b to [0x06] -- C_TO_K(50) - EC_TEMP_SENSOR_OFFSET
2925 * write 0x2 to [0x07] -- enable threshold 0 with this value
2926 * write 0x85 to [0x06] -- C_TO_K(60) - EC_TEMP_SENSOR_OFFSET
2927 * write 0x3 to [0x07] -- enable threshold 1 with this value
2929 * Disable the 60 C threshold, leaving the 50 C threshold unchanged:
2930 * write 2 to [0x05] -- select temp sensor 2
2931 * write 0x1 to [0x07] -- disable threshold 1
2934 /* DPTF battery charging current limit */
2935 #define EC_ACPI_MEM_CHARGING_LIMIT 0x08
2937 /* Charging limit is specified in 64 mA steps */
2938 #define EC_ACPI_MEM_CHARGING_LIMIT_STEP_MA 64
2939 /* Value to disable DPTF battery charging limit */
2940 #define EC_ACPI_MEM_CHARGING_LIMIT_DISABLED 0xff
2942 /* Current version of ACPI memory address space */
2943 #define EC_ACPI_MEM_VERSION_CURRENT 1
2946 /*****************************************************************************/
2950 * These commands are for sending and receiving message via HDMI CEC
2952 #define EC_MAX_CEC_MSG_LEN 16
2954 /* CEC message from the AP to be written on the CEC bus */
2955 #define EC_CMD_CEC_WRITE_MSG 0x00B8
2958 * struct ec_params_cec_write - Message to write to the CEC bus
2959 * @msg: message content to write to the CEC bus
2961 struct ec_params_cec_write {
2962 uint8_t msg[EC_MAX_CEC_MSG_LEN];
2965 /* Set various CEC parameters */
2966 #define EC_CMD_CEC_SET 0x00BA
2969 * struct ec_params_cec_set - CEC parameters set
2970 * @cmd: parameter type, can be CEC_CMD_ENABLE or CEC_CMD_LOGICAL_ADDRESS
2971 * @val: in case cmd is CEC_CMD_ENABLE, this field can be 0 to disable CEC
2972 * or 1 to enable CEC functionality, in case cmd is CEC_CMD_LOGICAL_ADDRESS,
2973 * this field encodes the requested logical address between 0 and 15
2974 * or 0xff to unregister
2976 struct ec_params_cec_set {
2977 uint8_t cmd; /* enum cec_command */
2981 /* Read various CEC parameters */
2982 #define EC_CMD_CEC_GET 0x00BB
2985 * struct ec_params_cec_get - CEC parameters get
2986 * @cmd: parameter type, can be CEC_CMD_ENABLE or CEC_CMD_LOGICAL_ADDRESS
2988 struct ec_params_cec_get {
2989 uint8_t cmd; /* enum cec_command */
2993 * struct ec_response_cec_get - CEC parameters get response
2994 * @val: in case cmd was CEC_CMD_ENABLE, this field will 0 if CEC is
2995 * disabled or 1 if CEC functionality is enabled,
2996 * in case cmd was CEC_CMD_LOGICAL_ADDRESS, this will encode the
2997 * configured logical address between 0 and 15 or 0xff if unregistered
2999 struct ec_response_cec_get {
3003 /* CEC parameters command */
3004 enum ec_cec_command {
3005 /* CEC reading, writing and events enable */
3007 /* CEC logical address */
3008 CEC_CMD_LOGICAL_ADDRESS,
3011 /* Events from CEC to AP */
3012 enum mkbp_cec_event {
3013 /* Outgoing message was acknowledged by a follower */
3014 EC_MKBP_CEC_SEND_OK = BIT(0),
3015 /* Outgoing message was not acknowledged */
3016 EC_MKBP_CEC_SEND_FAILED = BIT(1),
3019 /*****************************************************************************/
3023 * These do not follow the normal rules for commands. See each command for
3030 * This command will work even when the EC LPC interface is busy, because the
3031 * reboot command is processed at interrupt level. Note that when the EC
3032 * reboots, the host will reboot too, so there is no response to this command.
3034 * Use EC_CMD_REBOOT_EC to reboot the EC more politely.
3036 #define EC_CMD_REBOOT 0xd1 /* Think "die" */
3039 * Resend last response (not supported on LPC).
3041 * Returns EC_RES_UNAVAILABLE if there is no response available - for example,
3042 * there was no previous command, or the previous command's response was too
3045 #define EC_CMD_RESEND_RESPONSE 0xdb
3048 * This header byte on a command indicate version 0. Any header byte less
3049 * than this means that we are talking to an old EC which doesn't support
3050 * versioning. In that case, we assume version 0.
3052 * Header bytes greater than this indicate a later version. For example,
3053 * EC_CMD_VERSION0 + 1 means we are using version 1.
3055 * The old EC interface must not use commands 0xdc or higher.
3057 #define EC_CMD_VERSION0 0xdc
3059 #endif /* !__ACPI__ */
3061 /*****************************************************************************/
3065 * These commands are for PD MCU communication.
3068 /* EC to PD MCU exchange status command */
3069 #define EC_CMD_PD_EXCHANGE_STATUS 0x100
3071 /* Status of EC being sent to PD */
3072 struct ec_params_pd_status {
3073 int8_t batt_soc; /* battery state of charge */
3076 /* Status of PD being sent back to EC */
3077 struct ec_response_pd_status {
3078 int8_t status; /* PD MCU status */
3079 uint32_t curr_lim_ma; /* input current limit */
3082 /* Set USB type-C port role and muxes */
3083 #define EC_CMD_USB_PD_CONTROL 0x101
3085 enum usb_pd_control_role {
3086 USB_PD_CTRL_ROLE_NO_CHANGE = 0,
3087 USB_PD_CTRL_ROLE_TOGGLE_ON = 1, /* == AUTO */
3088 USB_PD_CTRL_ROLE_TOGGLE_OFF = 2,
3089 USB_PD_CTRL_ROLE_FORCE_SINK = 3,
3090 USB_PD_CTRL_ROLE_FORCE_SOURCE = 4,
3093 enum usb_pd_control_mux {
3094 USB_PD_CTRL_MUX_NO_CHANGE = 0,
3095 USB_PD_CTRL_MUX_NONE = 1,
3096 USB_PD_CTRL_MUX_USB = 2,
3097 USB_PD_CTRL_MUX_DP = 3,
3098 USB_PD_CTRL_MUX_DOCK = 4,
3099 USB_PD_CTRL_MUX_AUTO = 5,
3102 enum usb_pd_control_swap {
3103 USB_PD_CTRL_SWAP_NONE = 0,
3104 USB_PD_CTRL_SWAP_DATA = 1,
3105 USB_PD_CTRL_SWAP_POWER = 2,
3106 USB_PD_CTRL_SWAP_VCONN = 3,
3107 USB_PD_CTRL_SWAP_COUNT
3110 struct ec_params_usb_pd_control {
3117 #define PD_CTRL_RESP_ENABLED_COMMS (1 << 0) /* Communication enabled */
3118 #define PD_CTRL_RESP_ENABLED_CONNECTED (1 << 1) /* Device connected */
3119 #define PD_CTRL_RESP_ENABLED_PD_CAPABLE (1 << 2) /* Partner is PD capable */
3121 #define PD_CTRL_RESP_ROLE_POWER BIT(0) /* 0=SNK/1=SRC */
3122 #define PD_CTRL_RESP_ROLE_DATA BIT(1) /* 0=UFP/1=DFP */
3123 #define PD_CTRL_RESP_ROLE_VCONN BIT(2) /* Vconn status */
3124 #define PD_CTRL_RESP_ROLE_DR_POWER BIT(3) /* Partner is dualrole power */
3125 #define PD_CTRL_RESP_ROLE_DR_DATA BIT(4) /* Partner is dualrole data */
3126 #define PD_CTRL_RESP_ROLE_USB_COMM BIT(5) /* Partner USB comm capable */
3127 #define PD_CTRL_RESP_ROLE_EXT_POWERED BIT(6) /* Partner externally powerd */
3129 struct ec_response_usb_pd_control_v1 {
3136 #define EC_CMD_USB_PD_PORTS 0x102
3138 /* Maximum number of PD ports on a device, num_ports will be <= this */
3139 #define EC_USB_PD_MAX_PORTS 8
3141 struct ec_response_usb_pd_ports {
3145 #define EC_CMD_USB_PD_POWER_INFO 0x103
3147 #define PD_POWER_CHARGING_PORT 0xff
3148 struct ec_params_usb_pd_power_info {
3156 USB_CHG_TYPE_PROPRIETARY,
3157 USB_CHG_TYPE_BC12_DCP,
3158 USB_CHG_TYPE_BC12_CDP,
3159 USB_CHG_TYPE_BC12_SDP,
3162 USB_CHG_TYPE_UNKNOWN,
3164 enum usb_power_roles {
3165 USB_PD_PORT_POWER_DISCONNECTED,
3166 USB_PD_PORT_POWER_SOURCE,
3167 USB_PD_PORT_POWER_SINK,
3168 USB_PD_PORT_POWER_SINK_NOT_CHARGING,
3171 struct usb_chg_measures {
3172 uint16_t voltage_max;
3173 uint16_t voltage_now;
3174 uint16_t current_max;
3175 uint16_t current_lim;
3178 struct ec_response_usb_pd_power_info {
3183 struct usb_chg_measures meas;
3187 struct ec_params_usb_pd_info_request {
3192 * This command will return the number of USB PD charge port + the number
3193 * of dedicated port present.
3194 * EC_CMD_USB_PD_PORTS does NOT include the dedicated ports
3196 #define EC_CMD_CHARGE_PORT_COUNT 0x0105
3197 struct ec_response_charge_port_count {
3201 /* Read USB-PD Device discovery info */
3202 #define EC_CMD_USB_PD_DISCOVERY 0x0113
3203 struct ec_params_usb_pd_discovery_entry {
3204 uint16_t vid; /* USB-IF VID */
3205 uint16_t pid; /* USB-IF PID */
3206 uint8_t ptype; /* product type (hub,periph,cable,ama) */
3209 /* Override default charge behavior */
3210 #define EC_CMD_PD_CHARGE_PORT_OVERRIDE 0x0114
3212 /* Negative port parameters have special meaning */
3213 enum usb_pd_override_ports {
3214 OVERRIDE_DONT_CHARGE = -2,
3216 /* [0, CONFIG_USB_PD_PORT_COUNT): Port# */
3219 struct ec_params_charge_port_override {
3220 int16_t override_port; /* Override port# */
3223 /* Read (and delete) one entry of PD event log */
3224 #define EC_CMD_PD_GET_LOG_ENTRY 0x0115
3226 struct ec_response_pd_log {
3227 uint32_t timestamp; /* relative timestamp in milliseconds */
3228 uint8_t type; /* event type : see PD_EVENT_xx below */
3229 uint8_t size_port; /* [7:5] port number [4:0] payload size in bytes */
3230 uint16_t data; /* type-defined data payload */
3231 uint8_t payload[0]; /* optional additional data payload: 0..16 bytes */
3234 /* The timestamp is the microsecond counter shifted to get about a ms. */
3235 #define PD_LOG_TIMESTAMP_SHIFT 10 /* 1 LSB = 1024us */
3237 #define PD_LOG_SIZE_MASK 0x1f
3238 #define PD_LOG_PORT_MASK 0xe0
3239 #define PD_LOG_PORT_SHIFT 5
3240 #define PD_LOG_PORT_SIZE(port, size) (((port) << PD_LOG_PORT_SHIFT) | \
3241 ((size) & PD_LOG_SIZE_MASK))
3242 #define PD_LOG_PORT(size_port) ((size_port) >> PD_LOG_PORT_SHIFT)
3243 #define PD_LOG_SIZE(size_port) ((size_port) & PD_LOG_SIZE_MASK)
3245 /* PD event log : entry types */
3247 #define PD_EVENT_MCU_BASE 0x00
3248 #define PD_EVENT_MCU_CHARGE (PD_EVENT_MCU_BASE+0)
3249 #define PD_EVENT_MCU_CONNECT (PD_EVENT_MCU_BASE+1)
3250 /* Reserved for custom board event */
3251 #define PD_EVENT_MCU_BOARD_CUSTOM (PD_EVENT_MCU_BASE+2)
3252 /* PD generic accessory events */
3253 #define PD_EVENT_ACC_BASE 0x20
3254 #define PD_EVENT_ACC_RW_FAIL (PD_EVENT_ACC_BASE+0)
3255 #define PD_EVENT_ACC_RW_ERASE (PD_EVENT_ACC_BASE+1)
3256 /* PD power supply events */
3257 #define PD_EVENT_PS_BASE 0x40
3258 #define PD_EVENT_PS_FAULT (PD_EVENT_PS_BASE+0)
3259 /* PD video dongles events */
3260 #define PD_EVENT_VIDEO_BASE 0x60
3261 #define PD_EVENT_VIDEO_DP_MODE (PD_EVENT_VIDEO_BASE+0)
3262 #define PD_EVENT_VIDEO_CODEC (PD_EVENT_VIDEO_BASE+1)
3263 /* Returned in the "type" field, when there is no entry available */
3264 #define PD_EVENT_NO_ENTRY 0xff
3267 * PD_EVENT_MCU_CHARGE event definition :
3268 * the payload is "struct usb_chg_measures"
3269 * the data field contains the port state flags as defined below :
3271 /* Port partner is a dual role device */
3272 #define CHARGE_FLAGS_DUAL_ROLE BIT(15)
3273 /* Port is the pending override port */
3274 #define CHARGE_FLAGS_DELAYED_OVERRIDE BIT(14)
3275 /* Port is the override port */
3276 #define CHARGE_FLAGS_OVERRIDE BIT(13)
3278 #define CHARGE_FLAGS_TYPE_SHIFT 3
3279 #define CHARGE_FLAGS_TYPE_MASK (0xf << CHARGE_FLAGS_TYPE_SHIFT)
3280 /* Power delivery role */
3281 #define CHARGE_FLAGS_ROLE_MASK (7 << 0)
3284 * PD_EVENT_PS_FAULT data field flags definition :
3286 #define PS_FAULT_OCP 1
3287 #define PS_FAULT_FAST_OCP 2
3288 #define PS_FAULT_OVP 3
3289 #define PS_FAULT_DISCH 4
3292 * PD_EVENT_VIDEO_CODEC payload is "struct mcdp_info".
3294 struct mcdp_version {
3303 struct mcdp_version irom;
3304 struct mcdp_version fw;
3307 /* struct mcdp_info field decoding */
3308 #define MCDP_CHIPID(chipid) ((chipid[0] << 8) | chipid[1])
3309 #define MCDP_FAMILY(family) ((family[0] << 8) | family[1])
3311 /* Get info about USB-C SS muxes */
3312 #define EC_CMD_USB_PD_MUX_INFO 0x11a
3314 struct ec_params_usb_pd_mux_info {
3315 uint8_t port; /* USB-C port number */
3318 /* Flags representing mux state */
3319 #define USB_PD_MUX_USB_ENABLED (1 << 0)
3320 #define USB_PD_MUX_DP_ENABLED (1 << 1)
3321 #define USB_PD_MUX_POLARITY_INVERTED (1 << 2)
3322 #define USB_PD_MUX_HPD_IRQ (1 << 3)
3324 struct ec_response_usb_pd_mux_info {
3325 uint8_t flags; /* USB_PD_MUX_*-encoded USB mux state */
3328 /*****************************************************************************/
3332 * Some platforms have sub-processors chained to each other. For example.
3334 * AP <--> EC <--> PD MCU
3336 * The top 2 bits of the command number are used to indicate which device the
3337 * command is intended for. Device 0 is always the device receiving the
3338 * command; other device mapping is board-specific.
3340 * When a device receives a command to be passed to a sub-processor, it passes
3341 * it on with the device number set back t