4 * Copyright (C) 2010 SUSE Products GmbH/Novell
6 * Thomas Renninger <trenn@suse.de>
8 * This work is licensed under the terms of the GNU GPL, version 2.
11 #include <linux/kernel.h>
12 #include <linux/acpi.h>
13 #include <linux/debugfs.h>
14 #include <linux/module.h>
15 #include <linux/uaccess.h>
18 MODULE_AUTHOR("Thomas Renninger <trenn@suse.de>");
19 MODULE_DESCRIPTION("ACPI EC sysfs access driver");
20 MODULE_LICENSE("GPL");
22 static bool write_support
;
23 module_param(write_support
, bool, 0644);
24 MODULE_PARM_DESC(write_support
, "Dangerous, reboot and removal of battery may "
27 #define EC_SPACE_SIZE 256
29 static struct dentry
*acpi_ec_debugfs_dir
;
31 static ssize_t
acpi_ec_read_io(struct file
*f
, char __user
*buf
,
32 size_t count
, loff_t
*off
)
34 /* Use this if support reading/writing multiple ECs exists in ec.c:
35 * struct acpi_ec *ec = ((struct seq_file *)f->private_data)->private;
37 unsigned int size
= EC_SPACE_SIZE
;
38 loff_t init_off
= *off
;
43 if (*off
+ count
>= size
) {
51 err
= ec_read(*off
, &byte_read
);
54 if (put_user(byte_read
, buf
+ *off
- init_off
)) {
56 return *off
- init_off
; /* partial read */
65 static ssize_t
acpi_ec_write_io(struct file
*f
, const char __user
*buf
,
66 size_t count
, loff_t
*off
)
68 /* Use this if support reading/writing multiple ECs exists in ec.c:
69 * struct acpi_ec *ec = ((struct seq_file *)f->private_data)->private;
72 unsigned int size
= count
;
73 loff_t init_off
= *off
;
79 if (*off
>= EC_SPACE_SIZE
)
81 if (*off
+ count
>= EC_SPACE_SIZE
) {
82 size
= EC_SPACE_SIZE
- *off
;
88 if (get_user(byte_write
, buf
+ *off
- init_off
)) {
90 return *off
- init_off
; /* partial write */
93 err
= ec_write(*off
, byte_write
);
103 static const struct file_operations acpi_ec_io_ops
= {
104 .owner
= THIS_MODULE
,
106 .read
= acpi_ec_read_io
,
107 .write
= acpi_ec_write_io
,
108 .llseek
= default_llseek
,
111 static int acpi_ec_add_debugfs(struct acpi_ec
*ec
, unsigned int ec_device_count
)
113 struct dentry
*dev_dir
;
117 if (ec_device_count
== 0) {
118 acpi_ec_debugfs_dir
= debugfs_create_dir("ec", NULL
);
119 if (!acpi_ec_debugfs_dir
)
123 sprintf(name
, "ec%u", ec_device_count
);
124 dev_dir
= debugfs_create_dir(name
, acpi_ec_debugfs_dir
);
126 if (ec_device_count
!= 0)
131 if (!debugfs_create_x32("gpe", 0444, dev_dir
, &first_ec
->gpe
))
133 if (!debugfs_create_bool("use_global_lock", 0444, dev_dir
,
134 &first_ec
->global_lock
))
139 if (!debugfs_create_file("io", mode
, dev_dir
, ec
, &acpi_ec_io_ops
))
145 debugfs_remove_recursive(acpi_ec_debugfs_dir
);
149 static int __init
acpi_ec_sys_init(void)
153 err
= acpi_ec_add_debugfs(first_ec
, 0);
159 static void __exit
acpi_ec_sys_exit(void)
161 debugfs_remove_recursive(acpi_ec_debugfs_dir
);
164 module_init(acpi_ec_sys_init
);
165 module_exit(acpi_ec_sys_exit
);