Linux Audio

Check our new training course

Yocto distribution development and maintenance

Need a Yocto distribution for your embedded project?
Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2// LPC interface for ChromeOS Embedded Controller
  3//
  4// Copyright (C) 2012-2015 Google, Inc
  5//
  6// This driver uses the ChromeOS EC byte-level message-based protocol for
  7// communicating the keyboard state (which keys are pressed) from a keyboard EC
  8// to the AP over some bus (such as i2c, lpc, spi).  The EC does debouncing,
  9// but everything else (including deghosting) is done here.  The main
 10// motivation for this is to keep the EC firmware as simple as possible, since
 11// it cannot be easily upgraded and EC flash/IRAM space is relatively
 12// expensive.
 13
 14#include <linux/acpi.h>
 15#include <linux/dmi.h>
 16#include <linux/delay.h>
 17#include <linux/io.h>
 18#include <linux/interrupt.h>
 19#include <linux/kobject.h>
 20#include <linux/module.h>
 21#include <linux/platform_data/cros_ec_commands.h>
 22#include <linux/platform_data/cros_ec_proto.h>
 23#include <linux/platform_device.h>
 24#include <linux/printk.h>
 25#include <linux/reboot.h>
 26#include <linux/suspend.h>
 27
 28#include "cros_ec.h"
 29#include "cros_ec_lpc_mec.h"
 30
 31#define DRV_NAME "cros_ec_lpcs"
 32#define ACPI_DRV_NAME "GOOG0004"
 33
 34/* True if ACPI device is present */
 35static bool cros_ec_lpc_acpi_device_found;
 36
 37/**
 38 * struct lpc_driver_ops - LPC driver operations
 39 * @read: Copy length bytes from EC address offset into buffer dest. Returns
 40 *        the 8-bit checksum of all bytes read.
 41 * @write: Copy length bytes from buffer msg into EC address offset. Returns
 42 *         the 8-bit checksum of all bytes written.
 43 */
 44struct lpc_driver_ops {
 45	u8 (*read)(unsigned int offset, unsigned int length, u8 *dest);
 46	u8 (*write)(unsigned int offset, unsigned int length, const u8 *msg);
 47};
 48
 49static struct lpc_driver_ops cros_ec_lpc_ops = { };
 50
 51/*
 52 * A generic instance of the read function of struct lpc_driver_ops, used for
 53 * the LPC EC.
 54 */
 55static u8 cros_ec_lpc_read_bytes(unsigned int offset, unsigned int length,
 56				 u8 *dest)
 57{
 58	int sum = 0;
 59	int i;
 60
 61	for (i = 0; i < length; ++i) {
 62		dest[i] = inb(offset + i);
 63		sum += dest[i];
 64	}
 65
 66	/* Return checksum of all bytes read */
 67	return sum;
 68}
 69
 70/*
 71 * A generic instance of the write function of struct lpc_driver_ops, used for
 72 * the LPC EC.
 73 */
 74static u8 cros_ec_lpc_write_bytes(unsigned int offset, unsigned int length,
 75				  const u8 *msg)
 76{
 77	int sum = 0;
 78	int i;
 79
 80	for (i = 0; i < length; ++i) {
 81		outb(msg[i], offset + i);
 82		sum += msg[i];
 83	}
 84
 85	/* Return checksum of all bytes written */
 86	return sum;
 87}
 88
 89/*
 90 * An instance of the read function of struct lpc_driver_ops, used for the
 91 * MEC variant of LPC EC.
 92 */
 93static u8 cros_ec_lpc_mec_read_bytes(unsigned int offset, unsigned int length,
 94				     u8 *dest)
 95{
 96	int in_range = cros_ec_lpc_mec_in_range(offset, length);
 97
 98	if (in_range < 0)
 99		return 0;
100
101	return in_range ?
102		cros_ec_lpc_io_bytes_mec(MEC_IO_READ,
103					 offset - EC_HOST_CMD_REGION0,
104					 length, dest) :
105		cros_ec_lpc_read_bytes(offset, length, dest);
106}
107
108/*
109 * An instance of the write function of struct lpc_driver_ops, used for the
110 * MEC variant of LPC EC.
111 */
112static u8 cros_ec_lpc_mec_write_bytes(unsigned int offset, unsigned int length,
113				      const u8 *msg)
114{
115	int in_range = cros_ec_lpc_mec_in_range(offset, length);
116
117	if (in_range < 0)
118		return 0;
119
120	return in_range ?
121		cros_ec_lpc_io_bytes_mec(MEC_IO_WRITE,
122					 offset - EC_HOST_CMD_REGION0,
123					 length, (u8 *)msg) :
124		cros_ec_lpc_write_bytes(offset, length, msg);
125}
126
127static int ec_response_timed_out(void)
128{
129	unsigned long one_second = jiffies + HZ;
130	u8 data;
131
132	usleep_range(200, 300);
133	do {
134		if (!(cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_CMD, 1, &data) &
135		    EC_LPC_STATUS_BUSY_MASK))
136			return 0;
137		usleep_range(100, 200);
138	} while (time_before(jiffies, one_second));
139
140	return 1;
141}
142
143static int cros_ec_pkt_xfer_lpc(struct cros_ec_device *ec,
144				struct cros_ec_command *msg)
145{
146	struct ec_host_response response;
147	u8 sum;
148	int ret = 0;
149	u8 *dout;
150
151	ret = cros_ec_prepare_tx(ec, msg);
152	if (ret < 0)
153		goto done;
154
155	/* Write buffer */
156	cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_PACKET, ret, ec->dout);
157
158	/* Here we go */
159	sum = EC_COMMAND_PROTOCOL_3;
160	cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_CMD, 1, &sum);
161
162	if (ec_response_timed_out()) {
163		dev_warn(ec->dev, "EC response timed out\n");
164		ret = -EIO;
165		goto done;
166	}
167
168	/* Check result */
169	msg->result = cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_DATA, 1, &sum);
170	ret = cros_ec_check_result(ec, msg);
171	if (ret)
172		goto done;
173
174	/* Read back response */
175	dout = (u8 *)&response;
176	sum = cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_PACKET, sizeof(response),
177				   dout);
178
179	msg->result = response.result;
180
181	if (response.data_len > msg->insize) {
182		dev_err(ec->dev,
183			"packet too long (%d bytes, expected %d)",
184			response.data_len, msg->insize);
185		ret = -EMSGSIZE;
186		goto done;
187	}
188
189	/* Read response and process checksum */
190	sum += cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_PACKET +
191				    sizeof(response), response.data_len,
192				    msg->data);
193
194	if (sum) {
195		dev_err(ec->dev,
196			"bad packet checksum %02x\n",
197			response.checksum);
198		ret = -EBADMSG;
199		goto done;
200	}
201
202	/* Return actual amount of data received */
203	ret = response.data_len;
204done:
205	return ret;
206}
207
208static int cros_ec_cmd_xfer_lpc(struct cros_ec_device *ec,
209				struct cros_ec_command *msg)
210{
211	struct ec_lpc_host_args args;
212	u8 sum;
213	int ret = 0;
214
215	if (msg->outsize > EC_PROTO2_MAX_PARAM_SIZE ||
216	    msg->insize > EC_PROTO2_MAX_PARAM_SIZE) {
217		dev_err(ec->dev,
218			"invalid buffer sizes (out %d, in %d)\n",
219			msg->outsize, msg->insize);
220		return -EINVAL;
221	}
222
223	/* Now actually send the command to the EC and get the result */
224	args.flags = EC_HOST_ARGS_FLAG_FROM_HOST;
225	args.command_version = msg->version;
226	args.data_size = msg->outsize;
227
228	/* Initialize checksum */
229	sum = msg->command + args.flags + args.command_version + args.data_size;
230
231	/* Copy data and update checksum */
232	sum += cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_PARAM, msg->outsize,
233				     msg->data);
234
235	/* Finalize checksum and write args */
236	args.checksum = sum;
237	cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_ARGS, sizeof(args),
238			      (u8 *)&args);
239
240	/* Here we go */
241	sum = msg->command;
242	cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_CMD, 1, &sum);
243
244	if (ec_response_timed_out()) {
245		dev_warn(ec->dev, "EC response timed out\n");
246		ret = -EIO;
247		goto done;
248	}
249
250	/* Check result */
251	msg->result = cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_DATA, 1, &sum);
252	ret = cros_ec_check_result(ec, msg);
253	if (ret)
254		goto done;
255
256	/* Read back args */
257	cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_ARGS, sizeof(args), (u8 *)&args);
258
259	if (args.data_size > msg->insize) {
260		dev_err(ec->dev,
261			"packet too long (%d bytes, expected %d)",
262			args.data_size, msg->insize);
263		ret = -ENOSPC;
264		goto done;
265	}
266
267	/* Start calculating response checksum */
268	sum = msg->command + args.flags + args.command_version + args.data_size;
269
270	/* Read response and update checksum */
271	sum += cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_PARAM, args.data_size,
272				    msg->data);
273
274	/* Verify checksum */
275	if (args.checksum != sum) {
276		dev_err(ec->dev,
277			"bad packet checksum, expected %02x, got %02x\n",
278			args.checksum, sum);
279		ret = -EBADMSG;
280		goto done;
281	}
282
283	/* Return actual amount of data received */
284	ret = args.data_size;
285done:
286	return ret;
287}
288
289/* Returns num bytes read, or negative on error. Doesn't need locking. */
290static int cros_ec_lpc_readmem(struct cros_ec_device *ec, unsigned int offset,
291			       unsigned int bytes, void *dest)
292{
293	int i = offset;
294	char *s = dest;
295	int cnt = 0;
296
297	if (offset >= EC_MEMMAP_SIZE - bytes)
298		return -EINVAL;
299
300	/* fixed length */
301	if (bytes) {
302		cros_ec_lpc_ops.read(EC_LPC_ADDR_MEMMAP + offset, bytes, s);
303		return bytes;
304	}
305
306	/* string */
307	for (; i < EC_MEMMAP_SIZE; i++, s++) {
308		cros_ec_lpc_ops.read(EC_LPC_ADDR_MEMMAP + i, 1, s);
309		cnt++;
310		if (!*s)
311			break;
312	}
313
314	return cnt;
315}
316
317static void cros_ec_lpc_acpi_notify(acpi_handle device, u32 value, void *data)
318{
319	static const char *env[] = { "ERROR=PANIC", NULL };
320	struct cros_ec_device *ec_dev = data;
321	bool ec_has_more_events;
322	int ret;
323
324	ec_dev->last_event_time = cros_ec_get_time_ns();
325
326	if (value == ACPI_NOTIFY_CROS_EC_PANIC) {
327		dev_emerg(ec_dev->dev, "CrOS EC Panic Reported. Shutdown is imminent!");
328		blocking_notifier_call_chain(&ec_dev->panic_notifier, 0, ec_dev);
329		kobject_uevent_env(&ec_dev->dev->kobj, KOBJ_CHANGE, (char **)env);
330		/* Begin orderly shutdown. EC will force reset after a short period. */
331		hw_protection_shutdown("CrOS EC Panic", -1);
332		/* Do not query for other events after a panic is reported */
333		return;
334	}
335
336	if (ec_dev->mkbp_event_supported)
337		do {
338			ret = cros_ec_get_next_event(ec_dev, NULL,
339						     &ec_has_more_events);
340			if (ret > 0)
341				blocking_notifier_call_chain(
342						&ec_dev->event_notifier, 0,
343						ec_dev);
344		} while (ec_has_more_events);
345
346	if (value == ACPI_NOTIFY_DEVICE_WAKE)
347		pm_system_wakeup();
348}
349
350static int cros_ec_lpc_probe(struct platform_device *pdev)
351{
352	struct device *dev = &pdev->dev;
353	struct acpi_device *adev;
354	acpi_status status;
355	struct cros_ec_device *ec_dev;
356	u8 buf[2] = {};
357	int irq, ret;
358
359	/*
360	 * The Framework Laptop (and possibly other non-ChromeOS devices)
361	 * only exposes the eight I/O ports that are required for the Microchip EC.
362	 * Requesting a larger reservation will fail.
363	 */
364	if (!devm_request_region(dev, EC_HOST_CMD_REGION0,
365				 EC_HOST_CMD_MEC_REGION_SIZE, dev_name(dev))) {
366		dev_err(dev, "couldn't reserve MEC region\n");
367		return -EBUSY;
368	}
369
370	cros_ec_lpc_mec_init(EC_HOST_CMD_REGION0,
371			     EC_LPC_ADDR_MEMMAP + EC_MEMMAP_SIZE);
372
373	/*
374	 * Read the mapped ID twice, the first one is assuming the
375	 * EC is a Microchip Embedded Controller (MEC) variant, if the
376	 * protocol fails, fallback to the non MEC variant and try to
377	 * read again the ID.
378	 */
379	cros_ec_lpc_ops.read = cros_ec_lpc_mec_read_bytes;
380	cros_ec_lpc_ops.write = cros_ec_lpc_mec_write_bytes;
381	cros_ec_lpc_ops.read(EC_LPC_ADDR_MEMMAP + EC_MEMMAP_ID, 2, buf);
382	if (buf[0] != 'E' || buf[1] != 'C') {
383		if (!devm_request_region(dev, EC_LPC_ADDR_MEMMAP, EC_MEMMAP_SIZE,
384					 dev_name(dev))) {
385			dev_err(dev, "couldn't reserve memmap region\n");
386			return -EBUSY;
387		}
388
389		/* Re-assign read/write operations for the non MEC variant */
390		cros_ec_lpc_ops.read = cros_ec_lpc_read_bytes;
391		cros_ec_lpc_ops.write = cros_ec_lpc_write_bytes;
392		cros_ec_lpc_ops.read(EC_LPC_ADDR_MEMMAP + EC_MEMMAP_ID, 2,
393				     buf);
394		if (buf[0] != 'E' || buf[1] != 'C') {
395			dev_err(dev, "EC ID not detected\n");
396			return -ENODEV;
397		}
 
398
399		/* Reserve the remaining I/O ports required by the non-MEC protocol. */
400		if (!devm_request_region(dev, EC_HOST_CMD_REGION0 + EC_HOST_CMD_MEC_REGION_SIZE,
401					 EC_HOST_CMD_REGION_SIZE - EC_HOST_CMD_MEC_REGION_SIZE,
402					 dev_name(dev))) {
403			dev_err(dev, "couldn't reserve remainder of region0\n");
404			return -EBUSY;
405		}
406		if (!devm_request_region(dev, EC_HOST_CMD_REGION1,
407					 EC_HOST_CMD_REGION_SIZE, dev_name(dev))) {
408			dev_err(dev, "couldn't reserve region1\n");
409			return -EBUSY;
410		}
411	}
412
413	ec_dev = devm_kzalloc(dev, sizeof(*ec_dev), GFP_KERNEL);
414	if (!ec_dev)
415		return -ENOMEM;
416
417	platform_set_drvdata(pdev, ec_dev);
418	ec_dev->dev = dev;
419	ec_dev->phys_name = dev_name(dev);
420	ec_dev->cmd_xfer = cros_ec_cmd_xfer_lpc;
421	ec_dev->pkt_xfer = cros_ec_pkt_xfer_lpc;
422	ec_dev->cmd_readmem = cros_ec_lpc_readmem;
423	ec_dev->din_size = sizeof(struct ec_host_response) +
424			   sizeof(struct ec_response_get_protocol_info);
425	ec_dev->dout_size = sizeof(struct ec_host_request);
426
427	/*
428	 * Some boards do not have an IRQ allotted for cros_ec_lpc,
429	 * which makes ENXIO an expected (and safe) scenario.
430	 */
431	irq = platform_get_irq_optional(pdev, 0);
432	if (irq > 0)
433		ec_dev->irq = irq;
434	else if (irq != -ENXIO) {
435		dev_err(dev, "couldn't retrieve IRQ number (%d)\n", irq);
436		return irq;
437	}
438
439	ret = cros_ec_register(ec_dev);
440	if (ret) {
441		dev_err(dev, "couldn't register ec_dev (%d)\n", ret);
442		return ret;
443	}
444
445	/*
446	 * Connect a notify handler to process MKBP messages if we have a
447	 * companion ACPI device.
448	 */
449	adev = ACPI_COMPANION(dev);
450	if (adev) {
451		status = acpi_install_notify_handler(adev->handle,
452						     ACPI_ALL_NOTIFY,
453						     cros_ec_lpc_acpi_notify,
454						     ec_dev);
455		if (ACPI_FAILURE(status))
456			dev_warn(dev, "Failed to register notifier %08x\n",
457				 status);
458	}
459
460	return 0;
461}
462
463static void cros_ec_lpc_remove(struct platform_device *pdev)
464{
465	struct cros_ec_device *ec_dev = platform_get_drvdata(pdev);
466	struct acpi_device *adev;
467
468	adev = ACPI_COMPANION(&pdev->dev);
469	if (adev)
470		acpi_remove_notify_handler(adev->handle, ACPI_ALL_NOTIFY,
471					   cros_ec_lpc_acpi_notify);
472
473	cros_ec_unregister(ec_dev);
474}
475
476static const struct acpi_device_id cros_ec_lpc_acpi_device_ids[] = {
477	{ ACPI_DRV_NAME, 0 },
478	{ }
479};
480MODULE_DEVICE_TABLE(acpi, cros_ec_lpc_acpi_device_ids);
481
482static const struct dmi_system_id cros_ec_lpc_dmi_table[] __initconst = {
483	{
484		/*
485		 * Today all Chromebooks/boxes ship with Google_* as version and
486		 * coreboot as bios vendor. No other systems with this
487		 * combination are known to date.
488		 */
489		.matches = {
490			DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
491			DMI_MATCH(DMI_BIOS_VERSION, "Google_"),
492		},
493	},
494	{
495		/*
496		 * If the box is running custom coreboot firmware then the
497		 * DMI BIOS version string will not be matched by "Google_",
498		 * but the system vendor string will still be matched by
499		 * "GOOGLE".
500		 */
501		.matches = {
502			DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
503			DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
504		},
505	},
506	{
507		/* x86-link, the Chromebook Pixel. */
508		.matches = {
509			DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
510			DMI_MATCH(DMI_PRODUCT_NAME, "Link"),
511		},
512	},
513	{
514		/* x86-samus, the Chromebook Pixel 2. */
515		.matches = {
516			DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
517			DMI_MATCH(DMI_PRODUCT_NAME, "Samus"),
518		},
519	},
520	{
521		/* x86-peppy, the Acer C720 Chromebook. */
522		.matches = {
523			DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
524			DMI_MATCH(DMI_PRODUCT_NAME, "Peppy"),
525		},
526	},
527	{
528		/* x86-glimmer, the Lenovo Thinkpad Yoga 11e. */
529		.matches = {
530			DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
531			DMI_MATCH(DMI_PRODUCT_NAME, "Glimmer"),
532		},
533	},
534	/* A small number of non-Chromebook/box machines also use the ChromeOS EC */
535	{
536		/* the Framework Laptop */
537		.matches = {
538			DMI_MATCH(DMI_SYS_VENDOR, "Framework"),
539			DMI_MATCH(DMI_PRODUCT_NAME, "Laptop"),
540		},
541	},
542	{ /* sentinel */ }
543};
544MODULE_DEVICE_TABLE(dmi, cros_ec_lpc_dmi_table);
545
546#ifdef CONFIG_PM_SLEEP
547static int cros_ec_lpc_prepare(struct device *dev)
548{
549	struct cros_ec_device *ec_dev = dev_get_drvdata(dev);
550	return cros_ec_suspend_prepare(ec_dev);
551}
552
553static void cros_ec_lpc_complete(struct device *dev)
554{
555	struct cros_ec_device *ec_dev = dev_get_drvdata(dev);
556	cros_ec_resume_complete(ec_dev);
557}
558
559static int cros_ec_lpc_suspend_late(struct device *dev)
560{
561	struct cros_ec_device *ec_dev = dev_get_drvdata(dev);
562
563	return cros_ec_suspend_late(ec_dev);
564}
565
566static int cros_ec_lpc_resume_early(struct device *dev)
567{
568	struct cros_ec_device *ec_dev = dev_get_drvdata(dev);
569
570	return cros_ec_resume_early(ec_dev);
571}
572#endif
573
574static const struct dev_pm_ops cros_ec_lpc_pm_ops = {
575#ifdef CONFIG_PM_SLEEP
576	.prepare = cros_ec_lpc_prepare,
577	.complete = cros_ec_lpc_complete,
578#endif
579	SET_LATE_SYSTEM_SLEEP_PM_OPS(cros_ec_lpc_suspend_late, cros_ec_lpc_resume_early)
580};
581
582static struct platform_driver cros_ec_lpc_driver = {
583	.driver = {
584		.name = DRV_NAME,
585		.acpi_match_table = cros_ec_lpc_acpi_device_ids,
586		.pm = &cros_ec_lpc_pm_ops,
587		/*
588		 * ACPI child devices may probe before us, and they racily
589		 * check our drvdata pointer. Force synchronous probe until
590		 * those races are resolved.
591		 */
592		.probe_type = PROBE_FORCE_SYNCHRONOUS,
593	},
594	.probe = cros_ec_lpc_probe,
595	.remove_new = cros_ec_lpc_remove,
596};
597
598static struct platform_device cros_ec_lpc_device = {
599	.name = DRV_NAME
600};
601
602static acpi_status cros_ec_lpc_parse_device(acpi_handle handle, u32 level,
603					    void *context, void **retval)
604{
605	*(bool *)context = true;
606	return AE_CTRL_TERMINATE;
607}
608
609static int __init cros_ec_lpc_init(void)
610{
611	int ret;
612	acpi_status status;
613
614	status = acpi_get_devices(ACPI_DRV_NAME, cros_ec_lpc_parse_device,
615				  &cros_ec_lpc_acpi_device_found, NULL);
616	if (ACPI_FAILURE(status))
617		pr_warn(DRV_NAME ": Looking for %s failed\n", ACPI_DRV_NAME);
618
619	if (!cros_ec_lpc_acpi_device_found &&
620	    !dmi_check_system(cros_ec_lpc_dmi_table)) {
621		pr_err(DRV_NAME ": unsupported system.\n");
622		return -ENODEV;
623	}
624
 
 
 
625	/* Register the driver */
626	ret = platform_driver_register(&cros_ec_lpc_driver);
627	if (ret) {
628		pr_err(DRV_NAME ": can't register driver: %d\n", ret);
 
629		return ret;
630	}
631
632	if (!cros_ec_lpc_acpi_device_found) {
633		/* Register the device, and it'll get hooked up automatically */
634		ret = platform_device_register(&cros_ec_lpc_device);
635		if (ret) {
636			pr_err(DRV_NAME ": can't register device: %d\n", ret);
637			platform_driver_unregister(&cros_ec_lpc_driver);
 
638		}
639	}
640
641	return ret;
642}
643
644static void __exit cros_ec_lpc_exit(void)
645{
646	if (!cros_ec_lpc_acpi_device_found)
647		platform_device_unregister(&cros_ec_lpc_device);
648	platform_driver_unregister(&cros_ec_lpc_driver);
 
649}
650
651module_init(cros_ec_lpc_init);
652module_exit(cros_ec_lpc_exit);
653
654MODULE_LICENSE("GPL");
655MODULE_DESCRIPTION("ChromeOS EC LPC driver");
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2// LPC interface for ChromeOS Embedded Controller
  3//
  4// Copyright (C) 2012-2015 Google, Inc
  5//
  6// This driver uses the ChromeOS EC byte-level message-based protocol for
  7// communicating the keyboard state (which keys are pressed) from a keyboard EC
  8// to the AP over some bus (such as i2c, lpc, spi).  The EC does debouncing,
  9// but everything else (including deghosting) is done here.  The main
 10// motivation for this is to keep the EC firmware as simple as possible, since
 11// it cannot be easily upgraded and EC flash/IRAM space is relatively
 12// expensive.
 13
 14#include <linux/acpi.h>
 15#include <linux/dmi.h>
 16#include <linux/delay.h>
 17#include <linux/io.h>
 18#include <linux/interrupt.h>
 
 19#include <linux/module.h>
 20#include <linux/platform_data/cros_ec_commands.h>
 21#include <linux/platform_data/cros_ec_proto.h>
 22#include <linux/platform_device.h>
 23#include <linux/printk.h>
 
 24#include <linux/suspend.h>
 25
 
 26#include "cros_ec_lpc_mec.h"
 27
 28#define DRV_NAME "cros_ec_lpcs"
 29#define ACPI_DRV_NAME "GOOG0004"
 30
 31/* True if ACPI device is present */
 32static bool cros_ec_lpc_acpi_device_found;
 33
 34/**
 35 * struct lpc_driver_ops - LPC driver operations
 36 * @read: Copy length bytes from EC address offset into buffer dest. Returns
 37 *        the 8-bit checksum of all bytes read.
 38 * @write: Copy length bytes from buffer msg into EC address offset. Returns
 39 *         the 8-bit checksum of all bytes written.
 40 */
 41struct lpc_driver_ops {
 42	u8 (*read)(unsigned int offset, unsigned int length, u8 *dest);
 43	u8 (*write)(unsigned int offset, unsigned int length, const u8 *msg);
 44};
 45
 46static struct lpc_driver_ops cros_ec_lpc_ops = { };
 47
 48/*
 49 * A generic instance of the read function of struct lpc_driver_ops, used for
 50 * the LPC EC.
 51 */
 52static u8 cros_ec_lpc_read_bytes(unsigned int offset, unsigned int length,
 53				 u8 *dest)
 54{
 55	int sum = 0;
 56	int i;
 57
 58	for (i = 0; i < length; ++i) {
 59		dest[i] = inb(offset + i);
 60		sum += dest[i];
 61	}
 62
 63	/* Return checksum of all bytes read */
 64	return sum;
 65}
 66
 67/*
 68 * A generic instance of the write function of struct lpc_driver_ops, used for
 69 * the LPC EC.
 70 */
 71static u8 cros_ec_lpc_write_bytes(unsigned int offset, unsigned int length,
 72				  const u8 *msg)
 73{
 74	int sum = 0;
 75	int i;
 76
 77	for (i = 0; i < length; ++i) {
 78		outb(msg[i], offset + i);
 79		sum += msg[i];
 80	}
 81
 82	/* Return checksum of all bytes written */
 83	return sum;
 84}
 85
 86/*
 87 * An instance of the read function of struct lpc_driver_ops, used for the
 88 * MEC variant of LPC EC.
 89 */
 90static u8 cros_ec_lpc_mec_read_bytes(unsigned int offset, unsigned int length,
 91				     u8 *dest)
 92{
 93	int in_range = cros_ec_lpc_mec_in_range(offset, length);
 94
 95	if (in_range < 0)
 96		return 0;
 97
 98	return in_range ?
 99		cros_ec_lpc_io_bytes_mec(MEC_IO_READ,
100					 offset - EC_HOST_CMD_REGION0,
101					 length, dest) :
102		cros_ec_lpc_read_bytes(offset, length, dest);
103}
104
105/*
106 * An instance of the write function of struct lpc_driver_ops, used for the
107 * MEC variant of LPC EC.
108 */
109static u8 cros_ec_lpc_mec_write_bytes(unsigned int offset, unsigned int length,
110				      const u8 *msg)
111{
112	int in_range = cros_ec_lpc_mec_in_range(offset, length);
113
114	if (in_range < 0)
115		return 0;
116
117	return in_range ?
118		cros_ec_lpc_io_bytes_mec(MEC_IO_WRITE,
119					 offset - EC_HOST_CMD_REGION0,
120					 length, (u8 *)msg) :
121		cros_ec_lpc_write_bytes(offset, length, msg);
122}
123
124static int ec_response_timed_out(void)
125{
126	unsigned long one_second = jiffies + HZ;
127	u8 data;
128
129	usleep_range(200, 300);
130	do {
131		if (!(cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_CMD, 1, &data) &
132		    EC_LPC_STATUS_BUSY_MASK))
133			return 0;
134		usleep_range(100, 200);
135	} while (time_before(jiffies, one_second));
136
137	return 1;
138}
139
140static int cros_ec_pkt_xfer_lpc(struct cros_ec_device *ec,
141				struct cros_ec_command *msg)
142{
143	struct ec_host_response response;
144	u8 sum;
145	int ret = 0;
146	u8 *dout;
147
148	ret = cros_ec_prepare_tx(ec, msg);
 
 
149
150	/* Write buffer */
151	cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_PACKET, ret, ec->dout);
152
153	/* Here we go */
154	sum = EC_COMMAND_PROTOCOL_3;
155	cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_CMD, 1, &sum);
156
157	if (ec_response_timed_out()) {
158		dev_warn(ec->dev, "EC responsed timed out\n");
159		ret = -EIO;
160		goto done;
161	}
162
163	/* Check result */
164	msg->result = cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_DATA, 1, &sum);
165	ret = cros_ec_check_result(ec, msg);
166	if (ret)
167		goto done;
168
169	/* Read back response */
170	dout = (u8 *)&response;
171	sum = cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_PACKET, sizeof(response),
172				   dout);
173
174	msg->result = response.result;
175
176	if (response.data_len > msg->insize) {
177		dev_err(ec->dev,
178			"packet too long (%d bytes, expected %d)",
179			response.data_len, msg->insize);
180		ret = -EMSGSIZE;
181		goto done;
182	}
183
184	/* Read response and process checksum */
185	sum += cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_PACKET +
186				    sizeof(response), response.data_len,
187				    msg->data);
188
189	if (sum) {
190		dev_err(ec->dev,
191			"bad packet checksum %02x\n",
192			response.checksum);
193		ret = -EBADMSG;
194		goto done;
195	}
196
197	/* Return actual amount of data received */
198	ret = response.data_len;
199done:
200	return ret;
201}
202
203static int cros_ec_cmd_xfer_lpc(struct cros_ec_device *ec,
204				struct cros_ec_command *msg)
205{
206	struct ec_lpc_host_args args;
207	u8 sum;
208	int ret = 0;
209
210	if (msg->outsize > EC_PROTO2_MAX_PARAM_SIZE ||
211	    msg->insize > EC_PROTO2_MAX_PARAM_SIZE) {
212		dev_err(ec->dev,
213			"invalid buffer sizes (out %d, in %d)\n",
214			msg->outsize, msg->insize);
215		return -EINVAL;
216	}
217
218	/* Now actually send the command to the EC and get the result */
219	args.flags = EC_HOST_ARGS_FLAG_FROM_HOST;
220	args.command_version = msg->version;
221	args.data_size = msg->outsize;
222
223	/* Initialize checksum */
224	sum = msg->command + args.flags + args.command_version + args.data_size;
225
226	/* Copy data and update checksum */
227	sum += cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_PARAM, msg->outsize,
228				     msg->data);
229
230	/* Finalize checksum and write args */
231	args.checksum = sum;
232	cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_ARGS, sizeof(args),
233			      (u8 *)&args);
234
235	/* Here we go */
236	sum = msg->command;
237	cros_ec_lpc_ops.write(EC_LPC_ADDR_HOST_CMD, 1, &sum);
238
239	if (ec_response_timed_out()) {
240		dev_warn(ec->dev, "EC responsed timed out\n");
241		ret = -EIO;
242		goto done;
243	}
244
245	/* Check result */
246	msg->result = cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_DATA, 1, &sum);
247	ret = cros_ec_check_result(ec, msg);
248	if (ret)
249		goto done;
250
251	/* Read back args */
252	cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_ARGS, sizeof(args), (u8 *)&args);
253
254	if (args.data_size > msg->insize) {
255		dev_err(ec->dev,
256			"packet too long (%d bytes, expected %d)",
257			args.data_size, msg->insize);
258		ret = -ENOSPC;
259		goto done;
260	}
261
262	/* Start calculating response checksum */
263	sum = msg->command + args.flags + args.command_version + args.data_size;
264
265	/* Read response and update checksum */
266	sum += cros_ec_lpc_ops.read(EC_LPC_ADDR_HOST_PARAM, args.data_size,
267				    msg->data);
268
269	/* Verify checksum */
270	if (args.checksum != sum) {
271		dev_err(ec->dev,
272			"bad packet checksum, expected %02x, got %02x\n",
273			args.checksum, sum);
274		ret = -EBADMSG;
275		goto done;
276	}
277
278	/* Return actual amount of data received */
279	ret = args.data_size;
280done:
281	return ret;
282}
283
284/* Returns num bytes read, or negative on error. Doesn't need locking. */
285static int cros_ec_lpc_readmem(struct cros_ec_device *ec, unsigned int offset,
286			       unsigned int bytes, void *dest)
287{
288	int i = offset;
289	char *s = dest;
290	int cnt = 0;
291
292	if (offset >= EC_MEMMAP_SIZE - bytes)
293		return -EINVAL;
294
295	/* fixed length */
296	if (bytes) {
297		cros_ec_lpc_ops.read(EC_LPC_ADDR_MEMMAP + offset, bytes, s);
298		return bytes;
299	}
300
301	/* string */
302	for (; i < EC_MEMMAP_SIZE; i++, s++) {
303		cros_ec_lpc_ops.read(EC_LPC_ADDR_MEMMAP + i, 1, s);
304		cnt++;
305		if (!*s)
306			break;
307	}
308
309	return cnt;
310}
311
312static void cros_ec_lpc_acpi_notify(acpi_handle device, u32 value, void *data)
313{
 
314	struct cros_ec_device *ec_dev = data;
 
 
 
 
315
316	if (ec_dev->mkbp_event_supported &&
317	    cros_ec_get_next_event(ec_dev, NULL) > 0)
318		blocking_notifier_call_chain(&ec_dev->event_notifier, 0,
319					     ec_dev);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
321	if (value == ACPI_NOTIFY_DEVICE_WAKE)
322		pm_system_wakeup();
323}
324
325static int cros_ec_lpc_probe(struct platform_device *pdev)
326{
327	struct device *dev = &pdev->dev;
328	struct acpi_device *adev;
329	acpi_status status;
330	struct cros_ec_device *ec_dev;
331	u8 buf[2];
332	int irq, ret;
333
334	if (!devm_request_region(dev, EC_LPC_ADDR_MEMMAP, EC_MEMMAP_SIZE,
335				 dev_name(dev))) {
336		dev_err(dev, "couldn't reserve memmap region\n");
 
 
 
 
 
337		return -EBUSY;
338	}
339
 
 
 
340	/*
341	 * Read the mapped ID twice, the first one is assuming the
342	 * EC is a Microchip Embedded Controller (MEC) variant, if the
343	 * protocol fails, fallback to the non MEC variant and try to
344	 * read again the ID.
345	 */
346	cros_ec_lpc_ops.read = cros_ec_lpc_mec_read_bytes;
347	cros_ec_lpc_ops.write = cros_ec_lpc_mec_write_bytes;
348	cros_ec_lpc_ops.read(EC_LPC_ADDR_MEMMAP + EC_MEMMAP_ID, 2, buf);
349	if (buf[0] != 'E' || buf[1] != 'C') {
 
 
 
 
 
 
350		/* Re-assign read/write operations for the non MEC variant */
351		cros_ec_lpc_ops.read = cros_ec_lpc_read_bytes;
352		cros_ec_lpc_ops.write = cros_ec_lpc_write_bytes;
353		cros_ec_lpc_ops.read(EC_LPC_ADDR_MEMMAP + EC_MEMMAP_ID, 2,
354				     buf);
355		if (buf[0] != 'E' || buf[1] != 'C') {
356			dev_err(dev, "EC ID not detected\n");
357			return -ENODEV;
358		}
359	}
360
361	if (!devm_request_region(dev, EC_HOST_CMD_REGION0,
362				 EC_HOST_CMD_REGION_SIZE, dev_name(dev))) {
363		dev_err(dev, "couldn't reserve region0\n");
364		return -EBUSY;
365	}
366	if (!devm_request_region(dev, EC_HOST_CMD_REGION1,
367				 EC_HOST_CMD_REGION_SIZE, dev_name(dev))) {
368		dev_err(dev, "couldn't reserve region1\n");
369		return -EBUSY;
 
 
 
370	}
371
372	ec_dev = devm_kzalloc(dev, sizeof(*ec_dev), GFP_KERNEL);
373	if (!ec_dev)
374		return -ENOMEM;
375
376	platform_set_drvdata(pdev, ec_dev);
377	ec_dev->dev = dev;
378	ec_dev->phys_name = dev_name(dev);
379	ec_dev->cmd_xfer = cros_ec_cmd_xfer_lpc;
380	ec_dev->pkt_xfer = cros_ec_pkt_xfer_lpc;
381	ec_dev->cmd_readmem = cros_ec_lpc_readmem;
382	ec_dev->din_size = sizeof(struct ec_host_response) +
383			   sizeof(struct ec_response_get_protocol_info);
384	ec_dev->dout_size = sizeof(struct ec_host_request);
385
386	/*
387	 * Some boards do not have an IRQ allotted for cros_ec_lpc,
388	 * which makes ENXIO an expected (and safe) scenario.
389	 */
390	irq = platform_get_irq(pdev, 0);
391	if (irq > 0)
392		ec_dev->irq = irq;
393	else if (irq != -ENXIO) {
394		dev_err(dev, "couldn't retrieve IRQ number (%d)\n", irq);
395		return irq;
396	}
397
398	ret = cros_ec_register(ec_dev);
399	if (ret) {
400		dev_err(dev, "couldn't register ec_dev (%d)\n", ret);
401		return ret;
402	}
403
404	/*
405	 * Connect a notify handler to process MKBP messages if we have a
406	 * companion ACPI device.
407	 */
408	adev = ACPI_COMPANION(dev);
409	if (adev) {
410		status = acpi_install_notify_handler(adev->handle,
411						     ACPI_ALL_NOTIFY,
412						     cros_ec_lpc_acpi_notify,
413						     ec_dev);
414		if (ACPI_FAILURE(status))
415			dev_warn(dev, "Failed to register notifier %08x\n",
416				 status);
417	}
418
419	return 0;
420}
421
422static int cros_ec_lpc_remove(struct platform_device *pdev)
423{
424	struct cros_ec_device *ec_dev = platform_get_drvdata(pdev);
425	struct acpi_device *adev;
426
427	adev = ACPI_COMPANION(&pdev->dev);
428	if (adev)
429		acpi_remove_notify_handler(adev->handle, ACPI_ALL_NOTIFY,
430					   cros_ec_lpc_acpi_notify);
431
432	return cros_ec_unregister(ec_dev);
433}
434
435static const struct acpi_device_id cros_ec_lpc_acpi_device_ids[] = {
436	{ ACPI_DRV_NAME, 0 },
437	{ }
438};
439MODULE_DEVICE_TABLE(acpi, cros_ec_lpc_acpi_device_ids);
440
441static const struct dmi_system_id cros_ec_lpc_dmi_table[] __initconst = {
442	{
443		/*
444		 * Today all Chromebooks/boxes ship with Google_* as version and
445		 * coreboot as bios vendor. No other systems with this
446		 * combination are known to date.
447		 */
448		.matches = {
449			DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
450			DMI_MATCH(DMI_BIOS_VERSION, "Google_"),
451		},
452	},
453	{
454		/*
455		 * If the box is running custom coreboot firmware then the
456		 * DMI BIOS version string will not be matched by "Google_",
457		 * but the system vendor string will still be matched by
458		 * "GOOGLE".
459		 */
460		.matches = {
461			DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
462			DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
463		},
464	},
465	{
466		/* x86-link, the Chromebook Pixel. */
467		.matches = {
468			DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
469			DMI_MATCH(DMI_PRODUCT_NAME, "Link"),
470		},
471	},
472	{
473		/* x86-samus, the Chromebook Pixel 2. */
474		.matches = {
475			DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
476			DMI_MATCH(DMI_PRODUCT_NAME, "Samus"),
477		},
478	},
479	{
480		/* x86-peppy, the Acer C720 Chromebook. */
481		.matches = {
482			DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
483			DMI_MATCH(DMI_PRODUCT_NAME, "Peppy"),
484		},
485	},
486	{
487		/* x86-glimmer, the Lenovo Thinkpad Yoga 11e. */
488		.matches = {
489			DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
490			DMI_MATCH(DMI_PRODUCT_NAME, "Glimmer"),
491		},
492	},
 
 
 
 
 
 
 
 
493	{ /* sentinel */ }
494};
495MODULE_DEVICE_TABLE(dmi, cros_ec_lpc_dmi_table);
496
497#ifdef CONFIG_PM_SLEEP
498static int cros_ec_lpc_suspend(struct device *dev)
 
 
 
 
 
 
 
 
 
 
 
 
499{
500	struct cros_ec_device *ec_dev = dev_get_drvdata(dev);
501
502	return cros_ec_suspend(ec_dev);
503}
504
505static int cros_ec_lpc_resume(struct device *dev)
506{
507	struct cros_ec_device *ec_dev = dev_get_drvdata(dev);
508
509	return cros_ec_resume(ec_dev);
510}
511#endif
512
513static const struct dev_pm_ops cros_ec_lpc_pm_ops = {
514	SET_LATE_SYSTEM_SLEEP_PM_OPS(cros_ec_lpc_suspend, cros_ec_lpc_resume)
 
 
 
 
515};
516
517static struct platform_driver cros_ec_lpc_driver = {
518	.driver = {
519		.name = DRV_NAME,
520		.acpi_match_table = cros_ec_lpc_acpi_device_ids,
521		.pm = &cros_ec_lpc_pm_ops,
 
 
 
 
 
 
522	},
523	.probe = cros_ec_lpc_probe,
524	.remove = cros_ec_lpc_remove,
525};
526
527static struct platform_device cros_ec_lpc_device = {
528	.name = DRV_NAME
529};
530
531static acpi_status cros_ec_lpc_parse_device(acpi_handle handle, u32 level,
532					    void *context, void **retval)
533{
534	*(bool *)context = true;
535	return AE_CTRL_TERMINATE;
536}
537
538static int __init cros_ec_lpc_init(void)
539{
540	int ret;
541	acpi_status status;
542
543	status = acpi_get_devices(ACPI_DRV_NAME, cros_ec_lpc_parse_device,
544				  &cros_ec_lpc_acpi_device_found, NULL);
545	if (ACPI_FAILURE(status))
546		pr_warn(DRV_NAME ": Looking for %s failed\n", ACPI_DRV_NAME);
547
548	if (!cros_ec_lpc_acpi_device_found &&
549	    !dmi_check_system(cros_ec_lpc_dmi_table)) {
550		pr_err(DRV_NAME ": unsupported system.\n");
551		return -ENODEV;
552	}
553
554	cros_ec_lpc_mec_init(EC_HOST_CMD_REGION0,
555			     EC_LPC_ADDR_MEMMAP + EC_MEMMAP_SIZE);
556
557	/* Register the driver */
558	ret = platform_driver_register(&cros_ec_lpc_driver);
559	if (ret) {
560		pr_err(DRV_NAME ": can't register driver: %d\n", ret);
561		cros_ec_lpc_mec_destroy();
562		return ret;
563	}
564
565	if (!cros_ec_lpc_acpi_device_found) {
566		/* Register the device, and it'll get hooked up automatically */
567		ret = platform_device_register(&cros_ec_lpc_device);
568		if (ret) {
569			pr_err(DRV_NAME ": can't register device: %d\n", ret);
570			platform_driver_unregister(&cros_ec_lpc_driver);
571			cros_ec_lpc_mec_destroy();
572		}
573	}
574
575	return ret;
576}
577
578static void __exit cros_ec_lpc_exit(void)
579{
580	if (!cros_ec_lpc_acpi_device_found)
581		platform_device_unregister(&cros_ec_lpc_device);
582	platform_driver_unregister(&cros_ec_lpc_driver);
583	cros_ec_lpc_mec_destroy();
584}
585
586module_init(cros_ec_lpc_init);
587module_exit(cros_ec_lpc_exit);
588
589MODULE_LICENSE("GPL");
590MODULE_DESCRIPTION("ChromeOS EC LPC driver");