OMAP4: PRCM: add OMAP4-specific accessor/mutator functions
[pandora-kernel.git] / arch / arm / mach-omap2 / prcm.c
1 /*
2  * linux/arch/arm/mach-omap2/prcm.c
3  *
4  * OMAP 24xx Power Reset and Clock Management (PRCM) functions
5  *
6  * Copyright (C) 2005 Nokia Corporation
7  *
8  * Written by Tony Lindgren <tony.lindgren@nokia.com>
9  *
10  * Copyright (C) 2007 Texas Instruments, Inc.
11  * Rajendra Nayak <rnayak@ti.com>
12  *
13  * Some pieces of code Copyright (C) 2005 Texas Instruments, Inc.
14  * Upgraded with OMAP4 support by Abhijit Pagare <abhijitpagare@ti.com>
15  *
16  * This program is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License version 2 as
18  * published by the Free Software Foundation.
19  */
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/clk.h>
23 #include <linux/io.h>
24 #include <linux/delay.h>
25
26 #include <plat/common.h>
27 #include <plat/prcm.h>
28 #include <plat/irqs.h>
29
30 #include "clock.h"
31 #include "clock2xxx.h"
32 #include "cm2xxx_3xxx.h"
33 #include "cm44xx.h"
34 #include "prm2xxx_3xxx.h"
35 #include "prm44xx.h"
36 #include "prcm44xx.h"
37 #include "prm-regbits-24xx.h"
38 #include "prm-regbits-44xx.h"
39 #include "control.h"
40
41 void __iomem *prm_base;
42 void __iomem *cm_base;
43 void __iomem *cm2_base;
44
45 #define MAX_MODULE_ENABLE_WAIT          100000
46
47 u32 omap_prcm_get_reset_sources(void)
48 {
49         /* XXX This presumably needs modification for 34XX */
50         if (cpu_is_omap24xx() || cpu_is_omap34xx())
51                 return prm_read_mod_reg(WKUP_MOD, OMAP2_RM_RSTST) & 0x7f;
52         if (cpu_is_omap44xx())
53                 return prm_read_mod_reg(WKUP_MOD, OMAP4_RM_RSTST) & 0x7f;
54
55         return 0;
56 }
57 EXPORT_SYMBOL(omap_prcm_get_reset_sources);
58
59 /* Resets clock rates and reboots the system. Only called from system.h */
60 void omap_prcm_arch_reset(char mode, const char *cmd)
61 {
62         s16 prcm_offs = 0;
63
64         if (cpu_is_omap24xx()) {
65                 omap2xxx_clk_prepare_for_reboot();
66
67                 prcm_offs = WKUP_MOD;
68         } else if (cpu_is_omap34xx()) {
69                 prcm_offs = OMAP3430_GR_MOD;
70                 omap3_ctrl_write_boot_mode((cmd ? (u8)*cmd : 0));
71         } else if (cpu_is_omap44xx())
72                 prcm_offs = OMAP4430_PRM_DEVICE_INST;
73         else
74                 WARN_ON(1);
75
76         if (cpu_is_omap24xx() || cpu_is_omap34xx())
77                 prm_set_mod_reg_bits(OMAP_RST_DPLL3_MASK, prcm_offs,
78                                                  OMAP2_RM_RSTCTRL);
79         if (cpu_is_omap44xx())
80                 prm_set_mod_reg_bits(OMAP4430_RST_GLOBAL_WARM_SW_MASK,
81                                      prcm_offs, OMAP4_RM_RSTCTRL);
82 }
83
84 /**
85  * omap2_cm_wait_idlest - wait for IDLEST bit to indicate module readiness
86  * @reg: physical address of module IDLEST register
87  * @mask: value to mask against to determine if the module is active
88  * @idlest: idle state indicator (0 or 1) for the clock
89  * @name: name of the clock (for printk)
90  *
91  * Returns 1 if the module indicated readiness in time, or 0 if it
92  * failed to enable in roughly MAX_MODULE_ENABLE_WAIT microseconds.
93  *
94  * XXX This function is deprecated.  It should be removed once the
95  * hwmod conversion is complete.
96  */
97 int omap2_cm_wait_idlest(void __iomem *reg, u32 mask, u8 idlest,
98                                 const char *name)
99 {
100         int i = 0;
101         int ena = 0;
102
103         if (idlest)
104                 ena = 0;
105         else
106                 ena = mask;
107
108         /* Wait for lock */
109         omap_test_timeout(((__raw_readl(reg) & mask) == ena),
110                           MAX_MODULE_ENABLE_WAIT, i);
111
112         if (i < MAX_MODULE_ENABLE_WAIT)
113                 pr_debug("cm: Module associated with clock %s ready after %d "
114                          "loops\n", name, i);
115         else
116                 pr_err("cm: Module associated with clock %s didn't enable in "
117                        "%d tries\n", name, MAX_MODULE_ENABLE_WAIT);
118
119         return (i < MAX_MODULE_ENABLE_WAIT) ? 1 : 0;
120 };
121
122 void __init omap2_set_globals_prcm(struct omap_globals *omap2_globals)
123 {
124         /* Static mapping, never released */
125         if (omap2_globals->prm) {
126                 prm_base = ioremap(omap2_globals->prm, SZ_8K);
127                 WARN_ON(!prm_base);
128         }
129         if (omap2_globals->cm) {
130                 cm_base = ioremap(omap2_globals->cm, SZ_8K);
131                 WARN_ON(!cm_base);
132         }
133         if (omap2_globals->cm2) {
134                 cm2_base = ioremap(omap2_globals->cm2, SZ_8K);
135                 WARN_ON(!cm2_base);
136         }
137 }