All of lore.kernel.org
 help / color / mirror / Atom feed
From: Claudiu Beznea <Claudiu.Beznea@microchip.com>
To: Sean Young <sean@mess.org>
Cc: <thierry.reding@gmail.com>, <shc_work@mail.ru>,
	<kgene@kernel.org>, <krzk@kernel.org>, <linux@armlinux.org.uk>,
	<mturquette@baylibre.com>, <sboyd@codeaurora.org>,
	<jani.nikula@linux.intel.com>, <joonas.lahtinen@linux.intel.com>,
	<rodrigo.vivi@intel.com>, <airlied@linux.ie>, <kamil@wypas.org>,
	<b.zolnierkie@samsung.com>, <jdelvare@suse.com>,
	<linux@roeck-us.net>, <dmitry.torokhov@gmail.com>,
	<rpurdie@rpsys.net>, <jacek.anaszewski@gmail.com>, <pavel@ucw.cz>,
	<mchehab@kernel.org>, <lee.jones@linaro.org>,
	<daniel.thompson@linaro.org>, <jingoohan1@gmail.com>,
	<milo.kim@ti.com>, <robh+dt@kernel.org>, <mark.rutland@arm.com>,
	<corbet@lwn.net>, <nicolas.ferre@microchip.com>,
	<alexandre.belloni@free-electrons.com>,
	<linux-pwm@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-samsung-soc@vger.kernel.org>, <linux-clk@vger.kernel.org>,
	<intel-gfx@lists.freedesktop.org>,
	<dri-devel@lists.freedesktop.org>, <linux-hwmon@vger.kernel.org>,
	<linux-input@vger.kernel.org>, <linux-leds@vger.kernel.org>,
	<linux-media@vger.kernel.org>, <linux-fbdev@vger.kernel.org>,
	<devicetree@vger.kernel.org>, <linux-doc@vger.kernel.org>
Subject: Re: [PATCH v3 05/10] pwm: add PWM mode to pwm_config()
Date: Thu, 22 Feb 2018 15:23:40 +0200	[thread overview]
Message-ID: <8d0f25e6-3bbf-cbbc-7eef-abde0127f2bc@microchip.com> (raw)
In-Reply-To: <20180222130131.46fcuurp4h6dc7wb@gofer.mess.org>



On 22.02.2018 15:01, Sean Young wrote:
> On Thu, Feb 22, 2018 at 02:01:16PM +0200, Claudiu Beznea wrote:
>> Add PWM mode to pwm_config() function. The drivers which uses pwm_config()
>> were adapted to this change.
>>
>> Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
>> ---
> 
> -snip-
> 
>> diff --git a/drivers/media/rc/ir-rx51.c b/drivers/media/rc/ir-rx51.c
>> index 49265f02e772..a971b02ea021 100644
>> --- a/drivers/media/rc/ir-rx51.c
>> +++ b/drivers/media/rc/ir-rx51.c
>> @@ -55,10 +55,13 @@ static int init_timing_params(struct ir_rx51 *ir_rx51)
>>  {
>>  	struct pwm_device *pwm = ir_rx51->pwm;
>>  	int duty, period = DIV_ROUND_CLOSEST(NSEC_PER_SEC, ir_rx51->freq);
>> +	struct pwm_caps caps = { };
>>  
>>  	duty = DIV_ROUND_CLOSEST(ir_rx51->duty_cycle * period, 100);
>>  
>> -	pwm_config(pwm, duty, period);
>> +	pwm_get_caps(pwm->chip, pwm, &caps);
>> +
>> +	pwm_config(pwm, duty, period, BIT(ffs(caps.modes) - 1));
>>  
>>  	return 0;
>>  }
>> diff --git a/drivers/media/rc/pwm-ir-tx.c b/drivers/media/rc/pwm-ir-tx.c
>> index 27d0f5837a76..c630e1b450a3 100644
>> --- a/drivers/media/rc/pwm-ir-tx.c
>> +++ b/drivers/media/rc/pwm-ir-tx.c
>> @@ -61,6 +61,7 @@ static int pwm_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
>>  {
>>  	struct pwm_ir *pwm_ir = dev->priv;
>>  	struct pwm_device *pwm = pwm_ir->pwm;
>> +	struct pwm_caps caps = { };
>>  	int i, duty, period;
>>  	ktime_t edge;
>>  	long delta;
>> @@ -68,7 +69,9 @@ static int pwm_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
>>  	period = DIV_ROUND_CLOSEST(NSEC_PER_SEC, pwm_ir->carrier);
>>  	duty = DIV_ROUND_CLOSEST(pwm_ir->duty_cycle * period, 100);
>>  
>> -	pwm_config(pwm, duty, period);
>> +	pwm_get_caps(pwm->chip, pwm, &caps);
>> +
>> +	pwm_config(pwm, duty, period, BIT(ffs(caps.modes) - 1));
>>  
>>  	edge = ktime_get();
>>  
> 
> The two PWM rc-core drivers need PWM_MODE(NORMAL), not the first available
> mode that the device supports. If mode normal is not supported, then probe
> should fail.
OK, thank you for your inputs. I will address this in next version.


Thank you,
Claudiu Beznea
> 
> 
> Sean
> 

WARNING: multiple messages have this Message-ID (diff)
From: Claudiu Beznea <Claudiu.Beznea@microchip.com>
To: Sean Young <sean@mess.org>
Cc: mark.rutland@arm.com, milo.kim@ti.com,
	linux-fbdev@vger.kernel.org, devicetree@vger.kernel.org,
	airlied@linux.ie, mturquette@baylibre.com,
	joonas.lahtinen@linux.intel.com, kamil@wypas.org,
	dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
	thierry.reding@gmail.com, alexandre.belloni@free-electrons.com,
	pavel@ucw.cz, lee.jones@linaro.org, linux-clk@vger.kernel.org,
	linux-leds@vger.kernel.org, daniel.thompson@linaro.org,
	linux-samsung-soc@vger.kernel.org, shc_work@mail.ru,
	corbet@lwn.net, linux-doc@vger.kernel.org, linux@armlinux.org.uk,
	krzk@kernel.org, kgene@kernel.org, linux-input@vger.kernel.org,
	linux@roeck-us.net, linux-media@vger.kernel.org,
	linux-pwm@vger.kernel.org, jdelvare@suse.com,
	b.zolnierkie@samsung.com, intel-gfx@lists.freedesktop.org,
	jani.nikula@linux.intel.com, robh+dt@kernel.org,
	jacek.anaszewski@gmail.com, rodrigo.vivi@intel.com, mchehab@ke
Subject: Re: [PATCH v3 05/10] pwm: add PWM mode to pwm_config()
Date: Thu, 22 Feb 2018 13:23:40 +0000	[thread overview]
Message-ID: <8d0f25e6-3bbf-cbbc-7eef-abde0127f2bc@microchip.com> (raw)
In-Reply-To: <20180222130131.46fcuurp4h6dc7wb@gofer.mess.org>



On 22.02.2018 15:01, Sean Young wrote:
> On Thu, Feb 22, 2018 at 02:01:16PM +0200, Claudiu Beznea wrote:
>> Add PWM mode to pwm_config() function. The drivers which uses pwm_config()
>> were adapted to this change.
>>
>> Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
>> ---
> 
> -snip-
> 
>> diff --git a/drivers/media/rc/ir-rx51.c b/drivers/media/rc/ir-rx51.c
>> index 49265f02e772..a971b02ea021 100644
>> --- a/drivers/media/rc/ir-rx51.c
>> +++ b/drivers/media/rc/ir-rx51.c
>> @@ -55,10 +55,13 @@ static int init_timing_params(struct ir_rx51 *ir_rx51)
>>  {
>>  	struct pwm_device *pwm = ir_rx51->pwm;
>>  	int duty, period = DIV_ROUND_CLOSEST(NSEC_PER_SEC, ir_rx51->freq);
>> +	struct pwm_caps caps = { };
>>  
>>  	duty = DIV_ROUND_CLOSEST(ir_rx51->duty_cycle * period, 100);
>>  
>> -	pwm_config(pwm, duty, period);
>> +	pwm_get_caps(pwm->chip, pwm, &caps);
>> +
>> +	pwm_config(pwm, duty, period, BIT(ffs(caps.modes) - 1));
>>  
>>  	return 0;
>>  }
>> diff --git a/drivers/media/rc/pwm-ir-tx.c b/drivers/media/rc/pwm-ir-tx.c
>> index 27d0f5837a76..c630e1b450a3 100644
>> --- a/drivers/media/rc/pwm-ir-tx.c
>> +++ b/drivers/media/rc/pwm-ir-tx.c
>> @@ -61,6 +61,7 @@ static int pwm_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
>>  {
>>  	struct pwm_ir *pwm_ir = dev->priv;
>>  	struct pwm_device *pwm = pwm_ir->pwm;
>> +	struct pwm_caps caps = { };
>>  	int i, duty, period;
>>  	ktime_t edge;
>>  	long delta;
>> @@ -68,7 +69,9 @@ static int pwm_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
>>  	period = DIV_ROUND_CLOSEST(NSEC_PER_SEC, pwm_ir->carrier);
>>  	duty = DIV_ROUND_CLOSEST(pwm_ir->duty_cycle * period, 100);
>>  
>> -	pwm_config(pwm, duty, period);
>> +	pwm_get_caps(pwm->chip, pwm, &caps);
>> +
>> +	pwm_config(pwm, duty, period, BIT(ffs(caps.modes) - 1));
>>  
>>  	edge = ktime_get();
>>  
> 
> The two PWM rc-core drivers need PWM_MODE(NORMAL), not the first available
> mode that the device supports. If mode normal is not supported, then probe
> should fail.
OK, thank you for your inputs. I will address this in next version.


Thank you,
Claudiu Beznea
> 
> 
> Sean
> 

WARNING: multiple messages have this Message-ID (diff)
From: Claudiu Beznea <Claudiu.Beznea@microchip.com>
To: Sean Young <sean@mess.org>
Cc: mark.rutland@arm.com, milo.kim@ti.com,
	linux-fbdev@vger.kernel.org, devicetree@vger.kernel.org,
	airlied@linux.ie, mturquette@baylibre.com,
	joonas.lahtinen@linux.intel.com, kamil@wypas.org,
	dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
	thierry.reding@gmail.com, alexandre.belloni@free-electrons.com,
	pavel@ucw.cz, lee.jones@linaro.org, linux-clk@vger.kernel.org,
	linux-leds@vger.kernel.org, daniel.thompson@linaro.org,
	linux-samsung-soc@vger.kernel.org, shc_work@mail.ru,
	corbet@lwn.net, linux-doc@vger.kernel.org, linux@armlinux.org.uk,
	krzk@kernel.org, kgene@kernel.org, linux-input@vger.kernel.org,
	linux@roeck-us.net, linux-media@vger.kernel.org,
	linux-pwm@vger.kernel.org, jdelvare@suse.com,
	b.zolnierkie@samsung.com, intel-gfx@lists.freedesktop.org,
	jani.nikula@linux.intel.com, robh+dt@kernel.org,
	jacek.anaszewski@gmail.com, rodrigo.vivi@intel.com, mchehab@ke
Subject: Re: [PATCH v3 05/10] pwm: add PWM mode to pwm_config()
Date: Thu, 22 Feb 2018 15:23:40 +0200	[thread overview]
Message-ID: <8d0f25e6-3bbf-cbbc-7eef-abde0127f2bc@microchip.com> (raw)
In-Reply-To: <20180222130131.46fcuurp4h6dc7wb@gofer.mess.org>



On 22.02.2018 15:01, Sean Young wrote:
> On Thu, Feb 22, 2018 at 02:01:16PM +0200, Claudiu Beznea wrote:
>> Add PWM mode to pwm_config() function. The drivers which uses pwm_config()
>> were adapted to this change.
>>
>> Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
>> ---
> 
> -snip-
> 
>> diff --git a/drivers/media/rc/ir-rx51.c b/drivers/media/rc/ir-rx51.c
>> index 49265f02e772..a971b02ea021 100644
>> --- a/drivers/media/rc/ir-rx51.c
>> +++ b/drivers/media/rc/ir-rx51.c
>> @@ -55,10 +55,13 @@ static int init_timing_params(struct ir_rx51 *ir_rx51)
>>  {
>>  	struct pwm_device *pwm = ir_rx51->pwm;
>>  	int duty, period = DIV_ROUND_CLOSEST(NSEC_PER_SEC, ir_rx51->freq);
>> +	struct pwm_caps caps = { };
>>  
>>  	duty = DIV_ROUND_CLOSEST(ir_rx51->duty_cycle * period, 100);
>>  
>> -	pwm_config(pwm, duty, period);
>> +	pwm_get_caps(pwm->chip, pwm, &caps);
>> +
>> +	pwm_config(pwm, duty, period, BIT(ffs(caps.modes) - 1));
>>  
>>  	return 0;
>>  }
>> diff --git a/drivers/media/rc/pwm-ir-tx.c b/drivers/media/rc/pwm-ir-tx.c
>> index 27d0f5837a76..c630e1b450a3 100644
>> --- a/drivers/media/rc/pwm-ir-tx.c
>> +++ b/drivers/media/rc/pwm-ir-tx.c
>> @@ -61,6 +61,7 @@ static int pwm_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
>>  {
>>  	struct pwm_ir *pwm_ir = dev->priv;
>>  	struct pwm_device *pwm = pwm_ir->pwm;
>> +	struct pwm_caps caps = { };
>>  	int i, duty, period;
>>  	ktime_t edge;
>>  	long delta;
>> @@ -68,7 +69,9 @@ static int pwm_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
>>  	period = DIV_ROUND_CLOSEST(NSEC_PER_SEC, pwm_ir->carrier);
>>  	duty = DIV_ROUND_CLOSEST(pwm_ir->duty_cycle * period, 100);
>>  
>> -	pwm_config(pwm, duty, period);
>> +	pwm_get_caps(pwm->chip, pwm, &caps);
>> +
>> +	pwm_config(pwm, duty, period, BIT(ffs(caps.modes) - 1));
>>  
>>  	edge = ktime_get();
>>  
> 
> The two PWM rc-core drivers need PWM_MODE(NORMAL), not the first available
> mode that the device supports. If mode normal is not supported, then probe
> should fail.
OK, thank you for your inputs. I will address this in next version.


Thank you,
Claudiu Beznea
> 
> 
> Sean
> 

WARNING: multiple messages have this Message-ID (diff)
From: Claudiu.Beznea@microchip.com (Claudiu Beznea)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 05/10] pwm: add PWM mode to pwm_config()
Date: Thu, 22 Feb 2018 15:23:40 +0200	[thread overview]
Message-ID: <8d0f25e6-3bbf-cbbc-7eef-abde0127f2bc@microchip.com> (raw)
In-Reply-To: <20180222130131.46fcuurp4h6dc7wb@gofer.mess.org>



On 22.02.2018 15:01, Sean Young wrote:
> On Thu, Feb 22, 2018 at 02:01:16PM +0200, Claudiu Beznea wrote:
>> Add PWM mode to pwm_config() function. The drivers which uses pwm_config()
>> were adapted to this change.
>>
>> Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
>> ---
> 
> -snip-
> 
>> diff --git a/drivers/media/rc/ir-rx51.c b/drivers/media/rc/ir-rx51.c
>> index 49265f02e772..a971b02ea021 100644
>> --- a/drivers/media/rc/ir-rx51.c
>> +++ b/drivers/media/rc/ir-rx51.c
>> @@ -55,10 +55,13 @@ static int init_timing_params(struct ir_rx51 *ir_rx51)
>>  {
>>  	struct pwm_device *pwm = ir_rx51->pwm;
>>  	int duty, period = DIV_ROUND_CLOSEST(NSEC_PER_SEC, ir_rx51->freq);
>> +	struct pwm_caps caps = { };
>>  
>>  	duty = DIV_ROUND_CLOSEST(ir_rx51->duty_cycle * period, 100);
>>  
>> -	pwm_config(pwm, duty, period);
>> +	pwm_get_caps(pwm->chip, pwm, &caps);
>> +
>> +	pwm_config(pwm, duty, period, BIT(ffs(caps.modes) - 1));
>>  
>>  	return 0;
>>  }
>> diff --git a/drivers/media/rc/pwm-ir-tx.c b/drivers/media/rc/pwm-ir-tx.c
>> index 27d0f5837a76..c630e1b450a3 100644
>> --- a/drivers/media/rc/pwm-ir-tx.c
>> +++ b/drivers/media/rc/pwm-ir-tx.c
>> @@ -61,6 +61,7 @@ static int pwm_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
>>  {
>>  	struct pwm_ir *pwm_ir = dev->priv;
>>  	struct pwm_device *pwm = pwm_ir->pwm;
>> +	struct pwm_caps caps = { };
>>  	int i, duty, period;
>>  	ktime_t edge;
>>  	long delta;
>> @@ -68,7 +69,9 @@ static int pwm_ir_tx(struct rc_dev *dev, unsigned int *txbuf,
>>  	period = DIV_ROUND_CLOSEST(NSEC_PER_SEC, pwm_ir->carrier);
>>  	duty = DIV_ROUND_CLOSEST(pwm_ir->duty_cycle * period, 100);
>>  
>> -	pwm_config(pwm, duty, period);
>> +	pwm_get_caps(pwm->chip, pwm, &caps);
>> +
>> +	pwm_config(pwm, duty, period, BIT(ffs(caps.modes) - 1));
>>  
>>  	edge = ktime_get();
>>  
> 
> The two PWM rc-core drivers need PWM_MODE(NORMAL), not the first available
> mode that the device supports. If mode normal is not supported, then probe
> should fail.
OK, thank you for your inputs. I will address this in next version.


Thank you,
Claudiu Beznea
> 
> 
> Sean
> 

  reply	other threads:[~2018-02-22 13:23 UTC|newest]

Thread overview: 119+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-22 12:01 [PATCH v3 00/10] extend PWM framework to support PWM modes Claudiu Beznea
2018-02-22 12:01 ` Claudiu Beznea
2018-02-22 12:01 ` Claudiu Beznea
2018-02-22 12:01 ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 01/10] pwm: extend PWM framework with " Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-24 20:49   ` kbuild test robot
2018-02-24 20:49     ` kbuild test robot
2018-02-24 20:49     ` kbuild test robot
2018-02-24 20:49     ` kbuild test robot
2018-02-26  8:11     ` Claudiu Beznea
2018-02-26  8:11       ` Claudiu Beznea
2018-02-26  8:11       ` Claudiu Beznea
2018-02-26  8:11       ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 02/10] pwm: clps711x: populate PWM mode in of_xlate function Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 03/10] pwm: cros-ec: " Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 04/10] pwm: pxa: " Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 05/10] pwm: add PWM mode to pwm_config() Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:33   ` Daniel Thompson
2018-02-22 12:33     ` Daniel Thompson
2018-02-22 12:33     ` Daniel Thompson
2018-02-22 12:33     ` Daniel Thompson
2018-02-22 13:21     ` Claudiu Beznea
2018-02-22 13:21       ` Claudiu Beznea
2018-02-22 13:21       ` Claudiu Beznea
2018-02-22 13:21       ` Claudiu Beznea
2018-02-26  9:57     ` Jani Nikula
2018-02-26  9:57       ` Jani Nikula
2018-02-26  9:57       ` Jani Nikula
2018-02-26  9:57       ` Jani Nikula
2018-02-26 14:24       ` Claudiu Beznea
2018-02-26 14:24         ` Claudiu Beznea
2018-02-26 14:24         ` Claudiu Beznea
2018-02-26 14:24         ` Claudiu Beznea
2018-02-27 10:54         ` Daniel Thompson
2018-02-27 10:54           ` Daniel Thompson
2018-02-27 10:54           ` Daniel Thompson
2018-02-27 10:54           ` Daniel Thompson
2018-02-27 11:40           ` Claudiu Beznea
2018-02-27 11:40             ` Claudiu Beznea
2018-02-27 11:40             ` Claudiu Beznea
2018-02-27 11:40             ` Claudiu Beznea
2018-02-27 15:38             ` Daniel Thompson
2018-02-27 15:38               ` Daniel Thompson
2018-02-27 15:38               ` Daniel Thompson
2018-02-27 15:38               ` Daniel Thompson
2018-02-27 16:15               ` Claudiu Beznea
2018-02-27 16:15                 ` Claudiu Beznea
2018-02-27 16:15                 ` Claudiu Beznea
2018-02-27 16:15                 ` Claudiu Beznea
2018-02-22 13:01   ` Sean Young
2018-02-22 13:01     ` Sean Young
2018-02-22 13:01     ` Sean Young
2018-02-22 13:23     ` Claudiu Beznea [this message]
2018-02-22 13:23       ` Claudiu Beznea
2018-02-22 13:23       ` Claudiu Beznea
2018-02-22 13:23       ` Claudiu Beznea
2018-02-28 19:44   ` Thierry Reding
2018-02-28 19:44     ` Thierry Reding
2018-02-28 19:44     ` Thierry Reding
2018-02-28 19:44     ` Thierry Reding
2018-02-28 20:04     ` Jani Nikula
2018-02-28 20:04       ` Jani Nikula
2018-02-28 20:04       ` Jani Nikula
2018-02-28 20:04       ` Jani Nikula
2018-03-02  9:28       ` Claudiu Beznea
2018-03-02  9:28         ` Claudiu Beznea
2018-03-02  9:28         ` Claudiu Beznea
2018-03-02  9:28         ` Claudiu Beznea
2018-03-02  9:28         ` Claudiu Beznea
2018-03-02  9:19     ` Claudiu Beznea
2018-03-02  9:19       ` Claudiu Beznea
2018-03-02  9:19       ` Claudiu Beznea
2018-03-02  9:19       ` Claudiu Beznea
2018-03-02  9:19       ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 06/10] pwm: add PWM modes Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 17:28   ` Andy Shevchenko
2018-02-22 17:28     ` Andy Shevchenko
2018-02-22 17:28     ` Andy Shevchenko
2018-02-22 17:28     ` Andy Shevchenko
2018-02-22 17:42     ` Claudiu Beznea
2018-02-22 17:42       ` Claudiu Beznea
2018-02-22 17:42       ` Claudiu Beznea
2018-02-22 17:42       ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 07/10] pwm: atmel: add pwm capabilities Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 08/10] pwm: add push-pull mode support Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 09/10] pwm: add documentation for pwm push-pull mode Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01 ` [PATCH v3 10/10] pwm: atmel: add push-pull mode support Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 12:01   ` Claudiu Beznea
2018-02-22 21:00 ` ✗ Fi.CI.BAT: failure for extend PWM framework to support PWM modes Patchwork
2018-02-23 15:38   ` 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=8d0f25e6-3bbf-cbbc-7eef-abde0127f2bc@microchip.com \
    --to=claudiu.beznea@microchip.com \
    --cc=airlied@linux.ie \
    --cc=alexandre.belloni@free-electrons.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=corbet@lwn.net \
    --cc=daniel.thompson@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jacek.anaszewski@gmail.com \
    --cc=jani.nikula@linux.intel.com \
    --cc=jdelvare@suse.com \
    --cc=jingoohan1@gmail.com \
    --cc=joonas.lahtinen@linux.intel.com \
    --cc=kamil@wypas.org \
    --cc=kgene@kernel.org \
    --cc=krzk@kernel.org \
    --cc=lee.jones@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=linux@roeck-us.net \
    --cc=mark.rutland@arm.com \
    --cc=mchehab@kernel.org \
    --cc=milo.kim@ti.com \
    --cc=mturquette@baylibre.com \
    --cc=nicolas.ferre@microchip.com \
    --cc=pavel@ucw.cz \
    --cc=robh+dt@kernel.org \
    --cc=rodrigo.vivi@intel.com \
    --cc=rpurdie@rpsys.net \
    --cc=sboyd@codeaurora.org \
    --cc=sean@mess.org \
    --cc=shc_work@mail.ru \
    --cc=thierry.reding@gmail.com \
    /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.