1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Support for OLPC XO-1 System Control Interrupts (SCI)
5 * Copyright (C) 2010 One Laptop per Child
6 * Copyright (C) 2006 Red Hat, Inc.
7 * Copyright (C) 2006 Advanced Micro Devices, Inc.
10 #include <linux/cs5535.h>
11 #include <linux/device.h>
12 #include <linux/gpio.h>
13 #include <linux/input.h>
14 #include <linux/interrupt.h>
15 #include <linux/platform_device.h>
17 #include <linux/pm_wakeup.h>
18 #include <linux/mfd/core.h>
19 #include <linux/power_supply.h>
20 #include <linux/suspend.h>
21 #include <linux/workqueue.h>
22 #include <linux/olpc-ec.h>
28 #define DRV_NAME "olpc-xo1-sci"
29 #define PFX DRV_NAME ": "
31 static unsigned long acpi_base;
32 static struct input_dev *power_button_idev;
33 static struct input_dev *ebook_switch_idev;
34 static struct input_dev *lid_switch_idev;
39 static bool lid_inverted;
40 static int lid_wake_mode;
48 static const char * const lid_wake_mode_names[] = {
49 [LID_WAKE_ALWAYS] = "always",
50 [LID_WAKE_OPEN] = "open",
51 [LID_WAKE_CLOSE] = "close",
54 static void battery_status_changed(void)
56 struct power_supply *psy = power_supply_get_by_name("olpc-battery");
59 power_supply_changed(psy);
60 power_supply_put(psy);
64 static void ac_status_changed(void)
66 struct power_supply *psy = power_supply_get_by_name("olpc-ac");
69 power_supply_changed(psy);
70 power_supply_put(psy);
74 /* Report current ebook switch state through input layer */
75 static void send_ebook_state(void)
79 if (olpc_ec_cmd(EC_READ_EB_MODE, NULL, 0, &state, 1)) {
80 pr_err(PFX "failed to get ebook state\n");
84 if (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) == state)
85 return; /* Nothing new to report. */
87 input_report_switch(ebook_switch_idev, SW_TABLET_MODE, state);
88 input_sync(ebook_switch_idev);
89 pm_wakeup_event(&ebook_switch_idev->dev, 0);
92 static void flip_lid_inverter(void)
94 /* gpio is high; invert so we'll get l->h event interrupt */
96 cs5535_gpio_clear(OLPC_GPIO_LID, GPIO_INPUT_INVERT);
98 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_INPUT_INVERT);
99 lid_inverted = !lid_inverted;
102 static void detect_lid_state(void)
105 * the edge detector hookup on the gpio inputs on the geode is
106 * odd, to say the least. See http://dev.laptop.org/ticket/5703
107 * for details, but in a nutshell: we don't use the edge
108 * detectors. instead, we make use of an anomaly: with the both
109 * edge detectors turned off, we still get an edge event on a
110 * positive edge transition. to take advantage of this, we use the
111 * front-end inverter to ensure that that's the edge we're always
117 state = cs5535_gpio_isset(OLPC_GPIO_LID, GPIO_READ_BACK);
118 lid_open = !state ^ !lid_inverted; /* x ^^ y */
125 /* Report current lid switch state through input layer */
126 static void send_lid_state(void)
128 if (!!test_bit(SW_LID, lid_switch_idev->sw) == !lid_open)
129 return; /* Nothing new to report. */
131 input_report_switch(lid_switch_idev, SW_LID, !lid_open);
132 input_sync(lid_switch_idev);
133 pm_wakeup_event(&lid_switch_idev->dev, 0);
136 static ssize_t lid_wake_mode_show(struct device *dev,
137 struct device_attribute *attr, char *buf)
139 const char *mode = lid_wake_mode_names[lid_wake_mode];
140 return sprintf(buf, "%s\n", mode);
142 static ssize_t lid_wake_mode_set(struct device *dev,
143 struct device_attribute *attr,
144 const char *buf, size_t count)
147 for (i = 0; i < ARRAY_SIZE(lid_wake_mode_names); i++) {
148 const char *mode = lid_wake_mode_names[i];
149 if (strlen(mode) != count || strncasecmp(mode, buf, count))
157 static DEVICE_ATTR(lid_wake_mode, S_IWUSR | S_IRUGO, lid_wake_mode_show,
161 * Process all items in the EC's SCI queue.
163 * This is handled in a workqueue because olpc_ec_cmd can be slow (and
166 * If propagate_events is false, the queue is drained without events being
167 * generated for the interrupts.
169 static void process_sci_queue(bool propagate_events)
175 r = olpc_ec_sci_query(&data);
179 pr_debug(PFX "SCI 0x%x received\n", data);
182 case EC_SCI_SRC_BATERR:
183 case EC_SCI_SRC_BATSOC:
184 case EC_SCI_SRC_BATTERY:
185 case EC_SCI_SRC_BATCRIT:
186 battery_status_changed();
188 case EC_SCI_SRC_ACPWR:
193 if (data == EC_SCI_SRC_EBOOK && propagate_events)
198 pr_err(PFX "Failed to clear SCI queue");
201 static void process_sci_queue_work(struct work_struct *work)
203 process_sci_queue(true);
206 static DECLARE_WORK(sci_work, process_sci_queue_work);
208 static irqreturn_t xo1_sci_intr(int irq, void *dev_id)
210 struct platform_device *pdev = dev_id;
214 sts = inl(acpi_base + CS5536_PM1_STS);
215 outl(sts | 0xffff, acpi_base + CS5536_PM1_STS);
217 gpe = inl(acpi_base + CS5536_PM_GPE0_STS);
218 outl(0xffffffff, acpi_base + CS5536_PM_GPE0_STS);
220 dev_dbg(&pdev->dev, "sts %x gpe %x\n", sts, gpe);
222 if (sts & CS5536_PWRBTN_FLAG) {
223 if (!(sts & CS5536_WAK_FLAG)) {
224 /* Only report power button input when it was pressed
225 * during regular operation (as opposed to when it
226 * was used to wake the system). */
227 input_report_key(power_button_idev, KEY_POWER, 1);
228 input_sync(power_button_idev);
229 input_report_key(power_button_idev, KEY_POWER, 0);
230 input_sync(power_button_idev);
232 /* Report the wakeup event in all cases. */
233 pm_wakeup_event(&power_button_idev->dev, 0);
236 if ((sts & (CS5536_RTC_FLAG | CS5536_WAK_FLAG)) ==
237 (CS5536_RTC_FLAG | CS5536_WAK_FLAG)) {
238 /* When the system is woken by the RTC alarm, report the
239 * event on the rtc device. */
240 struct device *rtc = bus_find_device_by_name(
241 &platform_bus_type, NULL, "rtc_cmos");
243 pm_wakeup_event(rtc, 0);
248 if (gpe & CS5536_GPIOM7_PME_FLAG) { /* EC GPIO */
249 cs5535_gpio_set(OLPC_GPIO_ECSCI, GPIO_NEGATIVE_EDGE_STS);
250 schedule_work(&sci_work);
253 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_NEGATIVE_EDGE_STS);
254 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_POSITIVE_EDGE_STS);
261 static int xo1_sci_suspend(struct platform_device *pdev, pm_message_t state)
263 if (device_may_wakeup(&power_button_idev->dev))
264 olpc_xo1_pm_wakeup_set(CS5536_PM_PWRBTN);
266 olpc_xo1_pm_wakeup_clear(CS5536_PM_PWRBTN);
268 if (device_may_wakeup(&ebook_switch_idev->dev))
269 olpc_ec_wakeup_set(EC_SCI_SRC_EBOOK);
271 olpc_ec_wakeup_clear(EC_SCI_SRC_EBOOK);
273 if (!device_may_wakeup(&lid_switch_idev->dev)) {
274 cs5535_gpio_clear(OLPC_GPIO_LID, GPIO_EVENTS_ENABLE);
275 } else if ((lid_open && lid_wake_mode == LID_WAKE_OPEN) ||
276 (!lid_open && lid_wake_mode == LID_WAKE_CLOSE)) {
279 /* we may have just caused an event */
280 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_NEGATIVE_EDGE_STS);
281 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_POSITIVE_EDGE_STS);
283 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_EVENTS_ENABLE);
289 static int xo1_sci_resume(struct platform_device *pdev)
292 * We don't know what may have happened while we were asleep.
293 * Reestablish our lid setup so we're sure to catch all transitions.
297 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_EVENTS_ENABLE);
299 /* Enable all EC events */
300 olpc_ec_mask_write(EC_SCI_SRC_ALL);
302 /* Power/battery status might have changed too */
303 battery_status_changed();
308 static int setup_sci_interrupt(struct platform_device *pdev)
314 rdmsr(0x51400020, lo, hi);
315 sci_irq = (lo >> 20) & 15;
318 dev_info(&pdev->dev, "SCI is mapped to IRQ %d\n", sci_irq);
320 /* Zero means masked */
321 dev_info(&pdev->dev, "SCI unmapped. Mapping to IRQ 3\n");
324 wrmsrl(0x51400020, lo);
327 /* Select level triggered in PIC */
329 lo = inb(CS5536_PIC_INT_SEL1);
331 outb(lo, CS5536_PIC_INT_SEL1);
333 lo = inb(CS5536_PIC_INT_SEL2);
334 lo |= 1 << (sci_irq - 8);
335 outb(lo, CS5536_PIC_INT_SEL2);
338 /* Enable interesting SCI events, and clear pending interrupts */
339 sts = inl(acpi_base + CS5536_PM1_STS);
340 outl(((CS5536_PM_PWRBTN | CS5536_PM_RTC) << 16) | 0xffff,
341 acpi_base + CS5536_PM1_STS);
343 r = request_irq(sci_irq, xo1_sci_intr, 0, DRV_NAME, pdev);
345 dev_err(&pdev->dev, "can't request interrupt\n");
350 static int setup_ec_sci(void)
354 r = gpio_request(OLPC_GPIO_ECSCI, "OLPC-ECSCI");
358 gpio_direction_input(OLPC_GPIO_ECSCI);
360 /* Clear pending EC SCI events */
361 cs5535_gpio_set(OLPC_GPIO_ECSCI, GPIO_NEGATIVE_EDGE_STS);
362 cs5535_gpio_set(OLPC_GPIO_ECSCI, GPIO_POSITIVE_EDGE_STS);
365 * Enable EC SCI events, and map them to both a PME and the SCI
368 * Ordinarily, in addition to functioning as GPIOs, Geode GPIOs can
369 * be mapped to regular interrupts *or* Geode-specific Power
370 * Management Events (PMEs) - events that bring the system out of
371 * suspend. In this case, we want both of those things - the system
372 * wakeup, *and* the ability to get an interrupt when an event occurs.
374 * To achieve this, we map the GPIO to a PME, and then we use one
375 * of the many generic knobs on the CS5535 PIC to additionally map the
376 * PME to the regular SCI interrupt line.
378 cs5535_gpio_set(OLPC_GPIO_ECSCI, GPIO_EVENTS_ENABLE);
380 /* Set the SCI to cause a PME event on group 7 */
381 cs5535_gpio_setup_event(OLPC_GPIO_ECSCI, 7, 1);
383 /* And have group 7 also fire the SCI interrupt */
384 cs5535_pic_unreqz_select_high(7, sci_irq);
389 static void free_ec_sci(void)
391 gpio_free(OLPC_GPIO_ECSCI);
394 static int setup_lid_events(void)
398 r = gpio_request(OLPC_GPIO_LID, "OLPC-LID");
402 gpio_direction_input(OLPC_GPIO_LID);
404 cs5535_gpio_clear(OLPC_GPIO_LID, GPIO_INPUT_INVERT);
407 /* Clear edge detection and event enable for now */
408 cs5535_gpio_clear(OLPC_GPIO_LID, GPIO_EVENTS_ENABLE);
409 cs5535_gpio_clear(OLPC_GPIO_LID, GPIO_NEGATIVE_EDGE_EN);
410 cs5535_gpio_clear(OLPC_GPIO_LID, GPIO_POSITIVE_EDGE_EN);
411 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_NEGATIVE_EDGE_STS);
412 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_POSITIVE_EDGE_STS);
414 /* Set the LID to cause an PME event on group 6 */
415 cs5535_gpio_setup_event(OLPC_GPIO_LID, 6, 1);
417 /* Set PME group 6 to fire the SCI interrupt */
418 cs5535_gpio_set_irq(6, sci_irq);
420 /* Enable the event */
421 cs5535_gpio_set(OLPC_GPIO_LID, GPIO_EVENTS_ENABLE);
426 static void free_lid_events(void)
428 gpio_free(OLPC_GPIO_LID);
431 static int setup_power_button(struct platform_device *pdev)
435 power_button_idev = input_allocate_device();
436 if (!power_button_idev)
439 power_button_idev->name = "Power Button";
440 power_button_idev->phys = DRV_NAME "/input0";
441 set_bit(EV_KEY, power_button_idev->evbit);
442 set_bit(KEY_POWER, power_button_idev->keybit);
444 power_button_idev->dev.parent = &pdev->dev;
445 device_init_wakeup(&power_button_idev->dev, 1);
447 r = input_register_device(power_button_idev);
449 dev_err(&pdev->dev, "failed to register power button: %d\n", r);
450 input_free_device(power_button_idev);
456 static void free_power_button(void)
458 input_unregister_device(power_button_idev);
461 static int setup_ebook_switch(struct platform_device *pdev)
465 ebook_switch_idev = input_allocate_device();
466 if (!ebook_switch_idev)
469 ebook_switch_idev->name = "EBook Switch";
470 ebook_switch_idev->phys = DRV_NAME "/input1";
471 set_bit(EV_SW, ebook_switch_idev->evbit);
472 set_bit(SW_TABLET_MODE, ebook_switch_idev->swbit);
474 ebook_switch_idev->dev.parent = &pdev->dev;
475 device_set_wakeup_capable(&ebook_switch_idev->dev, true);
477 r = input_register_device(ebook_switch_idev);
479 dev_err(&pdev->dev, "failed to register ebook switch: %d\n", r);
480 input_free_device(ebook_switch_idev);
486 static void free_ebook_switch(void)
488 input_unregister_device(ebook_switch_idev);
491 static int setup_lid_switch(struct platform_device *pdev)
495 lid_switch_idev = input_allocate_device();
496 if (!lid_switch_idev)
499 lid_switch_idev->name = "Lid Switch";
500 lid_switch_idev->phys = DRV_NAME "/input2";
501 set_bit(EV_SW, lid_switch_idev->evbit);
502 set_bit(SW_LID, lid_switch_idev->swbit);
504 lid_switch_idev->dev.parent = &pdev->dev;
505 device_set_wakeup_capable(&lid_switch_idev->dev, true);
507 r = input_register_device(lid_switch_idev);
509 dev_err(&pdev->dev, "failed to register lid switch: %d\n", r);
513 r = device_create_file(&lid_switch_idev->dev, &dev_attr_lid_wake_mode);
515 dev_err(&pdev->dev, "failed to create wake mode attr: %d\n", r);
516 goto err_create_attr;
522 input_unregister_device(lid_switch_idev);
523 lid_switch_idev = NULL;
525 input_free_device(lid_switch_idev);
529 static void free_lid_switch(void)
531 device_remove_file(&lid_switch_idev->dev, &dev_attr_lid_wake_mode);
532 input_unregister_device(lid_switch_idev);
535 static int xo1_sci_probe(struct platform_device *pdev)
537 struct resource *res;
540 /* don't run on non-XOs */
541 if (!machine_is_olpc())
544 r = mfd_cell_enable(pdev);
548 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
550 dev_err(&pdev->dev, "can't fetch device resource info\n");
553 acpi_base = res->start;
555 r = setup_power_button(pdev);
559 r = setup_ebook_switch(pdev);
563 r = setup_lid_switch(pdev);
567 r = setup_lid_events();
575 /* Enable PME generation for EC-generated events */
576 outl(CS5536_GPIOM6_PME_EN | CS5536_GPIOM7_PME_EN,
577 acpi_base + CS5536_PM_GPE0_EN);
579 /* Clear pending events */
580 outl(0xffffffff, acpi_base + CS5536_PM_GPE0_STS);
581 process_sci_queue(false);
588 r = setup_sci_interrupt(pdev);
592 /* Enable all EC events */
593 olpc_ec_mask_write(EC_SCI_SRC_ALL);
610 static int xo1_sci_remove(struct platform_device *pdev)
612 mfd_cell_disable(pdev);
613 free_irq(sci_irq, pdev);
614 cancel_work_sync(&sci_work);
624 static struct platform_driver xo1_sci_driver = {
626 .name = "olpc-xo1-sci-acpi",
628 .probe = xo1_sci_probe,
629 .remove = xo1_sci_remove,
630 .suspend = xo1_sci_suspend,
631 .resume = xo1_sci_resume,
634 static int __init xo1_sci_init(void)
636 return platform_driver_register(&xo1_sci_driver);
638 arch_initcall(xo1_sci_init);