2 * nvec_paz00: OEM specific driver for Compal PAZ00 based devices
4 * Copyright (C) 2011 The AC100 Kernel Team <ac100@lists.launchpad.net>
6 * Authors: Ilya Petrov <ilya.muromec@gmail.com>
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
14 #include <linux/module.h>
15 #include <linux/err.h>
16 #include <linux/slab.h>
17 #include <linux/leds.h>
18 #include <linux/platform_device.h>
21 #define to_nvec_led(led_cdev) \
22 container_of(led_cdev, struct nvec_led, cdev)
24 #define NVEC_LED_REQ {'\x0d', '\x10', '\x45', '\x10', '\x00'}
26 #define NVEC_LED_MAX 8
29 struct led_classdev cdev
;
30 struct nvec_chip
*nvec
;
33 static void nvec_led_brightness_set(struct led_classdev
*led_cdev
,
34 enum led_brightness value
)
36 struct nvec_led
*led
= to_nvec_led(led_cdev
);
37 unsigned char buf
[] = NVEC_LED_REQ
;
40 nvec_write_async(led
->nvec
, buf
, sizeof(buf
));
42 led
->cdev
.brightness
= value
;
46 static int __devinit
nvec_paz00_probe(struct platform_device
*pdev
)
48 struct nvec_chip
*nvec
= dev_get_drvdata(pdev
->dev
.parent
);
52 led
= devm_kzalloc(&pdev
->dev
, sizeof(*led
), GFP_KERNEL
);
56 led
->cdev
.max_brightness
= NVEC_LED_MAX
;
58 led
->cdev
.brightness_set
= nvec_led_brightness_set
;
59 led
->cdev
.name
= "paz00-led";
60 led
->cdev
.flags
|= LED_CORE_SUSPENDRESUME
;
63 platform_set_drvdata(pdev
, led
);
65 ret
= led_classdev_register(&pdev
->dev
, &led
->cdev
);
69 /* to expose the default value to userspace */
70 led
->cdev
.brightness
= 0;
75 static int __devexit
nvec_paz00_remove(struct platform_device
*pdev
)
77 struct nvec_led
*led
= platform_get_drvdata(pdev
);
79 led_classdev_unregister(&led
->cdev
);
84 static struct platform_driver nvec_paz00_driver
= {
85 .probe
= nvec_paz00_probe
,
86 .remove
= __devexit_p(nvec_paz00_remove
),
93 module_platform_driver(nvec_paz00_driver
);
95 MODULE_AUTHOR("Ilya Petrov <ilya.muromec@gmail.com>");
96 MODULE_DESCRIPTION("Tegra NVEC PAZ00 driver");
97 MODULE_LICENSE("GPL");
98 MODULE_ALIAS("platform:nvec-paz00");