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