lkml.org 
[lkml]   [2020]   [May]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH 1/3] leds: add aw2013 driver
From
Date
> Hi!
>
>> +#define AW2013_NAME "aw2013"
> That's.... not really useful define. Make it NAME? Drop it?
Will drop it as well as (unnecessary) lines it is used in.
>> +#define AW2013_TIME_STEP 130
> I'd add comment with /* units */.
Will add.
>> +#define STATE_OFF 0
>> +#define STATE_KEEP 1
>> +#define STATE_ON 2
> We should add enum into core for this...
>
>> +static int aw2013_chip_init(struct aw2013 *chip)
>> +{
>> + int i, ret;
>> +
>> + ret = regmap_write(chip->regmap, AW2013_GCR, AW2013_GCR_ENABLE);
>> + if (ret) {
>> + dev_err(&chip->client->dev, "Failed to enable the chip: %d\n",
>> + ret);
>> + goto error;
>> + }
>> +
>> + for (i = 0; i < chip->num_leds; i++) {
>> + ret = regmap_update_bits(chip->regmap,
>> + AW2013_LCFG(chip->leds[i].num),
>> + AW2013_LCFG_IMAX_MASK,
>> + chip->leds[i].imax);
>> + if (ret) {
>> + dev_err(&chip->client->dev,
>> + "Failed to set maximum current for led %d: %d\n",
>> + chip->leds[i].num, ret);
>> + goto error;
>> + }
>> + }
>> +
>> +error:
>> + return ret;
>> +}
> No need for goto if you are just returning.
Will change it.
>> +static bool aw2013_chip_in_use(struct aw2013 *chip)
>> +{
>> + int i;
>> +
>> + for (i = 0; i < chip->num_leds; i++)
>> + if (chip->leds[i].cdev.brightness)
>> + return true;
>> +
>> + return false;
>> +}
> How is this going to interact with ledstate == KEEP?
>
>> +static int aw2013_brightness_set(struct led_classdev *cdev,
>> + enum led_brightness brightness)
>> +{
>> + struct aw2013_led *led = container_of(cdev, struct aw2013_led, cdev);
>> + int ret, num;
>> +
>> + mutex_lock(&led->chip->mutex);
>> +
>> + if (aw2013_chip_in_use(led->chip)) {
>> + ret = aw2013_chip_enable(led->chip);
>> + if (ret)
>> + return ret;
>> + }
> You are returning with mutex held.
Will fix.
>> + /* Never on - just set to off */
>> + if (!*delay_on)
>> + return aw2013_brightness_set(&led->cdev, LED_OFF);
>> +
>> + /* Never off - just set to brightness */
>> + if (!*delay_off)
>> + return aw2013_brightness_set(&led->cdev, led->cdev.brightness);
> Is this dance neccessary? Should we do it in the core somewhere?
Right now blink_set() can be called with either delay_on or delay_off
being zero.

Passing zero into calculations I do later will result in garbage so
I'm trying to avoid it.

Core could probably handle situation where both are zero (This way
default values will be shared across all drivers) and if only
delay_on is zero it could disable led and the blink mode. (As if
brightness was set to 0)
In case where only delay_off is zero it's a bit more complicated
since driver should disable blinking but leave led on if it was
blinking already.

That also means that my current solution is a bit broken since changing
delay_off to zero while led is already blinking will call brightness_set
without clearing the mode bit so the led will still blink.

For now I will fix that and leave all those checks in place.
>> + } else {
>> + led->imax = 1; // 5mA
>> + dev_info(&client->dev,
>> + "DT property led-max-microamp is missing!\n");
>> + }
> Lets remove the exclamation mark.
Will do.
>> + led->num = source;
>> + led->chip = chip;
>> + led->fwnode = of_fwnode_handle(child);
>> +
>> + if (!of_property_read_string(child, "default-state", &str)) {
>> + if (!strcmp(str, "on"))
>> + led->default_state = STATE_ON;
>> + else if (!strcmp(str, "keep"))
>> + led->default_state = STATE_KEEP;
>> + else
>> + led->default_state = STATE_OFF;
>> + }
> We should really have something in core for this. Should we support
> arbitrary brightness there?
Not sure if there is good dt property for that.
>> +static void aw2013_read_current_state(struct aw2013 *chip)
>> +{
>> + int i, led_on;
>> +
>> + regmap_read(chip->regmap, AW2013_LCTR, &led_on);
>> +
>> + for (i = 0; i < chip->num_leds; i++) {
>> + if (!(led_on & AW2013_LCTR_LE(chip->leds[i].num))) {
>> + chip->leds[i].cdev.brightness = LED_OFF;
>> + continue;
>> + }
>> + regmap_read(chip->regmap, AW2013_REG_PWM(chip->leds[i].num),
>> + &chip->leds[i].cdev.brightness);
>> + }
>> +}
>> +
>> +static void aw2013_init_default_state(struct aw2013_led *led)
>> +{
>> + switch (led->default_state) {
>> + case STATE_ON:
>> + led->cdev.brightness = LED_FULL;
>> + break;
>> + case STATE_OFF:
>> + led->cdev.brightness = LED_OFF;
>> + } /* On keep - just set brightness that was retrieved previously */
>> +
>> + aw2013_brightness_set(&led->cdev, led->cdev.brightness);
>> +}
> Aha; I guess this makes "keeping" the state to work. Do you really
> need that functionality?
I don't need that. On some theoretical device the chip could be
enabled by bootloader but I consider that unlikely. I can drop
support for keeping state. It would be then easier to get rid of
"default_state" and "fwnode" in device struct. Should I?
>
> Pretty nice driver, thanks.
>
> Pavel

\
 
 \ /
  Last update: 2020-05-05 19:20    [W:2.535 / U:0.408 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site