lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Wed, 12 Aug 2015 12:32:09 -0700
From:	Kevin Hilman <khilman@...nel.org>
To:	Eduardo Valentin <edubezval@...il.com>
Cc:	Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
	Jiri Slaby <jslaby@...e.com>,
	Fabio Estevam <festevam@...il.com>,
	Sascha Hauer <s.hauer@...gutronix.de>,
	Linux PM <linux-pm@...r.kernel.org>,
	linux-serial@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCHv2 6/8] serial: imx: add runtime pm support

Eduardo Valentin <edubezval@...il.com> writes:

> This change introduces the runtime pm support on imx serial
> driver. The objective is to be able to idle the uart
> port whenever it is not in use while still being able
> to wake it up when needed. The key changes in this patch are:
> 1. Move the clock handling to runtime pm. Both, ipg and per,
> are now handled in the suspend and resume callbacks. Only
> enabling and disabling the clocks are handled in runtime
> suspend and resume, so we are able to use runtime pm
> in IRQ context.
> 2. Clocks are prepared in probe and unprepared in remove,
> so we do not need to prepare (may sleep) in runtime pm.
> 3. We mark the device activity based on uart and console
> callbacks. Whenever the device is needed and we want to
> access registers, we runtime_pm_get and then mark its
> last usage when we are done. This is done also across
> IRQs and DMA callbacks.
> 4. We reuse the infrastructure in place for suspend and
> resume, so we do not need to redo wakeup configuration,
> or context save and restore.
>
> After this change, the clocks are still sane, in the sense
> of having balanced clock prepare and enable.
>
> Cc: Fabio Estevam <festevam@...il.com>
> Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
> Cc: Jiri Slaby <jslaby@...e.com>
> Cc: linux-serial@...r.kernel.org
> Cc: linux-kernel@...r.kernel.org
> Signed-off-by: Eduardo Valentin <edubezval@...il.com>

[...]

> +static int serial_imx_runtime_suspend(struct device *dev)
> +{
> +	struct imx_port *sport = dev_get_drvdata(dev);
> +
> +	if (!sport)
> +		return -EINVAL;
> +
> +	/*
> +	* When using 'no_console_suspend', the console UART must not be
> +	* suspended. Since driver suspend is managed by runtime suspend,
> +	* preventing runtime suspend (by returning error) will keep device
> +	* active during suspend.
> +	*/
> +	if (sport->is_suspending && !console_suspend_enabled &&
> +	    uart_console(&sport->port))
> +		return -EBUSY;
> +
> +	serial_imx_save_context(sport);
> +	serial_imx_enable_wakeup(sport, true);
> +
> +	sport->latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
> +	schedule_work(&sport->qos_work);
> +	clk_disable(sport->clk_per);
> +	clk_disable(sport->clk_ipg);
> +
> +	return 0;
> +}
> +
> +static int serial_imx_runtime_resume(struct device *dev)
> +{
> +	struct imx_port *sport = dev_get_drvdata(dev);
> +
> +	clk_enable(sport->clk_per);
> +	clk_enable(sport->clk_ipg);
> +	serial_imx_enable_wakeup(sport, false);
> +
> +	sport->latency = sport->calc_latency;
> +	schedule_work(&sport->qos_work);
> +	serial_imx_restore_context(sport);
> +
> +	return 0;
> +}

Looking at the clk usage in the_runtime_[suspend|resume] callbacks, did
you consider using the runtime PM generic clock layer (pm_clk_*).  You
can have a look at mach-shmobile for an example modern user of this, or
mach-davinci for a legacy (pre-DT) way of using it.

Kevin
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ