i8k.c |  117 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 117 insertions(+)

Index: dtor/drivers/char/i8k.c
===================================================================
--- dtor.orig/drivers/char/i8k.c
+++ dtor/drivers/char/i8k.c
@@ -22,6 +22,7 @@
 #include <linux/proc_fs.h>
 #include <linux/seq_file.h>
 #include <linux/dmi.h>
+#include <linux/device.h>
 #include <asm/uaccess.h>
 #include <asm/io.h>
 
@@ -87,6 +88,13 @@ static struct file_operations i8k_fops =
        .ioctl          = i8k_ioctl,
 };
 
+static struct device_driver i8k_driver = {
+       .name           = "i8k",
+       .bus            = &platform_bus_type,
+};
+
+static struct platform_device *i8k_device;
+ 
 struct smm_regs {
        unsigned int eax;
        unsigned int ebx __attribute__ ((packed));
@@ -406,6 +414,89 @@ static int i8k_open_fs(struct inode *ino
        return single_open(file, i8k_proc_show, NULL);
 }
 
+static ssize_t i8k_sysfs_cpu_temp_show(struct device *dev, char *buf)
+{
+       int temp = i8k_get_cpu_temp();
+
+       return temp < 0 ? -EIO : sprintf(buf, "%d\n", temp);
+}
+
+static ssize_t i8k_sysfs_fan1_show(struct device *dev, char *buf)
+{
+       int status = i8k_get_fan_status(0);
+       return status < 0 ? -EIO : sprintf(buf, "%d\n", status);
+}
+
+static ssize_t i8k_sysfs_fan1_set(struct device *dev, const char *buf, size_t 
count)
+{
+       unsigned long state;
+       char *rest;
+
+       if (restricted && !capable(CAP_SYS_ADMIN))
+               return -EPERM;
+
+       state = simple_strtoul(buf, &rest, 10);
+       if (*rest || state > I8K_FAN_MAX)
+               return -EINVAL;
+
+       if (i8k_set_fan(0, state) < 0)
+               return -EIO;
+
+       return count;
+}
+
+static ssize_t i8k_sysfs_fan2_show(struct device *dev, char *buf)
+{
+       int status = i8k_get_fan_status(1);
+       return status < 0 ? -EIO : sprintf(buf, "%d\n", status);
+}
+
+static ssize_t i8k_sysfs_fan2_set(struct device *dev, const char *buf, size_t 
count)
+{
+       unsigned long state;
+       char *rest;
+
+       if (restricted && !capable(CAP_SYS_ADMIN))
+               return -EPERM;
+
+       state = simple_strtoul(buf, &rest, 10);
+       if (*rest || state > I8K_FAN_MAX)
+               return -EINVAL;
+
+       if (i8k_set_fan(1, state) < 0)
+               return -EIO;
+
+       return count;
+}
+
+static ssize_t i8k_sysfs_fan1_speed_show(struct device *dev, char *buf)
+{
+       int speed = i8k_get_fan_speed(0);
+       return speed < 0 ? -EIO : sprintf(buf, "%d\n", speed);
+}
+
+static ssize_t i8k_sysfs_fan2_speed_show(struct device *dev, char *buf)
+{
+       int speed = i8k_get_fan_speed(1);
+       return speed < 0 ? -EIO : sprintf(buf, "%d\n", speed);
+}
+
+static ssize_t i8k_sysfs_power_status_show(struct device *dev, char *buf)
+{
+       int status = power_status ? i8k_get_power_status() : -1;
+       return status < 0 ? -EIO : sprintf(buf, "%d\n", status);
+}
+
+static struct device_attribute i8k_device_attrs[] = {
+       __ATTR(cpu_temp, 0444, i8k_sysfs_cpu_temp_show, NULL),
+       __ATTR(fan1_state, 0644, i8k_sysfs_fan1_show, i8k_sysfs_fan1_set),
+       __ATTR(fan2_state, 0644, i8k_sysfs_fan2_show, i8k_sysfs_fan2_set),
+       __ATTR(fan1_speed, 0444, i8k_sysfs_fan1_speed_show, NULL),
+       __ATTR(fan2_speed, 0444, i8k_sysfs_fan2_speed_show, NULL),
+       __ATTR(power_status, 0444, i8k_sysfs_power_status_show, NULL),
+       __ATTR_NULL
+};
+
 static struct dmi_system_id __initdata i8k_dmi_table[] = {
        {
                .ident = "Dell Inspiron",
@@ -490,6 +581,7 @@ static int __init i8k_probe(void)
 static int __init i8k_init(void)
 {
        struct proc_dir_entry *proc_i8k;
+       int err, i;
 
        /* Are we running on an supported laptop? */
        if (i8k_probe())
@@ -503,15 +595,40 @@ static int __init i8k_init(void)
        proc_i8k->proc_fops = &i8k_fops;
        proc_i8k->owner = THIS_MODULE;
 
+       err = driver_register(&i8k_driver);
+       if (err)
+               goto fail1;
+
+       i8k_device = platform_device_register_simple("i8k", -1, NULL, 0);
+       if (IS_ERR(i8k_device)) {
+               err = PTR_ERR(i8k_device);
+               goto fail2;
+       }
+
+       for (i = 0; attr_name(i8k_device_attrs[i]); i++) {
+               err = device_create_file(&i8k_device->dev, 
&i8k_device_attrs[i]);
+               if (err)
+                       goto fail3;
+       }
+
        printk(KERN_INFO
               "Dell laptop SMM driver v%s Massimo Dal Zotto ([EMAIL 
PROTECTED])\n",
               I8K_VERSION);
 
        return 0;
+
+fail3: while (--i >= 0)
+               device_remove_file(&i8k_device->dev, &i8k_device_attrs[i]);
+       platform_device_unregister(i8k_device);
+fail2: driver_unregister(&i8k_driver);
+fail1: remove_proc_entry("i8k", NULL);
+       return err;
 }
 
 static void __exit i8k_exit(void)
 {
+       platform_device_unregister(i8k_device);
+       driver_unregister(&i8k_driver);
        remove_proc_entry("i8k", NULL);
 }
 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to