SUPERH platform development
 help / color / mirror / Atom feed
* [PATCH v4 0/5] Renesas TPU PWM support
@ 2013-06-13 16:54 Laurent Pinchart
  2013-06-13 21:36 ` Laurent Pinchart
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-06-13 16:54 UTC (permalink / raw)
  To: linux-sh

This is the fourth version of the Renesas TPU PWM unit support patches. The
patch series deprecates and removes the leds-renesas-tpu driver in favor of a
combination of leds-pwm and pwm-renesas-tpu. As an added bonus patch 4/5
removes function GPIOs support from the sh73a0 platform. mach-shmobile is now
free of function GPIOs. We still need volunteer(s) to migrate arch/sh.

I believe I've addressed all comments received in response to v3. I've tested
the code on Armadillo only as I don't have access to a kota2 board. This is why
I've added backlight support to Armadillo as part of this set.

The patches are based on Simon's renesas-next-20130613 tag. I've pushed them
to

        git://linuxtv.org/pinchartl/fbdev.git pinmux/3.10/tpu

Given the risk of conflicts on arch/arm/mach-shmobile it would probably be
easier to merge the set through Simon's tree. Thierry, would you be fine with
that ?

Changes since v3:

- Set the driver name to renesas-tpu-pwm instead of renesas_tpu_pwm
- Allocate the PWM device in the request handler
- Fixed device name in sh73a0 clocks lookup array
- Added support for TPU0 on sh73a0

Changes since v2:

- Dropped SH Mobile arch patches that have already been merged
- Replaced active_low pdata field with pwm_polarity
- Replaced TPU_PWM_ID with pwm_lookup's
- Set the platform_driver .owner field
- Replaced devm_ioremap_nocache() with devm_ioremap_resource()
- Added a .set_polarity() implementation
- Use kernel block comment style
- Don't enable/disable the clock around clk_get_rate()
- Removed duplicate sanity checks in the .config() operation

Changes since v1:

- Renamed the pwm-rmob driver to pwm-renesas-tpu, as TPU units are found in
  Renesas SH-Mobile, R-Mobile and R-Car SoCs.
- Added TPU clock and pin groups for r8a7790.

Laurent Pinchart (5):
  pwm: Add Renesas TPU PWM driver
  ARM: mach-shmobile: armadillo800eva: Add backlight support
  ARM: mach-shmobile: kota2: Use leds-pwm + pwm-rmob
  ARM: shmobile: sh73a0: Remove all GPIOs
  leds: Remove leds-renesas-tpu driver

 arch/arm/mach-shmobile/board-armadillo800eva.c |  54 ++-
 arch/arm/mach-shmobile/board-kota2.c           | 169 +++++----
 arch/arm/mach-shmobile/clock-r8a7740.c         |   2 +-
 arch/arm/mach-shmobile/clock-sh73a0.c          |  12 +-
 arch/arm/mach-shmobile/include/mach/sh73a0.h   | 373 +------------------
 drivers/leds/Kconfig                           |  12 -
 drivers/leds/Makefile                          |   1 -
 drivers/leds/leds-renesas-tpu.c                | 337 ------------------
 drivers/pwm/Kconfig                            |  10 +
 drivers/pwm/Makefile                           |   1 +
 drivers/pwm/pwm-renesas-tpu.c                  | 475 +++++++++++++++++++++++++
 include/linux/platform_data/leds-renesas-tpu.h |  14 -
 include/linux/platform_data/pwm-renesas-tpu.h  |  16 +
 13 files changed, 646 insertions(+), 830 deletions(-)
 delete mode 100644 drivers/leds/leds-renesas-tpu.c
 create mode 100644 drivers/pwm/pwm-renesas-tpu.c
 delete mode 100644 include/linux/platform_data/leds-renesas-tpu.h
 create mode 100644 include/linux/platform_data/pwm-renesas-tpu.h

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
@ 2013-06-13 21:36 ` Laurent Pinchart
  2013-06-14  1:01 ` Simon Horman
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-06-13 21:36 UTC (permalink / raw)
  To: linux-sh

Hi Simon,

Would you be able to test this patch series on kota2 ? If all goes well I'd 
like this to go to v3.11.

On Thursday 13 June 2013 18:54:43 Laurent Pinchart wrote:
> This is the fourth version of the Renesas TPU PWM unit support patches. The
> patch series deprecates and removes the leds-renesas-tpu driver in favor of
> a combination of leds-pwm and pwm-renesas-tpu. As an added bonus patch 4/5
> removes function GPIOs support from the sh73a0 platform. mach-shmobile is
> now free of function GPIOs. We still need volunteer(s) to migrate arch/sh.
> 
> I believe I've addressed all comments received in response to v3. I've
> tested the code on Armadillo only as I don't have access to a kota2 board.
> This is why I've added backlight support to Armadillo as part of this set.
> 
> The patches are based on Simon's renesas-next-20130613 tag. I've pushed them
> to
> 
>         git://linuxtv.org/pinchartl/fbdev.git pinmux/3.10/tpu
> 
> Given the risk of conflicts on arch/arm/mach-shmobile it would probably be
> easier to merge the set through Simon's tree. Thierry, would you be fine
> with that ?
> 
> Changes since v3:
> 
> - Set the driver name to renesas-tpu-pwm instead of renesas_tpu_pwm
> - Allocate the PWM device in the request handler
> - Fixed device name in sh73a0 clocks lookup array
> - Added support for TPU0 on sh73a0
> 
> Changes since v2:
> 
> - Dropped SH Mobile arch patches that have already been merged
> - Replaced active_low pdata field with pwm_polarity
> - Replaced TPU_PWM_ID with pwm_lookup's
> - Set the platform_driver .owner field
> - Replaced devm_ioremap_nocache() with devm_ioremap_resource()
> - Added a .set_polarity() implementation
> - Use kernel block comment style
> - Don't enable/disable the clock around clk_get_rate()
> - Removed duplicate sanity checks in the .config() operation
> 
> Changes since v1:
> 
> - Renamed the pwm-rmob driver to pwm-renesas-tpu, as TPU units are found in
>   Renesas SH-Mobile, R-Mobile and R-Car SoCs.
> - Added TPU clock and pin groups for r8a7790.
> 
> Laurent Pinchart (5):
>   pwm: Add Renesas TPU PWM driver
>   ARM: mach-shmobile: armadillo800eva: Add backlight support
>   ARM: mach-shmobile: kota2: Use leds-pwm + pwm-rmob
>   ARM: shmobile: sh73a0: Remove all GPIOs
>   leds: Remove leds-renesas-tpu driver
> 
>  arch/arm/mach-shmobile/board-armadillo800eva.c |  54 ++-
>  arch/arm/mach-shmobile/board-kota2.c           | 169 +++++----
>  arch/arm/mach-shmobile/clock-r8a7740.c         |   2 +-
>  arch/arm/mach-shmobile/clock-sh73a0.c          |  12 +-
>  arch/arm/mach-shmobile/include/mach/sh73a0.h   | 373 +------------------
>  drivers/leds/Kconfig                           |  12 -
>  drivers/leds/Makefile                          |   1 -
>  drivers/leds/leds-renesas-tpu.c                | 337 ------------------
>  drivers/pwm/Kconfig                            |  10 +
>  drivers/pwm/Makefile                           |   1 +
>  drivers/pwm/pwm-renesas-tpu.c                  | 475 ++++++++++++++++++++++
>  include/linux/platform_data/leds-renesas-tpu.h |  14 -
>  include/linux/platform_data/pwm-renesas-tpu.h  |  16 +
>  13 files changed, 646 insertions(+), 830 deletions(-)
>  delete mode 100644 drivers/leds/leds-renesas-tpu.c
>  create mode 100644 drivers/pwm/pwm-renesas-tpu.c
>  delete mode 100644 include/linux/platform_data/leds-renesas-tpu.h
>  create mode 100644 include/linux/platform_data/pwm-renesas-tpu.h

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
  2013-06-13 21:36 ` Laurent Pinchart
@ 2013-06-14  1:01 ` Simon Horman
  2013-06-17  4:25 ` Simon Horman
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2013-06-14  1:01 UTC (permalink / raw)
  To: linux-sh

Hi Laurent,

yes, I can test it. However, I have to travel to Tokyo for meetings
today and thus won't be able to do any testing until Monday.

On Thu, Jun 13, 2013 at 11:36:34PM +0200, Laurent Pinchart wrote:
> Hi Simon,
> 
> Would you be able to test this patch series on kota2 ? If all goes well I'd 
> like this to go to v3.11.
> 
> On Thursday 13 June 2013 18:54:43 Laurent Pinchart wrote:
> > This is the fourth version of the Renesas TPU PWM unit support patches. The
> > patch series deprecates and removes the leds-renesas-tpu driver in favor of
> > a combination of leds-pwm and pwm-renesas-tpu. As an added bonus patch 4/5
> > removes function GPIOs support from the sh73a0 platform. mach-shmobile is
> > now free of function GPIOs. We still need volunteer(s) to migrate arch/sh.
> > 
> > I believe I've addressed all comments received in response to v3. I've
> > tested the code on Armadillo only as I don't have access to a kota2 board.
> > This is why I've added backlight support to Armadillo as part of this set.
> > 
> > The patches are based on Simon's renesas-next-20130613 tag. I've pushed them
> > to
> > 
> >         git://linuxtv.org/pinchartl/fbdev.git pinmux/3.10/tpu
> > 
> > Given the risk of conflicts on arch/arm/mach-shmobile it would probably be
> > easier to merge the set through Simon's tree. Thierry, would you be fine
> > with that ?
> > 
> > Changes since v3:
> > 
> > - Set the driver name to renesas-tpu-pwm instead of renesas_tpu_pwm
> > - Allocate the PWM device in the request handler
> > - Fixed device name in sh73a0 clocks lookup array
> > - Added support for TPU0 on sh73a0
> > 
> > Changes since v2:
> > 
> > - Dropped SH Mobile arch patches that have already been merged
> > - Replaced active_low pdata field with pwm_polarity
> > - Replaced TPU_PWM_ID with pwm_lookup's
> > - Set the platform_driver .owner field
> > - Replaced devm_ioremap_nocache() with devm_ioremap_resource()
> > - Added a .set_polarity() implementation
> > - Use kernel block comment style
> > - Don't enable/disable the clock around clk_get_rate()
> > - Removed duplicate sanity checks in the .config() operation
> > 
> > Changes since v1:
> > 
> > - Renamed the pwm-rmob driver to pwm-renesas-tpu, as TPU units are found in
> >   Renesas SH-Mobile, R-Mobile and R-Car SoCs.
> > - Added TPU clock and pin groups for r8a7790.
> > 
> > Laurent Pinchart (5):
> >   pwm: Add Renesas TPU PWM driver
> >   ARM: mach-shmobile: armadillo800eva: Add backlight support
> >   ARM: mach-shmobile: kota2: Use leds-pwm + pwm-rmob
> >   ARM: shmobile: sh73a0: Remove all GPIOs
> >   leds: Remove leds-renesas-tpu driver
> > 
> >  arch/arm/mach-shmobile/board-armadillo800eva.c |  54 ++-
> >  arch/arm/mach-shmobile/board-kota2.c           | 169 +++++----
> >  arch/arm/mach-shmobile/clock-r8a7740.c         |   2 +-
> >  arch/arm/mach-shmobile/clock-sh73a0.c          |  12 +-
> >  arch/arm/mach-shmobile/include/mach/sh73a0.h   | 373 +------------------
> >  drivers/leds/Kconfig                           |  12 -
> >  drivers/leds/Makefile                          |   1 -
> >  drivers/leds/leds-renesas-tpu.c                | 337 ------------------
> >  drivers/pwm/Kconfig                            |  10 +
> >  drivers/pwm/Makefile                           |   1 +
> >  drivers/pwm/pwm-renesas-tpu.c                  | 475 ++++++++++++++++++++++
> >  include/linux/platform_data/leds-renesas-tpu.h |  14 -
> >  include/linux/platform_data/pwm-renesas-tpu.h  |  16 +
> >  13 files changed, 646 insertions(+), 830 deletions(-)
> >  delete mode 100644 drivers/leds/leds-renesas-tpu.c
> >  create mode 100644 drivers/pwm/pwm-renesas-tpu.c
> >  delete mode 100644 include/linux/platform_data/leds-renesas-tpu.h
> >  create mode 100644 include/linux/platform_data/pwm-renesas-tpu.h
> 
> -- 
> Regards,
> 
> Laurent Pinchart
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
  2013-06-13 21:36 ` Laurent Pinchart
  2013-06-14  1:01 ` Simon Horman
@ 2013-06-17  4:25 ` Simon Horman
  2013-06-17 10:31 ` Laurent Pinchart
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2013-06-17  4:25 UTC (permalink / raw)
  To: linux-sh

Hi Laurent,

I am having a little trouble testing this.
I am wondering if you could guide me as to
what .config options I should have enabled and
what values I should be looking for in /sys ?

On Fri, Jun 14, 2013 at 10:01:19AM +0900, Simon Horman wrote:
> Hi Laurent,
> 
> yes, I can test it. However, I have to travel to Tokyo for meetings
> today and thus won't be able to do any testing until Monday.
> 
> On Thu, Jun 13, 2013 at 11:36:34PM +0200, Laurent Pinchart wrote:
> > Hi Simon,
> > 
> > Would you be able to test this patch series on kota2 ? If all goes well I'd 
> > like this to go to v3.11.
> > 
> > On Thursday 13 June 2013 18:54:43 Laurent Pinchart wrote:
> > > This is the fourth version of the Renesas TPU PWM unit support patches. The
> > > patch series deprecates and removes the leds-renesas-tpu driver in favor of
> > > a combination of leds-pwm and pwm-renesas-tpu. As an added bonus patch 4/5
> > > removes function GPIOs support from the sh73a0 platform. mach-shmobile is
> > > now free of function GPIOs. We still need volunteer(s) to migrate arch/sh.
> > > 
> > > I believe I've addressed all comments received in response to v3. I've
> > > tested the code on Armadillo only as I don't have access to a kota2 board.
> > > This is why I've added backlight support to Armadillo as part of this set.
> > > 
> > > The patches are based on Simon's renesas-next-20130613 tag. I've pushed them
> > > to
> > > 
> > >         git://linuxtv.org/pinchartl/fbdev.git pinmux/3.10/tpu
> > > 
> > > Given the risk of conflicts on arch/arm/mach-shmobile it would probably be
> > > easier to merge the set through Simon's tree. Thierry, would you be fine
> > > with that ?
> > > 
> > > Changes since v3:
> > > 
> > > - Set the driver name to renesas-tpu-pwm instead of renesas_tpu_pwm
> > > - Allocate the PWM device in the request handler
> > > - Fixed device name in sh73a0 clocks lookup array
> > > - Added support for TPU0 on sh73a0
> > > 
> > > Changes since v2:
> > > 
> > > - Dropped SH Mobile arch patches that have already been merged
> > > - Replaced active_low pdata field with pwm_polarity
> > > - Replaced TPU_PWM_ID with pwm_lookup's
> > > - Set the platform_driver .owner field
> > > - Replaced devm_ioremap_nocache() with devm_ioremap_resource()
> > > - Added a .set_polarity() implementation
> > > - Use kernel block comment style
> > > - Don't enable/disable the clock around clk_get_rate()
> > > - Removed duplicate sanity checks in the .config() operation
> > > 
> > > Changes since v1:
> > > 
> > > - Renamed the pwm-rmob driver to pwm-renesas-tpu, as TPU units are found in
> > >   Renesas SH-Mobile, R-Mobile and R-Car SoCs.
> > > - Added TPU clock and pin groups for r8a7790.
> > > 
> > > Laurent Pinchart (5):
> > >   pwm: Add Renesas TPU PWM driver
> > >   ARM: mach-shmobile: armadillo800eva: Add backlight support
> > >   ARM: mach-shmobile: kota2: Use leds-pwm + pwm-rmob
> > >   ARM: shmobile: sh73a0: Remove all GPIOs
> > >   leds: Remove leds-renesas-tpu driver
> > > 
> > >  arch/arm/mach-shmobile/board-armadillo800eva.c |  54 ++-
> > >  arch/arm/mach-shmobile/board-kota2.c           | 169 +++++----
> > >  arch/arm/mach-shmobile/clock-r8a7740.c         |   2 +-
> > >  arch/arm/mach-shmobile/clock-sh73a0.c          |  12 +-
> > >  arch/arm/mach-shmobile/include/mach/sh73a0.h   | 373 +------------------
> > >  drivers/leds/Kconfig                           |  12 -
> > >  drivers/leds/Makefile                          |   1 -
> > >  drivers/leds/leds-renesas-tpu.c                | 337 ------------------
> > >  drivers/pwm/Kconfig                            |  10 +
> > >  drivers/pwm/Makefile                           |   1 +
> > >  drivers/pwm/pwm-renesas-tpu.c                  | 475 ++++++++++++++++++++++
> > >  include/linux/platform_data/leds-renesas-tpu.h |  14 -
> > >  include/linux/platform_data/pwm-renesas-tpu.h  |  16 +
> > >  13 files changed, 646 insertions(+), 830 deletions(-)
> > >  delete mode 100644 drivers/leds/leds-renesas-tpu.c
> > >  create mode 100644 drivers/pwm/pwm-renesas-tpu.c
> > >  delete mode 100644 include/linux/platform_data/leds-renesas-tpu.h
> > >  create mode 100644 include/linux/platform_data/pwm-renesas-tpu.h
> > 
> > -- 
> > Regards,
> > 
> > Laurent Pinchart
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
                   ` (2 preceding siblings ...)
  2013-06-17  4:25 ` Simon Horman
@ 2013-06-17 10:31 ` Laurent Pinchart
  2013-06-20 11:15 ` Laurent Pinchart
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-06-17 10:31 UTC (permalink / raw)
  To: linux-sh

Hi Simon,

On Monday 17 June 2013 13:25:49 Simon Horman wrote:
> Hi Laurent,
> 
> I am having a little trouble testing this.
> I am wondering if you could guide me as to
> what .config options I should have enabled and
> what values I should be looking for in /sys ?

Sure. You need to enable CONFIG_LEDS_PWM and CONFIG_PWM_RENESAS_TPU). You 
should then be able to control the LEDs through /sys/class/leds/*.

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
                   ` (3 preceding siblings ...)
  2013-06-17 10:31 ` Laurent Pinchart
@ 2013-06-20 11:15 ` Laurent Pinchart
  2013-06-20 13:21 ` Simon Horman
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-06-20 11:15 UTC (permalink / raw)
  To: linux-sh

Hi Simon,

On Monday 17 June 2013 12:31:39 Laurent Pinchart wrote:
> On Monday 17 June 2013 13:25:49 Simon Horman wrote:
> > Hi Laurent,
> > 
> > I am having a little trouble testing this.
> > I am wondering if you could guide me as to
> > what .config options I should have enabled and
> > what values I should be looking for in /sys ?
> 
> Sure. You need to enable CONFIG_LEDS_PWM and CONFIG_PWM_RENESAS_TPU). You
> should then be able to control the LEDs through /sys/class/leds/*.

Any luck ?

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
                   ` (4 preceding siblings ...)
  2013-06-20 11:15 ` Laurent Pinchart
@ 2013-06-20 13:21 ` Simon Horman
  2013-06-21  6:15 ` Simon Horman
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2013-06-20 13:21 UTC (permalink / raw)
  To: linux-sh

On Thu, Jun 20, 2013 at 01:15:11PM +0200, Laurent Pinchart wrote:
> Hi Simon,
> 
> On Monday 17 June 2013 12:31:39 Laurent Pinchart wrote:
> > On Monday 17 June 2013 13:25:49 Simon Horman wrote:
> > > Hi Laurent,
> > > 
> > > I am having a little trouble testing this.
> > > I am wondering if you could guide me as to
> > > what .config options I should have enabled and
> > > what values I should be looking for in /sys ?
> > 
> > Sure. You need to enable CONFIG_LEDS_PWM and CONFIG_PWM_RENESAS_TPU). You
> > should then be able to control the LEDs through /sys/class/leds/*.
> 
> Any luck ?

Sorry, I have been slow. I should have some time to try tomorrow.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
                   ` (5 preceding siblings ...)
  2013-06-20 13:21 ` Simon Horman
@ 2013-06-21  6:15 ` Simon Horman
  2013-06-21  6:43 ` Laurent Pinchart
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2013-06-21  6:15 UTC (permalink / raw)
  To: linux-sh

On Thu, Jun 20, 2013 at 01:15:11PM +0200, Laurent Pinchart wrote:
> Hi Simon,
> 
> On Monday 17 June 2013 12:31:39 Laurent Pinchart wrote:
> > On Monday 17 June 2013 13:25:49 Simon Horman wrote:
> > > Hi Laurent,
> > > 
> > > I am having a little trouble testing this.
> > > I am wondering if you could guide me as to
> > > what .config options I should have enabled and
> > > what values I should be looking for in /sys ?
> > 
> > Sure. You need to enable CONFIG_LEDS_PWM and CONFIG_PWM_RENESAS_TPU). You
> > should then be able to control the LEDs through /sys/class/leds/*.
> 
> Any luck ?

Hi Laurent,

I have confirmed that I can toggle the G H and J LEDs.
Should I queue-up this patchset?


On the way I noticed the following:

sh-pfc pfc-sh73a0: pin PORT163 already requested by renesas-tpu-pwm.3; cannot claim for sh-sci.8
sh-pfc pfc-sh73a0: pin-163 (sh-sci.8) status -22

sh-pfc pfc-sh73a0: pin 1195 is not registered so it cannot be requested
sh-pfc pfc-sh73a0: pin-1195 (sh_keysc.0) status -22
sh-pfc pfc-sh73a0: could not request pin 1195 on device sh-pfc
sh_keysc sh_keysc.0: Error applying setting, reverse things back


My personal feeling is that if these are trivial to fix
then it would be worth doing so. Otherwise a discussion
needs to be had about support for the kota2.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
                   ` (6 preceding siblings ...)
  2013-06-21  6:15 ` Simon Horman
@ 2013-06-21  6:43 ` Laurent Pinchart
  2013-06-21  9:30 ` Thierry Reding
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-06-21  6:43 UTC (permalink / raw)
  To: linux-sh

Hi Simon,

On Friday 21 June 2013 15:15:28 Simon Horman wrote:
> On Thu, Jun 20, 2013 at 01:15:11PM +0200, Laurent Pinchart wrote:
> > On Monday 17 June 2013 12:31:39 Laurent Pinchart wrote:
> > > On Monday 17 June 2013 13:25:49 Simon Horman wrote:
> > > > Hi Laurent,
> > > > 
> > > > I am having a little trouble testing this.
> > > > I am wondering if you could guide me as to what .config options I
> > > > should have enabled and what values I should be looking for in /sys ?
> > > 
> > > Sure. You need to enable CONFIG_LEDS_PWM and CONFIG_PWM_RENESAS_TPU).
> > > You should then be able to control the LEDs through /sys/class/leds/*.
> > 
> > Any luck ?
> 
> Hi Laurent,
> 
> I have confirmed that I can toggle the G H and J LEDs.

Thank you.

> Should I queue-up this patchset?

Given that it's too late to push this to v3.11 through the ARM SoC tree 
(please correct me if I'm wrong), what about pushing 1/5 through the PWM tree 
for v3.11 and 2/5 to 5/5 through ARM SoC for v3.12 ? Thierry, would you be 
able to pick patch 1/5 for v3.11 ?

> On the way I noticed the following:
> 
> sh-pfc pfc-sh73a0: pin PORT163 already requested by renesas-tpu-pwm.3;
> cannot claim for sh-sci.8 sh-pfc pfc-sh73a0: pin-163 (sh-sci.8) status -22

Pin 163 was used for both TPU LEDs and SCIFB RTS in the original board code, 
hence the conflict. That's most probably a mistake. Do you have the kota2 
schematics ? If so, could you please confirm that pin 163 is used for the LED 
only, not for SCIFB RTS ? I'll then send a patch to fix this.

> sh-pfc pfc-sh73a0: pin 1195 is not registered so it cannot be requested
> sh-pfc pfc-sh73a0: pin-1195 (sh_keysc.0) status -22
> sh-pfc pfc-sh73a0: could not request pin 1195 on device sh-pfc
> sh_keysc sh_keysc.0: Error applying setting, reverse things back

I'll work on that.

> My personal feeling is that if these are trivial to fix then it would be
> worth doing so. Otherwise a discussion needs to be had about support for the
> kota2.

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
                   ` (7 preceding siblings ...)
  2013-06-21  6:43 ` Laurent Pinchart
@ 2013-06-21  9:30 ` Thierry Reding
  2013-06-24 23:40 ` Simon Horman
  2013-06-24 23:56 ` Laurent Pinchart
  10 siblings, 0 replies; 12+ messages in thread
From: Thierry Reding @ 2013-06-21  9:30 UTC (permalink / raw)
  To: linux-sh

[-- Attachment #1: Type: text/plain, Size: 383 bytes --]

On Fri, Jun 21, 2013 at 08:43:21AM +0200, Laurent Pinchart wrote:
[...]
> Given that it's too late to push this to v3.11 through the ARM SoC tree 
> (please correct me if I'm wrong), what about pushing 1/5 through the PWM tree 
> for v3.11 and 2/5 to 5/5 through ARM SoC for v3.12 ? Thierry, would you be 
> able to pick patch 1/5 for v3.11 ?

Yes, I can do that.

Thierry

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
                   ` (8 preceding siblings ...)
  2013-06-21  9:30 ` Thierry Reding
@ 2013-06-24 23:40 ` Simon Horman
  2013-06-24 23:56 ` Laurent Pinchart
  10 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2013-06-24 23:40 UTC (permalink / raw)
  To: linux-sh

On Fri, Jun 21, 2013 at 08:43:21AM +0200, Laurent Pinchart wrote:
> Hi Simon,
> 
> On Friday 21 June 2013 15:15:28 Simon Horman wrote:
> > On Thu, Jun 20, 2013 at 01:15:11PM +0200, Laurent Pinchart wrote:
> > > On Monday 17 June 2013 12:31:39 Laurent Pinchart wrote:
> > > > On Monday 17 June 2013 13:25:49 Simon Horman wrote:
> > > > > Hi Laurent,
> > > > > 
> > > > > I am having a little trouble testing this.
> > > > > I am wondering if you could guide me as to what .config options I
> > > > > should have enabled and what values I should be looking for in /sys ?
> > > > 
> > > > Sure. You need to enable CONFIG_LEDS_PWM and CONFIG_PWM_RENESAS_TPU).
> > > > You should then be able to control the LEDs through /sys/class/leds/*.
> > > 
> > > Any luck ?
> > 
> > Hi Laurent,
> > 
> > I have confirmed that I can toggle the G H and J LEDs.
> 
> Thank you.
> 
> > Should I queue-up this patchset?
> 
> Given that it's too late to push this to v3.11 through the ARM SoC tree 
> (please correct me if I'm wrong), what about pushing 1/5 through the PWM tree 
> for v3.11 and 2/5 to 5/5 through ARM SoC for v3.12 ? Thierry, would you be 
> able to pick patch 1/5 for v3.11 ?

Yes, it is a bit late for v3.11 for arm-soc - I apologise for
being partly responsible for the lateness.

I am quite happy with your proposal for patches 1/5.

> > On the way I noticed the following:
> > 
> > sh-pfc pfc-sh73a0: pin PORT163 already requested by renesas-tpu-pwm.3;
> > cannot claim for sh-sci.8 sh-pfc pfc-sh73a0: pin-163 (sh-sci.8) status -22
> 
> Pin 163 was used for both TPU LEDs and SCIFB RTS in the original board code, 
> hence the conflict. That's most probably a mistake. Do you have the kota2 
> schematics ? If so, could you please confirm that pin 163 is used for the LED 
> only, not for SCIFB RTS ? I'll then send a patch to fix this.

I do not have the kota2 schematics.

> > sh-pfc pfc-sh73a0: pin 1195 is not registered so it cannot be requested
> > sh-pfc pfc-sh73a0: pin-1195 (sh_keysc.0) status -22
> > sh-pfc pfc-sh73a0: could not request pin 1195 on device sh-pfc
> > sh_keysc sh_keysc.0: Error applying setting, reverse things back
> 
> I'll work on that.
> 
> > My personal feeling is that if these are trivial to fix then it would be
> > worth doing so. Otherwise a discussion needs to be had about support for the
> > kota2.
> 
> -- 
> Regards,
> 
> Laurent Pinchart
> 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v4 0/5] Renesas TPU PWM support
  2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
                   ` (9 preceding siblings ...)
  2013-06-24 23:40 ` Simon Horman
@ 2013-06-24 23:56 ` Laurent Pinchart
  10 siblings, 0 replies; 12+ messages in thread
From: Laurent Pinchart @ 2013-06-24 23:56 UTC (permalink / raw)
  To: linux-sh

Hi Magnus, Morimoto-san,

On Tuesday 25 June 2013 08:40:03 Simon Horman wrote:
> On Fri, Jun 21, 2013 at 08:43:21AM +0200, Laurent Pinchart wrote:
> > On Friday 21 June 2013 15:15:28 Simon Horman wrote:
> > > On Thu, Jun 20, 2013 at 01:15:11PM +0200, Laurent Pinchart wrote:
> > > > On Monday 17 June 2013 12:31:39 Laurent Pinchart wrote:
> > > > > On Monday 17 June 2013 13:25:49 Simon Horman wrote:
> > > > > > Hi Laurent,
> > > > > > 
> > > > > > I am having a little trouble testing this.
> > > > > > I am wondering if you could guide me as to what .config options I
> > > > > > should have enabled and what values I should be looking for in
> > > > > > /sys ?
> > > > > 
> > > > > Sure. You need to enable CONFIG_LEDS_PWM and
> > > > > CONFIG_PWM_RENESAS_TPU).
> > > > > You should then be able to control the LEDs through
> > > > > /sys/class/leds/*.
> > > > 
> > > > Any luck ?
> > > 
> > > Hi Laurent,
> > > 
> > > I have confirmed that I can toggle the G H and J LEDs.

[snip]

> > > On the way I noticed the following:
> > > 
> > > sh-pfc pfc-sh73a0: pin PORT163 already requested by renesas-tpu-pwm.3;
> > > cannot claim for sh-sci.8 sh-pfc pfc-sh73a0: pin-163 (sh-sci.8) status
> > > -22
> > 
> > Pin 163 was used for both TPU LEDs and SCIFB RTS in the original board
> > code, hence the conflict. That's most probably a mistake. Do you have the
> > kota2 schematics ? If so, could you please confirm that pin 163 is used
> > for the LED only, not for SCIFB RTS ? I'll then send a patch to fix this.
> 
> I do not have the kota2 schematics.

Magnus or Morimoto-san, do you have access to the kota2 schematics ? If so, 
could you please check how pin 163 is used ?

> > > sh-pfc pfc-sh73a0: pin 1195 is not registered so it cannot be requested
> > > sh-pfc pfc-sh73a0: pin-1195 (sh_keysc.0) status -22
> > > sh-pfc pfc-sh73a0: could not request pin 1195 on device sh-pfc
> > > sh_keysc sh_keysc.0: Error applying setting, reverse things back
> > 
> > I'll work on that.
> > 
> > > My personal feeling is that if these are trivial to fix then it would be
> > > worth doing so. Otherwise a discussion needs to be had about support for
> > > the kota2.

-- 
Regards,

Laurent Pinchart


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2013-06-24 23:56 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-13 16:54 [PATCH v4 0/5] Renesas TPU PWM support Laurent Pinchart
2013-06-13 21:36 ` Laurent Pinchart
2013-06-14  1:01 ` Simon Horman
2013-06-17  4:25 ` Simon Horman
2013-06-17 10:31 ` Laurent Pinchart
2013-06-20 11:15 ` Laurent Pinchart
2013-06-20 13:21 ` Simon Horman
2013-06-21  6:15 ` Simon Horman
2013-06-21  6:43 ` Laurent Pinchart
2013-06-21  9:30 ` Thierry Reding
2013-06-24 23:40 ` Simon Horman
2013-06-24 23:56 ` Laurent Pinchart

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox