mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
498153995b
Move the low-level SoC-specific powerdomain control functions into prm*.c. For example, OMAP2xxx low-level powerdomain functions go into prm2xxx.c. Then remove the unnecessary powerdomain*xxx*.c files. The objective is to centralize low-level PRM register accesses into the prm*.[ch] files, and then to export an OMAP SoC-independent API to higher-level OMAP power management code. Signed-off-by: Paul Walmsley <paul@pwsan.com> Cc: Rajendra Nayak <rnayak@ti.com> Cc: Vaibhav Hiremath <hvaibhav@ti.com> Acked-by: Rajendra Nayak <rnayak@ti.com> Reviewed-by: Russ Dill <Russ.Dill@ti.com> Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
/*
|
|
* OMAP2xxx PRM module functions
|
|
*
|
|
* Copyright (C) 2010-2012 Texas Instruments, Inc.
|
|
* Copyright (C) 2010 Nokia Corporation
|
|
* Benoît Cousson
|
|
* Paul Walmsley
|
|
* Rajendra Nayak <rnayak@ti.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/err.h>
|
|
#include <linux/io.h>
|
|
#include <linux/irq.h>
|
|
|
|
#include "common.h"
|
|
#include <plat/cpu.h>
|
|
#include <plat/prcm.h>
|
|
|
|
#include "vp.h"
|
|
#include "powerdomain.h"
|
|
#include "prm2xxx.h"
|
|
#include "cm2xxx_3xxx.h"
|
|
#include "prm-regbits-24xx.h"
|
|
|
|
struct pwrdm_ops omap2_pwrdm_operations = {
|
|
.pwrdm_set_next_pwrst = omap2_pwrdm_set_next_pwrst,
|
|
.pwrdm_read_next_pwrst = omap2_pwrdm_read_next_pwrst,
|
|
.pwrdm_read_pwrst = omap2_pwrdm_read_pwrst,
|
|
.pwrdm_set_logic_retst = omap2_pwrdm_set_logic_retst,
|
|
.pwrdm_set_mem_onst = omap2_pwrdm_set_mem_onst,
|
|
.pwrdm_set_mem_retst = omap2_pwrdm_set_mem_retst,
|
|
.pwrdm_read_mem_pwrst = omap2_pwrdm_read_mem_pwrst,
|
|
.pwrdm_read_mem_retst = omap2_pwrdm_read_mem_retst,
|
|
.pwrdm_wait_transition = omap2_pwrdm_wait_transition,
|
|
};
|