mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
6bb27d7349
Now that the only field in struct sys_timer is .init, delete the struct, and replace the machine descriptor .timer field with the initialization function itself. This will enable moving timer drivers into drivers/clocksource without having to place a public prototype of each struct sys_timer object into include/linux; the intent is to create a single of_clocksource_init() function that determines which timer driver to initialize by scanning the device dtree, much like the proposed irqchip_init() at: http://www.spinics.net/lists/arm-kernel/msg203686.html Includes mach-omap2 fixes from Igor Grinberg. Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Stephen Warren <swarren@nvidia.com>
108 lines
2.2 KiB
C
108 lines
2.2 KiB
C
/*
|
|
* linux/arch/arm/mach-footbridge/ebsa285.c
|
|
*
|
|
* EBSA285 machine fixup
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/leds.h>
|
|
|
|
#include <asm/hardware/dec21285.h>
|
|
#include <asm/mach-types.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include "common.h"
|
|
|
|
/* LEDs */
|
|
#if defined(CONFIG_NEW_LEDS) && defined(CONFIG_LEDS_CLASS)
|
|
struct ebsa285_led {
|
|
struct led_classdev cdev;
|
|
u8 mask;
|
|
};
|
|
|
|
/*
|
|
* The triggers lines up below will only be used if the
|
|
* LED triggers are compiled in.
|
|
*/
|
|
static const struct {
|
|
const char *name;
|
|
const char *trigger;
|
|
} ebsa285_leds[] = {
|
|
{ "ebsa285:amber", "heartbeat", },
|
|
{ "ebsa285:green", "cpu0", },
|
|
{ "ebsa285:red",},
|
|
};
|
|
|
|
static void ebsa285_led_set(struct led_classdev *cdev,
|
|
enum led_brightness b)
|
|
{
|
|
struct ebsa285_led *led = container_of(cdev,
|
|
struct ebsa285_led, cdev);
|
|
|
|
if (b != LED_OFF)
|
|
*XBUS_LEDS |= led->mask;
|
|
else
|
|
*XBUS_LEDS &= ~led->mask;
|
|
}
|
|
|
|
static enum led_brightness ebsa285_led_get(struct led_classdev *cdev)
|
|
{
|
|
struct ebsa285_led *led = container_of(cdev,
|
|
struct ebsa285_led, cdev);
|
|
|
|
return (*XBUS_LEDS & led->mask) ? LED_FULL : LED_OFF;
|
|
}
|
|
|
|
static int __init ebsa285_leds_init(void)
|
|
{
|
|
int i;
|
|
|
|
if (machine_is_ebsa285())
|
|
return -ENODEV;
|
|
|
|
/* 3 LEDS All ON */
|
|
*XBUS_LEDS |= XBUS_LED_AMBER | XBUS_LED_GREEN | XBUS_LED_RED;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(ebsa285_leds); i++) {
|
|
struct ebsa285_led *led;
|
|
|
|
led = kzalloc(sizeof(*led), GFP_KERNEL);
|
|
if (!led)
|
|
break;
|
|
|
|
led->cdev.name = ebsa285_leds[i].name;
|
|
led->cdev.brightness_set = ebsa285_led_set;
|
|
led->cdev.brightness_get = ebsa285_led_get;
|
|
led->cdev.default_trigger = ebsa285_leds[i].trigger;
|
|
led->mask = BIT(i);
|
|
|
|
if (led_classdev_register(NULL, &led->cdev) < 0) {
|
|
kfree(led);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Since we may have triggers on any subsystem, defer registration
|
|
* until after subsystem_init.
|
|
*/
|
|
fs_initcall(ebsa285_leds_init);
|
|
#endif
|
|
|
|
MACHINE_START(EBSA285, "EBSA285")
|
|
/* Maintainer: Russell King */
|
|
.atag_offset = 0x100,
|
|
.video_start = 0x000a0000,
|
|
.video_end = 0x000bffff,
|
|
.map_io = footbridge_map_io,
|
|
.init_irq = footbridge_init_irq,
|
|
.init_time = footbridge_timer_init,
|
|
.restart = footbridge_restart,
|
|
MACHINE_END
|
|
|