diff options
-rw-r--r-- | arch/arm/mach-omap2/clockdomain44xx.c | 10 | ||||
-rw-r--r-- | arch/arm/mach-omap2/cminst44xx.c | 14 | ||||
-rw-r--r-- | arch/arm/mach-omap2/cminst44xx.h | 25 | ||||
-rw-r--r-- | arch/arm/mach-omap2/control.h | 1 | ||||
-rw-r--r-- | arch/arm/mach-omap2/dpll3xxx.c | 12 | ||||
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod.c | 76 | ||||
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_common_data.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-omap2/powerdomain.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-omap2/prcm.c | 23 | ||||
-rw-r--r-- | arch/arm/mach-omap2/prm2xxx_3xxx.h | 65 | ||||
-rw-r--r-- | arch/arm/mach-omap2/prm_common.c | 62 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/plat/omap_hwmod.h | 7 |
12 files changed, 188 insertions, 114 deletions
diff --git a/arch/arm/mach-omap2/clockdomain44xx.c b/arch/arm/mach-omap2/clockdomain44xx.c index 4f04dd11d655..762f2cc542ce 100644 --- a/arch/arm/mach-omap2/clockdomain44xx.c +++ b/arch/arm/mach-omap2/clockdomain44xx.c | |||
@@ -70,7 +70,7 @@ static int omap4_clkdm_clear_all_wkup_sleep_deps(struct clockdomain *clkdm) | |||
70 | 70 | ||
71 | static int omap4_clkdm_sleep(struct clockdomain *clkdm) | 71 | static int omap4_clkdm_sleep(struct clockdomain *clkdm) |
72 | { | 72 | { |
73 | omap4_cminst_clkdm_force_sleep(clkdm->prcm_partition, | 73 | omap4_cminst_clkdm_enable_hwsup(clkdm->prcm_partition, |
74 | clkdm->cm_inst, clkdm->clkdm_offs); | 74 | clkdm->cm_inst, clkdm->clkdm_offs); |
75 | return 0; | 75 | return 0; |
76 | } | 76 | } |
@@ -90,8 +90,12 @@ static void omap4_clkdm_allow_idle(struct clockdomain *clkdm) | |||
90 | 90 | ||
91 | static void omap4_clkdm_deny_idle(struct clockdomain *clkdm) | 91 | static void omap4_clkdm_deny_idle(struct clockdomain *clkdm) |
92 | { | 92 | { |
93 | omap4_cminst_clkdm_disable_hwsup(clkdm->prcm_partition, | 93 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) |
94 | clkdm->cm_inst, clkdm->clkdm_offs); | 94 | omap4_clkdm_wakeup(clkdm); |
95 | else | ||
96 | omap4_cminst_clkdm_disable_hwsup(clkdm->prcm_partition, | ||
97 | clkdm->cm_inst, | ||
98 | clkdm->clkdm_offs); | ||
95 | } | 99 | } |
96 | 100 | ||
97 | static int omap4_clkdm_clk_enable(struct clockdomain *clkdm) | 101 | static int omap4_clkdm_clk_enable(struct clockdomain *clkdm) |
diff --git a/arch/arm/mach-omap2/cminst44xx.c b/arch/arm/mach-omap2/cminst44xx.c index 1a39945d9ff8..1894015ff04b 100644 --- a/arch/arm/mach-omap2/cminst44xx.c +++ b/arch/arm/mach-omap2/cminst44xx.c | |||
@@ -235,20 +235,6 @@ void omap4_cminst_clkdm_disable_hwsup(u8 part, s16 inst, u16 cdoffs) | |||
235 | } | 235 | } |
236 | 236 | ||
237 | /** | 237 | /** |
238 | * omap4_cminst_clkdm_force_sleep - try to put a clockdomain into idle | ||
239 | * @part: PRCM partition ID that the clockdomain registers exist in | ||
240 | * @inst: CM instance register offset (*_INST macro) | ||
241 | * @cdoffs: Clockdomain register offset (*_CDOFFS macro) | ||
242 | * | ||
243 | * Put a clockdomain referred to by (@part, @inst, @cdoffs) into idle | ||
244 | * No return value. | ||
245 | */ | ||
246 | void omap4_cminst_clkdm_force_sleep(u8 part, s16 inst, u16 cdoffs) | ||
247 | { | ||
248 | _clktrctrl_write(OMAP34XX_CLKSTCTRL_FORCE_SLEEP, part, inst, cdoffs); | ||
249 | } | ||
250 | |||
251 | /** | ||
252 | * omap4_cminst_clkdm_force_sleep - try to take a clockdomain out of idle | 238 | * omap4_cminst_clkdm_force_sleep - try to take a clockdomain out of idle |
253 | * @part: PRCM partition ID that the clockdomain registers exist in | 239 | * @part: PRCM partition ID that the clockdomain registers exist in |
254 | * @inst: CM instance register offset (*_INST macro) | 240 | * @inst: CM instance register offset (*_INST macro) |
diff --git a/arch/arm/mach-omap2/cminst44xx.h b/arch/arm/mach-omap2/cminst44xx.h index a018a7327879..d69fdefef985 100644 --- a/arch/arm/mach-omap2/cminst44xx.h +++ b/arch/arm/mach-omap2/cminst44xx.h | |||
@@ -16,38 +16,13 @@ extern void omap4_cminst_clkdm_enable_hwsup(u8 part, s16 inst, u16 cdoffs); | |||
16 | extern void omap4_cminst_clkdm_disable_hwsup(u8 part, s16 inst, u16 cdoffs); | 16 | extern void omap4_cminst_clkdm_disable_hwsup(u8 part, s16 inst, u16 cdoffs); |
17 | extern void omap4_cminst_clkdm_force_sleep(u8 part, s16 inst, u16 cdoffs); | 17 | extern void omap4_cminst_clkdm_force_sleep(u8 part, s16 inst, u16 cdoffs); |
18 | extern void omap4_cminst_clkdm_force_wakeup(u8 part, s16 inst, u16 cdoffs); | 18 | extern void omap4_cminst_clkdm_force_wakeup(u8 part, s16 inst, u16 cdoffs); |
19 | |||
20 | extern int omap4_cminst_wait_module_ready(u8 part, u16 inst, s16 cdoffs, u16 clkctrl_offs); | 19 | extern int omap4_cminst_wait_module_ready(u8 part, u16 inst, s16 cdoffs, u16 clkctrl_offs); |
21 | |||
22 | # ifdef CONFIG_ARCH_OMAP4 | ||
23 | extern int omap4_cminst_wait_module_idle(u8 part, u16 inst, s16 cdoffs, | 20 | extern int omap4_cminst_wait_module_idle(u8 part, u16 inst, s16 cdoffs, |
24 | u16 clkctrl_offs); | 21 | u16 clkctrl_offs); |
25 | |||
26 | extern void omap4_cminst_module_enable(u8 mode, u8 part, u16 inst, s16 cdoffs, | 22 | extern void omap4_cminst_module_enable(u8 mode, u8 part, u16 inst, s16 cdoffs, |
27 | u16 clkctrl_offs); | 23 | u16 clkctrl_offs); |
28 | extern void omap4_cminst_module_disable(u8 part, u16 inst, s16 cdoffs, | 24 | extern void omap4_cminst_module_disable(u8 part, u16 inst, s16 cdoffs, |
29 | u16 clkctrl_offs); | 25 | u16 clkctrl_offs); |
30 | |||
31 | # else | ||
32 | |||
33 | static inline int omap4_cminst_wait_module_idle(u8 part, u16 inst, s16 cdoffs, | ||
34 | u16 clkctrl_offs) | ||
35 | { | ||
36 | return 0; | ||
37 | } | ||
38 | |||
39 | static inline void omap4_cminst_module_enable(u8 mode, u8 part, u16 inst, | ||
40 | s16 cdoffs, u16 clkctrl_offs) | ||
41 | { | ||
42 | } | ||
43 | |||
44 | static inline void omap4_cminst_module_disable(u8 part, u16 inst, s16 cdoffs, | ||
45 | u16 clkctrl_offs) | ||
46 | { | ||
47 | } | ||
48 | |||
49 | # endif | ||
50 | |||
51 | /* | 26 | /* |
52 | * In an ideal world, we would not export these low-level functions, | 27 | * In an ideal world, we would not export these low-level functions, |
53 | * but this will probably take some time to fix properly | 28 | * but this will probably take some time to fix properly |
diff --git a/arch/arm/mach-omap2/control.h b/arch/arm/mach-omap2/control.h index a406fd045ce1..c7aa930f9c49 100644 --- a/arch/arm/mach-omap2/control.h +++ b/arch/arm/mach-omap2/control.h | |||
@@ -182,6 +182,7 @@ | |||
182 | #define OMAP3630_CONTROL_FUSE_OPP120_VDD1 (OMAP2_CONTROL_GENERAL + 0x0120) | 182 | #define OMAP3630_CONTROL_FUSE_OPP120_VDD1 (OMAP2_CONTROL_GENERAL + 0x0120) |
183 | #define OMAP3630_CONTROL_FUSE_OPP50_VDD2 (OMAP2_CONTROL_GENERAL + 0x0128) | 183 | #define OMAP3630_CONTROL_FUSE_OPP50_VDD2 (OMAP2_CONTROL_GENERAL + 0x0128) |
184 | #define OMAP3630_CONTROL_FUSE_OPP100_VDD2 (OMAP2_CONTROL_GENERAL + 0x012C) | 184 | #define OMAP3630_CONTROL_FUSE_OPP100_VDD2 (OMAP2_CONTROL_GENERAL + 0x012C) |
185 | #define OMAP3630_CONTROL_CAMERA_PHY_CTRL (OMAP2_CONTROL_GENERAL + 0x02f0) | ||
185 | 186 | ||
186 | /* OMAP44xx control efuse offsets */ | 187 | /* OMAP44xx control efuse offsets */ |
187 | #define OMAP44XX_CONTROL_FUSE_IVA_OPP50 0x22C | 188 | #define OMAP44XX_CONTROL_FUSE_IVA_OPP50 0x22C |
diff --git a/arch/arm/mach-omap2/dpll3xxx.c b/arch/arm/mach-omap2/dpll3xxx.c index f0f10beeffe8..c310dc0d40b4 100644 --- a/arch/arm/mach-omap2/dpll3xxx.c +++ b/arch/arm/mach-omap2/dpll3xxx.c | |||
@@ -135,11 +135,20 @@ static u16 _omap3_dpll_compute_freqsel(struct clk *clk, u8 n) | |||
135 | */ | 135 | */ |
136 | static int _omap3_noncore_dpll_lock(struct clk *clk) | 136 | static int _omap3_noncore_dpll_lock(struct clk *clk) |
137 | { | 137 | { |
138 | const struct dpll_data *dd; | ||
138 | u8 ai; | 139 | u8 ai; |
139 | int r; | 140 | u8 state = 1; |
141 | int r = 0; | ||
140 | 142 | ||
141 | pr_debug("clock: locking DPLL %s\n", clk->name); | 143 | pr_debug("clock: locking DPLL %s\n", clk->name); |
142 | 144 | ||
145 | dd = clk->dpll_data; | ||
146 | state <<= __ffs(dd->idlest_mask); | ||
147 | |||
148 | /* Check if already locked */ | ||
149 | if ((__raw_readl(dd->idlest_reg) & dd->idlest_mask) == state) | ||
150 | goto done; | ||
151 | |||
143 | ai = omap3_dpll_autoidle_read(clk); | 152 | ai = omap3_dpll_autoidle_read(clk); |
144 | 153 | ||
145 | if (ai) | 154 | if (ai) |
@@ -152,6 +161,7 @@ static int _omap3_noncore_dpll_lock(struct clk *clk) | |||
152 | if (ai) | 161 | if (ai) |
153 | omap3_dpll_allow_idle(clk); | 162 | omap3_dpll_allow_idle(clk); |
154 | 163 | ||
164 | done: | ||
155 | return r; | 165 | return r; |
156 | } | 166 | } |
157 | 167 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index 773193670ea2..98cde62c0cac 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c | |||
@@ -388,6 +388,49 @@ static int _set_softreset(struct omap_hwmod *oh, u32 *v) | |||
388 | } | 388 | } |
389 | 389 | ||
390 | /** | 390 | /** |
391 | * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v | ||
392 | * @oh: struct omap_hwmod * | ||
393 | * | ||
394 | * The DMADISABLE bit is a semi-automatic bit present in sysconfig register | ||
395 | * of some modules. When the DMA must perform read/write accesses, the | ||
396 | * DMADISABLE bit is cleared by the hardware. But when the DMA must stop | ||
397 | * for power management, software must set the DMADISABLE bit back to 1. | ||
398 | * | ||
399 | * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon | ||
400 | * error or 0 upon success. | ||
401 | */ | ||
402 | static int _set_dmadisable(struct omap_hwmod *oh) | ||
403 | { | ||
404 | u32 v; | ||
405 | u32 dmadisable_mask; | ||
406 | |||
407 | if (!oh->class->sysc || | ||
408 | !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE)) | ||
409 | return -EINVAL; | ||
410 | |||
411 | if (!oh->class->sysc->sysc_fields) { | ||
412 | WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name); | ||
413 | return -EINVAL; | ||
414 | } | ||
415 | |||
416 | /* clocks must be on for this operation */ | ||
417 | if (oh->_state != _HWMOD_STATE_ENABLED) { | ||
418 | pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name); | ||
419 | return -EINVAL; | ||
420 | } | ||
421 | |||
422 | pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name); | ||
423 | |||
424 | v = oh->_sysc_cache; | ||
425 | dmadisable_mask = | ||
426 | (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift); | ||
427 | v |= dmadisable_mask; | ||
428 | _write_sysconfig(v, oh); | ||
429 | |||
430 | return 0; | ||
431 | } | ||
432 | |||
433 | /** | ||
391 | * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v | 434 | * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v |
392 | * @oh: struct omap_hwmod * | 435 | * @oh: struct omap_hwmod * |
393 | * @autoidle: desired AUTOIDLE bitfield value (0 or 1) | 436 | * @autoidle: desired AUTOIDLE bitfield value (0 or 1) |
@@ -1698,11 +1741,17 @@ dis_opt_clks: | |||
1698 | * therefore have no OCP header registers to access. Others (like the | 1741 | * therefore have no OCP header registers to access. Others (like the |
1699 | * IVA) have idiosyncratic reset sequences. So for these relatively | 1742 | * IVA) have idiosyncratic reset sequences. So for these relatively |
1700 | * rare cases, custom reset code can be supplied in the struct | 1743 | * rare cases, custom reset code can be supplied in the struct |
1701 | * omap_hwmod_class .reset function pointer. Passes along the return | 1744 | * omap_hwmod_class .reset function pointer. |
1702 | * value from either _ocp_softreset() or the custom reset function - | 1745 | * |
1703 | * these must return -EINVAL if the hwmod cannot be reset this way or | 1746 | * _set_dmadisable() is called to set the DMADISABLE bit so that it |
1704 | * if the hwmod is in the wrong state, -ETIMEDOUT if the module did | 1747 | * does not prevent idling of the system. This is necessary for cases |
1705 | * not reset in time, or 0 upon success. | 1748 | * where ROMCODE/BOOTLOADER uses dma and transfers control to the |
1749 | * kernel without disabling dma. | ||
1750 | * | ||
1751 | * Passes along the return value from either _ocp_softreset() or the | ||
1752 | * custom reset function - these must return -EINVAL if the hwmod | ||
1753 | * cannot be reset this way or if the hwmod is in the wrong state, | ||
1754 | * -ETIMEDOUT if the module did not reset in time, or 0 upon success. | ||
1706 | */ | 1755 | */ |
1707 | static int _reset(struct omap_hwmod *oh) | 1756 | static int _reset(struct omap_hwmod *oh) |
1708 | { | 1757 | { |
@@ -1724,6 +1773,8 @@ static int _reset(struct omap_hwmod *oh) | |||
1724 | } | 1773 | } |
1725 | } | 1774 | } |
1726 | 1775 | ||
1776 | _set_dmadisable(oh); | ||
1777 | |||
1727 | /* | 1778 | /* |
1728 | * OCP_SYSCONFIG bits need to be reprogrammed after a | 1779 | * OCP_SYSCONFIG bits need to be reprogrammed after a |
1729 | * softreset. The _enable() function should be split to avoid | 1780 | * softreset. The _enable() function should be split to avoid |
@@ -3401,3 +3452,18 @@ int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx) | |||
3401 | 3452 | ||
3402 | return 0; | 3453 | return 0; |
3403 | } | 3454 | } |
3455 | |||
3456 | /** | ||
3457 | * omap_hwmod_get_main_clk - get pointer to main clock name | ||
3458 | * @oh: struct omap_hwmod * | ||
3459 | * | ||
3460 | * Returns the main clock name assocated with @oh upon success, | ||
3461 | * or NULL if @oh is NULL. | ||
3462 | */ | ||
3463 | const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh) | ||
3464 | { | ||
3465 | if (!oh) | ||
3466 | return NULL; | ||
3467 | |||
3468 | return oh->main_clk; | ||
3469 | } | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_common_data.c b/arch/arm/mach-omap2/omap_hwmod_common_data.c index 6dd922ef80cc..9f1ccdc8cc8c 100644 --- a/arch/arm/mach-omap2/omap_hwmod_common_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_common_data.c | |||
@@ -47,6 +47,7 @@ struct omap_hwmod_sysc_fields omap_hwmod_sysc_type2 = { | |||
47 | .midle_shift = SYSC_TYPE2_MIDLEMODE_SHIFT, | 47 | .midle_shift = SYSC_TYPE2_MIDLEMODE_SHIFT, |
48 | .sidle_shift = SYSC_TYPE2_SIDLEMODE_SHIFT, | 48 | .sidle_shift = SYSC_TYPE2_SIDLEMODE_SHIFT, |
49 | .srst_shift = SYSC_TYPE2_SOFTRESET_SHIFT, | 49 | .srst_shift = SYSC_TYPE2_SOFTRESET_SHIFT, |
50 | .dmadisable_shift = SYSC_TYPE2_DMADISABLE_SHIFT, | ||
50 | }; | 51 | }; |
51 | 52 | ||
52 | /** | 53 | /** |
diff --git a/arch/arm/mach-omap2/powerdomain.c b/arch/arm/mach-omap2/powerdomain.c index 96114901b932..2f963f702a05 100644 --- a/arch/arm/mach-omap2/powerdomain.c +++ b/arch/arm/mach-omap2/powerdomain.c | |||
@@ -526,7 +526,8 @@ int pwrdm_read_next_pwrst(struct powerdomain *pwrdm) | |||
526 | * | 526 | * |
527 | * Return the powerdomain @pwrdm's current power state. Returns -EINVAL | 527 | * Return the powerdomain @pwrdm's current power state. Returns -EINVAL |
528 | * if the powerdomain pointer is null or returns the current power state | 528 | * if the powerdomain pointer is null or returns the current power state |
529 | * upon success. | 529 | * upon success. Note that if the power domain only supports the ON state |
530 | * then just return ON as the current state. | ||
530 | */ | 531 | */ |
531 | int pwrdm_read_pwrst(struct powerdomain *pwrdm) | 532 | int pwrdm_read_pwrst(struct powerdomain *pwrdm) |
532 | { | 533 | { |
@@ -535,6 +536,9 @@ int pwrdm_read_pwrst(struct powerdomain *pwrdm) | |||
535 | if (!pwrdm) | 536 | if (!pwrdm) |
536 | return -EINVAL; | 537 | return -EINVAL; |
537 | 538 | ||
539 | if (pwrdm->pwrsts == PWRSTS_ON) | ||
540 | return PWRDM_POWER_ON; | ||
541 | |||
538 | if (arch_pwrdm && arch_pwrdm->pwrdm_read_pwrst) | 542 | if (arch_pwrdm && arch_pwrdm->pwrdm_read_pwrst) |
539 | ret = arch_pwrdm->pwrdm_read_pwrst(pwrdm); | 543 | ret = arch_pwrdm->pwrdm_read_pwrst(pwrdm); |
540 | 544 | ||
diff --git a/arch/arm/mach-omap2/prcm.c b/arch/arm/mach-omap2/prcm.c index 480f40a5ee42..28cbfb2b5733 100644 --- a/arch/arm/mach-omap2/prcm.c +++ b/arch/arm/mach-omap2/prcm.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include "prm2xxx_3xxx.h" | 35 | #include "prm2xxx_3xxx.h" |
36 | #include "prm44xx.h" | 36 | #include "prm44xx.h" |
37 | #include "prminst44xx.h" | 37 | #include "prminst44xx.h" |
38 | #include "cminst44xx.h" | ||
38 | #include "prm-regbits-24xx.h" | 39 | #include "prm-regbits-24xx.h" |
39 | #include "prm-regbits-44xx.h" | 40 | #include "prm-regbits-44xx.h" |
40 | #include "control.h" | 41 | #include "control.h" |
@@ -164,3 +165,25 @@ void __init omap2_set_globals_prcm(struct omap_globals *omap2_globals) | |||
164 | omap_cm_base_init(); | 165 | omap_cm_base_init(); |
165 | } | 166 | } |
166 | } | 167 | } |
168 | |||
169 | /* | ||
170 | * Stubbed functions so that common files continue to build when | ||
171 | * custom builds are used | ||
172 | * XXX These are temporary and should be removed at the earliest possible | ||
173 | * opportunity | ||
174 | */ | ||
175 | int __weak omap4_cminst_wait_module_idle(u8 part, u16 inst, s16 cdoffs, | ||
176 | u16 clkctrl_offs) | ||
177 | { | ||
178 | return 0; | ||
179 | } | ||
180 | |||
181 | void __weak omap4_cminst_module_enable(u8 mode, u8 part, u16 inst, | ||
182 | s16 cdoffs, u16 clkctrl_offs) | ||
183 | { | ||
184 | } | ||
185 | |||
186 | void __weak omap4_cminst_module_disable(u8 part, u16 inst, s16 cdoffs, | ||
187 | u16 clkctrl_offs) | ||
188 | { | ||
189 | } | ||
diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.h b/arch/arm/mach-omap2/prm2xxx_3xxx.h index 70ac2a19dc5f..f7bb57fff416 100644 --- a/arch/arm/mach-omap2/prm2xxx_3xxx.h +++ b/arch/arm/mach-omap2/prm2xxx_3xxx.h | |||
@@ -228,68 +228,6 @@ | |||
228 | 228 | ||
229 | 229 | ||
230 | #ifndef __ASSEMBLER__ | 230 | #ifndef __ASSEMBLER__ |
231 | /* | ||
232 | * Stub omap2xxx/omap3xxx functions so that common files | ||
233 | * continue to build when custom builds are used | ||
234 | */ | ||
235 | #if defined(CONFIG_ARCH_OMAP4) && !(defined(CONFIG_ARCH_OMAP2) || \ | ||
236 | defined(CONFIG_ARCH_OMAP3)) | ||
237 | static inline u32 omap2_prm_read_mod_reg(s16 module, u16 idx) | ||
238 | { | ||
239 | WARN(1, "prm: omap2xxx/omap3xxx specific function and " | ||
240 | "not suppose to be used on omap4\n"); | ||
241 | return 0; | ||
242 | } | ||
243 | static inline void omap2_prm_write_mod_reg(u32 val, s16 module, u16 idx) | ||
244 | { | ||
245 | WARN(1, "prm: omap2xxx/omap3xxx specific function and " | ||
246 | "not suppose to be used on omap4\n"); | ||
247 | } | ||
248 | static inline u32 omap2_prm_rmw_mod_reg_bits(u32 mask, u32 bits, | ||
249 | s16 module, s16 idx) | ||
250 | { | ||
251 | WARN(1, "prm: omap2xxx/omap3xxx specific function and " | ||
252 | "not suppose to be used on omap4\n"); | ||
253 | return 0; | ||
254 | } | ||
255 | static inline u32 omap2_prm_set_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
256 | { | ||
257 | WARN(1, "prm: omap2xxx/omap3xxx specific function and " | ||
258 | "not suppose to be used on omap4\n"); | ||
259 | return 0; | ||
260 | } | ||
261 | static inline u32 omap2_prm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
262 | { | ||
263 | WARN(1, "prm: omap2xxx/omap3xxx specific function and " | ||
264 | "not suppose to be used on omap4\n"); | ||
265 | return 0; | ||
266 | } | ||
267 | static inline u32 omap2_prm_read_mod_bits_shift(s16 domain, s16 idx, u32 mask) | ||
268 | { | ||
269 | WARN(1, "prm: omap2xxx/omap3xxx specific function and " | ||
270 | "not suppose to be used on omap4\n"); | ||
271 | return 0; | ||
272 | } | ||
273 | static inline int omap2_prm_is_hardreset_asserted(s16 prm_mod, u8 shift) | ||
274 | { | ||
275 | WARN(1, "prm: omap2xxx/omap3xxx specific function and " | ||
276 | "not suppose to be used on omap4\n"); | ||
277 | return 0; | ||
278 | } | ||
279 | static inline int omap2_prm_assert_hardreset(s16 prm_mod, u8 shift) | ||
280 | { | ||
281 | WARN(1, "prm: omap2xxx/omap3xxx specific function and " | ||
282 | "not suppose to be used on omap4\n"); | ||
283 | return 0; | ||
284 | } | ||
285 | static inline int omap2_prm_deassert_hardreset(s16 prm_mod, u8 rst_shift, | ||
286 | u8 st_shift) | ||
287 | { | ||
288 | WARN(1, "prm: omap2xxx/omap3xxx specific function and " | ||
289 | "not suppose to be used on omap4\n"); | ||
290 | return 0; | ||
291 | } | ||
292 | #else | ||
293 | /* Power/reset management domain register get/set */ | 231 | /* Power/reset management domain register get/set */ |
294 | extern u32 omap2_prm_read_mod_reg(s16 module, u16 idx); | 232 | extern u32 omap2_prm_read_mod_reg(s16 module, u16 idx); |
295 | extern void omap2_prm_write_mod_reg(u32 val, s16 module, u16 idx); | 233 | extern void omap2_prm_write_mod_reg(u32 val, s16 module, u16 idx); |
@@ -320,9 +258,6 @@ extern void omap3xxx_prm_read_pending_irqs(unsigned long *events); | |||
320 | extern void omap3xxx_prm_ocp_barrier(void); | 258 | extern void omap3xxx_prm_ocp_barrier(void); |
321 | extern void omap3xxx_prm_save_and_clear_irqen(u32 *saved_mask); | 259 | extern void omap3xxx_prm_save_and_clear_irqen(u32 *saved_mask); |
322 | extern void omap3xxx_prm_restore_irqen(u32 *saved_mask); | 260 | extern void omap3xxx_prm_restore_irqen(u32 *saved_mask); |
323 | |||
324 | #endif /* CONFIG_ARCH_OMAP4 */ | ||
325 | |||
326 | #endif | 261 | #endif |
327 | 262 | ||
328 | /* | 263 | /* |
diff --git a/arch/arm/mach-omap2/prm_common.c b/arch/arm/mach-omap2/prm_common.c index dfe00ddb5c60..663ade3b2f45 100644 --- a/arch/arm/mach-omap2/prm_common.c +++ b/arch/arm/mach-omap2/prm_common.c | |||
@@ -319,3 +319,65 @@ err: | |||
319 | omap_prcm_irq_cleanup(); | 319 | omap_prcm_irq_cleanup(); |
320 | return -ENOMEM; | 320 | return -ENOMEM; |
321 | } | 321 | } |
322 | |||
323 | /* | ||
324 | * Stubbed functions so that common files continue to build when | ||
325 | * custom builds are used | ||
326 | * XXX These are temporary and should be removed at the earliest possible | ||
327 | * opportunity | ||
328 | */ | ||
329 | u32 __weak omap2_prm_read_mod_reg(s16 module, u16 idx) | ||
330 | { | ||
331 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
332 | return 0; | ||
333 | } | ||
334 | |||
335 | void __weak omap2_prm_write_mod_reg(u32 val, s16 module, u16 idx) | ||
336 | { | ||
337 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
338 | } | ||
339 | |||
340 | u32 __weak omap2_prm_rmw_mod_reg_bits(u32 mask, u32 bits, | ||
341 | s16 module, s16 idx) | ||
342 | { | ||
343 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
344 | return 0; | ||
345 | } | ||
346 | |||
347 | u32 __weak omap2_prm_set_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
348 | { | ||
349 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
350 | return 0; | ||
351 | } | ||
352 | |||
353 | u32 __weak omap2_prm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
354 | { | ||
355 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
356 | return 0; | ||
357 | } | ||
358 | |||
359 | u32 __weak omap2_prm_read_mod_bits_shift(s16 domain, s16 idx, u32 mask) | ||
360 | { | ||
361 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
362 | return 0; | ||
363 | } | ||
364 | |||
365 | int __weak omap2_prm_is_hardreset_asserted(s16 prm_mod, u8 shift) | ||
366 | { | ||
367 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
368 | return 0; | ||
369 | } | ||
370 | |||
371 | int __weak omap2_prm_assert_hardreset(s16 prm_mod, u8 shift) | ||
372 | { | ||
373 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
374 | return 0; | ||
375 | } | ||
376 | |||
377 | int __weak omap2_prm_deassert_hardreset(s16 prm_mod, u8 rst_shift, | ||
378 | u8 st_shift) | ||
379 | { | ||
380 | WARN(1, "prm: omap2xxx/omap3xxx specific function called on non-omap2xxx/3xxx\n"); | ||
381 | return 0; | ||
382 | } | ||
383 | |||
diff --git a/arch/arm/plat-omap/include/plat/omap_hwmod.h b/arch/arm/plat-omap/include/plat/omap_hwmod.h index 7cb8d7dddcc5..35675b216074 100644 --- a/arch/arm/plat-omap/include/plat/omap_hwmod.h +++ b/arch/arm/plat-omap/include/plat/omap_hwmod.h | |||
@@ -70,6 +70,8 @@ extern struct omap_hwmod_sysc_fields omap_hwmod_sysc_type3; | |||
70 | #define SYSC_TYPE2_SIDLEMODE_MASK (0x3 << SYSC_TYPE2_SIDLEMODE_SHIFT) | 70 | #define SYSC_TYPE2_SIDLEMODE_MASK (0x3 << SYSC_TYPE2_SIDLEMODE_SHIFT) |
71 | #define SYSC_TYPE2_MIDLEMODE_SHIFT 4 | 71 | #define SYSC_TYPE2_MIDLEMODE_SHIFT 4 |
72 | #define SYSC_TYPE2_MIDLEMODE_MASK (0x3 << SYSC_TYPE2_MIDLEMODE_SHIFT) | 72 | #define SYSC_TYPE2_MIDLEMODE_MASK (0x3 << SYSC_TYPE2_MIDLEMODE_SHIFT) |
73 | #define SYSC_TYPE2_DMADISABLE_SHIFT 16 | ||
74 | #define SYSC_TYPE2_DMADISABLE_MASK (0x1 << SYSC_TYPE2_DMADISABLE_SHIFT) | ||
73 | 75 | ||
74 | /* | 76 | /* |
75 | * OCP SYSCONFIG bit shifts/masks TYPE3. | 77 | * OCP SYSCONFIG bit shifts/masks TYPE3. |
@@ -293,6 +295,7 @@ struct omap_hwmod_ocp_if { | |||
293 | #define SYSS_HAS_RESET_STATUS (1 << 7) | 295 | #define SYSS_HAS_RESET_STATUS (1 << 7) |
294 | #define SYSC_NO_CACHE (1 << 8) /* XXX SW flag, belongs elsewhere */ | 296 | #define SYSC_NO_CACHE (1 << 8) /* XXX SW flag, belongs elsewhere */ |
295 | #define SYSC_HAS_RESET_STATUS (1 << 9) | 297 | #define SYSC_HAS_RESET_STATUS (1 << 9) |
298 | #define SYSC_HAS_DMADISABLE (1 << 10) | ||
296 | 299 | ||
297 | /* omap_hwmod_sysconfig.clockact flags */ | 300 | /* omap_hwmod_sysconfig.clockact flags */ |
298 | #define CLOCKACT_TEST_BOTH 0x0 | 301 | #define CLOCKACT_TEST_BOTH 0x0 |
@@ -308,6 +311,7 @@ struct omap_hwmod_ocp_if { | |||
308 | * @enwkup_shift: Offset of the enawakeup bit | 311 | * @enwkup_shift: Offset of the enawakeup bit |
309 | * @srst_shift: Offset of the softreset bit | 312 | * @srst_shift: Offset of the softreset bit |
310 | * @autoidle_shift: Offset of the autoidle bit | 313 | * @autoidle_shift: Offset of the autoidle bit |
314 | * @dmadisable_shift: Offset of the dmadisable bit | ||
311 | */ | 315 | */ |
312 | struct omap_hwmod_sysc_fields { | 316 | struct omap_hwmod_sysc_fields { |
313 | u8 midle_shift; | 317 | u8 midle_shift; |
@@ -316,6 +320,7 @@ struct omap_hwmod_sysc_fields { | |||
316 | u8 enwkup_shift; | 320 | u8 enwkup_shift; |
317 | u8 srst_shift; | 321 | u8 srst_shift; |
318 | u8 autoidle_shift; | 322 | u8 autoidle_shift; |
323 | u8 dmadisable_shift; | ||
319 | }; | 324 | }; |
320 | 325 | ||
321 | /** | 326 | /** |
@@ -641,6 +646,8 @@ int omap_hwmod_no_setup_reset(struct omap_hwmod *oh); | |||
641 | 646 | ||
642 | int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx); | 647 | int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx); |
643 | 648 | ||
649 | const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh); | ||
650 | |||
644 | /* | 651 | /* |
645 | * Chip variant-specific hwmod init routines - XXX should be converted | 652 | * Chip variant-specific hwmod init routines - XXX should be converted |
646 | * to use initcalls once the initial boot ordering is straightened out | 653 | * to use initcalls once the initial boot ordering is straightened out |