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