ARM: OMAP2+: Only write the sysconfig on idle when necessary
[pandora-kernel.git] / arch / arm / mach-omap2 / omap_hwmod.c
1 /*
2  * omap_hwmod implementation for OMAP2/3/4
3  *
4  * Copyright (C) 2009-2011 Nokia Corporation
5  * Copyright (C) 2011 Texas Instruments, Inc.
6  *
7  * Paul Walmsley, BenoĆ®t Cousson, Kevin Hilman
8  *
9  * Created in collaboration with (alphabetical order): Thara Gopinath,
10  * Tony Lindgren, Rajendra Nayak, Vikram Pandita, Sakari Poussa, Anand
11  * Sawant, Santosh Shilimkar, Richard Woodruff
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License version 2 as
15  * published by the Free Software Foundation.
16  *
17  * Introduction
18  * ------------
19  * One way to view an OMAP SoC is as a collection of largely unrelated
20  * IP blocks connected by interconnects.  The IP blocks include
21  * devices such as ARM processors, audio serial interfaces, UARTs,
22  * etc.  Some of these devices, like the DSP, are created by TI;
23  * others, like the SGX, largely originate from external vendors.  In
24  * TI's documentation, on-chip devices are referred to as "OMAP
25  * modules."  Some of these IP blocks are identical across several
26  * OMAP versions.  Others are revised frequently.
27  *
28  * These OMAP modules are tied together by various interconnects.
29  * Most of the address and data flow between modules is via OCP-based
30  * interconnects such as the L3 and L4 buses; but there are other
31  * interconnects that distribute the hardware clock tree, handle idle
32  * and reset signaling, supply power, and connect the modules to
33  * various pads or balls on the OMAP package.
34  *
35  * OMAP hwmod provides a consistent way to describe the on-chip
36  * hardware blocks and their integration into the rest of the chip.
37  * This description can be automatically generated from the TI
38  * hardware database.  OMAP hwmod provides a standard, consistent API
39  * to reset, enable, idle, and disable these hardware blocks.  And
40  * hwmod provides a way for other core code, such as the Linux device
41  * code or the OMAP power management and address space mapping code,
42  * to query the hardware database.
43  *
44  * Using hwmod
45  * -----------
46  * Drivers won't call hwmod functions directly.  That is done by the
47  * omap_device code, and in rare occasions, by custom integration code
48  * in arch/arm/ *omap*.  The omap_device code includes functions to
49  * build a struct platform_device using omap_hwmod data, and that is
50  * currently how hwmod data is communicated to drivers and to the
51  * Linux driver model.  Most drivers will call omap_hwmod functions only
52  * indirectly, via pm_runtime*() functions.
53  *
54  * From a layering perspective, here is where the OMAP hwmod code
55  * fits into the kernel software stack:
56  *
57  *            +-------------------------------+
58  *            |      Device driver code       |
59  *            |      (e.g., drivers/)         |
60  *            +-------------------------------+
61  *            |      Linux driver model       |
62  *            |     (platform_device /        |
63  *            |  platform_driver data/code)   |
64  *            +-------------------------------+
65  *            | OMAP core-driver integration  |
66  *            |(arch/arm/mach-omap2/devices.c)|
67  *            +-------------------------------+
68  *            |      omap_device code         |
69  *            | (../plat-omap/omap_device.c)  |
70  *            +-------------------------------+
71  *   ---->    |    omap_hwmod code/data       |    <-----
72  *            | (../mach-omap2/omap_hwmod*)   |
73  *            +-------------------------------+
74  *            | OMAP clock/PRCM/register fns  |
75  *            | (__raw_{read,write}l, clk*)   |
76  *            +-------------------------------+
77  *
78  * Device drivers should not contain any OMAP-specific code or data in
79  * them.  They should only contain code to operate the IP block that
80  * the driver is responsible for.  This is because these IP blocks can
81  * also appear in other SoCs, either from TI (such as DaVinci) or from
82  * other manufacturers; and drivers should be reusable across other
83  * platforms.
84  *
85  * The OMAP hwmod code also will attempt to reset and idle all on-chip
86  * devices upon boot.  The goal here is for the kernel to be
87  * completely self-reliant and independent from bootloaders.  This is
88  * to ensure a repeatable configuration, both to ensure consistent
89  * runtime behavior, and to make it easier for others to reproduce
90  * bugs.
91  *
92  * OMAP module activity states
93  * ---------------------------
94  * The hwmod code considers modules to be in one of several activity
95  * states.  IP blocks start out in an UNKNOWN state, then once they
96  * are registered via the hwmod code, proceed to the REGISTERED state.
97  * Once their clock names are resolved to clock pointers, the module
98  * enters the CLKS_INITED state; and finally, once the module has been
99  * reset and the integration registers programmed, the INITIALIZED state
100  * is entered.  The hwmod code will then place the module into either
101  * the IDLE state to save power, or in the case of a critical system
102  * module, the ENABLED state.
103  *
104  * OMAP core integration code can then call omap_hwmod*() functions
105  * directly to move the module between the IDLE, ENABLED, and DISABLED
106  * states, as needed.  This is done during both the PM idle loop, and
107  * in the OMAP core integration code's implementation of the PM runtime
108  * functions.
109  *
110  * References
111  * ----------
112  * This is a partial list.
113  * - OMAP2420 Multimedia Processor Silicon Revision 2.1.1, 2.2 (SWPU064)
114  * - OMAP2430 Multimedia Device POP Silicon Revision 2.1 (SWPU090)
115  * - OMAP34xx Multimedia Device Silicon Revision 3.1 (SWPU108)
116  * - OMAP4430 Multimedia Device Silicon Revision 1.0 (SWPU140)
117  * - Open Core Protocol Specification 2.2
118  *
119  * To do:
120  * - handle IO mapping
121  * - bus throughput & module latency measurement code
122  *
123  * XXX add tests at the beginning of each function to ensure the hwmod is
124  * in the appropriate state
125  * XXX error return values should be checked to ensure that they are
126  * appropriate
127  */
128 #undef DEBUG
129
130 #include <linux/kernel.h>
131 #include <linux/errno.h>
132 #include <linux/io.h>
133 #include <linux/clk.h>
134 #include <linux/delay.h>
135 #include <linux/err.h>
136 #include <linux/list.h>
137 #include <linux/mutex.h>
138 #include <linux/spinlock.h>
139
140 #include <plat/common.h>
141 #include <plat/cpu.h>
142 #include "clockdomain.h"
143 #include "powerdomain.h"
144 #include <plat/clock.h>
145 #include <plat/omap_hwmod.h>
146 #include <plat/prcm.h>
147
148 #include "cm2xxx_3xxx.h"
149 #include "cminst44xx.h"
150 #include "prm2xxx_3xxx.h"
151 #include "prm44xx.h"
152 #include "prminst44xx.h"
153 #include "mux.h"
154
155 /* Maximum microseconds to wait for OMAP module to softreset */
156 #define MAX_MODULE_SOFTRESET_WAIT       10000
157
158 /* Name of the OMAP hwmod for the MPU */
159 #define MPU_INITIATOR_NAME              "mpu"
160
161 /* omap_hwmod_list contains all registered struct omap_hwmods */
162 static LIST_HEAD(omap_hwmod_list);
163
164 /* mpu_oh: used to add/remove MPU initiator from sleepdep list */
165 static struct omap_hwmod *mpu_oh;
166
167
168 /* Private functions */
169
170 /**
171  * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
172  * @oh: struct omap_hwmod *
173  *
174  * Load the current value of the hwmod OCP_SYSCONFIG register into the
175  * struct omap_hwmod for later use.  Returns -EINVAL if the hwmod has no
176  * OCP_SYSCONFIG register or 0 upon success.
177  */
178 static int _update_sysc_cache(struct omap_hwmod *oh)
179 {
180         if (!oh->class->sysc) {
181                 WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
182                 return -EINVAL;
183         }
184
185         /* XXX ensure module interface clock is up */
186
187         oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
188
189         if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
190                 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
191
192         return 0;
193 }
194
195 /**
196  * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
197  * @v: OCP_SYSCONFIG value to write
198  * @oh: struct omap_hwmod *
199  *
200  * Write @v into the module class' OCP_SYSCONFIG register, if it has
201  * one.  No return value.
202  */
203 static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
204 {
205         if (!oh->class->sysc) {
206                 WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
207                 return;
208         }
209
210         /* XXX ensure module interface clock is up */
211
212         /* Module might have lost context, always update cache and register */
213         oh->_sysc_cache = v;
214         omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
215 }
216
217 /**
218  * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
219  * @oh: struct omap_hwmod *
220  * @standbymode: MIDLEMODE field bits
221  * @v: pointer to register contents to modify
222  *
223  * Update the master standby mode bits in @v to be @standbymode for
224  * the @oh hwmod.  Does not write to the hardware.  Returns -EINVAL
225  * upon error or 0 upon success.
226  */
227 static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
228                                    u32 *v)
229 {
230         u32 mstandby_mask;
231         u8 mstandby_shift;
232
233         if (!oh->class->sysc ||
234             !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
235                 return -EINVAL;
236
237         if (!oh->class->sysc->sysc_fields) {
238                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
239                 return -EINVAL;
240         }
241
242         mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
243         mstandby_mask = (0x3 << mstandby_shift);
244
245         *v &= ~mstandby_mask;
246         *v |= __ffs(standbymode) << mstandby_shift;
247
248         return 0;
249 }
250
251 /**
252  * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
253  * @oh: struct omap_hwmod *
254  * @idlemode: SIDLEMODE field bits
255  * @v: pointer to register contents to modify
256  *
257  * Update the slave idle mode bits in @v to be @idlemode for the @oh
258  * hwmod.  Does not write to the hardware.  Returns -EINVAL upon error
259  * or 0 upon success.
260  */
261 static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
262 {
263         u32 sidle_mask;
264         u8 sidle_shift;
265
266         if (!oh->class->sysc ||
267             !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
268                 return -EINVAL;
269
270         if (!oh->class->sysc->sysc_fields) {
271                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
272                 return -EINVAL;
273         }
274
275         sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
276         sidle_mask = (0x3 << sidle_shift);
277
278         *v &= ~sidle_mask;
279         *v |= __ffs(idlemode) << sidle_shift;
280
281         return 0;
282 }
283
284 /**
285  * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
286  * @oh: struct omap_hwmod *
287  * @clockact: CLOCKACTIVITY field bits
288  * @v: pointer to register contents to modify
289  *
290  * Update the clockactivity mode bits in @v to be @clockact for the
291  * @oh hwmod.  Used for additional powersaving on some modules.  Does
292  * not write to the hardware.  Returns -EINVAL upon error or 0 upon
293  * success.
294  */
295 static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
296 {
297         u32 clkact_mask;
298         u8  clkact_shift;
299
300         if (!oh->class->sysc ||
301             !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
302                 return -EINVAL;
303
304         if (!oh->class->sysc->sysc_fields) {
305                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
306                 return -EINVAL;
307         }
308
309         clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
310         clkact_mask = (0x3 << clkact_shift);
311
312         *v &= ~clkact_mask;
313         *v |= clockact << clkact_shift;
314
315         return 0;
316 }
317
318 /**
319  * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v
320  * @oh: struct omap_hwmod *
321  * @v: pointer to register contents to modify
322  *
323  * Set the SOFTRESET bit in @v for hwmod @oh.  Returns -EINVAL upon
324  * error or 0 upon success.
325  */
326 static int _set_softreset(struct omap_hwmod *oh, u32 *v)
327 {
328         u32 softrst_mask;
329
330         if (!oh->class->sysc ||
331             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
332                 return -EINVAL;
333
334         if (!oh->class->sysc->sysc_fields) {
335                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
336                 return -EINVAL;
337         }
338
339         softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
340
341         *v |= softrst_mask;
342
343         return 0;
344 }
345
346 /**
347  * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v
348  * @oh: struct omap_hwmod *
349  * @v: pointer to register contents to modify
350  *
351  * Clear the SOFTRESET bit in @v for hwmod @oh.  Returns -EINVAL upon
352  * error or 0 upon success.
353  */
354 static int _clear_softreset(struct omap_hwmod *oh, u32 *v)
355 {
356         u32 softrst_mask;
357
358         if (!oh->class->sysc ||
359             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
360                 return -EINVAL;
361
362         if (!oh->class->sysc->sysc_fields) {
363                 WARN(1,
364                      "omap_hwmod: %s: sysc_fields absent for sysconfig class\n",
365                      oh->name);
366                 return -EINVAL;
367         }
368
369         softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
370
371         *v &= ~softrst_mask;
372
373         return 0;
374 }
375
376 /**
377  * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
378  * @oh: struct omap_hwmod *
379  * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
380  * @v: pointer to register contents to modify
381  *
382  * Update the module autoidle bit in @v to be @autoidle for the @oh
383  * hwmod.  The autoidle bit controls whether the module can gate
384  * internal clocks automatically when it isn't doing anything; the
385  * exact function of this bit varies on a per-module basis.  This
386  * function does not write to the hardware.  Returns -EINVAL upon
387  * error or 0 upon success.
388  */
389 static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
390                                 u32 *v)
391 {
392         u32 autoidle_mask;
393         u8 autoidle_shift;
394
395         if (!oh->class->sysc ||
396             !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
397                 return -EINVAL;
398
399         if (!oh->class->sysc->sysc_fields) {
400                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
401                 return -EINVAL;
402         }
403
404         autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
405         autoidle_mask = (0x1 << autoidle_shift);
406
407         *v &= ~autoidle_mask;
408         *v |= autoidle << autoidle_shift;
409
410         return 0;
411 }
412
413 /**
414  * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
415  * @oh: struct omap_hwmod *
416  *
417  * Allow the hardware module @oh to send wakeups.  Returns -EINVAL
418  * upon error or 0 upon success.
419  */
420 static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
421 {
422         if (!oh->class->sysc ||
423             !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
424               (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
425               (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
426                 return -EINVAL;
427
428         if (!oh->class->sysc->sysc_fields) {
429                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
430                 return -EINVAL;
431         }
432
433         if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
434                 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
435
436         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
437                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
438         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
439                 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
440
441         /* XXX test pwrdm_get_wken for this hwmod's subsystem */
442
443         oh->_int_flags |= _HWMOD_WAKEUP_ENABLED;
444
445         return 0;
446 }
447
448 /**
449  * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
450  * @oh: struct omap_hwmod *
451  *
452  * Prevent the hardware module @oh to send wakeups.  Returns -EINVAL
453  * upon error or 0 upon success.
454  */
455 static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
456 {
457         if (!oh->class->sysc ||
458             !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
459               (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
460               (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
461                 return -EINVAL;
462
463         if (!oh->class->sysc->sysc_fields) {
464                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
465                 return -EINVAL;
466         }
467
468         if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
469                 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
470
471         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
472                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
473         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
474                 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
475
476         /* XXX test pwrdm_get_wken for this hwmod's subsystem */
477
478         oh->_int_flags &= ~_HWMOD_WAKEUP_ENABLED;
479
480         return 0;
481 }
482
483 /**
484  * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
485  * @oh: struct omap_hwmod *
486  *
487  * Prevent the hardware module @oh from entering idle while the
488  * hardare module initiator @init_oh is active.  Useful when a module
489  * will be accessed by a particular initiator (e.g., if a module will
490  * be accessed by the IVA, there should be a sleepdep between the IVA
491  * initiator and the module).  Only applies to modules in smart-idle
492  * mode.  If the clockdomain is marked as not needing autodeps, return
493  * 0 without doing anything.  Otherwise, returns -EINVAL upon error or
494  * passes along clkdm_add_sleepdep() value upon success.
495  */
496 static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
497 {
498         if (!oh->_clk)
499                 return -EINVAL;
500
501         if (oh->_clk->clkdm && oh->_clk->clkdm->flags & CLKDM_NO_AUTODEPS)
502                 return 0;
503
504         return clkdm_add_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
505 }
506
507 /**
508  * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
509  * @oh: struct omap_hwmod *
510  *
511  * Allow the hardware module @oh to enter idle while the hardare
512  * module initiator @init_oh is active.  Useful when a module will not
513  * be accessed by a particular initiator (e.g., if a module will not
514  * be accessed by the IVA, there should be no sleepdep between the IVA
515  * initiator and the module).  Only applies to modules in smart-idle
516  * mode.  If the clockdomain is marked as not needing autodeps, return
517  * 0 without doing anything.  Returns -EINVAL upon error or passes
518  * along clkdm_del_sleepdep() value upon success.
519  */
520 static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
521 {
522         if (!oh->_clk)
523                 return -EINVAL;
524
525         if (oh->_clk->clkdm && oh->_clk->clkdm->flags & CLKDM_NO_AUTODEPS)
526                 return 0;
527
528         return clkdm_del_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
529 }
530
531 /**
532  * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
533  * @oh: struct omap_hwmod *
534  *
535  * Called from _init_clocks().  Populates the @oh _clk (main
536  * functional clock pointer) if a main_clk is present.  Returns 0 on
537  * success or -EINVAL on error.
538  */
539 static int _init_main_clk(struct omap_hwmod *oh)
540 {
541         int ret = 0;
542
543         if (!oh->main_clk)
544                 return 0;
545
546         oh->_clk = omap_clk_get_by_name(oh->main_clk);
547         if (!oh->_clk) {
548                 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
549                            oh->name, oh->main_clk);
550                 return -EINVAL;
551         }
552
553         if (!oh->_clk->clkdm)
554                 pr_warning("omap_hwmod: %s: missing clockdomain for %s.\n",
555                            oh->main_clk, oh->_clk->name);
556
557         return ret;
558 }
559
560 /**
561  * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
562  * @oh: struct omap_hwmod *
563  *
564  * Called from _init_clocks().  Populates the @oh OCP slave interface
565  * clock pointers.  Returns 0 on success or -EINVAL on error.
566  */
567 static int _init_interface_clks(struct omap_hwmod *oh)
568 {
569         struct clk *c;
570         int i;
571         int ret = 0;
572
573         if (oh->slaves_cnt == 0)
574                 return 0;
575
576         for (i = 0; i < oh->slaves_cnt; i++) {
577                 struct omap_hwmod_ocp_if *os = oh->slaves[i];
578
579                 if (!os->clk)
580                         continue;
581
582                 c = omap_clk_get_by_name(os->clk);
583                 if (!c) {
584                         pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
585                                    oh->name, os->clk);
586                         ret = -EINVAL;
587                 }
588                 os->_clk = c;
589         }
590
591         return ret;
592 }
593
594 /**
595  * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
596  * @oh: struct omap_hwmod *
597  *
598  * Called from _init_clocks().  Populates the @oh omap_hwmod_opt_clk
599  * clock pointers.  Returns 0 on success or -EINVAL on error.
600  */
601 static int _init_opt_clks(struct omap_hwmod *oh)
602 {
603         struct omap_hwmod_opt_clk *oc;
604         struct clk *c;
605         int i;
606         int ret = 0;
607
608         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
609                 c = omap_clk_get_by_name(oc->clk);
610                 if (!c) {
611                         pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
612                                    oh->name, oc->clk);
613                         ret = -EINVAL;
614                 }
615                 oc->_clk = c;
616         }
617
618         return ret;
619 }
620
621 /**
622  * _enable_clocks - enable hwmod main clock and interface clocks
623  * @oh: struct omap_hwmod *
624  *
625  * Enables all clocks necessary for register reads and writes to succeed
626  * on the hwmod @oh.  Returns 0.
627  */
628 static int _enable_clocks(struct omap_hwmod *oh)
629 {
630         int i;
631
632         pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
633
634         if (oh->_clk)
635                 clk_enable(oh->_clk);
636
637         if (oh->slaves_cnt > 0) {
638                 for (i = 0; i < oh->slaves_cnt; i++) {
639                         struct omap_hwmod_ocp_if *os = oh->slaves[i];
640                         struct clk *c = os->_clk;
641
642                         if (c && (os->flags & OCPIF_SWSUP_IDLE))
643                                 clk_enable(c);
644                 }
645         }
646
647         /* The opt clocks are controlled by the device driver. */
648
649         return 0;
650 }
651
652 /**
653  * _disable_clocks - disable hwmod main clock and interface clocks
654  * @oh: struct omap_hwmod *
655  *
656  * Disables the hwmod @oh main functional and interface clocks.  Returns 0.
657  */
658 static int _disable_clocks(struct omap_hwmod *oh)
659 {
660         int i;
661
662         pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
663
664         if (oh->_clk)
665                 clk_disable(oh->_clk);
666
667         if (oh->slaves_cnt > 0) {
668                 for (i = 0; i < oh->slaves_cnt; i++) {
669                         struct omap_hwmod_ocp_if *os = oh->slaves[i];
670                         struct clk *c = os->_clk;
671
672                         if (c && (os->flags & OCPIF_SWSUP_IDLE))
673                                 clk_disable(c);
674                 }
675         }
676
677         /* The opt clocks are controlled by the device driver. */
678
679         return 0;
680 }
681
682 static void _enable_optional_clocks(struct omap_hwmod *oh)
683 {
684         struct omap_hwmod_opt_clk *oc;
685         int i;
686
687         pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
688
689         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
690                 if (oc->_clk) {
691                         pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
692                                  oc->_clk->name);
693                         clk_enable(oc->_clk);
694                 }
695 }
696
697 static void _disable_optional_clocks(struct omap_hwmod *oh)
698 {
699         struct omap_hwmod_opt_clk *oc;
700         int i;
701
702         pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
703
704         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
705                 if (oc->_clk) {
706                         pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
707                                  oc->_clk->name);
708                         clk_disable(oc->_clk);
709                 }
710 }
711
712 /**
713  * _enable_module - enable CLKCTRL modulemode on OMAP4
714  * @oh: struct omap_hwmod *
715  *
716  * Enables the PRCM module mode related to the hwmod @oh.
717  * No return value.
718  */
719 static void _enable_module(struct omap_hwmod *oh)
720 {
721         /* The module mode does not exist prior OMAP4 */
722         if (cpu_is_omap24xx() || cpu_is_omap34xx())
723                 return;
724
725         if (!oh->clkdm || !oh->prcm.omap4.modulemode)
726                 return;
727
728         pr_debug("omap_hwmod: %s: _enable_module: %d\n",
729                  oh->name, oh->prcm.omap4.modulemode);
730
731         omap4_cminst_module_enable(oh->prcm.omap4.modulemode,
732                                    oh->clkdm->prcm_partition,
733                                    oh->clkdm->cm_inst,
734                                    oh->clkdm->clkdm_offs,
735                                    oh->prcm.omap4.clkctrl_offs);
736 }
737
738 /**
739  * _disable_module - enable CLKCTRL modulemode on OMAP4
740  * @oh: struct omap_hwmod *
741  *
742  * Disable the PRCM module mode related to the hwmod @oh.
743  * No return value.
744  */
745 static void _disable_module(struct omap_hwmod *oh)
746 {
747         /* The module mode does not exist prior OMAP4 */
748         if (cpu_is_omap24xx() || cpu_is_omap34xx())
749                 return;
750
751         if (!oh->clkdm || !oh->prcm.omap4.modulemode)
752                 return;
753
754         pr_debug("omap_hwmod: %s: _disable_module\n", oh->name);
755
756         omap4_cminst_module_disable(oh->clkdm->prcm_partition,
757                                     oh->clkdm->cm_inst,
758                                     oh->clkdm->clkdm_offs,
759                                     oh->prcm.omap4.clkctrl_offs);
760 }
761
762 /**
763  * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
764  * @oh: struct omap_hwmod *oh
765  *
766  * Count and return the number of MPU IRQs associated with the hwmod
767  * @oh.  Used to allocate struct resource data.  Returns 0 if @oh is
768  * NULL.
769  */
770 static int _count_mpu_irqs(struct omap_hwmod *oh)
771 {
772         struct omap_hwmod_irq_info *ohii;
773         int i = 0;
774
775         if (!oh || !oh->mpu_irqs)
776                 return 0;
777
778         do {
779                 ohii = &oh->mpu_irqs[i++];
780         } while (ohii->irq != -1);
781
782         return i-1;
783 }
784
785 /**
786  * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
787  * @oh: struct omap_hwmod *oh
788  *
789  * Count and return the number of SDMA request lines associated with
790  * the hwmod @oh.  Used to allocate struct resource data.  Returns 0
791  * if @oh is NULL.
792  */
793 static int _count_sdma_reqs(struct omap_hwmod *oh)
794 {
795         struct omap_hwmod_dma_info *ohdi;
796         int i = 0;
797
798         if (!oh || !oh->sdma_reqs)
799                 return 0;
800
801         do {
802                 ohdi = &oh->sdma_reqs[i++];
803         } while (ohdi->dma_req != -1);
804
805         return i-1;
806 }
807
808 /**
809  * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
810  * @oh: struct omap_hwmod *oh
811  *
812  * Count and return the number of address space ranges associated with
813  * the hwmod @oh.  Used to allocate struct resource data.  Returns 0
814  * if @oh is NULL.
815  */
816 static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
817 {
818         struct omap_hwmod_addr_space *mem;
819         int i = 0;
820
821         if (!os || !os->addr)
822                 return 0;
823
824         do {
825                 mem = &os->addr[i++];
826         } while (mem->pa_start != mem->pa_end);
827
828         return i-1;
829 }
830
831 /**
832  * _find_mpu_port_index - find hwmod OCP slave port ID intended for MPU use
833  * @oh: struct omap_hwmod *
834  *
835  * Returns the array index of the OCP slave port that the MPU
836  * addresses the device on, or -EINVAL upon error or not found.
837  */
838 static int __init _find_mpu_port_index(struct omap_hwmod *oh)
839 {
840         int i;
841         int found = 0;
842
843         if (!oh || oh->slaves_cnt == 0)
844                 return -EINVAL;
845
846         for (i = 0; i < oh->slaves_cnt; i++) {
847                 struct omap_hwmod_ocp_if *os = oh->slaves[i];
848
849                 if (os->user & OCP_USER_MPU) {
850                         found = 1;
851                         break;
852                 }
853         }
854
855         if (found)
856                 pr_debug("omap_hwmod: %s: MPU OCP slave port ID  %d\n",
857                          oh->name, i);
858         else
859                 pr_debug("omap_hwmod: %s: no MPU OCP slave port found\n",
860                          oh->name);
861
862         return (found) ? i : -EINVAL;
863 }
864
865 /**
866  * _find_mpu_rt_base - find hwmod register target base addr accessible by MPU
867  * @oh: struct omap_hwmod *
868  *
869  * Return the virtual address of the base of the register target of
870  * device @oh, or NULL on error.
871  */
872 static void __iomem * __init _find_mpu_rt_base(struct omap_hwmod *oh, u8 index)
873 {
874         struct omap_hwmod_ocp_if *os;
875         struct omap_hwmod_addr_space *mem;
876         int i = 0, found = 0;
877         void __iomem *va_start;
878
879         if (!oh || oh->slaves_cnt == 0)
880                 return NULL;
881
882         os = oh->slaves[index];
883
884         if (!os->addr)
885                 return NULL;
886
887         do {
888                 mem = &os->addr[i++];
889                 if (mem->flags & ADDR_TYPE_RT)
890                         found = 1;
891         } while (!found && mem->pa_start != mem->pa_end);
892
893         if (found) {
894                 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
895                 if (!va_start) {
896                         pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
897                         return NULL;
898                 }
899                 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
900                          oh->name, va_start);
901         } else {
902                 pr_debug("omap_hwmod: %s: no MPU register target found\n",
903                          oh->name);
904         }
905
906         return (found) ? va_start : NULL;
907 }
908
909 /**
910  * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
911  * @oh: struct omap_hwmod *
912  *
913  * Ensure that the OCP_SYSCONFIG register for the IP block represented
914  * by @oh is set to indicate to the PRCM that the IP block is active.
915  * Usually this means placing the module into smart-idle mode and
916  * smart-standby, but if there is a bug in the automatic idle handling
917  * for the IP block, it may need to be placed into the force-idle or
918  * no-idle variants of these modes.  No return value.
919  */
920 static void _enable_sysc(struct omap_hwmod *oh)
921 {
922         u8 idlemode, sf;
923         u32 v;
924         bool clkdm_act;
925
926         if (!oh->class->sysc)
927                 return;
928
929         v = oh->_sysc_cache;
930         sf = oh->class->sysc->sysc_flags;
931
932         if (sf & SYSC_HAS_SIDLEMODE) {
933                 if (oh->flags & HWMOD_SWSUP_SIDLE) {
934                         idlemode = HWMOD_IDLEMODE_NO;
935                 } else {
936                         if (sf & SYSC_HAS_ENAWAKEUP)
937                                 _enable_wakeup(oh, &v);
938                         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
939                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
940                         else
941                                 idlemode = HWMOD_IDLEMODE_SMART;
942                 }
943
944                 /*
945                  * This is special handling for some IPs like
946                  * 32k sync timer. Force them to idle!
947                  */
948                 clkdm_act = ((oh->clkdm &&
949                               oh->clkdm->flags & CLKDM_ACTIVE_WITH_MPU) ||
950                              (oh->_clk && oh->_clk->clkdm &&
951                               oh->_clk->clkdm->flags & CLKDM_ACTIVE_WITH_MPU));
952                 if (clkdm_act && !(oh->class->sysc->idlemodes &
953                                    (SIDLE_SMART | SIDLE_SMART_WKUP)))
954                         idlemode = HWMOD_IDLEMODE_FORCE;
955
956                 _set_slave_idlemode(oh, idlemode, &v);
957         }
958
959         if (sf & SYSC_HAS_MIDLEMODE) {
960                 if (oh->flags & HWMOD_FORCE_MSTANDBY) {
961                         idlemode = HWMOD_IDLEMODE_FORCE;
962                 } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
963                         idlemode = HWMOD_IDLEMODE_NO;
964                 } else {
965                         if (sf & SYSC_HAS_ENAWAKEUP)
966                                 _enable_wakeup(oh, &v);
967                         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
968                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
969                         else
970                                 idlemode = HWMOD_IDLEMODE_SMART;
971                 }
972                 _set_master_standbymode(oh, idlemode, &v);
973         }
974
975         /*
976          * XXX The clock framework should handle this, by
977          * calling into this code.  But this must wait until the
978          * clock structures are tagged with omap_hwmod entries
979          */
980         if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
981             (sf & SYSC_HAS_CLOCKACTIVITY))
982                 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
983
984         /* If the cached value is the same as the new value, skip the write */
985         if (oh->_sysc_cache != v)
986                 _write_sysconfig(v, oh);
987
988         /*
989          * Set the autoidle bit only after setting the smartidle bit
990          * Setting this will not have any impact on the other modules.
991          */
992         if (sf & SYSC_HAS_AUTOIDLE) {
993                 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
994                         0 : 1;
995                 _set_module_autoidle(oh, idlemode, &v);
996                 _write_sysconfig(v, oh);
997         }
998 }
999
1000 /**
1001  * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
1002  * @oh: struct omap_hwmod *
1003  *
1004  * If module is marked as SWSUP_SIDLE, force the module into slave
1005  * idle; otherwise, configure it for smart-idle.  If module is marked
1006  * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1007  * configure it for smart-standby.  No return value.
1008  */
1009 static void _idle_sysc(struct omap_hwmod *oh)
1010 {
1011         u8 idlemode, sf;
1012         u32 v;
1013
1014         if (!oh->class->sysc)
1015                 return;
1016
1017         v = oh->_sysc_cache;
1018         sf = oh->class->sysc->sysc_flags;
1019
1020         if (sf & SYSC_HAS_SIDLEMODE) {
1021                 if (oh->flags & HWMOD_SWSUP_SIDLE) {
1022                         idlemode = HWMOD_IDLEMODE_FORCE;
1023                 } else {
1024                         if (sf & SYSC_HAS_ENAWAKEUP)
1025                                 _enable_wakeup(oh, &v);
1026                         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1027                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1028                         else
1029                                 idlemode = HWMOD_IDLEMODE_SMART;
1030                 }
1031                 _set_slave_idlemode(oh, idlemode, &v);
1032         }
1033
1034         if (sf & SYSC_HAS_MIDLEMODE) {
1035                 if ((oh->flags & HWMOD_SWSUP_MSTANDBY) ||
1036                     (oh->flags & HWMOD_FORCE_MSTANDBY)) {
1037                         idlemode = HWMOD_IDLEMODE_FORCE;
1038                 } else {
1039                         if (sf & SYSC_HAS_ENAWAKEUP)
1040                                 _enable_wakeup(oh, &v);
1041                         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1042                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1043                         else
1044                                 idlemode = HWMOD_IDLEMODE_SMART;
1045                 }
1046                 _set_master_standbymode(oh, idlemode, &v);
1047         }
1048
1049         _write_sysconfig(v, oh);
1050 }
1051
1052 /**
1053  * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
1054  * @oh: struct omap_hwmod *
1055  *
1056  * Force the module into slave idle and master suspend. No return
1057  * value.
1058  */
1059 static void _shutdown_sysc(struct omap_hwmod *oh)
1060 {
1061         u32 v;
1062         u8 sf;
1063
1064         if (!oh->class->sysc)
1065                 return;
1066
1067         v = oh->_sysc_cache;
1068         sf = oh->class->sysc->sysc_flags;
1069
1070         if (sf & SYSC_HAS_SIDLEMODE)
1071                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1072
1073         if (sf & SYSC_HAS_MIDLEMODE)
1074                 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1075
1076         if (sf & SYSC_HAS_AUTOIDLE)
1077                 _set_module_autoidle(oh, 1, &v);
1078
1079         _write_sysconfig(v, oh);
1080 }
1081
1082 /**
1083  * _lookup - find an omap_hwmod by name
1084  * @name: find an omap_hwmod by name
1085  *
1086  * Return a pointer to an omap_hwmod by name, or NULL if not found.
1087  */
1088 static struct omap_hwmod *_lookup(const char *name)
1089 {
1090         struct omap_hwmod *oh, *temp_oh;
1091
1092         oh = NULL;
1093
1094         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1095                 if (!strcmp(name, temp_oh->name)) {
1096                         oh = temp_oh;
1097                         break;
1098                 }
1099         }
1100
1101         return oh;
1102 }
1103 /**
1104  * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1105  * @oh: struct omap_hwmod *
1106  *
1107  * Convert a clockdomain name stored in a struct omap_hwmod into a
1108  * clockdomain pointer, and save it into the struct omap_hwmod.
1109  * return -EINVAL if clkdm_name does not exist or if the lookup failed.
1110  */
1111 static int _init_clkdm(struct omap_hwmod *oh)
1112 {
1113         if (cpu_is_omap24xx() || cpu_is_omap34xx())
1114                 return 0;
1115
1116         if (!oh->clkdm_name) {
1117                 pr_warning("omap_hwmod: %s: no clkdm_name\n", oh->name);
1118                 return -EINVAL;
1119         }
1120
1121         oh->clkdm = clkdm_lookup(oh->clkdm_name);
1122         if (!oh->clkdm) {
1123                 pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n",
1124                         oh->name, oh->clkdm_name);
1125                 return -EINVAL;
1126         }
1127
1128         pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1129                 oh->name, oh->clkdm_name);
1130
1131         return 0;
1132 }
1133
1134 /**
1135  * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1136  * well the clockdomain.
1137  * @oh: struct omap_hwmod *
1138  * @data: not used; pass NULL
1139  *
1140  * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
1141  * Resolves all clock names embedded in the hwmod.  Returns 0 on
1142  * success, or a negative error code on failure.
1143  */
1144 static int _init_clocks(struct omap_hwmod *oh, void *data)
1145 {
1146         int ret = 0;
1147
1148         if (oh->_state != _HWMOD_STATE_REGISTERED)
1149                 return 0;
1150
1151         pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1152
1153         ret |= _init_main_clk(oh);
1154         ret |= _init_interface_clks(oh);
1155         ret |= _init_opt_clks(oh);
1156         ret |= _init_clkdm(oh);
1157
1158         if (!ret)
1159                 oh->_state = _HWMOD_STATE_CLKS_INITED;
1160         else
1161                 pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
1162
1163         return ret;
1164 }
1165
1166 /**
1167  * _wait_target_ready - wait for a module to leave slave idle
1168  * @oh: struct omap_hwmod *
1169  *
1170  * Wait for a module @oh to leave slave idle.  Returns 0 if the module
1171  * does not have an IDLEST bit or if the module successfully leaves
1172  * slave idle; otherwise, pass along the return value of the
1173  * appropriate *_cm*_wait_module_ready() function.
1174  */
1175 static int _wait_target_ready(struct omap_hwmod *oh)
1176 {
1177         struct omap_hwmod_ocp_if *os;
1178         int ret;
1179
1180         if (!oh)
1181                 return -EINVAL;
1182
1183         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1184                 return 0;
1185
1186         os = oh->slaves[oh->_mpu_port_index];
1187
1188         if (oh->flags & HWMOD_NO_IDLEST)
1189                 return 0;
1190
1191         /* XXX check module SIDLEMODE */
1192
1193         /* XXX check clock enable states */
1194
1195         if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1196                 ret = omap2_cm_wait_module_ready(oh->prcm.omap2.module_offs,
1197                                                  oh->prcm.omap2.idlest_reg_id,
1198                                                  oh->prcm.omap2.idlest_idle_bit);
1199         } else if (cpu_is_omap44xx()) {
1200                 if (!oh->clkdm)
1201                         return -EINVAL;
1202
1203                 ret = omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition,
1204                                                      oh->clkdm->cm_inst,
1205                                                      oh->clkdm->clkdm_offs,
1206                                                      oh->prcm.omap4.clkctrl_offs);
1207         } else {
1208                 BUG();
1209         };
1210
1211         return ret;
1212 }
1213
1214 /**
1215  * _wait_target_disable - wait for a module to be disabled
1216  * @oh: struct omap_hwmod *
1217  *
1218  * Wait for a module @oh to enter slave idle.  Returns 0 if the module
1219  * does not have an IDLEST bit or if the module successfully enters
1220  * slave idle; otherwise, pass along the return value of the
1221  * appropriate *_cm*_wait_module_idle() function.
1222  */
1223 static int _wait_target_disable(struct omap_hwmod *oh)
1224 {
1225         /* TODO: For now just handle OMAP4+ */
1226         if (cpu_is_omap24xx() || cpu_is_omap34xx())
1227                 return 0;
1228
1229         if (!oh)
1230                 return -EINVAL;
1231
1232         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1233                 return 0;
1234
1235         if (oh->flags & HWMOD_NO_IDLEST)
1236                 return 0;
1237
1238         return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition,
1239                                              oh->clkdm->cm_inst,
1240                                              oh->clkdm->clkdm_offs,
1241                                              oh->prcm.omap4.clkctrl_offs);
1242 }
1243
1244 /**
1245  * _lookup_hardreset - fill register bit info for this hwmod/reset line
1246  * @oh: struct omap_hwmod *
1247  * @name: name of the reset line in the context of this hwmod
1248  * @ohri: struct omap_hwmod_rst_info * that this function will fill in
1249  *
1250  * Return the bit position of the reset line that match the
1251  * input name. Return -ENOENT if not found.
1252  */
1253 static u8 _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1254                             struct omap_hwmod_rst_info *ohri)
1255 {
1256         int i;
1257
1258         for (i = 0; i < oh->rst_lines_cnt; i++) {
1259                 const char *rst_line = oh->rst_lines[i].name;
1260                 if (!strcmp(rst_line, name)) {
1261                         ohri->rst_shift = oh->rst_lines[i].rst_shift;
1262                         ohri->st_shift = oh->rst_lines[i].st_shift;
1263                         pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1264                                  oh->name, __func__, rst_line, ohri->rst_shift,
1265                                  ohri->st_shift);
1266
1267                         return 0;
1268                 }
1269         }
1270
1271         return -ENOENT;
1272 }
1273
1274 /**
1275  * _assert_hardreset - assert the HW reset line of submodules
1276  * contained in the hwmod module.
1277  * @oh: struct omap_hwmod *
1278  * @name: name of the reset line to lookup and assert
1279  *
1280  * Some IP like dsp, ipu or iva contain processor that require
1281  * an HW reset line to be assert / deassert in order to enable fully
1282  * the IP.
1283  */
1284 static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1285 {
1286         struct omap_hwmod_rst_info ohri;
1287         u8 ret;
1288
1289         if (!oh)
1290                 return -EINVAL;
1291
1292         ret = _lookup_hardreset(oh, name, &ohri);
1293         if (IS_ERR_VALUE(ret))
1294                 return ret;
1295
1296         if (cpu_is_omap24xx() || cpu_is_omap34xx())
1297                 return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
1298                                                   ohri.rst_shift);
1299         else if (cpu_is_omap44xx())
1300                 return omap4_prminst_assert_hardreset(ohri.rst_shift,
1301                                   oh->clkdm->pwrdm.ptr->prcm_partition,
1302                                   oh->clkdm->pwrdm.ptr->prcm_offs,
1303                                   oh->prcm.omap4.rstctrl_offs);
1304         else
1305                 return -EINVAL;
1306 }
1307
1308 /**
1309  * _deassert_hardreset - deassert the HW reset line of submodules contained
1310  * in the hwmod module.
1311  * @oh: struct omap_hwmod *
1312  * @name: name of the reset line to look up and deassert
1313  *
1314  * Some IP like dsp, ipu or iva contain processor that require
1315  * an HW reset line to be assert / deassert in order to enable fully
1316  * the IP.
1317  */
1318 static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1319 {
1320         struct omap_hwmod_rst_info ohri;
1321         int ret;
1322
1323         if (!oh)
1324                 return -EINVAL;
1325
1326         ret = _lookup_hardreset(oh, name, &ohri);
1327         if (IS_ERR_VALUE(ret))
1328                 return ret;
1329
1330         if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1331                 ret = omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
1332                                                    ohri.rst_shift,
1333                                                    ohri.st_shift);
1334         } else if (cpu_is_omap44xx()) {
1335                 if (ohri.st_shift)
1336                         pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
1337                                oh->name, name);
1338                 ret = omap4_prminst_deassert_hardreset(ohri.rst_shift,
1339                                   oh->clkdm->pwrdm.ptr->prcm_partition,
1340                                   oh->clkdm->pwrdm.ptr->prcm_offs,
1341                                   oh->prcm.omap4.rstctrl_offs);
1342         } else {
1343                 return -EINVAL;
1344         }
1345
1346         if (ret == -EBUSY)
1347                 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1348
1349         return ret;
1350 }
1351
1352 /**
1353  * _read_hardreset - read the HW reset line state of submodules
1354  * contained in the hwmod module
1355  * @oh: struct omap_hwmod *
1356  * @name: name of the reset line to look up and read
1357  *
1358  * Return the state of the reset line.
1359  */
1360 static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1361 {
1362         struct omap_hwmod_rst_info ohri;
1363         u8 ret;
1364
1365         if (!oh)
1366                 return -EINVAL;
1367
1368         ret = _lookup_hardreset(oh, name, &ohri);
1369         if (IS_ERR_VALUE(ret))
1370                 return ret;
1371
1372         if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1373                 return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
1374                                                        ohri.st_shift);
1375         } else if (cpu_is_omap44xx()) {
1376                 return omap4_prminst_is_hardreset_asserted(ohri.rst_shift,
1377                                   oh->clkdm->pwrdm.ptr->prcm_partition,
1378                                   oh->clkdm->pwrdm.ptr->prcm_offs,
1379                                   oh->prcm.omap4.rstctrl_offs);
1380         } else {
1381                 return -EINVAL;
1382         }
1383 }
1384
1385 /**
1386  * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
1387  * @oh: struct omap_hwmod *
1388  *
1389  * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit.  hwmod must be
1390  * enabled for this to work.  Returns -EINVAL if the hwmod cannot be
1391  * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if
1392  * the module did not reset in time, or 0 upon success.
1393  *
1394  * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
1395  * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
1396  * use the SYSCONFIG softreset bit to provide the status.
1397  *
1398  * Note that some IP like McBSP do have reset control but don't have
1399  * reset status.
1400  */
1401 static int _ocp_softreset(struct omap_hwmod *oh)
1402 {
1403         u32 v;
1404         int c = 0;
1405         int ret = 0;
1406
1407         if (!oh->class->sysc ||
1408             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
1409                 return -EINVAL;
1410
1411         /* clocks must be on for this operation */
1412         if (oh->_state != _HWMOD_STATE_ENABLED) {
1413                 pr_warning("omap_hwmod: %s: reset can only be entered from "
1414                            "enabled state\n", oh->name);
1415                 return -EINVAL;
1416         }
1417
1418         /* For some modules, all optionnal clocks need to be enabled as well */
1419         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1420                 _enable_optional_clocks(oh);
1421
1422         pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
1423
1424         v = oh->_sysc_cache;
1425         ret = _set_softreset(oh, &v);
1426         if (ret)
1427                 goto dis_opt_clks;
1428
1429         _write_sysconfig(v, oh);
1430         ret = _clear_softreset(oh, &v);
1431         if (ret)
1432                 goto dis_opt_clks;
1433
1434         _write_sysconfig(v, oh);
1435
1436         if (oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
1437                 omap_test_timeout((omap_hwmod_read(oh,
1438                                                     oh->class->sysc->syss_offs)
1439                                    & SYSS_RESETDONE_MASK),
1440                                   MAX_MODULE_SOFTRESET_WAIT, c);
1441         else if (oh->class->sysc->sysc_flags & SYSC_HAS_RESET_STATUS)
1442                 omap_test_timeout(!(omap_hwmod_read(oh,
1443                                                      oh->class->sysc->sysc_offs)
1444                                    & SYSC_TYPE2_SOFTRESET_MASK),
1445                                   MAX_MODULE_SOFTRESET_WAIT, c);
1446
1447         if (c == MAX_MODULE_SOFTRESET_WAIT)
1448                 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1449                            oh->name, MAX_MODULE_SOFTRESET_WAIT);
1450         else
1451                 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
1452
1453         /*
1454          * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1455          * _wait_target_ready() or _reset()
1456          */
1457
1458         ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
1459
1460 dis_opt_clks:
1461         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1462                 _disable_optional_clocks(oh);
1463
1464         return ret;
1465 }
1466
1467 /**
1468  * _reset - reset an omap_hwmod
1469  * @oh: struct omap_hwmod *
1470  *
1471  * Resets an omap_hwmod @oh.  The default software reset mechanism for
1472  * most OMAP IP blocks is triggered via the OCP_SYSCONFIG.SOFTRESET
1473  * bit.  However, some hwmods cannot be reset via this method: some
1474  * are not targets and therefore have no OCP header registers to
1475  * access; others (like the IVA) have idiosyncratic reset sequences.
1476  * So for these relatively rare cases, custom reset code can be
1477  * supplied in the struct omap_hwmod_class .reset function pointer.
1478  * Passes along the return value from either _reset() or the custom
1479  * reset function - these must return -EINVAL if the hwmod cannot be
1480  * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if
1481  * the module did not reset in time, or 0 upon success.
1482  */
1483 static int _reset(struct omap_hwmod *oh)
1484 {
1485         int ret;
1486
1487         pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1488
1489         ret = (oh->class->reset) ? oh->class->reset(oh) : _ocp_softreset(oh);
1490
1491         return ret;
1492 }
1493
1494 /**
1495  * _enable - enable an omap_hwmod
1496  * @oh: struct omap_hwmod *
1497  *
1498  * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
1499  * register target.  Returns -EINVAL if the hwmod is in the wrong
1500  * state or passes along the return value of _wait_target_ready().
1501  */
1502 static int _enable(struct omap_hwmod *oh)
1503 {
1504         int r;
1505         int hwsup = 0;
1506
1507         pr_debug("omap_hwmod: %s: enabling\n", oh->name);
1508
1509         if (oh->_state != _HWMOD_STATE_INITIALIZED &&
1510             oh->_state != _HWMOD_STATE_IDLE &&
1511             oh->_state != _HWMOD_STATE_DISABLED) {
1512                 WARN(1, "omap_hwmod: %s: enabled state can only be entered "
1513                      "from initialized, idle, or disabled state\n", oh->name);
1514                 return -EINVAL;
1515         }
1516
1517
1518         /*
1519          * If an IP contains only one HW reset line, then de-assert it in order
1520          * to allow the module state transition. Otherwise the PRCM will return
1521          * Intransition status, and the init will failed.
1522          */
1523         if ((oh->_state == _HWMOD_STATE_INITIALIZED ||
1524              oh->_state == _HWMOD_STATE_DISABLED) && oh->rst_lines_cnt == 1)
1525                 _deassert_hardreset(oh, oh->rst_lines[0].name);
1526
1527         /* Mux pins for device runtime if populated */
1528         if (oh->mux && (!oh->mux->enabled ||
1529                         ((oh->_state == _HWMOD_STATE_IDLE) &&
1530                          oh->mux->pads_dynamic)))
1531                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
1532
1533         _add_initiator_dep(oh, mpu_oh);
1534
1535         if (oh->clkdm) {
1536                 /*
1537                  * A clockdomain must be in SW_SUP before enabling
1538                  * completely the module. The clockdomain can be set
1539                  * in HW_AUTO only when the module become ready.
1540                  */
1541                 hwsup = clkdm_in_hwsup(oh->clkdm);
1542                 r = clkdm_hwmod_enable(oh->clkdm, oh);
1543                 if (r) {
1544                         WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1545                              oh->name, oh->clkdm->name, r);
1546                         return r;
1547                 }
1548         }
1549
1550         _enable_clocks(oh);
1551         _enable_module(oh);
1552
1553         r = _wait_target_ready(oh);
1554         if (!r) {
1555                 /*
1556                  * Set the clockdomain to HW_AUTO only if the target is ready,
1557                  * assuming that the previous state was HW_AUTO
1558                  */
1559                 if (oh->clkdm && hwsup)
1560                         clkdm_allow_idle(oh->clkdm);
1561
1562                 oh->_state = _HWMOD_STATE_ENABLED;
1563
1564                 /* Access the sysconfig only if the target is ready */
1565                 if (oh->class->sysc) {
1566                         if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
1567                                 _update_sysc_cache(oh);
1568                         _enable_sysc(oh);
1569                 }
1570         } else {
1571                 _disable_clocks(oh);
1572                 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
1573                          oh->name, r);
1574
1575                 if (oh->clkdm)
1576                         clkdm_hwmod_disable(oh->clkdm, oh);
1577         }
1578
1579         return r;
1580 }
1581
1582 /**
1583  * _idle - idle an omap_hwmod
1584  * @oh: struct omap_hwmod *
1585  *
1586  * Idles an omap_hwmod @oh.  This should be called once the hwmod has
1587  * no further work.  Returns -EINVAL if the hwmod is in the wrong
1588  * state or returns 0.
1589  */
1590 static int _idle(struct omap_hwmod *oh)
1591 {
1592         int ret;
1593
1594         pr_debug("omap_hwmod: %s: idling\n", oh->name);
1595
1596         if (oh->_state != _HWMOD_STATE_ENABLED) {
1597                 WARN(1, "omap_hwmod: %s: idle state can only be entered from "
1598                      "enabled state\n", oh->name);
1599                 return -EINVAL;
1600         }
1601
1602         if (oh->class->sysc)
1603                 _idle_sysc(oh);
1604         _del_initiator_dep(oh, mpu_oh);
1605         _disable_module(oh);
1606         ret = _wait_target_disable(oh);
1607         if (ret)
1608                 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1609                         oh->name);
1610         /*
1611          * The module must be in idle mode before disabling any parents
1612          * clocks. Otherwise, the parent clock might be disabled before
1613          * the module transition is done, and thus will prevent the
1614          * transition to complete properly.
1615          */
1616         _disable_clocks(oh);
1617         if (oh->clkdm)
1618                 clkdm_hwmod_disable(oh->clkdm, oh);
1619
1620         /* Mux pins for device idle if populated */
1621         if (oh->mux && oh->mux->pads_dynamic)
1622                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
1623
1624         oh->_state = _HWMOD_STATE_IDLE;
1625
1626         return 0;
1627 }
1628
1629 /**
1630  * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit
1631  * @oh: struct omap_hwmod *
1632  * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
1633  *
1634  * Sets the IP block's OCP autoidle bit in hardware, and updates our
1635  * local copy. Intended to be used by drivers that require
1636  * direct manipulation of the AUTOIDLE bits.
1637  * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes
1638  * along the return value from _set_module_autoidle().
1639  *
1640  * Any users of this function should be scrutinized carefully.
1641  */
1642 int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle)
1643 {
1644         u32 v;
1645         int retval = 0;
1646         unsigned long flags;
1647
1648         if (!oh || oh->_state != _HWMOD_STATE_ENABLED)
1649                 return -EINVAL;
1650
1651         spin_lock_irqsave(&oh->_lock, flags);
1652
1653         v = oh->_sysc_cache;
1654
1655         retval = _set_module_autoidle(oh, autoidle, &v);
1656
1657         if (!retval)
1658                 _write_sysconfig(v, oh);
1659
1660         spin_unlock_irqrestore(&oh->_lock, flags);
1661
1662         return retval;
1663 }
1664
1665 /**
1666  * _shutdown - shutdown an omap_hwmod
1667  * @oh: struct omap_hwmod *
1668  *
1669  * Shut down an omap_hwmod @oh.  This should be called when the driver
1670  * used for the hwmod is removed or unloaded or if the driver is not
1671  * used by the system.  Returns -EINVAL if the hwmod is in the wrong
1672  * state or returns 0.
1673  */
1674 static int _shutdown(struct omap_hwmod *oh)
1675 {
1676         int ret;
1677         u8 prev_state;
1678
1679         if (oh->_state != _HWMOD_STATE_IDLE &&
1680             oh->_state != _HWMOD_STATE_ENABLED) {
1681                 WARN(1, "omap_hwmod: %s: disabled state can only be entered "
1682                      "from idle, or enabled state\n", oh->name);
1683                 return -EINVAL;
1684         }
1685
1686         pr_debug("omap_hwmod: %s: disabling\n", oh->name);
1687
1688         if (oh->class->pre_shutdown) {
1689                 prev_state = oh->_state;
1690                 if (oh->_state == _HWMOD_STATE_IDLE)
1691                         _enable(oh);
1692                 ret = oh->class->pre_shutdown(oh);
1693                 if (ret) {
1694                         if (prev_state == _HWMOD_STATE_IDLE)
1695                                 _idle(oh);
1696                         return ret;
1697                 }
1698         }
1699
1700         if (oh->class->sysc) {
1701                 if (oh->_state == _HWMOD_STATE_IDLE)
1702                         _enable(oh);
1703                 _shutdown_sysc(oh);
1704         }
1705
1706         /* clocks and deps are already disabled in idle */
1707         if (oh->_state == _HWMOD_STATE_ENABLED) {
1708                 _del_initiator_dep(oh, mpu_oh);
1709                 /* XXX what about the other system initiators here? dma, dsp */
1710                 _disable_module(oh);
1711                 ret = _wait_target_disable(oh);
1712                 if (ret)
1713                         pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1714                                 oh->name);
1715                 _disable_clocks(oh);
1716                 if (oh->clkdm)
1717                         clkdm_hwmod_disable(oh->clkdm, oh);
1718         }
1719         /* XXX Should this code also force-disable the optional clocks? */
1720
1721         /*
1722          * If an IP contains only one HW reset line, then assert it
1723          * after disabling the clocks and before shutting down the IP.
1724          */
1725         if (oh->rst_lines_cnt == 1)
1726                 _assert_hardreset(oh, oh->rst_lines[0].name);
1727
1728         /* Mux pins to safe mode or use populated off mode values */
1729         if (oh->mux)
1730                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
1731
1732         oh->_state = _HWMOD_STATE_DISABLED;
1733
1734         return 0;
1735 }
1736
1737 /**
1738  * _setup - do initial configuration of omap_hwmod
1739  * @oh: struct omap_hwmod *
1740  *
1741  * Writes the CLOCKACTIVITY bits @clockact to the hwmod @oh
1742  * OCP_SYSCONFIG register.  Returns 0.
1743  */
1744 static int _setup(struct omap_hwmod *oh, void *data)
1745 {
1746         int i, r;
1747         u8 postsetup_state;
1748
1749         if (oh->_state != _HWMOD_STATE_CLKS_INITED)
1750                 return 0;
1751
1752         /* Set iclk autoidle mode */
1753         if (oh->slaves_cnt > 0) {
1754                 for (i = 0; i < oh->slaves_cnt; i++) {
1755                         struct omap_hwmod_ocp_if *os = oh->slaves[i];
1756                         struct clk *c = os->_clk;
1757
1758                         if (!c)
1759                                 continue;
1760
1761                         if (os->flags & OCPIF_SWSUP_IDLE) {
1762                                 /* XXX omap_iclk_deny_idle(c); */
1763                         } else {
1764                                 /* XXX omap_iclk_allow_idle(c); */
1765                                 clk_enable(c);
1766                         }
1767                 }
1768         }
1769
1770         oh->_state = _HWMOD_STATE_INITIALIZED;
1771
1772         /*
1773          * In the case of hwmod with hardreset that should not be
1774          * de-assert at boot time, we have to keep the module
1775          * initialized, because we cannot enable it properly with the
1776          * reset asserted. Exit without warning because that behavior is
1777          * expected.
1778          */
1779         if ((oh->flags & HWMOD_INIT_NO_RESET) && oh->rst_lines_cnt == 1)
1780                 return 0;
1781
1782         r = _enable(oh);
1783         if (r) {
1784                 pr_warning("omap_hwmod: %s: cannot be enabled (%d)\n",
1785                            oh->name, oh->_state);
1786                 return 0;
1787         }
1788
1789         if (!(oh->flags & HWMOD_INIT_NO_RESET)) {
1790                 _reset(oh);
1791
1792                 /*
1793                  * OCP_SYSCONFIG bits need to be reprogrammed after a softreset.
1794                  * The _enable() function should be split to
1795                  * avoid the rewrite of the OCP_SYSCONFIG register.
1796                  */
1797                 if (oh->class->sysc) {
1798                         _update_sysc_cache(oh);
1799                         _enable_sysc(oh);
1800                 }
1801         }
1802
1803         postsetup_state = oh->_postsetup_state;
1804         if (postsetup_state == _HWMOD_STATE_UNKNOWN)
1805                 postsetup_state = _HWMOD_STATE_ENABLED;
1806
1807         /*
1808          * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
1809          * it should be set by the core code as a runtime flag during startup
1810          */
1811         if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
1812             (postsetup_state == _HWMOD_STATE_IDLE))
1813                 postsetup_state = _HWMOD_STATE_ENABLED;
1814
1815         if (postsetup_state == _HWMOD_STATE_IDLE)
1816                 _idle(oh);
1817         else if (postsetup_state == _HWMOD_STATE_DISABLED)
1818                 _shutdown(oh);
1819         else if (postsetup_state != _HWMOD_STATE_ENABLED)
1820                 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
1821                      oh->name, postsetup_state);
1822
1823         return 0;
1824 }
1825
1826 /**
1827  * _register - register a struct omap_hwmod
1828  * @oh: struct omap_hwmod *
1829  *
1830  * Registers the omap_hwmod @oh.  Returns -EEXIST if an omap_hwmod
1831  * already has been registered by the same name; -EINVAL if the
1832  * omap_hwmod is in the wrong state, if @oh is NULL, if the
1833  * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
1834  * name, or if the omap_hwmod's class is missing a name; or 0 upon
1835  * success.
1836  *
1837  * XXX The data should be copied into bootmem, so the original data
1838  * should be marked __initdata and freed after init.  This would allow
1839  * unneeded omap_hwmods to be freed on multi-OMAP configurations.  Note
1840  * that the copy process would be relatively complex due to the large number
1841  * of substructures.
1842  */
1843 static int __init _register(struct omap_hwmod *oh)
1844 {
1845         int ms_id;
1846
1847         if (!oh || !oh->name || !oh->class || !oh->class->name ||
1848             (oh->_state != _HWMOD_STATE_UNKNOWN))
1849                 return -EINVAL;
1850
1851         pr_debug("omap_hwmod: %s: registering\n", oh->name);
1852
1853         if (_lookup(oh->name))
1854                 return -EEXIST;
1855
1856         ms_id = _find_mpu_port_index(oh);
1857         if (!IS_ERR_VALUE(ms_id))
1858                 oh->_mpu_port_index = ms_id;
1859         else
1860                 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
1861
1862         list_add_tail(&oh->node, &omap_hwmod_list);
1863
1864         spin_lock_init(&oh->_lock);
1865
1866         oh->_state = _HWMOD_STATE_REGISTERED;
1867
1868         /*
1869          * XXX Rather than doing a strcmp(), this should test a flag
1870          * set in the hwmod data, inserted by the autogenerator code.
1871          */
1872         if (!strcmp(oh->name, MPU_INITIATOR_NAME))
1873                 mpu_oh = oh;
1874
1875         return 0;
1876 }
1877
1878
1879 /* Public functions */
1880
1881 u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
1882 {
1883         if (oh->flags & HWMOD_16BIT_REG)
1884                 return __raw_readw(oh->_mpu_rt_va + reg_offs);
1885         else
1886                 return __raw_readl(oh->_mpu_rt_va + reg_offs);
1887 }
1888
1889 void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
1890 {
1891         if (oh->flags & HWMOD_16BIT_REG)
1892                 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
1893         else
1894                 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
1895 }
1896
1897 /**
1898  * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
1899  * @oh: struct omap_hwmod *
1900  *
1901  * This is a public function exposed to drivers. Some drivers may need to do
1902  * some settings before and after resetting the device.  Those drivers after
1903  * doing the necessary settings could use this function to start a reset by
1904  * setting the SYSCONFIG.SOFTRESET bit.
1905  */
1906 int omap_hwmod_softreset(struct omap_hwmod *oh)
1907 {
1908         u32 v;
1909         int ret;
1910
1911         if (!oh || !(oh->_sysc_cache))
1912                 return -EINVAL;
1913
1914         v = oh->_sysc_cache;
1915         ret = _set_softreset(oh, &v);
1916         if (ret)
1917                 goto error;
1918         _write_sysconfig(v, oh);
1919
1920         ret = _clear_softreset(oh, &v);
1921         if (ret)
1922                 goto error;
1923         _write_sysconfig(v, oh);
1924
1925 error:
1926         return ret;
1927 }
1928
1929 /**
1930  * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode
1931  * @oh: struct omap_hwmod *
1932  * @idlemode: SIDLEMODE field bits (shifted to bit 0)
1933  *
1934  * Sets the IP block's OCP slave idlemode in hardware, and updates our
1935  * local copy.  Intended to be used by drivers that have some erratum
1936  * that requires direct manipulation of the SIDLEMODE bits.  Returns
1937  * -EINVAL if @oh is null, or passes along the return value from
1938  * _set_slave_idlemode().
1939  *
1940  * XXX Does this function have any current users?  If not, we should
1941  * remove it; it is better to let the rest of the hwmod code handle this.
1942  * Any users of this function should be scrutinized carefully.
1943  */
1944 int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode)
1945 {
1946         u32 v;
1947         int retval = 0;
1948
1949         if (!oh)
1950                 return -EINVAL;
1951
1952         v = oh->_sysc_cache;
1953
1954         retval = _set_slave_idlemode(oh, idlemode, &v);
1955         if (!retval)
1956                 _write_sysconfig(v, oh);
1957
1958         return retval;
1959 }
1960
1961 /**
1962  * omap_hwmod_lookup - look up a registered omap_hwmod by name
1963  * @name: name of the omap_hwmod to look up
1964  *
1965  * Given a @name of an omap_hwmod, return a pointer to the registered
1966  * struct omap_hwmod *, or NULL upon error.
1967  */
1968 struct omap_hwmod *omap_hwmod_lookup(const char *name)
1969 {
1970         struct omap_hwmod *oh;
1971
1972         if (!name)
1973                 return NULL;
1974
1975         oh = _lookup(name);
1976
1977         return oh;
1978 }
1979
1980 /**
1981  * omap_hwmod_for_each - call function for each registered omap_hwmod
1982  * @fn: pointer to a callback function
1983  * @data: void * data to pass to callback function
1984  *
1985  * Call @fn for each registered omap_hwmod, passing @data to each
1986  * function.  @fn must return 0 for success or any other value for
1987  * failure.  If @fn returns non-zero, the iteration across omap_hwmods
1988  * will stop and the non-zero return value will be passed to the
1989  * caller of omap_hwmod_for_each().  @fn is called with
1990  * omap_hwmod_for_each() held.
1991  */
1992 int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
1993                         void *data)
1994 {
1995         struct omap_hwmod *temp_oh;
1996         int ret = 0;
1997
1998         if (!fn)
1999                 return -EINVAL;
2000
2001         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
2002                 ret = (*fn)(temp_oh, data);
2003                 if (ret)
2004                         break;
2005         }
2006
2007         return ret;
2008 }
2009
2010 /**
2011  * omap_hwmod_register - register an array of hwmods
2012  * @ohs: pointer to an array of omap_hwmods to register
2013  *
2014  * Intended to be called early in boot before the clock framework is
2015  * initialized.  If @ohs is not null, will register all omap_hwmods
2016  * listed in @ohs that are valid for this chip.  Returns 0.
2017  */
2018 int __init omap_hwmod_register(struct omap_hwmod **ohs)
2019 {
2020         int r, i;
2021
2022         if (!ohs)
2023                 return 0;
2024
2025         i = 0;
2026         do {
2027                 r = _register(ohs[i]);
2028                 WARN(r, "omap_hwmod: %s: _register returned %d\n", ohs[i]->name,
2029                      r);
2030         } while (ohs[++i]);
2031
2032         return 0;
2033 }
2034
2035 /*
2036  * _populate_mpu_rt_base - populate the virtual address for a hwmod
2037  *
2038  * Must be called only from omap_hwmod_setup_*() so ioremap works properly.
2039  * Assumes the caller takes care of locking if needed.
2040  */
2041 static int __init _populate_mpu_rt_base(struct omap_hwmod *oh, void *data)
2042 {
2043         if (oh->_state != _HWMOD_STATE_REGISTERED)
2044                 return 0;
2045
2046         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2047                 return 0;
2048
2049         oh->_mpu_rt_va = _find_mpu_rt_base(oh, oh->_mpu_port_index);
2050
2051         return 0;
2052 }
2053
2054 /**
2055  * omap_hwmod_setup_one - set up a single hwmod
2056  * @oh_name: const char * name of the already-registered hwmod to set up
2057  *
2058  * Must be called after omap2_clk_init().  Resolves the struct clk
2059  * names to struct clk pointers for each registered omap_hwmod.  Also
2060  * calls _setup() on each hwmod.  Returns -EINVAL upon error or 0 upon
2061  * success.
2062  */
2063 int __init omap_hwmod_setup_one(const char *oh_name)
2064 {
2065         struct omap_hwmod *oh;
2066         int r;
2067
2068         pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
2069
2070         if (!mpu_oh) {
2071                 pr_err("omap_hwmod: %s: cannot setup_one: MPU initiator hwmod %s not yet registered\n",
2072                        oh_name, MPU_INITIATOR_NAME);
2073                 return -EINVAL;
2074         }
2075
2076         oh = _lookup(oh_name);
2077         if (!oh) {
2078                 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
2079                 return -EINVAL;
2080         }
2081
2082         if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
2083                 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
2084
2085         r = _populate_mpu_rt_base(oh, NULL);
2086         if (IS_ERR_VALUE(r)) {
2087                 WARN(1, "omap_hwmod: %s: couldn't set mpu_rt_base\n", oh_name);
2088                 return -EINVAL;
2089         }
2090
2091         r = _init_clocks(oh, NULL);
2092         if (IS_ERR_VALUE(r)) {
2093                 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh_name);
2094                 return -EINVAL;
2095         }
2096
2097         _setup(oh, NULL);
2098
2099         return 0;
2100 }
2101
2102 /**
2103  * omap_hwmod_setup - do some post-clock framework initialization
2104  *
2105  * Must be called after omap2_clk_init().  Resolves the struct clk names
2106  * to struct clk pointers for each registered omap_hwmod.  Also calls
2107  * _setup() on each hwmod.  Returns 0 upon success.
2108  */
2109 static int __init omap_hwmod_setup_all(void)
2110 {
2111         int r;
2112
2113         if (!mpu_oh) {
2114                 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
2115                        __func__, MPU_INITIATOR_NAME);
2116                 return -EINVAL;
2117         }
2118
2119         r = omap_hwmod_for_each(_populate_mpu_rt_base, NULL);
2120
2121         r = omap_hwmod_for_each(_init_clocks, NULL);
2122         WARN(IS_ERR_VALUE(r),
2123              "omap_hwmod: %s: _init_clocks failed\n", __func__);
2124
2125         omap_hwmod_for_each(_setup, NULL);
2126
2127         return 0;
2128 }
2129 core_initcall(omap_hwmod_setup_all);
2130
2131 /**
2132  * omap_hwmod_enable - enable an omap_hwmod
2133  * @oh: struct omap_hwmod *
2134  *
2135  * Enable an omap_hwmod @oh.  Intended to be called by omap_device_enable().
2136  * Returns -EINVAL on error or passes along the return value from _enable().
2137  */
2138 int omap_hwmod_enable(struct omap_hwmod *oh)
2139 {
2140         int r;
2141         unsigned long flags;
2142
2143         if (!oh)
2144                 return -EINVAL;
2145
2146         spin_lock_irqsave(&oh->_lock, flags);
2147         r = _enable(oh);
2148         spin_unlock_irqrestore(&oh->_lock, flags);
2149
2150         return r;
2151 }
2152
2153 /**
2154  * omap_hwmod_idle - idle an omap_hwmod
2155  * @oh: struct omap_hwmod *
2156  *
2157  * Idle an omap_hwmod @oh.  Intended to be called by omap_device_idle().
2158  * Returns -EINVAL on error or passes along the return value from _idle().
2159  */
2160 int omap_hwmod_idle(struct omap_hwmod *oh)
2161 {
2162         unsigned long flags;
2163
2164         if (!oh)
2165                 return -EINVAL;
2166
2167         spin_lock_irqsave(&oh->_lock, flags);
2168         _idle(oh);
2169         spin_unlock_irqrestore(&oh->_lock, flags);
2170
2171         return 0;
2172 }
2173
2174 /**
2175  * omap_hwmod_shutdown - shutdown an omap_hwmod
2176  * @oh: struct omap_hwmod *
2177  *
2178  * Shutdown an omap_hwmod @oh.  Intended to be called by
2179  * omap_device_shutdown().  Returns -EINVAL on error or passes along
2180  * the return value from _shutdown().
2181  */
2182 int omap_hwmod_shutdown(struct omap_hwmod *oh)
2183 {
2184         unsigned long flags;
2185
2186         if (!oh)
2187                 return -EINVAL;
2188
2189         spin_lock_irqsave(&oh->_lock, flags);
2190         _shutdown(oh);
2191         spin_unlock_irqrestore(&oh->_lock, flags);
2192
2193         return 0;
2194 }
2195
2196 /**
2197  * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
2198  * @oh: struct omap_hwmod *oh
2199  *
2200  * Intended to be called by the omap_device code.
2201  */
2202 int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
2203 {
2204         unsigned long flags;
2205
2206         spin_lock_irqsave(&oh->_lock, flags);
2207         _enable_clocks(oh);
2208         spin_unlock_irqrestore(&oh->_lock, flags);
2209
2210         return 0;
2211 }
2212
2213 /**
2214  * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
2215  * @oh: struct omap_hwmod *oh
2216  *
2217  * Intended to be called by the omap_device code.
2218  */
2219 int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
2220 {
2221         unsigned long flags;
2222
2223         spin_lock_irqsave(&oh->_lock, flags);
2224         _disable_clocks(oh);
2225         spin_unlock_irqrestore(&oh->_lock, flags);
2226
2227         return 0;
2228 }
2229
2230 /**
2231  * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
2232  * @oh: struct omap_hwmod *oh
2233  *
2234  * Intended to be called by drivers and core code when all posted
2235  * writes to a device must complete before continuing further
2236  * execution (for example, after clearing some device IRQSTATUS
2237  * register bits)
2238  *
2239  * XXX what about targets with multiple OCP threads?
2240  */
2241 void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
2242 {
2243         BUG_ON(!oh);
2244
2245         if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
2246                 WARN(1, "omap_device: %s: OCP barrier impossible due to "
2247                       "device configuration\n", oh->name);
2248                 return;
2249         }
2250
2251         /*
2252          * Forces posted writes to complete on the OCP thread handling
2253          * register writes
2254          */
2255         omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
2256 }
2257
2258 /**
2259  * omap_hwmod_reset - reset the hwmod
2260  * @oh: struct omap_hwmod *
2261  *
2262  * Under some conditions, a driver may wish to reset the entire device.
2263  * Called from omap_device code.  Returns -EINVAL on error or passes along
2264  * the return value from _reset().
2265  */
2266 int omap_hwmod_reset(struct omap_hwmod *oh)
2267 {
2268         int r;
2269         unsigned long flags;
2270
2271         if (!oh)
2272                 return -EINVAL;
2273
2274         spin_lock_irqsave(&oh->_lock, flags);
2275         r = _reset(oh);
2276         spin_unlock_irqrestore(&oh->_lock, flags);
2277
2278         return r;
2279 }
2280
2281 /**
2282  * omap_hwmod_count_resources - count number of struct resources needed by hwmod
2283  * @oh: struct omap_hwmod *
2284  * @res: pointer to the first element of an array of struct resource to fill
2285  *
2286  * Count the number of struct resource array elements necessary to
2287  * contain omap_hwmod @oh resources.  Intended to be called by code
2288  * that registers omap_devices.  Intended to be used to determine the
2289  * size of a dynamically-allocated struct resource array, before
2290  * calling omap_hwmod_fill_resources().  Returns the number of struct
2291  * resource array elements needed.
2292  *
2293  * XXX This code is not optimized.  It could attempt to merge adjacent
2294  * resource IDs.
2295  *
2296  */
2297 int omap_hwmod_count_resources(struct omap_hwmod *oh)
2298 {
2299         int ret, i;
2300
2301         ret = _count_mpu_irqs(oh) + _count_sdma_reqs(oh);
2302
2303         for (i = 0; i < oh->slaves_cnt; i++)
2304                 ret += _count_ocp_if_addr_spaces(oh->slaves[i]);
2305
2306         return ret;
2307 }
2308
2309 /**
2310  * omap_hwmod_fill_resources - fill struct resource array with hwmod data
2311  * @oh: struct omap_hwmod *
2312  * @res: pointer to the first element of an array of struct resource to fill
2313  *
2314  * Fill the struct resource array @res with resource data from the
2315  * omap_hwmod @oh.  Intended to be called by code that registers
2316  * omap_devices.  See also omap_hwmod_count_resources().  Returns the
2317  * number of array elements filled.
2318  */
2319 int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
2320 {
2321         int i, j, mpu_irqs_cnt, sdma_reqs_cnt;
2322         int r = 0;
2323
2324         /* For each IRQ, DMA, memory area, fill in array.*/
2325
2326         mpu_irqs_cnt = _count_mpu_irqs(oh);
2327         for (i = 0; i < mpu_irqs_cnt; i++) {
2328                 (res + r)->name = (oh->mpu_irqs + i)->name;
2329                 (res + r)->start = (oh->mpu_irqs + i)->irq;
2330                 (res + r)->end = (oh->mpu_irqs + i)->irq;
2331                 (res + r)->flags = IORESOURCE_IRQ;
2332                 r++;
2333         }
2334
2335         sdma_reqs_cnt = _count_sdma_reqs(oh);
2336         for (i = 0; i < sdma_reqs_cnt; i++) {
2337                 (res + r)->name = (oh->sdma_reqs + i)->name;
2338                 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
2339                 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
2340                 (res + r)->flags = IORESOURCE_DMA;
2341                 r++;
2342         }
2343
2344         for (i = 0; i < oh->slaves_cnt; i++) {
2345                 struct omap_hwmod_ocp_if *os;
2346                 int addr_cnt;
2347
2348                 os = oh->slaves[i];
2349                 addr_cnt = _count_ocp_if_addr_spaces(os);
2350
2351                 for (j = 0; j < addr_cnt; j++) {
2352                         (res + r)->name = (os->addr + j)->name;
2353                         (res + r)->start = (os->addr + j)->pa_start;
2354                         (res + r)->end = (os->addr + j)->pa_end;
2355                         (res + r)->flags = IORESOURCE_MEM;
2356                         r++;
2357                 }
2358         }
2359
2360         return r;
2361 }
2362
2363 /**
2364  * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
2365  * @oh: struct omap_hwmod *
2366  *
2367  * Return the powerdomain pointer associated with the OMAP module
2368  * @oh's main clock.  If @oh does not have a main clk, return the
2369  * powerdomain associated with the interface clock associated with the
2370  * module's MPU port. (XXX Perhaps this should use the SDMA port
2371  * instead?)  Returns NULL on error, or a struct powerdomain * on
2372  * success.
2373  */
2374 struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
2375 {
2376         struct clk *c;
2377
2378         if (!oh)
2379                 return NULL;
2380
2381         if (oh->_clk) {
2382                 c = oh->_clk;
2383         } else {
2384                 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2385                         return NULL;
2386                 c = oh->slaves[oh->_mpu_port_index]->_clk;
2387         }
2388
2389         if (!c->clkdm)
2390                 return NULL;
2391
2392         return c->clkdm->pwrdm.ptr;
2393
2394 }
2395
2396 /**
2397  * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
2398  * @oh: struct omap_hwmod *
2399  *
2400  * Returns the virtual address corresponding to the beginning of the
2401  * module's register target, in the address range that is intended to
2402  * be used by the MPU.  Returns the virtual address upon success or NULL
2403  * upon error.
2404  */
2405 void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
2406 {
2407         if (!oh)
2408                 return NULL;
2409
2410         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2411                 return NULL;
2412
2413         if (oh->_state == _HWMOD_STATE_UNKNOWN)
2414                 return NULL;
2415
2416         return oh->_mpu_rt_va;
2417 }
2418
2419 /**
2420  * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
2421  * @oh: struct omap_hwmod *
2422  * @init_oh: struct omap_hwmod * (initiator)
2423  *
2424  * Add a sleep dependency between the initiator @init_oh and @oh.
2425  * Intended to be called by DSP/Bridge code via platform_data for the
2426  * DSP case; and by the DMA code in the sDMA case.  DMA code, *Bridge
2427  * code needs to add/del initiator dependencies dynamically
2428  * before/after accessing a device.  Returns the return value from
2429  * _add_initiator_dep().
2430  *
2431  * XXX Keep a usecount in the clockdomain code
2432  */
2433 int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
2434                                  struct omap_hwmod *init_oh)
2435 {
2436         return _add_initiator_dep(oh, init_oh);
2437 }
2438
2439 /*
2440  * XXX what about functions for drivers to save/restore ocp_sysconfig
2441  * for context save/restore operations?
2442  */
2443
2444 /**
2445  * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
2446  * @oh: struct omap_hwmod *
2447  * @init_oh: struct omap_hwmod * (initiator)
2448  *
2449  * Remove a sleep dependency between the initiator @init_oh and @oh.
2450  * Intended to be called by DSP/Bridge code via platform_data for the
2451  * DSP case; and by the DMA code in the sDMA case.  DMA code, *Bridge
2452  * code needs to add/del initiator dependencies dynamically
2453  * before/after accessing a device.  Returns the return value from
2454  * _del_initiator_dep().
2455  *
2456  * XXX Keep a usecount in the clockdomain code
2457  */
2458 int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
2459                                  struct omap_hwmod *init_oh)
2460 {
2461         return _del_initiator_dep(oh, init_oh);
2462 }
2463
2464 /**
2465  * omap_hwmod_enable_wakeup - allow device to wake up the system
2466  * @oh: struct omap_hwmod *
2467  *
2468  * Sets the module OCP socket ENAWAKEUP bit to allow the module to
2469  * send wakeups to the PRCM.  Eventually this should sets PRCM wakeup
2470  * registers to cause the PRCM to receive wakeup events from the
2471  * module.  Does not set any wakeup routing registers beyond this
2472  * point - if the module is to wake up any other module or subsystem,
2473  * that must be set separately.  Called by omap_device code.  Returns
2474  * -EINVAL on error or 0 upon success.
2475  */
2476 int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
2477 {
2478         unsigned long flags;
2479         u32 v;
2480
2481         if (!oh->class->sysc ||
2482             !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
2483                 return -EINVAL;
2484
2485         spin_lock_irqsave(&oh->_lock, flags);
2486         v = oh->_sysc_cache;
2487         _enable_wakeup(oh, &v);
2488         _write_sysconfig(v, oh);
2489         spin_unlock_irqrestore(&oh->_lock, flags);
2490
2491         return 0;
2492 }
2493
2494 /**
2495  * omap_hwmod_disable_wakeup - prevent device from waking the system
2496  * @oh: struct omap_hwmod *
2497  *
2498  * Clears the module OCP socket ENAWAKEUP bit to prevent the module
2499  * from sending wakeups to the PRCM.  Eventually this should clear
2500  * PRCM wakeup registers to cause the PRCM to ignore wakeup events
2501  * from the module.  Does not set any wakeup routing registers beyond
2502  * this point - if the module is to wake up any other module or
2503  * subsystem, that must be set separately.  Called by omap_device
2504  * code.  Returns -EINVAL on error or 0 upon success.
2505  */
2506 int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
2507 {
2508         unsigned long flags;
2509         u32 v;
2510
2511         if (!oh->class->sysc ||
2512             !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
2513                 return -EINVAL;
2514
2515         spin_lock_irqsave(&oh->_lock, flags);
2516         v = oh->_sysc_cache;
2517         _disable_wakeup(oh, &v);
2518         _write_sysconfig(v, oh);
2519         spin_unlock_irqrestore(&oh->_lock, flags);
2520
2521         return 0;
2522 }
2523
2524 /**
2525  * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
2526  * contained in the hwmod module.
2527  * @oh: struct omap_hwmod *
2528  * @name: name of the reset line to lookup and assert
2529  *
2530  * Some IP like dsp, ipu or iva contain processor that require
2531  * an HW reset line to be assert / deassert in order to enable fully
2532  * the IP.  Returns -EINVAL if @oh is null or if the operation is not
2533  * yet supported on this OMAP; otherwise, passes along the return value
2534  * from _assert_hardreset().
2535  */
2536 int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
2537 {
2538         int ret;
2539         unsigned long flags;
2540
2541         if (!oh)
2542                 return -EINVAL;
2543
2544         spin_lock_irqsave(&oh->_lock, flags);
2545         ret = _assert_hardreset(oh, name);
2546         spin_unlock_irqrestore(&oh->_lock, flags);
2547
2548         return ret;
2549 }
2550
2551 /**
2552  * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
2553  * contained in the hwmod module.
2554  * @oh: struct omap_hwmod *
2555  * @name: name of the reset line to look up and deassert
2556  *
2557  * Some IP like dsp, ipu or iva contain processor that require
2558  * an HW reset line to be assert / deassert in order to enable fully
2559  * the IP.  Returns -EINVAL if @oh is null or if the operation is not
2560  * yet supported on this OMAP; otherwise, passes along the return value
2561  * from _deassert_hardreset().
2562  */
2563 int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
2564 {
2565         int ret;
2566         unsigned long flags;
2567
2568         if (!oh)
2569                 return -EINVAL;
2570
2571         spin_lock_irqsave(&oh->_lock, flags);
2572         ret = _deassert_hardreset(oh, name);
2573         spin_unlock_irqrestore(&oh->_lock, flags);
2574
2575         return ret;
2576 }
2577
2578 /**
2579  * omap_hwmod_read_hardreset - read the HW reset line state of submodules
2580  * contained in the hwmod module
2581  * @oh: struct omap_hwmod *
2582  * @name: name of the reset line to look up and read
2583  *
2584  * Return the current state of the hwmod @oh's reset line named @name:
2585  * returns -EINVAL upon parameter error or if this operation
2586  * is unsupported on the current OMAP; otherwise, passes along the return
2587  * value from _read_hardreset().
2588  */
2589 int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
2590 {
2591         int ret;
2592         unsigned long flags;
2593
2594         if (!oh)
2595                 return -EINVAL;
2596
2597         spin_lock_irqsave(&oh->_lock, flags);
2598         ret = _read_hardreset(oh, name);
2599         spin_unlock_irqrestore(&oh->_lock, flags);
2600
2601         return ret;
2602 }
2603
2604
2605 /**
2606  * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
2607  * @classname: struct omap_hwmod_class name to search for
2608  * @fn: callback function pointer to call for each hwmod in class @classname
2609  * @user: arbitrary context data to pass to the callback function
2610  *
2611  * For each omap_hwmod of class @classname, call @fn.
2612  * If the callback function returns something other than
2613  * zero, the iterator is terminated, and the callback function's return
2614  * value is passed back to the caller.  Returns 0 upon success, -EINVAL
2615  * if @classname or @fn are NULL, or passes back the error code from @fn.
2616  */
2617 int omap_hwmod_for_each_by_class(const char *classname,
2618                                  int (*fn)(struct omap_hwmod *oh,
2619                                            void *user),
2620                                  void *user)
2621 {
2622         struct omap_hwmod *temp_oh;
2623         int ret = 0;
2624
2625         if (!classname || !fn)
2626                 return -EINVAL;
2627
2628         pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
2629                  __func__, classname);
2630
2631         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
2632                 if (!strcmp(temp_oh->class->name, classname)) {
2633                         pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
2634                                  __func__, temp_oh->name);
2635                         ret = (*fn)(temp_oh, user);
2636                         if (ret)
2637                                 break;
2638                 }
2639         }
2640
2641         if (ret)
2642                 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
2643                          __func__, ret);
2644
2645         return ret;
2646 }
2647
2648 /**
2649  * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
2650  * @oh: struct omap_hwmod *
2651  * @state: state that _setup() should leave the hwmod in
2652  *
2653  * Sets the hwmod state that @oh will enter at the end of _setup()
2654  * (called by omap_hwmod_setup_*()).  Only valid to call between
2655  * calling omap_hwmod_register() and omap_hwmod_setup_*().  Returns
2656  * 0 upon success or -EINVAL if there is a problem with the arguments
2657  * or if the hwmod is in the wrong state.
2658  */
2659 int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
2660 {
2661         int ret;
2662         unsigned long flags;
2663
2664         if (!oh)
2665                 return -EINVAL;
2666
2667         if (state != _HWMOD_STATE_DISABLED &&
2668             state != _HWMOD_STATE_ENABLED &&
2669             state != _HWMOD_STATE_IDLE)
2670                 return -EINVAL;
2671
2672         spin_lock_irqsave(&oh->_lock, flags);
2673
2674         if (oh->_state != _HWMOD_STATE_REGISTERED) {
2675                 ret = -EINVAL;
2676                 goto ohsps_unlock;
2677         }
2678
2679         oh->_postsetup_state = state;
2680         ret = 0;
2681
2682 ohsps_unlock:
2683         spin_unlock_irqrestore(&oh->_lock, flags);
2684
2685         return ret;
2686 }
2687
2688 /**
2689  * omap_hwmod_get_context_loss_count - get lost context count
2690  * @oh: struct omap_hwmod *
2691  *
2692  * Query the powerdomain of of @oh to get the context loss
2693  * count for this device.
2694  *
2695  * Returns the context loss count of the powerdomain assocated with @oh
2696  * upon success, or zero if no powerdomain exists for @oh.
2697  */
2698 int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
2699 {
2700         struct powerdomain *pwrdm;
2701         int ret = 0;
2702
2703         pwrdm = omap_hwmod_get_pwrdm(oh);
2704         if (pwrdm)
2705                 ret = pwrdm_get_context_loss_count(pwrdm);
2706
2707         return ret;
2708 }
2709
2710 /**
2711  * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
2712  * @oh: struct omap_hwmod *
2713  *
2714  * Prevent the hwmod @oh from being reset during the setup process.
2715  * Intended for use by board-*.c files on boards with devices that
2716  * cannot tolerate being reset.  Must be called before the hwmod has
2717  * been set up.  Returns 0 upon success or negative error code upon
2718  * failure.
2719  */
2720 int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
2721 {
2722         if (!oh)
2723                 return -EINVAL;
2724
2725         if (oh->_state != _HWMOD_STATE_REGISTERED) {
2726                 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
2727                         oh->name);
2728                 return -EINVAL;
2729         }
2730
2731         oh->flags |= HWMOD_INIT_NO_RESET;
2732
2733         return 0;
2734 }