Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1469801
| From | Andy Gross <andy.gross@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] tty: serial: msm: Add runtime PM and system sleep support |
| Date | 2016-08-25 06:40 +0200 |
| Message-ID | <s9UCl-4wb-1@gated-at.bofh.it> (permalink) |
| References | <rKZ2x-5fM-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 17 June 2016 at 05:16, Pramod Gurav <pramod.gurav@linaro.org> wrote:
<snip>
> @@ -1635,6 +1732,7 @@ static int msm_serial_remove(struct platform_device *pdev)
> struct uart_port *port = platform_get_drvdata(pdev);
>
> uart_remove_one_port(&msm_uart_driver, port);
> + pm_runtime_disable(&pdev->dev);
>
> return 0;
> }
> @@ -1645,12 +1743,67 @@ static const struct of_device_id msm_match_table[] = {
> {}
> };
>
> +#ifdef CONFIG_PM
> +static int msm_serial_runtime_suspend(struct device *dev)
> +{
> + struct uart_port *port = dev_get_drvdata(dev);
> + struct msm_port *msm_port = UART_TO_MSM(port);
> +
> + if (msm_port->is_uartdm)
> + clk_disable(msm_port->pclk);
You don't need to check, just clk_disable it.
> +
> + return 0;
> +}
> +
> +static int msm_serial_runtime_resume(struct device *dev)
> +{
> + struct uart_port *port = dev_get_drvdata(dev);
> + struct msm_port *msm_port = UART_TO_MSM(port);
> + int ret;
> +
> + if (msm_port->is_uartdm) {
> + ret = clk_enable(msm_port->pclk);
Ditto here.
> + if (ret)
> + return ret;
> + }
> +
> + return 0;
> +}
> +#endif
> +
Regards,
Andy
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
Re: [PATCH] tty: serial: msm: Add runtime PM and system sleep support Andy Gross <andy.gross@linaro.org> - 2016-08-25 06:40 +0200 Re: [PATCH] tty: serial: msm: Add runtime PM and system sleep support Pramod Gurav <pramod.gurav@linaro.org> - 2016-08-25 06:50 +0200
csiph-web