2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
16 * Copyright (C) 2006 infineon
17 * Copyright (C) 2007 John Crispin <blogic@openwrt.org>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/version.h>
24 #include <linux/types.h>
26 #include <linux/init.h>
27 #include <linux/platform_device.h>
28 #include <asm/uaccess.h>
29 #include <asm/unistd.h>
30 #include <linux/errno.h>
31 #include <asm/ifxmips/ifxmips.h>
32 #include <asm/ifxmips/ifxmips_gpio.h>
33 #include <asm/ifxmips/ifxmips_pmu.h>
34 #include <linux/leds.h>
35 #include <linux/delay.h>
37 #define DRVNAME "ifxmips_led"
39 #define IFXMIPS_LED_CLK_EDGE IFXMIPS_LED_FALLING
40 //#define IFXMIPS_LED_CLK_EDGE IFXMIPS_LED_RISING
42 #define IFXMIPS_LED_SPEED IFXMIPS_LED_8HZ
44 #define IFXMIPS_LED_GPIO_PORT 0
46 #define IFXMIPS_MAX_LED 24
49 struct led_classdev cdev
;
54 ifxmips_led_set (unsigned int led
)
57 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CPU0
) | led
, IFXMIPS_LED_CPU0
);
59 EXPORT_SYMBOL(ifxmips_led_set
);
62 ifxmips_led_clear (unsigned int led
)
64 led
= ~(led
& 0xffffff);
65 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CPU0
) & led
, IFXMIPS_LED_CPU0
);
67 EXPORT_SYMBOL(ifxmips_led_clear
);
70 ifxmips_led_blink_set (unsigned int led
)
73 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CON0
) | led
, IFXMIPS_LED_CON0
);
75 EXPORT_SYMBOL(ifxmips_led_blink_set
);
78 ifxmips_led_blink_clear (unsigned int led
)
80 led
= ~(led
& 0xffffff);
81 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CON0
) & led
, IFXMIPS_LED_CON0
);
83 EXPORT_SYMBOL(ifxmips_led_blink_clear
);
86 ifxmips_ledapi_set(struct led_classdev
*led_cdev
, enum led_brightness value
)
88 struct ifxmips_led
*led_dev
= container_of(led_cdev
, struct ifxmips_led
, cdev
);
91 ifxmips_led_set(1 << led_dev
->bit
);
93 ifxmips_led_clear(1 << led_dev
->bit
);
97 ifxmips_led_setup_gpio (void)
101 /* we need to setup pins SH,D,ST (4,5,6) */
102 for (i
= 4; i
< 7; i
++)
104 ifxmips_port_set_altsel0(IFXMIPS_LED_GPIO_PORT
, i
);
105 ifxmips_port_clear_altsel1(IFXMIPS_LED_GPIO_PORT
, i
);
106 ifxmips_port_set_dir_out(IFXMIPS_LED_GPIO_PORT
, i
);
107 ifxmips_port_set_open_drain(IFXMIPS_LED_GPIO_PORT
, i
);
112 ifxmips_led_probe(struct platform_device
*dev
)
116 ifxmips_led_setup_gpio();
118 ifxmips_w32(0, IFXMIPS_LED_AR
);
119 ifxmips_w32(0, IFXMIPS_LED_CPU0
);
120 ifxmips_w32(0, IFXMIPS_LED_CPU1
);
121 ifxmips_w32(LED_CON0_SWU
, IFXMIPS_LED_CON0
);
122 ifxmips_w32(0, IFXMIPS_LED_CON1
);
124 /* setup the clock edge that the shift register is triggered on */
125 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CON0
) & ~IFXMIPS_LED_EDGE_MASK
, IFXMIPS_LED_CON0
);
126 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CON0
) | IFXMIPS_LED_CLK_EDGE
, IFXMIPS_LED_CON0
);
128 /* per default leds 15-0 are set */
129 ifxmips_w32(IFXMIPS_LED_GROUP1
| IFXMIPS_LED_GROUP0
, IFXMIPS_LED_CON1
);
131 /* leds are update periodically by the FPID */
132 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CON1
) & ~IFXMIPS_LED_UPD_MASK
, IFXMIPS_LED_CON1
);
133 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CON1
) | IFXMIPS_LED_UPD_SRC_FPI
, IFXMIPS_LED_CON1
);
135 /* set led update speed */
136 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CON1
) & ~IFXMIPS_LED_MASK
, IFXMIPS_LED_CON1
);
137 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CON1
) | IFXMIPS_LED_SPEED
, IFXMIPS_LED_CON1
);
139 /* adsl 0 and 1 leds are updated by the arc */
140 ifxmips_w32(ifxmips_r32(IFXMIPS_LED_CON0
) | IFXMIPS_LED_ADSL_SRC
, IFXMIPS_LED_CON0
);
142 /* per default, the leds are turned on */
143 ifxmips_pmu_enable(IFXMIPS_PMU_PWDCR_LED
);
145 for(i
= 0; i
< IFXMIPS_MAX_LED
; i
++)
147 struct ifxmips_led
*tmp
= kzalloc(sizeof(struct ifxmips_led
), GFP_KERNEL
);
148 tmp
->cdev
.brightness_set
= ifxmips_ledapi_set
;
149 tmp
->cdev
.name
= kmalloc(sizeof("ifxmips:led:00"), GFP_KERNEL
);
150 sprintf((char*)tmp
->cdev
.name
, "ifxmips:led:%02d", i
);
151 tmp
->cdev
.default_trigger
= NULL
;
153 led_classdev_register(&dev
->dev
, &tmp
->cdev
);
160 ifxmips_led_remove(struct platform_device
*pdev
)
166 platform_driver ifxmips_led_driver
= {
167 .probe
= ifxmips_led_probe
,
168 .remove
= ifxmips_led_remove
,
171 .owner
= THIS_MODULE
,
176 ifxmips_led_init (void)
178 int ret
= platform_driver_register(&ifxmips_led_driver
);
180 printk(KERN_INFO
"ifxmips_led: Error registering platfom driver!");
186 ifxmips_led_exit (void)
188 platform_driver_unregister(&ifxmips_led_driver
);
191 module_init(ifxmips_led_init
);
192 module_exit(ifxmips_led_exit
);