3 * For the HP Jornada 620/660/680/690 handhelds
5 * Copyright 2008 Kristoffer Ericson <kristoffer.ericson@gmail.com>
6 * this driver is based on leds-spitz.c by Richard Purdie.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/platform_device.h>
16 #include <linux/leds.h>
17 #include <asm/hd64461.h>
18 #include <mach/hp6xx.h>
20 static void hp6xxled_green_set(struct led_classdev *led_cdev,
21 enum led_brightness value)
27 outb(v8 & (~PKDR_LED_GREEN), PKDR);
29 outb(v8 | PKDR_LED_GREEN, PKDR);
32 static void hp6xxled_red_set(struct led_classdev *led_cdev,
33 enum led_brightness value)
37 v16 = inw(HD64461_GPBDR);
39 outw(v16 & (~HD64461_GPBDR_LED_RED), HD64461_GPBDR);
41 outw(v16 | HD64461_GPBDR_LED_RED, HD64461_GPBDR);
44 static struct led_classdev hp6xx_red_led = {
46 .default_trigger = "hp6xx-charge",
47 .brightness_set = hp6xxled_red_set,
48 .flags = LED_CORE_SUSPENDRESUME,
51 static struct led_classdev hp6xx_green_led = {
52 .name = "hp6xx:green",
53 .default_trigger = "ide-disk",
54 .brightness_set = hp6xxled_green_set,
55 .flags = LED_CORE_SUSPENDRESUME,
58 static int hp6xxled_probe(struct platform_device *pdev)
62 ret = devm_led_classdev_register(&pdev->dev, &hp6xx_red_led);
66 return devm_led_classdev_register(&pdev->dev, &hp6xx_green_led);
69 static struct platform_driver hp6xxled_driver = {
70 .probe = hp6xxled_probe,
76 module_platform_driver(hp6xxled_driver);
78 MODULE_AUTHOR("Kristoffer Ericson <kristoffer.ericson@gmail.com>");
79 MODULE_DESCRIPTION("HP Jornada 6xx LED driver");
80 MODULE_LICENSE("GPL");
81 MODULE_ALIAS("platform:hp6xx-led");