From mboxrd@z Thu Jan 1 00:00:00 1970 From: laurent.pinchart@ideasonboard.com (Laurent Pinchart) Date: Mon, 22 Apr 2013 12:00:02 +0200 Subject: [PATCH] ARM: shmobile: lager: Add GPIO LEDs In-Reply-To: <1366599990-31751-1-git-send-email-horms+renesas@verge.net.au> References: <1366599990-31751-1-git-send-email-horms+renesas@verge.net.au> Message-ID: <1761228.8meccMO5Km@avalon> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi Simon, Thank you for the patch. On Monday 22 April 2013 12:06:30 Simon Horman wrote: > The board has 3 LEDs connected to GPIOs. Add a led-gpio device to > support them. > > Based on "ARM: shmobile: marzen: Add GPIO LEDs" by Laurent Pinchart. > > Cc: Laurent Pinchart > Signed-off-by: Simon Horman > --- > arch/arm/mach-shmobile/board-lager.c | 37 +++++++++++++++++++++++++++++++++ > 1 file changed, 37 insertions(+) > > Tested on lager board. > Based on the tag renesas-next-20130419 of my renesas tree. > > diff --git a/arch/arm/mach-shmobile/board-lager.c > b/arch/arm/mach-shmobile/board-lager.c index 6114edd..a8aa04f 100644 > --- a/arch/arm/mach-shmobile/board-lager.c > +++ b/arch/arm/mach-shmobile/board-lager.c > @@ -21,13 +21,49 @@ > #include > #include > #include > +#include > #include > +#include > #include > #include > #include > #include > #include > > +/* LEDS */ > +static struct gpio_led lager_leds[] = { > + { > + .name = "led8", > + .gpio = RCAR_GP_PIN(5, 17), > + .default_state = LEDS_GPIO_DEFSTATE_ON, > + }, { > + .name = "led7", > + .gpio = RCAR_GP_PIN(4, 23), > + .default_state = LEDS_GPIO_DEFSTATE_ON, > + }, { > + .name = "led6", > + .gpio = RCAR_GP_PIN(4, 22), > + .default_state = LEDS_GPIO_DEFSTATE_ON, Just out of curiosity, why is the default state on ? > + }, > +}; > + > +static struct gpio_led_platform_data lager_leds_pdata = { > + .leds = lager_leds, > + .num_leds = ARRAY_SIZE(lager_leds), > +}; > + > +static struct platform_device leds_device = { > + .name = "leds-gpio", > + .id = 0, As there's a single leds-gpio device, maybe id = -1 ? > + .dev = { > + .platform_data = &lager_leds_pdata, > + }, > +}; > + > +static struct platform_device *lager_devices[] __initdata = { > + &leds_device, > +}; > + > static const struct pinctrl_map lager_pinctrl_map[] = { > /* SCIF0 (CN19: DEBUG SERIAL0) */ > PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.6", "pfc-r8a7790", > @@ -46,6 +82,7 @@ static void __init lager_add_standard_devices(void) > r8a7790_pinmux_init(); > > r8a7790_add_standard_devices(); > + platform_add_devices(lager_devices, ARRAY_SIZE(lager_devices)); > } > > static const char *lager_boards_compat_dt[] __initdata = { -- Regards, Laurent Pinchart