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