All of lore.kernel.org
 help / color / mirror / Atom feed
From: <Claudiu.Beznea@microchip.com>
To: <u.kleine-koenig@pengutronix.de>
Cc: <thierry.reding@gmail.com>, <corbet@lwn.net>,
	<Nicolas.Ferre@microchip.com>, <alexandre.belloni@bootlin.com>,
	<Ludovic.Desroches@microchip.com>, <linux-pwm@vger.kernel.org>,
	<linux-doc@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v8 1/6] pwm: extend PWM framework with PWM modes
Date: Tue, 8 Jan 2019 09:21:34 +0000	[thread overview]
Message-ID: <0ef0b4f1-45c3-0280-c1f0-6d499957f74c@microchip.com> (raw)
In-Reply-To: <20190107221040.uos5qlnkjmcayv73@pengutronix.de>

Hi Uwe,

On 08.01.2019 00:10, Uwe Kleine-König wrote:
> Hello Claudiu,
> 
> On Mon, Jan 07, 2019 at 09:30:55AM +0000, Claudiu.Beznea@microchip.com wrote:
>> On 05.01.2019 23:05, Uwe Kleine-König wrote:
>>> On Thu, Jan 03, 2019 at 01:29:44PM +0000, Claudiu.Beznea@microchip.com wrote:
>>>> From: Claudiu Beznea <claudiu.beznea@microchip.com>
>>>>
>>>> Add basic PWM modes: normal and complementary. These modes should
>>>> differentiate the single output PWM channels from two outputs PWM
>>>> channels. These modes could be set as follow:
>>>> 1. PWM channels with one output per channel:
>>>> - normal mode
>>>> 2. PWM channels with two outputs per channel:
>>>> - normal mode
>>>> - complementary mode
>>>> Since users could use a PWM channel with two output as one output PWM
>>>> channel, the PWM normal mode is allowed to be set for PWM channels with
>>>> two outputs; in fact PWM normal mode should be supported by all PWMs.
>>>
>>> I still think that my suggestion that I sent in reply to your v5 using
>>> .alt_duty_cycle and .alt_offset is the better one as it is more generic.
>>
>> I like it better my way, I explained myself why.
> 
> I couldn't really follow your argument though. You seemed to acknowledge
> that using .alt_duty_cycle and .alt_offset is more generic.

True it is more generic in the way that it gives the possibility to
configure all kind of waveforms. But not all controllers supports this.
The use case of this would be to have dead-times with any values, right?

> Then you
> wrote that the push-pull mode is hardware generated on Atmel with some
> implementation details.

Yes, I wanted to say that Atmel PWM generates only a set of waveforms.

> IMHO these implementation details shouldn't be
> part of the PWM API and atmel's .apply should look as follows:
> 
> 	if (state->alt_duty_cycle == 0) {
> 
> 		... configure for normal mode ...
> 
> 	} else if (state->duty_cycle == state->alt_duty_cycle &&
> 	           state->alt_offset == state->period / 2) {
> 
> 		... configure for push pull mode ...
> 
> 	} else if (state->duty_cycle + state->alt_duty_cycle == state->period &&
> 		   state->alt_offset == state->duty_cycle) {
> 
> 		... configure for complementary mode ...
> 
> 	} else {
> 		return -EINVAL;
> 	}

If so, the user should have been taken care of the relations b/w these
values in order to configure a proper working mode.

It would be good to have Thierry's inputs on these.

> 
> If it turns out to be a common pattern, we can add helper functions à la
> pwm_is_complementary_mode(state) and
> pwm_set_complementary_mode(state, period, duty_cycle). This allows to
> have a generic way to describe a wide range of wave forms in a uniform
> way in the API (which is good) and each driver implements the parts of
> this range that it can support.
> 
>>> I don't repeat what I wrote there assuming you still remember or are
>>> willing to look it up at
>>> e.g. https://www.spinics.net/lists/linux-pwm/msg08174.html (in the 2nd half
>>> of my mail).
>>
>> Yes, I remember it.
> 
> I expected that, my words were more directed to Thierry than you.
>  
>>> Also I think that if the capabilities function is the way forward adding
>>> support to detect availability of polarity inversion should be
>>> considered. 
>>
>> Yep, why not. But it should be done in a different patch. It is not related
>> to this series.
> 
> Yes, given that polarity already exists, this would be a good
> opportunity to introduce the capability function for that and only
> afterwards add the new use case with modes. (But having said this, read
> further as I think that this capability function is a bad idea.)
> 
>>> This would also be an opportunity to split the introduction
>>> of the capabilities function and the introduction of complementary mode.
>>> (But my personal preference would be to just let .apply fail when an
>>> unsupported configuration is requested.)
>>
>> .apply fails when something wrong is requested.
> 
> If my controller doesn't support a second output is it "wrong" to
> request complementary mode? I'd say yes. So you have to catch that in
> .apply anyhow and there is little benefit to be able to ask the
> controller if it supports it beforehand.

This is checked by pwm_supports_mode() called in pwm_apply_state(). If
controller doesn't support the mode, the apply will fail.

> 
> I don't have a provable statistic at hand, but my feeling is that quite
> some users of the i2c frame work get it wrong to first check the
> capabilities and only then try to use them. This is at least error prone
> and harder to use than the apply function returning an error code.
> And on the driver side the upside is to have all stuff related to which
> wave form can be generated and which cannot is a single place. (Just
> consider "inverted complementary mode". Theoretically this should work
> if your controller supports complementary mode and inverted mode. If you
> now have a driver for a controller that can do both, but not at the same
> time, the separation gets ugly. OK, this is a constructed example, but
> in my experience something like that happens earlier or later.)
> 
>>>> [...]
>>>> @@ -53,12 +75,14 @@ enum {
>>>>   * @period: PWM period (in nanoseconds)
>>>>   * @duty_cycle: PWM duty cycle (in nanoseconds)
>>>>   * @polarity: PWM polarity
>>>> + * @modebit: PWM mode bit
>>>>   * @enabled: PWM enabled status
>>>>   */
>>>>  struct pwm_state {
>>>>  	unsigned int period;
>>>>  	unsigned int duty_cycle;
>>>>  	enum pwm_polarity polarity;
>>>> +	unsigned long modebit;
>>>
>>> I fail to see the upside of storing the mode as 2^mode instead of a
>>> plain enum pwm_mode. Given that struct pwm_state is visible for pwm
>>> users a plain pwm_mode would at least be more intuitive.
>>
>> To have all modes supported by a controller grouped in pwm_caps::modes_msk.
> 
> My question was not about struct pwm_caps::modes_msk but about
> struct pwm_state::modebit. As struct pwm_state has visibility even
> outside of the pwm API (i.e. it is used by consumers) it is beneficial
> to keep that simple. Letting a consumer pass in the mode he wants is
> easier to explain than setting a single bit. Also error checking with a
> plain enum is easier because you just do:
> 
> 	if (mode >= MODE_CNT)
> 		error()
> 
> which is easy to grasp. Compare that to
> 
> 	if (!is_power_of_two(modebit) || modebit >= PWM_MODE_BIT(CNT))
> 		error()
> 
> (modulo syntactical correctness).

The reason I choose to have it as bit was the memcmp() at the beginning of
pwm_apply_state() and to avoid starting enum pwm_mode from 1 and to avoid
having bit 0 of pwm_caps::modes_msk unused (in the driver I'm using
PWM_MODE_BIT() macro to fill in the driver's supported modes).

Thank you,
Claudiu Beznea

> 
> Best regards
> Uwe
> 

WARNING: multiple messages have this Message-ID (diff)
From: <Claudiu.Beznea@microchip.com>
To: u.kleine-koenig@pengutronix.de
Cc: thierry.reding@gmail.com, corbet@lwn.net,
	Nicolas.Ferre@microchip.com, alexandre.belloni@bootlin.com,
	Ludovic.Desroches@microchip.com, linux-pwm@vger.kernel.org,
	linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v8 1/6] pwm: extend PWM framework with PWM modes
Date: Tue, 8 Jan 2019 09:21:34 +0000	[thread overview]
Message-ID: <0ef0b4f1-45c3-0280-c1f0-6d499957f74c@microchip.com> (raw)
In-Reply-To: <20190107221040.uos5qlnkjmcayv73@pengutronix.de>

Hi Uwe,

On 08.01.2019 00:10, Uwe Kleine-König wrote:
> Hello Claudiu,
> 
> On Mon, Jan 07, 2019 at 09:30:55AM +0000, Claudiu.Beznea@microchip.com wrote:
>> On 05.01.2019 23:05, Uwe Kleine-König wrote:
>>> On Thu, Jan 03, 2019 at 01:29:44PM +0000, Claudiu.Beznea@microchip.com wrote:
>>>> From: Claudiu Beznea <claudiu.beznea@microchip.com>
>>>>
>>>> Add basic PWM modes: normal and complementary. These modes should
>>>> differentiate the single output PWM channels from two outputs PWM
>>>> channels. These modes could be set as follow:
>>>> 1. PWM channels with one output per channel:
>>>> - normal mode
>>>> 2. PWM channels with two outputs per channel:
>>>> - normal mode
>>>> - complementary mode
>>>> Since users could use a PWM channel with two output as one output PWM
>>>> channel, the PWM normal mode is allowed to be set for PWM channels with
>>>> two outputs; in fact PWM normal mode should be supported by all PWMs.
>>>
>>> I still think that my suggestion that I sent in reply to your v5 using
>>> .alt_duty_cycle and .alt_offset is the better one as it is more generic.
>>
>> I like it better my way, I explained myself why.
> 
> I couldn't really follow your argument though. You seemed to acknowledge
> that using .alt_duty_cycle and .alt_offset is more generic.

True it is more generic in the way that it gives the possibility to
configure all kind of waveforms. But not all controllers supports this.
The use case of this would be to have dead-times with any values, right?

> Then you
> wrote that the push-pull mode is hardware generated on Atmel with some
> implementation details.

Yes, I wanted to say that Atmel PWM generates only a set of waveforms.

> IMHO these implementation details shouldn't be
> part of the PWM API and atmel's .apply should look as follows:
> 
> 	if (state->alt_duty_cycle == 0) {
> 
> 		... configure for normal mode ...
> 
> 	} else if (state->duty_cycle == state->alt_duty_cycle &&
> 	           state->alt_offset == state->period / 2) {
> 
> 		... configure for push pull mode ...
> 
> 	} else if (state->duty_cycle + state->alt_duty_cycle == state->period &&
> 		   state->alt_offset == state->duty_cycle) {
> 
> 		... configure for complementary mode ...
> 
> 	} else {
> 		return -EINVAL;
> 	}

If so, the user should have been taken care of the relations b/w these
values in order to configure a proper working mode.

It would be good to have Thierry's inputs on these.

> 
> If it turns out to be a common pattern, we can add helper functions à la
> pwm_is_complementary_mode(state) and
> pwm_set_complementary_mode(state, period, duty_cycle). This allows to
> have a generic way to describe a wide range of wave forms in a uniform
> way in the API (which is good) and each driver implements the parts of
> this range that it can support.
> 
>>> I don't repeat what I wrote there assuming you still remember or are
>>> willing to look it up at
>>> e.g. https://www.spinics.net/lists/linux-pwm/msg08174.html (in the 2nd half
>>> of my mail).
>>
>> Yes, I remember it.
> 
> I expected that, my words were more directed to Thierry than you.
>  
>>> Also I think that if the capabilities function is the way forward adding
>>> support to detect availability of polarity inversion should be
>>> considered. 
>>
>> Yep, why not. But it should be done in a different patch. It is not related
>> to this series.
> 
> Yes, given that polarity already exists, this would be a good
> opportunity to introduce the capability function for that and only
> afterwards add the new use case with modes. (But having said this, read
> further as I think that this capability function is a bad idea.)
> 
>>> This would also be an opportunity to split the introduction
>>> of the capabilities function and the introduction of complementary mode.
>>> (But my personal preference would be to just let .apply fail when an
>>> unsupported configuration is requested.)
>>
>> .apply fails when something wrong is requested.
> 
> If my controller doesn't support a second output is it "wrong" to
> request complementary mode? I'd say yes. So you have to catch that in
> .apply anyhow and there is little benefit to be able to ask the
> controller if it supports it beforehand.

This is checked by pwm_supports_mode() called in pwm_apply_state(). If
controller doesn't support the mode, the apply will fail.

> 
> I don't have a provable statistic at hand, but my feeling is that quite
> some users of the i2c frame work get it wrong to first check the
> capabilities and only then try to use them. This is at least error prone
> and harder to use than the apply function returning an error code.
> And on the driver side the upside is to have all stuff related to which
> wave form can be generated and which cannot is a single place. (Just
> consider "inverted complementary mode". Theoretically this should work
> if your controller supports complementary mode and inverted mode. If you
> now have a driver for a controller that can do both, but not at the same
> time, the separation gets ugly. OK, this is a constructed example, but
> in my experience something like that happens earlier or later.)
> 
>>>> [...]
>>>> @@ -53,12 +75,14 @@ enum {
>>>>   * @period: PWM period (in nanoseconds)
>>>>   * @duty_cycle: PWM duty cycle (in nanoseconds)
>>>>   * @polarity: PWM polarity
>>>> + * @modebit: PWM mode bit
>>>>   * @enabled: PWM enabled status
>>>>   */
>>>>  struct pwm_state {
>>>>  	unsigned int period;
>>>>  	unsigned int duty_cycle;
>>>>  	enum pwm_polarity polarity;
>>>> +	unsigned long modebit;
>>>
>>> I fail to see the upside of storing the mode as 2^mode instead of a
>>> plain enum pwm_mode. Given that struct pwm_state is visible for pwm
>>> users a plain pwm_mode would at least be more intuitive.
>>
>> To have all modes supported by a controller grouped in pwm_caps::modes_msk.
> 
> My question was not about struct pwm_caps::modes_msk but about
> struct pwm_state::modebit. As struct pwm_state has visibility even
> outside of the pwm API (i.e. it is used by consumers) it is beneficial
> to keep that simple. Letting a consumer pass in the mode he wants is
> easier to explain than setting a single bit. Also error checking with a
> plain enum is easier because you just do:
> 
> 	if (mode >= MODE_CNT)
> 		error()
> 
> which is easy to grasp. Compare that to
> 
> 	if (!is_power_of_two(modebit) || modebit >= PWM_MODE_BIT(CNT))
> 		error()
> 
> (modulo syntactical correctness).

The reason I choose to have it as bit was the memcmp() at the beginning of
pwm_apply_state() and to avoid starting enum pwm_mode from 1 and to avoid
having bit 0 of pwm_caps::modes_msk unused (in the driver I'm using
PWM_MODE_BIT() macro to fill in the driver's supported modes).

Thank you,
Claudiu Beznea

> 
> Best regards
> Uwe
> 

WARNING: multiple messages have this Message-ID (diff)
From: <Claudiu.Beznea@microchip.com>
To: <u.kleine-koenig@pengutronix.de>
Cc: linux-pwm@vger.kernel.org, alexandre.belloni@bootlin.com,
	corbet@lwn.net, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org, Ludovic.Desroches@microchip.com,
	thierry.reding@gmail.com, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v8 1/6] pwm: extend PWM framework with PWM modes
Date: Tue, 8 Jan 2019 09:21:34 +0000	[thread overview]
Message-ID: <0ef0b4f1-45c3-0280-c1f0-6d499957f74c@microchip.com> (raw)
In-Reply-To: <20190107221040.uos5qlnkjmcayv73@pengutronix.de>

Hi Uwe,

On 08.01.2019 00:10, Uwe Kleine-König wrote:
> Hello Claudiu,
> 
> On Mon, Jan 07, 2019 at 09:30:55AM +0000, Claudiu.Beznea@microchip.com wrote:
>> On 05.01.2019 23:05, Uwe Kleine-König wrote:
>>> On Thu, Jan 03, 2019 at 01:29:44PM +0000, Claudiu.Beznea@microchip.com wrote:
>>>> From: Claudiu Beznea <claudiu.beznea@microchip.com>
>>>>
>>>> Add basic PWM modes: normal and complementary. These modes should
>>>> differentiate the single output PWM channels from two outputs PWM
>>>> channels. These modes could be set as follow:
>>>> 1. PWM channels with one output per channel:
>>>> - normal mode
>>>> 2. PWM channels with two outputs per channel:
>>>> - normal mode
>>>> - complementary mode
>>>> Since users could use a PWM channel with two output as one output PWM
>>>> channel, the PWM normal mode is allowed to be set for PWM channels with
>>>> two outputs; in fact PWM normal mode should be supported by all PWMs.
>>>
>>> I still think that my suggestion that I sent in reply to your v5 using
>>> .alt_duty_cycle and .alt_offset is the better one as it is more generic.
>>
>> I like it better my way, I explained myself why.
> 
> I couldn't really follow your argument though. You seemed to acknowledge
> that using .alt_duty_cycle and .alt_offset is more generic.

True it is more generic in the way that it gives the possibility to
configure all kind of waveforms. But not all controllers supports this.
The use case of this would be to have dead-times with any values, right?

> Then you
> wrote that the push-pull mode is hardware generated on Atmel with some
> implementation details.

Yes, I wanted to say that Atmel PWM generates only a set of waveforms.

> IMHO these implementation details shouldn't be
> part of the PWM API and atmel's .apply should look as follows:
> 
> 	if (state->alt_duty_cycle == 0) {
> 
> 		... configure for normal mode ...
> 
> 	} else if (state->duty_cycle == state->alt_duty_cycle &&
> 	           state->alt_offset == state->period / 2) {
> 
> 		... configure for push pull mode ...
> 
> 	} else if (state->duty_cycle + state->alt_duty_cycle == state->period &&
> 		   state->alt_offset == state->duty_cycle) {
> 
> 		... configure for complementary mode ...
> 
> 	} else {
> 		return -EINVAL;
> 	}

If so, the user should have been taken care of the relations b/w these
values in order to configure a proper working mode.

It would be good to have Thierry's inputs on these.

> 
> If it turns out to be a common pattern, we can add helper functions à la
> pwm_is_complementary_mode(state) and
> pwm_set_complementary_mode(state, period, duty_cycle). This allows to
> have a generic way to describe a wide range of wave forms in a uniform
> way in the API (which is good) and each driver implements the parts of
> this range that it can support.
> 
>>> I don't repeat what I wrote there assuming you still remember or are
>>> willing to look it up at
>>> e.g. https://www.spinics.net/lists/linux-pwm/msg08174.html (in the 2nd half
>>> of my mail).
>>
>> Yes, I remember it.
> 
> I expected that, my words were more directed to Thierry than you.
>  
>>> Also I think that if the capabilities function is the way forward adding
>>> support to detect availability of polarity inversion should be
>>> considered. 
>>
>> Yep, why not. But it should be done in a different patch. It is not related
>> to this series.
> 
> Yes, given that polarity already exists, this would be a good
> opportunity to introduce the capability function for that and only
> afterwards add the new use case with modes. (But having said this, read
> further as I think that this capability function is a bad idea.)
> 
>>> This would also be an opportunity to split the introduction
>>> of the capabilities function and the introduction of complementary mode.
>>> (But my personal preference would be to just let .apply fail when an
>>> unsupported configuration is requested.)
>>
>> .apply fails when something wrong is requested.
> 
> If my controller doesn't support a second output is it "wrong" to
> request complementary mode? I'd say yes. So you have to catch that in
> .apply anyhow and there is little benefit to be able to ask the
> controller if it supports it beforehand.

This is checked by pwm_supports_mode() called in pwm_apply_state(). If
controller doesn't support the mode, the apply will fail.

> 
> I don't have a provable statistic at hand, but my feeling is that quite
> some users of the i2c frame work get it wrong to first check the
> capabilities and only then try to use them. This is at least error prone
> and harder to use than the apply function returning an error code.
> And on the driver side the upside is to have all stuff related to which
> wave form can be generated and which cannot is a single place. (Just
> consider "inverted complementary mode". Theoretically this should work
> if your controller supports complementary mode and inverted mode. If you
> now have a driver for a controller that can do both, but not at the same
> time, the separation gets ugly. OK, this is a constructed example, but
> in my experience something like that happens earlier or later.)
> 
>>>> [...]
>>>> @@ -53,12 +75,14 @@ enum {
>>>>   * @period: PWM period (in nanoseconds)
>>>>   * @duty_cycle: PWM duty cycle (in nanoseconds)
>>>>   * @polarity: PWM polarity
>>>> + * @modebit: PWM mode bit
>>>>   * @enabled: PWM enabled status
>>>>   */
>>>>  struct pwm_state {
>>>>  	unsigned int period;
>>>>  	unsigned int duty_cycle;
>>>>  	enum pwm_polarity polarity;
>>>> +	unsigned long modebit;
>>>
>>> I fail to see the upside of storing the mode as 2^mode instead of a
>>> plain enum pwm_mode. Given that struct pwm_state is visible for pwm
>>> users a plain pwm_mode would at least be more intuitive.
>>
>> To have all modes supported by a controller grouped in pwm_caps::modes_msk.
> 
> My question was not about struct pwm_caps::modes_msk but about
> struct pwm_state::modebit. As struct pwm_state has visibility even
> outside of the pwm API (i.e. it is used by consumers) it is beneficial
> to keep that simple. Letting a consumer pass in the mode he wants is
> easier to explain than setting a single bit. Also error checking with a
> plain enum is easier because you just do:
> 
> 	if (mode >= MODE_CNT)
> 		error()
> 
> which is easy to grasp. Compare that to
> 
> 	if (!is_power_of_two(modebit) || modebit >= PWM_MODE_BIT(CNT))
> 		error()
> 
> (modulo syntactical correctness).

The reason I choose to have it as bit was the memcmp() at the beginning of
pwm_apply_state() and to avoid starting enum pwm_mode from 1 and to avoid
having bit 0 of pwm_caps::modes_msk unused (in the driver I'm using
PWM_MODE_BIT() macro to fill in the driver's supported modes).

Thank you,
Claudiu Beznea

> 
> Best regards
> Uwe
> 
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2019-01-08  9:21 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-03 13:29 [PATCH v8 0/6] extend PWM framework to support PWM modes Claudiu.Beznea
2019-01-03 13:29 ` Claudiu.Beznea
2019-01-03 13:29 ` Claudiu.Beznea
2019-01-03 13:29 ` [PATCH v8 1/6] pwm: extend PWM framework with " Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-05 21:05   ` Uwe Kleine-König
2019-01-05 21:05     ` Uwe Kleine-König
2019-01-05 21:05     ` Uwe Kleine-König
2019-01-07  9:30     ` Claudiu.Beznea
2019-01-07  9:30       ` Claudiu.Beznea
2019-01-07  9:30       ` Claudiu.Beznea
2019-01-07 22:10       ` Uwe Kleine-König
2019-01-07 22:10         ` Uwe Kleine-König
2019-01-08  9:21         ` Claudiu.Beznea [this message]
2019-01-08  9:21           ` Claudiu.Beznea
2019-01-08  9:21           ` Claudiu.Beznea
2019-01-08 22:08           ` Uwe Kleine-König
2019-01-08 22:08             ` Uwe Kleine-König
2019-01-08 22:08             ` Uwe Kleine-König
2019-01-09  9:02             ` Claudiu.Beznea
2019-01-09  9:02               ` Claudiu.Beznea
2019-01-09  9:02               ` Claudiu.Beznea
2019-02-05 23:01         ` Thierry Reding
2019-02-05 23:01           ` Thierry Reding
2019-02-06  8:24           ` Uwe Kleine-König
2019-02-06  8:24             ` Uwe Kleine-König
2019-02-13 15:38             ` Claudiu.Beznea
2019-02-13 15:38               ` Claudiu.Beznea
2019-02-13 15:38               ` Claudiu.Beznea
2019-02-14  9:48               ` Uwe Kleine-König
2019-02-14  9:48                 ` Uwe Kleine-König
2019-02-05 22:49     ` Thierry Reding
2019-02-05 22:49       ` Thierry Reding
2019-02-13 15:37       ` Claudiu.Beznea
2019-02-13 15:37         ` Claudiu.Beznea
2019-02-13 15:37         ` Claudiu.Beznea
2019-01-03 13:29 ` [PATCH v8 2/6] pwm: add " Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-05 20:41   ` Uwe Kleine-König
2019-01-05 20:41     ` Uwe Kleine-König
2019-01-07  9:30     ` Claudiu.Beznea
2019-01-07  9:30       ` Claudiu.Beznea
2019-01-07  9:30       ` Claudiu.Beznea
2019-01-03 13:29 ` [PATCH v8 3/6] pwm: atmel: add pwm capabilities Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-03 13:29 ` [PATCH v8 4/6] pwm: add push-pull mode support Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-03 13:29 ` [PATCH v8 5/6] pwm: add documentation for pwm push-pull mode Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-03 13:29   ` Claudiu.Beznea
2019-01-03 13:30 ` [PATCH v8 6/6] pwm: atmel: add push-pull mode support Claudiu.Beznea
2019-01-03 13:30   ` Claudiu.Beznea
2019-01-03 13:30   ` Claudiu.Beznea

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0ef0b4f1-45c3-0280-c1f0-6d499957f74c@microchip.com \
    --to=claudiu.beznea@microchip.com \
    --cc=Ludovic.Desroches@microchip.com \
    --cc=Nicolas.Ferre@microchip.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=corbet@lwn.net \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=thierry.reding@gmail.com \
    --cc=u.kleine-koenig@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.