From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030966AbdDSSm4 (ORCPT ); Wed, 19 Apr 2017 14:42:56 -0400 Received: from mail-wr0-f193.google.com ([209.85.128.193]:36447 "EHLO mail-wr0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1030949AbdDSSmy (ORCPT ); Wed, 19 Apr 2017 14:42:54 -0400 Subject: Re: [PATCH v3] leds: pca9532: Extend pca9532 device tree support To: Felix Brack , pavel@ucw.cz, rpurdie@rpsys.net, riku.voipio@iki.fi, linux-leds@vger.kernel.org References: <1492069898-19920-1-git-send-email-fb@ltec.ch> Cc: linux-kernel@vger.kernel.org From: Jacek Anaszewski X-Enigmail-Draft-Status: N1110 Message-ID: <119b40f8-76bf-5d9d-54a2-58ad99cc2dc2@gmail.com> Date: Wed, 19 Apr 2017 20:42:05 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Icedove/45.5.1 MIME-Version: 1.0 In-Reply-To: <1492069898-19920-1-git-send-email-fb@ltec.ch> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Felix, On 04/13/2017 09:51 AM, Felix Brack wrote: > This patch extends the device tree support for the pca9532 by adding > the leds 'default-state' property. > > Signed-off-by: Felix Brack > --- > .../devicetree/bindings/leds/leds-pca9532.txt | 10 ++++++++ > drivers/leds/leds-pca9532.c | 27 +++++++++++++++++++++- > include/linux/leds-pca9532.h | 4 ++-- > 3 files changed, 38 insertions(+), 3 deletions(-) > > diff --git a/Documentation/devicetree/bindings/leds/leds-pca9532.txt b/Documentation/devicetree/bindings/leds/leds-pca9532.txt > index 198f3ba..f769c52 100644 > --- a/Documentation/devicetree/bindings/leds/leds-pca9532.txt > +++ b/Documentation/devicetree/bindings/leds/leds-pca9532.txt > @@ -17,6 +17,8 @@ Optional sub-node properties: > - label: see Documentation/devicetree/bindings/leds/common.txt > - type: Output configuration, see dt-bindings/leds/leds-pca9532.h (default NONE) > - linux,default-trigger: see Documentation/devicetree/bindings/leds/common.txt > + - default-state: see Documentation/devicetree/bindings/leds/common.txt > + This property is only valid for sub-nodes of type . > > Example: > #include > @@ -33,6 +35,14 @@ Example: > label = "pca:green:power"; > type = ; > }; > + kernel-booting { > + type = ; > + default-state = "on"; > + }; > + sys-stat { > + type = ; > + default-state = "keep"; // don't touch, was set by U-Boot > + }; > }; > > For more product information please see the link below: > diff --git a/drivers/leds/leds-pca9532.c b/drivers/leds/leds-pca9532.c > index 06e6310..7fea18b 100644 > --- a/drivers/leds/leds-pca9532.c > +++ b/drivers/leds/leds-pca9532.c > @@ -254,6 +254,21 @@ static void pca9532_input_work(struct work_struct *work) > mutex_unlock(&data->update_lock); > } > > +static enum pca9532_state pca9532_getled(struct pca9532_led *led) > +{ > + struct i2c_client *client = led->client; > + struct pca9532_data *data = i2c_get_clientdata(client); > + u8 maxleds = data->chip_info->num_leds; > + char reg; > + enum pca9532_state ret; > + > + mutex_lock(&data->update_lock); > + reg = i2c_smbus_read_byte_data(client, LED_REG(maxleds, led->id)); > + ret = reg >> LED_NUM(led->id)/2; > + mutex_unlock(&data->update_lock); > + return ret; > +} > + > #ifdef CONFIG_LEDS_PCA9532_GPIO > static int pca9532_gpio_request_pin(struct gpio_chip *gc, unsigned offset) > { > @@ -366,7 +381,10 @@ static int pca9532_configure(struct i2c_client *client, > gpios++; > break; > case PCA9532_TYPE_LED: > - led->state = pled->state; > + if (pled->state == PCA9532_KEEP) > + led->state = pca9532_getled(led); > + else > + led->state = pled->state; > led->name = pled->name; > led->ldev.name = led->name; > led->ldev.default_trigger = pled->default_trigger; > @@ -456,6 +474,7 @@ pca9532_of_populate_pdata(struct device *dev, struct device_node *np) > const struct of_device_id *match; > int devid, maxleds; > int i = 0; > + const char *state; > > match = of_match_device(of_pca9532_leds_match, dev); > if (!match) > @@ -475,6 +494,12 @@ pca9532_of_populate_pdata(struct device *dev, struct device_node *np) > of_property_read_u32(child, "type", &pdata->leds[i].type); > of_property_read_string(child, "linux,default-trigger", > &pdata->leds[i].default_trigger); > + if (!of_property_read_string(child, "default-state", &state)) { > + if (!strcmp(state, "on")) > + pdata->leds[i].state = PCA9532_ON; > + else if (!strcmp(state, "keep")) > + pdata->leds[i].state = PCA9532_KEEP; > + } > if (++i >= maxleds) { > of_node_put(child); > break; > diff --git a/include/linux/leds-pca9532.h b/include/linux/leds-pca9532.h > index d215b45..5e240b2 100644 > --- a/include/linux/leds-pca9532.h > +++ b/include/linux/leds-pca9532.h > @@ -22,7 +22,8 @@ enum pca9532_state { > PCA9532_OFF = 0x0, > PCA9532_ON = 0x1, > PCA9532_PWM0 = 0x2, > - PCA9532_PWM1 = 0x3 > + PCA9532_PWM1 = 0x3, > + PCA9532_KEEP = 0xff, > }; > > struct pca9532_led { > @@ -44,4 +45,3 @@ struct pca9532_platform_data { > }; > > #endif /* __LINUX_PCA9532_H */ > - > Applied, thanks. -- Best regards, Jacek Anaszewski