* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
@ 2015-01-26 8:21 Lad, Prabhakar
2015-01-28 19:32 ` Benoit Parrot
0 siblings, 1 reply; 10+ messages in thread
From: Lad, Prabhakar @ 2015-01-26 8:21 UTC (permalink / raw)
To: linux-arm-kernel
From: Benoit Parrot <bparrot@ti•com>
this patch adds VPFE HWMOD data for AM43xx.
Signed-off-by: Benoit Parrot <bparrot@ti•com>
Signed-off-by: Darren Etheridge <detheridge@ti•com>
Signed-off-by: Felipe Balbi <balbi@ti•com>
Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail•com>
---
Changes for v3:
a: Dropped OCPIF_SWSUP_IDLE flag from l3 hwmods of vpfe.
arch/arm/mach-omap2/omap_hwmod_43xx_data.c | 70 ++++++++++++++++++++++++++++++
arch/arm/mach-omap2/prcm43xx.h | 3 +-
2 files changed, 72 insertions(+), 1 deletion(-)
diff --git a/arch/arm/mach-omap2/omap_hwmod_43xx_data.c b/arch/arm/mach-omap2/omap_hwmod_43xx_data.c
index 5c6c841..8543f9f 100644
--- a/arch/arm/mach-omap2/omap_hwmod_43xx_data.c
+++ b/arch/arm/mach-omap2/omap_hwmod_43xx_data.c
@@ -514,6 +514,44 @@ static struct omap_hwmod am43xx_dss_rfbi_hwmod = {
},
};
+static struct omap_hwmod_class_sysconfig am43xx_vpfe_sysc = {
+ .rev_offs = 0x0,
+ .sysc_offs = 0x104,
+ .sysc_flags = SYSC_HAS_MIDLEMODE | SYSC_HAS_SIDLEMODE,
+ .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
+ MSTANDBY_FORCE | MSTANDBY_SMART | MSTANDBY_NO),
+ .sysc_fields = &omap_hwmod_sysc_type2,
+};
+
+static struct omap_hwmod_class am43xx_vpfe_hwmod_class = {
+ .name = "vpfe",
+ .sysc = &am43xx_vpfe_sysc,
+};
+
+static struct omap_hwmod am43xx_vpfe0_hwmod = {
+ .name = "vpfe0",
+ .class = &am43xx_vpfe_hwmod_class,
+ .clkdm_name = "l3s_clkdm",
+ .prcm = {
+ .omap4 = {
+ .modulemode = MODULEMODE_SWCTRL,
+ .clkctrl_offs = AM43XX_CM_PER_VPFE0_CLKCTRL_OFFSET,
+ },
+ },
+};
+
+static struct omap_hwmod am43xx_vpfe1_hwmod = {
+ .name = "vpfe1",
+ .class = &am43xx_vpfe_hwmod_class,
+ .clkdm_name = "l3s_clkdm",
+ .prcm = {
+ .omap4 = {
+ .modulemode = MODULEMODE_SWCTRL,
+ .clkctrl_offs = AM43XX_CM_PER_VPFE1_CLKCTRL_OFFSET,
+ },
+ },
+};
+
/* Interfaces */
static struct omap_hwmod_ocp_if am43xx_l3_main__l4_hs = {
.master = &am33xx_l3_main_hwmod,
@@ -788,6 +826,34 @@ static struct omap_hwmod_ocp_if am43xx_l4_ls__dss_rfbi = {
.user = OCP_USER_MPU | OCP_USER_SDMA,
};
+static struct omap_hwmod_ocp_if am43xx_l3__vpfe0 = {
+ .master = &am43xx_vpfe0_hwmod,
+ .slave = &am33xx_l3_main_hwmod,
+ .clk = "l3_gclk",
+ .user = OCP_USER_MPU | OCP_USER_SDMA,
+};
+
+static struct omap_hwmod_ocp_if am43xx_l3__vpfe1 = {
+ .master = &am43xx_vpfe1_hwmod,
+ .slave = &am33xx_l3_main_hwmod,
+ .clk = "l3_gclk",
+ .user = OCP_USER_MPU | OCP_USER_SDMA,
+};
+
+static struct omap_hwmod_ocp_if am43xx_l4_ls__vpfe0 = {
+ .master = &am33xx_l4_ls_hwmod,
+ .slave = &am43xx_vpfe0_hwmod,
+ .clk = "l4ls_gclk",
+ .user = OCP_USER_MPU | OCP_USER_SDMA,
+};
+
+static struct omap_hwmod_ocp_if am43xx_l4_ls__vpfe1 = {
+ .master = &am33xx_l4_ls_hwmod,
+ .slave = &am43xx_vpfe1_hwmod,
+ .clk = "l4ls_gclk",
+ .user = OCP_USER_MPU | OCP_USER_SDMA,
+};
+
static struct omap_hwmod_ocp_if *am43xx_hwmod_ocp_ifs[] __initdata = {
&am33xx_l4_wkup__synctimer,
&am43xx_l4_ls__timer8,
@@ -887,6 +953,10 @@ static struct omap_hwmod_ocp_if *am43xx_hwmod_ocp_ifs[] __initdata = {
&am43xx_l4_ls__dss,
&am43xx_l4_ls__dss_dispc,
&am43xx_l4_ls__dss_rfbi,
+ &am43xx_l3__vpfe0,
+ &am43xx_l3__vpfe1,
+ &am43xx_l4_ls__vpfe0,
+ &am43xx_l4_ls__vpfe1,
NULL,
};
diff --git a/arch/arm/mach-omap2/prcm43xx.h b/arch/arm/mach-omap2/prcm43xx.h
index ad7b3e9..8aa4c2c 100644
--- a/arch/arm/mach-omap2/prcm43xx.h
+++ b/arch/arm/mach-omap2/prcm43xx.h
@@ -143,5 +143,6 @@
#define AM43XX_CM_PER_USB_OTG_SS1_CLKCTRL_OFFSET 0x0268
#define AM43XX_CM_PER_USBPHYOCP2SCP1_CLKCTRL_OFFSET 0x05C0
#define AM43XX_CM_PER_DSS_CLKCTRL_OFFSET 0x0a20
-
+#define AM43XX_CM_PER_VPFE0_CLKCTRL_OFFSET 0x0068
+#define AM43XX_CM_PER_VPFE1_CLKCTRL_OFFSET 0x0070
#endif
--
2.1.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
2015-01-26 8:21 [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries Lad, Prabhakar
@ 2015-01-28 19:32 ` Benoit Parrot
2015-01-28 21:01 ` Lad, Prabhakar
2015-02-10 23:10 ` Paul Walmsley
0 siblings, 2 replies; 10+ messages in thread
From: Benoit Parrot @ 2015-01-28 19:32 UTC (permalink / raw)
To: linux-arm-kernel
Suspend/resume is functional with this patch.
Tested-by: Benoit Parrot <bparrot@ti•com>
Lad, Prabhakar <prabhakar.csengg@gmail•com> wrote on Mon [2015-Jan-26 08:21:28 +0000]:
> From: Benoit Parrot <bparrot@ti•com>
>
> this patch adds VPFE HWMOD data for AM43xx.
>
> Signed-off-by: Benoit Parrot <bparrot@ti•com>
> Signed-off-by: Darren Etheridge <detheridge@ti•com>
> Signed-off-by: Felipe Balbi <balbi@ti•com>
> Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail•com>
> ---
> Changes for v3:
> a: Dropped OCPIF_SWSUP_IDLE flag from l3 hwmods of vpfe.
>
> arch/arm/mach-omap2/omap_hwmod_43xx_data.c | 70 ++++++++++++++++++++++++++++++
> arch/arm/mach-omap2/prcm43xx.h | 3 +-
> 2 files changed, 72 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-omap2/omap_hwmod_43xx_data.c b/arch/arm/mach-omap2/omap_hwmod_43xx_data.c
> index 5c6c841..8543f9f 100644
> --- a/arch/arm/mach-omap2/omap_hwmod_43xx_data.c
> +++ b/arch/arm/mach-omap2/omap_hwmod_43xx_data.c
> @@ -514,6 +514,44 @@ static struct omap_hwmod am43xx_dss_rfbi_hwmod = {
> },
> };
>
> +static struct omap_hwmod_class_sysconfig am43xx_vpfe_sysc = {
> + .rev_offs = 0x0,
> + .sysc_offs = 0x104,
> + .sysc_flags = SYSC_HAS_MIDLEMODE | SYSC_HAS_SIDLEMODE,
> + .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART |
> + MSTANDBY_FORCE | MSTANDBY_SMART | MSTANDBY_NO),
> + .sysc_fields = &omap_hwmod_sysc_type2,
> +};
> +
> +static struct omap_hwmod_class am43xx_vpfe_hwmod_class = {
> + .name = "vpfe",
> + .sysc = &am43xx_vpfe_sysc,
> +};
> +
> +static struct omap_hwmod am43xx_vpfe0_hwmod = {
> + .name = "vpfe0",
> + .class = &am43xx_vpfe_hwmod_class,
> + .clkdm_name = "l3s_clkdm",
> + .prcm = {
> + .omap4 = {
> + .modulemode = MODULEMODE_SWCTRL,
> + .clkctrl_offs = AM43XX_CM_PER_VPFE0_CLKCTRL_OFFSET,
> + },
> + },
> +};
> +
> +static struct omap_hwmod am43xx_vpfe1_hwmod = {
> + .name = "vpfe1",
> + .class = &am43xx_vpfe_hwmod_class,
> + .clkdm_name = "l3s_clkdm",
> + .prcm = {
> + .omap4 = {
> + .modulemode = MODULEMODE_SWCTRL,
> + .clkctrl_offs = AM43XX_CM_PER_VPFE1_CLKCTRL_OFFSET,
> + },
> + },
> +};
> +
> /* Interfaces */
> static struct omap_hwmod_ocp_if am43xx_l3_main__l4_hs = {
> .master = &am33xx_l3_main_hwmod,
> @@ -788,6 +826,34 @@ static struct omap_hwmod_ocp_if am43xx_l4_ls__dss_rfbi = {
> .user = OCP_USER_MPU | OCP_USER_SDMA,
> };
>
> +static struct omap_hwmod_ocp_if am43xx_l3__vpfe0 = {
> + .master = &am43xx_vpfe0_hwmod,
> + .slave = &am33xx_l3_main_hwmod,
> + .clk = "l3_gclk",
> + .user = OCP_USER_MPU | OCP_USER_SDMA,
> +};
> +
> +static struct omap_hwmod_ocp_if am43xx_l3__vpfe1 = {
> + .master = &am43xx_vpfe1_hwmod,
> + .slave = &am33xx_l3_main_hwmod,
> + .clk = "l3_gclk",
> + .user = OCP_USER_MPU | OCP_USER_SDMA,
> +};
> +
> +static struct omap_hwmod_ocp_if am43xx_l4_ls__vpfe0 = {
> + .master = &am33xx_l4_ls_hwmod,
> + .slave = &am43xx_vpfe0_hwmod,
> + .clk = "l4ls_gclk",
> + .user = OCP_USER_MPU | OCP_USER_SDMA,
> +};
> +
> +static struct omap_hwmod_ocp_if am43xx_l4_ls__vpfe1 = {
> + .master = &am33xx_l4_ls_hwmod,
> + .slave = &am43xx_vpfe1_hwmod,
> + .clk = "l4ls_gclk",
> + .user = OCP_USER_MPU | OCP_USER_SDMA,
> +};
> +
> static struct omap_hwmod_ocp_if *am43xx_hwmod_ocp_ifs[] __initdata = {
> &am33xx_l4_wkup__synctimer,
> &am43xx_l4_ls__timer8,
> @@ -887,6 +953,10 @@ static struct omap_hwmod_ocp_if *am43xx_hwmod_ocp_ifs[] __initdata = {
> &am43xx_l4_ls__dss,
> &am43xx_l4_ls__dss_dispc,
> &am43xx_l4_ls__dss_rfbi,
> + &am43xx_l3__vpfe0,
> + &am43xx_l3__vpfe1,
> + &am43xx_l4_ls__vpfe0,
> + &am43xx_l4_ls__vpfe1,
> NULL,
> };
>
> diff --git a/arch/arm/mach-omap2/prcm43xx.h b/arch/arm/mach-omap2/prcm43xx.h
> index ad7b3e9..8aa4c2c 100644
> --- a/arch/arm/mach-omap2/prcm43xx.h
> +++ b/arch/arm/mach-omap2/prcm43xx.h
> @@ -143,5 +143,6 @@
> #define AM43XX_CM_PER_USB_OTG_SS1_CLKCTRL_OFFSET 0x0268
> #define AM43XX_CM_PER_USBPHYOCP2SCP1_CLKCTRL_OFFSET 0x05C0
> #define AM43XX_CM_PER_DSS_CLKCTRL_OFFSET 0x0a20
> -
> +#define AM43XX_CM_PER_VPFE0_CLKCTRL_OFFSET 0x0068
> +#define AM43XX_CM_PER_VPFE1_CLKCTRL_OFFSET 0x0070
> #endif
> --
> 2.1.0
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
2015-01-28 19:32 ` Benoit Parrot
@ 2015-01-28 21:01 ` Lad, Prabhakar
2015-02-10 23:10 ` Paul Walmsley
1 sibling, 0 replies; 10+ messages in thread
From: Lad, Prabhakar @ 2015-01-28 21:01 UTC (permalink / raw)
To: linux-arm-kernel
Hi Benoit,
On Wed, Jan 28, 2015 at 7:32 PM, Benoit Parrot <bparrot@ti•com> wrote:
> Suspend/resume is functional with this patch.
>
> Tested-by: Benoit Parrot <bparrot@ti•com>
>
Thanks for the test, I was facing issues with loading the pm firmware.
Cheers,
--Prabhakar Lad
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
2015-01-28 19:32 ` Benoit Parrot
2015-01-28 21:01 ` Lad, Prabhakar
@ 2015-02-10 23:10 ` Paul Walmsley
2015-04-10 22:34 ` Lad, Prabhakar
1 sibling, 1 reply; 10+ messages in thread
From: Paul Walmsley @ 2015-02-10 23:10 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, 28 Jan 2015, Benoit Parrot wrote:
> Suspend/resume is functional with this patch.
>
> Tested-by: Benoit Parrot <bparrot@ti•com>
Thanks folks, queued for v3.21.
- Paul
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
2015-02-10 23:10 ` Paul Walmsley
@ 2015-04-10 22:34 ` Lad, Prabhakar
2015-04-10 22:51 ` Paul Walmsley
0 siblings, 1 reply; 10+ messages in thread
From: Lad, Prabhakar @ 2015-04-10 22:34 UTC (permalink / raw)
To: linux-arm-kernel
Hi Paul,
On Tue, Feb 10, 2015 at 11:10 PM, Paul Walmsley <paul@pwsan•com> wrote:
> On Wed, 28 Jan 2015, Benoit Parrot wrote:
>
>> Suspend/resume is functional with this patch.
>>
>> Tested-by: Benoit Parrot <bparrot@ti•com>
>
> Thanks folks, queued for v3.21.
>
>
I see that this patch is not into linux-next yet.
Cheers,
--Prabhakar Lad
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
2015-04-10 22:34 ` Lad, Prabhakar
@ 2015-04-10 22:51 ` Paul Walmsley
2015-04-10 22:57 ` Lad, Prabhakar
2015-05-01 9:00 ` Lad, Prabhakar
0 siblings, 2 replies; 10+ messages in thread
From: Paul Walmsley @ 2015-04-10 22:51 UTC (permalink / raw)
To: linux-arm-kernel
Hi Prabhakar
On Fri, 10 Apr 2015, Lad, Prabhakar wrote:
> Hi Paul,
>
> On Tue, Feb 10, 2015 at 11:10 PM, Paul Walmsley <paul@pwsan•com> wrote:
> > On Wed, 28 Jan 2015, Benoit Parrot wrote:
> >
> >> Suspend/resume is functional with this patch.
> >>
> >> Tested-by: Benoit Parrot <bparrot@ti•com>
> >
> > Thanks folks, queued for v3.21.
> >
> >
> I see that this patch is not into linux-next yet.
thanks for the ping. This slipped through the cracks here due to the
kernel version number change from 3.21 to 4.1 :-( Sorry about that; I
will requeue for either 4.1-rc or 4.2.
Unfortunately I don't have an AM43xx board. Is suspend/resume broken
without this patch? If so, then v4.1-rc seems like the appropriate
target.
- Paul
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
2015-04-10 22:51 ` Paul Walmsley
@ 2015-04-10 22:57 ` Lad, Prabhakar
2015-04-10 23:03 ` Paul Walmsley
2015-05-01 9:00 ` Lad, Prabhakar
1 sibling, 1 reply; 10+ messages in thread
From: Lad, Prabhakar @ 2015-04-10 22:57 UTC (permalink / raw)
To: linux-arm-kernel
Hi Paul,
On Fri, Apr 10, 2015 at 11:51 PM, Paul Walmsley <paul@pwsan•com> wrote:
> Hi Prabhakar
>
> On Fri, 10 Apr 2015, Lad, Prabhakar wrote:
>
>> Hi Paul,
>>
>> On Tue, Feb 10, 2015 at 11:10 PM, Paul Walmsley <paul@pwsan•com> wrote:
>> > On Wed, 28 Jan 2015, Benoit Parrot wrote:
>> >
>> >> Suspend/resume is functional with this patch.
>> >>
>> >> Tested-by: Benoit Parrot <bparrot@ti•com>
>> >
>> > Thanks folks, queued for v3.21.
>> >
>> >
>> I see that this patch is not into linux-next yet.
>
> thanks for the ping. This slipped through the cracks here due to the
> kernel version number change from 3.21 to 4.1 :-( Sorry about that; I
> will requeue for either 4.1-rc or 4.2.
>
> Unfortunately I don't have an AM43xx board. Is suspend/resume broken
> without this patch? If so, then v4.1-rc seems like the appropriate
> target.
>
there is kernel soft crashes without this patch, so this needs to go
in for v4.1-rc.
Cheers,
--Prabhakar Lad
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
2015-04-10 22:57 ` Lad, Prabhakar
@ 2015-04-10 23:03 ` Paul Walmsley
[not found] ` <CA+V-a8vTKiaJqttuvfU-NHznF=TghH5Fbzqwo8AcCRccn7DJgg@mail.gmail.com>
0 siblings, 1 reply; 10+ messages in thread
From: Paul Walmsley @ 2015-04-10 23:03 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, 10 Apr 2015, Lad, Prabhakar wrote:
> On Fri, Apr 10, 2015 at 11:51 PM, Paul Walmsley <paul@pwsan•com> wrote:
> > Hi Prabhakar
> >
> > On Fri, 10 Apr 2015, Lad, Prabhakar wrote:
> >
> >> Hi Paul,
> >>
> >> On Tue, Feb 10, 2015 at 11:10 PM, Paul Walmsley <paul@pwsan•com> wrote:
> >> > On Wed, 28 Jan 2015, Benoit Parrot wrote:
> >> >
> >> >> Suspend/resume is functional with this patch.
> >> >>
> >> >> Tested-by: Benoit Parrot <bparrot@ti•com>
> >> >
> >> > Thanks folks, queued for v3.21.
> >> >
> >> >
> >> I see that this patch is not into linux-next yet.
> >
> > thanks for the ping. This slipped through the cracks here due to the
> > kernel version number change from 3.21 to 4.1 :-( Sorry about that; I
> > will requeue for either 4.1-rc or 4.2.
> >
> > Unfortunately I don't have an AM43xx board. Is suspend/resume broken
> > without this patch? If so, then v4.1-rc seems like the appropriate
> > target.
> >
> there is kernel soft crashes without this patch, so this needs to go
> in for v4.1-rc.
Could you provide some further detail? Does it crash during boot, or
during suspend, or ... ? Also could you describe what you mean by "soft
crash" ?
- Paul
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
[not found] ` <CA+V-a8vTKiaJqttuvfU-NHznF=TghH5Fbzqwo8AcCRccn7DJgg@mail.gmail.com>
@ 2015-04-16 14:44 ` Lad, Prabhakar
0 siblings, 0 replies; 10+ messages in thread
From: Lad, Prabhakar @ 2015-04-16 14:44 UTC (permalink / raw)
To: linux-arm-kernel
Hi Paul,
On Sat, Apr 11, 2015 at 10:19 AM, Lad, Prabhakar
<prabhakar.csengg@gmail•com> wrote:
> On Sat, Apr 11, 2015 at 12:03 AM, Paul Walmsley <paul@pwsan•com> wrote:
>> On Fri, 10 Apr 2015, Lad, Prabhakar wrote:
>>
>>> On Fri, Apr 10, 2015 at 11:51 PM, Paul Walmsley <paul@pwsan•com> wrote:
>>> > Hi Prabhakar
>>> >
>>> > On Fri, 10 Apr 2015, Lad, Prabhakar wrote:
>>> >
>>> >> Hi Paul,
>>> >>
>>> >> On Tue, Feb 10, 2015 at 11:10 PM, Paul Walmsley <paul@pwsan•com> wrote:
>>> >> > On Wed, 28 Jan 2015, Benoit Parrot wrote:
>>> >> >
>>> >> >> Suspend/resume is functional with this patch.
>>> >> >>
>>> >> >> Tested-by: Benoit Parrot <bparrot@ti•com>
>>> >> >
>>> >> > Thanks folks, queued for v3.21.
>>> >> >
>>> >> >
>>> >> I see that this patch is not into linux-next yet.
>>> >
>>> > thanks for the ping. This slipped through the cracks here due to the
>>> > kernel version number change from 3.21 to 4.1 :-( Sorry about that; I
>>> > will requeue for either 4.1-rc or 4.2.
>>> >
>>> > Unfortunately I don't have an AM43xx board. Is suspend/resume broken
>>> > without this patch? If so, then v4.1-rc seems like the appropriate
>>> > target.
>>> >
>>> there is kernel soft crashes without this patch, so this needs to go
>>> in for v4.1-rc.
>>
>> Could you provide some further detail? Does it crash during boot, or
>> during suspend, or ... ? Also could you describe what you mean by "soft
>> crash" ?
>>
> with patch [1] applied and VPFE being enabled and this patch missing
> (ARM: AM43xx: hwmod: add VPFE hwmod entries) I have attached the
> boot log.
> By soft crash I meant it doesn't get hung :)
>
> With the above patch (ARM: AM43xx: hwmod: add VPFE hwmod entries)
> applied all goes well.
>
>
> [1] https://lkml.org/lkml/2015/3/12/1001
>
Any update on this ?
Cheers,
--Prabhakar Lad
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries
2015-04-10 22:51 ` Paul Walmsley
2015-04-10 22:57 ` Lad, Prabhakar
@ 2015-05-01 9:00 ` Lad, Prabhakar
1 sibling, 0 replies; 10+ messages in thread
From: Lad, Prabhakar @ 2015-05-01 9:00 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Apr 10, 2015 at 11:51 PM, Paul Walmsley <paul@pwsan•com> wrote:
> Hi Prabhakar
>
> On Fri, 10 Apr 2015, Lad, Prabhakar wrote:
>
>> Hi Paul,
>>
>> On Tue, Feb 10, 2015 at 11:10 PM, Paul Walmsley <paul@pwsan•com> wrote:
>> > On Wed, 28 Jan 2015, Benoit Parrot wrote:
>> >
>> >> Suspend/resume is functional with this patch.
>> >>
>> >> Tested-by: Benoit Parrot <bparrot@ti•com>
>> >
>> > Thanks folks, queued for v3.21.
>> >
>> >
>> I see that this patch is not into linux-next yet.
>
> thanks for the ping. This slipped through the cracks here due to the
> kernel version number change from 3.21 to 4.1 :-( Sorry about that; I
> will requeue for either 4.1-rc or 4.2.
>
> Unfortunately I don't have an AM43xx board. Is suspend/resume broken
> without this patch? If so, then v4.1-rc seems like the appropriate
> target.
>
>
Ping..
Cheers,
--Prabhakar Lad
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2015-05-01 9:00 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-26 8:21 [PATCH v3] ARM: AM43xx: hwmod: add VPFE hwmod entries Lad, Prabhakar
2015-01-28 19:32 ` Benoit Parrot
2015-01-28 21:01 ` Lad, Prabhakar
2015-02-10 23:10 ` Paul Walmsley
2015-04-10 22:34 ` Lad, Prabhakar
2015-04-10 22:51 ` Paul Walmsley
2015-04-10 22:57 ` Lad, Prabhakar
2015-04-10 23:03 ` Paul Walmsley
[not found] ` <CA+V-a8vTKiaJqttuvfU-NHznF=TghH5Fbzqwo8AcCRccn7DJgg@mail.gmail.com>
2015-04-16 14:44 ` Lad, Prabhakar
2015-05-01 9:00 ` Lad, Prabhakar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox