2 * Support for OLPC XO-1.5 System Control Interrupts (SCI)
4 * Copyright (C) 2009-2010 One Laptop per Child
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.
12 #include <linux/device.h>
13 #include <linux/slab.h>
14 #include <linux/workqueue.h>
15 #include <linux/power_supply.h>
16 #include <linux/olpc-ec.h>
18 #include <acpi/acpi_bus.h>
19 #include <acpi/acpi_drivers.h>
22 #define DRV_NAME "olpc-xo15-sci"
23 #define PFX DRV_NAME ": "
24 #define XO15_SCI_CLASS DRV_NAME
25 #define XO15_SCI_DEVICE_NAME "OLPC XO-1.5 SCI"
27 static unsigned long xo15_sci_gpe
;
28 static bool lid_wake_on_close
;
31 * The normal ACPI LID wakeup behavior is wake-on-open, but not
32 * wake-on-close. This is implemented as standard by the XO-1.5 DSDT.
34 * We provide here a sysfs attribute that will additionally enable
35 * wake-on-close behavior. This is useful (e.g.) when we oportunistically
36 * suspend with the display running; if the lid is then closed, we want to
37 * wake up to turn the display off.
39 * This is controlled through a custom method in the XO-1.5 DSDT.
41 static int set_lid_wake_behavior(bool wake_on_close
)
43 struct acpi_object_list arg_list
;
44 union acpi_object arg
;
48 arg_list
.pointer
= &arg
;
49 arg
.type
= ACPI_TYPE_INTEGER
;
50 arg
.integer
.value
= wake_on_close
;
52 status
= acpi_evaluate_object(NULL
, "\\_SB.PCI0.LID.LIDW", &arg_list
, NULL
);
53 if (ACPI_FAILURE(status
)) {
54 pr_warning(PFX
"failed to set lid behavior\n");
58 lid_wake_on_close
= wake_on_close
;
64 lid_wake_on_close_show(struct kobject
*s
, struct kobj_attribute
*attr
, char *buf
)
66 return sprintf(buf
, "%u\n", lid_wake_on_close
);
69 static ssize_t
lid_wake_on_close_store(struct kobject
*s
,
70 struct kobj_attribute
*attr
,
71 const char *buf
, size_t n
)
75 if (sscanf(buf
, "%u", &val
) != 1)
78 set_lid_wake_behavior(!!val
);
83 static struct kobj_attribute lid_wake_on_close_attr
=
84 __ATTR(lid_wake_on_close
, 0644,
85 lid_wake_on_close_show
,
86 lid_wake_on_close_store
);
88 static void battery_status_changed(void)
90 struct power_supply
*psy
= power_supply_get_by_name("olpc-battery");
93 power_supply_changed(psy
);
98 static void ac_status_changed(void)
100 struct power_supply
*psy
= power_supply_get_by_name("olpc-ac");
103 power_supply_changed(psy
);
104 put_device(psy
->dev
);
108 static void process_sci_queue(void)
114 r
= olpc_ec_sci_query(&data
);
118 pr_debug(PFX
"SCI 0x%x received\n", data
);
121 case EC_SCI_SRC_BATERR
:
122 case EC_SCI_SRC_BATSOC
:
123 case EC_SCI_SRC_BATTERY
:
124 case EC_SCI_SRC_BATCRIT
:
125 battery_status_changed();
127 case EC_SCI_SRC_ACPWR
:
134 pr_err(PFX
"Failed to clear SCI queue");
137 static void process_sci_queue_work(struct work_struct
*work
)
142 static DECLARE_WORK(sci_work
, process_sci_queue_work
);
144 static u32
xo15_sci_gpe_handler(acpi_handle gpe_device
, u32 gpe
, void *context
)
146 schedule_work(&sci_work
);
147 return ACPI_INTERRUPT_HANDLED
| ACPI_REENABLE_GPE
;
150 static int xo15_sci_add(struct acpi_device
*device
)
152 unsigned long long tmp
;
159 strcpy(acpi_device_name(device
), XO15_SCI_DEVICE_NAME
);
160 strcpy(acpi_device_class(device
), XO15_SCI_CLASS
);
162 /* Get GPE bit assignment (EC events). */
163 status
= acpi_evaluate_integer(device
->handle
, "_GPE", NULL
, &tmp
);
164 if (ACPI_FAILURE(status
))
168 status
= acpi_install_gpe_handler(NULL
, xo15_sci_gpe
,
169 ACPI_GPE_EDGE_TRIGGERED
,
170 xo15_sci_gpe_handler
, device
);
171 if (ACPI_FAILURE(status
))
174 dev_info(&device
->dev
, "Initialized, GPE = 0x%lx\n", xo15_sci_gpe
);
176 r
= sysfs_create_file(&device
->dev
.kobj
, &lid_wake_on_close_attr
.attr
);
180 /* Flush queue, and enable all SCI events */
182 olpc_ec_mask_write(EC_SCI_SRC_ALL
);
184 acpi_enable_gpe(NULL
, xo15_sci_gpe
);
186 /* Enable wake-on-EC */
187 if (device
->wakeup
.flags
.valid
)
188 device_init_wakeup(&device
->dev
, true);
193 acpi_remove_gpe_handler(NULL
, xo15_sci_gpe
, xo15_sci_gpe_handler
);
194 cancel_work_sync(&sci_work
);
198 static int xo15_sci_remove(struct acpi_device
*device
)
200 acpi_disable_gpe(NULL
, xo15_sci_gpe
);
201 acpi_remove_gpe_handler(NULL
, xo15_sci_gpe
, xo15_sci_gpe_handler
);
202 cancel_work_sync(&sci_work
);
203 sysfs_remove_file(&device
->dev
.kobj
, &lid_wake_on_close_attr
.attr
);
207 static int xo15_sci_resume(struct device
*dev
)
209 /* Enable all EC events */
210 olpc_ec_mask_write(EC_SCI_SRC_ALL
);
212 /* Power/battery status might have changed */
213 battery_status_changed();
219 static SIMPLE_DEV_PM_OPS(xo15_sci_pm
, NULL
, xo15_sci_resume
);
221 static const struct acpi_device_id xo15_sci_device_ids
[] = {
226 static struct acpi_driver xo15_sci_drv
= {
228 .class = XO15_SCI_CLASS
,
229 .ids
= xo15_sci_device_ids
,
232 .remove
= xo15_sci_remove
,
234 .drv
.pm
= &xo15_sci_pm
,
237 static int __init
xo15_sci_init(void)
239 return acpi_bus_register_driver(&xo15_sci_drv
);
241 device_initcall(xo15_sci_init
);