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