blob: 366b6055e33063e5461d5fdc2bdac3ba23fff611 [file] [log] [blame]
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +00001/*
2 * LED Triggers Core
3 * For the HP Jornada 620/660/680/690 handhelds
4 *
5 * Copyright 2008 Kristoffer Ericson <kristoffer.ericson@gmail.com>
6 * this driver is based on leds-spitz.c by Richard Purdie.
7 *
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.
11 */
12
Axel Lin86383b52011-08-25 15:59:15 -070013#include <linux/module.h>
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000014#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/platform_device.h>
17#include <linux/leds.h>
18#include <asm/hd64461.h>
Paul Mundt7639a452008-10-20 13:02:48 +090019#include <mach/hp6xx.h>
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000020
Németh Márton4d404fd2008-03-09 20:59:57 +000021static void hp6xxled_green_set(struct led_classdev *led_cdev,
22 enum led_brightness value)
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000023{
24 u8 v8;
25
26 v8 = inb(PKDR);
27 if (value)
28 outb(v8 & (~PKDR_LED_GREEN), PKDR);
29 else
30 outb(v8 | PKDR_LED_GREEN, PKDR);
31}
32
Németh Márton4d404fd2008-03-09 20:59:57 +000033static void hp6xxled_red_set(struct led_classdev *led_cdev,
34 enum led_brightness value)
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000035{
36 u16 v16;
37
38 v16 = inw(HD64461_GPBDR);
39 if (value)
40 outw(v16 & (~HD64461_GPBDR_LED_RED), HD64461_GPBDR);
41 else
42 outw(v16 | HD64461_GPBDR_LED_RED, HD64461_GPBDR);
43}
44
45static struct led_classdev hp6xx_red_led = {
46 .name = "hp6xx:red",
47 .default_trigger = "hp6xx-charge",
48 .brightness_set = hp6xxled_red_set,
Richard Purdie859cb7f2009-01-08 17:55:03 +000049 .flags = LED_CORE_SUSPENDRESUME,
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000050};
51
52static struct led_classdev hp6xx_green_led = {
53 .name = "hp6xx:green",
54 .default_trigger = "ide-disk",
55 .brightness_set = hp6xxled_green_set,
Richard Purdie859cb7f2009-01-08 17:55:03 +000056 .flags = LED_CORE_SUSPENDRESUME,
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000057};
58
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000059static int hp6xxled_probe(struct platform_device *pdev)
60{
61 int ret;
62
63 ret = led_classdev_register(&pdev->dev, &hp6xx_red_led);
64 if (ret < 0)
65 return ret;
66
67 ret = led_classdev_register(&pdev->dev, &hp6xx_green_led);
68 if (ret < 0)
69 led_classdev_unregister(&hp6xx_red_led);
70
71 return ret;
72}
73
74static int hp6xxled_remove(struct platform_device *pdev)
75{
76 led_classdev_unregister(&hp6xx_red_led);
77 led_classdev_unregister(&hp6xx_green_led);
78
79 return 0;
80}
81
82static struct platform_driver hp6xxled_driver = {
83 .probe = hp6xxled_probe,
84 .remove = hp6xxled_remove,
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000085 .driver = {
86 .name = "hp6xx-led",
Kay Sievers3c4ded92008-04-15 14:34:30 -070087 .owner = THIS_MODULE,
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000088 },
89};
90
Axel Lin892a8842012-01-10 15:09:24 -080091module_platform_driver(hp6xxled_driver);
Kristoffer Ericsond39a7a62008-02-07 10:10:28 +000092
93MODULE_AUTHOR("Kristoffer Ericson <kristoffer.ericson@gmail.com>");
94MODULE_DESCRIPTION("HP Jornada 6xx LED driver");
95MODULE_LICENSE("GPL");
Axel Lin892a8842012-01-10 15:09:24 -080096MODULE_ALIAS("platform:hp6xx-led");