Kernel bump from 4.1.3-rt to 4.1.7-rt.
[kvmfornfv.git] / kernel / 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-2012 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  *            | ({read,write}l_relaxed, 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-provider.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 #include <linux/slab.h>
140 #include <linux/bootmem.h>
141 #include <linux/cpu.h>
142 #include <linux/of.h>
143 #include <linux/of_address.h>
144
145 #include <asm/system_misc.h>
146
147 #include "clock.h"
148 #include "omap_hwmod.h"
149
150 #include "soc.h"
151 #include "common.h"
152 #include "clockdomain.h"
153 #include "powerdomain.h"
154 #include "cm2xxx.h"
155 #include "cm3xxx.h"
156 #include "cm33xx.h"
157 #include "prm.h"
158 #include "prm3xxx.h"
159 #include "prm44xx.h"
160 #include "prm33xx.h"
161 #include "prminst44xx.h"
162 #include "mux.h"
163 #include "pm.h"
164
165 /* Name of the OMAP hwmod for the MPU */
166 #define MPU_INITIATOR_NAME              "mpu"
167
168 /*
169  * Number of struct omap_hwmod_link records per struct
170  * omap_hwmod_ocp_if record (master->slave and slave->master)
171  */
172 #define LINKS_PER_OCP_IF                2
173
174 /*
175  * Address offset (in bytes) between the reset control and the reset
176  * status registers: 4 bytes on OMAP4
177  */
178 #define OMAP4_RST_CTRL_ST_OFFSET        4
179
180 /**
181  * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
182  * @enable_module: function to enable a module (via MODULEMODE)
183  * @disable_module: function to disable a module (via MODULEMODE)
184  *
185  * XXX Eventually this functionality will be hidden inside the PRM/CM
186  * device drivers.  Until then, this should avoid huge blocks of cpu_is_*()
187  * conditionals in this code.
188  */
189 struct omap_hwmod_soc_ops {
190         void (*enable_module)(struct omap_hwmod *oh);
191         int (*disable_module)(struct omap_hwmod *oh);
192         int (*wait_target_ready)(struct omap_hwmod *oh);
193         int (*assert_hardreset)(struct omap_hwmod *oh,
194                                 struct omap_hwmod_rst_info *ohri);
195         int (*deassert_hardreset)(struct omap_hwmod *oh,
196                                   struct omap_hwmod_rst_info *ohri);
197         int (*is_hardreset_asserted)(struct omap_hwmod *oh,
198                                      struct omap_hwmod_rst_info *ohri);
199         int (*init_clkdm)(struct omap_hwmod *oh);
200         void (*update_context_lost)(struct omap_hwmod *oh);
201         int (*get_context_lost)(struct omap_hwmod *oh);
202 };
203
204 /* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
205 static struct omap_hwmod_soc_ops soc_ops;
206
207 /* omap_hwmod_list contains all registered struct omap_hwmods */
208 static LIST_HEAD(omap_hwmod_list);
209
210 /* mpu_oh: used to add/remove MPU initiator from sleepdep list */
211 static struct omap_hwmod *mpu_oh;
212
213 /* io_chain_lock: used to serialize reconfigurations of the I/O chain */
214 static DEFINE_SPINLOCK(io_chain_lock);
215
216 /*
217  * linkspace: ptr to a buffer that struct omap_hwmod_link records are
218  * allocated from - used to reduce the number of small memory
219  * allocations, which has a significant impact on performance
220  */
221 static struct omap_hwmod_link *linkspace;
222
223 /*
224  * free_ls, max_ls: array indexes into linkspace; representing the
225  * next free struct omap_hwmod_link index, and the maximum number of
226  * struct omap_hwmod_link records allocated (respectively)
227  */
228 static unsigned short free_ls, max_ls, ls_supp;
229
230 /* inited: set to true once the hwmod code is initialized */
231 static bool inited;
232
233 /* Private functions */
234
235 /**
236  * _fetch_next_ocp_if - return the next OCP interface in a list
237  * @p: ptr to a ptr to the list_head inside the ocp_if to return
238  * @i: pointer to the index of the element pointed to by @p in the list
239  *
240  * Return a pointer to the struct omap_hwmod_ocp_if record
241  * containing the struct list_head pointed to by @p, and increment
242  * @p such that a future call to this routine will return the next
243  * record.
244  */
245 static struct omap_hwmod_ocp_if *_fetch_next_ocp_if(struct list_head **p,
246                                                     int *i)
247 {
248         struct omap_hwmod_ocp_if *oi;
249
250         oi = list_entry(*p, struct omap_hwmod_link, node)->ocp_if;
251         *p = (*p)->next;
252
253         *i = *i + 1;
254
255         return oi;
256 }
257
258 /**
259  * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
260  * @oh: struct omap_hwmod *
261  *
262  * Load the current value of the hwmod OCP_SYSCONFIG register into the
263  * struct omap_hwmod for later use.  Returns -EINVAL if the hwmod has no
264  * OCP_SYSCONFIG register or 0 upon success.
265  */
266 static int _update_sysc_cache(struct omap_hwmod *oh)
267 {
268         if (!oh->class->sysc) {
269                 WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
270                 return -EINVAL;
271         }
272
273         /* XXX ensure module interface clock is up */
274
275         oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
276
277         if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
278                 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
279
280         return 0;
281 }
282
283 /**
284  * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
285  * @v: OCP_SYSCONFIG value to write
286  * @oh: struct omap_hwmod *
287  *
288  * Write @v into the module class' OCP_SYSCONFIG register, if it has
289  * one.  No return value.
290  */
291 static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
292 {
293         if (!oh->class->sysc) {
294                 WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
295                 return;
296         }
297
298         /* XXX ensure module interface clock is up */
299
300         /* Module might have lost context, always update cache and register */
301         oh->_sysc_cache = v;
302         omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
303 }
304
305 /**
306  * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
307  * @oh: struct omap_hwmod *
308  * @standbymode: MIDLEMODE field bits
309  * @v: pointer to register contents to modify
310  *
311  * Update the master standby mode bits in @v to be @standbymode for
312  * the @oh hwmod.  Does not write to the hardware.  Returns -EINVAL
313  * upon error or 0 upon success.
314  */
315 static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
316                                    u32 *v)
317 {
318         u32 mstandby_mask;
319         u8 mstandby_shift;
320
321         if (!oh->class->sysc ||
322             !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
323                 return -EINVAL;
324
325         if (!oh->class->sysc->sysc_fields) {
326                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
327                 return -EINVAL;
328         }
329
330         mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
331         mstandby_mask = (0x3 << mstandby_shift);
332
333         *v &= ~mstandby_mask;
334         *v |= __ffs(standbymode) << mstandby_shift;
335
336         return 0;
337 }
338
339 /**
340  * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
341  * @oh: struct omap_hwmod *
342  * @idlemode: SIDLEMODE field bits
343  * @v: pointer to register contents to modify
344  *
345  * Update the slave idle mode bits in @v to be @idlemode for the @oh
346  * hwmod.  Does not write to the hardware.  Returns -EINVAL upon error
347  * or 0 upon success.
348  */
349 static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
350 {
351         u32 sidle_mask;
352         u8 sidle_shift;
353
354         if (!oh->class->sysc ||
355             !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
356                 return -EINVAL;
357
358         if (!oh->class->sysc->sysc_fields) {
359                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
360                 return -EINVAL;
361         }
362
363         sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
364         sidle_mask = (0x3 << sidle_shift);
365
366         *v &= ~sidle_mask;
367         *v |= __ffs(idlemode) << sidle_shift;
368
369         return 0;
370 }
371
372 /**
373  * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
374  * @oh: struct omap_hwmod *
375  * @clockact: CLOCKACTIVITY field bits
376  * @v: pointer to register contents to modify
377  *
378  * Update the clockactivity mode bits in @v to be @clockact for the
379  * @oh hwmod.  Used for additional powersaving on some modules.  Does
380  * not write to the hardware.  Returns -EINVAL upon error or 0 upon
381  * success.
382  */
383 static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
384 {
385         u32 clkact_mask;
386         u8  clkact_shift;
387
388         if (!oh->class->sysc ||
389             !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
390                 return -EINVAL;
391
392         if (!oh->class->sysc->sysc_fields) {
393                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
394                 return -EINVAL;
395         }
396
397         clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
398         clkact_mask = (0x3 << clkact_shift);
399
400         *v &= ~clkact_mask;
401         *v |= clockact << clkact_shift;
402
403         return 0;
404 }
405
406 /**
407  * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v
408  * @oh: struct omap_hwmod *
409  * @v: pointer to register contents to modify
410  *
411  * Set the SOFTRESET bit in @v for hwmod @oh.  Returns -EINVAL upon
412  * error or 0 upon success.
413  */
414 static int _set_softreset(struct omap_hwmod *oh, u32 *v)
415 {
416         u32 softrst_mask;
417
418         if (!oh->class->sysc ||
419             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
420                 return -EINVAL;
421
422         if (!oh->class->sysc->sysc_fields) {
423                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
424                 return -EINVAL;
425         }
426
427         softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
428
429         *v |= softrst_mask;
430
431         return 0;
432 }
433
434 /**
435  * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v
436  * @oh: struct omap_hwmod *
437  * @v: pointer to register contents to modify
438  *
439  * Clear the SOFTRESET bit in @v for hwmod @oh.  Returns -EINVAL upon
440  * error or 0 upon success.
441  */
442 static int _clear_softreset(struct omap_hwmod *oh, u32 *v)
443 {
444         u32 softrst_mask;
445
446         if (!oh->class->sysc ||
447             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
448                 return -EINVAL;
449
450         if (!oh->class->sysc->sysc_fields) {
451                 WARN(1,
452                      "omap_hwmod: %s: sysc_fields absent for sysconfig class\n",
453                      oh->name);
454                 return -EINVAL;
455         }
456
457         softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
458
459         *v &= ~softrst_mask;
460
461         return 0;
462 }
463
464 /**
465  * _wait_softreset_complete - wait for an OCP softreset to complete
466  * @oh: struct omap_hwmod * to wait on
467  *
468  * Wait until the IP block represented by @oh reports that its OCP
469  * softreset is complete.  This can be triggered by software (see
470  * _ocp_softreset()) or by hardware upon returning from off-mode (one
471  * example is HSMMC).  Waits for up to MAX_MODULE_SOFTRESET_WAIT
472  * microseconds.  Returns the number of microseconds waited.
473  */
474 static int _wait_softreset_complete(struct omap_hwmod *oh)
475 {
476         struct omap_hwmod_class_sysconfig *sysc;
477         u32 softrst_mask;
478         int c = 0;
479
480         sysc = oh->class->sysc;
481
482         if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
483                 omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs)
484                                    & SYSS_RESETDONE_MASK),
485                                   MAX_MODULE_SOFTRESET_WAIT, c);
486         else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
487                 softrst_mask = (0x1 << sysc->sysc_fields->srst_shift);
488                 omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs)
489                                     & softrst_mask),
490                                   MAX_MODULE_SOFTRESET_WAIT, c);
491         }
492
493         return c;
494 }
495
496 /**
497  * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
498  * @oh: struct omap_hwmod *
499  *
500  * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
501  * of some modules. When the DMA must perform read/write accesses, the
502  * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
503  * for power management, software must set the DMADISABLE bit back to 1.
504  *
505  * Set the DMADISABLE bit in @v for hwmod @oh.  Returns -EINVAL upon
506  * error or 0 upon success.
507  */
508 static int _set_dmadisable(struct omap_hwmod *oh)
509 {
510         u32 v;
511         u32 dmadisable_mask;
512
513         if (!oh->class->sysc ||
514             !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
515                 return -EINVAL;
516
517         if (!oh->class->sysc->sysc_fields) {
518                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
519                 return -EINVAL;
520         }
521
522         /* clocks must be on for this operation */
523         if (oh->_state != _HWMOD_STATE_ENABLED) {
524                 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
525                 return -EINVAL;
526         }
527
528         pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
529
530         v = oh->_sysc_cache;
531         dmadisable_mask =
532                 (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
533         v |= dmadisable_mask;
534         _write_sysconfig(v, oh);
535
536         return 0;
537 }
538
539 /**
540  * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
541  * @oh: struct omap_hwmod *
542  * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
543  * @v: pointer to register contents to modify
544  *
545  * Update the module autoidle bit in @v to be @autoidle for the @oh
546  * hwmod.  The autoidle bit controls whether the module can gate
547  * internal clocks automatically when it isn't doing anything; the
548  * exact function of this bit varies on a per-module basis.  This
549  * function does not write to the hardware.  Returns -EINVAL upon
550  * error or 0 upon success.
551  */
552 static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
553                                 u32 *v)
554 {
555         u32 autoidle_mask;
556         u8 autoidle_shift;
557
558         if (!oh->class->sysc ||
559             !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
560                 return -EINVAL;
561
562         if (!oh->class->sysc->sysc_fields) {
563                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
564                 return -EINVAL;
565         }
566
567         autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
568         autoidle_mask = (0x1 << autoidle_shift);
569
570         *v &= ~autoidle_mask;
571         *v |= autoidle << autoidle_shift;
572
573         return 0;
574 }
575
576 /**
577  * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux
578  * @oh: struct omap_hwmod *
579  * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable
580  *
581  * Set or clear the I/O pad wakeup flag in the mux entries for the
582  * hwmod @oh.  This function changes the @oh->mux->pads_dynamic array
583  * in memory.  If the hwmod is currently idled, and the new idle
584  * values don't match the previous ones, this function will also
585  * update the SCM PADCTRL registers.  Otherwise, if the hwmod is not
586  * currently idled, this function won't touch the hardware: the new
587  * mux settings are written to the SCM PADCTRL registers when the
588  * hwmod is idled.  No return value.
589  */
590 static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake)
591 {
592         struct omap_device_pad *pad;
593         bool change = false;
594         u16 prev_idle;
595         int j;
596
597         if (!oh->mux || !oh->mux->enabled)
598                 return;
599
600         for (j = 0; j < oh->mux->nr_pads_dynamic; j++) {
601                 pad = oh->mux->pads_dynamic[j];
602
603                 if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP))
604                         continue;
605
606                 prev_idle = pad->idle;
607
608                 if (set_wake)
609                         pad->idle |= OMAP_WAKEUP_EN;
610                 else
611                         pad->idle &= ~OMAP_WAKEUP_EN;
612
613                 if (prev_idle != pad->idle)
614                         change = true;
615         }
616
617         if (change && oh->_state == _HWMOD_STATE_IDLE)
618                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
619 }
620
621 /**
622  * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
623  * @oh: struct omap_hwmod *
624  *
625  * Allow the hardware module @oh to send wakeups.  Returns -EINVAL
626  * upon error or 0 upon success.
627  */
628 static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
629 {
630         if (!oh->class->sysc ||
631             !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
632               (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
633               (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
634                 return -EINVAL;
635
636         if (!oh->class->sysc->sysc_fields) {
637                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
638                 return -EINVAL;
639         }
640
641         if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
642                 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
643
644         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
645                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
646         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
647                 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
648
649         /* XXX test pwrdm_get_wken for this hwmod's subsystem */
650
651         return 0;
652 }
653
654 /**
655  * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
656  * @oh: struct omap_hwmod *
657  *
658  * Prevent the hardware module @oh to send wakeups.  Returns -EINVAL
659  * upon error or 0 upon success.
660  */
661 static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
662 {
663         if (!oh->class->sysc ||
664             !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
665               (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
666               (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
667                 return -EINVAL;
668
669         if (!oh->class->sysc->sysc_fields) {
670                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
671                 return -EINVAL;
672         }
673
674         if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
675                 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
676
677         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
678                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
679         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
680                 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
681
682         /* XXX test pwrdm_get_wken for this hwmod's subsystem */
683
684         return 0;
685 }
686
687 static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
688 {
689         struct clk_hw_omap *clk;
690
691         if (oh->clkdm) {
692                 return oh->clkdm;
693         } else if (oh->_clk) {
694                 if (__clk_get_flags(oh->_clk) & CLK_IS_BASIC)
695                         return NULL;
696                 clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
697                 return  clk->clkdm;
698         }
699         return NULL;
700 }
701
702 /**
703  * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
704  * @oh: struct omap_hwmod *
705  *
706  * Prevent the hardware module @oh from entering idle while the
707  * hardare module initiator @init_oh is active.  Useful when a module
708  * will be accessed by a particular initiator (e.g., if a module will
709  * be accessed by the IVA, there should be a sleepdep between the IVA
710  * initiator and the module).  Only applies to modules in smart-idle
711  * mode.  If the clockdomain is marked as not needing autodeps, return
712  * 0 without doing anything.  Otherwise, returns -EINVAL upon error or
713  * passes along clkdm_add_sleepdep() value upon success.
714  */
715 static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
716 {
717         struct clockdomain *clkdm, *init_clkdm;
718
719         clkdm = _get_clkdm(oh);
720         init_clkdm = _get_clkdm(init_oh);
721
722         if (!clkdm || !init_clkdm)
723                 return -EINVAL;
724
725         if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
726                 return 0;
727
728         return clkdm_add_sleepdep(clkdm, init_clkdm);
729 }
730
731 /**
732  * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
733  * @oh: struct omap_hwmod *
734  *
735  * Allow the hardware module @oh to enter idle while the hardare
736  * module initiator @init_oh is active.  Useful when a module will not
737  * be accessed by a particular initiator (e.g., if a module will not
738  * be accessed by the IVA, there should be no sleepdep between the IVA
739  * initiator and the module).  Only applies to modules in smart-idle
740  * mode.  If the clockdomain is marked as not needing autodeps, return
741  * 0 without doing anything.  Returns -EINVAL upon error or passes
742  * along clkdm_del_sleepdep() value upon success.
743  */
744 static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
745 {
746         struct clockdomain *clkdm, *init_clkdm;
747
748         clkdm = _get_clkdm(oh);
749         init_clkdm = _get_clkdm(init_oh);
750
751         if (!clkdm || !init_clkdm)
752                 return -EINVAL;
753
754         if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
755                 return 0;
756
757         return clkdm_del_sleepdep(clkdm, init_clkdm);
758 }
759
760 /**
761  * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
762  * @oh: struct omap_hwmod *
763  *
764  * Called from _init_clocks().  Populates the @oh _clk (main
765  * functional clock pointer) if a main_clk is present.  Returns 0 on
766  * success or -EINVAL on error.
767  */
768 static int _init_main_clk(struct omap_hwmod *oh)
769 {
770         int ret = 0;
771
772         if (!oh->main_clk)
773                 return 0;
774
775         oh->_clk = clk_get(NULL, oh->main_clk);
776         if (IS_ERR(oh->_clk)) {
777                 pr_warn("omap_hwmod: %s: cannot clk_get main_clk %s\n",
778                         oh->name, oh->main_clk);
779                 return -EINVAL;
780         }
781         /*
782          * HACK: This needs a re-visit once clk_prepare() is implemented
783          * to do something meaningful. Today its just a no-op.
784          * If clk_prepare() is used at some point to do things like
785          * voltage scaling etc, then this would have to be moved to
786          * some point where subsystems like i2c and pmic become
787          * available.
788          */
789         clk_prepare(oh->_clk);
790
791         if (!_get_clkdm(oh))
792                 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
793                            oh->name, oh->main_clk);
794
795         return ret;
796 }
797
798 /**
799  * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
800  * @oh: struct omap_hwmod *
801  *
802  * Called from _init_clocks().  Populates the @oh OCP slave interface
803  * clock pointers.  Returns 0 on success or -EINVAL on error.
804  */
805 static int _init_interface_clks(struct omap_hwmod *oh)
806 {
807         struct omap_hwmod_ocp_if *os;
808         struct list_head *p;
809         struct clk *c;
810         int i = 0;
811         int ret = 0;
812
813         p = oh->slave_ports.next;
814
815         while (i < oh->slaves_cnt) {
816                 os = _fetch_next_ocp_if(&p, &i);
817                 if (!os->clk)
818                         continue;
819
820                 c = clk_get(NULL, os->clk);
821                 if (IS_ERR(c)) {
822                         pr_warn("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
823                                 oh->name, os->clk);
824                         ret = -EINVAL;
825                         continue;
826                 }
827                 os->_clk = c;
828                 /*
829                  * HACK: This needs a re-visit once clk_prepare() is implemented
830                  * to do something meaningful. Today its just a no-op.
831                  * If clk_prepare() is used at some point to do things like
832                  * voltage scaling etc, then this would have to be moved to
833                  * some point where subsystems like i2c and pmic become
834                  * available.
835                  */
836                 clk_prepare(os->_clk);
837         }
838
839         return ret;
840 }
841
842 /**
843  * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
844  * @oh: struct omap_hwmod *
845  *
846  * Called from _init_clocks().  Populates the @oh omap_hwmod_opt_clk
847  * clock pointers.  Returns 0 on success or -EINVAL on error.
848  */
849 static int _init_opt_clks(struct omap_hwmod *oh)
850 {
851         struct omap_hwmod_opt_clk *oc;
852         struct clk *c;
853         int i;
854         int ret = 0;
855
856         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
857                 c = clk_get(NULL, oc->clk);
858                 if (IS_ERR(c)) {
859                         pr_warn("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
860                                 oh->name, oc->clk);
861                         ret = -EINVAL;
862                         continue;
863                 }
864                 oc->_clk = c;
865                 /*
866                  * HACK: This needs a re-visit once clk_prepare() is implemented
867                  * to do something meaningful. Today its just a no-op.
868                  * If clk_prepare() is used at some point to do things like
869                  * voltage scaling etc, then this would have to be moved to
870                  * some point where subsystems like i2c and pmic become
871                  * available.
872                  */
873                 clk_prepare(oc->_clk);
874         }
875
876         return ret;
877 }
878
879 /**
880  * _enable_clocks - enable hwmod main clock and interface clocks
881  * @oh: struct omap_hwmod *
882  *
883  * Enables all clocks necessary for register reads and writes to succeed
884  * on the hwmod @oh.  Returns 0.
885  */
886 static int _enable_clocks(struct omap_hwmod *oh)
887 {
888         struct omap_hwmod_ocp_if *os;
889         struct list_head *p;
890         int i = 0;
891
892         pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
893
894         if (oh->_clk)
895                 clk_enable(oh->_clk);
896
897         p = oh->slave_ports.next;
898
899         while (i < oh->slaves_cnt) {
900                 os = _fetch_next_ocp_if(&p, &i);
901
902                 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
903                         clk_enable(os->_clk);
904         }
905
906         /* The opt clocks are controlled by the device driver. */
907
908         return 0;
909 }
910
911 /**
912  * _disable_clocks - disable hwmod main clock and interface clocks
913  * @oh: struct omap_hwmod *
914  *
915  * Disables the hwmod @oh main functional and interface clocks.  Returns 0.
916  */
917 static int _disable_clocks(struct omap_hwmod *oh)
918 {
919         struct omap_hwmod_ocp_if *os;
920         struct list_head *p;
921         int i = 0;
922
923         pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
924
925         if (oh->_clk)
926                 clk_disable(oh->_clk);
927
928         p = oh->slave_ports.next;
929
930         while (i < oh->slaves_cnt) {
931                 os = _fetch_next_ocp_if(&p, &i);
932
933                 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
934                         clk_disable(os->_clk);
935         }
936
937         /* The opt clocks are controlled by the device driver. */
938
939         return 0;
940 }
941
942 static void _enable_optional_clocks(struct omap_hwmod *oh)
943 {
944         struct omap_hwmod_opt_clk *oc;
945         int i;
946
947         pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
948
949         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
950                 if (oc->_clk) {
951                         pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
952                                  __clk_get_name(oc->_clk));
953                         clk_enable(oc->_clk);
954                 }
955 }
956
957 static void _disable_optional_clocks(struct omap_hwmod *oh)
958 {
959         struct omap_hwmod_opt_clk *oc;
960         int i;
961
962         pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
963
964         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
965                 if (oc->_clk) {
966                         pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
967                                  __clk_get_name(oc->_clk));
968                         clk_disable(oc->_clk);
969                 }
970 }
971
972 /**
973  * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
974  * @oh: struct omap_hwmod *
975  *
976  * Enables the PRCM module mode related to the hwmod @oh.
977  * No return value.
978  */
979 static void _omap4_enable_module(struct omap_hwmod *oh)
980 {
981         if (!oh->clkdm || !oh->prcm.omap4.modulemode)
982                 return;
983
984         pr_debug("omap_hwmod: %s: %s: %d\n",
985                  oh->name, __func__, oh->prcm.omap4.modulemode);
986
987         omap_cm_module_enable(oh->prcm.omap4.modulemode,
988                               oh->clkdm->prcm_partition,
989                               oh->clkdm->cm_inst, oh->prcm.omap4.clkctrl_offs);
990 }
991
992 /**
993  * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
994  * @oh: struct omap_hwmod *
995  *
996  * Wait for a module @oh to enter slave idle.  Returns 0 if the module
997  * does not have an IDLEST bit or if the module successfully enters
998  * slave idle; otherwise, pass along the return value of the
999  * appropriate *_cm*_wait_module_idle() function.
1000  */
1001 static int _omap4_wait_target_disable(struct omap_hwmod *oh)
1002 {
1003         if (!oh)
1004                 return -EINVAL;
1005
1006         if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
1007                 return 0;
1008
1009         if (oh->flags & HWMOD_NO_IDLEST)
1010                 return 0;
1011
1012         return omap_cm_wait_module_idle(oh->clkdm->prcm_partition,
1013                                         oh->clkdm->cm_inst,
1014                                         oh->prcm.omap4.clkctrl_offs, 0);
1015 }
1016
1017 /**
1018  * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
1019  * @oh: struct omap_hwmod *oh
1020  *
1021  * Count and return the number of MPU IRQs associated with the hwmod
1022  * @oh.  Used to allocate struct resource data.  Returns 0 if @oh is
1023  * NULL.
1024  */
1025 static int _count_mpu_irqs(struct omap_hwmod *oh)
1026 {
1027         struct omap_hwmod_irq_info *ohii;
1028         int i = 0;
1029
1030         if (!oh || !oh->mpu_irqs)
1031                 return 0;
1032
1033         do {
1034                 ohii = &oh->mpu_irqs[i++];
1035         } while (ohii->irq != -1);
1036
1037         return i-1;
1038 }
1039
1040 /**
1041  * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
1042  * @oh: struct omap_hwmod *oh
1043  *
1044  * Count and return the number of SDMA request lines associated with
1045  * the hwmod @oh.  Used to allocate struct resource data.  Returns 0
1046  * if @oh is NULL.
1047  */
1048 static int _count_sdma_reqs(struct omap_hwmod *oh)
1049 {
1050         struct omap_hwmod_dma_info *ohdi;
1051         int i = 0;
1052
1053         if (!oh || !oh->sdma_reqs)
1054                 return 0;
1055
1056         do {
1057                 ohdi = &oh->sdma_reqs[i++];
1058         } while (ohdi->dma_req != -1);
1059
1060         return i-1;
1061 }
1062
1063 /**
1064  * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
1065  * @oh: struct omap_hwmod *oh
1066  *
1067  * Count and return the number of address space ranges associated with
1068  * the hwmod @oh.  Used to allocate struct resource data.  Returns 0
1069  * if @oh is NULL.
1070  */
1071 static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
1072 {
1073         struct omap_hwmod_addr_space *mem;
1074         int i = 0;
1075
1076         if (!os || !os->addr)
1077                 return 0;
1078
1079         do {
1080                 mem = &os->addr[i++];
1081         } while (mem->pa_start != mem->pa_end);
1082
1083         return i-1;
1084 }
1085
1086 /**
1087  * _get_mpu_irq_by_name - fetch MPU interrupt line number by name
1088  * @oh: struct omap_hwmod * to operate on
1089  * @name: pointer to the name of the MPU interrupt number to fetch (optional)
1090  * @irq: pointer to an unsigned int to store the MPU IRQ number to
1091  *
1092  * Retrieve a MPU hardware IRQ line number named by @name associated
1093  * with the IP block pointed to by @oh.  The IRQ number will be filled
1094  * into the address pointed to by @dma.  When @name is non-null, the
1095  * IRQ line number associated with the named entry will be returned.
1096  * If @name is null, the first matching entry will be returned.  Data
1097  * order is not meaningful in hwmod data, so callers are strongly
1098  * encouraged to use a non-null @name whenever possible to avoid
1099  * unpredictable effects if hwmod data is later added that causes data
1100  * ordering to change.  Returns 0 upon success or a negative error
1101  * code upon error.
1102  */
1103 static int _get_mpu_irq_by_name(struct omap_hwmod *oh, const char *name,
1104                                 unsigned int *irq)
1105 {
1106         int i;
1107         bool found = false;
1108
1109         if (!oh->mpu_irqs)
1110                 return -ENOENT;
1111
1112         i = 0;
1113         while (oh->mpu_irqs[i].irq != -1) {
1114                 if (name == oh->mpu_irqs[i].name ||
1115                     !strcmp(name, oh->mpu_irqs[i].name)) {
1116                         found = true;
1117                         break;
1118                 }
1119                 i++;
1120         }
1121
1122         if (!found)
1123                 return -ENOENT;
1124
1125         *irq = oh->mpu_irqs[i].irq;
1126
1127         return 0;
1128 }
1129
1130 /**
1131  * _get_sdma_req_by_name - fetch SDMA request line ID by name
1132  * @oh: struct omap_hwmod * to operate on
1133  * @name: pointer to the name of the SDMA request line to fetch (optional)
1134  * @dma: pointer to an unsigned int to store the request line ID to
1135  *
1136  * Retrieve an SDMA request line ID named by @name on the IP block
1137  * pointed to by @oh.  The ID will be filled into the address pointed
1138  * to by @dma.  When @name is non-null, the request line ID associated
1139  * with the named entry will be returned.  If @name is null, the first
1140  * matching entry will be returned.  Data order is not meaningful in
1141  * hwmod data, so callers are strongly encouraged to use a non-null
1142  * @name whenever possible to avoid unpredictable effects if hwmod
1143  * data is later added that causes data ordering to change.  Returns 0
1144  * upon success or a negative error code upon error.
1145  */
1146 static int _get_sdma_req_by_name(struct omap_hwmod *oh, const char *name,
1147                                  unsigned int *dma)
1148 {
1149         int i;
1150         bool found = false;
1151
1152         if (!oh->sdma_reqs)
1153                 return -ENOENT;
1154
1155         i = 0;
1156         while (oh->sdma_reqs[i].dma_req != -1) {
1157                 if (name == oh->sdma_reqs[i].name ||
1158                     !strcmp(name, oh->sdma_reqs[i].name)) {
1159                         found = true;
1160                         break;
1161                 }
1162                 i++;
1163         }
1164
1165         if (!found)
1166                 return -ENOENT;
1167
1168         *dma = oh->sdma_reqs[i].dma_req;
1169
1170         return 0;
1171 }
1172
1173 /**
1174  * _get_addr_space_by_name - fetch address space start & end by name
1175  * @oh: struct omap_hwmod * to operate on
1176  * @name: pointer to the name of the address space to fetch (optional)
1177  * @pa_start: pointer to a u32 to store the starting address to
1178  * @pa_end: pointer to a u32 to store the ending address to
1179  *
1180  * Retrieve address space start and end addresses for the IP block
1181  * pointed to by @oh.  The data will be filled into the addresses
1182  * pointed to by @pa_start and @pa_end.  When @name is non-null, the
1183  * address space data associated with the named entry will be
1184  * returned.  If @name is null, the first matching entry will be
1185  * returned.  Data order is not meaningful in hwmod data, so callers
1186  * are strongly encouraged to use a non-null @name whenever possible
1187  * to avoid unpredictable effects if hwmod data is later added that
1188  * causes data ordering to change.  Returns 0 upon success or a
1189  * negative error code upon error.
1190  */
1191 static int _get_addr_space_by_name(struct omap_hwmod *oh, const char *name,
1192                                    u32 *pa_start, u32 *pa_end)
1193 {
1194         int i, j;
1195         struct omap_hwmod_ocp_if *os;
1196         struct list_head *p = NULL;
1197         bool found = false;
1198
1199         p = oh->slave_ports.next;
1200
1201         i = 0;
1202         while (i < oh->slaves_cnt) {
1203                 os = _fetch_next_ocp_if(&p, &i);
1204
1205                 if (!os->addr)
1206                         return -ENOENT;
1207
1208                 j = 0;
1209                 while (os->addr[j].pa_start != os->addr[j].pa_end) {
1210                         if (name == os->addr[j].name ||
1211                             !strcmp(name, os->addr[j].name)) {
1212                                 found = true;
1213                                 break;
1214                         }
1215                         j++;
1216                 }
1217
1218                 if (found)
1219                         break;
1220         }
1221
1222         if (!found)
1223                 return -ENOENT;
1224
1225         *pa_start = os->addr[j].pa_start;
1226         *pa_end = os->addr[j].pa_end;
1227
1228         return 0;
1229 }
1230
1231 /**
1232  * _save_mpu_port_index - find and save the index to @oh's MPU port
1233  * @oh: struct omap_hwmod *
1234  *
1235  * Determines the array index of the OCP slave port that the MPU uses
1236  * to address the device, and saves it into the struct omap_hwmod.
1237  * Intended to be called during hwmod registration only. No return
1238  * value.
1239  */
1240 static void __init _save_mpu_port_index(struct omap_hwmod *oh)
1241 {
1242         struct omap_hwmod_ocp_if *os = NULL;
1243         struct list_head *p;
1244         int i = 0;
1245
1246         if (!oh)
1247                 return;
1248
1249         oh->_int_flags |= _HWMOD_NO_MPU_PORT;
1250
1251         p = oh->slave_ports.next;
1252
1253         while (i < oh->slaves_cnt) {
1254                 os = _fetch_next_ocp_if(&p, &i);
1255                 if (os->user & OCP_USER_MPU) {
1256                         oh->_mpu_port = os;
1257                         oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
1258                         break;
1259                 }
1260         }
1261
1262         return;
1263 }
1264
1265 /**
1266  * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1267  * @oh: struct omap_hwmod *
1268  *
1269  * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1270  * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1271  * communicate with the IP block.  This interface need not be directly
1272  * connected to the MPU (and almost certainly is not), but is directly
1273  * connected to the IP block represented by @oh.  Returns a pointer
1274  * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1275  * error or if there does not appear to be a path from the MPU to this
1276  * IP block.
1277  */
1278 static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1279 {
1280         if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1281                 return NULL;
1282
1283         return oh->_mpu_port;
1284 };
1285
1286 /**
1287  * _find_mpu_rt_addr_space - return MPU register target address space for @oh
1288  * @oh: struct omap_hwmod *
1289  *
1290  * Returns a pointer to the struct omap_hwmod_addr_space record representing
1291  * the register target MPU address space; or returns NULL upon error.
1292  */
1293 static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh)
1294 {
1295         struct omap_hwmod_ocp_if *os;
1296         struct omap_hwmod_addr_space *mem;
1297         int found = 0, i = 0;
1298
1299         os = _find_mpu_rt_port(oh);
1300         if (!os || !os->addr)
1301                 return NULL;
1302
1303         do {
1304                 mem = &os->addr[i++];
1305                 if (mem->flags & ADDR_TYPE_RT)
1306                         found = 1;
1307         } while (!found && mem->pa_start != mem->pa_end);
1308
1309         return (found) ? mem : NULL;
1310 }
1311
1312 /**
1313  * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
1314  * @oh: struct omap_hwmod *
1315  *
1316  * Ensure that the OCP_SYSCONFIG register for the IP block represented
1317  * by @oh is set to indicate to the PRCM that the IP block is active.
1318  * Usually this means placing the module into smart-idle mode and
1319  * smart-standby, but if there is a bug in the automatic idle handling
1320  * for the IP block, it may need to be placed into the force-idle or
1321  * no-idle variants of these modes.  No return value.
1322  */
1323 static void _enable_sysc(struct omap_hwmod *oh)
1324 {
1325         u8 idlemode, sf;
1326         u32 v;
1327         bool clkdm_act;
1328         struct clockdomain *clkdm;
1329
1330         if (!oh->class->sysc)
1331                 return;
1332
1333         /*
1334          * Wait until reset has completed, this is needed as the IP
1335          * block is reset automatically by hardware in some cases
1336          * (off-mode for example), and the drivers require the
1337          * IP to be ready when they access it
1338          */
1339         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1340                 _enable_optional_clocks(oh);
1341         _wait_softreset_complete(oh);
1342         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1343                 _disable_optional_clocks(oh);
1344
1345         v = oh->_sysc_cache;
1346         sf = oh->class->sysc->sysc_flags;
1347
1348         clkdm = _get_clkdm(oh);
1349         if (sf & SYSC_HAS_SIDLEMODE) {
1350                 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1351                     oh->flags & HWMOD_SWSUP_SIDLE_ACT) {
1352                         idlemode = HWMOD_IDLEMODE_NO;
1353                 } else {
1354                         if (sf & SYSC_HAS_ENAWAKEUP)
1355                                 _enable_wakeup(oh, &v);
1356                         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1357                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1358                         else
1359                                 idlemode = HWMOD_IDLEMODE_SMART;
1360                 }
1361
1362                 /*
1363                  * This is special handling for some IPs like
1364                  * 32k sync timer. Force them to idle!
1365                  */
1366                 clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
1367                 if (clkdm_act && !(oh->class->sysc->idlemodes &
1368                                    (SIDLE_SMART | SIDLE_SMART_WKUP)))
1369                         idlemode = HWMOD_IDLEMODE_FORCE;
1370
1371                 _set_slave_idlemode(oh, idlemode, &v);
1372         }
1373
1374         if (sf & SYSC_HAS_MIDLEMODE) {
1375                 if (oh->flags & HWMOD_FORCE_MSTANDBY) {
1376                         idlemode = HWMOD_IDLEMODE_FORCE;
1377                 } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1378                         idlemode = HWMOD_IDLEMODE_NO;
1379                 } else {
1380                         if (sf & SYSC_HAS_ENAWAKEUP)
1381                                 _enable_wakeup(oh, &v);
1382                         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1383                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1384                         else
1385                                 idlemode = HWMOD_IDLEMODE_SMART;
1386                 }
1387                 _set_master_standbymode(oh, idlemode, &v);
1388         }
1389
1390         /*
1391          * XXX The clock framework should handle this, by
1392          * calling into this code.  But this must wait until the
1393          * clock structures are tagged with omap_hwmod entries
1394          */
1395         if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1396             (sf & SYSC_HAS_CLOCKACTIVITY))
1397                 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
1398
1399         /* If the cached value is the same as the new value, skip the write */
1400         if (oh->_sysc_cache != v)
1401                 _write_sysconfig(v, oh);
1402
1403         /*
1404          * Set the autoidle bit only after setting the smartidle bit
1405          * Setting this will not have any impact on the other modules.
1406          */
1407         if (sf & SYSC_HAS_AUTOIDLE) {
1408                 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1409                         0 : 1;
1410                 _set_module_autoidle(oh, idlemode, &v);
1411                 _write_sysconfig(v, oh);
1412         }
1413 }
1414
1415 /**
1416  * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
1417  * @oh: struct omap_hwmod *
1418  *
1419  * If module is marked as SWSUP_SIDLE, force the module into slave
1420  * idle; otherwise, configure it for smart-idle.  If module is marked
1421  * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1422  * configure it for smart-standby.  No return value.
1423  */
1424 static void _idle_sysc(struct omap_hwmod *oh)
1425 {
1426         u8 idlemode, sf;
1427         u32 v;
1428
1429         if (!oh->class->sysc)
1430                 return;
1431
1432         v = oh->_sysc_cache;
1433         sf = oh->class->sysc->sysc_flags;
1434
1435         if (sf & SYSC_HAS_SIDLEMODE) {
1436                 if (oh->flags & HWMOD_SWSUP_SIDLE) {
1437                         idlemode = HWMOD_IDLEMODE_FORCE;
1438                 } else {
1439                         if (sf & SYSC_HAS_ENAWAKEUP)
1440                                 _enable_wakeup(oh, &v);
1441                         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1442                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1443                         else
1444                                 idlemode = HWMOD_IDLEMODE_SMART;
1445                 }
1446                 _set_slave_idlemode(oh, idlemode, &v);
1447         }
1448
1449         if (sf & SYSC_HAS_MIDLEMODE) {
1450                 if ((oh->flags & HWMOD_SWSUP_MSTANDBY) ||
1451                     (oh->flags & HWMOD_FORCE_MSTANDBY)) {
1452                         idlemode = HWMOD_IDLEMODE_FORCE;
1453                 } else {
1454                         if (sf & SYSC_HAS_ENAWAKEUP)
1455                                 _enable_wakeup(oh, &v);
1456                         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1457                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1458                         else
1459                                 idlemode = HWMOD_IDLEMODE_SMART;
1460                 }
1461                 _set_master_standbymode(oh, idlemode, &v);
1462         }
1463
1464         _write_sysconfig(v, oh);
1465 }
1466
1467 /**
1468  * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
1469  * @oh: struct omap_hwmod *
1470  *
1471  * Force the module into slave idle and master suspend. No return
1472  * value.
1473  */
1474 static void _shutdown_sysc(struct omap_hwmod *oh)
1475 {
1476         u32 v;
1477         u8 sf;
1478
1479         if (!oh->class->sysc)
1480                 return;
1481
1482         v = oh->_sysc_cache;
1483         sf = oh->class->sysc->sysc_flags;
1484
1485         if (sf & SYSC_HAS_SIDLEMODE)
1486                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1487
1488         if (sf & SYSC_HAS_MIDLEMODE)
1489                 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1490
1491         if (sf & SYSC_HAS_AUTOIDLE)
1492                 _set_module_autoidle(oh, 1, &v);
1493
1494         _write_sysconfig(v, oh);
1495 }
1496
1497 /**
1498  * _lookup - find an omap_hwmod by name
1499  * @name: find an omap_hwmod by name
1500  *
1501  * Return a pointer to an omap_hwmod by name, or NULL if not found.
1502  */
1503 static struct omap_hwmod *_lookup(const char *name)
1504 {
1505         struct omap_hwmod *oh, *temp_oh;
1506
1507         oh = NULL;
1508
1509         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1510                 if (!strcmp(name, temp_oh->name)) {
1511                         oh = temp_oh;
1512                         break;
1513                 }
1514         }
1515
1516         return oh;
1517 }
1518
1519 /**
1520  * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1521  * @oh: struct omap_hwmod *
1522  *
1523  * Convert a clockdomain name stored in a struct omap_hwmod into a
1524  * clockdomain pointer, and save it into the struct omap_hwmod.
1525  * Return -EINVAL if the clkdm_name lookup failed.
1526  */
1527 static int _init_clkdm(struct omap_hwmod *oh)
1528 {
1529         if (!oh->clkdm_name) {
1530                 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
1531                 return 0;
1532         }
1533
1534         oh->clkdm = clkdm_lookup(oh->clkdm_name);
1535         if (!oh->clkdm) {
1536                 pr_warn("omap_hwmod: %s: could not associate to clkdm %s\n",
1537                         oh->name, oh->clkdm_name);
1538                 return 0;
1539         }
1540
1541         pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1542                 oh->name, oh->clkdm_name);
1543
1544         return 0;
1545 }
1546
1547 /**
1548  * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1549  * well the clockdomain.
1550  * @oh: struct omap_hwmod *
1551  * @data: not used; pass NULL
1552  *
1553  * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
1554  * Resolves all clock names embedded in the hwmod.  Returns 0 on
1555  * success, or a negative error code on failure.
1556  */
1557 static int _init_clocks(struct omap_hwmod *oh, void *data)
1558 {
1559         int ret = 0;
1560
1561         if (oh->_state != _HWMOD_STATE_REGISTERED)
1562                 return 0;
1563
1564         pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1565
1566         if (soc_ops.init_clkdm)
1567                 ret |= soc_ops.init_clkdm(oh);
1568
1569         ret |= _init_main_clk(oh);
1570         ret |= _init_interface_clks(oh);
1571         ret |= _init_opt_clks(oh);
1572
1573         if (!ret)
1574                 oh->_state = _HWMOD_STATE_CLKS_INITED;
1575         else
1576                 pr_warn("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
1577
1578         return ret;
1579 }
1580
1581 /**
1582  * _lookup_hardreset - fill register bit info for this hwmod/reset line
1583  * @oh: struct omap_hwmod *
1584  * @name: name of the reset line in the context of this hwmod
1585  * @ohri: struct omap_hwmod_rst_info * that this function will fill in
1586  *
1587  * Return the bit position of the reset line that match the
1588  * input name. Return -ENOENT if not found.
1589  */
1590 static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1591                              struct omap_hwmod_rst_info *ohri)
1592 {
1593         int i;
1594
1595         for (i = 0; i < oh->rst_lines_cnt; i++) {
1596                 const char *rst_line = oh->rst_lines[i].name;
1597                 if (!strcmp(rst_line, name)) {
1598                         ohri->rst_shift = oh->rst_lines[i].rst_shift;
1599                         ohri->st_shift = oh->rst_lines[i].st_shift;
1600                         pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1601                                  oh->name, __func__, rst_line, ohri->rst_shift,
1602                                  ohri->st_shift);
1603
1604                         return 0;
1605                 }
1606         }
1607
1608         return -ENOENT;
1609 }
1610
1611 /**
1612  * _assert_hardreset - assert the HW reset line of submodules
1613  * contained in the hwmod module.
1614  * @oh: struct omap_hwmod *
1615  * @name: name of the reset line to lookup and assert
1616  *
1617  * Some IP like dsp, ipu or iva contain processor that require an HW
1618  * reset line to be assert / deassert in order to enable fully the IP.
1619  * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1620  * asserting the hardreset line on the currently-booted SoC, or passes
1621  * along the return value from _lookup_hardreset() or the SoC's
1622  * assert_hardreset code.
1623  */
1624 static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1625 {
1626         struct omap_hwmod_rst_info ohri;
1627         int ret = -EINVAL;
1628
1629         if (!oh)
1630                 return -EINVAL;
1631
1632         if (!soc_ops.assert_hardreset)
1633                 return -ENOSYS;
1634
1635         ret = _lookup_hardreset(oh, name, &ohri);
1636         if (ret < 0)
1637                 return ret;
1638
1639         ret = soc_ops.assert_hardreset(oh, &ohri);
1640
1641         return ret;
1642 }
1643
1644 /**
1645  * _deassert_hardreset - deassert the HW reset line of submodules contained
1646  * in the hwmod module.
1647  * @oh: struct omap_hwmod *
1648  * @name: name of the reset line to look up and deassert
1649  *
1650  * Some IP like dsp, ipu or iva contain processor that require an HW
1651  * reset line to be assert / deassert in order to enable fully the IP.
1652  * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1653  * deasserting the hardreset line on the currently-booted SoC, or passes
1654  * along the return value from _lookup_hardreset() or the SoC's
1655  * deassert_hardreset code.
1656  */
1657 static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1658 {
1659         struct omap_hwmod_rst_info ohri;
1660         int ret = -EINVAL;
1661         int hwsup = 0;
1662
1663         if (!oh)
1664                 return -EINVAL;
1665
1666         if (!soc_ops.deassert_hardreset)
1667                 return -ENOSYS;
1668
1669         ret = _lookup_hardreset(oh, name, &ohri);
1670         if (ret < 0)
1671                 return ret;
1672
1673         if (oh->clkdm) {
1674                 /*
1675                  * A clockdomain must be in SW_SUP otherwise reset
1676                  * might not be completed. The clockdomain can be set
1677                  * in HW_AUTO only when the module become ready.
1678                  */
1679                 hwsup = clkdm_in_hwsup(oh->clkdm);
1680                 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1681                 if (ret) {
1682                         WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1683                              oh->name, oh->clkdm->name, ret);
1684                         return ret;
1685                 }
1686         }
1687
1688         _enable_clocks(oh);
1689         if (soc_ops.enable_module)
1690                 soc_ops.enable_module(oh);
1691
1692         ret = soc_ops.deassert_hardreset(oh, &ohri);
1693
1694         if (soc_ops.disable_module)
1695                 soc_ops.disable_module(oh);
1696         _disable_clocks(oh);
1697
1698         if (ret == -EBUSY)
1699                 pr_warn("omap_hwmod: %s: failed to hardreset\n", oh->name);
1700
1701         if (oh->clkdm) {
1702                 /*
1703                  * Set the clockdomain to HW_AUTO, assuming that the
1704                  * previous state was HW_AUTO.
1705                  */
1706                 if (hwsup)
1707                         clkdm_allow_idle(oh->clkdm);
1708
1709                 clkdm_hwmod_disable(oh->clkdm, oh);
1710         }
1711
1712         return ret;
1713 }
1714
1715 /**
1716  * _read_hardreset - read the HW reset line state of submodules
1717  * contained in the hwmod module
1718  * @oh: struct omap_hwmod *
1719  * @name: name of the reset line to look up and read
1720  *
1721  * Return the state of the reset line.  Returns -EINVAL if @oh is
1722  * null, -ENOSYS if we have no way of reading the hardreset line
1723  * status on the currently-booted SoC, or passes along the return
1724  * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1725  * code.
1726  */
1727 static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1728 {
1729         struct omap_hwmod_rst_info ohri;
1730         int ret = -EINVAL;
1731
1732         if (!oh)
1733                 return -EINVAL;
1734
1735         if (!soc_ops.is_hardreset_asserted)
1736                 return -ENOSYS;
1737
1738         ret = _lookup_hardreset(oh, name, &ohri);
1739         if (ret < 0)
1740                 return ret;
1741
1742         return soc_ops.is_hardreset_asserted(oh, &ohri);
1743 }
1744
1745 /**
1746  * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
1747  * @oh: struct omap_hwmod *
1748  *
1749  * If all hardreset lines associated with @oh are asserted, then return true.
1750  * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1751  * associated with @oh are asserted, then return false.
1752  * This function is used to avoid executing some parts of the IP block
1753  * enable/disable sequence if its hardreset line is set.
1754  */
1755 static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
1756 {
1757         int i, rst_cnt = 0;
1758
1759         if (oh->rst_lines_cnt == 0)
1760                 return false;
1761
1762         for (i = 0; i < oh->rst_lines_cnt; i++)
1763                 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1764                         rst_cnt++;
1765
1766         if (oh->rst_lines_cnt == rst_cnt)
1767                 return true;
1768
1769         return false;
1770 }
1771
1772 /**
1773  * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1774  * hard-reset
1775  * @oh: struct omap_hwmod *
1776  *
1777  * If any hardreset lines associated with @oh are asserted, then
1778  * return true.  Otherwise, if no hardreset lines associated with @oh
1779  * are asserted, or if @oh has no hardreset lines, then return false.
1780  * This function is used to avoid executing some parts of the IP block
1781  * enable/disable sequence if any hardreset line is set.
1782  */
1783 static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1784 {
1785         int rst_cnt = 0;
1786         int i;
1787
1788         for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1789                 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1790                         rst_cnt++;
1791
1792         return (rst_cnt) ? true : false;
1793 }
1794
1795 /**
1796  * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1797  * @oh: struct omap_hwmod *
1798  *
1799  * Disable the PRCM module mode related to the hwmod @oh.
1800  * Return EINVAL if the modulemode is not supported and 0 in case of success.
1801  */
1802 static int _omap4_disable_module(struct omap_hwmod *oh)
1803 {
1804         int v;
1805
1806         if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1807                 return -EINVAL;
1808
1809         /*
1810          * Since integration code might still be doing something, only
1811          * disable if all lines are under hardreset.
1812          */
1813         if (_are_any_hardreset_lines_asserted(oh))
1814                 return 0;
1815
1816         pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1817
1818         omap_cm_module_disable(oh->clkdm->prcm_partition, oh->clkdm->cm_inst,
1819                                oh->prcm.omap4.clkctrl_offs);
1820
1821         v = _omap4_wait_target_disable(oh);
1822         if (v)
1823                 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1824                         oh->name);
1825
1826         return 0;
1827 }
1828
1829 /**
1830  * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
1831  * @oh: struct omap_hwmod *
1832  *
1833  * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit.  hwmod must be
1834  * enabled for this to work.  Returns -ENOENT if the hwmod cannot be
1835  * reset this way, -EINVAL if the hwmod is in the wrong state,
1836  * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
1837  *
1838  * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
1839  * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
1840  * use the SYSCONFIG softreset bit to provide the status.
1841  *
1842  * Note that some IP like McBSP do have reset control but don't have
1843  * reset status.
1844  */
1845 static int _ocp_softreset(struct omap_hwmod *oh)
1846 {
1847         u32 v;
1848         int c = 0;
1849         int ret = 0;
1850
1851         if (!oh->class->sysc ||
1852             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
1853                 return -ENOENT;
1854
1855         /* clocks must be on for this operation */
1856         if (oh->_state != _HWMOD_STATE_ENABLED) {
1857                 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1858                         oh->name);
1859                 return -EINVAL;
1860         }
1861
1862         /* For some modules, all optionnal clocks need to be enabled as well */
1863         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1864                 _enable_optional_clocks(oh);
1865
1866         pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
1867
1868         v = oh->_sysc_cache;
1869         ret = _set_softreset(oh, &v);
1870         if (ret)
1871                 goto dis_opt_clks;
1872
1873         _write_sysconfig(v, oh);
1874
1875         if (oh->class->sysc->srst_udelay)
1876                 udelay(oh->class->sysc->srst_udelay);
1877
1878         c = _wait_softreset_complete(oh);
1879         if (c == MAX_MODULE_SOFTRESET_WAIT) {
1880                 pr_warn("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1881                         oh->name, MAX_MODULE_SOFTRESET_WAIT);
1882                 ret = -ETIMEDOUT;
1883                 goto dis_opt_clks;
1884         } else {
1885                 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
1886         }
1887
1888         ret = _clear_softreset(oh, &v);
1889         if (ret)
1890                 goto dis_opt_clks;
1891
1892         _write_sysconfig(v, oh);
1893
1894         /*
1895          * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1896          * _wait_target_ready() or _reset()
1897          */
1898
1899 dis_opt_clks:
1900         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1901                 _disable_optional_clocks(oh);
1902
1903         return ret;
1904 }
1905
1906 /**
1907  * _reset - reset an omap_hwmod
1908  * @oh: struct omap_hwmod *
1909  *
1910  * Resets an omap_hwmod @oh.  If the module has a custom reset
1911  * function pointer defined, then call it to reset the IP block, and
1912  * pass along its return value to the caller.  Otherwise, if the IP
1913  * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1914  * associated with it, call a function to reset the IP block via that
1915  * method, and pass along the return value to the caller.  Finally, if
1916  * the IP block has some hardreset lines associated with it, assert
1917  * all of those, but do _not_ deassert them. (This is because driver
1918  * authors have expressed an apparent requirement to control the
1919  * deassertion of the hardreset lines themselves.)
1920  *
1921  * The default software reset mechanism for most OMAP IP blocks is
1922  * triggered via the OCP_SYSCONFIG.SOFTRESET bit.  However, some
1923  * hwmods cannot be reset via this method.  Some are not targets and
1924  * therefore have no OCP header registers to access.  Others (like the
1925  * IVA) have idiosyncratic reset sequences.  So for these relatively
1926  * rare cases, custom reset code can be supplied in the struct
1927  * omap_hwmod_class .reset function pointer.
1928  *
1929  * _set_dmadisable() is called to set the DMADISABLE bit so that it
1930  * does not prevent idling of the system. This is necessary for cases
1931  * where ROMCODE/BOOTLOADER uses dma and transfers control to the
1932  * kernel without disabling dma.
1933  *
1934  * Passes along the return value from either _ocp_softreset() or the
1935  * custom reset function - these must return -EINVAL if the hwmod
1936  * cannot be reset this way or if the hwmod is in the wrong state,
1937  * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
1938  */
1939 static int _reset(struct omap_hwmod *oh)
1940 {
1941         int i, r;
1942
1943         pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1944
1945         if (oh->class->reset) {
1946                 r = oh->class->reset(oh);
1947         } else {
1948                 if (oh->rst_lines_cnt > 0) {
1949                         for (i = 0; i < oh->rst_lines_cnt; i++)
1950                                 _assert_hardreset(oh, oh->rst_lines[i].name);
1951                         return 0;
1952                 } else {
1953                         r = _ocp_softreset(oh);
1954                         if (r == -ENOENT)
1955                                 r = 0;
1956                 }
1957         }
1958
1959         _set_dmadisable(oh);
1960
1961         /*
1962          * OCP_SYSCONFIG bits need to be reprogrammed after a
1963          * softreset.  The _enable() function should be split to avoid
1964          * the rewrite of the OCP_SYSCONFIG register.
1965          */
1966         if (oh->class->sysc) {
1967                 _update_sysc_cache(oh);
1968                 _enable_sysc(oh);
1969         }
1970
1971         return r;
1972 }
1973
1974 /**
1975  * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain
1976  *
1977  * Call the appropriate PRM function to clear any logged I/O chain
1978  * wakeups and to reconfigure the chain.  This apparently needs to be
1979  * done upon every mux change.  Since hwmods can be concurrently
1980  * enabled and idled, hold a spinlock around the I/O chain
1981  * reconfiguration sequence.  No return value.
1982  *
1983  * XXX When the PRM code is moved to drivers, this function can be removed,
1984  * as the PRM infrastructure should abstract this.
1985  */
1986 static void _reconfigure_io_chain(void)
1987 {
1988         unsigned long flags;
1989
1990         spin_lock_irqsave(&io_chain_lock, flags);
1991
1992         omap_prm_reconfigure_io_chain();
1993
1994         spin_unlock_irqrestore(&io_chain_lock, flags);
1995 }
1996
1997 /**
1998  * _omap4_update_context_lost - increment hwmod context loss counter if
1999  * hwmod context was lost, and clear hardware context loss reg
2000  * @oh: hwmod to check for context loss
2001  *
2002  * If the PRCM indicates that the hwmod @oh lost context, increment
2003  * our in-memory context loss counter, and clear the RM_*_CONTEXT
2004  * bits. No return value.
2005  */
2006 static void _omap4_update_context_lost(struct omap_hwmod *oh)
2007 {
2008         if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
2009                 return;
2010
2011         if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2012                                           oh->clkdm->pwrdm.ptr->prcm_offs,
2013                                           oh->prcm.omap4.context_offs))
2014                 return;
2015
2016         oh->prcm.omap4.context_lost_counter++;
2017         prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2018                                          oh->clkdm->pwrdm.ptr->prcm_offs,
2019                                          oh->prcm.omap4.context_offs);
2020 }
2021
2022 /**
2023  * _omap4_get_context_lost - get context loss counter for a hwmod
2024  * @oh: hwmod to get context loss counter for
2025  *
2026  * Returns the in-memory context loss counter for a hwmod.
2027  */
2028 static int _omap4_get_context_lost(struct omap_hwmod *oh)
2029 {
2030         return oh->prcm.omap4.context_lost_counter;
2031 }
2032
2033 /**
2034  * _enable_preprogram - Pre-program an IP block during the _enable() process
2035  * @oh: struct omap_hwmod *
2036  *
2037  * Some IP blocks (such as AESS) require some additional programming
2038  * after enable before they can enter idle.  If a function pointer to
2039  * do so is present in the hwmod data, then call it and pass along the
2040  * return value; otherwise, return 0.
2041  */
2042 static int _enable_preprogram(struct omap_hwmod *oh)
2043 {
2044         if (!oh->class->enable_preprogram)
2045                 return 0;
2046
2047         return oh->class->enable_preprogram(oh);
2048 }
2049
2050 /**
2051  * _enable - enable an omap_hwmod
2052  * @oh: struct omap_hwmod *
2053  *
2054  * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
2055  * register target.  Returns -EINVAL if the hwmod is in the wrong
2056  * state or passes along the return value of _wait_target_ready().
2057  */
2058 static int _enable(struct omap_hwmod *oh)
2059 {
2060         int r;
2061         int hwsup = 0;
2062
2063         pr_debug("omap_hwmod: %s: enabling\n", oh->name);
2064
2065         /*
2066          * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
2067          * state at init.  Now that someone is really trying to enable
2068          * them, just ensure that the hwmod mux is set.
2069          */
2070         if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
2071                 /*
2072                  * If the caller has mux data populated, do the mux'ing
2073                  * which wouldn't have been done as part of the _enable()
2074                  * done during setup.
2075                  */
2076                 if (oh->mux)
2077                         omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2078
2079                 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
2080                 return 0;
2081         }
2082
2083         if (oh->_state != _HWMOD_STATE_INITIALIZED &&
2084             oh->_state != _HWMOD_STATE_IDLE &&
2085             oh->_state != _HWMOD_STATE_DISABLED) {
2086                 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
2087                         oh->name);
2088                 return -EINVAL;
2089         }
2090
2091         /*
2092          * If an IP block contains HW reset lines and all of them are
2093          * asserted, we let integration code associated with that
2094          * block handle the enable.  We've received very little
2095          * information on what those driver authors need, and until
2096          * detailed information is provided and the driver code is
2097          * posted to the public lists, this is probably the best we
2098          * can do.
2099          */
2100         if (_are_all_hardreset_lines_asserted(oh))
2101                 return 0;
2102
2103         /* Mux pins for device runtime if populated */
2104         if (oh->mux && (!oh->mux->enabled ||
2105                         ((oh->_state == _HWMOD_STATE_IDLE) &&
2106                          oh->mux->pads_dynamic))) {
2107                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2108                 _reconfigure_io_chain();
2109         } else if (oh->flags & HWMOD_RECONFIG_IO_CHAIN) {
2110                 _reconfigure_io_chain();
2111         }
2112
2113         _add_initiator_dep(oh, mpu_oh);
2114
2115         if (oh->clkdm) {
2116                 /*
2117                  * A clockdomain must be in SW_SUP before enabling
2118                  * completely the module. The clockdomain can be set
2119                  * in HW_AUTO only when the module become ready.
2120                  */
2121                 hwsup = clkdm_in_hwsup(oh->clkdm) &&
2122                         !clkdm_missing_idle_reporting(oh->clkdm);
2123                 r = clkdm_hwmod_enable(oh->clkdm, oh);
2124                 if (r) {
2125                         WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
2126                              oh->name, oh->clkdm->name, r);
2127                         return r;
2128                 }
2129         }
2130
2131         _enable_clocks(oh);
2132         if (soc_ops.enable_module)
2133                 soc_ops.enable_module(oh);
2134         if (oh->flags & HWMOD_BLOCK_WFI)
2135                 cpu_idle_poll_ctrl(true);
2136
2137         if (soc_ops.update_context_lost)
2138                 soc_ops.update_context_lost(oh);
2139
2140         r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
2141                 -EINVAL;
2142         if (!r) {
2143                 /*
2144                  * Set the clockdomain to HW_AUTO only if the target is ready,
2145                  * assuming that the previous state was HW_AUTO
2146                  */
2147                 if (oh->clkdm && hwsup)
2148                         clkdm_allow_idle(oh->clkdm);
2149
2150                 oh->_state = _HWMOD_STATE_ENABLED;
2151
2152                 /* Access the sysconfig only if the target is ready */
2153                 if (oh->class->sysc) {
2154                         if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
2155                                 _update_sysc_cache(oh);
2156                         _enable_sysc(oh);
2157                 }
2158                 r = _enable_preprogram(oh);
2159         } else {
2160                 if (soc_ops.disable_module)
2161                         soc_ops.disable_module(oh);
2162                 _disable_clocks(oh);
2163                 pr_err("omap_hwmod: %s: _wait_target_ready failed: %d\n",
2164                        oh->name, r);
2165
2166                 if (oh->clkdm)
2167                         clkdm_hwmod_disable(oh->clkdm, oh);
2168         }
2169
2170         return r;
2171 }
2172
2173 /**
2174  * _idle - idle an omap_hwmod
2175  * @oh: struct omap_hwmod *
2176  *
2177  * Idles an omap_hwmod @oh.  This should be called once the hwmod has
2178  * no further work.  Returns -EINVAL if the hwmod is in the wrong
2179  * state or returns 0.
2180  */
2181 static int _idle(struct omap_hwmod *oh)
2182 {
2183         pr_debug("omap_hwmod: %s: idling\n", oh->name);
2184
2185         if (oh->_state != _HWMOD_STATE_ENABLED) {
2186                 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2187                         oh->name);
2188                 return -EINVAL;
2189         }
2190
2191         if (_are_all_hardreset_lines_asserted(oh))
2192                 return 0;
2193
2194         if (oh->class->sysc)
2195                 _idle_sysc(oh);
2196         _del_initiator_dep(oh, mpu_oh);
2197
2198         if (oh->flags & HWMOD_BLOCK_WFI)
2199                 cpu_idle_poll_ctrl(false);
2200         if (soc_ops.disable_module)
2201                 soc_ops.disable_module(oh);
2202
2203         /*
2204          * The module must be in idle mode before disabling any parents
2205          * clocks. Otherwise, the parent clock might be disabled before
2206          * the module transition is done, and thus will prevent the
2207          * transition to complete properly.
2208          */
2209         _disable_clocks(oh);
2210         if (oh->clkdm)
2211                 clkdm_hwmod_disable(oh->clkdm, oh);
2212
2213         /* Mux pins for device idle if populated */
2214         if (oh->mux && oh->mux->pads_dynamic) {
2215                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
2216                 _reconfigure_io_chain();
2217         } else if (oh->flags & HWMOD_RECONFIG_IO_CHAIN) {
2218                 _reconfigure_io_chain();
2219         }
2220
2221         oh->_state = _HWMOD_STATE_IDLE;
2222
2223         return 0;
2224 }
2225
2226 /**
2227  * _shutdown - shutdown an omap_hwmod
2228  * @oh: struct omap_hwmod *
2229  *
2230  * Shut down an omap_hwmod @oh.  This should be called when the driver
2231  * used for the hwmod is removed or unloaded or if the driver is not
2232  * used by the system.  Returns -EINVAL if the hwmod is in the wrong
2233  * state or returns 0.
2234  */
2235 static int _shutdown(struct omap_hwmod *oh)
2236 {
2237         int ret, i;
2238         u8 prev_state;
2239
2240         if (oh->_state != _HWMOD_STATE_IDLE &&
2241             oh->_state != _HWMOD_STATE_ENABLED) {
2242                 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2243                         oh->name);
2244                 return -EINVAL;
2245         }
2246
2247         if (_are_all_hardreset_lines_asserted(oh))
2248                 return 0;
2249
2250         pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2251
2252         if (oh->class->pre_shutdown) {
2253                 prev_state = oh->_state;
2254                 if (oh->_state == _HWMOD_STATE_IDLE)
2255                         _enable(oh);
2256                 ret = oh->class->pre_shutdown(oh);
2257                 if (ret) {
2258                         if (prev_state == _HWMOD_STATE_IDLE)
2259                                 _idle(oh);
2260                         return ret;
2261                 }
2262         }
2263
2264         if (oh->class->sysc) {
2265                 if (oh->_state == _HWMOD_STATE_IDLE)
2266                         _enable(oh);
2267                 _shutdown_sysc(oh);
2268         }
2269
2270         /* clocks and deps are already disabled in idle */
2271         if (oh->_state == _HWMOD_STATE_ENABLED) {
2272                 _del_initiator_dep(oh, mpu_oh);
2273                 /* XXX what about the other system initiators here? dma, dsp */
2274                 if (oh->flags & HWMOD_BLOCK_WFI)
2275                         cpu_idle_poll_ctrl(false);
2276                 if (soc_ops.disable_module)
2277                         soc_ops.disable_module(oh);
2278                 _disable_clocks(oh);
2279                 if (oh->clkdm)
2280                         clkdm_hwmod_disable(oh->clkdm, oh);
2281         }
2282         /* XXX Should this code also force-disable the optional clocks? */
2283
2284         for (i = 0; i < oh->rst_lines_cnt; i++)
2285                 _assert_hardreset(oh, oh->rst_lines[i].name);
2286
2287         /* Mux pins to safe mode or use populated off mode values */
2288         if (oh->mux)
2289                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
2290
2291         oh->_state = _HWMOD_STATE_DISABLED;
2292
2293         return 0;
2294 }
2295
2296 static int of_dev_find_hwmod(struct device_node *np,
2297                              struct omap_hwmod *oh)
2298 {
2299         int count, i, res;
2300         const char *p;
2301
2302         count = of_property_count_strings(np, "ti,hwmods");
2303         if (count < 1)
2304                 return -ENODEV;
2305
2306         for (i = 0; i < count; i++) {
2307                 res = of_property_read_string_index(np, "ti,hwmods",
2308                                                     i, &p);
2309                 if (res)
2310                         continue;
2311                 if (!strcmp(p, oh->name)) {
2312                         pr_debug("omap_hwmod: dt %s[%i] uses hwmod %s\n",
2313                                  np->name, i, oh->name);
2314                         return i;
2315                 }
2316         }
2317
2318         return -ENODEV;
2319 }
2320
2321 /**
2322  * of_dev_hwmod_lookup - look up needed hwmod from dt blob
2323  * @np: struct device_node *
2324  * @oh: struct omap_hwmod *
2325  * @index: index of the entry found
2326  * @found: struct device_node * found or NULL
2327  *
2328  * Parse the dt blob and find out needed hwmod. Recursive function is
2329  * implemented to take care hierarchical dt blob parsing.
2330  * Return: Returns 0 on success, -ENODEV when not found.
2331  */
2332 static int of_dev_hwmod_lookup(struct device_node *np,
2333                                struct omap_hwmod *oh,
2334                                int *index,
2335                                struct device_node **found)
2336 {
2337         struct device_node *np0 = NULL;
2338         int res;
2339
2340         res = of_dev_find_hwmod(np, oh);
2341         if (res >= 0) {
2342                 *found = np;
2343                 *index = res;
2344                 return 0;
2345         }
2346
2347         for_each_child_of_node(np, np0) {
2348                 struct device_node *fc;
2349                 int i;
2350
2351                 res = of_dev_hwmod_lookup(np0, oh, &i, &fc);
2352                 if (res == 0) {
2353                         *found = fc;
2354                         *index = i;
2355                         return 0;
2356                 }
2357         }
2358
2359         *found = NULL;
2360         *index = 0;
2361
2362         return -ENODEV;
2363 }
2364
2365 /**
2366  * _init_mpu_rt_base - populate the virtual address for a hwmod
2367  * @oh: struct omap_hwmod * to locate the virtual address
2368  * @data: (unused, caller should pass NULL)
2369  * @index: index of the reg entry iospace in device tree
2370  * @np: struct device_node * of the IP block's device node in the DT data
2371  *
2372  * Cache the virtual address used by the MPU to access this IP block's
2373  * registers.  This address is needed early so the OCP registers that
2374  * are part of the device's address space can be ioremapped properly.
2375  *
2376  * If SYSC access is not needed, the registers will not be remapped
2377  * and non-availability of MPU access is not treated as an error.
2378  *
2379  * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and
2380  * -ENXIO on absent or invalid register target address space.
2381  */
2382 static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data,
2383                                     int index, struct device_node *np)
2384 {
2385         struct omap_hwmod_addr_space *mem;
2386         void __iomem *va_start = NULL;
2387
2388         if (!oh)
2389                 return -EINVAL;
2390
2391         _save_mpu_port_index(oh);
2392
2393         /* if we don't need sysc access we don't need to ioremap */
2394         if (!oh->class->sysc)
2395                 return 0;
2396
2397         /* we can't continue without MPU PORT if we need sysc access */
2398         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2399                 return -ENXIO;
2400
2401         mem = _find_mpu_rt_addr_space(oh);
2402         if (!mem) {
2403                 pr_debug("omap_hwmod: %s: no MPU register target found\n",
2404                          oh->name);
2405
2406                 /* Extract the IO space from device tree blob */
2407                 if (!np) {
2408                         pr_err("omap_hwmod: %s: no dt node\n", oh->name);
2409                         return -ENXIO;
2410                 }
2411
2412                 va_start = of_iomap(np, index + oh->mpu_rt_idx);
2413         } else {
2414                 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
2415         }
2416
2417         if (!va_start) {
2418                 if (mem)
2419                         pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
2420                 else
2421                         pr_err("omap_hwmod: %s: Missing dt reg%i for %s\n",
2422                                oh->name, index, np->full_name);
2423                 return -ENXIO;
2424         }
2425
2426         pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2427                  oh->name, va_start);
2428
2429         oh->_mpu_rt_va = va_start;
2430         return 0;
2431 }
2432
2433 /**
2434  * _init - initialize internal data for the hwmod @oh
2435  * @oh: struct omap_hwmod *
2436  * @n: (unused)
2437  *
2438  * Look up the clocks and the address space used by the MPU to access
2439  * registers belonging to the hwmod @oh.  @oh must already be
2440  * registered at this point.  This is the first of two phases for
2441  * hwmod initialization.  Code called here does not touch any hardware
2442  * registers, it simply prepares internal data structures.  Returns 0
2443  * upon success or if the hwmod isn't registered or if the hwmod's
2444  * address space is not defined, or -EINVAL upon failure.
2445  */
2446 static int __init _init(struct omap_hwmod *oh, void *data)
2447 {
2448         int r, index;
2449         struct device_node *np = NULL;
2450
2451         if (oh->_state != _HWMOD_STATE_REGISTERED)
2452                 return 0;
2453
2454         if (of_have_populated_dt()) {
2455                 struct device_node *bus;
2456
2457                 bus = of_find_node_by_name(NULL, "ocp");
2458                 if (!bus)
2459                         return -ENODEV;
2460
2461                 r = of_dev_hwmod_lookup(bus, oh, &index, &np);
2462                 if (r)
2463                         pr_debug("omap_hwmod: %s missing dt data\n", oh->name);
2464                 else if (np && index)
2465                         pr_warn("omap_hwmod: %s using broken dt data from %s\n",
2466                                 oh->name, np->name);
2467         }
2468
2469         r = _init_mpu_rt_base(oh, NULL, index, np);
2470         if (r < 0) {
2471                 WARN(1, "omap_hwmod: %s: doesn't have mpu register target base\n",
2472                      oh->name);
2473                 return 0;
2474         }
2475
2476         r = _init_clocks(oh, NULL);
2477         if (r < 0) {
2478                 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2479                 return -EINVAL;
2480         }
2481
2482         if (np) {
2483                 if (of_find_property(np, "ti,no-reset-on-init", NULL))
2484                         oh->flags |= HWMOD_INIT_NO_RESET;
2485                 if (of_find_property(np, "ti,no-idle-on-init", NULL))
2486                         oh->flags |= HWMOD_INIT_NO_IDLE;
2487         }
2488
2489         oh->_state = _HWMOD_STATE_INITIALIZED;
2490
2491         return 0;
2492 }
2493
2494 /**
2495  * _setup_iclk_autoidle - configure an IP block's interface clocks
2496  * @oh: struct omap_hwmod *
2497  *
2498  * Set up the module's interface clocks.  XXX This function is still mostly
2499  * a stub; implementing this properly requires iclk autoidle usecounting in
2500  * the clock code.   No return value.
2501  */
2502 static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
2503 {
2504         struct omap_hwmod_ocp_if *os;
2505         struct list_head *p;
2506         int i = 0;
2507         if (oh->_state != _HWMOD_STATE_INITIALIZED)
2508                 return;
2509
2510         p = oh->slave_ports.next;
2511
2512         while (i < oh->slaves_cnt) {
2513                 os = _fetch_next_ocp_if(&p, &i);
2514                 if (!os->_clk)
2515                         continue;
2516
2517                 if (os->flags & OCPIF_SWSUP_IDLE) {
2518                         /* XXX omap_iclk_deny_idle(c); */
2519                 } else {
2520                         /* XXX omap_iclk_allow_idle(c); */
2521                         clk_enable(os->_clk);
2522                 }
2523         }
2524
2525         return;
2526 }
2527
2528 /**
2529  * _setup_reset - reset an IP block during the setup process
2530  * @oh: struct omap_hwmod *
2531  *
2532  * Reset the IP block corresponding to the hwmod @oh during the setup
2533  * process.  The IP block is first enabled so it can be successfully
2534  * reset.  Returns 0 upon success or a negative error code upon
2535  * failure.
2536  */
2537 static int __init _setup_reset(struct omap_hwmod *oh)
2538 {
2539         int r;
2540
2541         if (oh->_state != _HWMOD_STATE_INITIALIZED)
2542                 return -EINVAL;
2543
2544         if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
2545                 return -EPERM;
2546
2547         if (oh->rst_lines_cnt == 0) {
2548                 r = _enable(oh);
2549                 if (r) {
2550                         pr_warn("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2551                                 oh->name, oh->_state);
2552                         return -EINVAL;
2553                 }
2554         }
2555
2556         if (!(oh->flags & HWMOD_INIT_NO_RESET))
2557                 r = _reset(oh);
2558
2559         return r;
2560 }
2561
2562 /**
2563  * _setup_postsetup - transition to the appropriate state after _setup
2564  * @oh: struct omap_hwmod *
2565  *
2566  * Place an IP block represented by @oh into a "post-setup" state --
2567  * either IDLE, ENABLED, or DISABLED.  ("post-setup" simply means that
2568  * this function is called at the end of _setup().)  The postsetup
2569  * state for an IP block can be changed by calling
2570  * omap_hwmod_enter_postsetup_state() early in the boot process,
2571  * before one of the omap_hwmod_setup*() functions are called for the
2572  * IP block.
2573  *
2574  * The IP block stays in this state until a PM runtime-based driver is
2575  * loaded for that IP block.  A post-setup state of IDLE is
2576  * appropriate for almost all IP blocks with runtime PM-enabled
2577  * drivers, since those drivers are able to enable the IP block.  A
2578  * post-setup state of ENABLED is appropriate for kernels with PM
2579  * runtime disabled.  The DISABLED state is appropriate for unusual IP
2580  * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2581  * included, since the WDTIMER starts running on reset and will reset
2582  * the MPU if left active.
2583  *
2584  * This post-setup mechanism is deprecated.  Once all of the OMAP
2585  * drivers have been converted to use PM runtime, and all of the IP
2586  * block data and interconnect data is available to the hwmod code, it
2587  * should be possible to replace this mechanism with a "lazy reset"
2588  * arrangement.  In a "lazy reset" setup, each IP block is enabled
2589  * when the driver first probes, then all remaining IP blocks without
2590  * drivers are either shut down or enabled after the drivers have
2591  * loaded.  However, this cannot take place until the above
2592  * preconditions have been met, since otherwise the late reset code
2593  * has no way of knowing which IP blocks are in use by drivers, and
2594  * which ones are unused.
2595  *
2596  * No return value.
2597  */
2598 static void __init _setup_postsetup(struct omap_hwmod *oh)
2599 {
2600         u8 postsetup_state;
2601
2602         if (oh->rst_lines_cnt > 0)
2603                 return;
2604
2605         postsetup_state = oh->_postsetup_state;
2606         if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2607                 postsetup_state = _HWMOD_STATE_ENABLED;
2608
2609         /*
2610          * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2611          * it should be set by the core code as a runtime flag during startup
2612          */
2613         if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
2614             (postsetup_state == _HWMOD_STATE_IDLE)) {
2615                 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
2616                 postsetup_state = _HWMOD_STATE_ENABLED;
2617         }
2618
2619         if (postsetup_state == _HWMOD_STATE_IDLE)
2620                 _idle(oh);
2621         else if (postsetup_state == _HWMOD_STATE_DISABLED)
2622                 _shutdown(oh);
2623         else if (postsetup_state != _HWMOD_STATE_ENABLED)
2624                 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2625                      oh->name, postsetup_state);
2626
2627         return;
2628 }
2629
2630 /**
2631  * _setup - prepare IP block hardware for use
2632  * @oh: struct omap_hwmod *
2633  * @n: (unused, pass NULL)
2634  *
2635  * Configure the IP block represented by @oh.  This may include
2636  * enabling the IP block, resetting it, and placing it into a
2637  * post-setup state, depending on the type of IP block and applicable
2638  * flags.  IP blocks are reset to prevent any previous configuration
2639  * by the bootloader or previous operating system from interfering
2640  * with power management or other parts of the system.  The reset can
2641  * be avoided; see omap_hwmod_no_setup_reset().  This is the second of
2642  * two phases for hwmod initialization.  Code called here generally
2643  * affects the IP block hardware, or system integration hardware
2644  * associated with the IP block.  Returns 0.
2645  */
2646 static int __init _setup(struct omap_hwmod *oh, void *data)
2647 {
2648         if (oh->_state != _HWMOD_STATE_INITIALIZED)
2649                 return 0;
2650
2651         if (oh->parent_hwmod) {
2652                 int r;
2653
2654                 r = _enable(oh->parent_hwmod);
2655                 WARN(r, "hwmod: %s: setup: failed to enable parent hwmod %s\n",
2656                      oh->name, oh->parent_hwmod->name);
2657         }
2658
2659         _setup_iclk_autoidle(oh);
2660
2661         if (!_setup_reset(oh))
2662                 _setup_postsetup(oh);
2663
2664         if (oh->parent_hwmod) {
2665                 u8 postsetup_state;
2666
2667                 postsetup_state = oh->parent_hwmod->_postsetup_state;
2668
2669                 if (postsetup_state == _HWMOD_STATE_IDLE)
2670                         _idle(oh->parent_hwmod);
2671                 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2672                         _shutdown(oh->parent_hwmod);
2673                 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2674                         WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2675                              oh->parent_hwmod->name, postsetup_state);
2676         }
2677
2678         return 0;
2679 }
2680
2681 /**
2682  * _register - register a struct omap_hwmod
2683  * @oh: struct omap_hwmod *
2684  *
2685  * Registers the omap_hwmod @oh.  Returns -EEXIST if an omap_hwmod
2686  * already has been registered by the same name; -EINVAL if the
2687  * omap_hwmod is in the wrong state, if @oh is NULL, if the
2688  * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2689  * name, or if the omap_hwmod's class is missing a name; or 0 upon
2690  * success.
2691  *
2692  * XXX The data should be copied into bootmem, so the original data
2693  * should be marked __initdata and freed after init.  This would allow
2694  * unneeded omap_hwmods to be freed on multi-OMAP configurations.  Note
2695  * that the copy process would be relatively complex due to the large number
2696  * of substructures.
2697  */
2698 static int __init _register(struct omap_hwmod *oh)
2699 {
2700         if (!oh || !oh->name || !oh->class || !oh->class->name ||
2701             (oh->_state != _HWMOD_STATE_UNKNOWN))
2702                 return -EINVAL;
2703
2704         pr_debug("omap_hwmod: %s: registering\n", oh->name);
2705
2706         if (_lookup(oh->name))
2707                 return -EEXIST;
2708
2709         list_add_tail(&oh->node, &omap_hwmod_list);
2710
2711         INIT_LIST_HEAD(&oh->master_ports);
2712         INIT_LIST_HEAD(&oh->slave_ports);
2713         spin_lock_init(&oh->_lock);
2714         lockdep_set_class(&oh->_lock, &oh->hwmod_key);
2715
2716         oh->_state = _HWMOD_STATE_REGISTERED;
2717
2718         /*
2719          * XXX Rather than doing a strcmp(), this should test a flag
2720          * set in the hwmod data, inserted by the autogenerator code.
2721          */
2722         if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2723                 mpu_oh = oh;
2724
2725         return 0;
2726 }
2727
2728 /**
2729  * _alloc_links - return allocated memory for hwmod links
2730  * @ml: pointer to a struct omap_hwmod_link * for the master link
2731  * @sl: pointer to a struct omap_hwmod_link * for the slave link
2732  *
2733  * Return pointers to two struct omap_hwmod_link records, via the
2734  * addresses pointed to by @ml and @sl.  Will first attempt to return
2735  * memory allocated as part of a large initial block, but if that has
2736  * been exhausted, will allocate memory itself.  Since ideally this
2737  * second allocation path will never occur, the number of these
2738  * 'supplemental' allocations will be logged when debugging is
2739  * enabled.  Returns 0.
2740  */
2741 static int __init _alloc_links(struct omap_hwmod_link **ml,
2742                                struct omap_hwmod_link **sl)
2743 {
2744         unsigned int sz;
2745
2746         if ((free_ls + LINKS_PER_OCP_IF) <= max_ls) {
2747                 *ml = &linkspace[free_ls++];
2748                 *sl = &linkspace[free_ls++];
2749                 return 0;
2750         }
2751
2752         sz = sizeof(struct omap_hwmod_link) * LINKS_PER_OCP_IF;
2753
2754         *sl = NULL;
2755         *ml = memblock_virt_alloc(sz, 0);
2756
2757         *sl = (void *)(*ml) + sizeof(struct omap_hwmod_link);
2758
2759         ls_supp++;
2760         pr_debug("omap_hwmod: supplemental link allocations needed: %d\n",
2761                  ls_supp * LINKS_PER_OCP_IF);
2762
2763         return 0;
2764 };
2765
2766 /**
2767  * _add_link - add an interconnect between two IP blocks
2768  * @oi: pointer to a struct omap_hwmod_ocp_if record
2769  *
2770  * Add struct omap_hwmod_link records connecting the master IP block
2771  * specified in @oi->master to @oi, and connecting the slave IP block
2772  * specified in @oi->slave to @oi.  This code is assumed to run before
2773  * preemption or SMP has been enabled, thus avoiding the need for
2774  * locking in this code.  Changes to this assumption will require
2775  * additional locking.  Returns 0.
2776  */
2777 static int __init _add_link(struct omap_hwmod_ocp_if *oi)
2778 {
2779         struct omap_hwmod_link *ml, *sl;
2780
2781         pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2782                  oi->slave->name);
2783
2784         _alloc_links(&ml, &sl);
2785
2786         ml->ocp_if = oi;
2787         list_add(&ml->node, &oi->master->master_ports);
2788         oi->master->masters_cnt++;
2789
2790         sl->ocp_if = oi;
2791         list_add(&sl->node, &oi->slave->slave_ports);
2792         oi->slave->slaves_cnt++;
2793
2794         return 0;
2795 }
2796
2797 /**
2798  * _register_link - register a struct omap_hwmod_ocp_if
2799  * @oi: struct omap_hwmod_ocp_if *
2800  *
2801  * Registers the omap_hwmod_ocp_if record @oi.  Returns -EEXIST if it
2802  * has already been registered; -EINVAL if @oi is NULL or if the
2803  * record pointed to by @oi is missing required fields; or 0 upon
2804  * success.
2805  *
2806  * XXX The data should be copied into bootmem, so the original data
2807  * should be marked __initdata and freed after init.  This would allow
2808  * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2809  */
2810 static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2811 {
2812         if (!oi || !oi->master || !oi->slave || !oi->user)
2813                 return -EINVAL;
2814
2815         if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2816                 return -EEXIST;
2817
2818         pr_debug("omap_hwmod: registering link from %s to %s\n",
2819                  oi->master->name, oi->slave->name);
2820
2821         /*
2822          * Register the connected hwmods, if they haven't been
2823          * registered already
2824          */
2825         if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2826                 _register(oi->master);
2827
2828         if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2829                 _register(oi->slave);
2830
2831         _add_link(oi);
2832
2833         oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2834
2835         return 0;
2836 }
2837
2838 /**
2839  * _alloc_linkspace - allocate large block of hwmod links
2840  * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count
2841  *
2842  * Allocate a large block of struct omap_hwmod_link records.  This
2843  * improves boot time significantly by avoiding the need to allocate
2844  * individual records one by one.  If the number of records to
2845  * allocate in the block hasn't been manually specified, this function
2846  * will count the number of struct omap_hwmod_ocp_if records in @ois
2847  * and use that to determine the allocation size.  For SoC families
2848  * that require multiple list registrations, such as OMAP3xxx, this
2849  * estimation process isn't optimal, so manual estimation is advised
2850  * in those cases.  Returns -EEXIST if the allocation has already occurred
2851  * or 0 upon success.
2852  */
2853 static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois)
2854 {
2855         unsigned int i = 0;
2856         unsigned int sz;
2857
2858         if (linkspace) {
2859                 WARN(1, "linkspace already allocated\n");
2860                 return -EEXIST;
2861         }
2862
2863         if (max_ls == 0)
2864                 while (ois[i++])
2865                         max_ls += LINKS_PER_OCP_IF;
2866
2867         sz = sizeof(struct omap_hwmod_link) * max_ls;
2868
2869         pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n",
2870                  __func__, sz, max_ls);
2871
2872         linkspace = memblock_virt_alloc(sz, 0);
2873
2874         return 0;
2875 }
2876
2877 /* Static functions intended only for use in soc_ops field function pointers */
2878
2879 /**
2880  * _omap2xxx_3xxx_wait_target_ready - wait for a module to leave slave idle
2881  * @oh: struct omap_hwmod *
2882  *
2883  * Wait for a module @oh to leave slave idle.  Returns 0 if the module
2884  * does not have an IDLEST bit or if the module successfully leaves
2885  * slave idle; otherwise, pass along the return value of the
2886  * appropriate *_cm*_wait_module_ready() function.
2887  */
2888 static int _omap2xxx_3xxx_wait_target_ready(struct omap_hwmod *oh)
2889 {
2890         if (!oh)
2891                 return -EINVAL;
2892
2893         if (oh->flags & HWMOD_NO_IDLEST)
2894                 return 0;
2895
2896         if (!_find_mpu_rt_port(oh))
2897                 return 0;
2898
2899         /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2900
2901         return omap_cm_wait_module_ready(0, oh->prcm.omap2.module_offs,
2902                                          oh->prcm.omap2.idlest_reg_id,
2903                                          oh->prcm.omap2.idlest_idle_bit);
2904 }
2905
2906 /**
2907  * _omap4_wait_target_ready - wait for a module to leave slave idle
2908  * @oh: struct omap_hwmod *
2909  *
2910  * Wait for a module @oh to leave slave idle.  Returns 0 if the module
2911  * does not have an IDLEST bit or if the module successfully leaves
2912  * slave idle; otherwise, pass along the return value of the
2913  * appropriate *_cm*_wait_module_ready() function.
2914  */
2915 static int _omap4_wait_target_ready(struct omap_hwmod *oh)
2916 {
2917         if (!oh)
2918                 return -EINVAL;
2919
2920         if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
2921                 return 0;
2922
2923         if (!_find_mpu_rt_port(oh))
2924                 return 0;
2925
2926         /* XXX check module SIDLEMODE, hardreset status */
2927
2928         return omap_cm_wait_module_ready(oh->clkdm->prcm_partition,
2929                                          oh->clkdm->cm_inst,
2930                                          oh->prcm.omap4.clkctrl_offs, 0);
2931 }
2932
2933 /**
2934  * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2935  * @oh: struct omap_hwmod * to assert hardreset
2936  * @ohri: hardreset line data
2937  *
2938  * Call omap2_prm_assert_hardreset() with parameters extracted from
2939  * the hwmod @oh and the hardreset line data @ohri.  Only intended for
2940  * use as an soc_ops function pointer.  Passes along the return value
2941  * from omap2_prm_assert_hardreset().  XXX This function is scheduled
2942  * for removal when the PRM code is moved into drivers/.
2943  */
2944 static int _omap2_assert_hardreset(struct omap_hwmod *oh,
2945                                    struct omap_hwmod_rst_info *ohri)
2946 {
2947         return omap_prm_assert_hardreset(ohri->rst_shift, 0,
2948                                          oh->prcm.omap2.module_offs, 0);
2949 }
2950
2951 /**
2952  * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2953  * @oh: struct omap_hwmod * to deassert hardreset
2954  * @ohri: hardreset line data
2955  *
2956  * Call omap2_prm_deassert_hardreset() with parameters extracted from
2957  * the hwmod @oh and the hardreset line data @ohri.  Only intended for
2958  * use as an soc_ops function pointer.  Passes along the return value
2959  * from omap2_prm_deassert_hardreset().  XXX This function is
2960  * scheduled for removal when the PRM code is moved into drivers/.
2961  */
2962 static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
2963                                      struct omap_hwmod_rst_info *ohri)
2964 {
2965         return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift, 0,
2966                                            oh->prcm.omap2.module_offs, 0, 0);
2967 }
2968
2969 /**
2970  * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
2971  * @oh: struct omap_hwmod * to test hardreset
2972  * @ohri: hardreset line data
2973  *
2974  * Call omap2_prm_is_hardreset_asserted() with parameters extracted
2975  * from the hwmod @oh and the hardreset line data @ohri.  Only
2976  * intended for use as an soc_ops function pointer.  Passes along the
2977  * return value from omap2_prm_is_hardreset_asserted().  XXX This
2978  * function is scheduled for removal when the PRM code is moved into
2979  * drivers/.
2980  */
2981 static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
2982                                         struct omap_hwmod_rst_info *ohri)
2983 {
2984         return omap_prm_is_hardreset_asserted(ohri->st_shift, 0,
2985                                               oh->prcm.omap2.module_offs, 0);
2986 }
2987
2988 /**
2989  * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2990  * @oh: struct omap_hwmod * to assert hardreset
2991  * @ohri: hardreset line data
2992  *
2993  * Call omap4_prminst_assert_hardreset() with parameters extracted
2994  * from the hwmod @oh and the hardreset line data @ohri.  Only
2995  * intended for use as an soc_ops function pointer.  Passes along the
2996  * return value from omap4_prminst_assert_hardreset().  XXX This
2997  * function is scheduled for removal when the PRM code is moved into
2998  * drivers/.
2999  */
3000 static int _omap4_assert_hardreset(struct omap_hwmod *oh,
3001                                    struct omap_hwmod_rst_info *ohri)
3002 {
3003         if (!oh->clkdm)
3004                 return -EINVAL;
3005
3006         return omap_prm_assert_hardreset(ohri->rst_shift,
3007                                          oh->clkdm->pwrdm.ptr->prcm_partition,
3008                                          oh->clkdm->pwrdm.ptr->prcm_offs,
3009                                          oh->prcm.omap4.rstctrl_offs);
3010 }
3011
3012 /**
3013  * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
3014  * @oh: struct omap_hwmod * to deassert hardreset
3015  * @ohri: hardreset line data
3016  *
3017  * Call omap4_prminst_deassert_hardreset() with parameters extracted
3018  * from the hwmod @oh and the hardreset line data @ohri.  Only
3019  * intended for use as an soc_ops function pointer.  Passes along the
3020  * return value from omap4_prminst_deassert_hardreset().  XXX This
3021  * function is scheduled for removal when the PRM code is moved into
3022  * drivers/.
3023  */
3024 static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
3025                                      struct omap_hwmod_rst_info *ohri)
3026 {
3027         if (!oh->clkdm)
3028                 return -EINVAL;
3029
3030         if (ohri->st_shift)
3031                 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
3032                        oh->name, ohri->name);
3033         return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->rst_shift,
3034                                            oh->clkdm->pwrdm.ptr->prcm_partition,
3035                                            oh->clkdm->pwrdm.ptr->prcm_offs,
3036                                            oh->prcm.omap4.rstctrl_offs,
3037                                            oh->prcm.omap4.rstctrl_offs +
3038                                            OMAP4_RST_CTRL_ST_OFFSET);
3039 }
3040
3041 /**
3042  * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
3043  * @oh: struct omap_hwmod * to test hardreset
3044  * @ohri: hardreset line data
3045  *
3046  * Call omap4_prminst_is_hardreset_asserted() with parameters
3047  * extracted from the hwmod @oh and the hardreset line data @ohri.
3048  * Only intended for use as an soc_ops function pointer.  Passes along
3049  * the return value from omap4_prminst_is_hardreset_asserted().  XXX
3050  * This function is scheduled for removal when the PRM code is moved
3051  * into drivers/.
3052  */
3053 static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
3054                                         struct omap_hwmod_rst_info *ohri)
3055 {
3056         if (!oh->clkdm)
3057                 return -EINVAL;
3058
3059         return omap_prm_is_hardreset_asserted(ohri->rst_shift,
3060                                               oh->clkdm->pwrdm.ptr->
3061                                               prcm_partition,
3062                                               oh->clkdm->pwrdm.ptr->prcm_offs,
3063                                               oh->prcm.omap4.rstctrl_offs);
3064 }
3065
3066 /**
3067  * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3068  * @oh: struct omap_hwmod * to deassert hardreset
3069  * @ohri: hardreset line data
3070  *
3071  * Call am33xx_prminst_deassert_hardreset() with parameters extracted
3072  * from the hwmod @oh and the hardreset line data @ohri.  Only
3073  * intended for use as an soc_ops function pointer.  Passes along the
3074  * return value from am33xx_prminst_deassert_hardreset().  XXX This
3075  * function is scheduled for removal when the PRM code is moved into
3076  * drivers/.
3077  */
3078 static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
3079                                      struct omap_hwmod_rst_info *ohri)
3080 {
3081         return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift,
3082                                            oh->clkdm->pwrdm.ptr->prcm_partition,
3083                                            oh->clkdm->pwrdm.ptr->prcm_offs,
3084                                            oh->prcm.omap4.rstctrl_offs,
3085                                            oh->prcm.omap4.rstst_offs);
3086 }
3087
3088 /* Public functions */
3089
3090 u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
3091 {
3092         if (oh->flags & HWMOD_16BIT_REG)
3093                 return readw_relaxed(oh->_mpu_rt_va + reg_offs);
3094         else
3095                 return readl_relaxed(oh->_mpu_rt_va + reg_offs);
3096 }
3097
3098 void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
3099 {
3100         if (oh->flags & HWMOD_16BIT_REG)
3101                 writew_relaxed(v, oh->_mpu_rt_va + reg_offs);
3102         else
3103                 writel_relaxed(v, oh->_mpu_rt_va + reg_offs);
3104 }
3105
3106 /**
3107  * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
3108  * @oh: struct omap_hwmod *
3109  *
3110  * This is a public function exposed to drivers. Some drivers may need to do
3111  * some settings before and after resetting the device.  Those drivers after
3112  * doing the necessary settings could use this function to start a reset by
3113  * setting the SYSCONFIG.SOFTRESET bit.
3114  */
3115 int omap_hwmod_softreset(struct omap_hwmod *oh)
3116 {
3117         u32 v;
3118         int ret;
3119
3120         if (!oh || !(oh->_sysc_cache))
3121                 return -EINVAL;
3122
3123         v = oh->_sysc_cache;
3124         ret = _set_softreset(oh, &v);
3125         if (ret)
3126                 goto error;
3127         _write_sysconfig(v, oh);
3128
3129         ret = _clear_softreset(oh, &v);
3130         if (ret)
3131                 goto error;
3132         _write_sysconfig(v, oh);
3133
3134 error:
3135         return ret;
3136 }
3137
3138 /**
3139  * omap_hwmod_lookup - look up a registered omap_hwmod by name
3140  * @name: name of the omap_hwmod to look up
3141  *
3142  * Given a @name of an omap_hwmod, return a pointer to the registered
3143  * struct omap_hwmod *, or NULL upon error.
3144  */
3145 struct omap_hwmod *omap_hwmod_lookup(const char *name)
3146 {
3147         struct omap_hwmod *oh;
3148
3149         if (!name)
3150                 return NULL;
3151
3152         oh = _lookup(name);
3153
3154         return oh;
3155 }
3156
3157 /**
3158  * omap_hwmod_for_each - call function for each registered omap_hwmod
3159  * @fn: pointer to a callback function
3160  * @data: void * data to pass to callback function
3161  *
3162  * Call @fn for each registered omap_hwmod, passing @data to each
3163  * function.  @fn must return 0 for success or any other value for
3164  * failure.  If @fn returns non-zero, the iteration across omap_hwmods
3165  * will stop and the non-zero return value will be passed to the
3166  * caller of omap_hwmod_for_each().  @fn is called with
3167  * omap_hwmod_for_each() held.
3168  */
3169 int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
3170                         void *data)
3171 {
3172         struct omap_hwmod *temp_oh;
3173         int ret = 0;
3174
3175         if (!fn)
3176                 return -EINVAL;
3177
3178         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3179                 ret = (*fn)(temp_oh, data);
3180                 if (ret)
3181                         break;
3182         }
3183
3184         return ret;
3185 }
3186
3187 /**
3188  * omap_hwmod_register_links - register an array of hwmod links
3189  * @ois: pointer to an array of omap_hwmod_ocp_if to register
3190  *
3191  * Intended to be called early in boot before the clock framework is
3192  * initialized.  If @ois is not null, will register all omap_hwmods
3193  * listed in @ois that are valid for this chip.  Returns -EINVAL if
3194  * omap_hwmod_init() hasn't been called before calling this function,
3195  * -ENOMEM if the link memory area can't be allocated, or 0 upon
3196  * success.
3197  */
3198 int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
3199 {
3200         int r, i;
3201
3202         if (!inited)
3203                 return -EINVAL;
3204
3205         if (!ois)
3206                 return 0;
3207
3208         if (ois[0] == NULL) /* Empty list */
3209                 return 0;
3210
3211         if (!linkspace) {
3212                 if (_alloc_linkspace(ois)) {
3213                         pr_err("omap_hwmod: could not allocate link space\n");
3214                         return -ENOMEM;
3215                 }
3216         }
3217
3218         i = 0;
3219         do {
3220                 r = _register_link(ois[i]);
3221                 WARN(r && r != -EEXIST,
3222                      "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3223                      ois[i]->master->name, ois[i]->slave->name, r);
3224         } while (ois[++i]);
3225
3226         return 0;
3227 }
3228
3229 /**
3230  * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3231  * @oh: pointer to the hwmod currently being set up (usually not the MPU)
3232  *
3233  * If the hwmod data corresponding to the MPU subsystem IP block
3234  * hasn't been initialized and set up yet, do so now.  This must be
3235  * done first since sleep dependencies may be added from other hwmods
3236  * to the MPU.  Intended to be called only by omap_hwmod_setup*().  No
3237  * return value.
3238  */
3239 static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
3240 {
3241         if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3242                 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3243                        __func__, MPU_INITIATOR_NAME);
3244         else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3245                 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
3246 }
3247
3248 /**
3249  * omap_hwmod_setup_one - set up a single hwmod
3250  * @oh_name: const char * name of the already-registered hwmod to set up
3251  *
3252  * Initialize and set up a single hwmod.  Intended to be used for a
3253  * small number of early devices, such as the timer IP blocks used for
3254  * the scheduler clock.  Must be called after omap2_clk_init().
3255  * Resolves the struct clk names to struct clk pointers for each
3256  * registered omap_hwmod.  Also calls _setup() on each hwmod.  Returns
3257  * -EINVAL upon error or 0 upon success.
3258  */
3259 int __init omap_hwmod_setup_one(const char *oh_name)
3260 {
3261         struct omap_hwmod *oh;
3262
3263         pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3264
3265         oh = _lookup(oh_name);
3266         if (!oh) {
3267                 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3268                 return -EINVAL;
3269         }
3270
3271         _ensure_mpu_hwmod_is_setup(oh);
3272
3273         _init(oh, NULL);
3274         _setup(oh, NULL);
3275
3276         return 0;
3277 }
3278
3279 /**
3280  * omap_hwmod_setup_all - set up all registered IP blocks
3281  *
3282  * Initialize and set up all IP blocks registered with the hwmod code.
3283  * Must be called after omap2_clk_init().  Resolves the struct clk
3284  * names to struct clk pointers for each registered omap_hwmod.  Also
3285  * calls _setup() on each hwmod.  Returns 0 upon success.
3286  */
3287 static int __init omap_hwmod_setup_all(void)
3288 {
3289         _ensure_mpu_hwmod_is_setup(NULL);
3290
3291         omap_hwmod_for_each(_init, NULL);
3292         omap_hwmod_for_each(_setup, NULL);
3293
3294         return 0;
3295 }
3296 omap_core_initcall(omap_hwmod_setup_all);
3297
3298 /**
3299  * omap_hwmod_enable - enable an omap_hwmod
3300  * @oh: struct omap_hwmod *
3301  *
3302  * Enable an omap_hwmod @oh.  Intended to be called by omap_device_enable().
3303  * Returns -EINVAL on error or passes along the return value from _enable().
3304  */
3305 int omap_hwmod_enable(struct omap_hwmod *oh)
3306 {
3307         int r;
3308         unsigned long flags;
3309
3310         if (!oh)
3311                 return -EINVAL;
3312
3313         spin_lock_irqsave(&oh->_lock, flags);
3314         r = _enable(oh);
3315         spin_unlock_irqrestore(&oh->_lock, flags);
3316
3317         return r;
3318 }
3319
3320 /**
3321  * omap_hwmod_idle - idle an omap_hwmod
3322  * @oh: struct omap_hwmod *
3323  *
3324  * Idle an omap_hwmod @oh.  Intended to be called by omap_device_idle().
3325  * Returns -EINVAL on error or passes along the return value from _idle().
3326  */
3327 int omap_hwmod_idle(struct omap_hwmod *oh)
3328 {
3329         unsigned long flags;
3330
3331         if (!oh)
3332                 return -EINVAL;
3333
3334         spin_lock_irqsave(&oh->_lock, flags);
3335         _idle(oh);
3336         spin_unlock_irqrestore(&oh->_lock, flags);
3337
3338         return 0;
3339 }
3340
3341 /**
3342  * omap_hwmod_shutdown - shutdown an omap_hwmod
3343  * @oh: struct omap_hwmod *
3344  *
3345  * Shutdown an omap_hwmod @oh.  Intended to be called by
3346  * omap_device_shutdown().  Returns -EINVAL on error or passes along
3347  * the return value from _shutdown().
3348  */
3349 int omap_hwmod_shutdown(struct omap_hwmod *oh)
3350 {
3351         unsigned long flags;
3352
3353         if (!oh)
3354                 return -EINVAL;
3355
3356         spin_lock_irqsave(&oh->_lock, flags);
3357         _shutdown(oh);
3358         spin_unlock_irqrestore(&oh->_lock, flags);
3359
3360         return 0;
3361 }
3362
3363 /*
3364  * IP block data retrieval functions
3365  */
3366
3367 /**
3368  * omap_hwmod_count_resources - count number of struct resources needed by hwmod
3369  * @oh: struct omap_hwmod *
3370  * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
3371  *
3372  * Count the number of struct resource array elements necessary to
3373  * contain omap_hwmod @oh resources.  Intended to be called by code
3374  * that registers omap_devices.  Intended to be used to determine the
3375  * size of a dynamically-allocated struct resource array, before
3376  * calling omap_hwmod_fill_resources().  Returns the number of struct
3377  * resource array elements needed.
3378  *
3379  * XXX This code is not optimized.  It could attempt to merge adjacent
3380  * resource IDs.
3381  *
3382  */
3383 int omap_hwmod_count_resources(struct omap_hwmod *oh, unsigned long flags)
3384 {
3385         int ret = 0;
3386
3387         if (flags & IORESOURCE_IRQ)
3388                 ret += _count_mpu_irqs(oh);
3389
3390         if (flags & IORESOURCE_DMA)
3391                 ret += _count_sdma_reqs(oh);
3392
3393         if (flags & IORESOURCE_MEM) {
3394                 int i = 0;
3395                 struct omap_hwmod_ocp_if *os;
3396                 struct list_head *p = oh->slave_ports.next;
3397
3398                 while (i < oh->slaves_cnt) {
3399                         os = _fetch_next_ocp_if(&p, &i);
3400                         ret += _count_ocp_if_addr_spaces(os);
3401                 }
3402         }
3403
3404         return ret;
3405 }
3406
3407 /**
3408  * omap_hwmod_fill_resources - fill struct resource array with hwmod data
3409  * @oh: struct omap_hwmod *
3410  * @res: pointer to the first element of an array of struct resource to fill
3411  *
3412  * Fill the struct resource array @res with resource data from the
3413  * omap_hwmod @oh.  Intended to be called by code that registers
3414  * omap_devices.  See also omap_hwmod_count_resources().  Returns the
3415  * number of array elements filled.
3416  */
3417 int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
3418 {
3419         struct omap_hwmod_ocp_if *os;
3420         struct list_head *p;
3421         int i, j, mpu_irqs_cnt, sdma_reqs_cnt, addr_cnt;
3422         int r = 0;
3423
3424         /* For each IRQ, DMA, memory area, fill in array.*/
3425
3426         mpu_irqs_cnt = _count_mpu_irqs(oh);
3427         for (i = 0; i < mpu_irqs_cnt; i++) {
3428                 unsigned int irq;
3429
3430                 if (oh->xlate_irq)
3431                         irq = oh->xlate_irq((oh->mpu_irqs + i)->irq);
3432                 else
3433                         irq = (oh->mpu_irqs + i)->irq;
3434                 (res + r)->name = (oh->mpu_irqs + i)->name;
3435                 (res + r)->start = irq;
3436                 (res + r)->end = irq;
3437                 (res + r)->flags = IORESOURCE_IRQ;
3438                 r++;
3439         }
3440
3441         sdma_reqs_cnt = _count_sdma_reqs(oh);
3442         for (i = 0; i < sdma_reqs_cnt; i++) {
3443                 (res + r)->name = (oh->sdma_reqs + i)->name;
3444                 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3445                 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3446                 (res + r)->flags = IORESOURCE_DMA;
3447                 r++;
3448         }
3449
3450         p = oh->slave_ports.next;
3451
3452         i = 0;
3453         while (i < oh->slaves_cnt) {
3454                 os = _fetch_next_ocp_if(&p, &i);
3455                 addr_cnt = _count_ocp_if_addr_spaces(os);
3456
3457                 for (j = 0; j < addr_cnt; j++) {
3458                         (res + r)->name = (os->addr + j)->name;
3459                         (res + r)->start = (os->addr + j)->pa_start;
3460                         (res + r)->end = (os->addr + j)->pa_end;
3461                         (res + r)->flags = IORESOURCE_MEM;
3462                         r++;
3463                 }
3464         }
3465
3466         return r;
3467 }
3468
3469 /**
3470  * omap_hwmod_fill_dma_resources - fill struct resource array with dma data
3471  * @oh: struct omap_hwmod *
3472  * @res: pointer to the array of struct resource to fill
3473  *
3474  * Fill the struct resource array @res with dma resource data from the
3475  * omap_hwmod @oh.  Intended to be called by code that registers
3476  * omap_devices.  See also omap_hwmod_count_resources().  Returns the
3477  * number of array elements filled.
3478  */
3479 int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res)
3480 {
3481         int i, sdma_reqs_cnt;
3482         int r = 0;
3483
3484         sdma_reqs_cnt = _count_sdma_reqs(oh);
3485         for (i = 0; i < sdma_reqs_cnt; i++) {
3486                 (res + r)->name = (oh->sdma_reqs + i)->name;
3487                 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3488                 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3489                 (res + r)->flags = IORESOURCE_DMA;
3490                 r++;
3491         }
3492
3493         return r;
3494 }
3495
3496 /**
3497  * omap_hwmod_get_resource_byname - fetch IP block integration data by name
3498  * @oh: struct omap_hwmod * to operate on
3499  * @type: one of the IORESOURCE_* constants from include/linux/ioport.h
3500  * @name: pointer to the name of the data to fetch (optional)
3501  * @rsrc: pointer to a struct resource, allocated by the caller
3502  *
3503  * Retrieve MPU IRQ, SDMA request line, or address space start/end
3504  * data for the IP block pointed to by @oh.  The data will be filled
3505  * into a struct resource record pointed to by @rsrc.  The struct
3506  * resource must be allocated by the caller.  When @name is non-null,
3507  * the data associated with the matching entry in the IRQ/SDMA/address
3508  * space hwmod data arrays will be returned.  If @name is null, the
3509  * first array entry will be returned.  Data order is not meaningful
3510  * in hwmod data, so callers are strongly encouraged to use a non-null
3511  * @name whenever possible to avoid unpredictable effects if hwmod
3512  * data is later added that causes data ordering to change.  This
3513  * function is only intended for use by OMAP core code.  Device
3514  * drivers should not call this function - the appropriate bus-related
3515  * data accessor functions should be used instead.  Returns 0 upon
3516  * success or a negative error code upon error.
3517  */
3518 int omap_hwmod_get_resource_byname(struct omap_hwmod *oh, unsigned int type,
3519                                    const char *name, struct resource *rsrc)
3520 {
3521         int r;
3522         unsigned int irq, dma;
3523         u32 pa_start, pa_end;
3524
3525         if (!oh || !rsrc)
3526                 return -EINVAL;
3527
3528         if (type == IORESOURCE_IRQ) {
3529                 r = _get_mpu_irq_by_name(oh, name, &irq);
3530                 if (r)
3531                         return r;
3532
3533                 rsrc->start = irq;
3534                 rsrc->end = irq;
3535         } else if (type == IORESOURCE_DMA) {
3536                 r = _get_sdma_req_by_name(oh, name, &dma);
3537                 if (r)
3538                         return r;
3539
3540                 rsrc->start = dma;
3541                 rsrc->end = dma;
3542         } else if (type == IORESOURCE_MEM) {
3543                 r = _get_addr_space_by_name(oh, name, &pa_start, &pa_end);
3544                 if (r)
3545                         return r;
3546
3547                 rsrc->start = pa_start;
3548                 rsrc->end = pa_end;
3549         } else {
3550                 return -EINVAL;
3551         }
3552
3553         rsrc->flags = type;
3554         rsrc->name = name;
3555
3556         return 0;
3557 }
3558
3559 /**
3560  * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3561  * @oh: struct omap_hwmod *
3562  *
3563  * Return the powerdomain pointer associated with the OMAP module
3564  * @oh's main clock.  If @oh does not have a main clk, return the
3565  * powerdomain associated with the interface clock associated with the
3566  * module's MPU port. (XXX Perhaps this should use the SDMA port
3567  * instead?)  Returns NULL on error, or a struct powerdomain * on
3568  * success.
3569  */
3570 struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3571 {
3572         struct clk *c;
3573         struct omap_hwmod_ocp_if *oi;
3574         struct clockdomain *clkdm;
3575         struct clk_hw_omap *clk;
3576
3577         if (!oh)
3578                 return NULL;
3579
3580         if (oh->clkdm)
3581                 return oh->clkdm->pwrdm.ptr;
3582
3583         if (oh->_clk) {
3584                 c = oh->_clk;
3585         } else {
3586                 oi = _find_mpu_rt_port(oh);
3587                 if (!oi)
3588                         return NULL;
3589                 c = oi->_clk;
3590         }
3591
3592         clk = to_clk_hw_omap(__clk_get_hw(c));
3593         clkdm = clk->clkdm;
3594         if (!clkdm)
3595                 return NULL;
3596
3597         return clkdm->pwrdm.ptr;
3598 }
3599
3600 /**
3601  * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3602  * @oh: struct omap_hwmod *
3603  *
3604  * Returns the virtual address corresponding to the beginning of the
3605  * module's register target, in the address range that is intended to
3606  * be used by the MPU.  Returns the virtual address upon success or NULL
3607  * upon error.
3608  */
3609 void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3610 {
3611         if (!oh)
3612                 return NULL;
3613
3614         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3615                 return NULL;
3616
3617         if (oh->_state == _HWMOD_STATE_UNKNOWN)
3618                 return NULL;
3619
3620         return oh->_mpu_rt_va;
3621 }
3622
3623 /*
3624  * XXX what about functions for drivers to save/restore ocp_sysconfig
3625  * for context save/restore operations?
3626  */
3627
3628 /**
3629  * omap_hwmod_enable_wakeup - allow device to wake up the system
3630  * @oh: struct omap_hwmod *
3631  *
3632  * Sets the module OCP socket ENAWAKEUP bit to allow the module to
3633  * send wakeups to the PRCM, and enable I/O ring wakeup events for
3634  * this IP block if it has dynamic mux entries.  Eventually this
3635  * should set PRCM wakeup registers to cause the PRCM to receive
3636  * wakeup events from the module.  Does not set any wakeup routing
3637  * registers beyond this point - if the module is to wake up any other
3638  * module or subsystem, that must be set separately.  Called by
3639  * omap_device code.  Returns -EINVAL on error or 0 upon success.
3640  */
3641 int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
3642 {
3643         unsigned long flags;
3644         u32 v;
3645
3646         spin_lock_irqsave(&oh->_lock, flags);
3647
3648         if (oh->class->sysc &&
3649             (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3650                 v = oh->_sysc_cache;
3651                 _enable_wakeup(oh, &v);
3652                 _write_sysconfig(v, oh);
3653         }
3654
3655         _set_idle_ioring_wakeup(oh, true);
3656         spin_unlock_irqrestore(&oh->_lock, flags);
3657
3658         return 0;
3659 }
3660
3661 /**
3662  * omap_hwmod_disable_wakeup - prevent device from waking the system
3663  * @oh: struct omap_hwmod *
3664  *
3665  * Clears the module OCP socket ENAWAKEUP bit to prevent the module
3666  * from sending wakeups to the PRCM, and disable I/O ring wakeup
3667  * events for this IP block if it has dynamic mux entries.  Eventually
3668  * this should clear PRCM wakeup registers to cause the PRCM to ignore
3669  * wakeup events from the module.  Does not set any wakeup routing
3670  * registers beyond this point - if the module is to wake up any other
3671  * module or subsystem, that must be set separately.  Called by
3672  * omap_device code.  Returns -EINVAL on error or 0 upon success.
3673  */
3674 int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
3675 {
3676         unsigned long flags;
3677         u32 v;
3678
3679         spin_lock_irqsave(&oh->_lock, flags);
3680
3681         if (oh->class->sysc &&
3682             (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3683                 v = oh->_sysc_cache;
3684                 _disable_wakeup(oh, &v);
3685                 _write_sysconfig(v, oh);
3686         }
3687
3688         _set_idle_ioring_wakeup(oh, false);
3689         spin_unlock_irqrestore(&oh->_lock, flags);
3690
3691         return 0;
3692 }
3693
3694 /**
3695  * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3696  * contained in the hwmod module.
3697  * @oh: struct omap_hwmod *
3698  * @name: name of the reset line to lookup and assert
3699  *
3700  * Some IP like dsp, ipu or iva contain processor that require
3701  * an HW reset line to be assert / deassert in order to enable fully
3702  * the IP.  Returns -EINVAL if @oh is null or if the operation is not
3703  * yet supported on this OMAP; otherwise, passes along the return value
3704  * from _assert_hardreset().
3705  */
3706 int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
3707 {
3708         int ret;
3709         unsigned long flags;
3710
3711         if (!oh)
3712                 return -EINVAL;
3713
3714         spin_lock_irqsave(&oh->_lock, flags);
3715         ret = _assert_hardreset(oh, name);
3716         spin_unlock_irqrestore(&oh->_lock, flags);
3717
3718         return ret;
3719 }
3720
3721 /**
3722  * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3723  * contained in the hwmod module.
3724  * @oh: struct omap_hwmod *
3725  * @name: name of the reset line to look up and deassert
3726  *
3727  * Some IP like dsp, ipu or iva contain processor that require
3728  * an HW reset line to be assert / deassert in order to enable fully
3729  * the IP.  Returns -EINVAL if @oh is null or if the operation is not
3730  * yet supported on this OMAP; otherwise, passes along the return value
3731  * from _deassert_hardreset().
3732  */
3733 int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
3734 {
3735         int ret;
3736         unsigned long flags;
3737
3738         if (!oh)
3739                 return -EINVAL;
3740
3741         spin_lock_irqsave(&oh->_lock, flags);
3742         ret = _deassert_hardreset(oh, name);
3743         spin_unlock_irqrestore(&oh->_lock, flags);
3744
3745         return ret;
3746 }
3747
3748 /**
3749  * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
3750  * @classname: struct omap_hwmod_class name to search for
3751  * @fn: callback function pointer to call for each hwmod in class @classname
3752  * @user: arbitrary context data to pass to the callback function
3753  *
3754  * For each omap_hwmod of class @classname, call @fn.
3755  * If the callback function returns something other than
3756  * zero, the iterator is terminated, and the callback function's return
3757  * value is passed back to the caller.  Returns 0 upon success, -EINVAL
3758  * if @classname or @fn are NULL, or passes back the error code from @fn.
3759  */
3760 int omap_hwmod_for_each_by_class(const char *classname,
3761                                  int (*fn)(struct omap_hwmod *oh,
3762                                            void *user),
3763                                  void *user)
3764 {
3765         struct omap_hwmod *temp_oh;
3766         int ret = 0;
3767
3768         if (!classname || !fn)
3769                 return -EINVAL;
3770
3771         pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
3772                  __func__, classname);
3773
3774         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3775                 if (!strcmp(temp_oh->class->name, classname)) {
3776                         pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
3777                                  __func__, temp_oh->name);
3778                         ret = (*fn)(temp_oh, user);
3779                         if (ret)
3780                                 break;
3781                 }
3782         }
3783
3784         if (ret)
3785                 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
3786                          __func__, ret);
3787
3788         return ret;
3789 }
3790
3791 /**
3792  * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
3793  * @oh: struct omap_hwmod *
3794  * @state: state that _setup() should leave the hwmod in
3795  *
3796  * Sets the hwmod state that @oh will enter at the end of _setup()
3797  * (called by omap_hwmod_setup_*()).  See also the documentation
3798  * for _setup_postsetup(), above.  Returns 0 upon success or
3799  * -EINVAL if there is a problem with the arguments or if the hwmod is
3800  * in the wrong state.
3801  */
3802 int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
3803 {
3804         int ret;
3805         unsigned long flags;
3806
3807         if (!oh)
3808                 return -EINVAL;
3809
3810         if (state != _HWMOD_STATE_DISABLED &&
3811             state != _HWMOD_STATE_ENABLED &&
3812             state != _HWMOD_STATE_IDLE)
3813                 return -EINVAL;
3814
3815         spin_lock_irqsave(&oh->_lock, flags);
3816
3817         if (oh->_state != _HWMOD_STATE_REGISTERED) {
3818                 ret = -EINVAL;
3819                 goto ohsps_unlock;
3820         }
3821
3822         oh->_postsetup_state = state;
3823         ret = 0;
3824
3825 ohsps_unlock:
3826         spin_unlock_irqrestore(&oh->_lock, flags);
3827
3828         return ret;
3829 }
3830
3831 /**
3832  * omap_hwmod_get_context_loss_count - get lost context count
3833  * @oh: struct omap_hwmod *
3834  *
3835  * Returns the context loss count of associated @oh
3836  * upon success, or zero if no context loss data is available.
3837  *
3838  * On OMAP4, this queries the per-hwmod context loss register,
3839  * assuming one exists.  If not, or on OMAP2/3, this queries the
3840  * enclosing powerdomain context loss count.
3841  */
3842 int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
3843 {
3844         struct powerdomain *pwrdm;
3845         int ret = 0;
3846
3847         if (soc_ops.get_context_lost)
3848                 return soc_ops.get_context_lost(oh);
3849
3850         pwrdm = omap_hwmod_get_pwrdm(oh);
3851         if (pwrdm)
3852                 ret = pwrdm_get_context_loss_count(pwrdm);
3853
3854         return ret;
3855 }
3856
3857 /**
3858  * omap_hwmod_init - initialize the hwmod code
3859  *
3860  * Sets up some function pointers needed by the hwmod code to operate on the
3861  * currently-booted SoC.  Intended to be called once during kernel init
3862  * before any hwmods are registered.  No return value.
3863  */
3864 void __init omap_hwmod_init(void)
3865 {
3866         if (cpu_is_omap24xx()) {
3867                 soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
3868                 soc_ops.assert_hardreset = _omap2_assert_hardreset;
3869                 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
3870                 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
3871         } else if (cpu_is_omap34xx()) {
3872                 soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
3873                 soc_ops.assert_hardreset = _omap2_assert_hardreset;
3874                 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
3875                 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
3876                 soc_ops.init_clkdm = _init_clkdm;
3877         } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
3878                 soc_ops.enable_module = _omap4_enable_module;
3879                 soc_ops.disable_module = _omap4_disable_module;
3880                 soc_ops.wait_target_ready = _omap4_wait_target_ready;
3881                 soc_ops.assert_hardreset = _omap4_assert_hardreset;
3882                 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
3883                 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
3884                 soc_ops.init_clkdm = _init_clkdm;
3885                 soc_ops.update_context_lost = _omap4_update_context_lost;
3886                 soc_ops.get_context_lost = _omap4_get_context_lost;
3887         } else if (cpu_is_ti816x() || soc_is_am33xx() || soc_is_am43xx()) {
3888                 soc_ops.enable_module = _omap4_enable_module;
3889                 soc_ops.disable_module = _omap4_disable_module;
3890                 soc_ops.wait_target_ready = _omap4_wait_target_ready;
3891                 soc_ops.assert_hardreset = _omap4_assert_hardreset;
3892                 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
3893                 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
3894                 soc_ops.init_clkdm = _init_clkdm;
3895         } else {
3896                 WARN(1, "omap_hwmod: unknown SoC type\n");
3897         }
3898
3899         inited = true;
3900 }
3901
3902 /**
3903  * omap_hwmod_get_main_clk - get pointer to main clock name
3904  * @oh: struct omap_hwmod *
3905  *
3906  * Returns the main clock name assocated with @oh upon success,
3907  * or NULL if @oh is NULL.
3908  */
3909 const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
3910 {
3911         if (!oh)
3912                 return NULL;
3913
3914         return oh->main_clk;
3915 }