From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Schwierzeck Date: Fri, 29 Mar 2019 20:15:30 +0100 Subject: [U-Boot] [PATCH V2 1/8] led: add initial support for bcm6858 In-Reply-To: <1553270528-23011-1-git-send-email-philippe.reynes@softathome.com> References: <1553270528-23011-1-git-send-email-philippe.reynes@softathome.com> Message-ID: <844ebbf0-b06e-07f9-c85a-df8860f46aad@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Am 22.03.19 um 17:02 schrieb Philippe Reynes: > The driver add the support of the led IP on bcm6858. > This led IP can drive up to 32 leds, and can handle > blinking. > > Signed-off-by: Philippe Reynes > --- > Changelog: > v2: > - use const for array bcm6858_flash_rate (thanks Daniel) > - use int for array bcm6858_flash_rate (thanks Daniel) > > doc/device-tree-bindings/leds/leds-bcm6858.txt | 51 +++++ > drivers/led/Kconfig | 7 + > drivers/led/Makefile | 1 + > drivers/led/led_bcm6858.c | 250 +++++++++++++++++++++++++ > 4 files changed, 309 insertions(+) > create mode 100644 doc/device-tree-bindings/leds/leds-bcm6858.txt > create mode 100644 drivers/led/led_bcm6858.c > Reviewed-by: Daniel Schwierzeck -- - Daniel