Message ID | 1366198467-6757-7-git-send-email-sourav.poddar@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Sourav Poddar <sourav.poddar@ti.com> writes: > Since the omap serial driver is now adapted to handle the > case where you dont need to cut the clock on suspend while > using "no_console_suspend" in the bootargs. > > We can get rid of the previous implementation of setting the od->flags to > "OMAP_DEVICE_NO_IDLE_ON_SUSPEND" from platform > and omap_device files. > > Cc: Santosh Shilimkar <santosh.shilimkar@ti.com> > Cc: Felipe Balbi <balbi@ti.com> > Cc: Rajendra nayak <rnayak@ti.com> > Signed-off-by: Sourav Poddar <sourav.poddar@ti.com> Subject should be arm: omap2+: omap_device: remove no_idle_on_suspend Also, you should remove the flag from omap_device.h. Kevin > --- > arch/arm/mach-omap2/omap_device.c | 3 --- > arch/arm/mach-omap2/serial.c | 7 ------- > 2 files changed, 0 insertions(+), 10 deletions(-) > > diff --git a/arch/arm/mach-omap2/omap_device.c b/arch/arm/mach-omap2/omap_device.c > index d6dce8f..c226946 100644 > --- a/arch/arm/mach-omap2/omap_device.c > +++ b/arch/arm/mach-omap2/omap_device.c > @@ -170,9 +170,6 @@ static int omap_device_build_from_dt(struct platform_device *pdev) > r->name = dev_name(&pdev->dev); > } > > - if (of_get_property(node, "ti,no_idle_on_suspend", NULL)) > - omap_device_disable_idle_on_suspend(pdev); > - > pdev->dev.pm_domain = &omap_device_pm_domain; > > odbfd_exit1: > diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c > index f660156..58d5b56 100644 > --- a/arch/arm/mach-omap2/serial.c > +++ b/arch/arm/mach-omap2/serial.c > @@ -63,7 +63,6 @@ struct omap_uart_state { > static LIST_HEAD(uart_list); > static u8 num_uarts; > static u8 console_uart_id = -1; > -static u8 no_console_suspend; > static u8 uart_debug; > > #define DEFAULT_RXDMA_POLLRATE 1 /* RX DMA polling rate (us) */ > @@ -207,9 +206,6 @@ static int __init omap_serial_early_init(void) > uart_name, uart->num); > } > > - if (cmdline_find_option("no_console_suspend")) > - no_console_suspend = true; > - > /* > * omap-uart can be used for earlyprintk logs > * So if omap-uart is used as console then prevent > @@ -292,9 +288,6 @@ void __init omap_serial_init_port(struct omap_board_data *bdata, > return; > } > > - if ((console_uart_id == bdata->id) && no_console_suspend) > - omap_device_disable_idle_on_suspend(pdev); > - > oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt); > > if (console_uart_id == bdata->id) { -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Sourav Poddar <sourav.poddar@ti.com> writes: > Since the omap serial driver is now adapted to handle the > case where you dont need to cut the clock on suspend while > using "no_console_suspend" in the bootargs. > > We can get rid of the previous implementation of setting the od->flags to > "OMAP_DEVICE_NO_IDLE_ON_SUSPEND" from platform > and omap_device files. > > Cc: Santosh Shilimkar <santosh.shilimkar@ti.com> > Cc: Felipe Balbi <balbi@ti.com> > Cc: Rajendra nayak <rnayak@ti.com> > Signed-off-by: Sourav Poddar <sourav.poddar@ti.com> also, the serial.c change here should be a separate patch subject: arm: omap2+: serial: remove no_console_suspend support with a changelog stating that it's no longer handled in the core. Kevin > --- > arch/arm/mach-omap2/omap_device.c | 3 --- > arch/arm/mach-omap2/serial.c | 7 ------- > 2 files changed, 0 insertions(+), 10 deletions(-) > > diff --git a/arch/arm/mach-omap2/omap_device.c b/arch/arm/mach-omap2/omap_device.c > index d6dce8f..c226946 100644 > --- a/arch/arm/mach-omap2/omap_device.c > +++ b/arch/arm/mach-omap2/omap_device.c > @@ -170,9 +170,6 @@ static int omap_device_build_from_dt(struct platform_device *pdev) > r->name = dev_name(&pdev->dev); > } > > - if (of_get_property(node, "ti,no_idle_on_suspend", NULL)) > - omap_device_disable_idle_on_suspend(pdev); > - > pdev->dev.pm_domain = &omap_device_pm_domain; > > odbfd_exit1: > diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c > index f660156..58d5b56 100644 > --- a/arch/arm/mach-omap2/serial.c > +++ b/arch/arm/mach-omap2/serial.c > @@ -63,7 +63,6 @@ struct omap_uart_state { > static LIST_HEAD(uart_list); > static u8 num_uarts; > static u8 console_uart_id = -1; > -static u8 no_console_suspend; > static u8 uart_debug; > > #define DEFAULT_RXDMA_POLLRATE 1 /* RX DMA polling rate (us) */ > @@ -207,9 +206,6 @@ static int __init omap_serial_early_init(void) > uart_name, uart->num); > } > > - if (cmdline_find_option("no_console_suspend")) > - no_console_suspend = true; > - > /* > * omap-uart can be used for earlyprintk logs > * So if omap-uart is used as console then prevent > @@ -292,9 +288,6 @@ void __init omap_serial_init_port(struct omap_board_data *bdata, > return; > } > > - if ((console_uart_id == bdata->id) && no_console_suspend) > - omap_device_disable_idle_on_suspend(pdev); > - > oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt); > > if (console_uart_id == bdata->id) { -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi Kevin, On Thursday 18 April 2013 11:39 PM, Kevin Hilman wrote: > Sourav Poddar<sourav.poddar@ti.com> writes: > >> Since the omap serial driver is now adapted to handle the >> case where you dont need to cut the clock on suspend while >> using "no_console_suspend" in the bootargs. >> >> We can get rid of the previous implementation of setting the od->flags to >> "OMAP_DEVICE_NO_IDLE_ON_SUSPEND" from platform >> and omap_device files. >> >> Cc: Santosh Shilimkar<santosh.shilimkar@ti.com> >> Cc: Felipe Balbi<balbi@ti.com> >> Cc: Rajendra nayak<rnayak@ti.com> >> Signed-off-by: Sourav Poddar<sourav.poddar@ti.com> > Subject should be arm: omap2+: omap_device: remove no_idle_on_suspend > > Also, you should remove the flag from omap_device.h. > > Kevin Ok. Will change it in the next version. ~Sourav >> --- >> arch/arm/mach-omap2/omap_device.c | 3 --- >> arch/arm/mach-omap2/serial.c | 7 ------- >> 2 files changed, 0 insertions(+), 10 deletions(-) >> >> diff --git a/arch/arm/mach-omap2/omap_device.c b/arch/arm/mach-omap2/omap_device.c >> index d6dce8f..c226946 100644 >> --- a/arch/arm/mach-omap2/omap_device.c >> +++ b/arch/arm/mach-omap2/omap_device.c >> @@ -170,9 +170,6 @@ static int omap_device_build_from_dt(struct platform_device *pdev) >> r->name = dev_name(&pdev->dev); >> } >> >> - if (of_get_property(node, "ti,no_idle_on_suspend", NULL)) >> - omap_device_disable_idle_on_suspend(pdev); >> - >> pdev->dev.pm_domain =&omap_device_pm_domain; >> >> odbfd_exit1: >> diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c >> index f660156..58d5b56 100644 >> --- a/arch/arm/mach-omap2/serial.c >> +++ b/arch/arm/mach-omap2/serial.c >> @@ -63,7 +63,6 @@ struct omap_uart_state { >> static LIST_HEAD(uart_list); >> static u8 num_uarts; >> static u8 console_uart_id = -1; >> -static u8 no_console_suspend; >> static u8 uart_debug; >> >> #define DEFAULT_RXDMA_POLLRATE 1 /* RX DMA polling rate (us) */ >> @@ -207,9 +206,6 @@ static int __init omap_serial_early_init(void) >> uart_name, uart->num); >> } >> >> - if (cmdline_find_option("no_console_suspend")) >> - no_console_suspend = true; >> - >> /* >> * omap-uart can be used for earlyprintk logs >> * So if omap-uart is used as console then prevent >> @@ -292,9 +288,6 @@ void __init omap_serial_init_port(struct omap_board_data *bdata, >> return; >> } >> >> - if ((console_uart_id == bdata->id)&& no_console_suspend) >> - omap_device_disable_idle_on_suspend(pdev); >> - >> oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt); >> >> if (console_uart_id == bdata->id) { -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi Kevin, On Thursday 18 April 2013 11:41 PM, Kevin Hilman wrote: > Sourav Poddar<sourav.poddar@ti.com> writes: > >> Since the omap serial driver is now adapted to handle the >> case where you dont need to cut the clock on suspend while >> using "no_console_suspend" in the bootargs. >> >> We can get rid of the previous implementation of setting the od->flags to >> "OMAP_DEVICE_NO_IDLE_ON_SUSPEND" from platform >> and omap_device files. >> >> Cc: Santosh Shilimkar<santosh.shilimkar@ti.com> >> Cc: Felipe Balbi<balbi@ti.com> >> Cc: Rajendra nayak<rnayak@ti.com> >> Signed-off-by: Sourav Poddar<sourav.poddar@ti.com> > also, the serial.c change here should be a separate patch > subject: arm: omap2+: serial: remove no_console_suspend support > > with a changelog stating that it's no longer handled in the core. > Ok. Will create a seperate patch and update the changelog. > Kevin > >> --- >> arch/arm/mach-omap2/omap_device.c | 3 --- >> arch/arm/mach-omap2/serial.c | 7 ------- >> 2 files changed, 0 insertions(+), 10 deletions(-) >> >> diff --git a/arch/arm/mach-omap2/omap_device.c b/arch/arm/mach-omap2/omap_device.c >> index d6dce8f..c226946 100644 >> --- a/arch/arm/mach-omap2/omap_device.c >> +++ b/arch/arm/mach-omap2/omap_device.c >> @@ -170,9 +170,6 @@ static int omap_device_build_from_dt(struct platform_device *pdev) >> r->name = dev_name(&pdev->dev); >> } >> >> - if (of_get_property(node, "ti,no_idle_on_suspend", NULL)) >> - omap_device_disable_idle_on_suspend(pdev); >> - >> pdev->dev.pm_domain =&omap_device_pm_domain; >> >> odbfd_exit1: >> diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c >> index f660156..58d5b56 100644 >> --- a/arch/arm/mach-omap2/serial.c >> +++ b/arch/arm/mach-omap2/serial.c >> @@ -63,7 +63,6 @@ struct omap_uart_state { >> static LIST_HEAD(uart_list); >> static u8 num_uarts; >> static u8 console_uart_id = -1; >> -static u8 no_console_suspend; >> static u8 uart_debug; >> >> #define DEFAULT_RXDMA_POLLRATE 1 /* RX DMA polling rate (us) */ >> @@ -207,9 +206,6 @@ static int __init omap_serial_early_init(void) >> uart_name, uart->num); >> } >> >> - if (cmdline_find_option("no_console_suspend")) >> - no_console_suspend = true; >> - >> /* >> * omap-uart can be used for earlyprintk logs >> * So if omap-uart is used as console then prevent >> @@ -292,9 +288,6 @@ void __init omap_serial_init_port(struct omap_board_data *bdata, >> return; >> } >> >> - if ((console_uart_id == bdata->id)&& no_console_suspend) >> - omap_device_disable_idle_on_suspend(pdev); >> - >> oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt); >> >> if (console_uart_id == bdata->id) { -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/mach-omap2/omap_device.c b/arch/arm/mach-omap2/omap_device.c index d6dce8f..c226946 100644 --- a/arch/arm/mach-omap2/omap_device.c +++ b/arch/arm/mach-omap2/omap_device.c @@ -170,9 +170,6 @@ static int omap_device_build_from_dt(struct platform_device *pdev) r->name = dev_name(&pdev->dev); } - if (of_get_property(node, "ti,no_idle_on_suspend", NULL)) - omap_device_disable_idle_on_suspend(pdev); - pdev->dev.pm_domain = &omap_device_pm_domain; odbfd_exit1: diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index f660156..58d5b56 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c @@ -63,7 +63,6 @@ struct omap_uart_state { static LIST_HEAD(uart_list); static u8 num_uarts; static u8 console_uart_id = -1; -static u8 no_console_suspend; static u8 uart_debug; #define DEFAULT_RXDMA_POLLRATE 1 /* RX DMA polling rate (us) */ @@ -207,9 +206,6 @@ static int __init omap_serial_early_init(void) uart_name, uart->num); } - if (cmdline_find_option("no_console_suspend")) - no_console_suspend = true; - /* * omap-uart can be used for earlyprintk logs * So if omap-uart is used as console then prevent @@ -292,9 +288,6 @@ void __init omap_serial_init_port(struct omap_board_data *bdata, return; } - if ((console_uart_id == bdata->id) && no_console_suspend) - omap_device_disable_idle_on_suspend(pdev); - oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt); if (console_uart_id == bdata->id) {
Since the omap serial driver is now adapted to handle the case where you dont need to cut the clock on suspend while using "no_console_suspend" in the bootargs. We can get rid of the previous implementation of setting the od->flags to "OMAP_DEVICE_NO_IDLE_ON_SUSPEND" from platform and omap_device files. Cc: Santosh Shilimkar <santosh.shilimkar@ti.com> Cc: Felipe Balbi <balbi@ti.com> Cc: Rajendra nayak <rnayak@ti.com> Signed-off-by: Sourav Poddar <sourav.poddar@ti.com> --- arch/arm/mach-omap2/omap_device.c | 3 --- arch/arm/mach-omap2/serial.c | 7 ------- 2 files changed, 0 insertions(+), 10 deletions(-)