1 // SPDX-License-Identifier: GPL-2.0
3 * linux/arch/arm/mach-footbridge/ebsa285.c
5 * EBSA285 machine fixup
7 #include <linux/init.h>
9 #include <linux/spinlock.h>
10 #include <linux/slab.h>
11 #include <linux/leds.h>
13 #include <asm/hardware/dec21285.h>
14 #include <asm/mach-types.h>
16 #include <asm/mach/arch.h>
21 #if defined(CONFIG_NEW_LEDS) && defined(CONFIG_LEDS_CLASS)
22 #define XBUS_AMBER_L BIT(0)
23 #define XBUS_GREEN_L BIT(1)
24 #define XBUS_RED_L BIT(2)
25 #define XBUS_TOGGLE BIT(7)
28 struct led_classdev cdev;
33 * The triggers lines up below will only be used if the
34 * LED triggers are compiled in.
40 { "ebsa285:amber", "cpu0", },
41 { "ebsa285:green", "heartbeat", },
45 static unsigned char hw_led_state;
46 static void __iomem *xbus;
48 static void ebsa285_led_set(struct led_classdev *cdev,
49 enum led_brightness b)
51 struct ebsa285_led *led = container_of(cdev,
52 struct ebsa285_led, cdev);
55 hw_led_state |= led->mask;
57 hw_led_state &= ~led->mask;
58 writeb(hw_led_state, xbus);
61 static enum led_brightness ebsa285_led_get(struct led_classdev *cdev)
63 struct ebsa285_led *led = container_of(cdev,
64 struct ebsa285_led, cdev);
66 return hw_led_state & led->mask ? LED_OFF : LED_FULL;
69 static int __init ebsa285_leds_init(void)
73 if (!machine_is_ebsa285())
76 xbus = ioremap(XBUS_CS2, SZ_4K);
81 hw_led_state = XBUS_AMBER_L | XBUS_GREEN_L | XBUS_RED_L;
82 writeb(hw_led_state, xbus);
84 for (i = 0; i < ARRAY_SIZE(ebsa285_leds); i++) {
85 struct ebsa285_led *led;
87 led = kzalloc(sizeof(*led), GFP_KERNEL);
91 led->cdev.name = ebsa285_leds[i].name;
92 led->cdev.brightness_set = ebsa285_led_set;
93 led->cdev.brightness_get = ebsa285_led_get;
94 led->cdev.default_trigger = ebsa285_leds[i].trigger;
97 if (led_classdev_register(NULL, &led->cdev) < 0) {
107 * Since we may have triggers on any subsystem, defer registration
108 * until after subsystem_init.
110 fs_initcall(ebsa285_leds_init);
113 MACHINE_START(EBSA285, "EBSA285")
114 /* Maintainer: Russell King */
115 .atag_offset = 0x100,
116 .video_start = 0x000a0000,
117 .video_end = 0x000bffff,
118 .map_io = footbridge_map_io,
119 .init_early = footbridge_sched_clock,
120 .init_irq = footbridge_init_irq,
121 .init_time = footbridge_timer_init,
122 .restart = footbridge_restart,