* [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator
@ 2013-04-24 22:00 Laurent Pinchart
2013-04-25 12:34 ` Laurent Pinchart
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Laurent Pinchart @ 2013-04-24 22:00 UTC (permalink / raw)
To: linux-sh
Hello,
The sh73a0 has an internal power gate on the VCCQ power supply for the SDHI0
device that is controlled (for some strange reason) by a bit in a PFC
register.
This patch set exposes the power gate as a regulator. As the only currently
supported board (kzm9g) has the VCCQ_MC0 pins directly connected to an always
on 3.3V supply, the code assumes that the external VCCQ power supply can't be
controlled. This could be fixed later by setting the regulator supply name.
As this series turns the power off when not needed it might bring additional
power saving, but this hasn't been measured. If the patches are considered too
complex a simpler approach would be to turn the power gate on when the SDHI
function is selected.
The patches are based on tags/renesas-next-20130422. They have been tested on
kzm9g. They are available in my git tree at
git://linuxtv.org/pinchartl/fbdev.git pinmux/3.9/sh73a0
Changes compared to v1:
- Renamed __sh73a0_vccq_mc0_enable to sh73a0_vccq_mc0_endisable
- Fix the reported voltage value (3.3V instead of 1.8V)
- Make patch 2/4 commit message more explicit
Laurent Pinchart (4):
sh-pfc: Add support for SoC-specific initialization
sh-pfc: sh73a0: Add VCCQ MC0 regulator
ARM: shmobile: kzm9g: Remove the VCCQ MC0 function GPIO
ARM: shmobile: kzm9g-reference: Remove the VCCQ MC0 function GPIO
arch/arm/mach-shmobile/board-kzm9g-reference.c | 1 -
arch/arm/mach-shmobile/board-kzm9g.c | 3 -
drivers/pinctrl/sh-pfc/Kconfig | 1 +
drivers/pinctrl/sh-pfc/core.c | 16 ++-
drivers/pinctrl/sh-pfc/core.h | 1 +
drivers/pinctrl/sh-pfc/pfc-sh73a0.c | 134 +++++++++++++++++++++++++
drivers/pinctrl/sh-pfc/sh_pfc.h | 2 +
7 files changed, 153 insertions(+), 5 deletions(-)
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator
2013-04-24 22:00 [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator Laurent Pinchart
@ 2013-04-25 12:34 ` Laurent Pinchart
2013-04-25 13:03 ` Simon Horman
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Laurent Pinchart @ 2013-04-25 12:34 UTC (permalink / raw)
To: linux-sh
Hi Simon,
Could you please apply those patches ? For your convenience I've added Mark's
ack to 2/4 and pushed the result to
git://linuxtv.org/pinchartl/fbdev.git pinmux/3.9/sh73a0
On Thursday 25 April 2013 00:00:24 Laurent Pinchart wrote:
> Hello,
>
> The sh73a0 has an internal power gate on the VCCQ power supply for the SDHI0
> device that is controlled (for some strange reason) by a bit in a PFC
> register.
>
> This patch set exposes the power gate as a regulator. As the only currently
> supported board (kzm9g) has the VCCQ_MC0 pins directly connected to an
> always on 3.3V supply, the code assumes that the external VCCQ power supply
> can't be controlled. This could be fixed later by setting the regulator
> supply name.
>
> As this series turns the power off when not needed it might bring additional
> power saving, but this hasn't been measured. If the patches are considered
> too complex a simpler approach would be to turn the power gate on when the
> SDHI function is selected.
>
> The patches are based on tags/renesas-next-20130422. They have been tested
> on kzm9g. They are available in my git tree at
>
> git://linuxtv.org/pinchartl/fbdev.git pinmux/3.9/sh73a0
>
> Changes compared to v1:
>
> - Renamed __sh73a0_vccq_mc0_enable to sh73a0_vccq_mc0_endisable
> - Fix the reported voltage value (3.3V instead of 1.8V)
> - Make patch 2/4 commit message more explicit
>
> Laurent Pinchart (4):
> sh-pfc: Add support for SoC-specific initialization
> sh-pfc: sh73a0: Add VCCQ MC0 regulator
> ARM: shmobile: kzm9g: Remove the VCCQ MC0 function GPIO
> ARM: shmobile: kzm9g-reference: Remove the VCCQ MC0 function GPIO
>
> arch/arm/mach-shmobile/board-kzm9g-reference.c | 1 -
> arch/arm/mach-shmobile/board-kzm9g.c | 3 -
> drivers/pinctrl/sh-pfc/Kconfig | 1 +
> drivers/pinctrl/sh-pfc/core.c | 16 ++-
> drivers/pinctrl/sh-pfc/core.h | 1 +
> drivers/pinctrl/sh-pfc/pfc-sh73a0.c | 134 ++++++++++++++++++++++
> drivers/pinctrl/sh-pfc/sh_pfc.h | 2 +
> 7 files changed, 153 insertions(+), 5 deletions(-)
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator
2013-04-24 22:00 [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator Laurent Pinchart
2013-04-25 12:34 ` Laurent Pinchart
@ 2013-04-25 13:03 ` Simon Horman
2013-04-26 2:04 ` Simon Horman
2013-04-26 3:57 ` Simon Horman
3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-04-25 13:03 UTC (permalink / raw)
To: linux-sh
Thanks Laurent,
I should be able to add them tomorrow.
On Thu, Apr 25, 2013 at 02:34:32PM +0200, Laurent Pinchart wrote:
> Hi Simon,
>
> Could you please apply those patches ? For your convenience I've added Mark's
> ack to 2/4 and pushed the result to
>
> git://linuxtv.org/pinchartl/fbdev.git pinmux/3.9/sh73a0
>
> On Thursday 25 April 2013 00:00:24 Laurent Pinchart wrote:
> > Hello,
> >
> > The sh73a0 has an internal power gate on the VCCQ power supply for the SDHI0
> > device that is controlled (for some strange reason) by a bit in a PFC
> > register.
> >
> > This patch set exposes the power gate as a regulator. As the only currently
> > supported board (kzm9g) has the VCCQ_MC0 pins directly connected to an
> > always on 3.3V supply, the code assumes that the external VCCQ power supply
> > can't be controlled. This could be fixed later by setting the regulator
> > supply name.
> >
> > As this series turns the power off when not needed it might bring additional
> > power saving, but this hasn't been measured. If the patches are considered
> > too complex a simpler approach would be to turn the power gate on when the
> > SDHI function is selected.
> >
> > The patches are based on tags/renesas-next-20130422. They have been tested
> > on kzm9g. They are available in my git tree at
> >
> > git://linuxtv.org/pinchartl/fbdev.git pinmux/3.9/sh73a0
> >
> > Changes compared to v1:
> >
> > - Renamed __sh73a0_vccq_mc0_enable to sh73a0_vccq_mc0_endisable
> > - Fix the reported voltage value (3.3V instead of 1.8V)
> > - Make patch 2/4 commit message more explicit
> >
> > Laurent Pinchart (4):
> > sh-pfc: Add support for SoC-specific initialization
> > sh-pfc: sh73a0: Add VCCQ MC0 regulator
> > ARM: shmobile: kzm9g: Remove the VCCQ MC0 function GPIO
> > ARM: shmobile: kzm9g-reference: Remove the VCCQ MC0 function GPIO
> >
> > arch/arm/mach-shmobile/board-kzm9g-reference.c | 1 -
> > arch/arm/mach-shmobile/board-kzm9g.c | 3 -
> > drivers/pinctrl/sh-pfc/Kconfig | 1 +
> > drivers/pinctrl/sh-pfc/core.c | 16 ++-
> > drivers/pinctrl/sh-pfc/core.h | 1 +
> > drivers/pinctrl/sh-pfc/pfc-sh73a0.c | 134 ++++++++++++++++++++++
> > drivers/pinctrl/sh-pfc/sh_pfc.h | 2 +
> > 7 files changed, 153 insertions(+), 5 deletions(-)
> --
> 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] 5+ messages in thread
* Re: [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator
2013-04-24 22:00 [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator Laurent Pinchart
2013-04-25 12:34 ` Laurent Pinchart
2013-04-25 13:03 ` Simon Horman
@ 2013-04-26 2:04 ` Simon Horman
2013-04-26 3:57 ` Simon Horman
3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-04-26 2:04 UTC (permalink / raw)
To: linux-sh
On Thu, Apr 25, 2013 at 10:03:31PM +0900, Simon Horman wrote:
> On Thu, Apr 25, 2013 at 02:34:32PM +0200, Laurent Pinchart wrote:
> > Hi Simon,
> >
> > Could you please apply those patches ? For your convenience I've added Mark's
> > ack to 2/4 and pushed the result to
> >
> > git://linuxtv.org/pinchartl/fbdev.git pinmux/3.9/sh73a0
>
> Thanks Laurent,
>
> I should be able to add them tomorrow.
I have queued-up the version with Linus's ack in the pinmux branch.
I will push it and a renesas-next-20130426 tag once my build-tests
complete (successfully!).
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator
2013-04-24 22:00 [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator Laurent Pinchart
` (2 preceding siblings ...)
2013-04-26 2:04 ` Simon Horman
@ 2013-04-26 3:57 ` Simon Horman
3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-04-26 3:57 UTC (permalink / raw)
To: linux-sh
On Fri, Apr 26, 2013 at 11:04:09AM +0900, Simon Horman wrote:
> On Thu, Apr 25, 2013 at 10:03:31PM +0900, Simon Horman wrote:
> > On Thu, Apr 25, 2013 at 02:34:32PM +0200, Laurent Pinchart wrote:
> > > Hi Simon,
> > >
> > > Could you please apply those patches ? For your convenience I've added Mark's
> > > ack to 2/4 and pushed the result to
> > >
> > > git://linuxtv.org/pinchartl/fbdev.git pinmux/3.9/sh73a0
> >
> > Thanks Laurent,
> >
> > I should be able to add them tomorrow.
>
> I have queued-up the version with Linus's ack in the pinmux branch.
> I will push it and a renesas-next-20130426 tag once my build-tests
> complete (successfully!).
Done.
BTW, Monday is a public holiday in Japan and as a result I am
not planning to queue-up any more patches until Tuesday.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-04-26 3:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-24 22:00 [PATCH v2 0/4] sh73a0: Expose the PFC-controller SDHI power gate as a regulator Laurent Pinchart
2013-04-25 12:34 ` Laurent Pinchart
2013-04-25 13:03 ` Simon Horman
2013-04-26 2:04 ` Simon Horman
2013-04-26 3:57 ` Simon Horman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox