mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
09c434b8a0
Add SPDX license identifiers to all files which: - Have no license information of any form - Have MODULE_LICENCE("GPL*") inside which was used in the initial scan/conversion to ignore the file These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
67 lines
1.6 KiB
C
67 lines
1.6 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright 2006 - Florian Fainelli <florian@openwrt.org>
|
|
*
|
|
* Control the Cobalt Qube/RaQ front LED
|
|
*/
|
|
#include <linux/io.h>
|
|
#include <linux/ioport.h>
|
|
#include <linux/leds.h>
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/types.h>
|
|
|
|
#define LED_FRONT_LEFT 0x01
|
|
#define LED_FRONT_RIGHT 0x02
|
|
|
|
static void __iomem *led_port;
|
|
static u8 led_value;
|
|
|
|
static void qube_front_led_set(struct led_classdev *led_cdev,
|
|
enum led_brightness brightness)
|
|
{
|
|
if (brightness)
|
|
led_value = LED_FRONT_LEFT | LED_FRONT_RIGHT;
|
|
else
|
|
led_value = ~(LED_FRONT_LEFT | LED_FRONT_RIGHT);
|
|
writeb(led_value, led_port);
|
|
}
|
|
|
|
static struct led_classdev qube_front_led = {
|
|
.name = "qube::front",
|
|
.brightness = LED_FULL,
|
|
.brightness_set = qube_front_led_set,
|
|
.default_trigger = "default-on",
|
|
};
|
|
|
|
static int cobalt_qube_led_probe(struct platform_device *pdev)
|
|
{
|
|
struct resource *res;
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
if (!res)
|
|
return -EBUSY;
|
|
|
|
led_port = devm_ioremap(&pdev->dev, res->start, resource_size(res));
|
|
if (!led_port)
|
|
return -ENOMEM;
|
|
|
|
led_value = LED_FRONT_LEFT | LED_FRONT_RIGHT;
|
|
writeb(led_value, led_port);
|
|
|
|
return devm_led_classdev_register(&pdev->dev, &qube_front_led);
|
|
}
|
|
|
|
static struct platform_driver cobalt_qube_led_driver = {
|
|
.probe = cobalt_qube_led_probe,
|
|
.driver = {
|
|
.name = "cobalt-qube-leds",
|
|
},
|
|
};
|
|
|
|
module_platform_driver(cobalt_qube_led_driver);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DESCRIPTION("Front LED support for Cobalt Server");
|
|
MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
|
|
MODULE_ALIAS("platform:cobalt-qube-leds");
|