1 #include <linux/proc_fs.h>
2 #include <linux/seq_file.h>
3 #include <linux/suspend.h>
5 #include <asm/uaccess.h>
7 #include <acpi/acpi_bus.h>
8 #include <acpi/acpi_drivers.h>
11 #include <linux/mc146818rtc.h>
16 #define ACPI_SYSTEM_FILE_SLEEP "sleep"
17 #define ACPI_SYSTEM_FILE_ALARM "alarm"
18 #define ACPI_SYSTEM_FILE_WAKEUP_DEVICE "wakeup"
20 #define _COMPONENT ACPI_SYSTEM_COMPONENT
21 ACPI_MODULE_NAME ("sleep")
24 static int acpi_system_sleep_seq_show(struct seq_file
*seq
, void *offset
)
28 ACPI_FUNCTION_TRACE("acpi_system_sleep_seq_show");
30 for (i
= 0; i
<= ACPI_STATE_S5
; i
++) {
31 if (sleep_states
[i
]) {
32 seq_printf(seq
,"S%d ", i
);
33 if (i
== ACPI_STATE_S4
&& acpi_gbl_FACS
->S4bios_f
)
34 seq_printf(seq
, "S4bios ");
43 static int acpi_system_sleep_open_fs(struct inode
*inode
, struct file
*file
)
45 return single_open(file
, acpi_system_sleep_seq_show
, PDE(inode
)->data
);
49 acpi_system_write_sleep (
51 const char __user
*buffer
,
59 if (count
> sizeof(str
) - 1)
61 memset(str
,0,sizeof(str
));
62 if (copy_from_user(str
, buffer
, count
))
65 /* Check for S4 bios request */
66 if (!strcmp(str
,"4b")) {
67 error
= acpi_suspend(4);
70 state
= simple_strtoul(str
, NULL
, 0);
71 #ifdef CONFIG_SOFTWARE_SUSPEND
73 error
= software_suspend();
77 error
= acpi_suspend(state
);
79 return error
? error
: count
;
82 static int acpi_system_alarm_seq_show(struct seq_file
*seq
, void *offset
)
86 unsigned char rtc_control
= 0;
89 ACPI_FUNCTION_TRACE("acpi_system_alarm_seq_show");
91 spin_lock_irqsave(&rtc_lock
, flags
);
93 sec
= CMOS_READ(RTC_SECONDS_ALARM
);
94 min
= CMOS_READ(RTC_MINUTES_ALARM
);
95 hr
= CMOS_READ(RTC_HOURS_ALARM
);
96 rtc_control
= CMOS_READ(RTC_CONTROL
);
98 /* If we ever get an FACP with proper values... */
99 if (acpi_gbl_FADT
->day_alrm
)
100 /* ACPI spec: only low 6 its should be cared */
101 day
= CMOS_READ(acpi_gbl_FADT
->day_alrm
) & 0x3F;
103 day
= CMOS_READ(RTC_DAY_OF_MONTH
);
104 if (acpi_gbl_FADT
->mon_alrm
)
105 mo
= CMOS_READ(acpi_gbl_FADT
->mon_alrm
);
107 mo
= CMOS_READ(RTC_MONTH
);
108 if (acpi_gbl_FADT
->century
)
109 yr
= CMOS_READ(acpi_gbl_FADT
->century
) * 100 + CMOS_READ(RTC_YEAR
);
111 yr
= CMOS_READ(RTC_YEAR
);
113 spin_unlock_irqrestore(&rtc_lock
, flags
);
115 if (!(rtc_control
& RTC_DM_BINARY
) || RTC_ALWAYS_BCD
) {
124 /* we're trusting the FADT (see above)*/
125 if (!acpi_gbl_FADT
->century
)
126 /* If we're not trusting the FADT, we should at least make it
127 * right for _this_ century... ehm, what is _this_ century?
130 * ASAP: find piece of code in the kernel, e.g. star tracker driver,
131 * which we can trust to determine the century correctly. Atom
132 * watch driver would be nice, too...
134 * if that has not happened, change for first release in 2050:
138 * yr += 2000; // current line of code
140 * if that has not happened either, please do on 2099/12/31:23:59:59
146 seq_printf(seq
,"%4.4u-", yr
);
147 (mo
> 12) ? seq_puts(seq
, "**-") : seq_printf(seq
, "%2.2u-", mo
);
148 (day
> 31) ? seq_puts(seq
, "** ") : seq_printf(seq
, "%2.2u ", day
);
149 (hr
> 23) ? seq_puts(seq
, "**:") : seq_printf(seq
, "%2.2u:", hr
);
150 (min
> 59) ? seq_puts(seq
, "**:") : seq_printf(seq
, "%2.2u:", min
);
151 (sec
> 59) ? seq_puts(seq
, "**\n") : seq_printf(seq
, "%2.2u\n", sec
);
156 static int acpi_system_alarm_open_fs(struct inode
*inode
, struct file
*file
)
158 return single_open(file
, acpi_system_alarm_seq_show
, PDE(inode
)->data
);
168 char *string_end
= NULL
;
169 int result
= -EINVAL
;
172 * Try to find delimeter, only to insert null. The end of the
173 * string won't have one, but is still valid.
175 next
= strpbrk(*p
, "- :");
179 *value
= simple_strtoul(*p
, &string_end
, 10);
181 /* Signal success if we got a good digit */
182 if (string_end
!= *p
)
193 acpi_system_write_alarm (
195 const char __user
*buffer
,
200 char alarm_string
[30] = {'\0'};
201 char *p
= alarm_string
;
202 u32 sec
, min
, hr
, day
, mo
, yr
;
204 unsigned char rtc_control
= 0;
206 ACPI_FUNCTION_TRACE("acpi_system_write_alarm");
208 if (count
> sizeof(alarm_string
) - 1)
209 return_VALUE(-EINVAL
);
211 if (copy_from_user(alarm_string
, buffer
, count
))
212 return_VALUE(-EFAULT
);
214 alarm_string
[count
] = '\0';
216 /* check for time adjustment */
217 if (alarm_string
[0] == '+') {
222 if ((result
= get_date_field(&p
, &yr
)))
224 if ((result
= get_date_field(&p
, &mo
)))
226 if ((result
= get_date_field(&p
, &day
)))
228 if ((result
= get_date_field(&p
, &hr
)))
230 if ((result
= get_date_field(&p
, &min
)))
232 if ((result
= get_date_field(&p
, &sec
)))
256 spin_lock_irq(&rtc_lock
);
258 rtc_control
= CMOS_READ(RTC_CONTROL
);
259 if (!(rtc_control
& RTC_DM_BINARY
) || RTC_ALWAYS_BCD
) {
269 yr
+= CMOS_READ(RTC_YEAR
);
270 mo
+= CMOS_READ(RTC_MONTH
);
271 day
+= CMOS_READ(RTC_DAY_OF_MONTH
);
272 hr
+= CMOS_READ(RTC_HOURS
);
273 min
+= CMOS_READ(RTC_MINUTES
);
274 sec
+= CMOS_READ(RTC_SECONDS
);
277 spin_unlock_irq(&rtc_lock
);
279 if (!(rtc_control
& RTC_DM_BINARY
) || RTC_ALWAYS_BCD
) {
308 if (!(rtc_control
& RTC_DM_BINARY
) || RTC_ALWAYS_BCD
) {
317 spin_lock_irq(&rtc_lock
);
319 * Disable alarm interrupt before setting alarm timer or else
320 * when ACPI_EVENT_RTC is enabled, a spurious ACPI interrupt occurs
322 rtc_control
&= ~RTC_AIE
;
323 CMOS_WRITE(rtc_control
, RTC_CONTROL
);
324 CMOS_READ(RTC_INTR_FLAGS
);
326 /* write the fields the rtc knows about */
327 CMOS_WRITE(hr
, RTC_HOURS_ALARM
);
328 CMOS_WRITE(min
, RTC_MINUTES_ALARM
);
329 CMOS_WRITE(sec
, RTC_SECONDS_ALARM
);
332 * If the system supports an enhanced alarm it will have non-zero
333 * offsets into the CMOS RAM here -- which for some reason are pointing
334 * to the RTC area of memory.
336 if (acpi_gbl_FADT
->day_alrm
)
337 CMOS_WRITE(day
, acpi_gbl_FADT
->day_alrm
);
338 if (acpi_gbl_FADT
->mon_alrm
)
339 CMOS_WRITE(mo
, acpi_gbl_FADT
->mon_alrm
);
340 if (acpi_gbl_FADT
->century
)
341 CMOS_WRITE(yr
/100, acpi_gbl_FADT
->century
);
342 /* enable the rtc alarm interrupt */
343 rtc_control
|= RTC_AIE
;
344 CMOS_WRITE(rtc_control
, RTC_CONTROL
);
345 CMOS_READ(RTC_INTR_FLAGS
);
347 spin_unlock_irq(&rtc_lock
);
349 acpi_clear_event(ACPI_EVENT_RTC
);
350 acpi_enable_event(ACPI_EVENT_RTC
, 0);
356 return_VALUE(result
? result
: count
);
359 extern struct list_head acpi_wakeup_device_list
;
360 extern spinlock_t acpi_device_lock
;
363 acpi_system_wakeup_device_seq_show(struct seq_file
*seq
, void *offset
)
365 struct list_head
* node
, * next
;
367 seq_printf(seq
, "Device Sleep state Status\n");
369 spin_lock(&acpi_device_lock
);
370 list_for_each_safe(node
, next
, &acpi_wakeup_device_list
) {
371 struct acpi_device
* dev
= container_of(node
, struct acpi_device
, wakeup_list
);
373 if (!dev
->wakeup
.flags
.valid
)
375 spin_unlock(&acpi_device_lock
);
376 if (dev
->wakeup
.flags
.run_wake
)
377 seq_printf(seq
, "%4s %4d %8s\n",
378 dev
->pnp
.bus_id
, (u32
) dev
->wakeup
.sleep_state
,
379 dev
->wakeup
.state
.enabled
? "*enabled" : "*disabled");
381 seq_printf(seq
, "%4s %4d %8s\n",
382 dev
->pnp
.bus_id
, (u32
) dev
->wakeup
.sleep_state
,
383 dev
->wakeup
.state
.enabled
? "enabled" : "disabled");
384 spin_lock(&acpi_device_lock
);
386 spin_unlock(&acpi_device_lock
);
391 acpi_system_write_wakeup_device (
393 const char __user
*buffer
,
397 struct list_head
* node
, * next
;
401 struct acpi_device
*found_dev
= NULL
;
403 if (len
> 4) len
= 4;
405 if (copy_from_user(strbuf
, buffer
, len
))
408 sscanf(strbuf
, "%s", str
);
410 spin_lock(&acpi_device_lock
);
411 list_for_each_safe(node
, next
, &acpi_wakeup_device_list
) {
412 struct acpi_device
* dev
= container_of(node
, struct acpi_device
, wakeup_list
);
413 if (!dev
->wakeup
.flags
.valid
)
416 if (!strncmp(dev
->pnp
.bus_id
, str
, 4)) {
417 dev
->wakeup
.state
.enabled
= dev
->wakeup
.state
.enabled
? 0:1;
423 list_for_each_safe(node
, next
, &acpi_wakeup_device_list
) {
424 struct acpi_device
* dev
= container_of(node
,
425 struct acpi_device
, wakeup_list
);
427 if ((dev
!= found_dev
) &&
428 (dev
->wakeup
.gpe_number
== found_dev
->wakeup
.gpe_number
) &&
429 (dev
->wakeup
.gpe_device
== found_dev
->wakeup
.gpe_device
)) {
430 printk(KERN_WARNING
"ACPI: '%s' and '%s' have the same GPE, "
431 "can't disable/enable one seperately\n",
432 dev
->pnp
.bus_id
, found_dev
->pnp
.bus_id
);
433 dev
->wakeup
.state
.enabled
= found_dev
->wakeup
.state
.enabled
;
437 spin_unlock(&acpi_device_lock
);
442 acpi_system_wakeup_device_open_fs(struct inode
*inode
, struct file
*file
)
444 return single_open(file
, acpi_system_wakeup_device_seq_show
, PDE(inode
)->data
);
447 static struct file_operations acpi_system_wakeup_device_fops
= {
448 .open
= acpi_system_wakeup_device_open_fs
,
450 .write
= acpi_system_write_wakeup_device
,
452 .release
= single_release
,
455 static struct file_operations acpi_system_sleep_fops
= {
456 .open
= acpi_system_sleep_open_fs
,
458 .write
= acpi_system_write_sleep
,
460 .release
= single_release
,
463 static struct file_operations acpi_system_alarm_fops
= {
464 .open
= acpi_system_alarm_open_fs
,
466 .write
= acpi_system_write_alarm
,
468 .release
= single_release
,
472 static u32
rtc_handler(void * context
)
474 acpi_clear_event(ACPI_EVENT_RTC
);
475 acpi_disable_event(ACPI_EVENT_RTC
, 0);
477 return ACPI_INTERRUPT_HANDLED
;
480 static int acpi_sleep_proc_init(void)
482 struct proc_dir_entry
*entry
= NULL
;
488 entry
= create_proc_entry(ACPI_SYSTEM_FILE_SLEEP
,
489 S_IFREG
|S_IRUGO
|S_IWUSR
, acpi_root_dir
);
491 entry
->proc_fops
= &acpi_system_sleep_fops
;
494 entry
= create_proc_entry(ACPI_SYSTEM_FILE_ALARM
,
495 S_IFREG
|S_IRUGO
|S_IWUSR
, acpi_root_dir
);
497 entry
->proc_fops
= &acpi_system_alarm_fops
;
499 /* 'wakeup device' [R/W]*/
500 entry
= create_proc_entry(ACPI_SYSTEM_FILE_WAKEUP_DEVICE
,
501 S_IFREG
|S_IRUGO
|S_IWUSR
, acpi_root_dir
);
503 entry
->proc_fops
= &acpi_system_wakeup_device_fops
;
505 acpi_install_fixed_event_handler(ACPI_EVENT_RTC
, rtc_handler
, NULL
);
509 late_initcall(acpi_sleep_proc_init
);