/* * 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 * * Copyright (C) 2007 Texas Instruments, Inc. * Rajendra Nayak * * Some pieces of code Copyright (C) 2005 Texas Instruments, Inc. * Upgraded with OMAP4 support by Abhijit Pagare * * 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 #include #include #include #include #include #include "common.h" #include #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" void __iomem *prm_base; void __iomem *cm_base; void __iomem *cm2_base; void __iomem *prcm_mpu_base; void __init omap2_set_globals_prcm(void __iomem *prm, void __iomem *cm, void __iomem *cm2, void __iomem *prcm_mpu) { prm_base = prm; cm_base = cm; cm2_base = cm2; prcm_mpu_base = prcm_mpu; if (cpu_is_omap44xx() || soc_is_omap54xx()) { omap_prm_base_init(); omap_cm_base_init(); } } /* * 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) { }