thinkpad-acpi: R52 brightness_mode has been confirmed
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / leds / leds-fsg.c
blob34935155c1c00077b6e94201cb4c5e6a534f1fad
1 /*
2 * LED Driver for the Freecom FSG-3
4 * Copyright (c) 2008 Rod Whitby <rod@whitby.id.au>
6 * Author: Rod Whitby <rod@whitby.id.au>
8 * Based on leds-spitz.c
9 * Copyright 2005-2006 Openedhand Ltd.
10 * Author: Richard Purdie <rpurdie@openedhand.com>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/platform_device.h>
21 #include <linux/leds.h>
22 #include <mach/hardware.h>
23 #include <asm/io.h>
25 static short __iomem *latch_address;
26 static unsigned short latch_value;
29 static void fsg_led_wlan_set(struct led_classdev *led_cdev,
30 enum led_brightness value)
32 if (value) {
33 latch_value &= ~(1 << FSG_LED_WLAN_BIT);
34 *latch_address = latch_value;
35 } else {
36 latch_value |= (1 << FSG_LED_WLAN_BIT);
37 *latch_address = latch_value;
41 static void fsg_led_wan_set(struct led_classdev *led_cdev,
42 enum led_brightness value)
44 if (value) {
45 latch_value &= ~(1 << FSG_LED_WAN_BIT);
46 *latch_address = latch_value;
47 } else {
48 latch_value |= (1 << FSG_LED_WAN_BIT);
49 *latch_address = latch_value;
53 static void fsg_led_sata_set(struct led_classdev *led_cdev,
54 enum led_brightness value)
56 if (value) {
57 latch_value &= ~(1 << FSG_LED_SATA_BIT);
58 *latch_address = latch_value;
59 } else {
60 latch_value |= (1 << FSG_LED_SATA_BIT);
61 *latch_address = latch_value;
65 static void fsg_led_usb_set(struct led_classdev *led_cdev,
66 enum led_brightness value)
68 if (value) {
69 latch_value &= ~(1 << FSG_LED_USB_BIT);
70 *latch_address = latch_value;
71 } else {
72 latch_value |= (1 << FSG_LED_USB_BIT);
73 *latch_address = latch_value;
77 static void fsg_led_sync_set(struct led_classdev *led_cdev,
78 enum led_brightness value)
80 if (value) {
81 latch_value &= ~(1 << FSG_LED_SYNC_BIT);
82 *latch_address = latch_value;
83 } else {
84 latch_value |= (1 << FSG_LED_SYNC_BIT);
85 *latch_address = latch_value;
89 static void fsg_led_ring_set(struct led_classdev *led_cdev,
90 enum led_brightness value)
92 if (value) {
93 latch_value &= ~(1 << FSG_LED_RING_BIT);
94 *latch_address = latch_value;
95 } else {
96 latch_value |= (1 << FSG_LED_RING_BIT);
97 *latch_address = latch_value;
103 static struct led_classdev fsg_wlan_led = {
104 .name = "fsg:blue:wlan",
105 .brightness_set = fsg_led_wlan_set,
108 static struct led_classdev fsg_wan_led = {
109 .name = "fsg:blue:wan",
110 .brightness_set = fsg_led_wan_set,
113 static struct led_classdev fsg_sata_led = {
114 .name = "fsg:blue:sata",
115 .brightness_set = fsg_led_sata_set,
118 static struct led_classdev fsg_usb_led = {
119 .name = "fsg:blue:usb",
120 .brightness_set = fsg_led_usb_set,
123 static struct led_classdev fsg_sync_led = {
124 .name = "fsg:blue:sync",
125 .brightness_set = fsg_led_sync_set,
128 static struct led_classdev fsg_ring_led = {
129 .name = "fsg:blue:ring",
130 .brightness_set = fsg_led_ring_set,
135 #ifdef CONFIG_PM
136 static int fsg_led_suspend(struct platform_device *dev, pm_message_t state)
138 led_classdev_suspend(&fsg_wlan_led);
139 led_classdev_suspend(&fsg_wan_led);
140 led_classdev_suspend(&fsg_sata_led);
141 led_classdev_suspend(&fsg_usb_led);
142 led_classdev_suspend(&fsg_sync_led);
143 led_classdev_suspend(&fsg_ring_led);
144 return 0;
147 static int fsg_led_resume(struct platform_device *dev)
149 led_classdev_resume(&fsg_wlan_led);
150 led_classdev_resume(&fsg_wan_led);
151 led_classdev_resume(&fsg_sata_led);
152 led_classdev_resume(&fsg_usb_led);
153 led_classdev_resume(&fsg_sync_led);
154 led_classdev_resume(&fsg_ring_led);
155 return 0;
157 #endif
160 static int fsg_led_probe(struct platform_device *pdev)
162 int ret;
164 /* Map the LED chip select address space */
165 latch_address = (unsigned short *) ioremap(IXP4XX_EXP_BUS_BASE(2), 512);
166 if (!latch_address) {
167 ret = -ENOMEM;
168 goto failremap;
171 latch_value = 0xffff;
172 *latch_address = latch_value;
174 ret = led_classdev_register(&pdev->dev, &fsg_wlan_led);
175 if (ret < 0)
176 goto failwlan;
178 ret = led_classdev_register(&pdev->dev, &fsg_wan_led);
179 if (ret < 0)
180 goto failwan;
182 ret = led_classdev_register(&pdev->dev, &fsg_sata_led);
183 if (ret < 0)
184 goto failsata;
186 ret = led_classdev_register(&pdev->dev, &fsg_usb_led);
187 if (ret < 0)
188 goto failusb;
190 ret = led_classdev_register(&pdev->dev, &fsg_sync_led);
191 if (ret < 0)
192 goto failsync;
194 ret = led_classdev_register(&pdev->dev, &fsg_ring_led);
195 if (ret < 0)
196 goto failring;
198 return ret;
200 failring:
201 led_classdev_unregister(&fsg_sync_led);
202 failsync:
203 led_classdev_unregister(&fsg_usb_led);
204 failusb:
205 led_classdev_unregister(&fsg_sata_led);
206 failsata:
207 led_classdev_unregister(&fsg_wan_led);
208 failwan:
209 led_classdev_unregister(&fsg_wlan_led);
210 failwlan:
211 iounmap(latch_address);
212 failremap:
214 return ret;
217 static int fsg_led_remove(struct platform_device *pdev)
219 led_classdev_unregister(&fsg_wlan_led);
220 led_classdev_unregister(&fsg_wan_led);
221 led_classdev_unregister(&fsg_sata_led);
222 led_classdev_unregister(&fsg_usb_led);
223 led_classdev_unregister(&fsg_sync_led);
224 led_classdev_unregister(&fsg_ring_led);
226 iounmap(latch_address);
228 return 0;
232 static struct platform_driver fsg_led_driver = {
233 .probe = fsg_led_probe,
234 .remove = fsg_led_remove,
235 #ifdef CONFIG_PM
236 .suspend = fsg_led_suspend,
237 .resume = fsg_led_resume,
238 #endif
239 .driver = {
240 .name = "fsg-led",
245 static int __init fsg_led_init(void)
247 return platform_driver_register(&fsg_led_driver);
250 static void __exit fsg_led_exit(void)
252 platform_driver_unregister(&fsg_led_driver);
256 module_init(fsg_led_init);
257 module_exit(fsg_led_exit);
259 MODULE_AUTHOR("Rod Whitby <rod@whitby.id.au>");
260 MODULE_DESCRIPTION("Freecom FSG-3 LED driver");
261 MODULE_LICENSE("GPL");