2008-02-07 10:10:28 +00:00
/*
* LED Triggers Core
* For the HP Jornada 620 / 660 / 680 / 690 handhelds
*
* Copyright 2008 Kristoffer Ericson < kristoffer . ericson @ gmail . com >
* this driver is based on leds - spitz . c by Richard Purdie .
*
* 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 .
*/
2011-08-25 15:59:15 -07:00
# include <linux/module.h>
2008-02-07 10:10:28 +00:00
# include <linux/kernel.h>
# include <linux/platform_device.h>
# include <linux/leds.h>
# include <asm/hd64461.h>
2008-10-20 13:02:48 +09:00
# include <mach/hp6xx.h>
2008-02-07 10:10:28 +00:00
2008-03-09 20:59:57 +00:00
static void hp6xxled_green_set ( struct led_classdev * led_cdev ,
enum led_brightness value )
2008-02-07 10:10:28 +00:00
{
u8 v8 ;
v8 = inb ( PKDR ) ;
if ( value )
outb ( v8 & ( ~ PKDR_LED_GREEN ) , PKDR ) ;
else
outb ( v8 | PKDR_LED_GREEN , PKDR ) ;
}
2008-03-09 20:59:57 +00:00
static void hp6xxled_red_set ( struct led_classdev * led_cdev ,
enum led_brightness value )
2008-02-07 10:10:28 +00:00
{
u16 v16 ;
v16 = inw ( HD64461_GPBDR ) ;
if ( value )
outw ( v16 & ( ~ HD64461_GPBDR_LED_RED ) , HD64461_GPBDR ) ;
else
outw ( v16 | HD64461_GPBDR_LED_RED , HD64461_GPBDR ) ;
}
static struct led_classdev hp6xx_red_led = {
. name = " hp6xx:red " ,
. default_trigger = " hp6xx-charge " ,
. brightness_set = hp6xxled_red_set ,
2009-01-08 17:55:03 +00:00
. flags = LED_CORE_SUSPENDRESUME ,
2008-02-07 10:10:28 +00:00
} ;
static struct led_classdev hp6xx_green_led = {
. name = " hp6xx:green " ,
2016-06-10 07:59:56 +02:00
. default_trigger = " disk-activity " ,
2008-02-07 10:10:28 +00:00
. brightness_set = hp6xxled_green_set ,
2009-01-08 17:55:03 +00:00
. flags = LED_CORE_SUSPENDRESUME ,
2008-02-07 10:10:28 +00:00
} ;
static int hp6xxled_probe ( struct platform_device * pdev )
{
int ret ;
2015-09-06 01:23:37 +05:30
ret = devm_led_classdev_register ( & pdev - > dev , & hp6xx_red_led ) ;
2008-02-07 10:10:28 +00:00
if ( ret < 0 )
return ret ;
2015-09-06 01:23:37 +05:30
return devm_led_classdev_register ( & pdev - > dev , & hp6xx_green_led ) ;
2008-02-07 10:10:28 +00:00
}
static struct platform_driver hp6xxled_driver = {
. probe = hp6xxled_probe ,
. driver = {
. name = " hp6xx-led " ,
} ,
} ;
2012-01-10 15:09:24 -08:00
module_platform_driver ( hp6xxled_driver ) ;
2008-02-07 10:10:28 +00:00
MODULE_AUTHOR ( " Kristoffer Ericson <kristoffer.ericson@gmail.com> " ) ;
MODULE_DESCRIPTION ( " HP Jornada 6xx LED driver " ) ;
MODULE_LICENSE ( " GPL " ) ;
2012-01-10 15:09:24 -08:00
MODULE_ALIAS ( " platform:hp6xx-led " ) ;