bna: remove oper_state_cbfn from struct bna_rxf
[linux/fpc-iii.git] / drivers / platform / chrome / cros_ec_lpc.c
blob8f9ac4d7bbd0b1afb605458e412b2fca1820db79
1 /*
2 * cros_ec_lpc - LPC access to the Chrome OS Embedded Controller
4 * Copyright (C) 2012-2015 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 * This driver uses the Chrome OS EC byte-level message-based protocol for
16 * communicating the keyboard state (which keys are pressed) from a keyboard EC
17 * to the AP over some bus (such as i2c, lpc, spi). The EC does debouncing,
18 * but everything else (including deghosting) is done here. The main
19 * motivation for this is to keep the EC firmware as simple as possible, since
20 * it cannot be easily upgraded and EC flash/IRAM space is relatively
21 * expensive.
24 #include <linux/dmi.h>
25 #include <linux/delay.h>
26 #include <linux/io.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>
33 #define DRV_NAME "cros_ec_lpc"
35 static int ec_response_timed_out(void)
37 unsigned long one_second = jiffies + HZ;
39 usleep_range(200, 300);
40 do {
41 if (!(inb(EC_LPC_ADDR_HOST_CMD) & EC_LPC_STATUS_BUSY_MASK))
42 return 0;
43 usleep_range(100, 200);
44 } while (time_before(jiffies, one_second));
46 return 1;
49 static int cros_ec_cmd_xfer_lpc(struct cros_ec_device *ec,
50 struct cros_ec_command *msg)
52 struct ec_lpc_host_args args;
53 int csum;
54 int i;
55 int ret = 0;
57 if (msg->outsize > EC_PROTO2_MAX_PARAM_SIZE ||
58 msg->insize > EC_PROTO2_MAX_PARAM_SIZE) {
59 dev_err(ec->dev,
60 "invalid buffer sizes (out %d, in %d)\n",
61 msg->outsize, msg->insize);
62 return -EINVAL;
65 /* Now actually send the command to the EC and get the result */
66 args.flags = EC_HOST_ARGS_FLAG_FROM_HOST;
67 args.command_version = msg->version;
68 args.data_size = msg->outsize;
70 /* Initialize checksum */
71 csum = msg->command + args.flags +
72 args.command_version + args.data_size;
74 /* Copy data and update checksum */
75 for (i = 0; i < msg->outsize; i++) {
76 outb(msg->outdata[i], EC_LPC_ADDR_HOST_PARAM + i);
77 csum += msg->outdata[i];
80 /* Finalize checksum and write args */
81 args.checksum = csum & 0xFF;
82 outb(args.flags, EC_LPC_ADDR_HOST_ARGS);
83 outb(args.command_version, EC_LPC_ADDR_HOST_ARGS + 1);
84 outb(args.data_size, EC_LPC_ADDR_HOST_ARGS + 2);
85 outb(args.checksum, EC_LPC_ADDR_HOST_ARGS + 3);
87 /* Here we go */
88 outb(msg->command, EC_LPC_ADDR_HOST_CMD);
90 if (ec_response_timed_out()) {
91 dev_warn(ec->dev, "EC responsed timed out\n");
92 ret = -EIO;
93 goto done;
96 /* Check result */
97 msg->result = inb(EC_LPC_ADDR_HOST_DATA);
99 switch (msg->result) {
100 case EC_RES_SUCCESS:
101 break;
102 case EC_RES_IN_PROGRESS:
103 ret = -EAGAIN;
104 dev_dbg(ec->dev, "command 0x%02x in progress\n",
105 msg->command);
106 goto done;
107 default:
108 dev_dbg(ec->dev, "command 0x%02x returned %d\n",
109 msg->command, msg->result);
112 /* Read back args */
113 args.flags = inb(EC_LPC_ADDR_HOST_ARGS);
114 args.command_version = inb(EC_LPC_ADDR_HOST_ARGS + 1);
115 args.data_size = inb(EC_LPC_ADDR_HOST_ARGS + 2);
116 args.checksum = inb(EC_LPC_ADDR_HOST_ARGS + 3);
118 if (args.data_size > msg->insize) {
119 dev_err(ec->dev,
120 "packet too long (%d bytes, expected %d)",
121 args.data_size, msg->insize);
122 ret = -ENOSPC;
123 goto done;
126 /* Start calculating response checksum */
127 csum = msg->command + args.flags +
128 args.command_version + args.data_size;
130 /* Read response and update checksum */
131 for (i = 0; i < args.data_size; i++) {
132 msg->indata[i] = inb(EC_LPC_ADDR_HOST_PARAM + i);
133 csum += msg->indata[i];
136 /* Verify checksum */
137 if (args.checksum != (csum & 0xFF)) {
138 dev_err(ec->dev,
139 "bad packet checksum, expected %02x, got %02x\n",
140 args.checksum, csum & 0xFF);
141 ret = -EBADMSG;
142 goto done;
145 /* Return actual amount of data received */
146 ret = args.data_size;
147 done:
148 return ret;
151 /* Returns num bytes read, or negative on error. Doesn't need locking. */
152 static int cros_ec_lpc_readmem(struct cros_ec_device *ec, unsigned int offset,
153 unsigned int bytes, void *dest)
155 int i = offset;
156 char *s = dest;
157 int cnt = 0;
159 if (offset >= EC_MEMMAP_SIZE - bytes)
160 return -EINVAL;
162 /* fixed length */
163 if (bytes) {
164 for (; cnt < bytes; i++, s++, cnt++)
165 *s = inb(EC_LPC_ADDR_MEMMAP + i);
166 return cnt;
169 /* string */
170 for (; i < EC_MEMMAP_SIZE; i++, s++) {
171 *s = inb(EC_LPC_ADDR_MEMMAP + i);
172 cnt++;
173 if (!*s)
174 break;
177 return cnt;
180 static int cros_ec_lpc_probe(struct platform_device *pdev)
182 struct device *dev = &pdev->dev;
183 struct cros_ec_device *ec_dev;
184 int ret;
186 if (!devm_request_region(dev, EC_LPC_ADDR_MEMMAP, EC_MEMMAP_SIZE,
187 dev_name(dev))) {
188 dev_err(dev, "couldn't reserve memmap region\n");
189 return -EBUSY;
192 if ((inb(EC_LPC_ADDR_MEMMAP + EC_MEMMAP_ID) != 'E') ||
193 (inb(EC_LPC_ADDR_MEMMAP + EC_MEMMAP_ID + 1) != 'C')) {
194 dev_err(dev, "EC ID not detected\n");
195 return -ENODEV;
198 if (!devm_request_region(dev, EC_HOST_CMD_REGION0,
199 EC_HOST_CMD_REGION_SIZE, dev_name(dev))) {
200 dev_err(dev, "couldn't reserve region0\n");
201 return -EBUSY;
203 if (!devm_request_region(dev, EC_HOST_CMD_REGION1,
204 EC_HOST_CMD_REGION_SIZE, dev_name(dev))) {
205 dev_err(dev, "couldn't reserve region1\n");
206 return -EBUSY;
209 ec_dev = devm_kzalloc(dev, sizeof(*ec_dev), GFP_KERNEL);
210 if (!ec_dev)
211 return -ENOMEM;
213 platform_set_drvdata(pdev, ec_dev);
214 ec_dev->dev = dev;
215 ec_dev->ec_name = pdev->name;
216 ec_dev->phys_name = dev_name(dev);
217 ec_dev->parent = dev;
218 ec_dev->cmd_xfer = cros_ec_cmd_xfer_lpc;
219 ec_dev->cmd_readmem = cros_ec_lpc_readmem;
221 ret = cros_ec_register(ec_dev);
222 if (ret) {
223 dev_err(dev, "couldn't register ec_dev (%d)\n", ret);
224 return ret;
227 return 0;
230 static int cros_ec_lpc_remove(struct platform_device *pdev)
232 struct cros_ec_device *ec_dev;
234 ec_dev = platform_get_drvdata(pdev);
235 cros_ec_remove(ec_dev);
237 return 0;
240 static struct dmi_system_id cros_ec_lpc_dmi_table[] __initdata = {
243 * Today all Chromebooks/boxes ship with Google_* as version and
244 * coreboot as bios vendor. No other systems with this
245 * combination are known to date.
247 .matches = {
248 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
249 DMI_MATCH(DMI_BIOS_VERSION, "Google_"),
253 /* x86-link, the Chromebook Pixel. */
254 .matches = {
255 DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
256 DMI_MATCH(DMI_PRODUCT_NAME, "Link"),
260 /* x86-peppy, the Acer C720 Chromebook. */
261 .matches = {
262 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
263 DMI_MATCH(DMI_PRODUCT_NAME, "Peppy"),
266 { /* sentinel */ }
268 MODULE_DEVICE_TABLE(dmi, cros_ec_lpc_dmi_table);
270 static struct platform_driver cros_ec_lpc_driver = {
271 .driver = {
272 .name = DRV_NAME,
274 .probe = cros_ec_lpc_probe,
275 .remove = cros_ec_lpc_remove,
278 static struct platform_device cros_ec_lpc_device = {
279 .name = DRV_NAME
282 static int __init cros_ec_lpc_init(void)
284 int ret;
286 if (!dmi_check_system(cros_ec_lpc_dmi_table)) {
287 pr_err(DRV_NAME ": unsupported system.\n");
288 return -ENODEV;
291 /* Register the driver */
292 ret = platform_driver_register(&cros_ec_lpc_driver);
293 if (ret) {
294 pr_err(DRV_NAME ": can't register driver: %d\n", ret);
295 return ret;
298 /* Register the device, and it'll get hooked up automatically */
299 ret = platform_device_register(&cros_ec_lpc_device);
300 if (ret) {
301 pr_err(DRV_NAME ": can't register device: %d\n", ret);
302 platform_driver_unregister(&cros_ec_lpc_driver);
303 return ret;
306 return 0;
309 static void __exit cros_ec_lpc_exit(void)
311 platform_device_unregister(&cros_ec_lpc_device);
312 platform_driver_unregister(&cros_ec_lpc_driver);
315 module_init(cros_ec_lpc_init);
316 module_exit(cros_ec_lpc_exit);
318 MODULE_LICENSE("GPL");
319 MODULE_DESCRIPTION("ChromeOS EC LPC driver");