Linux Audio

Check our new training course

Real-Time Linux with PREEMPT_RT training

Feb 18-20, 2025
Register
Loading...
v4.6
  1/*
  2 * cros_ec_sysfs - expose the Chrome OS EC through sysfs
  3 *
  4 * Copyright (C) 2014 Google, Inc.
  5 *
  6 * This program is free software; you can redistribute it and/or modify
  7 * it under the terms of the GNU General Public License as published by
  8 * the Free Software Foundation; either version 2 of the License, or
  9 * (at your option) any later version.
 10 *
 11 * This program is distributed in the hope that it will be useful,
 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 14 * GNU General Public License for more details.
 15 *
 16 * You should have received a copy of the GNU General Public License
 17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 18 */
 19
 20#define pr_fmt(fmt) "cros_ec_sysfs: " fmt
 21
 22#include <linux/ctype.h>
 23#include <linux/delay.h>
 24#include <linux/device.h>
 25#include <linux/fs.h>
 26#include <linux/kobject.h>
 27#include <linux/mfd/cros_ec.h>
 28#include <linux/mfd/cros_ec_commands.h>
 29#include <linux/module.h>
 
 
 30#include <linux/platform_device.h>
 31#include <linux/printk.h>
 32#include <linux/slab.h>
 33#include <linux/stat.h>
 34#include <linux/types.h>
 35#include <linux/uaccess.h>
 36
 37#include "cros_ec_dev.h"
 38
 39/* Accessor functions */
 40
 41static ssize_t show_ec_reboot(struct device *dev,
 42			      struct device_attribute *attr, char *buf)
 43{
 44	int count = 0;
 45
 46	count += scnprintf(buf + count, PAGE_SIZE - count,
 47			   "ro|rw|cancel|cold|disable-jump|hibernate");
 48	count += scnprintf(buf + count, PAGE_SIZE - count,
 49			   " [at-shutdown]\n");
 50	return count;
 51}
 52
 53static ssize_t store_ec_reboot(struct device *dev,
 54			       struct device_attribute *attr,
 55			       const char *buf, size_t count)
 56{
 57	static const struct {
 58		const char * const str;
 59		uint8_t cmd;
 60		uint8_t flags;
 61	} words[] = {
 62		{"cancel",       EC_REBOOT_CANCEL, 0},
 63		{"ro",           EC_REBOOT_JUMP_RO, 0},
 64		{"rw",           EC_REBOOT_JUMP_RW, 0},
 65		{"cold",         EC_REBOOT_COLD, 0},
 66		{"disable-jump", EC_REBOOT_DISABLE_JUMP, 0},
 67		{"hibernate",    EC_REBOOT_HIBERNATE, 0},
 68		{"at-shutdown",  -1, EC_REBOOT_FLAG_ON_AP_SHUTDOWN},
 69	};
 70	struct cros_ec_command *msg;
 71	struct ec_params_reboot_ec *param;
 72	int got_cmd = 0, offset = 0;
 73	int i;
 74	int ret;
 75	struct cros_ec_dev *ec = container_of(dev,
 76					      struct cros_ec_dev, class_dev);
 77
 78	msg = kmalloc(sizeof(*msg) + sizeof(*param), GFP_KERNEL);
 79	if (!msg)
 80		return -ENOMEM;
 81
 82	param = (struct ec_params_reboot_ec *)msg->data;
 83
 84	param->flags = 0;
 85	while (1) {
 86		/* Find word to start scanning */
 87		while (buf[offset] && isspace(buf[offset]))
 88			offset++;
 89		if (!buf[offset])
 90			break;
 91
 92		for (i = 0; i < ARRAY_SIZE(words); i++) {
 93			if (!strncasecmp(words[i].str, buf+offset,
 94					 strlen(words[i].str))) {
 95				if (words[i].flags) {
 96					param->flags |= words[i].flags;
 97				} else {
 98					param->cmd = words[i].cmd;
 99					got_cmd = 1;
100				}
101				break;
102			}
103		}
104
105		/* On to the next word, if any */
106		while (buf[offset] && !isspace(buf[offset]))
107			offset++;
108	}
109
110	if (!got_cmd) {
111		count = -EINVAL;
112		goto exit;
113	}
114
115	msg->version = 0;
116	msg->command = EC_CMD_REBOOT_EC + ec->cmd_offset;
117	msg->outsize = sizeof(*param);
118	msg->insize = 0;
119	ret = cros_ec_cmd_xfer(ec->ec_dev, msg);
120	if (ret < 0) {
121		count = ret;
122		goto exit;
123	}
124	if (msg->result != EC_RES_SUCCESS) {
125		dev_dbg(ec->dev, "EC result %d\n", msg->result);
126		count = -EINVAL;
127	}
128exit:
129	kfree(msg);
130	return count;
131}
132
133static ssize_t show_ec_version(struct device *dev,
134			       struct device_attribute *attr, char *buf)
135{
136	static const char * const image_names[] = {"unknown", "RO", "RW"};
137	struct ec_response_get_version *r_ver;
138	struct ec_response_get_chip_info *r_chip;
139	struct ec_response_board_version *r_board;
140	struct cros_ec_command *msg;
141	int ret;
142	int count = 0;
143	struct cros_ec_dev *ec = container_of(dev,
144					      struct cros_ec_dev, class_dev);
145
146	msg = kmalloc(sizeof(*msg) + EC_HOST_PARAM_SIZE, GFP_KERNEL);
147	if (!msg)
148		return -ENOMEM;
149
150	/* Get versions. RW may change. */
151	msg->version = 0;
152	msg->command = EC_CMD_GET_VERSION + ec->cmd_offset;
153	msg->insize = sizeof(*r_ver);
154	msg->outsize = 0;
155	ret = cros_ec_cmd_xfer(ec->ec_dev, msg);
156	if (ret < 0) {
157		count = ret;
158		goto exit;
159	}
160	if (msg->result != EC_RES_SUCCESS) {
161		count = scnprintf(buf, PAGE_SIZE,
162				  "ERROR: EC returned %d\n", msg->result);
163		goto exit;
164	}
165
166	r_ver = (struct ec_response_get_version *)msg->data;
167	/* Strings should be null-terminated, but let's be sure. */
168	r_ver->version_string_ro[sizeof(r_ver->version_string_ro) - 1] = '\0';
169	r_ver->version_string_rw[sizeof(r_ver->version_string_rw) - 1] = '\0';
170	count += scnprintf(buf + count, PAGE_SIZE - count,
171			   "RO version:    %s\n", r_ver->version_string_ro);
172	count += scnprintf(buf + count, PAGE_SIZE - count,
173			   "RW version:    %s\n", r_ver->version_string_rw);
174	count += scnprintf(buf + count, PAGE_SIZE - count,
175			   "Firmware copy: %s\n",
176			   (r_ver->current_image < ARRAY_SIZE(image_names) ?
177			    image_names[r_ver->current_image] : "?"));
178
179	/* Get build info. */
180	msg->command = EC_CMD_GET_BUILD_INFO + ec->cmd_offset;
181	msg->insize = EC_HOST_PARAM_SIZE;
182	ret = cros_ec_cmd_xfer(ec->ec_dev, msg);
183	if (ret < 0)
184		count += scnprintf(buf + count, PAGE_SIZE - count,
185				   "Build info:    XFER ERROR %d\n", ret);
186	else if (msg->result != EC_RES_SUCCESS)
187		count += scnprintf(buf + count, PAGE_SIZE - count,
188				   "Build info:    EC error %d\n", msg->result);
189	else {
190		msg->data[sizeof(msg->data) - 1] = '\0';
 
 
 
191		count += scnprintf(buf + count, PAGE_SIZE - count,
192				   "Build info:    %s\n", msg->data);
193	}
194
195	/* Get chip info. */
196	msg->command = EC_CMD_GET_CHIP_INFO + ec->cmd_offset;
197	msg->insize = sizeof(*r_chip);
198	ret = cros_ec_cmd_xfer(ec->ec_dev, msg);
199	if (ret < 0)
200		count += scnprintf(buf + count, PAGE_SIZE - count,
201				   "Chip info:     XFER ERROR %d\n", ret);
202	else if (msg->result != EC_RES_SUCCESS)
203		count += scnprintf(buf + count, PAGE_SIZE - count,
204				   "Chip info:     EC error %d\n", msg->result);
205	else {
 
 
 
206		r_chip = (struct ec_response_get_chip_info *)msg->data;
207
208		r_chip->vendor[sizeof(r_chip->vendor) - 1] = '\0';
209		r_chip->name[sizeof(r_chip->name) - 1] = '\0';
210		r_chip->revision[sizeof(r_chip->revision) - 1] = '\0';
211		count += scnprintf(buf + count, PAGE_SIZE - count,
212				   "Chip vendor:   %s\n", r_chip->vendor);
213		count += scnprintf(buf + count, PAGE_SIZE - count,
214				   "Chip name:     %s\n", r_chip->name);
215		count += scnprintf(buf + count, PAGE_SIZE - count,
216				   "Chip revision: %s\n", r_chip->revision);
217	}
218
219	/* Get board version */
220	msg->command = EC_CMD_GET_BOARD_VERSION + ec->cmd_offset;
221	msg->insize = sizeof(*r_board);
222	ret = cros_ec_cmd_xfer(ec->ec_dev, msg);
223	if (ret < 0)
224		count += scnprintf(buf + count, PAGE_SIZE - count,
225				   "Board version: XFER ERROR %d\n", ret);
226	else if (msg->result != EC_RES_SUCCESS)
227		count += scnprintf(buf + count, PAGE_SIZE - count,
228				   "Board version: EC error %d\n", msg->result);
229	else {
 
 
 
230		r_board = (struct ec_response_board_version *)msg->data;
231
232		count += scnprintf(buf + count, PAGE_SIZE - count,
233				   "Board version: %d\n",
234				   r_board->board_version);
235	}
236
237exit:
238	kfree(msg);
239	return count;
240}
241
242static ssize_t show_ec_flashinfo(struct device *dev,
243				 struct device_attribute *attr, char *buf)
244{
245	struct ec_response_flash_info *resp;
246	struct cros_ec_command *msg;
247	int ret;
248	struct cros_ec_dev *ec = container_of(dev,
249					      struct cros_ec_dev, class_dev);
250
251	msg = kmalloc(sizeof(*msg) + sizeof(*resp), GFP_KERNEL);
252	if (!msg)
253		return -ENOMEM;
254
255	/* The flash info shouldn't ever change, but ask each time anyway. */
256	msg->version = 0;
257	msg->command = EC_CMD_FLASH_INFO + ec->cmd_offset;
258	msg->insize = sizeof(*resp);
259	msg->outsize = 0;
260	ret = cros_ec_cmd_xfer(ec->ec_dev, msg);
261	if (ret < 0)
262		goto exit;
263	if (msg->result != EC_RES_SUCCESS) {
264		ret = scnprintf(buf, PAGE_SIZE,
265				"ERROR: EC returned %d\n", msg->result);
266		goto exit;
267	}
268
269	resp = (struct ec_response_flash_info *)msg->data;
270
271	ret = scnprintf(buf, PAGE_SIZE,
272			"FlashSize %d\nWriteSize %d\n"
273			"EraseSize %d\nProtectSize %d\n",
274			resp->flash_size, resp->write_block_size,
275			resp->erase_block_size, resp->protect_block_size);
276exit:
277	kfree(msg);
278	return ret;
279}
280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281/* Module initialization */
282
283static DEVICE_ATTR(reboot, S_IWUSR | S_IRUGO, show_ec_reboot, store_ec_reboot);
284static DEVICE_ATTR(version, S_IRUGO, show_ec_version, NULL);
285static DEVICE_ATTR(flashinfo, S_IRUGO, show_ec_flashinfo, NULL);
 
286
287static struct attribute *__ec_attrs[] = {
 
288	&dev_attr_reboot.attr,
289	&dev_attr_version.attr,
290	&dev_attr_flashinfo.attr,
291	NULL,
292};
293
294struct attribute_group cros_ec_attr_group = {
 
 
 
 
 
 
 
 
 
 
 
 
295	.attrs = __ec_attrs,
 
296};
297
v5.9
  1// SPDX-License-Identifier: GPL-2.0+
  2// Expose the ChromeOS EC through sysfs
  3//
  4// Copyright (C) 2014 Google, Inc.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  5
  6#include <linux/ctype.h>
  7#include <linux/delay.h>
  8#include <linux/device.h>
  9#include <linux/fs.h>
 10#include <linux/kobject.h>
 
 
 11#include <linux/module.h>
 12#include <linux/platform_data/cros_ec_commands.h>
 13#include <linux/platform_data/cros_ec_proto.h>
 14#include <linux/platform_device.h>
 15#include <linux/printk.h>
 16#include <linux/slab.h>
 17#include <linux/stat.h>
 18#include <linux/types.h>
 19#include <linux/uaccess.h>
 20
 21#define DRV_NAME "cros-ec-sysfs"
 22
 23/* Accessor functions */
 24
 25static ssize_t reboot_show(struct device *dev,
 26			   struct device_attribute *attr, char *buf)
 27{
 28	int count = 0;
 29
 30	count += scnprintf(buf + count, PAGE_SIZE - count,
 31			   "ro|rw|cancel|cold|disable-jump|hibernate");
 32	count += scnprintf(buf + count, PAGE_SIZE - count,
 33			   " [at-shutdown]\n");
 34	return count;
 35}
 36
 37static ssize_t reboot_store(struct device *dev,
 38			    struct device_attribute *attr,
 39			    const char *buf, size_t count)
 40{
 41	static const struct {
 42		const char * const str;
 43		uint8_t cmd;
 44		uint8_t flags;
 45	} words[] = {
 46		{"cancel",       EC_REBOOT_CANCEL, 0},
 47		{"ro",           EC_REBOOT_JUMP_RO, 0},
 48		{"rw",           EC_REBOOT_JUMP_RW, 0},
 49		{"cold",         EC_REBOOT_COLD, 0},
 50		{"disable-jump", EC_REBOOT_DISABLE_JUMP, 0},
 51		{"hibernate",    EC_REBOOT_HIBERNATE, 0},
 52		{"at-shutdown",  -1, EC_REBOOT_FLAG_ON_AP_SHUTDOWN},
 53	};
 54	struct cros_ec_command *msg;
 55	struct ec_params_reboot_ec *param;
 56	int got_cmd = 0, offset = 0;
 57	int i;
 58	int ret;
 59	struct cros_ec_dev *ec = to_cros_ec_dev(dev);
 
 60
 61	msg = kmalloc(sizeof(*msg) + sizeof(*param), GFP_KERNEL);
 62	if (!msg)
 63		return -ENOMEM;
 64
 65	param = (struct ec_params_reboot_ec *)msg->data;
 66
 67	param->flags = 0;
 68	while (1) {
 69		/* Find word to start scanning */
 70		while (buf[offset] && isspace(buf[offset]))
 71			offset++;
 72		if (!buf[offset])
 73			break;
 74
 75		for (i = 0; i < ARRAY_SIZE(words); i++) {
 76			if (!strncasecmp(words[i].str, buf+offset,
 77					 strlen(words[i].str))) {
 78				if (words[i].flags) {
 79					param->flags |= words[i].flags;
 80				} else {
 81					param->cmd = words[i].cmd;
 82					got_cmd = 1;
 83				}
 84				break;
 85			}
 86		}
 87
 88		/* On to the next word, if any */
 89		while (buf[offset] && !isspace(buf[offset]))
 90			offset++;
 91	}
 92
 93	if (!got_cmd) {
 94		count = -EINVAL;
 95		goto exit;
 96	}
 97
 98	msg->version = 0;
 99	msg->command = EC_CMD_REBOOT_EC + ec->cmd_offset;
100	msg->outsize = sizeof(*param);
101	msg->insize = 0;
102	ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg);
103	if (ret < 0)
104		count = ret;
 
 
 
 
 
 
105exit:
106	kfree(msg);
107	return count;
108}
109
110static ssize_t version_show(struct device *dev,
111			    struct device_attribute *attr, char *buf)
112{
113	static const char * const image_names[] = {"unknown", "RO", "RW"};
114	struct ec_response_get_version *r_ver;
115	struct ec_response_get_chip_info *r_chip;
116	struct ec_response_board_version *r_board;
117	struct cros_ec_command *msg;
118	int ret;
119	int count = 0;
120	struct cros_ec_dev *ec = to_cros_ec_dev(dev);
 
121
122	msg = kmalloc(sizeof(*msg) + EC_HOST_PARAM_SIZE, GFP_KERNEL);
123	if (!msg)
124		return -ENOMEM;
125
126	/* Get versions. RW may change. */
127	msg->version = 0;
128	msg->command = EC_CMD_GET_VERSION + ec->cmd_offset;
129	msg->insize = sizeof(*r_ver);
130	msg->outsize = 0;
131	ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg);
132	if (ret < 0) {
133		count = ret;
134		goto exit;
135	}
 
 
 
 
 
 
136	r_ver = (struct ec_response_get_version *)msg->data;
137	/* Strings should be null-terminated, but let's be sure. */
138	r_ver->version_string_ro[sizeof(r_ver->version_string_ro) - 1] = '\0';
139	r_ver->version_string_rw[sizeof(r_ver->version_string_rw) - 1] = '\0';
140	count += scnprintf(buf + count, PAGE_SIZE - count,
141			   "RO version:    %s\n", r_ver->version_string_ro);
142	count += scnprintf(buf + count, PAGE_SIZE - count,
143			   "RW version:    %s\n", r_ver->version_string_rw);
144	count += scnprintf(buf + count, PAGE_SIZE - count,
145			   "Firmware copy: %s\n",
146			   (r_ver->current_image < ARRAY_SIZE(image_names) ?
147			    image_names[r_ver->current_image] : "?"));
148
149	/* Get build info. */
150	msg->command = EC_CMD_GET_BUILD_INFO + ec->cmd_offset;
151	msg->insize = EC_HOST_PARAM_SIZE;
152	ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg);
153	if (ret == -EPROTO) {
 
 
 
154		count += scnprintf(buf + count, PAGE_SIZE - count,
155				   "Build info:    EC error %d\n", msg->result);
156	} else if (ret < 0) {
157		count += scnprintf(buf + count, PAGE_SIZE - count,
158				   "Build info:    XFER ERROR %d\n", ret);
159	} else {
160		msg->data[EC_HOST_PARAM_SIZE - 1] = '\0';
161		count += scnprintf(buf + count, PAGE_SIZE - count,
162				   "Build info:    %s\n", msg->data);
163	}
164
165	/* Get chip info. */
166	msg->command = EC_CMD_GET_CHIP_INFO + ec->cmd_offset;
167	msg->insize = sizeof(*r_chip);
168	ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg);
169	if (ret == -EPROTO) {
 
 
 
170		count += scnprintf(buf + count, PAGE_SIZE - count,
171				   "Chip info:     EC error %d\n", msg->result);
172	} else if (ret < 0) {
173		count += scnprintf(buf + count, PAGE_SIZE - count,
174				   "Chip info:     XFER ERROR %d\n", ret);
175	} else {
176		r_chip = (struct ec_response_get_chip_info *)msg->data;
177
178		r_chip->vendor[sizeof(r_chip->vendor) - 1] = '\0';
179		r_chip->name[sizeof(r_chip->name) - 1] = '\0';
180		r_chip->revision[sizeof(r_chip->revision) - 1] = '\0';
181		count += scnprintf(buf + count, PAGE_SIZE - count,
182				   "Chip vendor:   %s\n", r_chip->vendor);
183		count += scnprintf(buf + count, PAGE_SIZE - count,
184				   "Chip name:     %s\n", r_chip->name);
185		count += scnprintf(buf + count, PAGE_SIZE - count,
186				   "Chip revision: %s\n", r_chip->revision);
187	}
188
189	/* Get board version */
190	msg->command = EC_CMD_GET_BOARD_VERSION + ec->cmd_offset;
191	msg->insize = sizeof(*r_board);
192	ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg);
193	if (ret == -EPROTO) {
 
 
 
194		count += scnprintf(buf + count, PAGE_SIZE - count,
195				   "Board version: EC error %d\n", msg->result);
196	} else if (ret < 0) {
197		count += scnprintf(buf + count, PAGE_SIZE - count,
198				   "Board version: XFER ERROR %d\n", ret);
199	} else {
200		r_board = (struct ec_response_board_version *)msg->data;
201
202		count += scnprintf(buf + count, PAGE_SIZE - count,
203				   "Board version: %d\n",
204				   r_board->board_version);
205	}
206
207exit:
208	kfree(msg);
209	return count;
210}
211
212static ssize_t flashinfo_show(struct device *dev,
213			      struct device_attribute *attr, char *buf)
214{
215	struct ec_response_flash_info *resp;
216	struct cros_ec_command *msg;
217	int ret;
218	struct cros_ec_dev *ec = to_cros_ec_dev(dev);
 
219
220	msg = kmalloc(sizeof(*msg) + sizeof(*resp), GFP_KERNEL);
221	if (!msg)
222		return -ENOMEM;
223
224	/* The flash info shouldn't ever change, but ask each time anyway. */
225	msg->version = 0;
226	msg->command = EC_CMD_FLASH_INFO + ec->cmd_offset;
227	msg->insize = sizeof(*resp);
228	msg->outsize = 0;
229	ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg);
230	if (ret < 0)
231		goto exit;
 
 
 
 
 
232
233	resp = (struct ec_response_flash_info *)msg->data;
234
235	ret = scnprintf(buf, PAGE_SIZE,
236			"FlashSize %d\nWriteSize %d\n"
237			"EraseSize %d\nProtectSize %d\n",
238			resp->flash_size, resp->write_block_size,
239			resp->erase_block_size, resp->protect_block_size);
240exit:
241	kfree(msg);
242	return ret;
243}
244
245/* Keyboard wake angle control */
246static ssize_t kb_wake_angle_show(struct device *dev,
247				  struct device_attribute *attr, char *buf)
248{
249	struct cros_ec_dev *ec = to_cros_ec_dev(dev);
250	struct ec_response_motion_sense *resp;
251	struct ec_params_motion_sense *param;
252	struct cros_ec_command *msg;
253	int ret;
254
255	msg = kmalloc(sizeof(*msg) + EC_HOST_PARAM_SIZE, GFP_KERNEL);
256	if (!msg)
257		return -ENOMEM;
258
259	param = (struct ec_params_motion_sense *)msg->data;
260	msg->command = EC_CMD_MOTION_SENSE_CMD + ec->cmd_offset;
261	msg->version = 2;
262	param->cmd = MOTIONSENSE_CMD_KB_WAKE_ANGLE;
263	param->kb_wake_angle.data = EC_MOTION_SENSE_NO_VALUE;
264	msg->outsize = sizeof(*param);
265	msg->insize = sizeof(*resp);
266
267	ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg);
268	if (ret < 0)
269		goto exit;
270
271	resp = (struct ec_response_motion_sense *)msg->data;
272	ret = scnprintf(buf, PAGE_SIZE, "%d\n", resp->kb_wake_angle.ret);
273exit:
274	kfree(msg);
275	return ret;
276}
277
278static ssize_t kb_wake_angle_store(struct device *dev,
279				   struct device_attribute *attr,
280				   const char *buf, size_t count)
281{
282	struct cros_ec_dev *ec = to_cros_ec_dev(dev);
283	struct ec_params_motion_sense *param;
284	struct cros_ec_command *msg;
285	u16 angle;
286	int ret;
287
288	ret = kstrtou16(buf, 0, &angle);
289	if (ret)
290		return ret;
291
292	msg = kmalloc(sizeof(*msg) + EC_HOST_PARAM_SIZE, GFP_KERNEL);
293	if (!msg)
294		return -ENOMEM;
295
296	param = (struct ec_params_motion_sense *)msg->data;
297	msg->command = EC_CMD_MOTION_SENSE_CMD + ec->cmd_offset;
298	msg->version = 2;
299	param->cmd = MOTIONSENSE_CMD_KB_WAKE_ANGLE;
300	param->kb_wake_angle.data = angle;
301	msg->outsize = sizeof(*param);
302	msg->insize = sizeof(struct ec_response_motion_sense);
303
304	ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg);
305	kfree(msg);
306	if (ret < 0)
307		return ret;
308	return count;
309}
310
311/* Module initialization */
312
313static DEVICE_ATTR_RW(reboot);
314static DEVICE_ATTR_RO(version);
315static DEVICE_ATTR_RO(flashinfo);
316static DEVICE_ATTR_RW(kb_wake_angle);
317
318static struct attribute *__ec_attrs[] = {
319	&dev_attr_kb_wake_angle.attr,
320	&dev_attr_reboot.attr,
321	&dev_attr_version.attr,
322	&dev_attr_flashinfo.attr,
323	NULL,
324};
325
326static umode_t cros_ec_ctrl_visible(struct kobject *kobj,
327				    struct attribute *a, int n)
328{
329	struct device *dev = container_of(kobj, struct device, kobj);
330	struct cros_ec_dev *ec = to_cros_ec_dev(dev);
331
332	if (a == &dev_attr_kb_wake_angle.attr && !ec->has_kb_wake_angle)
333		return 0;
334
335	return a->mode;
336}
337
338static struct attribute_group cros_ec_attr_group = {
339	.attrs = __ec_attrs,
340	.is_visible = cros_ec_ctrl_visible,
341};
342
343static int cros_ec_sysfs_probe(struct platform_device *pd)
344{
345	struct cros_ec_dev *ec_dev = dev_get_drvdata(pd->dev.parent);
346	struct device *dev = &pd->dev;
347	int ret;
348
349	ret = sysfs_create_group(&ec_dev->class_dev.kobj, &cros_ec_attr_group);
350	if (ret < 0)
351		dev_err(dev, "failed to create attributes. err=%d\n", ret);
352
353	return ret;
354}
355
356static int cros_ec_sysfs_remove(struct platform_device *pd)
357{
358	struct cros_ec_dev *ec_dev = dev_get_drvdata(pd->dev.parent);
359
360	sysfs_remove_group(&ec_dev->class_dev.kobj, &cros_ec_attr_group);
361
362	return 0;
363}
364
365static struct platform_driver cros_ec_sysfs_driver = {
366	.driver = {
367		.name = DRV_NAME,
368	},
369	.probe = cros_ec_sysfs_probe,
370	.remove = cros_ec_sysfs_remove,
371};
372
373module_platform_driver(cros_ec_sysfs_driver);
374
375MODULE_LICENSE("GPL");
376MODULE_DESCRIPTION("Expose the ChromeOS EC through sysfs");
377MODULE_ALIAS("platform:" DRV_NAME);