Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 1 | /* |
| 2 | * ChromeOS EC multi-function device |
| 3 | * |
| 4 | * Copyright (C) 2012 Google, Inc |
| 5 | * |
| 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. |
| 9 | * |
| 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. |
| 14 | */ |
| 15 | |
| 16 | #ifndef __LINUX_MFD_CROS_EC_H |
| 17 | #define __LINUX_MFD_CROS_EC_H |
| 18 | |
Javier Martinez Canillas | 05c11ac | 2015-02-02 12:26:23 +0100 | [diff] [blame] | 19 | #include <linux/cdev.h> |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 20 | #include <linux/device.h> |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 21 | #include <linux/notifier.h> |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 22 | #include <linux/mfd/cros_ec_commands.h> |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 23 | #include <linux/mutex.h> |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 24 | |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 25 | #define CROS_EC_DEV_NAME "cros_ec" |
| 26 | #define CROS_EC_DEV_PD_NAME "cros_pd" |
| 27 | |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 28 | /* |
Stephen Barber | d365407 | 2015-06-09 13:04:46 +0200 | [diff] [blame] | 29 | * The EC is unresponsive for a time after a reboot command. Add a |
| 30 | * simple delay to make sure that the bus stays locked. |
| 31 | */ |
| 32 | #define EC_REBOOT_DELAY_MS 50 |
| 33 | |
| 34 | /* |
Stephen Barber | 2c7589a | 2015-06-09 13:04:45 +0200 | [diff] [blame] | 35 | * Max bus-specific overhead incurred by request/responses. |
| 36 | * I2C requires 1 additional byte for requests. |
| 37 | * I2C requires 2 additional bytes for responses. |
Vic Yang | b237640 | 2017-03-24 18:44:01 +0100 | [diff] [blame] | 38 | * SPI requires up to 32 additional bytes for responses. |
Stephen Barber | 2c7589a | 2015-06-09 13:04:45 +0200 | [diff] [blame] | 39 | * */ |
| 40 | #define EC_PROTO_VERSION_UNKNOWN 0 |
| 41 | #define EC_MAX_REQUEST_OVERHEAD 1 |
Vic Yang | b237640 | 2017-03-24 18:44:01 +0100 | [diff] [blame] | 42 | #define EC_MAX_RESPONSE_OVERHEAD 32 |
Stephen Barber | 2c7589a | 2015-06-09 13:04:45 +0200 | [diff] [blame] | 43 | |
| 44 | /* |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 45 | * Command interface between EC and AP, for LPC, I2C and SPI interfaces. |
| 46 | */ |
| 47 | enum { |
| 48 | EC_MSG_TX_HEADER_BYTES = 3, |
| 49 | EC_MSG_TX_TRAILER_BYTES = 1, |
| 50 | EC_MSG_TX_PROTO_BYTES = EC_MSG_TX_HEADER_BYTES + |
| 51 | EC_MSG_TX_TRAILER_BYTES, |
| 52 | EC_MSG_RX_PROTO_BYTES = 3, |
| 53 | |
Gwendal Grignou | 5d749d0 | 2016-03-08 09:13:52 -0800 | [diff] [blame] | 54 | /* Max length of messages for proto 2*/ |
| 55 | EC_PROTO2_MSG_BYTES = EC_PROTO2_MAX_PARAM_SIZE + |
Bill Richardson | 5271db2 | 2014-04-30 10:44:08 -0700 | [diff] [blame] | 56 | EC_MSG_TX_PROTO_BYTES, |
Gwendal Grignou | 5d749d0 | 2016-03-08 09:13:52 -0800 | [diff] [blame] | 57 | |
| 58 | EC_MAX_MSG_BYTES = 64 * 1024, |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 59 | }; |
| 60 | |
Bill Richardson | 5d4773e | 2014-06-18 11:14:02 -0700 | [diff] [blame] | 61 | /* |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 62 | * @version: Command version number (often 0) |
Bill Richardson | 5d4773e | 2014-06-18 11:14:02 -0700 | [diff] [blame] | 63 | * @command: Command to send (EC_CMD_...) |
Bill Richardson | 5d4773e | 2014-06-18 11:14:02 -0700 | [diff] [blame] | 64 | * @outsize: Outgoing length in bytes |
Bill Richardson | 12ebc8a | 2014-06-18 11:14:06 -0700 | [diff] [blame] | 65 | * @insize: Max number of bytes to accept from EC |
Bill Richardson | 5d4773e | 2014-06-18 11:14:02 -0700 | [diff] [blame] | 66 | * @result: EC's response to the command (separate from communication failure) |
Javier Martinez Canillas | a841178 | 2015-06-09 13:04:42 +0200 | [diff] [blame] | 67 | * @data: Where to put the incoming data from EC and outgoing data to EC |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 68 | */ |
Bill Richardson | 5d4773e | 2014-06-18 11:14:02 -0700 | [diff] [blame] | 69 | struct cros_ec_command { |
| 70 | uint32_t version; |
| 71 | uint32_t command; |
Bill Richardson | 5d4773e | 2014-06-18 11:14:02 -0700 | [diff] [blame] | 72 | uint32_t outsize; |
Bill Richardson | 5d4773e | 2014-06-18 11:14:02 -0700 | [diff] [blame] | 73 | uint32_t insize; |
| 74 | uint32_t result; |
Javier Martinez Canillas | a841178 | 2015-06-09 13:04:42 +0200 | [diff] [blame] | 75 | uint8_t data[0]; |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 76 | }; |
| 77 | |
| 78 | /** |
| 79 | * struct cros_ec_device - Information about a ChromeOS EC device |
| 80 | * |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 81 | * @phys_name: name of physical comms layer (e.g. 'i2c-4') |
Javier Martinez Canillas | 05c11ac | 2015-02-02 12:26:23 +0100 | [diff] [blame] | 82 | * @dev: Device pointer for physical comms device |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 83 | * @was_wake_device: true if this device was set to wake the system from |
| 84 | * sleep at the last suspend |
Javier Martinez Canillas | 05c11ac | 2015-02-02 12:26:23 +0100 | [diff] [blame] | 85 | * @cmd_readmem: direct read of the EC memory-mapped region, if supported |
| 86 | * @offset is within EC_LPC_ADDR_MEMMAP region. |
| 87 | * @bytes: number of bytes to read. zero means "read a string" (including |
| 88 | * the trailing '\0'). At most only EC_MEMMAP_SIZE bytes can be read. |
| 89 | * Caller must ensure that the buffer is large enough for the result when |
| 90 | * reading a string. |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 91 | * |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 92 | * @priv: Private data |
| 93 | * @irq: Interrupt to use |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 94 | * @id: Device id |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 95 | * @din: input buffer (for data from EC) |
| 96 | * @dout: output buffer (for data to EC) |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 97 | * \note |
| 98 | * These two buffers will always be dword-aligned and include enough |
| 99 | * space for up to 7 word-alignment bytes also, so we can ensure that |
| 100 | * the body of the message is always dword-aligned (64-bit). |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 101 | * We use this alignment to keep ARM and x86 happy. Probably word |
| 102 | * alignment would be OK, there might be a small performance advantage |
| 103 | * to using dword. |
Bill Richardson | 2ce701a | 2014-06-18 11:13:59 -0700 | [diff] [blame] | 104 | * @din_size: size of din buffer to allocate (zero to use static din) |
| 105 | * @dout_size: size of dout buffer to allocate (zero to use static dout) |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 106 | * @wake_enabled: true if this device can wake the system from sleep |
Joseph Lo | a9eb186 | 2016-12-16 18:57:36 +0100 | [diff] [blame] | 107 | * @suspended: true if this device had been suspended |
Andrew Bresticker | a6551a7 | 2014-09-18 17:18:56 +0200 | [diff] [blame] | 108 | * @cmd_xfer: send command to EC and get response |
| 109 | * Returns the number of bytes received if the communication succeeded, but |
| 110 | * that doesn't mean the EC was happy with the command. The caller |
| 111 | * should check msg.result for the EC's result code. |
Stephen Barber | 2c7589a | 2015-06-09 13:04:45 +0200 | [diff] [blame] | 112 | * @pkt_xfer: send packet to EC and get response |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 113 | * @lock: one transaction at a time |
Vic Yang | 6f1d912 | 2016-08-10 19:05:24 +0200 | [diff] [blame] | 114 | * @mkbp_event_supported: true if this EC supports the MKBP event protocol. |
| 115 | * @event_notifier: interrupt event notifier for transport devices. |
| 116 | * @event_data: raw payload transferred with the MKBP event. |
| 117 | * @event_size: size in bytes of the event data. |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 118 | */ |
| 119 | struct cros_ec_device { |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 120 | |
| 121 | /* These are used by other drivers that want to talk to the EC */ |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 122 | const char *phys_name; |
| 123 | struct device *dev; |
| 124 | bool was_wake_device; |
| 125 | struct class *cros_class; |
Javier Martinez Canillas | 05c11ac | 2015-02-02 12:26:23 +0100 | [diff] [blame] | 126 | int (*cmd_readmem)(struct cros_ec_device *ec, unsigned int offset, |
| 127 | unsigned int bytes, void *dest); |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 128 | |
| 129 | /* These are used to implement the platform-specific interface */ |
Stephen Barber | 2c7589a | 2015-06-09 13:04:45 +0200 | [diff] [blame] | 130 | u16 max_request; |
| 131 | u16 max_response; |
| 132 | u16 max_passthru; |
| 133 | u16 proto_version; |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 134 | void *priv; |
| 135 | int irq; |
Stephen Barber | 2c7589a | 2015-06-09 13:04:45 +0200 | [diff] [blame] | 136 | u8 *din; |
| 137 | u8 *dout; |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 138 | int din_size; |
| 139 | int dout_size; |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 140 | bool wake_enabled; |
Joseph Lo | a9eb186 | 2016-12-16 18:57:36 +0100 | [diff] [blame] | 141 | bool suspended; |
Andrew Bresticker | a6551a7 | 2014-09-18 17:18:56 +0200 | [diff] [blame] | 142 | int (*cmd_xfer)(struct cros_ec_device *ec, |
| 143 | struct cros_ec_command *msg); |
Stephen Barber | 2c7589a | 2015-06-09 13:04:45 +0200 | [diff] [blame] | 144 | int (*pkt_xfer)(struct cros_ec_device *ec, |
| 145 | struct cros_ec_command *msg); |
Bill Richardson | 7e6cb5b | 2014-06-18 11:14:00 -0700 | [diff] [blame] | 146 | struct mutex lock; |
Vic Yang | 6f1d912 | 2016-08-10 19:05:24 +0200 | [diff] [blame] | 147 | bool mkbp_event_supported; |
| 148 | struct blocking_notifier_head event_notifier; |
| 149 | |
| 150 | struct ec_response_get_next_event event_data; |
| 151 | int event_size; |
Shawn Nematbakhsh | 29d99b9 | 2017-02-14 20:58:02 +0100 | [diff] [blame] | 152 | u32 host_event_wake_mask; |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 153 | }; |
| 154 | |
Enric Balletbo i Serra | 974e6f0 | 2016-08-01 11:54:35 +0200 | [diff] [blame] | 155 | /** |
| 156 | * struct cros_ec_sensor_platform - ChromeOS EC sensor platform information |
| 157 | * |
| 158 | * @sensor_num: Id of the sensor, as reported by the EC. |
| 159 | */ |
| 160 | struct cros_ec_sensor_platform { |
| 161 | u8 sensor_num; |
| 162 | }; |
| 163 | |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 164 | /* struct cros_ec_platform - ChromeOS EC platform information |
| 165 | * |
| 166 | * @ec_name: name of EC device (e.g. 'cros-ec', 'cros-pd', ...) |
| 167 | * used in /dev/ and sysfs. |
| 168 | * @cmd_offset: offset to apply for each command. Set when |
| 169 | * registering a devicde behind another one. |
| 170 | */ |
| 171 | struct cros_ec_platform { |
| 172 | const char *ec_name; |
| 173 | u16 cmd_offset; |
| 174 | }; |
| 175 | |
Eric Caruso | e862645 | 2017-05-16 17:46:48 +0200 | [diff] [blame] | 176 | struct cros_ec_debugfs; |
| 177 | |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 178 | /* |
| 179 | * struct cros_ec_dev - ChromeOS EC device entry point |
| 180 | * |
| 181 | * @class_dev: Device structure used in sysfs |
| 182 | * @cdev: Character device structure in /dev |
| 183 | * @ec_dev: cros_ec_device structure to talk to the physical device |
| 184 | * @dev: pointer to the platform device |
Eric Caruso | e862645 | 2017-05-16 17:46:48 +0200 | [diff] [blame] | 185 | * @debug_info: cros_ec_debugfs structure for debugging information |
Gwendal Grignou | c1d1e91a | 2018-03-23 18:42:47 +0100 | [diff] [blame] | 186 | * @has_kb_wake_angle: true if at least 2 accelerometer are connected to the EC. |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 187 | * @cmd_offset: offset to apply for each command. |
| 188 | */ |
| 189 | struct cros_ec_dev { |
| 190 | struct device class_dev; |
| 191 | struct cdev cdev; |
| 192 | struct cros_ec_device *ec_dev; |
| 193 | struct device *dev; |
Eric Caruso | e862645 | 2017-05-16 17:46:48 +0200 | [diff] [blame] | 194 | struct cros_ec_debugfs *debug_info; |
Gwendal Grignou | c1d1e91a | 2018-03-23 18:42:47 +0100 | [diff] [blame] | 195 | bool has_kb_wake_angle; |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 196 | u16 cmd_offset; |
Vincent Palatin | e4244eb | 2016-08-01 11:54:37 +0200 | [diff] [blame] | 197 | u32 features[2]; |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 198 | }; |
| 199 | |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 200 | /** |
| 201 | * cros_ec_suspend - Handle a suspend operation for the ChromeOS EC device |
| 202 | * |
| 203 | * This can be called by drivers to handle a suspend event. |
| 204 | * |
| 205 | * ec_dev: Device to suspend |
| 206 | * @return 0 if ok, -ve on error |
| 207 | */ |
| 208 | int cros_ec_suspend(struct cros_ec_device *ec_dev); |
| 209 | |
| 210 | /** |
| 211 | * cros_ec_resume - Handle a resume operation for the ChromeOS EC device |
| 212 | * |
| 213 | * This can be called by drivers to handle a resume event. |
| 214 | * |
| 215 | * @ec_dev: Device to resume |
| 216 | * @return 0 if ok, -ve on error |
| 217 | */ |
| 218 | int cros_ec_resume(struct cros_ec_device *ec_dev); |
| 219 | |
| 220 | /** |
| 221 | * cros_ec_prepare_tx - Prepare an outgoing message in the output buffer |
| 222 | * |
| 223 | * This is intended to be used by all ChromeOS EC drivers, but at present |
| 224 | * only SPI uses it. Once LPC uses the same protocol it can start using it. |
| 225 | * I2C could use it now, with a refactor of the existing code. |
| 226 | * |
| 227 | * @ec_dev: Device to register |
| 228 | * @msg: Message to write |
| 229 | */ |
| 230 | int cros_ec_prepare_tx(struct cros_ec_device *ec_dev, |
Bill Richardson | 5d4773e | 2014-06-18 11:14:02 -0700 | [diff] [blame] | 231 | struct cros_ec_command *msg); |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 232 | |
| 233 | /** |
Bill Richardson | 6db07b6 | 2014-06-18 11:14:05 -0700 | [diff] [blame] | 234 | * cros_ec_check_result - Check ec_msg->result |
| 235 | * |
| 236 | * This is used by ChromeOS EC drivers to check the ec_msg->result for |
| 237 | * errors and to warn about them. |
| 238 | * |
| 239 | * @ec_dev: EC device |
| 240 | * @msg: Message to check |
| 241 | */ |
| 242 | int cros_ec_check_result(struct cros_ec_device *ec_dev, |
| 243 | struct cros_ec_command *msg); |
| 244 | |
| 245 | /** |
Andrew Bresticker | a6551a7 | 2014-09-18 17:18:56 +0200 | [diff] [blame] | 246 | * cros_ec_cmd_xfer - Send a command to the ChromeOS EC |
| 247 | * |
| 248 | * Call this to send a command to the ChromeOS EC. This should be used |
| 249 | * instead of calling the EC's cmd_xfer() callback directly. |
| 250 | * |
| 251 | * @ec_dev: EC device |
| 252 | * @msg: Message to write |
| 253 | */ |
| 254 | int cros_ec_cmd_xfer(struct cros_ec_device *ec_dev, |
| 255 | struct cros_ec_command *msg); |
| 256 | |
| 257 | /** |
Tomeu Vizoso | 9798ac6 | 2016-07-15 16:28:41 -0700 | [diff] [blame] | 258 | * cros_ec_cmd_xfer_status - Send a command to the ChromeOS EC |
| 259 | * |
| 260 | * This function is identical to cros_ec_cmd_xfer, except it returns success |
| 261 | * status only if both the command was transmitted successfully and the EC |
| 262 | * replied with success status. It's not necessary to check msg->result when |
| 263 | * using this function. |
| 264 | * |
| 265 | * @ec_dev: EC device |
| 266 | * @msg: Message to write |
| 267 | * @return: Num. of bytes transferred on success, <0 on failure |
| 268 | */ |
| 269 | int cros_ec_cmd_xfer_status(struct cros_ec_device *ec_dev, |
| 270 | struct cros_ec_command *msg); |
| 271 | |
| 272 | /** |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 273 | * cros_ec_remove - Remove a ChromeOS EC |
| 274 | * |
Bill Richardson | ee98662 | 2014-06-18 11:13:58 -0700 | [diff] [blame] | 275 | * Call this to deregister a ChromeOS EC, then clean up any private data. |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 276 | * |
| 277 | * @ec_dev: Device to register |
| 278 | * @return 0 if ok, -ve on error |
| 279 | */ |
| 280 | int cros_ec_remove(struct cros_ec_device *ec_dev); |
| 281 | |
| 282 | /** |
| 283 | * cros_ec_register - Register a new ChromeOS EC, using the provided info |
| 284 | * |
| 285 | * Before calling this, allocate a pointer to a new device and then fill |
| 286 | * in all the fields up to the --private-- marker. |
| 287 | * |
| 288 | * @ec_dev: Device to register |
| 289 | * @return 0 if ok, -ve on error |
| 290 | */ |
| 291 | int cros_ec_register(struct cros_ec_device *ec_dev); |
| 292 | |
Stephen Barber | 2c7589a | 2015-06-09 13:04:45 +0200 | [diff] [blame] | 293 | /** |
Tomeu Vizoso | f4bcf5a | 2016-02-05 14:32:56 +0100 | [diff] [blame] | 294 | * cros_ec_query_all - Query the protocol version supported by the ChromeOS EC |
Stephen Barber | 2c7589a | 2015-06-09 13:04:45 +0200 | [diff] [blame] | 295 | * |
| 296 | * @ec_dev: Device to register |
| 297 | * @return 0 if ok, -ve on error |
| 298 | */ |
| 299 | int cros_ec_query_all(struct cros_ec_device *ec_dev); |
| 300 | |
Vic Yang | 6f1d912 | 2016-08-10 19:05:24 +0200 | [diff] [blame] | 301 | /** |
| 302 | * cros_ec_get_next_event - Fetch next event from the ChromeOS EC |
| 303 | * |
| 304 | * @ec_dev: Device to fetch event from |
Shawn Nematbakhsh | 29d99b9 | 2017-02-14 20:58:02 +0100 | [diff] [blame] | 305 | * @wake_event: Pointer to a bool set to true upon return if the event might be |
| 306 | * treated as a wake event. Ignored if null. |
Vic Yang | 6f1d912 | 2016-08-10 19:05:24 +0200 | [diff] [blame] | 307 | * |
| 308 | * Returns: 0 on success, Linux error number on failure |
| 309 | */ |
Shawn Nematbakhsh | 29d99b9 | 2017-02-14 20:58:02 +0100 | [diff] [blame] | 310 | int cros_ec_get_next_event(struct cros_ec_device *ec_dev, bool *wake_event); |
Vic Yang | 6f1d912 | 2016-08-10 19:05:24 +0200 | [diff] [blame] | 311 | |
Gwendal Grignou | 68c35ea | 2017-05-16 17:46:48 +0200 | [diff] [blame] | 312 | /** |
| 313 | * cros_ec_get_host_event - Return a mask of event set by the EC. |
| 314 | * |
| 315 | * When MKBP is supported, when the EC raises an interrupt, |
| 316 | * We collect the events raised and call the functions in the ec notifier. |
| 317 | * |
| 318 | * This function is a helper to know which events are raised. |
| 319 | */ |
| 320 | u32 cros_ec_get_host_event(struct cros_ec_device *ec_dev); |
| 321 | |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 322 | /* sysfs stuff */ |
| 323 | extern struct attribute_group cros_ec_attr_group; |
| 324 | extern struct attribute_group cros_ec_lightbar_attr_group; |
Emilio López | 18800fc | 2015-09-21 10:38:22 -0300 | [diff] [blame] | 325 | extern struct attribute_group cros_ec_vbc_attr_group; |
Gwendal Grignou | 57b33ff | 2015-06-09 13:04:47 +0200 | [diff] [blame] | 326 | |
Thierry Escande | 5e01155 | 2017-11-20 17:15:26 +0100 | [diff] [blame] | 327 | /* debugfs stuff */ |
| 328 | int cros_ec_debugfs_init(struct cros_ec_dev *ec); |
| 329 | void cros_ec_debugfs_remove(struct cros_ec_dev *ec); |
| 330 | |
Archana Patni | e04653a | 2017-02-01 17:22:03 +0100 | [diff] [blame] | 331 | /* ACPI GPE handler */ |
| 332 | #ifdef CONFIG_ACPI |
| 333 | |
| 334 | int cros_ec_acpi_install_gpe_handler(struct device *dev); |
| 335 | void cros_ec_acpi_remove_gpe_handler(void); |
| 336 | void cros_ec_acpi_clear_gpe(void); |
| 337 | |
| 338 | #else /* CONFIG_ACPI */ |
| 339 | |
| 340 | static inline int cros_ec_acpi_install_gpe_handler(struct device *dev) |
| 341 | { |
| 342 | return -ENODEV; |
| 343 | } |
| 344 | static inline void cros_ec_acpi_remove_gpe_handler(void) {} |
| 345 | static inline void cros_ec_acpi_clear_gpe(void) {} |
| 346 | |
| 347 | #endif /* CONFIG_ACPI */ |
| 348 | |
Simon Glass | 4ab6174 | 2013-02-25 14:08:37 -0800 | [diff] [blame] | 349 | #endif /* __LINUX_MFD_CROS_EC_H */ |