mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 01:51:53 +00:00
a330ce3cda
This patch adds basic A4LC pm domain support. Now, below devices can be controled by PM MERAM, LCDC, VOU, ICBS, SDENC-Link Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Acked-by: Magnus Damm <damm@opensource.se> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
/*
|
|
* r8a7740 power management support
|
|
*
|
|
* Copyright (C) 2012 Renesas Solutions Corp.
|
|
* Copyright (C) 2012 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
#include <linux/console.h>
|
|
#include <mach/pm-rmobile.h>
|
|
|
|
#ifdef CONFIG_PM
|
|
static int r8a7740_pd_a4s_suspend(void)
|
|
{
|
|
/*
|
|
* The A4S domain contains the CPU core and therefore it should
|
|
* only be turned off if the CPU is in use.
|
|
*/
|
|
return -EBUSY;
|
|
}
|
|
|
|
struct rmobile_pm_domain r8a7740_pd_a4s = {
|
|
.genpd.name = "A4S",
|
|
.bit_shift = 10,
|
|
.gov = &pm_domain_always_on_gov,
|
|
.no_debug = true,
|
|
.suspend = r8a7740_pd_a4s_suspend,
|
|
};
|
|
|
|
static int r8a7740_pd_a3sp_suspend(void)
|
|
{
|
|
/*
|
|
* Serial consoles make use of SCIF hardware located in A3SP,
|
|
* keep such power domain on if "no_console_suspend" is set.
|
|
*/
|
|
return console_suspend_enabled ? 0 : -EBUSY;
|
|
}
|
|
|
|
struct rmobile_pm_domain r8a7740_pd_a3sp = {
|
|
.genpd.name = "A3SP",
|
|
.bit_shift = 11,
|
|
.gov = &pm_domain_always_on_gov,
|
|
.no_debug = true,
|
|
.suspend = r8a7740_pd_a3sp_suspend,
|
|
};
|
|
|
|
struct rmobile_pm_domain r8a7740_pd_a4lc = {
|
|
.genpd.name = "A4LC",
|
|
.bit_shift = 1,
|
|
};
|
|
|
|
#endif /* CONFIG_PM */
|