Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / leds / leds-corgi.c
blob29e931f89f9cce65f25f422c87680b6347ad6b92
1 /*
2 * LED Triggers Core
4 * Copyright 2005-2006 Openedhand Ltd.
6 * Author: Richard Purdie <rpurdie@openedhand.com>
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.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/leds.h>
18 #include <asm/mach-types.h>
19 #include <asm/arch/corgi.h>
20 #include <asm/arch/hardware.h>
21 #include <asm/arch/pxa-regs.h>
22 #include <asm/hardware/scoop.h>
24 static void corgiled_amber_set(struct led_classdev *led_cdev, enum led_brightness value)
26 if (value)
27 GPSR0 = GPIO_bit(CORGI_GPIO_LED_ORANGE);
28 else
29 GPCR0 = GPIO_bit(CORGI_GPIO_LED_ORANGE);
32 static void corgiled_green_set(struct led_classdev *led_cdev, enum led_brightness value)
34 if (value)
35 set_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_LED_GREEN);
36 else
37 reset_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_LED_GREEN);
40 static struct led_classdev corgi_amber_led = {
41 .name = "corgi:amber:charge",
42 .default_trigger = "sharpsl-charge",
43 .brightness_set = corgiled_amber_set,
46 static struct led_classdev corgi_green_led = {
47 .name = "corgi:green:mail",
48 .default_trigger = "nand-disk",
49 .brightness_set = corgiled_green_set,
52 #ifdef CONFIG_PM
53 static int corgiled_suspend(struct platform_device *dev, pm_message_t state)
55 #ifdef CONFIG_LEDS_TRIGGERS
56 if (corgi_amber_led.trigger && strcmp(corgi_amber_led.trigger->name, "sharpsl-charge"))
57 #endif
58 led_classdev_suspend(&corgi_amber_led);
59 led_classdev_suspend(&corgi_green_led);
60 return 0;
63 static int corgiled_resume(struct platform_device *dev)
65 led_classdev_resume(&corgi_amber_led);
66 led_classdev_resume(&corgi_green_led);
67 return 0;
69 #endif
71 static int corgiled_probe(struct platform_device *pdev)
73 int ret;
75 ret = led_classdev_register(&pdev->dev, &corgi_amber_led);
76 if (ret < 0)
77 return ret;
79 ret = led_classdev_register(&pdev->dev, &corgi_green_led);
80 if (ret < 0)
81 led_classdev_unregister(&corgi_amber_led);
83 return ret;
86 static int corgiled_remove(struct platform_device *pdev)
88 led_classdev_unregister(&corgi_amber_led);
89 led_classdev_unregister(&corgi_green_led);
90 return 0;
93 static struct platform_driver corgiled_driver = {
94 .probe = corgiled_probe,
95 .remove = corgiled_remove,
96 #ifdef CONFIG_PM
97 .suspend = corgiled_suspend,
98 .resume = corgiled_resume,
99 #endif
100 .driver = {
101 .name = "corgi-led",
102 .owner = THIS_MODULE,
106 static int __init corgiled_init(void)
108 return platform_driver_register(&corgiled_driver);
111 static void __exit corgiled_exit(void)
113 platform_driver_unregister(&corgiled_driver);
116 module_init(corgiled_init);
117 module_exit(corgiled_exit);
119 MODULE_AUTHOR("Richard Purdie <rpurdie@openedhand.com>");
120 MODULE_DESCRIPTION("Corgi LED driver");
121 MODULE_LICENSE("GPL");
122 MODULE_ALIAS("platform:corgi-led");