summaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/files-2.6.23/drivers/leds/leds-alix.c
blob: 103ca7dfa4d798dd207f8cec0b4534a618575e76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
 * LEDs driver for PCEngines ALIX 2/3 series
 *
 * Copyright (C) 2007 Petr Liebman
 *
 * Based on leds-wrap.c
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/leds.h>
#include <linux/err.h>
#include <asm/io.h>

#define DRVNAME "alix-led"

#define ALIX_LED1_PORT		(0x6100)
#define ALIX_LED1_ON		(1<<22)
#define ALIX_LED1_OFF		(1<<6)

#define ALIX_LED2_PORT		(0x6180)
#define ALIX_LED2_ON		(1<<25)
#define ALIX_LED2_OFF		(1<<9)

#define ALIX_LED3_PORT		(0x6180)
#define ALIX_LED3_ON		(1<<27)
#define ALIX_LED3_OFF		(1<<11)


static struct platform_device *pdev;

static void alix_led_set_1(struct led_classdev *led_cdev,
		enum led_brightness value)
{
	if (value)
		outl(ALIX_LED1_ON, ALIX_LED1_PORT);
	else
		outl(ALIX_LED1_OFF, ALIX_LED1_PORT);
}

static void alix_led_set_2(struct led_classdev *led_cdev,
		enum led_brightness value)
{
	if (value)
		outl(ALIX_LED2_ON, ALIX_LED2_PORT);
	else
		outl(ALIX_LED2_OFF, ALIX_LED2_PORT);
}

static void alix_led_set_3(struct led_classdev *led_cdev,
		enum led_brightness value)
{
	if (value)
		outl(ALIX_LED3_ON, ALIX_LED3_PORT);
	else
		outl(ALIX_LED3_OFF, ALIX_LED3_PORT);
}

static struct led_classdev alix_led_1 = {
	.name		= "alix:1",
	.brightness_set	= alix_led_set_1,
};

static struct led_classdev alix_led_2 = {
	.name		= "alix:2",
	.brightness_set	= alix_led_set_2,
};

static struct led_classdev alix_led_3 = {
	.name		= "alix:3",
	.brightness_set	= alix_led_set_3,
};


#ifdef CONFIG_PM
static int alix_led_suspend(struct platform_device *dev,
		pm_message_t state)
{
	led_classdev_suspend(&alix_led_1);
	led_classdev_suspend(&alix_led_2);
	led_classdev_suspend(&alix_led_3);
	return 0;
}

static int alix_led_resume(struct platform_device *dev)
{
	led_classdev_resume(&alix_led_1);
	led_classdev_resume(&alix_led_2);
	led_classdev_resume(&alix_led_3);
	return 0;
}
#else
#define alix_led_suspend NULL
#define alix_led_resume NULL
#endif

static int alix_led_probe(struct platform_device *pdev)
{
	int ret;

	ret = led_classdev_register(&pdev->dev, &alix_led_1);
	if (ret >= 0)
	{
		ret = led_classdev_register(&pdev->dev, &alix_led_2);
		if (ret >= 0)
		{
			ret = led_classdev_register(&pdev->dev, &alix_led_3);
			if (ret < 0)
				led_classdev_unregister(&alix_led_2);
		}
		if (ret < 0)
			led_classdev_unregister(&alix_led_1);
	}
	return ret;
}

static int alix_led_remove(struct platform_device *pdev)
{
	led_classdev_unregister(&alix_led_1);
	led_classdev_unregister(&alix_led_2);
	led_classdev_unregister(&alix_led_3);
	return 0;
}

static struct platform_driver alix_led_driver = {
	.probe		= alix_led_probe,
	.remove		= alix_led_remove,
	.suspend	= alix_led_suspend,
	.resume		= alix_led_resume,
	.driver		= {
		.name		= DRVNAME,
		.owner		= THIS_MODULE,
	},
};

static int __init alix_led_init(void)
{
	int ret;

	ret = platform_driver_register(&alix_led_driver);
	if (ret < 0)
		goto out;

	pdev = platform_device_register_simple(DRVNAME, -1, NULL, 0);
	if (IS_ERR(pdev)) {
		ret = PTR_ERR(pdev);
		platform_driver_unregister(&alix_led_driver);
		goto out;
	}

out:
	return ret;
}

static void __exit alix_led_exit(void)
{
	platform_device_unregister(pdev);
	platform_driver_unregister(&alix_led_driver);
}

module_init(alix_led_init);
module_exit(alix_led_exit);

MODULE_AUTHOR("Petr Liebman");
MODULE_DESCRIPTION("PCEngines ALIX LED driver");
MODULE_LICENSE("GPL");