ARM: OMAP2+: hwmod code/clockdomain data: fix 32K sync timer
[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                 clkdm_act = ((oh->clkdm &&
934                               oh->clkdm->flags & CLKDM_ACTIVE_WITH_MPU) ||
935                              (oh->_clk && oh->_clk->clkdm &&
936                               oh->_clk->clkdm->flags & CLKDM_ACTIVE_WITH_MPU));
937                 if (clkdm_act && !(oh->class->sysc->idlemodes &
938                                    (SIDLE_SMART | SIDLE_SMART_WKUP)))
939                         idlemode = HWMOD_IDLEMODE_FORCE;
940                 else
941                         idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
942                                 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
943                 _set_slave_idlemode(oh, idlemode, &v);
944         }
945
946         if (sf & SYSC_HAS_MIDLEMODE) {
947                 if (oh->flags & HWMOD_FORCE_MSTANDBY) {
948                         idlemode = HWMOD_IDLEMODE_FORCE;
949                 } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
950                         idlemode = HWMOD_IDLEMODE_NO;
951                 } else {
952                         if (sf & SYSC_HAS_ENAWAKEUP)
953                                 _enable_wakeup(oh, &v);
954                         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
955                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
956                         else
957                                 idlemode = HWMOD_IDLEMODE_SMART;
958                 }
959                 _set_master_standbymode(oh, idlemode, &v);
960         }
961
962         /*
963          * XXX The clock framework should handle this, by
964          * calling into this code.  But this must wait until the
965          * clock structures are tagged with omap_hwmod entries
966          */
967         if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
968             (sf & SYSC_HAS_CLOCKACTIVITY))
969                 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
970
971         /* If slave is in SMARTIDLE, also enable wakeup */
972         if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
973                 _enable_wakeup(oh, &v);
974
975         _write_sysconfig(v, oh);
976
977         /*
978          * Set the autoidle bit only after setting the smartidle bit
979          * Setting this will not have any impact on the other modules.
980          */
981         if (sf & SYSC_HAS_AUTOIDLE) {
982                 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
983                         0 : 1;
984                 _set_module_autoidle(oh, idlemode, &v);
985                 _write_sysconfig(v, oh);
986         }
987 }
988
989 /**
990  * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
991  * @oh: struct omap_hwmod *
992  *
993  * If module is marked as SWSUP_SIDLE, force the module into slave
994  * idle; otherwise, configure it for smart-idle.  If module is marked
995  * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
996  * configure it for smart-standby.  No return value.
997  */
998 static void _idle_sysc(struct omap_hwmod *oh)
999 {
1000         u8 idlemode, sf;
1001         u32 v;
1002
1003         if (!oh->class->sysc)
1004                 return;
1005
1006         v = oh->_sysc_cache;
1007         sf = oh->class->sysc->sysc_flags;
1008
1009         if (sf & SYSC_HAS_SIDLEMODE) {
1010                 /* XXX What about HWMOD_IDLEMODE_SMART_WKUP? */
1011                 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1012                     !(oh->class->sysc->idlemodes &
1013                       (SIDLE_SMART | SIDLE_SMART_WKUP)))
1014                         idlemode = HWMOD_IDLEMODE_FORCE;
1015                 else
1016                         idlemode = HWMOD_IDLEMODE_SMART;
1017                 _set_slave_idlemode(oh, idlemode, &v);
1018         }
1019
1020         if (sf & SYSC_HAS_MIDLEMODE) {
1021                 if ((oh->flags & HWMOD_SWSUP_MSTANDBY) ||
1022                     (oh->flags & HWMOD_FORCE_MSTANDBY)) {
1023                         idlemode = HWMOD_IDLEMODE_FORCE;
1024                 } else {
1025                         if (sf & SYSC_HAS_ENAWAKEUP)
1026                                 _enable_wakeup(oh, &v);
1027                         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1028                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1029                         else
1030                                 idlemode = HWMOD_IDLEMODE_SMART;
1031                 }
1032                 _set_master_standbymode(oh, idlemode, &v);
1033         }
1034
1035         /* If slave is in SMARTIDLE, also enable wakeup */
1036         if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
1037                 _enable_wakeup(oh, &v);
1038
1039         _write_sysconfig(v, oh);
1040 }
1041
1042 /**
1043  * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
1044  * @oh: struct omap_hwmod *
1045  *
1046  * Force the module into slave idle and master suspend. No return
1047  * value.
1048  */
1049 static void _shutdown_sysc(struct omap_hwmod *oh)
1050 {
1051         u32 v;
1052         u8 sf;
1053
1054         if (!oh->class->sysc)
1055                 return;
1056
1057         v = oh->_sysc_cache;
1058         sf = oh->class->sysc->sysc_flags;
1059
1060         if (sf & SYSC_HAS_SIDLEMODE)
1061                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1062
1063         if (sf & SYSC_HAS_MIDLEMODE)
1064                 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1065
1066         if (sf & SYSC_HAS_AUTOIDLE)
1067                 _set_module_autoidle(oh, 1, &v);
1068
1069         _write_sysconfig(v, oh);
1070 }
1071
1072 /**
1073  * _lookup - find an omap_hwmod by name
1074  * @name: find an omap_hwmod by name
1075  *
1076  * Return a pointer to an omap_hwmod by name, or NULL if not found.
1077  */
1078 static struct omap_hwmod *_lookup(const char *name)
1079 {
1080         struct omap_hwmod *oh, *temp_oh;
1081
1082         oh = NULL;
1083
1084         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1085                 if (!strcmp(name, temp_oh->name)) {
1086                         oh = temp_oh;
1087                         break;
1088                 }
1089         }
1090
1091         return oh;
1092 }
1093 /**
1094  * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1095  * @oh: struct omap_hwmod *
1096  *
1097  * Convert a clockdomain name stored in a struct omap_hwmod into a
1098  * clockdomain pointer, and save it into the struct omap_hwmod.
1099  * return -EINVAL if clkdm_name does not exist or if the lookup failed.
1100  */
1101 static int _init_clkdm(struct omap_hwmod *oh)
1102 {
1103         if (cpu_is_omap24xx() || cpu_is_omap34xx())
1104                 return 0;
1105
1106         if (!oh->clkdm_name) {
1107                 pr_warning("omap_hwmod: %s: no clkdm_name\n", oh->name);
1108                 return -EINVAL;
1109         }
1110
1111         oh->clkdm = clkdm_lookup(oh->clkdm_name);
1112         if (!oh->clkdm) {
1113                 pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n",
1114                         oh->name, oh->clkdm_name);
1115                 return -EINVAL;
1116         }
1117
1118         pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1119                 oh->name, oh->clkdm_name);
1120
1121         return 0;
1122 }
1123
1124 /**
1125  * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1126  * well the clockdomain.
1127  * @oh: struct omap_hwmod *
1128  * @data: not used; pass NULL
1129  *
1130  * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
1131  * Resolves all clock names embedded in the hwmod.  Returns 0 on
1132  * success, or a negative error code on failure.
1133  */
1134 static int _init_clocks(struct omap_hwmod *oh, void *data)
1135 {
1136         int ret = 0;
1137
1138         if (oh->_state != _HWMOD_STATE_REGISTERED)
1139                 return 0;
1140
1141         pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1142
1143         ret |= _init_main_clk(oh);
1144         ret |= _init_interface_clks(oh);
1145         ret |= _init_opt_clks(oh);
1146         ret |= _init_clkdm(oh);
1147
1148         if (!ret)
1149                 oh->_state = _HWMOD_STATE_CLKS_INITED;
1150         else
1151                 pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
1152
1153         return ret;
1154 }
1155
1156 /**
1157  * _wait_target_ready - wait for a module to leave slave idle
1158  * @oh: struct omap_hwmod *
1159  *
1160  * Wait for a module @oh to leave slave idle.  Returns 0 if the module
1161  * does not have an IDLEST bit or if the module successfully leaves
1162  * slave idle; otherwise, pass along the return value of the
1163  * appropriate *_cm*_wait_module_ready() function.
1164  */
1165 static int _wait_target_ready(struct omap_hwmod *oh)
1166 {
1167         struct omap_hwmod_ocp_if *os;
1168         int ret;
1169
1170         if (!oh)
1171                 return -EINVAL;
1172
1173         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1174                 return 0;
1175
1176         os = oh->slaves[oh->_mpu_port_index];
1177
1178         if (oh->flags & HWMOD_NO_IDLEST)
1179                 return 0;
1180
1181         /* XXX check module SIDLEMODE */
1182
1183         /* XXX check clock enable states */
1184
1185         if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1186                 ret = omap2_cm_wait_module_ready(oh->prcm.omap2.module_offs,
1187                                                  oh->prcm.omap2.idlest_reg_id,
1188                                                  oh->prcm.omap2.idlest_idle_bit);
1189         } else if (cpu_is_omap44xx()) {
1190                 if (!oh->clkdm)
1191                         return -EINVAL;
1192
1193                 ret = omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition,
1194                                                      oh->clkdm->cm_inst,
1195                                                      oh->clkdm->clkdm_offs,
1196                                                      oh->prcm.omap4.clkctrl_offs);
1197         } else {
1198                 BUG();
1199         };
1200
1201         return ret;
1202 }
1203
1204 /**
1205  * _wait_target_disable - wait for a module to be disabled
1206  * @oh: struct omap_hwmod *
1207  *
1208  * Wait for a module @oh to enter slave idle.  Returns 0 if the module
1209  * does not have an IDLEST bit or if the module successfully enters
1210  * slave idle; otherwise, pass along the return value of the
1211  * appropriate *_cm*_wait_module_idle() function.
1212  */
1213 static int _wait_target_disable(struct omap_hwmod *oh)
1214 {
1215         /* TODO: For now just handle OMAP4+ */
1216         if (cpu_is_omap24xx() || cpu_is_omap34xx())
1217                 return 0;
1218
1219         if (!oh)
1220                 return -EINVAL;
1221
1222         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1223                 return 0;
1224
1225         if (oh->flags & HWMOD_NO_IDLEST)
1226                 return 0;
1227
1228         return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition,
1229                                              oh->clkdm->cm_inst,
1230                                              oh->clkdm->clkdm_offs,
1231                                              oh->prcm.omap4.clkctrl_offs);
1232 }
1233
1234 /**
1235  * _lookup_hardreset - fill register bit info for this hwmod/reset line
1236  * @oh: struct omap_hwmod *
1237  * @name: name of the reset line in the context of this hwmod
1238  * @ohri: struct omap_hwmod_rst_info * that this function will fill in
1239  *
1240  * Return the bit position of the reset line that match the
1241  * input name. Return -ENOENT if not found.
1242  */
1243 static u8 _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1244                             struct omap_hwmod_rst_info *ohri)
1245 {
1246         int i;
1247
1248         for (i = 0; i < oh->rst_lines_cnt; i++) {
1249                 const char *rst_line = oh->rst_lines[i].name;
1250                 if (!strcmp(rst_line, name)) {
1251                         ohri->rst_shift = oh->rst_lines[i].rst_shift;
1252                         ohri->st_shift = oh->rst_lines[i].st_shift;
1253                         pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1254                                  oh->name, __func__, rst_line, ohri->rst_shift,
1255                                  ohri->st_shift);
1256
1257                         return 0;
1258                 }
1259         }
1260
1261         return -ENOENT;
1262 }
1263
1264 /**
1265  * _assert_hardreset - assert the HW reset line of submodules
1266  * contained in the hwmod module.
1267  * @oh: struct omap_hwmod *
1268  * @name: name of the reset line to lookup and assert
1269  *
1270  * Some IP like dsp, ipu or iva contain processor that require
1271  * an HW reset line to be assert / deassert in order to enable fully
1272  * the IP.
1273  */
1274 static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1275 {
1276         struct omap_hwmod_rst_info ohri;
1277         u8 ret;
1278
1279         if (!oh)
1280                 return -EINVAL;
1281
1282         ret = _lookup_hardreset(oh, name, &ohri);
1283         if (IS_ERR_VALUE(ret))
1284                 return ret;
1285
1286         if (cpu_is_omap24xx() || cpu_is_omap34xx())
1287                 return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
1288                                                   ohri.rst_shift);
1289         else if (cpu_is_omap44xx())
1290                 return omap4_prminst_assert_hardreset(ohri.rst_shift,
1291                                   oh->clkdm->pwrdm.ptr->prcm_partition,
1292                                   oh->clkdm->pwrdm.ptr->prcm_offs,
1293                                   oh->prcm.omap4.rstctrl_offs);
1294         else
1295                 return -EINVAL;
1296 }
1297
1298 /**
1299  * _deassert_hardreset - deassert the HW reset line of submodules contained
1300  * in the hwmod module.
1301  * @oh: struct omap_hwmod *
1302  * @name: name of the reset line to look up and deassert
1303  *
1304  * Some IP like dsp, ipu or iva contain processor that require
1305  * an HW reset line to be assert / deassert in order to enable fully
1306  * the IP.
1307  */
1308 static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1309 {
1310         struct omap_hwmod_rst_info ohri;
1311         int ret;
1312
1313         if (!oh)
1314                 return -EINVAL;
1315
1316         ret = _lookup_hardreset(oh, name, &ohri);
1317         if (IS_ERR_VALUE(ret))
1318                 return ret;
1319
1320         if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1321                 ret = omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
1322                                                    ohri.rst_shift,
1323                                                    ohri.st_shift);
1324         } else if (cpu_is_omap44xx()) {
1325                 if (ohri.st_shift)
1326                         pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
1327                                oh->name, name);
1328                 ret = omap4_prminst_deassert_hardreset(ohri.rst_shift,
1329                                   oh->clkdm->pwrdm.ptr->prcm_partition,
1330                                   oh->clkdm->pwrdm.ptr->prcm_offs,
1331                                   oh->prcm.omap4.rstctrl_offs);
1332         } else {
1333                 return -EINVAL;
1334         }
1335
1336         if (ret == -EBUSY)
1337                 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1338
1339         return ret;
1340 }
1341
1342 /**
1343  * _read_hardreset - read the HW reset line state of submodules
1344  * contained in the hwmod module
1345  * @oh: struct omap_hwmod *
1346  * @name: name of the reset line to look up and read
1347  *
1348  * Return the state of the reset line.
1349  */
1350 static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1351 {
1352         struct omap_hwmod_rst_info ohri;
1353         u8 ret;
1354
1355         if (!oh)
1356                 return -EINVAL;
1357
1358         ret = _lookup_hardreset(oh, name, &ohri);
1359         if (IS_ERR_VALUE(ret))
1360                 return ret;
1361
1362         if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1363                 return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
1364                                                        ohri.st_shift);
1365         } else if (cpu_is_omap44xx()) {
1366                 return omap4_prminst_is_hardreset_asserted(ohri.rst_shift,
1367                                   oh->clkdm->pwrdm.ptr->prcm_partition,
1368                                   oh->clkdm->pwrdm.ptr->prcm_offs,
1369                                   oh->prcm.omap4.rstctrl_offs);
1370         } else {
1371                 return -EINVAL;
1372         }
1373 }
1374
1375 /**
1376  * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
1377  * @oh: struct omap_hwmod *
1378  *
1379  * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit.  hwmod must be
1380  * enabled for this to work.  Returns -EINVAL if the hwmod cannot be
1381  * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if
1382  * the module did not reset in time, or 0 upon success.
1383  *
1384  * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
1385  * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
1386  * use the SYSCONFIG softreset bit to provide the status.
1387  *
1388  * Note that some IP like McBSP do have reset control but don't have
1389  * reset status.
1390  */
1391 static int _ocp_softreset(struct omap_hwmod *oh)
1392 {
1393         u32 v;
1394         int c = 0;
1395         int ret = 0;
1396
1397         if (!oh->class->sysc ||
1398             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
1399                 return -EINVAL;
1400
1401         /* clocks must be on for this operation */
1402         if (oh->_state != _HWMOD_STATE_ENABLED) {
1403                 pr_warning("omap_hwmod: %s: reset can only be entered from "
1404                            "enabled state\n", oh->name);
1405                 return -EINVAL;
1406         }
1407
1408         /* For some modules, all optionnal clocks need to be enabled as well */
1409         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1410                 _enable_optional_clocks(oh);
1411
1412         pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
1413
1414         v = oh->_sysc_cache;
1415         ret = _set_softreset(oh, &v);
1416         if (ret)
1417                 goto dis_opt_clks;
1418
1419         _write_sysconfig(v, oh);
1420         ret = _clear_softreset(oh, &v);
1421         if (ret)
1422                 goto dis_opt_clks;
1423
1424         _write_sysconfig(v, oh);
1425
1426         if (oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
1427                 omap_test_timeout((omap_hwmod_read(oh,
1428                                                     oh->class->sysc->syss_offs)
1429                                    & SYSS_RESETDONE_MASK),
1430                                   MAX_MODULE_SOFTRESET_WAIT, c);
1431         else if (oh->class->sysc->sysc_flags & SYSC_HAS_RESET_STATUS)
1432                 omap_test_timeout(!(omap_hwmod_read(oh,
1433                                                      oh->class->sysc->sysc_offs)
1434                                    & SYSC_TYPE2_SOFTRESET_MASK),
1435                                   MAX_MODULE_SOFTRESET_WAIT, c);
1436
1437         if (c == MAX_MODULE_SOFTRESET_WAIT)
1438                 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1439                            oh->name, MAX_MODULE_SOFTRESET_WAIT);
1440         else
1441                 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
1442
1443         /*
1444          * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1445          * _wait_target_ready() or _reset()
1446          */
1447
1448         ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
1449
1450 dis_opt_clks:
1451         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1452                 _disable_optional_clocks(oh);
1453
1454         return ret;
1455 }
1456
1457 /**
1458  * _reset - reset an omap_hwmod
1459  * @oh: struct omap_hwmod *
1460  *
1461  * Resets an omap_hwmod @oh.  The default software reset mechanism for
1462  * most OMAP IP blocks is triggered via the OCP_SYSCONFIG.SOFTRESET
1463  * bit.  However, some hwmods cannot be reset via this method: some
1464  * are not targets and therefore have no OCP header registers to
1465  * access; others (like the IVA) have idiosyncratic reset sequences.
1466  * So for these relatively rare cases, custom reset code can be
1467  * supplied in the struct omap_hwmod_class .reset function pointer.
1468  * Passes along the return value from either _reset() or the custom
1469  * reset function - these must return -EINVAL if the hwmod cannot be
1470  * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if
1471  * the module did not reset in time, or 0 upon success.
1472  */
1473 static int _reset(struct omap_hwmod *oh)
1474 {
1475         int ret;
1476
1477         pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1478
1479         ret = (oh->class->reset) ? oh->class->reset(oh) : _ocp_softreset(oh);
1480
1481         return ret;
1482 }
1483
1484 /**
1485  * _enable - enable an omap_hwmod
1486  * @oh: struct omap_hwmod *
1487  *
1488  * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
1489  * register target.  Returns -EINVAL if the hwmod is in the wrong
1490  * state or passes along the return value of _wait_target_ready().
1491  */
1492 static int _enable(struct omap_hwmod *oh)
1493 {
1494         int r;
1495         int hwsup = 0;
1496
1497         pr_debug("omap_hwmod: %s: enabling\n", oh->name);
1498
1499         if (oh->_state != _HWMOD_STATE_INITIALIZED &&
1500             oh->_state != _HWMOD_STATE_IDLE &&
1501             oh->_state != _HWMOD_STATE_DISABLED) {
1502                 WARN(1, "omap_hwmod: %s: enabled state can only be entered "
1503                      "from initialized, idle, or disabled state\n", oh->name);
1504                 return -EINVAL;
1505         }
1506
1507
1508         /*
1509          * If an IP contains only one HW reset line, then de-assert it in order
1510          * to allow the module state transition. Otherwise the PRCM will return
1511          * Intransition status, and the init will failed.
1512          */
1513         if ((oh->_state == _HWMOD_STATE_INITIALIZED ||
1514              oh->_state == _HWMOD_STATE_DISABLED) && oh->rst_lines_cnt == 1)
1515                 _deassert_hardreset(oh, oh->rst_lines[0].name);
1516
1517         /* Mux pins for device runtime if populated */
1518         if (oh->mux && (!oh->mux->enabled ||
1519                         ((oh->_state == _HWMOD_STATE_IDLE) &&
1520                          oh->mux->pads_dynamic)))
1521                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
1522
1523         _add_initiator_dep(oh, mpu_oh);
1524
1525         if (oh->clkdm) {
1526                 /*
1527                  * A clockdomain must be in SW_SUP before enabling
1528                  * completely the module. The clockdomain can be set
1529                  * in HW_AUTO only when the module become ready.
1530                  */
1531                 hwsup = clkdm_in_hwsup(oh->clkdm);
1532                 r = clkdm_hwmod_enable(oh->clkdm, oh);
1533                 if (r) {
1534                         WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1535                              oh->name, oh->clkdm->name, r);
1536                         return r;
1537                 }
1538         }
1539
1540         _enable_clocks(oh);
1541         _enable_module(oh);
1542
1543         r = _wait_target_ready(oh);
1544         if (!r) {
1545                 /*
1546                  * Set the clockdomain to HW_AUTO only if the target is ready,
1547                  * assuming that the previous state was HW_AUTO
1548                  */
1549                 if (oh->clkdm && hwsup)
1550                         clkdm_allow_idle(oh->clkdm);
1551
1552                 oh->_state = _HWMOD_STATE_ENABLED;
1553
1554                 /* Access the sysconfig only if the target is ready */
1555                 if (oh->class->sysc) {
1556                         if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
1557                                 _update_sysc_cache(oh);
1558                         _enable_sysc(oh);
1559                 }
1560         } else {
1561                 _disable_clocks(oh);
1562                 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
1563                          oh->name, r);
1564
1565                 if (oh->clkdm)
1566                         clkdm_hwmod_disable(oh->clkdm, oh);
1567         }
1568
1569         return r;
1570 }
1571
1572 /**
1573  * _idle - idle an omap_hwmod
1574  * @oh: struct omap_hwmod *
1575  *
1576  * Idles an omap_hwmod @oh.  This should be called once the hwmod has
1577  * no further work.  Returns -EINVAL if the hwmod is in the wrong
1578  * state or returns 0.
1579  */
1580 static int _idle(struct omap_hwmod *oh)
1581 {
1582         int ret;
1583
1584         pr_debug("omap_hwmod: %s: idling\n", oh->name);
1585
1586         if (oh->_state != _HWMOD_STATE_ENABLED) {
1587                 WARN(1, "omap_hwmod: %s: idle state can only be entered from "
1588                      "enabled state\n", oh->name);
1589                 return -EINVAL;
1590         }
1591
1592         if (oh->class->sysc)
1593                 _idle_sysc(oh);
1594         _del_initiator_dep(oh, mpu_oh);
1595         _disable_module(oh);
1596         ret = _wait_target_disable(oh);
1597         if (ret)
1598                 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1599                         oh->name);
1600         /*
1601          * The module must be in idle mode before disabling any parents
1602          * clocks. Otherwise, the parent clock might be disabled before
1603          * the module transition is done, and thus will prevent the
1604          * transition to complete properly.
1605          */
1606         _disable_clocks(oh);
1607         if (oh->clkdm)
1608                 clkdm_hwmod_disable(oh->clkdm, oh);
1609
1610         /* Mux pins for device idle if populated */
1611         if (oh->mux && oh->mux->pads_dynamic)
1612                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
1613
1614         oh->_state = _HWMOD_STATE_IDLE;
1615
1616         return 0;
1617 }
1618
1619 /**
1620  * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit
1621  * @oh: struct omap_hwmod *
1622  * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
1623  *
1624  * Sets the IP block's OCP autoidle bit in hardware, and updates our
1625  * local copy. Intended to be used by drivers that require
1626  * direct manipulation of the AUTOIDLE bits.
1627  * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes
1628  * along the return value from _set_module_autoidle().
1629  *
1630  * Any users of this function should be scrutinized carefully.
1631  */
1632 int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle)
1633 {
1634         u32 v;
1635         int retval = 0;
1636         unsigned long flags;
1637
1638         if (!oh || oh->_state != _HWMOD_STATE_ENABLED)
1639                 return -EINVAL;
1640
1641         spin_lock_irqsave(&oh->_lock, flags);
1642
1643         v = oh->_sysc_cache;
1644
1645         retval = _set_module_autoidle(oh, autoidle, &v);
1646
1647         if (!retval)
1648                 _write_sysconfig(v, oh);
1649
1650         spin_unlock_irqrestore(&oh->_lock, flags);
1651
1652         return retval;
1653 }
1654
1655 /**
1656  * _shutdown - shutdown an omap_hwmod
1657  * @oh: struct omap_hwmod *
1658  *
1659  * Shut down an omap_hwmod @oh.  This should be called when the driver
1660  * used for the hwmod is removed or unloaded or if the driver is not
1661  * used by the system.  Returns -EINVAL if the hwmod is in the wrong
1662  * state or returns 0.
1663  */
1664 static int _shutdown(struct omap_hwmod *oh)
1665 {
1666         int ret;
1667         u8 prev_state;
1668
1669         if (oh->_state != _HWMOD_STATE_IDLE &&
1670             oh->_state != _HWMOD_STATE_ENABLED) {
1671                 WARN(1, "omap_hwmod: %s: disabled state can only be entered "
1672                      "from idle, or enabled state\n", oh->name);
1673                 return -EINVAL;
1674         }
1675
1676         pr_debug("omap_hwmod: %s: disabling\n", oh->name);
1677
1678         if (oh->class->pre_shutdown) {
1679                 prev_state = oh->_state;
1680                 if (oh->_state == _HWMOD_STATE_IDLE)
1681                         _enable(oh);
1682                 ret = oh->class->pre_shutdown(oh);
1683                 if (ret) {
1684                         if (prev_state == _HWMOD_STATE_IDLE)
1685                                 _idle(oh);
1686                         return ret;
1687                 }
1688         }
1689
1690         if (oh->class->sysc) {
1691                 if (oh->_state == _HWMOD_STATE_IDLE)
1692                         _enable(oh);
1693                 _shutdown_sysc(oh);
1694         }
1695
1696         /* clocks and deps are already disabled in idle */
1697         if (oh->_state == _HWMOD_STATE_ENABLED) {
1698                 _del_initiator_dep(oh, mpu_oh);
1699                 /* XXX what about the other system initiators here? dma, dsp */
1700                 _disable_module(oh);
1701                 ret = _wait_target_disable(oh);
1702                 if (ret)
1703                         pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1704                                 oh->name);
1705                 _disable_clocks(oh);
1706                 if (oh->clkdm)
1707                         clkdm_hwmod_disable(oh->clkdm, oh);
1708         }
1709         /* XXX Should this code also force-disable the optional clocks? */
1710
1711         /*
1712          * If an IP contains only one HW reset line, then assert it
1713          * after disabling the clocks and before shutting down the IP.
1714          */
1715         if (oh->rst_lines_cnt == 1)
1716                 _assert_hardreset(oh, oh->rst_lines[0].name);
1717
1718         /* Mux pins to safe mode or use populated off mode values */
1719         if (oh->mux)
1720                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
1721
1722         oh->_state = _HWMOD_STATE_DISABLED;
1723
1724         return 0;
1725 }
1726
1727 /**
1728  * _setup - do initial configuration of omap_hwmod
1729  * @oh: struct omap_hwmod *
1730  *
1731  * Writes the CLOCKACTIVITY bits @clockact to the hwmod @oh
1732  * OCP_SYSCONFIG register.  Returns 0.
1733  */
1734 static int _setup(struct omap_hwmod *oh, void *data)
1735 {
1736         int i, r;
1737         u8 postsetup_state;
1738
1739         if (oh->_state != _HWMOD_STATE_CLKS_INITED)
1740                 return 0;
1741
1742         /* Set iclk autoidle mode */
1743         if (oh->slaves_cnt > 0) {
1744                 for (i = 0; i < oh->slaves_cnt; i++) {
1745                         struct omap_hwmod_ocp_if *os = oh->slaves[i];
1746                         struct clk *c = os->_clk;
1747
1748                         if (!c)
1749                                 continue;
1750
1751                         if (os->flags & OCPIF_SWSUP_IDLE) {
1752                                 /* XXX omap_iclk_deny_idle(c); */
1753                         } else {
1754                                 /* XXX omap_iclk_allow_idle(c); */
1755                                 clk_enable(c);
1756                         }
1757                 }
1758         }
1759
1760         oh->_state = _HWMOD_STATE_INITIALIZED;
1761
1762         /*
1763          * In the case of hwmod with hardreset that should not be
1764          * de-assert at boot time, we have to keep the module
1765          * initialized, because we cannot enable it properly with the
1766          * reset asserted. Exit without warning because that behavior is
1767          * expected.
1768          */
1769         if ((oh->flags & HWMOD_INIT_NO_RESET) && oh->rst_lines_cnt == 1)
1770                 return 0;
1771
1772         r = _enable(oh);
1773         if (r) {
1774                 pr_warning("omap_hwmod: %s: cannot be enabled (%d)\n",
1775                            oh->name, oh->_state);
1776                 return 0;
1777         }
1778
1779         if (!(oh->flags & HWMOD_INIT_NO_RESET)) {
1780                 _reset(oh);
1781
1782                 /*
1783                  * OCP_SYSCONFIG bits need to be reprogrammed after a softreset.
1784                  * The _enable() function should be split to
1785                  * avoid the rewrite of the OCP_SYSCONFIG register.
1786                  */
1787                 if (oh->class->sysc) {
1788                         _update_sysc_cache(oh);
1789                         _enable_sysc(oh);
1790                 }
1791         }
1792
1793         postsetup_state = oh->_postsetup_state;
1794         if (postsetup_state == _HWMOD_STATE_UNKNOWN)
1795                 postsetup_state = _HWMOD_STATE_ENABLED;
1796
1797         /*
1798          * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
1799          * it should be set by the core code as a runtime flag during startup
1800          */
1801         if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
1802             (postsetup_state == _HWMOD_STATE_IDLE))
1803                 postsetup_state = _HWMOD_STATE_ENABLED;
1804
1805         if (postsetup_state == _HWMOD_STATE_IDLE)
1806                 _idle(oh);
1807         else if (postsetup_state == _HWMOD_STATE_DISABLED)
1808                 _shutdown(oh);
1809         else if (postsetup_state != _HWMOD_STATE_ENABLED)
1810                 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
1811                      oh->name, postsetup_state);
1812
1813         return 0;
1814 }
1815
1816 /**
1817  * _register - register a struct omap_hwmod
1818  * @oh: struct omap_hwmod *
1819  *
1820  * Registers the omap_hwmod @oh.  Returns -EEXIST if an omap_hwmod
1821  * already has been registered by the same name; -EINVAL if the
1822  * omap_hwmod is in the wrong state, if @oh is NULL, if the
1823  * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
1824  * name, or if the omap_hwmod's class is missing a name; or 0 upon
1825  * success.
1826  *
1827  * XXX The data should be copied into bootmem, so the original data
1828  * should be marked __initdata and freed after init.  This would allow
1829  * unneeded omap_hwmods to be freed on multi-OMAP configurations.  Note
1830  * that the copy process would be relatively complex due to the large number
1831  * of substructures.
1832  */
1833 static int __init _register(struct omap_hwmod *oh)
1834 {
1835         int ms_id;
1836
1837         if (!oh || !oh->name || !oh->class || !oh->class->name ||
1838             (oh->_state != _HWMOD_STATE_UNKNOWN))
1839                 return -EINVAL;
1840
1841         pr_debug("omap_hwmod: %s: registering\n", oh->name);
1842
1843         if (_lookup(oh->name))
1844                 return -EEXIST;
1845
1846         ms_id = _find_mpu_port_index(oh);
1847         if (!IS_ERR_VALUE(ms_id))
1848                 oh->_mpu_port_index = ms_id;
1849         else
1850                 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
1851
1852         list_add_tail(&oh->node, &omap_hwmod_list);
1853
1854         spin_lock_init(&oh->_lock);
1855
1856         oh->_state = _HWMOD_STATE_REGISTERED;
1857
1858         /*
1859          * XXX Rather than doing a strcmp(), this should test a flag
1860          * set in the hwmod data, inserted by the autogenerator code.
1861          */
1862         if (!strcmp(oh->name, MPU_INITIATOR_NAME))
1863                 mpu_oh = oh;
1864
1865         return 0;
1866 }
1867
1868
1869 /* Public functions */
1870
1871 u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
1872 {
1873         if (oh->flags & HWMOD_16BIT_REG)
1874                 return __raw_readw(oh->_mpu_rt_va + reg_offs);
1875         else
1876                 return __raw_readl(oh->_mpu_rt_va + reg_offs);
1877 }
1878
1879 void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
1880 {
1881         if (oh->flags & HWMOD_16BIT_REG)
1882                 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
1883         else
1884                 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
1885 }
1886
1887 /**
1888  * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
1889  * @oh: struct omap_hwmod *
1890  *
1891  * This is a public function exposed to drivers. Some drivers may need to do
1892  * some settings before and after resetting the device.  Those drivers after
1893  * doing the necessary settings could use this function to start a reset by
1894  * setting the SYSCONFIG.SOFTRESET bit.
1895  */
1896 int omap_hwmod_softreset(struct omap_hwmod *oh)
1897 {
1898         u32 v;
1899         int ret;
1900
1901         if (!oh || !(oh->_sysc_cache))
1902                 return -EINVAL;
1903
1904         v = oh->_sysc_cache;
1905         ret = _set_softreset(oh, &v);
1906         if (ret)
1907                 goto error;
1908         _write_sysconfig(v, oh);
1909
1910         ret = _clear_softreset(oh, &v);
1911         if (ret)
1912                 goto error;
1913         _write_sysconfig(v, oh);
1914
1915 error:
1916         return ret;
1917 }
1918
1919 /**
1920  * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode
1921  * @oh: struct omap_hwmod *
1922  * @idlemode: SIDLEMODE field bits (shifted to bit 0)
1923  *
1924  * Sets the IP block's OCP slave idlemode in hardware, and updates our
1925  * local copy.  Intended to be used by drivers that have some erratum
1926  * that requires direct manipulation of the SIDLEMODE bits.  Returns
1927  * -EINVAL if @oh is null, or passes along the return value from
1928  * _set_slave_idlemode().
1929  *
1930  * XXX Does this function have any current users?  If not, we should
1931  * remove it; it is better to let the rest of the hwmod code handle this.
1932  * Any users of this function should be scrutinized carefully.
1933  */
1934 int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode)
1935 {
1936         u32 v;
1937         int retval = 0;
1938
1939         if (!oh)
1940                 return -EINVAL;
1941
1942         v = oh->_sysc_cache;
1943
1944         retval = _set_slave_idlemode(oh, idlemode, &v);
1945         if (!retval)
1946                 _write_sysconfig(v, oh);
1947
1948         return retval;
1949 }
1950
1951 /**
1952  * omap_hwmod_lookup - look up a registered omap_hwmod by name
1953  * @name: name of the omap_hwmod to look up
1954  *
1955  * Given a @name of an omap_hwmod, return a pointer to the registered
1956  * struct omap_hwmod *, or NULL upon error.
1957  */
1958 struct omap_hwmod *omap_hwmod_lookup(const char *name)
1959 {
1960         struct omap_hwmod *oh;
1961
1962         if (!name)
1963                 return NULL;
1964
1965         oh = _lookup(name);
1966
1967         return oh;
1968 }
1969
1970 /**
1971  * omap_hwmod_for_each - call function for each registered omap_hwmod
1972  * @fn: pointer to a callback function
1973  * @data: void * data to pass to callback function
1974  *
1975  * Call @fn for each registered omap_hwmod, passing @data to each
1976  * function.  @fn must return 0 for success or any other value for
1977  * failure.  If @fn returns non-zero, the iteration across omap_hwmods
1978  * will stop and the non-zero return value will be passed to the
1979  * caller of omap_hwmod_for_each().  @fn is called with
1980  * omap_hwmod_for_each() held.
1981  */
1982 int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
1983                         void *data)
1984 {
1985         struct omap_hwmod *temp_oh;
1986         int ret = 0;
1987
1988         if (!fn)
1989                 return -EINVAL;
1990
1991         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1992                 ret = (*fn)(temp_oh, data);
1993                 if (ret)
1994                         break;
1995         }
1996
1997         return ret;
1998 }
1999
2000 /**
2001  * omap_hwmod_register - register an array of hwmods
2002  * @ohs: pointer to an array of omap_hwmods to register
2003  *
2004  * Intended to be called early in boot before the clock framework is
2005  * initialized.  If @ohs is not null, will register all omap_hwmods
2006  * listed in @ohs that are valid for this chip.  Returns 0.
2007  */
2008 int __init omap_hwmod_register(struct omap_hwmod **ohs)
2009 {
2010         int r, i;
2011
2012         if (!ohs)
2013                 return 0;
2014
2015         i = 0;
2016         do {
2017                 r = _register(ohs[i]);
2018                 WARN(r, "omap_hwmod: %s: _register returned %d\n", ohs[i]->name,
2019                      r);
2020         } while (ohs[++i]);
2021
2022         return 0;
2023 }
2024
2025 /*
2026  * _populate_mpu_rt_base - populate the virtual address for a hwmod
2027  *
2028  * Must be called only from omap_hwmod_setup_*() so ioremap works properly.
2029  * Assumes the caller takes care of locking if needed.
2030  */
2031 static int __init _populate_mpu_rt_base(struct omap_hwmod *oh, void *data)
2032 {
2033         if (oh->_state != _HWMOD_STATE_REGISTERED)
2034                 return 0;
2035
2036         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2037                 return 0;
2038
2039         oh->_mpu_rt_va = _find_mpu_rt_base(oh, oh->_mpu_port_index);
2040
2041         return 0;
2042 }
2043
2044 /**
2045  * omap_hwmod_setup_one - set up a single hwmod
2046  * @oh_name: const char * name of the already-registered hwmod to set up
2047  *
2048  * Must be called after omap2_clk_init().  Resolves the struct clk
2049  * names to struct clk pointers for each registered omap_hwmod.  Also
2050  * calls _setup() on each hwmod.  Returns -EINVAL upon error or 0 upon
2051  * success.
2052  */
2053 int __init omap_hwmod_setup_one(const char *oh_name)
2054 {
2055         struct omap_hwmod *oh;
2056         int r;
2057
2058         pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
2059
2060         if (!mpu_oh) {
2061                 pr_err("omap_hwmod: %s: cannot setup_one: MPU initiator hwmod %s not yet registered\n",
2062                        oh_name, MPU_INITIATOR_NAME);
2063                 return -EINVAL;
2064         }
2065
2066         oh = _lookup(oh_name);
2067         if (!oh) {
2068                 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
2069                 return -EINVAL;
2070         }
2071
2072         if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
2073                 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
2074
2075         r = _populate_mpu_rt_base(oh, NULL);
2076         if (IS_ERR_VALUE(r)) {
2077                 WARN(1, "omap_hwmod: %s: couldn't set mpu_rt_base\n", oh_name);
2078                 return -EINVAL;
2079         }
2080
2081         r = _init_clocks(oh, NULL);
2082         if (IS_ERR_VALUE(r)) {
2083                 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh_name);
2084                 return -EINVAL;
2085         }
2086
2087         _setup(oh, NULL);
2088
2089         return 0;
2090 }
2091
2092 /**
2093  * omap_hwmod_setup - do some post-clock framework initialization
2094  *
2095  * Must be called after omap2_clk_init().  Resolves the struct clk names
2096  * to struct clk pointers for each registered omap_hwmod.  Also calls
2097  * _setup() on each hwmod.  Returns 0 upon success.
2098  */
2099 static int __init omap_hwmod_setup_all(void)
2100 {
2101         int r;
2102
2103         if (!mpu_oh) {
2104                 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
2105                        __func__, MPU_INITIATOR_NAME);
2106                 return -EINVAL;
2107         }
2108
2109         r = omap_hwmod_for_each(_populate_mpu_rt_base, NULL);
2110
2111         r = omap_hwmod_for_each(_init_clocks, NULL);
2112         WARN(IS_ERR_VALUE(r),
2113              "omap_hwmod: %s: _init_clocks failed\n", __func__);
2114
2115         omap_hwmod_for_each(_setup, NULL);
2116
2117         return 0;
2118 }
2119 core_initcall(omap_hwmod_setup_all);
2120
2121 /**
2122  * omap_hwmod_enable - enable an omap_hwmod
2123  * @oh: struct omap_hwmod *
2124  *
2125  * Enable an omap_hwmod @oh.  Intended to be called by omap_device_enable().
2126  * Returns -EINVAL on error or passes along the return value from _enable().
2127  */
2128 int omap_hwmod_enable(struct omap_hwmod *oh)
2129 {
2130         int r;
2131         unsigned long flags;
2132
2133         if (!oh)
2134                 return -EINVAL;
2135
2136         spin_lock_irqsave(&oh->_lock, flags);
2137         r = _enable(oh);
2138         spin_unlock_irqrestore(&oh->_lock, flags);
2139
2140         return r;
2141 }
2142
2143 /**
2144  * omap_hwmod_idle - idle an omap_hwmod
2145  * @oh: struct omap_hwmod *
2146  *
2147  * Idle an omap_hwmod @oh.  Intended to be called by omap_device_idle().
2148  * Returns -EINVAL on error or passes along the return value from _idle().
2149  */
2150 int omap_hwmod_idle(struct omap_hwmod *oh)
2151 {
2152         unsigned long flags;
2153
2154         if (!oh)
2155                 return -EINVAL;
2156
2157         spin_lock_irqsave(&oh->_lock, flags);
2158         _idle(oh);
2159         spin_unlock_irqrestore(&oh->_lock, flags);
2160
2161         return 0;
2162 }
2163
2164 /**
2165  * omap_hwmod_shutdown - shutdown an omap_hwmod
2166  * @oh: struct omap_hwmod *
2167  *
2168  * Shutdown an omap_hwmod @oh.  Intended to be called by
2169  * omap_device_shutdown().  Returns -EINVAL on error or passes along
2170  * the return value from _shutdown().
2171  */
2172 int omap_hwmod_shutdown(struct omap_hwmod *oh)
2173 {
2174         unsigned long flags;
2175
2176         if (!oh)
2177                 return -EINVAL;
2178
2179         spin_lock_irqsave(&oh->_lock, flags);
2180         _shutdown(oh);
2181         spin_unlock_irqrestore(&oh->_lock, flags);
2182
2183         return 0;
2184 }
2185
2186 /**
2187  * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
2188  * @oh: struct omap_hwmod *oh
2189  *
2190  * Intended to be called by the omap_device code.
2191  */
2192 int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
2193 {
2194         unsigned long flags;
2195
2196         spin_lock_irqsave(&oh->_lock, flags);
2197         _enable_clocks(oh);
2198         spin_unlock_irqrestore(&oh->_lock, flags);
2199
2200         return 0;
2201 }
2202
2203 /**
2204  * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
2205  * @oh: struct omap_hwmod *oh
2206  *
2207  * Intended to be called by the omap_device code.
2208  */
2209 int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
2210 {
2211         unsigned long flags;
2212
2213         spin_lock_irqsave(&oh->_lock, flags);
2214         _disable_clocks(oh);
2215         spin_unlock_irqrestore(&oh->_lock, flags);
2216
2217         return 0;
2218 }
2219
2220 /**
2221  * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
2222  * @oh: struct omap_hwmod *oh
2223  *
2224  * Intended to be called by drivers and core code when all posted
2225  * writes to a device must complete before continuing further
2226  * execution (for example, after clearing some device IRQSTATUS
2227  * register bits)
2228  *
2229  * XXX what about targets with multiple OCP threads?
2230  */
2231 void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
2232 {
2233         BUG_ON(!oh);
2234
2235         if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
2236                 WARN(1, "omap_device: %s: OCP barrier impossible due to "
2237                       "device configuration\n", oh->name);
2238                 return;
2239         }
2240
2241         /*
2242          * Forces posted writes to complete on the OCP thread handling
2243          * register writes
2244          */
2245         omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
2246 }
2247
2248 /**
2249  * omap_hwmod_reset - reset the hwmod
2250  * @oh: struct omap_hwmod *
2251  *
2252  * Under some conditions, a driver may wish to reset the entire device.
2253  * Called from omap_device code.  Returns -EINVAL on error or passes along
2254  * the return value from _reset().
2255  */
2256 int omap_hwmod_reset(struct omap_hwmod *oh)
2257 {
2258         int r;
2259         unsigned long flags;
2260
2261         if (!oh)
2262                 return -EINVAL;
2263
2264         spin_lock_irqsave(&oh->_lock, flags);
2265         r = _reset(oh);
2266         spin_unlock_irqrestore(&oh->_lock, flags);
2267
2268         return r;
2269 }
2270
2271 /**
2272  * omap_hwmod_count_resources - count number of struct resources needed by hwmod
2273  * @oh: struct omap_hwmod *
2274  * @res: pointer to the first element of an array of struct resource to fill
2275  *
2276  * Count the number of struct resource array elements necessary to
2277  * contain omap_hwmod @oh resources.  Intended to be called by code
2278  * that registers omap_devices.  Intended to be used to determine the
2279  * size of a dynamically-allocated struct resource array, before
2280  * calling omap_hwmod_fill_resources().  Returns the number of struct
2281  * resource array elements needed.
2282  *
2283  * XXX This code is not optimized.  It could attempt to merge adjacent
2284  * resource IDs.
2285  *
2286  */
2287 int omap_hwmod_count_resources(struct omap_hwmod *oh)
2288 {
2289         int ret, i;
2290
2291         ret = _count_mpu_irqs(oh) + _count_sdma_reqs(oh);
2292
2293         for (i = 0; i < oh->slaves_cnt; i++)
2294                 ret += _count_ocp_if_addr_spaces(oh->slaves[i]);
2295
2296         return ret;
2297 }
2298
2299 /**
2300  * omap_hwmod_fill_resources - fill struct resource array with hwmod data
2301  * @oh: struct omap_hwmod *
2302  * @res: pointer to the first element of an array of struct resource to fill
2303  *
2304  * Fill the struct resource array @res with resource data from the
2305  * omap_hwmod @oh.  Intended to be called by code that registers
2306  * omap_devices.  See also omap_hwmod_count_resources().  Returns the
2307  * number of array elements filled.
2308  */
2309 int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
2310 {
2311         int i, j, mpu_irqs_cnt, sdma_reqs_cnt;
2312         int r = 0;
2313
2314         /* For each IRQ, DMA, memory area, fill in array.*/
2315
2316         mpu_irqs_cnt = _count_mpu_irqs(oh);
2317         for (i = 0; i < mpu_irqs_cnt; i++) {
2318                 (res + r)->name = (oh->mpu_irqs + i)->name;
2319                 (res + r)->start = (oh->mpu_irqs + i)->irq;
2320                 (res + r)->end = (oh->mpu_irqs + i)->irq;
2321                 (res + r)->flags = IORESOURCE_IRQ;
2322                 r++;
2323         }
2324
2325         sdma_reqs_cnt = _count_sdma_reqs(oh);
2326         for (i = 0; i < sdma_reqs_cnt; i++) {
2327                 (res + r)->name = (oh->sdma_reqs + i)->name;
2328                 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
2329                 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
2330                 (res + r)->flags = IORESOURCE_DMA;
2331                 r++;
2332         }
2333
2334         for (i = 0; i < oh->slaves_cnt; i++) {
2335                 struct omap_hwmod_ocp_if *os;
2336                 int addr_cnt;
2337
2338                 os = oh->slaves[i];
2339                 addr_cnt = _count_ocp_if_addr_spaces(os);
2340
2341                 for (j = 0; j < addr_cnt; j++) {
2342                         (res + r)->name = (os->addr + j)->name;
2343                         (res + r)->start = (os->addr + j)->pa_start;
2344                         (res + r)->end = (os->addr + j)->pa_end;
2345                         (res + r)->flags = IORESOURCE_MEM;
2346                         r++;
2347                 }
2348         }
2349
2350         return r;
2351 }
2352
2353 /**
2354  * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
2355  * @oh: struct omap_hwmod *
2356  *
2357  * Return the powerdomain pointer associated with the OMAP module
2358  * @oh's main clock.  If @oh does not have a main clk, return the
2359  * powerdomain associated with the interface clock associated with the
2360  * module's MPU port. (XXX Perhaps this should use the SDMA port
2361  * instead?)  Returns NULL on error, or a struct powerdomain * on
2362  * success.
2363  */
2364 struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
2365 {
2366         struct clk *c;
2367
2368         if (!oh)
2369                 return NULL;
2370
2371         if (oh->_clk) {
2372                 c = oh->_clk;
2373         } else {
2374                 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2375                         return NULL;
2376                 c = oh->slaves[oh->_mpu_port_index]->_clk;
2377         }
2378
2379         if (!c->clkdm)
2380                 return NULL;
2381
2382         return c->clkdm->pwrdm.ptr;
2383
2384 }
2385
2386 /**
2387  * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
2388  * @oh: struct omap_hwmod *
2389  *
2390  * Returns the virtual address corresponding to the beginning of the
2391  * module's register target, in the address range that is intended to
2392  * be used by the MPU.  Returns the virtual address upon success or NULL
2393  * upon error.
2394  */
2395 void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
2396 {
2397         if (!oh)
2398                 return NULL;
2399
2400         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2401                 return NULL;
2402
2403         if (oh->_state == _HWMOD_STATE_UNKNOWN)
2404                 return NULL;
2405
2406         return oh->_mpu_rt_va;
2407 }
2408
2409 /**
2410  * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
2411  * @oh: struct omap_hwmod *
2412  * @init_oh: struct omap_hwmod * (initiator)
2413  *
2414  * Add a sleep dependency between the initiator @init_oh and @oh.
2415  * Intended to be called by DSP/Bridge code via platform_data for the
2416  * DSP case; and by the DMA code in the sDMA case.  DMA code, *Bridge
2417  * code needs to add/del initiator dependencies dynamically
2418  * before/after accessing a device.  Returns the return value from
2419  * _add_initiator_dep().
2420  *
2421  * XXX Keep a usecount in the clockdomain code
2422  */
2423 int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
2424                                  struct omap_hwmod *init_oh)
2425 {
2426         return _add_initiator_dep(oh, init_oh);
2427 }
2428
2429 /*
2430  * XXX what about functions for drivers to save/restore ocp_sysconfig
2431  * for context save/restore operations?
2432  */
2433
2434 /**
2435  * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
2436  * @oh: struct omap_hwmod *
2437  * @init_oh: struct omap_hwmod * (initiator)
2438  *
2439  * Remove a sleep dependency between the initiator @init_oh and @oh.
2440  * Intended to be called by DSP/Bridge code via platform_data for the
2441  * DSP case; and by the DMA code in the sDMA case.  DMA code, *Bridge
2442  * code needs to add/del initiator dependencies dynamically
2443  * before/after accessing a device.  Returns the return value from
2444  * _del_initiator_dep().
2445  *
2446  * XXX Keep a usecount in the clockdomain code
2447  */
2448 int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
2449                                  struct omap_hwmod *init_oh)
2450 {
2451         return _del_initiator_dep(oh, init_oh);
2452 }
2453
2454 /**
2455  * omap_hwmod_enable_wakeup - allow device to wake up the system
2456  * @oh: struct omap_hwmod *
2457  *
2458  * Sets the module OCP socket ENAWAKEUP bit to allow the module to
2459  * send wakeups to the PRCM.  Eventually this should sets PRCM wakeup
2460  * registers to cause the PRCM to receive wakeup events from the
2461  * module.  Does not set any wakeup routing registers beyond this
2462  * point - if the module is to wake up any other module or subsystem,
2463  * that must be set separately.  Called by omap_device code.  Returns
2464  * -EINVAL on error or 0 upon success.
2465  */
2466 int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
2467 {
2468         unsigned long flags;
2469         u32 v;
2470
2471         if (!oh->class->sysc ||
2472             !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
2473                 return -EINVAL;
2474
2475         spin_lock_irqsave(&oh->_lock, flags);
2476         v = oh->_sysc_cache;
2477         _enable_wakeup(oh, &v);
2478         _write_sysconfig(v, oh);
2479         spin_unlock_irqrestore(&oh->_lock, flags);
2480
2481         return 0;
2482 }
2483
2484 /**
2485  * omap_hwmod_disable_wakeup - prevent device from waking the system
2486  * @oh: struct omap_hwmod *
2487  *
2488  * Clears the module OCP socket ENAWAKEUP bit to prevent the module
2489  * from sending wakeups to the PRCM.  Eventually this should clear
2490  * PRCM wakeup registers to cause the PRCM to ignore wakeup events
2491  * from the module.  Does not set any wakeup routing registers beyond
2492  * this point - if the module is to wake up any other module or
2493  * subsystem, that must be set separately.  Called by omap_device
2494  * code.  Returns -EINVAL on error or 0 upon success.
2495  */
2496 int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
2497 {
2498         unsigned long flags;
2499         u32 v;
2500
2501         if (!oh->class->sysc ||
2502             !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
2503                 return -EINVAL;
2504
2505         spin_lock_irqsave(&oh->_lock, flags);
2506         v = oh->_sysc_cache;
2507         _disable_wakeup(oh, &v);
2508         _write_sysconfig(v, oh);
2509         spin_unlock_irqrestore(&oh->_lock, flags);
2510
2511         return 0;
2512 }
2513
2514 /**
2515  * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
2516  * contained in the hwmod module.
2517  * @oh: struct omap_hwmod *
2518  * @name: name of the reset line to lookup and assert
2519  *
2520  * Some IP like dsp, ipu or iva contain processor that require
2521  * an HW reset line to be assert / deassert in order to enable fully
2522  * the IP.  Returns -EINVAL if @oh is null or if the operation is not
2523  * yet supported on this OMAP; otherwise, passes along the return value
2524  * from _assert_hardreset().
2525  */
2526 int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
2527 {
2528         int ret;
2529         unsigned long flags;
2530
2531         if (!oh)
2532                 return -EINVAL;
2533
2534         spin_lock_irqsave(&oh->_lock, flags);
2535         ret = _assert_hardreset(oh, name);
2536         spin_unlock_irqrestore(&oh->_lock, flags);
2537
2538         return ret;
2539 }
2540
2541 /**
2542  * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
2543  * contained in the hwmod module.
2544  * @oh: struct omap_hwmod *
2545  * @name: name of the reset line to look up and deassert
2546  *
2547  * Some IP like dsp, ipu or iva contain processor that require
2548  * an HW reset line to be assert / deassert in order to enable fully
2549  * the IP.  Returns -EINVAL if @oh is null or if the operation is not
2550  * yet supported on this OMAP; otherwise, passes along the return value
2551  * from _deassert_hardreset().
2552  */
2553 int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
2554 {
2555         int ret;
2556         unsigned long flags;
2557
2558         if (!oh)
2559                 return -EINVAL;
2560
2561         spin_lock_irqsave(&oh->_lock, flags);
2562         ret = _deassert_hardreset(oh, name);
2563         spin_unlock_irqrestore(&oh->_lock, flags);
2564
2565         return ret;
2566 }
2567
2568 /**
2569  * omap_hwmod_read_hardreset - read the HW reset line state of submodules
2570  * contained in the hwmod module
2571  * @oh: struct omap_hwmod *
2572  * @name: name of the reset line to look up and read
2573  *
2574  * Return the current state of the hwmod @oh's reset line named @name:
2575  * returns -EINVAL upon parameter error or if this operation
2576  * is unsupported on the current OMAP; otherwise, passes along the return
2577  * value from _read_hardreset().
2578  */
2579 int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
2580 {
2581         int ret;
2582         unsigned long flags;
2583
2584         if (!oh)
2585                 return -EINVAL;
2586
2587         spin_lock_irqsave(&oh->_lock, flags);
2588         ret = _read_hardreset(oh, name);
2589         spin_unlock_irqrestore(&oh->_lock, flags);
2590
2591         return ret;
2592 }
2593
2594
2595 /**
2596  * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
2597  * @classname: struct omap_hwmod_class name to search for
2598  * @fn: callback function pointer to call for each hwmod in class @classname
2599  * @user: arbitrary context data to pass to the callback function
2600  *
2601  * For each omap_hwmod of class @classname, call @fn.
2602  * If the callback function returns something other than
2603  * zero, the iterator is terminated, and the callback function's return
2604  * value is passed back to the caller.  Returns 0 upon success, -EINVAL
2605  * if @classname or @fn are NULL, or passes back the error code from @fn.
2606  */
2607 int omap_hwmod_for_each_by_class(const char *classname,
2608                                  int (*fn)(struct omap_hwmod *oh,
2609                                            void *user),
2610                                  void *user)
2611 {
2612         struct omap_hwmod *temp_oh;
2613         int ret = 0;
2614
2615         if (!classname || !fn)
2616                 return -EINVAL;
2617
2618         pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
2619                  __func__, classname);
2620
2621         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
2622                 if (!strcmp(temp_oh->class->name, classname)) {
2623                         pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
2624                                  __func__, temp_oh->name);
2625                         ret = (*fn)(temp_oh, user);
2626                         if (ret)
2627                                 break;
2628                 }
2629         }
2630
2631         if (ret)
2632                 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
2633                          __func__, ret);
2634
2635         return ret;
2636 }
2637
2638 /**
2639  * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
2640  * @oh: struct omap_hwmod *
2641  * @state: state that _setup() should leave the hwmod in
2642  *
2643  * Sets the hwmod state that @oh will enter at the end of _setup()
2644  * (called by omap_hwmod_setup_*()).  Only valid to call between
2645  * calling omap_hwmod_register() and omap_hwmod_setup_*().  Returns
2646  * 0 upon success or -EINVAL if there is a problem with the arguments
2647  * or if the hwmod is in the wrong state.
2648  */
2649 int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
2650 {
2651         int ret;
2652         unsigned long flags;
2653
2654         if (!oh)
2655                 return -EINVAL;
2656
2657         if (state != _HWMOD_STATE_DISABLED &&
2658             state != _HWMOD_STATE_ENABLED &&
2659             state != _HWMOD_STATE_IDLE)
2660                 return -EINVAL;
2661
2662         spin_lock_irqsave(&oh->_lock, flags);
2663
2664         if (oh->_state != _HWMOD_STATE_REGISTERED) {
2665                 ret = -EINVAL;
2666                 goto ohsps_unlock;
2667         }
2668
2669         oh->_postsetup_state = state;
2670         ret = 0;
2671
2672 ohsps_unlock:
2673         spin_unlock_irqrestore(&oh->_lock, flags);
2674
2675         return ret;
2676 }
2677
2678 /**
2679  * omap_hwmod_get_context_loss_count - get lost context count
2680  * @oh: struct omap_hwmod *
2681  *
2682  * Query the powerdomain of of @oh to get the context loss
2683  * count for this device.
2684  *
2685  * Returns the context loss count of the powerdomain assocated with @oh
2686  * upon success, or zero if no powerdomain exists for @oh.
2687  */
2688 int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
2689 {
2690         struct powerdomain *pwrdm;
2691         int ret = 0;
2692
2693         pwrdm = omap_hwmod_get_pwrdm(oh);
2694         if (pwrdm)
2695                 ret = pwrdm_get_context_loss_count(pwrdm);
2696
2697         return ret;
2698 }
2699
2700 /**
2701  * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
2702  * @oh: struct omap_hwmod *
2703  *
2704  * Prevent the hwmod @oh from being reset during the setup process.
2705  * Intended for use by board-*.c files on boards with devices that
2706  * cannot tolerate being reset.  Must be called before the hwmod has
2707  * been set up.  Returns 0 upon success or negative error code upon
2708  * failure.
2709  */
2710 int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
2711 {
2712         if (!oh)
2713                 return -EINVAL;
2714
2715         if (oh->_state != _HWMOD_STATE_REGISTERED) {
2716                 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
2717                         oh->name);
2718                 return -EINVAL;
2719         }
2720
2721         oh->flags |= HWMOD_INIT_NO_RESET;
2722
2723         return 0;
2724 }