1 // SPDX-License-Identifier: GPL-2.0-only
3 * arch/arm/mach-orion5x/board-d2net.c
5 * LaCie d2Network and Big Disk Network NAS setup
7 * Copyright (C) 2009 Simon Guinot <sguinot@lacie.com>
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12 #include <linux/platform_device.h>
13 #include <linux/pci.h>
14 #include <linux/irq.h>
15 #include <linux/leds.h>
16 #include <linux/gpio.h>
17 #include <linux/gpio/machine.h>
18 #include <asm/mach-types.h>
19 #include <asm/mach/arch.h>
20 #include <asm/mach/pci.h>
21 #include <plat/orion-gpio.h>
25 /*****************************************************************************
26 * LaCie d2 Network Info
27 ****************************************************************************/
29 /*****************************************************************************
31 ****************************************************************************/
34 * The blue front LED is wired to the CPLD and can blink in relation with the
37 * The following array detail the different LED registers and the combination
38 * of their possible values:
40 * led_off | blink_ctrl | SATA active | LED state
44 * 0 | 1 | 0 | blink (rate 300ms)
47 * Notes: The blue and the red front LED's can't be on at the same time.
48 * Red LED have priority.
51 #define D2NET_GPIO_RED_LED 6
52 #define D2NET_GPIO_BLUE_LED_BLINK_CTRL 16
53 #define D2NET_GPIO_BLUE_LED_OFF 23
55 static struct gpio_led d2net_leds
[] = {
57 .name
= "d2net:blue:sata",
58 .default_trigger
= "default-on",
61 .name
= "d2net:red:fail",
65 static struct gpio_led_platform_data d2net_led_data
= {
66 .num_leds
= ARRAY_SIZE(d2net_leds
),
70 static struct platform_device d2net_gpio_leds
= {
74 .platform_data
= &d2net_led_data
,
78 static struct gpiod_lookup_table d2net_leds_gpio_table
= {
79 .dev_id
= "leds-gpio",
81 GPIO_LOOKUP_IDX("orion_gpio0", D2NET_GPIO_BLUE_LED_OFF
, NULL
,
83 GPIO_LOOKUP_IDX("orion_gpio0", D2NET_GPIO_RED_LED
, NULL
,
89 static void __init
d2net_gpio_leds_init(void)
93 /* Configure register blink_ctrl to allow SATA activity LED blinking. */
94 err
= gpio_request(D2NET_GPIO_BLUE_LED_BLINK_CTRL
, "blue LED blink");
96 err
= gpio_direction_output(D2NET_GPIO_BLUE_LED_BLINK_CTRL
, 1);
98 gpio_free(D2NET_GPIO_BLUE_LED_BLINK_CTRL
);
101 pr_err("d2net: failed to configure blue LED blink GPIO\n");
103 gpiod_add_lookup_table(&d2net_leds_gpio_table
);
104 platform_device_register(&d2net_gpio_leds
);
107 /*****************************************************************************
109 ****************************************************************************/
111 void __init
d2net_init(void)
113 d2net_gpio_leds_init();
115 pr_notice("d2net: Flash write are not yet supported.\n");