Split omap2_set_globals_prcm() into PRM, CM, and PRCM_MPU variants, since these are all separate IP blocks. This should make it easier to move the PRM, CM, PRCM_MPU code into drivers/ in future patchsets. At this point arch/arm/plat-omap/include/plat/prcm.h is empty; a subsequent patch will remove it, and remove the #include from all the files that #include it. Signed-off-by: Paul Walmsley <paul@pwsan.com> Tested-by: Vaibhav Hiremath <hvaibhav@ti.com>
65 lines
1.5 KiB
C
65 lines
1.5 KiB
C
/*
|
|
* linux/arch/arm/mach-omap2/prcm.c
|
|
*
|
|
* OMAP 24xx Power Reset and Clock Management (PRCM) functions
|
|
*
|
|
* Copyright (C) 2005 Nokia Corporation
|
|
*
|
|
* Written by Tony Lindgren <tony.lindgren@nokia.com>
|
|
*
|
|
* Copyright (C) 2007 Texas Instruments, Inc.
|
|
* Rajendra Nayak <rnayak@ti.com>
|
|
*
|
|
* Some pieces of code Copyright (C) 2005 Texas Instruments, Inc.
|
|
* Upgraded with OMAP4 support by Abhijit Pagare <abhijitpagare@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/init.h>
|
|
#include <linux/clk.h>
|
|
#include <linux/io.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/export.h>
|
|
|
|
#include "common.h"
|
|
#include <plat/prcm.h>
|
|
|
|
#include "soc.h"
|
|
#include "clock.h"
|
|
#include "clock2xxx.h"
|
|
#include "cm2xxx_3xxx.h"
|
|
#include "prm2xxx_3xxx.h"
|
|
#include "prm44xx.h"
|
|
#include "prminst44xx.h"
|
|
#include "cminst44xx.h"
|
|
#include "prm-regbits-24xx.h"
|
|
#include "prm-regbits-44xx.h"
|
|
#include "control.h"
|
|
|
|
|
|
/*
|
|
* Stubbed functions so that common files continue to build when
|
|
* custom builds are used
|
|
* XXX These are temporary and should be removed at the earliest possible
|
|
* opportunity
|
|
*/
|
|
int __weak omap4_cminst_wait_module_idle(u8 part, u16 inst, s16 cdoffs,
|
|
u16 clkctrl_offs)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void __weak omap4_cminst_module_enable(u8 mode, u8 part, u16 inst,
|
|
s16 cdoffs, u16 clkctrl_offs)
|
|
{
|
|
}
|
|
|
|
void __weak omap4_cminst_module_disable(u8 part, u16 inst, s16 cdoffs,
|
|
u16 clkctrl_offs)
|
|
{
|
|
}
|