* [PATCH 1/2] pwm: lpss: select core part automatically
@ 2015-11-18 11:25 Mika Westerberg
2015-11-18 11:25 ` [PATCH 2/2] pwm: lpss: Rework the sequence of programming PWM_SW_UPDATE Mika Westerberg
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Mika Westerberg @ 2015-11-18 11:25 UTC (permalink / raw)
To: Thierry Reding; +Cc: Andy Shevchenko, Qipeng Zha, Mika Westerberg, linux-pwm
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
We have two users of core part right now. Let them to select core part
automatically.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
---
drivers/pwm/Kconfig | 15 +++++----------
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig
index 2f4641a0e88b..aef635b7e2d1 100644
--- a/drivers/pwm/Kconfig
+++ b/drivers/pwm/Kconfig
@@ -222,18 +222,12 @@ config PWM_LPC32XX
will be called pwm-lpc32xx.
config PWM_LPSS
- tristate "Intel LPSS PWM support"
- depends on X86
- help
- Generic PWM framework driver for Intel Low Power Subsystem PWM
- controller.
-
- To compile this driver as a module, choose M here: the module
- will be called pwm-lpss.
+ tristate
config PWM_LPSS_PCI
tristate "Intel LPSS PWM PCI driver"
- depends on PWM_LPSS && PCI
+ depends on X86 && PCI
+ select PWM_LPSS
help
The PCI driver for Intel Low Power Subsystem PWM controller.
@@ -242,7 +236,8 @@ config PWM_LPSS_PCI
config PWM_LPSS_PLATFORM
tristate "Intel LPSS PWM platform driver"
- depends on PWM_LPSS && ACPI
+ depends on X86 && ACPI
+ select PWM_LPSS
help
The platform driver for Intel Low Power Subsystem PWM controller.
--
2.6.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/2] pwm: lpss: Rework the sequence of programming PWM_SW_UPDATE 2015-11-18 11:25 [PATCH 1/2] pwm: lpss: select core part automatically Mika Westerberg @ 2015-11-18 11:25 ` Mika Westerberg 2015-12-16 15:53 ` Thierry Reding 2015-12-03 9:28 ` [PATCH 1/2] pwm: lpss: select core part automatically Mika Westerberg 2015-12-16 15:52 ` Thierry Reding 2 siblings, 1 reply; 5+ messages in thread From: Mika Westerberg @ 2015-11-18 11:25 UTC (permalink / raw) To: Thierry Reding; +Cc: Andy Shevchenko, Qipeng Zha, Mika Westerberg, linux-pwm Setting of PWM_SW_UPDATE is bit different in Intel Broxton compared to the previous generation SoCs. Previously it was OK to set the bit many times (from userspace via sysfs for example) before the PWM is actually enabled. Starting from Intel Broxton it seems that we must set PWM_SW_UPDATE only once before the PWM is enabled. Otherwise it is possible that the PWM does not start properly. Change the sequence of how PWM_SW_UPDATE is programmed so that we only set it in pwm_lpss_config() when the PWM is already enabled. The initial setting of PWM_SW_UPDATE will be done when PWM gets enabled. This should make the driver work with the previous generation Intel SoCs and Broxton. Add also small delay after the bit is set to let the hardware propagate it properly. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> --- Applies on top of Qipeng's patch here: https://patchwork.ozlabs.org/patch/545313/ drivers/pwm/pwm-lpss.c | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/drivers/pwm/pwm-lpss.c b/drivers/pwm/pwm-lpss.c index 320dbf250cc5..6063c3dcbd46 100644 --- a/drivers/pwm/pwm-lpss.c +++ b/drivers/pwm/pwm-lpss.c @@ -13,6 +13,7 @@ * published by the Free Software Foundation. */ +#include <linux/delay.h> #include <linux/io.h> #include <linux/time.h> #include <linux/kernel.h> @@ -80,6 +81,13 @@ static inline void pwm_lpss_write(const struct pwm_device *pwm, u32 value) writel(value, lpwm->regs + pwm->hwpwm * PWM_SIZE + PWM); } +static void pwm_lpss_update(struct pwm_device *pwm) +{ + pwm_lpss_write(pwm, pwm_lpss_read(pwm) | PWM_SW_UPDATE); + /* Give it some time to propagate */ + usleep_range(10, 50); +} + static int pwm_lpss_config(struct pwm_chip *chip, struct pwm_device *pwm, int duty_ns, int period_ns) { @@ -117,10 +125,15 @@ static int pwm_lpss_config(struct pwm_chip *chip, struct pwm_device *pwm, base_unit &= (base_unit_range - 1); ctrl |= (u32) base_unit << PWM_BASE_UNIT_SHIFT; ctrl |= on_time_div; - /* request PWM to update on next cycle */ - ctrl |= PWM_SW_UPDATE; pwm_lpss_write(pwm, ctrl); + /* + * If the PWM is already enabled we need to notify the hardware + * about the change by setting PWM_SW_UPDATE. + */ + if (pwm_is_enabled(pwm)) + pwm_lpss_update(pwm); + pm_runtime_put(chip->dev); return 0; @@ -129,6 +142,12 @@ static int pwm_lpss_config(struct pwm_chip *chip, struct pwm_device *pwm, static int pwm_lpss_enable(struct pwm_chip *chip, struct pwm_device *pwm) { pm_runtime_get_sync(chip->dev); + + /* + * Hardware must first see PWM_SW_UPDATE before the PWM can be + * enabled. + */ + pwm_lpss_update(pwm); pwm_lpss_write(pwm, pwm_lpss_read(pwm) | PWM_ENABLE); return 0; } -- 2.6.2 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] pwm: lpss: Rework the sequence of programming PWM_SW_UPDATE 2015-11-18 11:25 ` [PATCH 2/2] pwm: lpss: Rework the sequence of programming PWM_SW_UPDATE Mika Westerberg @ 2015-12-16 15:53 ` Thierry Reding 0 siblings, 0 replies; 5+ messages in thread From: Thierry Reding @ 2015-12-16 15:53 UTC (permalink / raw) To: Mika Westerberg; +Cc: Andy Shevchenko, Qipeng Zha, linux-pwm [-- Attachment #1: Type: text/plain, Size: 1196 bytes --] On Wed, Nov 18, 2015 at 01:25:18PM +0200, Mika Westerberg wrote: > Setting of PWM_SW_UPDATE is bit different in Intel Broxton compared to the > previous generation SoCs. Previously it was OK to set the bit many times > (from userspace via sysfs for example) before the PWM is actually enabled. > > Starting from Intel Broxton it seems that we must set PWM_SW_UPDATE only > once before the PWM is enabled. Otherwise it is possible that the PWM does > not start properly. > > Change the sequence of how PWM_SW_UPDATE is programmed so that we only set > it in pwm_lpss_config() when the PWM is already enabled. The initial > setting of PWM_SW_UPDATE will be done when PWM gets enabled. This should > make the driver work with the previous generation Intel SoCs and Broxton. > > Add also small delay after the bit is set to let the hardware propagate it > properly. > > Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> > --- > Applies on top of Qipeng's patch here: > > https://patchwork.ozlabs.org/patch/545313/ > > drivers/pwm/pwm-lpss.c | 23 +++++++++++++++++++++-- > 1 file changed, 21 insertions(+), 2 deletions(-) Applied, thanks. Thierry [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] pwm: lpss: select core part automatically 2015-11-18 11:25 [PATCH 1/2] pwm: lpss: select core part automatically Mika Westerberg 2015-11-18 11:25 ` [PATCH 2/2] pwm: lpss: Rework the sequence of programming PWM_SW_UPDATE Mika Westerberg @ 2015-12-03 9:28 ` Mika Westerberg 2015-12-16 15:52 ` Thierry Reding 2 siblings, 0 replies; 5+ messages in thread From: Mika Westerberg @ 2015-12-03 9:28 UTC (permalink / raw) To: Thierry Reding; +Cc: Andy Shevchenko, Qipeng Zha, linux-pwm Ping? On Wed, Nov 18, 2015 at 01:25:17PM +0200, Mika Westerberg wrote: > From: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > > We have two users of core part right now. Let them to select core part > automatically. > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> > --- > drivers/pwm/Kconfig | 15 +++++---------- > 1 file changed, 5 insertions(+), 10 deletions(-) > > diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig > index 2f4641a0e88b..aef635b7e2d1 100644 > --- a/drivers/pwm/Kconfig > +++ b/drivers/pwm/Kconfig > @@ -222,18 +222,12 @@ config PWM_LPC32XX > will be called pwm-lpc32xx. > > config PWM_LPSS > - tristate "Intel LPSS PWM support" > - depends on X86 > - help > - Generic PWM framework driver for Intel Low Power Subsystem PWM > - controller. > - > - To compile this driver as a module, choose M here: the module > - will be called pwm-lpss. > + tristate > > config PWM_LPSS_PCI > tristate "Intel LPSS PWM PCI driver" > - depends on PWM_LPSS && PCI > + depends on X86 && PCI > + select PWM_LPSS > help > The PCI driver for Intel Low Power Subsystem PWM controller. > > @@ -242,7 +236,8 @@ config PWM_LPSS_PCI > > config PWM_LPSS_PLATFORM > tristate "Intel LPSS PWM platform driver" > - depends on PWM_LPSS && ACPI > + depends on X86 && ACPI > + select PWM_LPSS > help > The platform driver for Intel Low Power Subsystem PWM controller. > > -- > 2.6.2 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] pwm: lpss: select core part automatically 2015-11-18 11:25 [PATCH 1/2] pwm: lpss: select core part automatically Mika Westerberg 2015-11-18 11:25 ` [PATCH 2/2] pwm: lpss: Rework the sequence of programming PWM_SW_UPDATE Mika Westerberg 2015-12-03 9:28 ` [PATCH 1/2] pwm: lpss: select core part automatically Mika Westerberg @ 2015-12-16 15:52 ` Thierry Reding 2 siblings, 0 replies; 5+ messages in thread From: Thierry Reding @ 2015-12-16 15:52 UTC (permalink / raw) To: Mika Westerberg; +Cc: Andy Shevchenko, Qipeng Zha, linux-pwm [-- Attachment #1: Type: text/plain, Size: 501 bytes --] On Wed, Nov 18, 2015 at 01:25:17PM +0200, Mika Westerberg wrote: > From: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > > We have two users of core part right now. Let them to select core part > automatically. > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> > --- > drivers/pwm/Kconfig | 15 +++++---------- > 1 file changed, 5 insertions(+), 10 deletions(-) Applied, thanks. Thierry [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-12-16 15:53 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-11-18 11:25 [PATCH 1/2] pwm: lpss: select core part automatically Mika Westerberg 2015-11-18 11:25 ` [PATCH 2/2] pwm: lpss: Rework the sequence of programming PWM_SW_UPDATE Mika Westerberg 2015-12-16 15:53 ` Thierry Reding 2015-12-03 9:28 ` [PATCH 1/2] pwm: lpss: select core part automatically Mika Westerberg 2015-12-16 15:52 ` Thierry Reding
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).