]>
git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - drivers/mfd/cros_ec_dev.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * cros_ec_dev - expose the Chrome OS Embedded Controller to userspace
5 * Copyright (C) 2014 Google, Inc.
8 #ifndef _CROS_EC_DEV_H_
9 #define _CROS_EC_DEV_H_
11 #include <linux/ioctl.h>
12 #include <linux/types.h>
13 #include <linux/mfd/cros_ec.h>
15 #define CROS_EC_DEV_VERSION "1.0.0"
18 * struct cros_ec_readmem - Struct used to read mapped memory.
19 * @offset: Within EC_LPC_ADDR_MEMMAP region.
20 * @bytes: Number of bytes to read. Zero means "read a string" (including '\0')
21 * At most only EC_MEMMAP_SIZE bytes can be read.
22 * @buffer: Where to store the result. The ioctl returns the number of bytes
23 * read or negative on error.
25 struct cros_ec_readmem
{
28 uint8_t buffer
[EC_MEMMAP_SIZE
];
31 #define CROS_EC_DEV_IOC 0xEC
32 #define CROS_EC_DEV_IOCXCMD _IOWR(CROS_EC_DEV_IOC, 0, struct cros_ec_command)
33 #define CROS_EC_DEV_IOCRDMEM _IOWR(CROS_EC_DEV_IOC, 1, struct cros_ec_readmem)
35 #endif /* _CROS_EC_DEV_H_ */