]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/kernel-video.git/blob - arch/arm/mach-omap2/omap_hwmod.c
Merge branch 'p-android-3.14-linaro' into p-ti-linux-3.14.y-android
[android-sdk/kernel-video.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
130 #include <linux/kernel.h>
131 #include <linux/errno.h>
132 #include <linux/io.h>
133 #include <linux/clk-provider.h>
134 #include <linux/delay.h>
135 #include <linux/err.h>
136 #include <linux/list.h>
137 #include <linux/mutex.h>
138 #include <linux/spinlock.h>
139 #include <linux/slab.h>
140 #include <linux/bootmem.h>
141 #include <linux/cpu.h>
142 #include <linux/of.h>
143 #include <linux/of_address.h>
144 #include <linux/suspend.h>
146 #include <asm/system_misc.h>
148 #include "clock.h"
149 #include "omap_hwmod.h"
151 #include "soc.h"
152 #include "common.h"
153 #include "clockdomain.h"
154 #include "powerdomain.h"
155 #include "cm2xxx.h"
156 #include "cm3xxx.h"
157 #include "cminst44xx.h"
158 #include "cm33xx.h"
159 #include "prm.h"
160 #include "prm3xxx.h"
161 #include "prm44xx.h"
162 #include "prm33xx.h"
163 #include "prminst44xx.h"
164 #include "mux.h"
165 #include "pm.h"
167 /* Name of the OMAP hwmod for the MPU */
168 #define MPU_INITIATOR_NAME              "mpu"
170 /*
171  * Number of struct omap_hwmod_link records per struct
172  * omap_hwmod_ocp_if record (master->slave and slave->master)
173  */
174 #define LINKS_PER_OCP_IF                2
176 /**
177  * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
178  * @enable_module: function to enable a module (via MODULEMODE)
179  * @disable_module: function to disable a module (via MODULEMODE)
180  *
181  * XXX Eventually this functionality will be hidden inside the PRM/CM
182  * device drivers.  Until then, this should avoid huge blocks of cpu_is_*()
183  * conditionals in this code.
184  */
185 struct omap_hwmod_soc_ops {
186         void (*enable_module)(struct omap_hwmod *oh);
187         int (*disable_module)(struct omap_hwmod *oh);
188         int (*wait_target_ready)(struct omap_hwmod *oh);
189         int (*assert_hardreset)(struct omap_hwmod *oh,
190                                 struct omap_hwmod_rst_info *ohri);
191         int (*deassert_hardreset)(struct omap_hwmod *oh,
192                                   struct omap_hwmod_rst_info *ohri);
193         int (*is_hardreset_asserted)(struct omap_hwmod *oh,
194                                      struct omap_hwmod_rst_info *ohri);
195         int (*init_clkdm)(struct omap_hwmod *oh);
196         void (*update_context_lost)(struct omap_hwmod *oh);
197         int (*get_context_lost)(struct omap_hwmod *oh);
198 };
200 /* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
201 static struct omap_hwmod_soc_ops soc_ops;
203 /* omap_hwmod_list contains all registered struct omap_hwmods */
204 static LIST_HEAD(omap_hwmod_list);
206 /* oh_reidle_list contains all omap_hwmods with HWMOD_NEEDS_REIDLE set */
207 LIST_HEAD(oh_reidle_list);
209 /* mpu_oh: used to add/remove MPU initiator from sleepdep list */
210 static struct omap_hwmod *mpu_oh;
212 /* io_chain_lock: used to serialize reconfigurations of the I/O chain */
213 static DEFINE_SPINLOCK(io_chain_lock);
215 /*
216  * linkspace: ptr to a buffer that struct omap_hwmod_link records are
217  * allocated from - used to reduce the number of small memory
218  * allocations, which has a significant impact on performance
219  */
220 static struct omap_hwmod_link *linkspace;
222 /*
223  * free_ls, max_ls: array indexes into linkspace; representing the
224  * next free struct omap_hwmod_link index, and the maximum number of
225  * struct omap_hwmod_link records allocated (respectively)
226  */
227 static unsigned short free_ls, max_ls, ls_supp;
229 /* inited: set to true once the hwmod code is initialized */
230 static bool inited;
232 /* Private functions */
234 /**
235  * _fetch_next_ocp_if - return the next OCP interface in a list
236  * @p: ptr to a ptr to the list_head inside the ocp_if to return
237  * @i: pointer to the index of the element pointed to by @p in the list
238  *
239  * Return a pointer to the struct omap_hwmod_ocp_if record
240  * containing the struct list_head pointed to by @p, and increment
241  * @p such that a future call to this routine will return the next
242  * record.
243  */
244 static struct omap_hwmod_ocp_if *_fetch_next_ocp_if(struct list_head **p,
245                                                     int *i)
247         struct omap_hwmod_ocp_if *oi;
249         oi = list_entry(*p, struct omap_hwmod_link, node)->ocp_if;
250         *p = (*p)->next;
252         *i = *i + 1;
254         return oi;
257 /**
258  * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
259  * @oh: struct omap_hwmod *
260  *
261  * Load the current value of the hwmod OCP_SYSCONFIG register into the
262  * struct omap_hwmod for later use.  Returns -EINVAL if the hwmod has no
263  * OCP_SYSCONFIG register or 0 upon success.
264  */
265 static int _update_sysc_cache(struct omap_hwmod *oh)
267         if (!oh->class->sysc) {
268                 WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
269                 return -EINVAL;
270         }
272         /* XXX ensure module interface clock is up */
274         oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
276         if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
277                 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
279         return 0;
282 /**
283  * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
284  * @v: OCP_SYSCONFIG value to write
285  * @oh: struct omap_hwmod *
286  *
287  * Write @v into the module class' OCP_SYSCONFIG register, if it has
288  * one.  No return value.
289  */
290 static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
292         if (!oh->class->sysc) {
293                 WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
294                 return;
295         }
297         /* XXX ensure module interface clock is up */
299         /* Module might have lost context, always update cache and register */
300         oh->_sysc_cache = v;
301         omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
304 /**
305  * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
306  * @oh: struct omap_hwmod *
307  * @standbymode: MIDLEMODE field bits
308  * @v: pointer to register contents to modify
309  *
310  * Update the master standby mode bits in @v to be @standbymode for
311  * the @oh hwmod.  Does not write to the hardware.  Returns -EINVAL
312  * upon error or 0 upon success.
313  */
314 static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
315                                    u32 *v)
317         u32 mstandby_mask;
318         u8 mstandby_shift;
320         if (!oh->class->sysc ||
321             !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
322                 return -EINVAL;
324         if (!oh->class->sysc->sysc_fields) {
325                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
326                 return -EINVAL;
327         }
329         mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
330         mstandby_mask = (0x3 << mstandby_shift);
332         *v &= ~mstandby_mask;
333         *v |= __ffs(standbymode) << mstandby_shift;
335         return 0;
338 /**
339  * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
340  * @oh: struct omap_hwmod *
341  * @idlemode: SIDLEMODE field bits
342  * @v: pointer to register contents to modify
343  *
344  * Update the slave idle mode bits in @v to be @idlemode for the @oh
345  * hwmod.  Does not write to the hardware.  Returns -EINVAL upon error
346  * or 0 upon success.
347  */
348 static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
350         u32 sidle_mask;
351         u8 sidle_shift;
353         if (!oh->class->sysc ||
354             !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
355                 return -EINVAL;
357         if (!oh->class->sysc->sysc_fields) {
358                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
359                 return -EINVAL;
360         }
362         sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
363         sidle_mask = (0x3 << sidle_shift);
365         *v &= ~sidle_mask;
366         *v |= __ffs(idlemode) << sidle_shift;
368         return 0;
371 /**
372  * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
373  * @oh: struct omap_hwmod *
374  * @clockact: CLOCKACTIVITY field bits
375  * @v: pointer to register contents to modify
376  *
377  * Update the clockactivity mode bits in @v to be @clockact for the
378  * @oh hwmod.  Used for additional powersaving on some modules.  Does
379  * not write to the hardware.  Returns -EINVAL upon error or 0 upon
380  * success.
381  */
382 static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
384         u32 clkact_mask;
385         u8  clkact_shift;
387         if (!oh->class->sysc ||
388             !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
389                 return -EINVAL;
391         if (!oh->class->sysc->sysc_fields) {
392                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
393                 return -EINVAL;
394         }
396         clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
397         clkact_mask = (0x3 << clkact_shift);
399         *v &= ~clkact_mask;
400         *v |= clockact << clkact_shift;
402         return 0;
405 /**
406  * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v
407  * @oh: struct omap_hwmod *
408  * @v: pointer to register contents to modify
409  *
410  * Set the SOFTRESET bit in @v for hwmod @oh.  Returns -EINVAL upon
411  * error or 0 upon success.
412  */
413 static int _set_softreset(struct omap_hwmod *oh, u32 *v)
415         u32 softrst_mask;
417         if (!oh->class->sysc ||
418             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
419                 return -EINVAL;
421         if (!oh->class->sysc->sysc_fields) {
422                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
423                 return -EINVAL;
424         }
426         softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
428         *v |= softrst_mask;
430         return 0;
433 /**
434  * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v
435  * @oh: struct omap_hwmod *
436  * @v: pointer to register contents to modify
437  *
438  * Clear the SOFTRESET bit in @v for hwmod @oh.  Returns -EINVAL upon
439  * error or 0 upon success.
440  */
441 static int _clear_softreset(struct omap_hwmod *oh, u32 *v)
443         u32 softrst_mask;
445         if (!oh->class->sysc ||
446             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
447                 return -EINVAL;
449         if (!oh->class->sysc->sysc_fields) {
450                 WARN(1,
451                      "omap_hwmod: %s: sysc_fields absent for sysconfig class\n",
452                      oh->name);
453                 return -EINVAL;
454         }
456         softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
458         *v &= ~softrst_mask;
460         return 0;
463 /**
464  * _wait_softreset_complete - wait for an OCP softreset to complete
465  * @oh: struct omap_hwmod * to wait on
466  *
467  * Wait until the IP block represented by @oh reports that its OCP
468  * softreset is complete.  This can be triggered by software (see
469  * _ocp_softreset()) or by hardware upon returning from off-mode (one
470  * example is HSMMC).  Waits for up to MAX_MODULE_SOFTRESET_WAIT
471  * microseconds.  Returns the number of microseconds waited.
472  */
473 static int _wait_softreset_complete(struct omap_hwmod *oh)
475         struct omap_hwmod_class_sysconfig *sysc;
476         u32 softrst_mask;
477         int c = 0;
479         sysc = oh->class->sysc;
481         if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
482                 omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs)
483                                    & SYSS_RESETDONE_MASK),
484                                   MAX_MODULE_SOFTRESET_WAIT, c);
485         else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
486                 softrst_mask = (0x1 << sysc->sysc_fields->srst_shift);
487                 omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs)
488                                     & softrst_mask),
489                                   MAX_MODULE_SOFTRESET_WAIT, c);
490         }
492         return c;
495 /**
496  * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
497  * @oh: struct omap_hwmod *
498  *
499  * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
500  * of some modules. When the DMA must perform read/write accesses, the
501  * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
502  * for power management, software must set the DMADISABLE bit back to 1.
503  *
504  * Set the DMADISABLE bit in @v for hwmod @oh.  Returns -EINVAL upon
505  * error or 0 upon success.
506  */
507 static int _set_dmadisable(struct omap_hwmod *oh)
509         u32 v;
510         u32 dmadisable_mask;
512         if (!oh->class->sysc ||
513             !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
514                 return -EINVAL;
516         if (!oh->class->sysc->sysc_fields) {
517                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
518                 return -EINVAL;
519         }
521         /* clocks must be on for this operation */
522         if (oh->_state != _HWMOD_STATE_ENABLED) {
523                 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
524                 return -EINVAL;
525         }
527         pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
529         v = oh->_sysc_cache;
530         dmadisable_mask =
531                 (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
532         v |= dmadisable_mask;
533         _write_sysconfig(v, oh);
535         return 0;
538 /**
539  * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
540  * @oh: struct omap_hwmod *
541  * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
542  * @v: pointer to register contents to modify
543  *
544  * Update the module autoidle bit in @v to be @autoidle for the @oh
545  * hwmod.  The autoidle bit controls whether the module can gate
546  * internal clocks automatically when it isn't doing anything; the
547  * exact function of this bit varies on a per-module basis.  This
548  * function does not write to the hardware.  Returns -EINVAL upon
549  * error or 0 upon success.
550  */
551 static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
552                                 u32 *v)
554         u32 autoidle_mask;
555         u8 autoidle_shift;
557         if (!oh->class->sysc ||
558             !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
559                 return -EINVAL;
561         if (!oh->class->sysc->sysc_fields) {
562                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
563                 return -EINVAL;
564         }
566         autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
567         autoidle_mask = (0x1 << autoidle_shift);
569         *v &= ~autoidle_mask;
570         *v |= autoidle << autoidle_shift;
572         return 0;
575 /**
576  * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux
577  * @oh: struct omap_hwmod *
578  * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable
579  *
580  * Set or clear the I/O pad wakeup flag in the mux entries for the
581  * hwmod @oh.  This function changes the @oh->mux->pads_dynamic array
582  * in memory.  If the hwmod is currently idled, and the new idle
583  * values don't match the previous ones, this function will also
584  * update the SCM PADCTRL registers.  Otherwise, if the hwmod is not
585  * currently idled, this function won't touch the hardware: the new
586  * mux settings are written to the SCM PADCTRL registers when the
587  * hwmod is idled.  No return value.
588  */
589 static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake)
591         struct omap_device_pad *pad;
592         bool change = false;
593         u16 prev_idle;
594         int j;
596         if (!oh->mux || !oh->mux->enabled)
597                 return;
599         for (j = 0; j < oh->mux->nr_pads_dynamic; j++) {
600                 pad = oh->mux->pads_dynamic[j];
602                 if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP))
603                         continue;
605                 prev_idle = pad->idle;
607                 if (set_wake)
608                         pad->idle |= OMAP_WAKEUP_EN;
609                 else
610                         pad->idle &= ~OMAP_WAKEUP_EN;
612                 if (prev_idle != pad->idle)
613                         change = true;
614         }
616         if (change && oh->_state == _HWMOD_STATE_IDLE)
617                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
620 /**
621  * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
622  * @oh: struct omap_hwmod *
623  *
624  * Allow the hardware module @oh to send wakeups.  Returns -EINVAL
625  * upon error or 0 upon success.
626  */
627 static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
629         if (!oh->class->sysc ||
630             !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
631               (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
632               (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
633                 return -EINVAL;
635         if (!oh->class->sysc->sysc_fields) {
636                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
637                 return -EINVAL;
638         }
640         if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
641                 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
643         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
644                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
645         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
646                 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
648         /* XXX test pwrdm_get_wken for this hwmod's subsystem */
650         return 0;
653 /**
654  * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
655  * @oh: struct omap_hwmod *
656  *
657  * Prevent the hardware module @oh to send wakeups.  Returns -EINVAL
658  * upon error or 0 upon success.
659  */
660 static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
662         if (!oh->class->sysc ||
663             !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
664               (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
665               (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
666                 return -EINVAL;
668         if (!oh->class->sysc->sysc_fields) {
669                 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
670                 return -EINVAL;
671         }
673         if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
674                 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
676         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
677                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
678         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
679                 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
681         /* XXX test pwrdm_get_wken for this hwmod's subsystem */
683         return 0;
686 static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
688         struct clk_hw_omap *clk;
690         if (oh->clkdm) {
691                 return oh->clkdm;
692         } else if (oh->_clk) {
693                 if (__clk_get_flags(oh->_clk) & CLK_IS_BASIC)
694                         return NULL;
695                 clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
696                 return  clk->clkdm;
697         }
698         return NULL;
701 /**
702  * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
703  * @oh: struct omap_hwmod *
704  *
705  * Prevent the hardware module @oh from entering idle while the
706  * hardare module initiator @init_oh is active.  Useful when a module
707  * will be accessed by a particular initiator (e.g., if a module will
708  * be accessed by the IVA, there should be a sleepdep between the IVA
709  * initiator and the module).  Only applies to modules in smart-idle
710  * mode.  If the clockdomain is marked as not needing autodeps, return
711  * 0 without doing anything.  Otherwise, returns -EINVAL upon error or
712  * passes along clkdm_add_sleepdep() value upon success.
713  */
714 static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
716         struct clockdomain *clkdm, *init_clkdm;
718         clkdm = _get_clkdm(oh);
719         init_clkdm = _get_clkdm(init_oh);
721         if (!clkdm || !init_clkdm)
722                 return -EINVAL;
724         if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
725                 return 0;
727         return clkdm_add_sleepdep(clkdm, init_clkdm);
730 /**
731  * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
732  * @oh: struct omap_hwmod *
733  *
734  * Allow the hardware module @oh to enter idle while the hardare
735  * module initiator @init_oh is active.  Useful when a module will not
736  * be accessed by a particular initiator (e.g., if a module will not
737  * be accessed by the IVA, there should be no sleepdep between the IVA
738  * initiator and the module).  Only applies to modules in smart-idle
739  * mode.  If the clockdomain is marked as not needing autodeps, return
740  * 0 without doing anything.  Returns -EINVAL upon error or passes
741  * along clkdm_del_sleepdep() value upon success.
742  */
743 static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
745         struct clockdomain *clkdm, *init_clkdm;
747         clkdm = _get_clkdm(oh);
748         init_clkdm = _get_clkdm(init_oh);
750         if (!clkdm || !init_clkdm)
751                 return -EINVAL;
753         if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
754                 return 0;
756         return clkdm_del_sleepdep(clkdm, init_clkdm);
759 /**
760  * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
761  * @oh: struct omap_hwmod *
762  *
763  * Called from _init_clocks().  Populates the @oh _clk (main
764  * functional clock pointer) if a main_clk is present.  Returns 0 on
765  * success or -EINVAL on error.
766  */
767 static int _init_main_clk(struct omap_hwmod *oh)
769         int ret = 0;
771         if (!oh->main_clk)
772                 return 0;
774         oh->_clk = clk_get(NULL, oh->main_clk);
775         if (IS_ERR(oh->_clk)) {
776                 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
777                            oh->name, oh->main_clk);
778                 return -EINVAL;
779         }
780         /*
781          * HACK: This needs a re-visit once clk_prepare() is implemented
782          * to do something meaningful. Today its just a no-op.
783          * If clk_prepare() is used at some point to do things like
784          * voltage scaling etc, then this would have to be moved to
785          * some point where subsystems like i2c and pmic become
786          * available.
787          */
788         clk_prepare(oh->_clk);
790         if (!_get_clkdm(oh))
791                 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
792                            oh->name, oh->main_clk);
794         return ret;
797 /**
798  * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
799  * @oh: struct omap_hwmod *
800  *
801  * Called from _init_clocks().  Populates the @oh OCP slave interface
802  * clock pointers.  Returns 0 on success or -EINVAL on error.
803  */
804 static int _init_interface_clks(struct omap_hwmod *oh)
806         struct omap_hwmod_ocp_if *os;
807         struct list_head *p;
808         struct clk *c;
809         int i = 0;
810         int ret = 0;
812         p = oh->slave_ports.next;
814         while (i < oh->slaves_cnt) {
815                 os = _fetch_next_ocp_if(&p, &i);
816                 if (!os->clk)
817                         continue;
819                 c = clk_get(NULL, os->clk);
820                 if (IS_ERR(c)) {
821                         pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
822                                    oh->name, os->clk);
823                         ret = -EINVAL;
824                         continue;
825                 }
826                 os->_clk = c;
827                 /*
828                  * HACK: This needs a re-visit once clk_prepare() is implemented
829                  * to do something meaningful. Today its just a no-op.
830                  * If clk_prepare() is used at some point to do things like
831                  * voltage scaling etc, then this would have to be moved to
832                  * some point where subsystems like i2c and pmic become
833                  * available.
834                  */
835                 clk_prepare(os->_clk);
836         }
838         return ret;
841 /**
842  * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
843  * @oh: struct omap_hwmod *
844  *
845  * Called from _init_clocks().  Populates the @oh omap_hwmod_opt_clk
846  * clock pointers.  Returns 0 on success or -EINVAL on error.
847  */
848 static int _init_opt_clks(struct omap_hwmod *oh)
850         struct omap_hwmod_opt_clk *oc;
851         struct clk *c;
852         int i;
853         int ret = 0;
855         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
856                 c = clk_get(NULL, oc->clk);
857                 if (IS_ERR(c)) {
858                         pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
859                                    oh->name, oc->clk);
860                         ret = -EINVAL;
861                         continue;
862                 }
863                 oc->_clk = c;
864                 /*
865                  * HACK: This needs a re-visit once clk_prepare() is implemented
866                  * to do something meaningful. Today its just a no-op.
867                  * If clk_prepare() is used at some point to do things like
868                  * voltage scaling etc, then this would have to be moved to
869                  * some point where subsystems like i2c and pmic become
870                  * available.
871                  */
872                 clk_prepare(oc->_clk);
873         }
875         return ret;
878 /**
879  * _enable_clocks - enable hwmod main clock and interface clocks
880  * @oh: struct omap_hwmod *
881  *
882  * Enables all clocks necessary for register reads and writes to succeed
883  * on the hwmod @oh.  Returns 0.
884  */
885 static int _enable_clocks(struct omap_hwmod *oh)
887         struct omap_hwmod_ocp_if *os;
888         struct list_head *p;
889         int i = 0;
891         pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
893         if (oh->_clk)
894                 clk_enable(oh->_clk);
896         p = oh->slave_ports.next;
898         while (i < oh->slaves_cnt) {
899                 os = _fetch_next_ocp_if(&p, &i);
901                 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
902                         clk_enable(os->_clk);
903         }
905         /* The opt clocks are controlled by the device driver. */
907         return 0;
910 /**
911  * _disable_clocks - disable hwmod main clock and interface clocks
912  * @oh: struct omap_hwmod *
913  *
914  * Disables the hwmod @oh main functional and interface clocks.  Returns 0.
915  */
916 static int _disable_clocks(struct omap_hwmod *oh)
918         struct omap_hwmod_ocp_if *os;
919         struct list_head *p;
920         int i = 0;
922         pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
924         if (oh->_clk)
925                 clk_disable(oh->_clk);
927         p = oh->slave_ports.next;
929         while (i < oh->slaves_cnt) {
930                 os = _fetch_next_ocp_if(&p, &i);
932                 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
933                         clk_disable(os->_clk);
934         }
936         /* The opt clocks are controlled by the device driver. */
938         return 0;
941 static void _enable_optional_clocks(struct omap_hwmod *oh)
943         struct omap_hwmod_opt_clk *oc;
944         int i;
946         pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
948         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
949                 if (oc->_clk) {
950                         pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
951                                  __clk_get_name(oc->_clk));
952                         clk_enable(oc->_clk);
953                 }
956 static void _disable_optional_clocks(struct omap_hwmod *oh)
958         struct omap_hwmod_opt_clk *oc;
959         int i;
961         pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
963         for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
964                 if (oc->_clk) {
965                         pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
966                                  __clk_get_name(oc->_clk));
967                         clk_disable(oc->_clk);
968                 }
971 /**
972  * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
973  * @oh: struct omap_hwmod *
974  *
975  * Enables the PRCM module mode related to the hwmod @oh.
976  * No return value.
977  */
978 static void _omap4_enable_module(struct omap_hwmod *oh)
980         if (!oh->clkdm || !oh->prcm.omap4.modulemode)
981                 return;
983         pr_debug("omap_hwmod: %s: %s: %d\n",
984                  oh->name, __func__, oh->prcm.omap4.modulemode);
986         omap4_cminst_module_enable(oh->prcm.omap4.modulemode,
987                                    oh->clkdm->prcm_partition,
988                                    oh->clkdm->cm_inst,
989                                    oh->clkdm->clkdm_offs,
990                                    oh->prcm.omap4.clkctrl_offs);
993 /**
994  * _am33xx_enable_module - enable CLKCTRL modulemode on AM33XX
995  * @oh: struct omap_hwmod *
996  *
997  * Enables the PRCM module mode related to the hwmod @oh.
998  * No return value.
999  */
1000 static void _am33xx_enable_module(struct omap_hwmod *oh)
1002         if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1003                 return;
1005         pr_debug("omap_hwmod: %s: %s: %d\n",
1006                  oh->name, __func__, oh->prcm.omap4.modulemode);
1008         am33xx_cm_module_enable(oh->prcm.omap4.modulemode, oh->clkdm->cm_inst,
1009                                 oh->clkdm->clkdm_offs,
1010                                 oh->prcm.omap4.clkctrl_offs);
1013 /**
1014  * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
1015  * @oh: struct omap_hwmod *
1016  *
1017  * Wait for a module @oh to enter slave idle.  Returns 0 if the module
1018  * does not have an IDLEST bit or if the module successfully enters
1019  * slave idle; otherwise, pass along the return value of the
1020  * appropriate *_cm*_wait_module_idle() function.
1021  */
1022 static int _omap4_wait_target_disable(struct omap_hwmod *oh)
1024         if (!oh)
1025                 return -EINVAL;
1027         if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
1028                 return 0;
1030         if (oh->flags & HWMOD_NO_IDLEST)
1031                 return 0;
1033         return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition,
1034                                              oh->clkdm->cm_inst,
1035                                              oh->clkdm->clkdm_offs,
1036                                              oh->prcm.omap4.clkctrl_offs);
1039 /**
1040  * _am33xx_wait_target_disable - wait for a module to be disabled on AM33XX
1041  * @oh: struct omap_hwmod *
1042  *
1043  * Wait for a module @oh to enter slave idle.  Returns 0 if the module
1044  * does not have an IDLEST bit or if the module successfully enters
1045  * slave idle; otherwise, pass along the return value of the
1046  * appropriate *_cm*_wait_module_idle() function.
1047  */
1048 static int _am33xx_wait_target_disable(struct omap_hwmod *oh)
1050         if (!oh)
1051                 return -EINVAL;
1053         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1054                 return 0;
1056         if (oh->flags & HWMOD_NO_IDLEST)
1057                 return 0;
1059         return am33xx_cm_wait_module_idle(oh->clkdm->cm_inst,
1060                                              oh->clkdm->clkdm_offs,
1061                                              oh->prcm.omap4.clkctrl_offs);
1064 /**
1065  * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
1066  * @oh: struct omap_hwmod *oh
1067  *
1068  * Count and return the number of MPU IRQs associated with the hwmod
1069  * @oh.  Used to allocate struct resource data.  Returns 0 if @oh is
1070  * NULL.
1071  */
1072 static int _count_mpu_irqs(struct omap_hwmod *oh)
1074         struct omap_hwmod_irq_info *ohii;
1075         int i = 0;
1077         if (!oh || !oh->mpu_irqs)
1078                 return 0;
1080         do {
1081                 ohii = &oh->mpu_irqs[i++];
1082         } while (ohii->irq != -1);
1084         return i-1;
1087 /**
1088  * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
1089  * @oh: struct omap_hwmod *oh
1090  *
1091  * Count and return the number of SDMA request lines associated with
1092  * the hwmod @oh.  Used to allocate struct resource data.  Returns 0
1093  * if @oh is NULL.
1094  */
1095 static int _count_sdma_reqs(struct omap_hwmod *oh)
1097         struct omap_hwmod_dma_info *ohdi;
1098         int i = 0;
1100         if (!oh || !oh->sdma_reqs)
1101                 return 0;
1103         do {
1104                 ohdi = &oh->sdma_reqs[i++];
1105         } while (ohdi->dma_req != -1);
1107         return i-1;
1110 /**
1111  * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
1112  * @oh: struct omap_hwmod *oh
1113  *
1114  * Count and return the number of address space ranges associated with
1115  * the hwmod @oh.  Used to allocate struct resource data.  Returns 0
1116  * if @oh is NULL.
1117  */
1118 static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
1120         struct omap_hwmod_addr_space *mem;
1121         int i = 0;
1123         if (!os || !os->addr)
1124                 return 0;
1126         do {
1127                 mem = &os->addr[i++];
1128         } while (mem->pa_start != mem->pa_end);
1130         return i-1;
1133 /**
1134  * _get_mpu_irq_by_name - fetch MPU interrupt line number by name
1135  * @oh: struct omap_hwmod * to operate on
1136  * @name: pointer to the name of the MPU interrupt number to fetch (optional)
1137  * @irq: pointer to an unsigned int to store the MPU IRQ number to
1138  *
1139  * Retrieve a MPU hardware IRQ line number named by @name associated
1140  * with the IP block pointed to by @oh.  The IRQ number will be filled
1141  * into the address pointed to by @dma.  When @name is non-null, the
1142  * IRQ line number associated with the named entry will be returned.
1143  * If @name is null, the first matching entry will be returned.  Data
1144  * order is not meaningful in hwmod data, so callers are strongly
1145  * encouraged to use a non-null @name whenever possible to avoid
1146  * unpredictable effects if hwmod data is later added that causes data
1147  * ordering to change.  Returns 0 upon success or a negative error
1148  * code upon error.
1149  */
1150 static int _get_mpu_irq_by_name(struct omap_hwmod *oh, const char *name,
1151                                 unsigned int *irq)
1153         int i;
1154         bool found = false;
1156         if (!oh->mpu_irqs)
1157                 return -ENOENT;
1159         i = 0;
1160         while (oh->mpu_irqs[i].irq != -1) {
1161                 if (name == oh->mpu_irqs[i].name ||
1162                     !strcmp(name, oh->mpu_irqs[i].name)) {
1163                         found = true;
1164                         break;
1165                 }
1166                 i++;
1167         }
1169         if (!found)
1170                 return -ENOENT;
1172         *irq = oh->mpu_irqs[i].irq;
1174         return 0;
1177 /**
1178  * _get_sdma_req_by_name - fetch SDMA request line ID by name
1179  * @oh: struct omap_hwmod * to operate on
1180  * @name: pointer to the name of the SDMA request line to fetch (optional)
1181  * @dma: pointer to an unsigned int to store the request line ID to
1182  *
1183  * Retrieve an SDMA request line ID named by @name on the IP block
1184  * pointed to by @oh.  The ID will be filled into the address pointed
1185  * to by @dma.  When @name is non-null, the request line ID associated
1186  * with the named entry will be returned.  If @name is null, the first
1187  * matching entry will be returned.  Data order is not meaningful in
1188  * hwmod data, so callers are strongly encouraged to use a non-null
1189  * @name whenever possible to avoid unpredictable effects if hwmod
1190  * data is later added that causes data ordering to change.  Returns 0
1191  * upon success or a negative error code upon error.
1192  */
1193 static int _get_sdma_req_by_name(struct omap_hwmod *oh, const char *name,
1194                                  unsigned int *dma)
1196         int i;
1197         bool found = false;
1199         if (!oh->sdma_reqs)
1200                 return -ENOENT;
1202         i = 0;
1203         while (oh->sdma_reqs[i].dma_req != -1) {
1204                 if (name == oh->sdma_reqs[i].name ||
1205                     !strcmp(name, oh->sdma_reqs[i].name)) {
1206                         found = true;
1207                         break;
1208                 }
1209                 i++;
1210         }
1212         if (!found)
1213                 return -ENOENT;
1215         *dma = oh->sdma_reqs[i].dma_req;
1217         return 0;
1220 /**
1221  * _get_addr_space_by_name - fetch address space start & end by name
1222  * @oh: struct omap_hwmod * to operate on
1223  * @name: pointer to the name of the address space to fetch (optional)
1224  * @pa_start: pointer to a u32 to store the starting address to
1225  * @pa_end: pointer to a u32 to store the ending address to
1226  *
1227  * Retrieve address space start and end addresses for the IP block
1228  * pointed to by @oh.  The data will be filled into the addresses
1229  * pointed to by @pa_start and @pa_end.  When @name is non-null, the
1230  * address space data associated with the named entry will be
1231  * returned.  If @name is null, the first matching entry will be
1232  * returned.  Data order is not meaningful in hwmod data, so callers
1233  * are strongly encouraged to use a non-null @name whenever possible
1234  * to avoid unpredictable effects if hwmod data is later added that
1235  * causes data ordering to change.  Returns 0 upon success or a
1236  * negative error code upon error.
1237  */
1238 static int _get_addr_space_by_name(struct omap_hwmod *oh, const char *name,
1239                                    u32 *pa_start, u32 *pa_end)
1241         int i, j;
1242         struct omap_hwmod_ocp_if *os;
1243         struct list_head *p = NULL;
1244         bool found = false;
1246         p = oh->slave_ports.next;
1248         i = 0;
1249         while (i < oh->slaves_cnt) {
1250                 os = _fetch_next_ocp_if(&p, &i);
1252                 if (!os->addr)
1253                         return -ENOENT;
1255                 j = 0;
1256                 while (os->addr[j].pa_start != os->addr[j].pa_end) {
1257                         if (name == os->addr[j].name ||
1258                             !strcmp(name, os->addr[j].name)) {
1259                                 found = true;
1260                                 break;
1261                         }
1262                         j++;
1263                 }
1265                 if (found)
1266                         break;
1267         }
1269         if (!found)
1270                 return -ENOENT;
1272         *pa_start = os->addr[j].pa_start;
1273         *pa_end = os->addr[j].pa_end;
1275         return 0;
1278 /**
1279  * _save_mpu_port_index - find and save the index to @oh's MPU port
1280  * @oh: struct omap_hwmod *
1281  *
1282  * Determines the array index of the OCP slave port that the MPU uses
1283  * to address the device, and saves it into the struct omap_hwmod.
1284  * Intended to be called during hwmod registration only. No return
1285  * value.
1286  */
1287 static void __init _save_mpu_port_index(struct omap_hwmod *oh)
1289         struct omap_hwmod_ocp_if *os = NULL;
1290         struct list_head *p;
1291         int i = 0;
1293         if (!oh)
1294                 return;
1296         oh->_int_flags |= _HWMOD_NO_MPU_PORT;
1298         p = oh->slave_ports.next;
1300         while (i < oh->slaves_cnt) {
1301                 os = _fetch_next_ocp_if(&p, &i);
1302                 if (os->user & OCP_USER_MPU) {
1303                         oh->_mpu_port = os;
1304                         oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
1305                         break;
1306                 }
1307         }
1309         return;
1312 /**
1313  * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1314  * @oh: struct omap_hwmod *
1315  *
1316  * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1317  * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1318  * communicate with the IP block.  This interface need not be directly
1319  * connected to the MPU (and almost certainly is not), but is directly
1320  * connected to the IP block represented by @oh.  Returns a pointer
1321  * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1322  * error or if there does not appear to be a path from the MPU to this
1323  * IP block.
1324  */
1325 static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1327         if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1328                 return NULL;
1330         return oh->_mpu_port;
1331 };
1333 /**
1334  * _find_mpu_rt_addr_space - return MPU register target address space for @oh
1335  * @oh: struct omap_hwmod *
1336  *
1337  * Returns a pointer to the struct omap_hwmod_addr_space record representing
1338  * the register target MPU address space; or returns NULL upon error.
1339  */
1340 static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh)
1342         struct omap_hwmod_ocp_if *os;
1343         struct omap_hwmod_addr_space *mem;
1344         int found = 0, i = 0;
1346         os = _find_mpu_rt_port(oh);
1347         if (!os || !os->addr)
1348                 return NULL;
1350         do {
1351                 mem = &os->addr[i++];
1352                 if (mem->flags & ADDR_TYPE_RT)
1353                         found = 1;
1354         } while (!found && mem->pa_start != mem->pa_end);
1356         return (found) ? mem : NULL;
1359 /**
1360  * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
1361  * @oh: struct omap_hwmod *
1362  *
1363  * Ensure that the OCP_SYSCONFIG register for the IP block represented
1364  * by @oh is set to indicate to the PRCM that the IP block is active.
1365  * Usually this means placing the module into smart-idle mode and
1366  * smart-standby, but if there is a bug in the automatic idle handling
1367  * for the IP block, it may need to be placed into the force-idle or
1368  * no-idle variants of these modes.  No return value.
1369  */
1370 static void _enable_sysc(struct omap_hwmod *oh)
1372         u8 idlemode, sf;
1373         u32 v;
1374         bool clkdm_act;
1375         struct clockdomain *clkdm;
1377         if (!oh->class->sysc)
1378                 return;
1380         /*
1381          * Wait until reset has completed, this is needed as the IP
1382          * block is reset automatically by hardware in some cases
1383          * (off-mode for example), and the drivers require the
1384          * IP to be ready when they access it
1385          */
1386         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1387                 _enable_optional_clocks(oh);
1388         _wait_softreset_complete(oh);
1389         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1390                 _disable_optional_clocks(oh);
1392         v = oh->_sysc_cache;
1393         sf = oh->class->sysc->sysc_flags;
1395         clkdm = _get_clkdm(oh);
1396         if (sf & SYSC_HAS_SIDLEMODE) {
1397                 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1398                     oh->flags & HWMOD_SWSUP_SIDLE_ACT) {
1399                         idlemode = HWMOD_IDLEMODE_NO;
1400                 } else {
1401                         if (sf & SYSC_HAS_ENAWAKEUP)
1402                                 _enable_wakeup(oh, &v);
1403                         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1404                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1405                         else
1406                                 idlemode = HWMOD_IDLEMODE_SMART;
1407                 }
1409                 /*
1410                  * This is special handling for some IPs like
1411                  * 32k sync timer. Force them to idle!
1412                  */
1413                 clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
1414                 if (clkdm_act && !(oh->class->sysc->idlemodes &
1415                                    (SIDLE_SMART | SIDLE_SMART_WKUP)))
1416                         idlemode = HWMOD_IDLEMODE_FORCE;
1418                 _set_slave_idlemode(oh, idlemode, &v);
1419         }
1421         if (sf & SYSC_HAS_MIDLEMODE) {
1422                 if (oh->flags & HWMOD_FORCE_MSTANDBY) {
1423                         idlemode = HWMOD_IDLEMODE_FORCE;
1424                 } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1425                         idlemode = HWMOD_IDLEMODE_NO;
1426                 } else {
1427                         if (sf & SYSC_HAS_ENAWAKEUP)
1428                                 _enable_wakeup(oh, &v);
1429                         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1430                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1431                         else
1432                                 idlemode = HWMOD_IDLEMODE_SMART;
1433                 }
1434                 _set_master_standbymode(oh, idlemode, &v);
1435         }
1437         /*
1438          * XXX The clock framework should handle this, by
1439          * calling into this code.  But this must wait until the
1440          * clock structures are tagged with omap_hwmod entries
1441          */
1442         if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1443             (sf & SYSC_HAS_CLOCKACTIVITY))
1444                 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
1446         /* If the cached value is the same as the new value, skip the write */
1447         if (oh->_sysc_cache != v)
1448                 _write_sysconfig(v, oh);
1450         /*
1451          * Set the autoidle bit only after setting the smartidle bit
1452          * Setting this will not have any impact on the other modules.
1453          */
1454         if (sf & SYSC_HAS_AUTOIDLE) {
1455                 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1456                         0 : 1;
1457                 _set_module_autoidle(oh, idlemode, &v);
1458                 _write_sysconfig(v, oh);
1459         }
1462 /**
1463  * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
1464  * @oh: struct omap_hwmod *
1465  *
1466  * If module is marked as SWSUP_SIDLE, force the module into slave
1467  * idle; otherwise, configure it for smart-idle.  If module is marked
1468  * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1469  * configure it for smart-standby.  No return value.
1470  */
1471 static void _idle_sysc(struct omap_hwmod *oh)
1473         u8 idlemode, sf;
1474         u32 v;
1476         if (!oh->class->sysc)
1477                 return;
1479         v = oh->_sysc_cache;
1480         sf = oh->class->sysc->sysc_flags;
1482         if (sf & SYSC_HAS_SIDLEMODE) {
1483                 if (oh->flags & HWMOD_SWSUP_SIDLE) {
1484                         idlemode = HWMOD_IDLEMODE_FORCE;
1485                 } else {
1486                         if (sf & SYSC_HAS_ENAWAKEUP)
1487                                 _enable_wakeup(oh, &v);
1488                         if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1489                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1490                         else
1491                                 idlemode = HWMOD_IDLEMODE_SMART;
1492                 }
1493                 _set_slave_idlemode(oh, idlemode, &v);
1494         }
1496         if (sf & SYSC_HAS_MIDLEMODE) {
1497                 if ((oh->flags & HWMOD_SWSUP_MSTANDBY) ||
1498                     (oh->flags & HWMOD_FORCE_MSTANDBY)) {
1499                         idlemode = HWMOD_IDLEMODE_FORCE;
1500                 } else {
1501                         if (sf & SYSC_HAS_ENAWAKEUP)
1502                                 _enable_wakeup(oh, &v);
1503                         if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1504                                 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1505                         else
1506                                 idlemode = HWMOD_IDLEMODE_SMART;
1507                 }
1508                 _set_master_standbymode(oh, idlemode, &v);
1509         }
1511         _write_sysconfig(v, oh);
1514 /**
1515  * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
1516  * @oh: struct omap_hwmod *
1517  *
1518  * Force the module into slave idle and master suspend. No return
1519  * value.
1520  */
1521 static void _shutdown_sysc(struct omap_hwmod *oh)
1523         u32 v;
1524         u8 sf;
1526         if (!oh->class->sysc)
1527                 return;
1529         v = oh->_sysc_cache;
1530         sf = oh->class->sysc->sysc_flags;
1532         if (sf & SYSC_HAS_SIDLEMODE)
1533                 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1535         if (sf & SYSC_HAS_MIDLEMODE)
1536                 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1538         if (sf & SYSC_HAS_AUTOIDLE)
1539                 _set_module_autoidle(oh, 1, &v);
1541         _write_sysconfig(v, oh);
1544 /**
1545  * _lookup - find an omap_hwmod by name
1546  * @name: find an omap_hwmod by name
1547  *
1548  * Return a pointer to an omap_hwmod by name, or NULL if not found.
1549  */
1550 static struct omap_hwmod *_lookup(const char *name)
1552         struct omap_hwmod *oh, *temp_oh;
1554         oh = NULL;
1556         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1557                 if (!strcmp(name, temp_oh->name)) {
1558                         oh = temp_oh;
1559                         break;
1560                 }
1561         }
1563         return oh;
1566 /**
1567  * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1568  * @oh: struct omap_hwmod *
1569  *
1570  * Convert a clockdomain name stored in a struct omap_hwmod into a
1571  * clockdomain pointer, and save it into the struct omap_hwmod.
1572  * Return -EINVAL if the clkdm_name lookup failed.
1573  */
1574 static int _init_clkdm(struct omap_hwmod *oh)
1576         if (!oh->clkdm_name) {
1577                 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
1578                 return 0;
1579         }
1581         oh->clkdm = clkdm_lookup(oh->clkdm_name);
1582         if (!oh->clkdm) {
1583                 pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n",
1584                         oh->name, oh->clkdm_name);
1585                 return 0;
1586         }
1588         pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1589                 oh->name, oh->clkdm_name);
1591         return 0;
1594 /**
1595  * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1596  * well the clockdomain.
1597  * @oh: struct omap_hwmod *
1598  * @data: not used; pass NULL
1599  *
1600  * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
1601  * Resolves all clock names embedded in the hwmod.  Returns 0 on
1602  * success, or a negative error code on failure.
1603  */
1604 static int _init_clocks(struct omap_hwmod *oh, void *data)
1606         int ret = 0;
1608         if (oh->_state != _HWMOD_STATE_REGISTERED)
1609                 return 0;
1611         pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1613         if (soc_ops.init_clkdm)
1614                 ret |= soc_ops.init_clkdm(oh);
1616         ret |= _init_main_clk(oh);
1617         ret |= _init_interface_clks(oh);
1618         ret |= _init_opt_clks(oh);
1620         if (!ret)
1621                 oh->_state = _HWMOD_STATE_CLKS_INITED;
1622         else
1623                 pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
1625         return ret;
1628 /**
1629  * _lookup_hardreset - fill register bit info for this hwmod/reset line
1630  * @oh: struct omap_hwmod *
1631  * @name: name of the reset line in the context of this hwmod
1632  * @ohri: struct omap_hwmod_rst_info * that this function will fill in
1633  *
1634  * Return the bit position of the reset line that match the
1635  * input name. Return -ENOENT if not found.
1636  */
1637 static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1638                              struct omap_hwmod_rst_info *ohri)
1640         int i;
1642         for (i = 0; i < oh->rst_lines_cnt; i++) {
1643                 const char *rst_line = oh->rst_lines[i].name;
1644                 if (!strcmp(rst_line, name)) {
1645                         ohri->rst_shift = oh->rst_lines[i].rst_shift;
1646                         ohri->st_shift = oh->rst_lines[i].st_shift;
1647                         pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1648                                  oh->name, __func__, rst_line, ohri->rst_shift,
1649                                  ohri->st_shift);
1651                         return 0;
1652                 }
1653         }
1655         return -ENOENT;
1658 /**
1659  * _assert_hardreset - assert the HW reset line of submodules
1660  * contained in the hwmod module.
1661  * @oh: struct omap_hwmod *
1662  * @name: name of the reset line to lookup and assert
1663  *
1664  * Some IP like dsp, ipu or iva contain processor that require an HW
1665  * reset line to be assert / deassert in order to enable fully the IP.
1666  * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1667  * asserting the hardreset line on the currently-booted SoC, or passes
1668  * along the return value from _lookup_hardreset() or the SoC's
1669  * assert_hardreset code.
1670  */
1671 static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1673         struct omap_hwmod_rst_info ohri;
1674         int ret = -EINVAL;
1676         if (!oh)
1677                 return -EINVAL;
1679         if (!soc_ops.assert_hardreset)
1680                 return -ENOSYS;
1682         ret = _lookup_hardreset(oh, name, &ohri);
1683         if (ret < 0)
1684                 return ret;
1686         ret = soc_ops.assert_hardreset(oh, &ohri);
1688         return ret;
1691 /**
1692  * _deassert_hardreset - deassert the HW reset line of submodules contained
1693  * in the hwmod module.
1694  * @oh: struct omap_hwmod *
1695  * @name: name of the reset line to look up and deassert
1696  *
1697  * Some IP like dsp, ipu or iva contain processor that require an HW
1698  * reset line to be assert / deassert in order to enable fully the IP.
1699  * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1700  * deasserting the hardreset line on the currently-booted SoC, or passes
1701  * along the return value from _lookup_hardreset() or the SoC's
1702  * deassert_hardreset code.
1703  */
1704 static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1706         struct omap_hwmod_rst_info ohri;
1707         int ret = -EINVAL;
1708         int hwsup = 0;
1710         if (!oh)
1711                 return -EINVAL;
1713         if (!soc_ops.deassert_hardreset)
1714                 return -ENOSYS;
1716         ret = _lookup_hardreset(oh, name, &ohri);
1717         if (ret < 0)
1718                 return ret;
1720         if (oh->clkdm) {
1721                 /*
1722                  * A clockdomain must be in SW_SUP otherwise reset
1723                  * might not be completed. The clockdomain can be set
1724                  * in HW_AUTO only when the module become ready.
1725                  */
1726                 hwsup = clkdm_in_hwsup(oh->clkdm);
1727                 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1728                 if (ret) {
1729                         WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1730                              oh->name, oh->clkdm->name, ret);
1731                         return ret;
1732                 }
1733         }
1735         _enable_clocks(oh);
1736         if (soc_ops.enable_module)
1737                 soc_ops.enable_module(oh);
1739         ret = soc_ops.deassert_hardreset(oh, &ohri);
1741         if (soc_ops.disable_module)
1742                 soc_ops.disable_module(oh);
1743         _disable_clocks(oh);
1745         if (ret == -EBUSY)
1746                 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1748         if (oh->clkdm) {
1749                 /*
1750                  * Set the clockdomain to HW_AUTO, assuming that the
1751                  * previous state was HW_AUTO.
1752                  */
1753                 if (hwsup)
1754                         clkdm_allow_idle(oh->clkdm);
1756                 clkdm_hwmod_disable(oh->clkdm, oh);
1757         }
1759         return ret;
1762 /**
1763  * _read_hardreset - read the HW reset line state of submodules
1764  * contained in the hwmod module
1765  * @oh: struct omap_hwmod *
1766  * @name: name of the reset line to look up and read
1767  *
1768  * Return the state of the reset line.  Returns -EINVAL if @oh is
1769  * null, -ENOSYS if we have no way of reading the hardreset line
1770  * status on the currently-booted SoC, or passes along the return
1771  * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1772  * code.
1773  */
1774 static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1776         struct omap_hwmod_rst_info ohri;
1777         int ret = -EINVAL;
1779         if (!oh)
1780                 return -EINVAL;
1782         if (!soc_ops.is_hardreset_asserted)
1783                 return -ENOSYS;
1785         ret = _lookup_hardreset(oh, name, &ohri);
1786         if (ret < 0)
1787                 return ret;
1789         return soc_ops.is_hardreset_asserted(oh, &ohri);
1792 /**
1793  * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
1794  * @oh: struct omap_hwmod *
1795  *
1796  * If all hardreset lines associated with @oh are asserted, then return true.
1797  * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1798  * associated with @oh are asserted, then return false.
1799  * This function is used to avoid executing some parts of the IP block
1800  * enable/disable sequence if its hardreset line is set.
1801  */
1802 static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
1804         int i, rst_cnt = 0;
1806         if (oh->rst_lines_cnt == 0)
1807                 return false;
1809         for (i = 0; i < oh->rst_lines_cnt; i++)
1810                 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1811                         rst_cnt++;
1813         if (oh->rst_lines_cnt == rst_cnt)
1814                 return true;
1816         return false;
1819 /**
1820  * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1821  * hard-reset
1822  * @oh: struct omap_hwmod *
1823  *
1824  * If any hardreset lines associated with @oh are asserted, then
1825  * return true.  Otherwise, if no hardreset lines associated with @oh
1826  * are asserted, or if @oh has no hardreset lines, then return false.
1827  * This function is used to avoid executing some parts of the IP block
1828  * enable/disable sequence if any hardreset line is set.
1829  */
1830 static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1832         int rst_cnt = 0;
1833         int i;
1835         for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1836                 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1837                         rst_cnt++;
1839         return (rst_cnt) ? true : false;
1842 /**
1843  * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1844  * @oh: struct omap_hwmod *
1845  *
1846  * Disable the PRCM module mode related to the hwmod @oh.
1847  * Return EINVAL if the modulemode is not supported and 0 in case of success.
1848  */
1849 static int _omap4_disable_module(struct omap_hwmod *oh)
1851         int v;
1853         if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1854                 return -EINVAL;
1856         /*
1857          * Since integration code might still be doing something, only
1858          * disable if all lines are under hardreset.
1859          */
1860         if (_are_any_hardreset_lines_asserted(oh))
1861                 return 0;
1863         pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1865         omap4_cminst_module_disable(oh->clkdm->prcm_partition,
1866                                     oh->clkdm->cm_inst,
1867                                     oh->clkdm->clkdm_offs,
1868                                     oh->prcm.omap4.clkctrl_offs);
1870         v = _omap4_wait_target_disable(oh);
1871         if (v)
1872                 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1873                         oh->name);
1875         return 0;
1878 /**
1879  * _am33xx_disable_module - enable CLKCTRL modulemode on AM33XX
1880  * @oh: struct omap_hwmod *
1881  *
1882  * Disable the PRCM module mode related to the hwmod @oh.
1883  * Return EINVAL if the modulemode is not supported and 0 in case of success.
1884  */
1885 static int _am33xx_disable_module(struct omap_hwmod *oh)
1887         int v;
1889         if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1890                 return -EINVAL;
1892         pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1894         if (_are_any_hardreset_lines_asserted(oh))
1895                 return 0;
1897         am33xx_cm_module_disable(oh->clkdm->cm_inst, oh->clkdm->clkdm_offs,
1898                                  oh->prcm.omap4.clkctrl_offs);
1900         v = _am33xx_wait_target_disable(oh);
1901         if (v)
1902                 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1903                         oh->name);
1905         return 0;
1908 /**
1909  * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
1910  * @oh: struct omap_hwmod *
1911  *
1912  * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit.  hwmod must be
1913  * enabled for this to work.  Returns -ENOENT if the hwmod cannot be
1914  * reset this way, -EINVAL if the hwmod is in the wrong state,
1915  * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
1916  *
1917  * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
1918  * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
1919  * use the SYSCONFIG softreset bit to provide the status.
1920  *
1921  * Note that some IP like McBSP do have reset control but don't have
1922  * reset status.
1923  */
1924 static int _ocp_softreset(struct omap_hwmod *oh)
1926         u32 v;
1927         int c = 0;
1928         int ret = 0;
1930         if (!oh->class->sysc ||
1931             !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
1932                 return -ENOENT;
1934         /* clocks must be on for this operation */
1935         if (oh->_state != _HWMOD_STATE_ENABLED) {
1936                 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1937                         oh->name);
1938                 return -EINVAL;
1939         }
1941         /* For some modules, all optionnal clocks need to be enabled as well */
1942         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1943                 _enable_optional_clocks(oh);
1945         pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
1947         v = oh->_sysc_cache;
1948         ret = _set_softreset(oh, &v);
1949         if (ret)
1950                 goto dis_opt_clks;
1952         _write_sysconfig(v, oh);
1954         if (oh->class->sysc->srst_udelay)
1955                 udelay(oh->class->sysc->srst_udelay);
1957         c = _wait_softreset_complete(oh);
1958         if (c == MAX_MODULE_SOFTRESET_WAIT) {
1959                 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1960                            oh->name, MAX_MODULE_SOFTRESET_WAIT);
1961                 ret = -ETIMEDOUT;
1962                 goto dis_opt_clks;
1963         } else {
1964                 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
1965         }
1967         ret = _clear_softreset(oh, &v);
1968         if (ret)
1969                 goto dis_opt_clks;
1971         _write_sysconfig(v, oh);
1973         /*
1974          * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1975          * _wait_target_ready() or _reset()
1976          */
1978 dis_opt_clks:
1979         if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1980                 _disable_optional_clocks(oh);
1982         return ret;
1985 /**
1986  * _reset - reset an omap_hwmod
1987  * @oh: struct omap_hwmod *
1988  *
1989  * Resets an omap_hwmod @oh.  If the module has a custom reset
1990  * function pointer defined, then call it to reset the IP block, and
1991  * pass along its return value to the caller.  Otherwise, if the IP
1992  * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1993  * associated with it, call a function to reset the IP block via that
1994  * method, and pass along the return value to the caller.  Finally, if
1995  * the IP block has some hardreset lines associated with it, assert
1996  * all of those, but do _not_ deassert them. (This is because driver
1997  * authors have expressed an apparent requirement to control the
1998  * deassertion of the hardreset lines themselves.)
1999  *
2000  * The default software reset mechanism for most OMAP IP blocks is
2001  * triggered via the OCP_SYSCONFIG.SOFTRESET bit.  However, some
2002  * hwmods cannot be reset via this method.  Some are not targets and
2003  * therefore have no OCP header registers to access.  Others (like the
2004  * IVA) have idiosyncratic reset sequences.  So for these relatively
2005  * rare cases, custom reset code can be supplied in the struct
2006  * omap_hwmod_class .reset function pointer.
2007  *
2008  * _set_dmadisable() is called to set the DMADISABLE bit so that it
2009  * does not prevent idling of the system. This is necessary for cases
2010  * where ROMCODE/BOOTLOADER uses dma and transfers control to the
2011  * kernel without disabling dma.
2012  *
2013  * Passes along the return value from either _ocp_softreset() or the
2014  * custom reset function - these must return -EINVAL if the hwmod
2015  * cannot be reset this way or if the hwmod is in the wrong state,
2016  * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
2017  */
2018 static int _reset(struct omap_hwmod *oh)
2020         int i, r;
2022         pr_debug("omap_hwmod: %s: resetting\n", oh->name);
2024         if (oh->class->reset) {
2025                 r = oh->class->reset(oh);
2026         } else {
2027                 if (oh->rst_lines_cnt > 0) {
2028                         for (i = 0; i < oh->rst_lines_cnt; i++)
2029                                 _assert_hardreset(oh, oh->rst_lines[i].name);
2030                         return 0;
2031                 } else {
2032                         r = _ocp_softreset(oh);
2033                         if (r == -ENOENT)
2034                                 r = 0;
2035                 }
2036         }
2038         _set_dmadisable(oh);
2040         /*
2041          * OCP_SYSCONFIG bits need to be reprogrammed after a
2042          * softreset.  The _enable() function should be split to avoid
2043          * the rewrite of the OCP_SYSCONFIG register.
2044          */
2045         if (oh->class->sysc) {
2046                 _update_sysc_cache(oh);
2047                 _enable_sysc(oh);
2048         }
2050         return r;
2053 /**
2054  * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain
2055  *
2056  * Call the appropriate PRM function to clear any logged I/O chain
2057  * wakeups and to reconfigure the chain.  This apparently needs to be
2058  * done upon every mux change.  Since hwmods can be concurrently
2059  * enabled and idled, hold a spinlock around the I/O chain
2060  * reconfiguration sequence.  No return value.
2061  *
2062  * XXX When the PRM code is moved to drivers, this function can be removed,
2063  * as the PRM infrastructure should abstract this.
2064  */
2065 static void _reconfigure_io_chain(void)
2067         unsigned long flags;
2069         spin_lock_irqsave(&io_chain_lock, flags);
2071         if (cpu_is_omap34xx() && omap3_has_io_chain_ctrl())
2072                 omap3xxx_prm_reconfigure_io_chain();
2073         else if (cpu_is_omap44xx())
2074                 omap44xx_prm_reconfigure_io_chain();
2076         spin_unlock_irqrestore(&io_chain_lock, flags);
2079 /**
2080  * _omap4_update_context_lost - increment hwmod context loss counter if
2081  * hwmod context was lost, and clear hardware context loss reg
2082  * @oh: hwmod to check for context loss
2083  *
2084  * If the PRCM indicates that the hwmod @oh lost context, increment
2085  * our in-memory context loss counter, and clear the RM_*_CONTEXT
2086  * bits. No return value.
2087  */
2088 static void _omap4_update_context_lost(struct omap_hwmod *oh)
2090         if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
2091                 return;
2093         if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2094                                           oh->clkdm->pwrdm.ptr->prcm_offs,
2095                                           oh->prcm.omap4.context_offs))
2096                 return;
2098         oh->prcm.omap4.context_lost_counter++;
2099         prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2100                                          oh->clkdm->pwrdm.ptr->prcm_offs,
2101                                          oh->prcm.omap4.context_offs);
2104 /**
2105  * _omap4_get_context_lost - get context loss counter for a hwmod
2106  * @oh: hwmod to get context loss counter for
2107  *
2108  * Returns the in-memory context loss counter for a hwmod.
2109  */
2110 static int _omap4_get_context_lost(struct omap_hwmod *oh)
2112         return oh->prcm.omap4.context_lost_counter;
2115 /**
2116  * _enable_preprogram - Pre-program an IP block during the _enable() process
2117  * @oh: struct omap_hwmod *
2118  *
2119  * Some IP blocks (such as AESS) require some additional programming
2120  * after enable before they can enter idle.  If a function pointer to
2121  * do so is present in the hwmod data, then call it and pass along the
2122  * return value; otherwise, return 0.
2123  */
2124 static int _enable_preprogram(struct omap_hwmod *oh)
2126         if (!oh->class->enable_preprogram)
2127                 return 0;
2129         return oh->class->enable_preprogram(oh);
2132 /**
2133  * _enable - enable an omap_hwmod
2134  * @oh: struct omap_hwmod *
2135  *
2136  * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
2137  * register target.  Returns -EINVAL if the hwmod is in the wrong
2138  * state or passes along the return value of _wait_target_ready().
2139  */
2140 static int _enable(struct omap_hwmod *oh)
2142         int r;
2143         int hwsup = 0;
2145         pr_debug("omap_hwmod: %s: enabling\n", oh->name);
2147         /*
2148          * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
2149          * state at init.  Now that someone is really trying to enable
2150          * them, just ensure that the hwmod mux is set.
2151          */
2152         if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
2153                 /*
2154                  * If the caller has mux data populated, do the mux'ing
2155                  * which wouldn't have been done as part of the _enable()
2156                  * done during setup.
2157                  */
2158                 if (oh->mux)
2159                         omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2161                 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
2162                 return 0;
2163         }
2165         if (oh->_state != _HWMOD_STATE_INITIALIZED &&
2166             oh->_state != _HWMOD_STATE_IDLE &&
2167             oh->_state != _HWMOD_STATE_DISABLED) {
2168                 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
2169                         oh->name);
2170                 return -EINVAL;
2171         }
2173         /*
2174          * If an IP block contains HW reset lines and all of them are
2175          * asserted, we let integration code associated with that
2176          * block handle the enable.  We've received very little
2177          * information on what those driver authors need, and until
2178          * detailed information is provided and the driver code is
2179          * posted to the public lists, this is probably the best we
2180          * can do.
2181          */
2182         if (_are_all_hardreset_lines_asserted(oh))
2183                 return 0;
2185         /* Mux pins for device runtime if populated */
2186         if (oh->mux && (!oh->mux->enabled ||
2187                         ((oh->_state == _HWMOD_STATE_IDLE) &&
2188                          oh->mux->pads_dynamic))) {
2189                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2190                 _reconfigure_io_chain();
2191         } else if (oh->flags & HWMOD_FORCE_MSTANDBY) {
2192                 _reconfigure_io_chain();
2193         }
2195         _add_initiator_dep(oh, mpu_oh);
2197         if (oh->clkdm) {
2198                 /*
2199                  * A clockdomain must be in SW_SUP before enabling
2200                  * completely the module. The clockdomain can be set
2201                  * in HW_AUTO only when the module become ready.
2202                  */
2203                 hwsup = clkdm_in_hwsup(oh->clkdm) &&
2204                         !clkdm_missing_idle_reporting(oh->clkdm);
2205                 r = clkdm_hwmod_enable(oh->clkdm, oh);
2206                 if (r) {
2207                         WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
2208                              oh->name, oh->clkdm->name, r);
2209                         return r;
2210                 }
2211         }
2213         _enable_clocks(oh);
2214         if (soc_ops.enable_module)
2215                 soc_ops.enable_module(oh);
2216         if (oh->flags & HWMOD_BLOCK_WFI)
2217                 cpu_idle_poll_ctrl(true);
2219         if (soc_ops.update_context_lost)
2220                 soc_ops.update_context_lost(oh);
2222         r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
2223                 -EINVAL;
2224         if (!r) {
2225                 /*
2226                  * Set the clockdomain to HW_AUTO only if the target is ready,
2227                  * assuming that the previous state was HW_AUTO
2228                  */
2229                 if (oh->clkdm && hwsup)
2230                         clkdm_allow_idle(oh->clkdm);
2232                 oh->_state = _HWMOD_STATE_ENABLED;
2234                 /* Access the sysconfig only if the target is ready */
2235                 if (oh->class->sysc) {
2236                         if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
2237                                 _update_sysc_cache(oh);
2238                         _enable_sysc(oh);
2239                 }
2240                 r = _enable_preprogram(oh);
2241         } else {
2242                 if (soc_ops.disable_module)
2243                         soc_ops.disable_module(oh);
2244                 _disable_clocks(oh);
2245                 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
2246                          oh->name, r);
2248                 if (oh->clkdm)
2249                         clkdm_hwmod_disable(oh->clkdm, oh);
2250         }
2252         return r;
2255 /**
2256  * _idle - idle an omap_hwmod
2257  * @oh: struct omap_hwmod *
2258  *
2259  * Idles an omap_hwmod @oh.  This should be called once the hwmod has
2260  * no further work.  Returns -EINVAL if the hwmod is in the wrong
2261  * state or returns 0.
2262  */
2263 static int _idle(struct omap_hwmod *oh)
2265         pr_debug("omap_hwmod: %s: idling\n", oh->name);
2267         if (oh->_state != _HWMOD_STATE_ENABLED) {
2268                 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2269                         oh->name);
2270                 return -EINVAL;
2271         }
2273         if (_are_all_hardreset_lines_asserted(oh))
2274                 return 0;
2276         if (oh->class->sysc)
2277                 _idle_sysc(oh);
2278         _del_initiator_dep(oh, mpu_oh);
2280         if (oh->flags & HWMOD_BLOCK_WFI)
2281                 cpu_idle_poll_ctrl(false);
2282         if (soc_ops.disable_module)
2283                 soc_ops.disable_module(oh);
2285         /*
2286          * The module must be in idle mode before disabling any parents
2287          * clocks. Otherwise, the parent clock might be disabled before
2288          * the module transition is done, and thus will prevent the
2289          * transition to complete properly.
2290          */
2291         _disable_clocks(oh);
2292         if (oh->clkdm)
2293                 clkdm_hwmod_disable(oh->clkdm, oh);
2295         /* Mux pins for device idle if populated */
2296         if (oh->mux && oh->mux->pads_dynamic) {
2297                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
2298                 _reconfigure_io_chain();
2299         } else if (oh->flags & HWMOD_FORCE_MSTANDBY) {
2300                 _reconfigure_io_chain();
2301         }
2303         oh->_state = _HWMOD_STATE_IDLE;
2305         return 0;
2308 /**
2309  * _shutdown - shutdown an omap_hwmod
2310  * @oh: struct omap_hwmod *
2311  *
2312  * Shut down an omap_hwmod @oh.  This should be called when the driver
2313  * used for the hwmod is removed or unloaded or if the driver is not
2314  * used by the system.  Returns -EINVAL if the hwmod is in the wrong
2315  * state or returns 0.
2316  */
2317 static int _shutdown(struct omap_hwmod *oh)
2319         int ret, i;
2320         u8 prev_state;
2322         if (oh->_state != _HWMOD_STATE_IDLE &&
2323             oh->_state != _HWMOD_STATE_ENABLED) {
2324                 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2325                         oh->name);
2326                 return -EINVAL;
2327         }
2329         if (_are_all_hardreset_lines_asserted(oh))
2330                 return 0;
2332         pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2334         if (oh->class->pre_shutdown) {
2335                 prev_state = oh->_state;
2336                 if (oh->_state == _HWMOD_STATE_IDLE)
2337                         _enable(oh);
2338                 ret = oh->class->pre_shutdown(oh);
2339                 if (ret) {
2340                         if (prev_state == _HWMOD_STATE_IDLE)
2341                                 _idle(oh);
2342                         return ret;
2343                 }
2344         }
2346         if (oh->class->sysc) {
2347                 if (oh->_state == _HWMOD_STATE_IDLE)
2348                         _enable(oh);
2349                 _shutdown_sysc(oh);
2350         }
2352         /* clocks and deps are already disabled in idle */
2353         if (oh->_state == _HWMOD_STATE_ENABLED) {
2354                 _del_initiator_dep(oh, mpu_oh);
2355                 /* XXX what about the other system initiators here? dma, dsp */
2356                 if (oh->flags & HWMOD_BLOCK_WFI)
2357                         cpu_idle_poll_ctrl(false);
2358                 if (soc_ops.disable_module)
2359                         soc_ops.disable_module(oh);
2360                 _disable_clocks(oh);
2361                 if (oh->clkdm)
2362                         clkdm_hwmod_disable(oh->clkdm, oh);
2363         }
2364         /* XXX Should this code also force-disable the optional clocks? */
2366         for (i = 0; i < oh->rst_lines_cnt; i++)
2367                 _assert_hardreset(oh, oh->rst_lines[i].name);
2369         /* Mux pins to safe mode or use populated off mode values */
2370         if (oh->mux)
2371                 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
2373         oh->_state = _HWMOD_STATE_DISABLED;
2375         return 0;
2378 static int of_dev_find_hwmod(struct device_node *np,
2379                              struct omap_hwmod *oh)
2381         int count, i, res;
2382         const char *p;
2384         count = of_property_count_strings(np, "ti,hwmods");
2385         if (count < 1)
2386                 return -ENODEV;
2388         for (i = 0; i < count; i++) {
2389                 res = of_property_read_string_index(np, "ti,hwmods",
2390                                                     i, &p);
2391                 if (res)
2392                         continue;
2393                 if (!strcmp(p, oh->name)) {
2394                         pr_debug("omap_hwmod: dt %s[%i] uses hwmod %s\n",
2395                                  np->name, i, oh->name);
2396                         return i;
2397                 }
2398         }
2400         return -ENODEV;
2403 /**
2404  * of_dev_hwmod_lookup - look up needed hwmod from dt blob
2405  * @np: struct device_node *
2406  * @oh: struct omap_hwmod *
2407  * @index: index of the entry found
2408  * @found: struct device_node * found or NULL
2409  *
2410  * Parse the dt blob and find out needed hwmod. Recursive function is
2411  * implemented to take care hierarchical dt blob parsing.
2412  * Return: Returns 0 on success, -ENODEV when not found.
2413  */
2414 static int of_dev_hwmod_lookup(struct device_node *np,
2415                                struct omap_hwmod *oh,
2416                                int *index,
2417                                struct device_node **found)
2419         struct device_node *np0 = NULL;
2420         int res;
2422         res = of_dev_find_hwmod(np, oh);
2423         if (res >= 0) {
2424                 *found = np;
2425                 *index = res;
2426                 return 0;
2427         }
2429         for_each_child_of_node(np, np0) {
2430                 struct device_node *fc;
2431                 int i;
2433                 res = of_dev_hwmod_lookup(np0, oh, &i, &fc);
2434                 if (res == 0) {
2435                         *found = fc;
2436                         *index = i;
2437                         return 0;
2438                 }
2439         }
2441         *found = NULL;
2442         *index = 0;
2444         return -ENODEV;
2447 /**
2448  * _setup_reidle- check hwmod @oh and add to reidle list
2449  * @oh: struct omap_hwmod *
2450  * @n: (unused)
2451  *
2452  * Check hwmod for HWMOD_NEEDS_REIDLE flag and add to list if
2453  * necessary. Return 0 on success.
2454  */
2455 static int _setup_reidle(struct omap_hwmod *oh, void *data)
2457         int ret;
2459         if (oh->flags & HWMOD_NEEDS_REIDLE) {
2460                 ret = omap_hwmod_enable_reidle(oh);
2462                 if (!ret)
2463                         return ret;
2464         }
2466         return 0;
2469 /**
2470  * _init_mpu_rt_base - populate the virtual address for a hwmod
2471  * @oh: struct omap_hwmod * to locate the virtual address
2472  * @data: (unused, caller should pass NULL)
2473  * @index: index of the reg entry iospace in device tree
2474  * @np: struct device_node * of the IP block's device node in the DT data
2475  *
2476  * Cache the virtual address used by the MPU to access this IP block's
2477  * registers.  This address is needed early so the OCP registers that
2478  * are part of the device's address space can be ioremapped properly.
2479  *
2480  * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and
2481  * -ENXIO on absent or invalid register target address space.
2482  */
2483 static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data,
2484                                     int index, struct device_node *np)
2486         struct omap_hwmod_addr_space *mem;
2487         void __iomem *va_start = NULL;
2489         if (!oh)
2490                 return -EINVAL;
2492         _save_mpu_port_index(oh);
2494         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2495                 return -ENXIO;
2497         mem = _find_mpu_rt_addr_space(oh);
2498         if (!mem) {
2499                 pr_debug("omap_hwmod: %s: no MPU register target found\n",
2500                          oh->name);
2502                 /* Extract the IO space from device tree blob */
2503                 if (!np)
2504                         return -ENXIO;
2506                 va_start = of_iomap(np, index + oh->mpu_rt_idx);
2507         } else {
2508                 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
2509         }
2511         if (!va_start) {
2512                 if (mem)
2513                         pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
2514                 else
2515                         pr_err("omap_hwmod: %s: Missing dt reg%i for %s\n",
2516                                oh->name, index, np->full_name);
2517                 return -ENXIO;
2518         }
2520         pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2521                  oh->name, va_start);
2523         oh->_mpu_rt_va = va_start;
2524         return 0;
2527 /**
2528  * _init - initialize internal data for the hwmod @oh
2529  * @oh: struct omap_hwmod *
2530  * @n: (unused)
2531  *
2532  * Look up the clocks and the address space used by the MPU to access
2533  * registers belonging to the hwmod @oh.  @oh must already be
2534  * registered at this point.  This is the first of two phases for
2535  * hwmod initialization.  Code called here does not touch any hardware
2536  * registers, it simply prepares internal data structures.  Returns 0
2537  * upon success or if the hwmod isn't registered or if the hwmod's
2538  * address space is not defined, or -EINVAL upon failure.
2539  */
2540 static int __init _init(struct omap_hwmod *oh, void *data)
2542         int r, index;
2543         struct device_node *np = NULL;
2545         if (oh->_state != _HWMOD_STATE_REGISTERED)
2546                 return 0;
2548         if (of_have_populated_dt()) {
2549                 struct device_node *bus;
2551                 bus = of_find_node_by_name(NULL, "ocp");
2552                 if (!bus)
2553                         return -ENODEV;
2555                 r = of_dev_hwmod_lookup(bus, oh, &index, &np);
2556                 if (r)
2557                         pr_debug("omap_hwmod: %s missing dt data\n", oh->name);
2558                 else if (np && index)
2559                         pr_warn("omap_hwmod: %s using broken dt data from %s\n",
2560                                 oh->name, np->name);
2561         }
2563         if (oh->class->sysc) {
2564                 r = _init_mpu_rt_base(oh, NULL, index, np);
2565                 if (r < 0) {
2566                         WARN(1, "omap_hwmod: %s: doesn't have mpu register target base\n",
2567                              oh->name);
2568                         return 0;
2569                 }
2570         }
2572         r = _init_clocks(oh, NULL);
2573         if (r < 0) {
2574                 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2575                 return -EINVAL;
2576         }
2578         if (np) {
2579                 if (of_find_property(np, "ti,no-reset-on-init", NULL))
2580                         oh->flags |= HWMOD_INIT_NO_RESET;
2581                 if (of_find_property(np, "ti,no-idle-on-init", NULL))
2582                         oh->flags |= HWMOD_INIT_NO_IDLE;
2583                 if (of_find_property(np, "ti,no-init", NULL))
2584                         oh->flags |= HWMOD_NO_INIT;
2585         }
2586         if (oh->flags & HWMOD_NO_INIT)
2587                 oh->_state = _HWMOD_STATE_DISABLED;
2588         else
2589                 oh->_state = _HWMOD_STATE_INITIALIZED;
2591         return 0;
2594 /**
2595  * _setup_iclk_autoidle - configure an IP block's interface clocks
2596  * @oh: struct omap_hwmod *
2597  *
2598  * Set up the module's interface clocks.  XXX This function is still mostly
2599  * a stub; implementing this properly requires iclk autoidle usecounting in
2600  * the clock code.   No return value.
2601  */
2602 static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
2604         struct omap_hwmod_ocp_if *os;
2605         struct list_head *p;
2606         int i = 0;
2607         if (oh->_state != _HWMOD_STATE_INITIALIZED)
2608                 return;
2610         p = oh->slave_ports.next;
2612         while (i < oh->slaves_cnt) {
2613                 os = _fetch_next_ocp_if(&p, &i);
2614                 if (!os->_clk)
2615                         continue;
2617                 if (os->flags & OCPIF_SWSUP_IDLE) {
2618                         /* XXX omap_iclk_deny_idle(c); */
2619                 } else {
2620                         /* XXX omap_iclk_allow_idle(c); */
2621                         clk_enable(os->_clk);
2622                 }
2623         }
2625         return;
2628 /**
2629  * _setup_reset - reset an IP block during the setup process
2630  * @oh: struct omap_hwmod *
2631  *
2632  * Reset the IP block corresponding to the hwmod @oh during the setup
2633  * process.  The IP block is first enabled so it can be successfully
2634  * reset.  Returns 0 upon success or a negative error code upon
2635  * failure.
2636  */
2637 static int __init _setup_reset(struct omap_hwmod *oh)
2639         int r;
2641         if (oh->_state != _HWMOD_STATE_INITIALIZED)
2642                 return -EINVAL;
2644         if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
2645                 return -EPERM;
2647         if (oh->rst_lines_cnt == 0) {
2648                 r = _enable(oh);
2649                 if (r) {
2650                         pr_warning("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2651                                    oh->name, oh->_state);
2652                         return -EINVAL;
2653                 }
2654         }
2656         if (!(oh->flags & HWMOD_INIT_NO_RESET))
2657                 r = _reset(oh);
2659         return r;
2662 /**
2663  * _setup_postsetup - transition to the appropriate state after _setup
2664  * @oh: struct omap_hwmod *
2665  *
2666  * Place an IP block represented by @oh into a "post-setup" state --
2667  * either IDLE, ENABLED, or DISABLED.  ("post-setup" simply means that
2668  * this function is called at the end of _setup().)  The postsetup
2669  * state for an IP block can be changed by calling
2670  * omap_hwmod_enter_postsetup_state() early in the boot process,
2671  * before one of the omap_hwmod_setup*() functions are called for the
2672  * IP block.
2673  *
2674  * The IP block stays in this state until a PM runtime-based driver is
2675  * loaded for that IP block.  A post-setup state of IDLE is
2676  * appropriate for almost all IP blocks with runtime PM-enabled
2677  * drivers, since those drivers are able to enable the IP block.  A
2678  * post-setup state of ENABLED is appropriate for kernels with PM
2679  * runtime disabled.  The DISABLED state is appropriate for unusual IP
2680  * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2681  * included, since the WDTIMER starts running on reset and will reset
2682  * the MPU if left active.
2683  *
2684  * This post-setup mechanism is deprecated.  Once all of the OMAP
2685  * drivers have been converted to use PM runtime, and all of the IP
2686  * block data and interconnect data is available to the hwmod code, it
2687  * should be possible to replace this mechanism with a "lazy reset"
2688  * arrangement.  In a "lazy reset" setup, each IP block is enabled
2689  * when the driver first probes, then all remaining IP blocks without
2690  * drivers are either shut down or enabled after the drivers have
2691  * loaded.  However, this cannot take place until the above
2692  * preconditions have been met, since otherwise the late reset code
2693  * has no way of knowing which IP blocks are in use by drivers, and
2694  * which ones are unused.
2695  *
2696  * No return value.
2697  */
2698 static void __init _setup_postsetup(struct omap_hwmod *oh)
2700         u8 postsetup_state;
2702         if (oh->rst_lines_cnt > 0)
2703                 return;
2705         postsetup_state = oh->_postsetup_state;
2706         if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2707                 postsetup_state = _HWMOD_STATE_ENABLED;
2709         /*
2710          * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2711          * it should be set by the core code as a runtime flag during startup
2712          */
2713         if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
2714             (postsetup_state == _HWMOD_STATE_IDLE)) {
2715                 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
2716                 postsetup_state = _HWMOD_STATE_ENABLED;
2717         }
2719         if (postsetup_state == _HWMOD_STATE_IDLE)
2720                 _idle(oh);
2721         else if (postsetup_state == _HWMOD_STATE_DISABLED)
2722                 _shutdown(oh);
2723         else if (postsetup_state != _HWMOD_STATE_ENABLED)
2724                 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2725                      oh->name, postsetup_state);
2727         return;
2730 /**
2731  * _setup - prepare IP block hardware for use
2732  * @oh: struct omap_hwmod *
2733  * @n: (unused, pass NULL)
2734  *
2735  * Configure the IP block represented by @oh.  This may include
2736  * enabling the IP block, resetting it, and placing it into a
2737  * post-setup state, depending on the type of IP block and applicable
2738  * flags.  IP blocks are reset to prevent any previous configuration
2739  * by the bootloader or previous operating system from interfering
2740  * with power management or other parts of the system.  The reset can
2741  * be avoided; see omap_hwmod_no_setup_reset().  This is the second of
2742  * two phases for hwmod initialization.  Code called here generally
2743  * affects the IP block hardware, or system integration hardware
2744  * associated with the IP block.  Returns 0.
2745  */
2746 static int __init _setup(struct omap_hwmod *oh, void *data)
2748         if (oh->_state != _HWMOD_STATE_INITIALIZED)
2749                 return 0;
2751         if (oh->parent_hwmod) {
2752                 int r;
2754                 r = _enable(oh->parent_hwmod);
2755                 WARN(r, "hwmod: %s: setup: failed to enable parent hwmod %s\n",
2756                      oh->name, oh->parent_hwmod->name);
2757         }
2759         _setup_iclk_autoidle(oh);
2761         if (!_setup_reset(oh))
2762                 _setup_postsetup(oh);
2764         if (oh->parent_hwmod) {
2765                 u8 postsetup_state;
2767                 postsetup_state = oh->parent_hwmod->_postsetup_state;
2769                 if (postsetup_state == _HWMOD_STATE_IDLE)
2770                         _idle(oh->parent_hwmod);
2771                 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2772                         _shutdown(oh->parent_hwmod);
2773                 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2774                         WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2775                              oh->parent_hwmod->name, postsetup_state);
2776         }
2778         return 0;
2781 /**
2782  * _register - register a struct omap_hwmod
2783  * @oh: struct omap_hwmod *
2784  *
2785  * Registers the omap_hwmod @oh.  Returns -EEXIST if an omap_hwmod
2786  * already has been registered by the same name; -EINVAL if the
2787  * omap_hwmod is in the wrong state, if @oh is NULL, if the
2788  * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2789  * name, or if the omap_hwmod's class is missing a name; or 0 upon
2790  * success.
2791  *
2792  * XXX The data should be copied into bootmem, so the original data
2793  * should be marked __initdata and freed after init.  This would allow
2794  * unneeded omap_hwmods to be freed on multi-OMAP configurations.  Note
2795  * that the copy process would be relatively complex due to the large number
2796  * of substructures.
2797  */
2798 static int __init _register(struct omap_hwmod *oh)
2800         if (!oh || !oh->name || !oh->class || !oh->class->name ||
2801             (oh->_state != _HWMOD_STATE_UNKNOWN))
2802                 return -EINVAL;
2804         pr_debug("omap_hwmod: %s: registering\n", oh->name);
2806         if (_lookup(oh->name))
2807                 return -EEXIST;
2809         list_add_tail(&oh->node, &omap_hwmod_list);
2811         INIT_LIST_HEAD(&oh->master_ports);
2812         INIT_LIST_HEAD(&oh->slave_ports);
2813         spin_lock_init(&oh->_lock);
2815         oh->_state = _HWMOD_STATE_REGISTERED;
2817         /*
2818          * XXX Rather than doing a strcmp(), this should test a flag
2819          * set in the hwmod data, inserted by the autogenerator code.
2820          */
2821         if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2822                 mpu_oh = oh;
2824         return 0;
2827 /**
2828  * _alloc_links - return allocated memory for hwmod links
2829  * @ml: pointer to a struct omap_hwmod_link * for the master link
2830  * @sl: pointer to a struct omap_hwmod_link * for the slave link
2831  *
2832  * Return pointers to two struct omap_hwmod_link records, via the
2833  * addresses pointed to by @ml and @sl.  Will first attempt to return
2834  * memory allocated as part of a large initial block, but if that has
2835  * been exhausted, will allocate memory itself.  Since ideally this
2836  * second allocation path will never occur, the number of these
2837  * 'supplemental' allocations will be logged when debugging is
2838  * enabled.  Returns 0.
2839  */
2840 static int __init _alloc_links(struct omap_hwmod_link **ml,
2841                                struct omap_hwmod_link **sl)
2843         unsigned int sz;
2845         if ((free_ls + LINKS_PER_OCP_IF) <= max_ls) {
2846                 *ml = &linkspace[free_ls++];
2847                 *sl = &linkspace[free_ls++];
2848                 return 0;
2849         }
2851         sz = sizeof(struct omap_hwmod_link) * LINKS_PER_OCP_IF;
2853         *sl = NULL;
2854         *ml = memblock_virt_alloc(sz, 0);
2856         *sl = (void *)(*ml) + sizeof(struct omap_hwmod_link);
2858         ls_supp++;
2859         pr_debug("omap_hwmod: supplemental link allocations needed: %d\n",
2860                  ls_supp * LINKS_PER_OCP_IF);
2862         return 0;
2863 };
2865 /**
2866  * _add_link - add an interconnect between two IP blocks
2867  * @oi: pointer to a struct omap_hwmod_ocp_if record
2868  *
2869  * Add struct omap_hwmod_link records connecting the master IP block
2870  * specified in @oi->master to @oi, and connecting the slave IP block
2871  * specified in @oi->slave to @oi.  This code is assumed to run before
2872  * preemption or SMP has been enabled, thus avoiding the need for
2873  * locking in this code.  Changes to this assumption will require
2874  * additional locking.  Returns 0.
2875  */
2876 static int __init _add_link(struct omap_hwmod_ocp_if *oi)
2878         struct omap_hwmod_link *ml, *sl;
2880         pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2881                  oi->slave->name);
2883         _alloc_links(&ml, &sl);
2885         ml->ocp_if = oi;
2886         INIT_LIST_HEAD(&ml->node);
2887         list_add(&ml->node, &oi->master->master_ports);
2888         oi->master->masters_cnt++;
2890         sl->ocp_if = oi;
2891         INIT_LIST_HEAD(&sl->node);
2892         list_add(&sl->node, &oi->slave->slave_ports);
2893         oi->slave->slaves_cnt++;
2895         return 0;
2898 /**
2899  * _register_link - register a struct omap_hwmod_ocp_if
2900  * @oi: struct omap_hwmod_ocp_if *
2901  *
2902  * Registers the omap_hwmod_ocp_if record @oi.  Returns -EEXIST if it
2903  * has already been registered; -EINVAL if @oi is NULL or if the
2904  * record pointed to by @oi is missing required fields; or 0 upon
2905  * success.
2906  *
2907  * XXX The data should be copied into bootmem, so the original data
2908  * should be marked __initdata and freed after init.  This would allow
2909  * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2910  */
2911 static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2913         if (!oi || !oi->master || !oi->slave || !oi->user)
2914                 return -EINVAL;
2916         if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2917                 return -EEXIST;
2919         pr_debug("omap_hwmod: registering link from %s to %s\n",
2920                  oi->master->name, oi->slave->name);
2922         /*
2923          * Register the connected hwmods, if they haven't been
2924          * registered already
2925          */
2926         if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2927                 _register(oi->master);
2929         if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2930                 _register(oi->slave);
2932         _add_link(oi);
2934         oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2936         return 0;
2939 /**
2940  * _alloc_linkspace - allocate large block of hwmod links
2941  * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count
2942  *
2943  * Allocate a large block of struct omap_hwmod_link records.  This
2944  * improves boot time significantly by avoiding the need to allocate
2945  * individual records one by one.  If the number of records to
2946  * allocate in the block hasn't been manually specified, this function
2947  * will count the number of struct omap_hwmod_ocp_if records in @ois
2948  * and use that to determine the allocation size.  For SoC families
2949  * that require multiple list registrations, such as OMAP3xxx, this
2950  * estimation process isn't optimal, so manual estimation is advised
2951  * in those cases.  Returns -EEXIST if the allocation has already occurred
2952  * or 0 upon success.
2953  */
2954 static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois)
2956         unsigned int i = 0;
2957         unsigned int sz;
2959         if (linkspace) {
2960                 WARN(1, "linkspace already allocated\n");
2961                 return -EEXIST;
2962         }
2964         if (max_ls == 0)
2965                 while (ois[i++])
2966                         max_ls += LINKS_PER_OCP_IF;
2968         sz = sizeof(struct omap_hwmod_link) * max_ls;
2970         pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n",
2971                  __func__, sz, max_ls);
2973         linkspace = memblock_virt_alloc(sz, 0);
2975         return 0;
2978 /* Static functions intended only for use in soc_ops field function pointers */
2980 /**
2981  * _omap2xxx_wait_target_ready - wait for a module to leave slave idle
2982  * @oh: struct omap_hwmod *
2983  *
2984  * Wait for a module @oh to leave slave idle.  Returns 0 if the module
2985  * does not have an IDLEST bit or if the module successfully leaves
2986  * slave idle; otherwise, pass along the return value of the
2987  * appropriate *_cm*_wait_module_ready() function.
2988  */
2989 static int _omap2xxx_wait_target_ready(struct omap_hwmod *oh)
2991         if (!oh)
2992                 return -EINVAL;
2994         if (oh->flags & HWMOD_NO_IDLEST)
2995                 return 0;
2997         /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2999         return omap2xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
3000                                              oh->prcm.omap2.idlest_reg_id,
3001                                              oh->prcm.omap2.idlest_idle_bit);
3004 /**
3005  * _omap3xxx_wait_target_ready - wait for a module to leave slave idle
3006  * @oh: struct omap_hwmod *
3007  *
3008  * Wait for a module @oh to leave slave idle.  Returns 0 if the module
3009  * does not have an IDLEST bit or if the module successfully leaves
3010  * slave idle; otherwise, pass along the return value of the
3011  * appropriate *_cm*_wait_module_ready() function.
3012  */
3013 static int _omap3xxx_wait_target_ready(struct omap_hwmod *oh)
3015         if (!oh)
3016                 return -EINVAL;
3018         if (oh->flags & HWMOD_NO_IDLEST)
3019                 return 0;
3021         /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
3023         return omap3xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
3024                                              oh->prcm.omap2.idlest_reg_id,
3025                                              oh->prcm.omap2.idlest_idle_bit);
3028 /**
3029  * _omap4_wait_target_ready - wait for a module to leave slave idle
3030  * @oh: struct omap_hwmod *
3031  *
3032  * Wait for a module @oh to leave slave idle.  Returns 0 if the module
3033  * does not have an IDLEST bit or if the module successfully leaves
3034  * slave idle; otherwise, pass along the return value of the
3035  * appropriate *_cm*_wait_module_ready() function.
3036  */
3037 static int _omap4_wait_target_ready(struct omap_hwmod *oh)
3039         if (!oh)
3040                 return -EINVAL;
3042         if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
3043                 return 0;
3045         /* XXX check module SIDLEMODE, hardreset status */
3047         return omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition,
3048                                               oh->clkdm->cm_inst,
3049                                               oh->clkdm->clkdm_offs,
3050                                               oh->prcm.omap4.clkctrl_offs);
3053 /**
3054  * _am33xx_wait_target_ready - wait for a module to leave slave idle
3055  * @oh: struct omap_hwmod *
3056  *
3057  * Wait for a module @oh to leave slave idle.  Returns 0 if the module
3058  * does not have an IDLEST bit or if the module successfully leaves
3059  * slave idle; otherwise, pass along the return value of the
3060  * appropriate *_cm*_wait_module_ready() function.
3061  */
3062 static int _am33xx_wait_target_ready(struct omap_hwmod *oh)
3064         if (!oh || !oh->clkdm)
3065                 return -EINVAL;
3067         if (oh->flags & HWMOD_NO_IDLEST)
3068                 return 0;
3070         /* XXX check module SIDLEMODE, hardreset status */
3072         return am33xx_cm_wait_module_ready(oh->clkdm->cm_inst,
3073                                               oh->clkdm->clkdm_offs,
3074                                               oh->prcm.omap4.clkctrl_offs);
3077 /**
3078  * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
3079  * @oh: struct omap_hwmod * to assert hardreset
3080  * @ohri: hardreset line data
3081  *
3082  * Call omap2_prm_assert_hardreset() with parameters extracted from
3083  * the hwmod @oh and the hardreset line data @ohri.  Only intended for
3084  * use as an soc_ops function pointer.  Passes along the return value
3085  * from omap2_prm_assert_hardreset().  XXX This function is scheduled
3086  * for removal when the PRM code is moved into drivers/.
3087  */
3088 static int _omap2_assert_hardreset(struct omap_hwmod *oh,
3089                                    struct omap_hwmod_rst_info *ohri)
3091         return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
3092                                           ohri->rst_shift);
3095 /**
3096  * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
3097  * @oh: struct omap_hwmod * to deassert hardreset
3098  * @ohri: hardreset line data
3099  *
3100  * Call omap2_prm_deassert_hardreset() with parameters extracted from
3101  * the hwmod @oh and the hardreset line data @ohri.  Only intended for
3102  * use as an soc_ops function pointer.  Passes along the return value
3103  * from omap2_prm_deassert_hardreset().  XXX This function is
3104  * scheduled for removal when the PRM code is moved into drivers/.
3105  */
3106 static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
3107                                      struct omap_hwmod_rst_info *ohri)
3109         return omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
3110                                             ohri->rst_shift,
3111                                             ohri->st_shift);
3114 /**
3115  * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
3116  * @oh: struct omap_hwmod * to test hardreset
3117  * @ohri: hardreset line data
3118  *
3119  * Call omap2_prm_is_hardreset_asserted() with parameters extracted
3120  * from the hwmod @oh and the hardreset line data @ohri.  Only
3121  * intended for use as an soc_ops function pointer.  Passes along the
3122  * return value from omap2_prm_is_hardreset_asserted().  XXX This
3123  * function is scheduled for removal when the PRM code is moved into
3124  * drivers/.
3125  */
3126 static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
3127                                         struct omap_hwmod_rst_info *ohri)
3129         return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
3130                                                ohri->st_shift);
3133 /**
3134  * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
3135  * @oh: struct omap_hwmod * to assert hardreset
3136  * @ohri: hardreset line data
3137  *
3138  * Call omap4_prminst_assert_hardreset() with parameters extracted
3139  * from the hwmod @oh and the hardreset line data @ohri.  Only
3140  * intended for use as an soc_ops function pointer.  Passes along the
3141  * return value from omap4_prminst_assert_hardreset().  XXX This
3142  * function is scheduled for removal when the PRM code is moved into
3143  * drivers/.
3144  */
3145 static int _omap4_assert_hardreset(struct omap_hwmod *oh,
3146                                    struct omap_hwmod_rst_info *ohri)
3148         if (!oh->clkdm)
3149                 return -EINVAL;
3151         return omap4_prminst_assert_hardreset(ohri->rst_shift,
3152                                 oh->clkdm->pwrdm.ptr->prcm_partition,
3153                                 oh->clkdm->pwrdm.ptr->prcm_offs,
3154                                 oh->prcm.omap4.rstctrl_offs);
3157 /**
3158  * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
3159  * @oh: struct omap_hwmod * to deassert hardreset
3160  * @ohri: hardreset line data
3161  *
3162  * Call omap4_prminst_deassert_hardreset() with parameters extracted
3163  * from the hwmod @oh and the hardreset line data @ohri.  Only
3164  * intended for use as an soc_ops function pointer.  Passes along the
3165  * return value from omap4_prminst_deassert_hardreset().  XXX This
3166  * function is scheduled for removal when the PRM code is moved into
3167  * drivers/.
3168  */
3169 static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
3170                                      struct omap_hwmod_rst_info *ohri)
3172         if (!oh->clkdm)
3173                 return -EINVAL;
3175         if (ohri->st_shift)
3176                 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
3177                        oh->name, ohri->name);
3178         return omap4_prminst_deassert_hardreset(ohri->rst_shift,
3179                                 oh->clkdm->pwrdm.ptr->prcm_partition,
3180                                 oh->clkdm->pwrdm.ptr->prcm_offs,
3181                                 oh->prcm.omap4.rstctrl_offs);
3184 /**
3185  * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
3186  * @oh: struct omap_hwmod * to test hardreset
3187  * @ohri: hardreset line data
3188  *
3189  * Call omap4_prminst_is_hardreset_asserted() with parameters
3190  * extracted from the hwmod @oh and the hardreset line data @ohri.
3191  * Only intended for use as an soc_ops function pointer.  Passes along
3192  * the return value from omap4_prminst_is_hardreset_asserted().  XXX
3193  * This function is scheduled for removal when the PRM code is moved
3194  * into drivers/.
3195  */
3196 static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
3197                                         struct omap_hwmod_rst_info *ohri)
3199         if (!oh->clkdm)
3200                 return -EINVAL;
3202         return omap4_prminst_is_hardreset_asserted(ohri->rst_shift,
3203                                 oh->clkdm->pwrdm.ptr->prcm_partition,
3204                                 oh->clkdm->pwrdm.ptr->prcm_offs,
3205                                 oh->prcm.omap4.rstctrl_offs);
3208 /**
3209  * _am33xx_assert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3210  * @oh: struct omap_hwmod * to assert hardreset
3211  * @ohri: hardreset line data
3212  *
3213  * Call am33xx_prminst_assert_hardreset() with parameters extracted
3214  * from the hwmod @oh and the hardreset line data @ohri.  Only
3215  * intended for use as an soc_ops function pointer.  Passes along the
3216  * return value from am33xx_prminst_assert_hardreset().  XXX This
3217  * function is scheduled for removal when the PRM code is moved into
3218  * drivers/.
3219  */
3220 static int _am33xx_assert_hardreset(struct omap_hwmod *oh,
3221                                    struct omap_hwmod_rst_info *ohri)
3224         return am33xx_prm_assert_hardreset(ohri->rst_shift,
3225                                 oh->clkdm->pwrdm.ptr->prcm_offs,
3226                                 oh->prcm.omap4.rstctrl_offs);
3229 /**
3230  * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3231  * @oh: struct omap_hwmod * to deassert hardreset
3232  * @ohri: hardreset line data
3233  *
3234  * Call am33xx_prminst_deassert_hardreset() with parameters extracted
3235  * from the hwmod @oh and the hardreset line data @ohri.  Only
3236  * intended for use as an soc_ops function pointer.  Passes along the
3237  * return value from am33xx_prminst_deassert_hardreset().  XXX This
3238  * function is scheduled for removal when the PRM code is moved into
3239  * drivers/.
3240  */
3241 static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
3242                                      struct omap_hwmod_rst_info *ohri)
3244         return am33xx_prm_deassert_hardreset(ohri->rst_shift,
3245                                 ohri->st_shift,
3246                                 oh->clkdm->pwrdm.ptr->prcm_offs,
3247                                 oh->prcm.omap4.rstctrl_offs,
3248                                 oh->prcm.omap4.rstst_offs);
3251 /**
3252  * _am33xx_is_hardreset_asserted - call AM33XX PRM hardreset fn with hwmod args
3253  * @oh: struct omap_hwmod * to test hardreset
3254  * @ohri: hardreset line data
3255  *
3256  * Call am33xx_prminst_is_hardreset_asserted() with parameters
3257  * extracted from the hwmod @oh and the hardreset line data @ohri.
3258  * Only intended for use as an soc_ops function pointer.  Passes along
3259  * the return value from am33xx_prminst_is_hardreset_asserted().  XXX
3260  * This function is scheduled for removal when the PRM code is moved
3261  * into drivers/.
3262  */
3263 static int _am33xx_is_hardreset_asserted(struct omap_hwmod *oh,
3264                                         struct omap_hwmod_rst_info *ohri)
3266         return am33xx_prm_is_hardreset_asserted(ohri->rst_shift,
3267                                 oh->clkdm->pwrdm.ptr->prcm_offs,
3268                                 oh->prcm.omap4.rstctrl_offs);
3271 /**
3272  * _reidle_all - enable then idle all hwmods in oh_reidle_list
3273  *
3274  * Called by pm_notifier to make sure flagged modules do not block suspend
3275  * after context loss.
3276  */
3277 static int _reidle_all(void)
3279         struct omap_hwmod_list *oh_list_item = NULL;
3281         list_for_each_entry(oh_list_item, &oh_reidle_list, oh_list) {
3282                 omap_hwmod_enable(oh_list_item->oh);
3283                 omap_hwmod_idle(oh_list_item->oh);
3284         }
3286         return 0;
3289 static int _omap_device_pm_notifier(struct notifier_block *self,
3290                                     unsigned long action, void *dev)
3292         switch (action) {
3293         case PM_POST_SUSPEND:
3294                 _reidle_all();
3295         }
3297         return NOTIFY_DONE;
3300 struct notifier_block pm_nb = {
3301         .notifier_call = _omap_device_pm_notifier,
3302 };
3304 /* Public functions */
3306 u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
3308         if (oh->flags & HWMOD_16BIT_REG)
3309                 return __raw_readw(oh->_mpu_rt_va + reg_offs);
3310         else
3311                 return __raw_readl(oh->_mpu_rt_va + reg_offs);
3314 void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
3316         if (oh->flags & HWMOD_16BIT_REG)
3317                 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
3318         else
3319                 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
3322 /**
3323  * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
3324  * @oh: struct omap_hwmod *
3325  *
3326  * This is a public function exposed to drivers. Some drivers may need to do
3327  * some settings before and after resetting the device.  Those drivers after
3328  * doing the necessary settings could use this function to start a reset by
3329  * setting the SYSCONFIG.SOFTRESET bit.
3330  */
3331 int omap_hwmod_softreset(struct omap_hwmod *oh)
3333         u32 v;
3334         int ret;
3336         if (!oh || !(oh->_sysc_cache))
3337                 return -EINVAL;
3339         v = oh->_sysc_cache;
3340         ret = _set_softreset(oh, &v);
3341         if (ret)
3342                 goto error;
3343         _write_sysconfig(v, oh);
3345         ret = _clear_softreset(oh, &v);
3346         if (ret)
3347                 goto error;
3348         _write_sysconfig(v, oh);
3350 error:
3351         return ret;
3354 /**
3355  * omap_hwmod_lookup - look up a registered omap_hwmod by name
3356  * @name: name of the omap_hwmod to look up
3357  *
3358  * Given a @name of an omap_hwmod, return a pointer to the registered
3359  * struct omap_hwmod *, or NULL upon error.
3360  */
3361 struct omap_hwmod *omap_hwmod_lookup(const char *name)
3363         struct omap_hwmod *oh;
3365         if (!name)
3366                 return NULL;
3368         oh = _lookup(name);
3370         return oh;
3373 /**
3374  * omap_hwmod_for_each - call function for each registered omap_hwmod
3375  * @fn: pointer to a callback function
3376  * @data: void * data to pass to callback function
3377  *
3378  * Call @fn for each registered omap_hwmod, passing @data to each
3379  * function.  @fn must return 0 for success or any other value for
3380  * failure.  If @fn returns non-zero, the iteration across omap_hwmods
3381  * will stop and the non-zero return value will be passed to the
3382  * caller of omap_hwmod_for_each().  @fn is called with
3383  * omap_hwmod_for_each() held.
3384  */
3385 int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
3386                         void *data)
3388         struct omap_hwmod *temp_oh;
3389         int ret = 0;
3391         if (!fn)
3392                 return -EINVAL;
3394         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3395                 ret = (*fn)(temp_oh, data);
3396                 if (ret)
3397                         break;
3398         }
3400         return ret;
3403 /**
3404  * omap_hwmod_register_links - register an array of hwmod links
3405  * @ois: pointer to an array of omap_hwmod_ocp_if to register
3406  *
3407  * Intended to be called early in boot before the clock framework is
3408  * initialized.  If @ois is not null, will register all omap_hwmods
3409  * listed in @ois that are valid for this chip.  Returns -EINVAL if
3410  * omap_hwmod_init() hasn't been called before calling this function,
3411  * -ENOMEM if the link memory area can't be allocated, or 0 upon
3412  * success.
3413  */
3414 int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
3416         int r, i;
3418         if (!inited)
3419                 return -EINVAL;
3421         if (!ois)
3422                 return 0;
3424         if (ois[0] == NULL) /* Empty list */
3425                 return 0;
3427         if (!linkspace) {
3428                 if (_alloc_linkspace(ois)) {
3429                         pr_err("omap_hwmod: could not allocate link space\n");
3430                         return -ENOMEM;
3431                 }
3432         }
3434         i = 0;
3435         do {
3436                 r = _register_link(ois[i]);
3437                 WARN(r && r != -EEXIST,
3438                      "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3439                      ois[i]->master->name, ois[i]->slave->name, r);
3440         } while (ois[++i]);
3442         return 0;
3445 /**
3446  * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3447  * @oh: pointer to the hwmod currently being set up (usually not the MPU)
3448  *
3449  * If the hwmod data corresponding to the MPU subsystem IP block
3450  * hasn't been initialized and set up yet, do so now.  This must be
3451  * done first since sleep dependencies may be added from other hwmods
3452  * to the MPU.  Intended to be called only by omap_hwmod_setup*().  No
3453  * return value.
3454  */
3455 static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
3457         if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3458                 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3459                        __func__, MPU_INITIATOR_NAME);
3460         else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3461                 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
3464 /**
3465  * omap_hwmod_setup_one - set up a single hwmod
3466  * @oh_name: const char * name of the already-registered hwmod to set up
3467  *
3468  * Initialize and set up a single hwmod.  Intended to be used for a
3469  * small number of early devices, such as the timer IP blocks used for
3470  * the scheduler clock.  Must be called after omap2_clk_init().
3471  * Resolves the struct clk names to struct clk pointers for each
3472  * registered omap_hwmod.  Also calls _setup() on each hwmod.  Returns
3473  * -EINVAL upon error or 0 upon success.
3474  */
3475 int __init omap_hwmod_setup_one(const char *oh_name)
3477         struct omap_hwmod *oh;
3479         pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3481         oh = _lookup(oh_name);
3482         if (!oh) {
3483                 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3484                 return -EINVAL;
3485         }
3487         _ensure_mpu_hwmod_is_setup(oh);
3489         _init(oh, NULL);
3490         _setup(oh, NULL);
3492         return 0;
3495 /**
3496  * omap_hwmod_setup_all - set up all registered IP blocks
3497  *
3498  * Initialize and set up all IP blocks registered with the hwmod code.
3499  * Must be called after omap2_clk_init().  Resolves the struct clk
3500  * names to struct clk pointers for each registered omap_hwmod.  Also
3501  * calls _setup() on each hwmod.  Returns 0 upon success.
3502  */
3503 static int __init omap_hwmod_setup_all(void)
3505         _ensure_mpu_hwmod_is_setup(NULL);
3507         omap_hwmod_for_each(_init, NULL);
3508         omap_hwmod_for_each(_setup, NULL);
3510         return 0;
3512 omap_core_initcall(omap_hwmod_setup_all);
3514 /**
3515  * omap_hwmod_enable_reidle - add an omap_hwmod to reidle list
3516  * @oh: struct omap_hwmod *
3517  *
3518  * Adds the omap_hwmod to the oh_reidle_list so it will gets enabled then idled
3519  * after each suspend cycle. Returns 0 on success.
3520  */
3521 int omap_hwmod_enable_reidle(struct omap_hwmod *oh)
3523         struct omap_hwmod_list *oh_list_item = NULL;
3525         oh_list_item = kzalloc(sizeof(*oh_list_item), GFP_KERNEL);
3527         if (!oh_list_item)
3528                 return -ENOMEM;
3530         oh_list_item->oh = oh;
3531         list_add(&oh_list_item->oh_list, &oh_reidle_list);
3533         pr_debug("omap_hwmod: %s: added to reidle list\n", oh->name);
3535         return 0;
3538 /**
3539  * omap_hwmod_disable_reidle - remove an omap_hwmod from reidle list
3540  * @oh: struct omap_hwmod *
3541  *
3542  * Remove the omap_hwmod from the oh_reidle_list. Returns 0 on success.
3543  */
3544 int omap_hwmod_disable_reidle(struct omap_hwmod *oh)
3546         struct omap_hwmod_list *li, *oh_list_item = NULL;
3548         list_for_each_entry_safe(oh_list_item, li, &oh_reidle_list, oh_list) {
3549                 if (oh_list_item->oh == oh) {
3550                         list_del(&oh_list_item->oh_list);
3551                         pr_debug("omap_hwmod: %s: removed from reidle list\n",
3552                                  oh->name);
3553                         kfree(oh_list_item);
3554                 }
3555         }
3557         return 0;
3560 /**
3561  * omap_hwmod_enable - enable an omap_hwmod
3562  * @oh: struct omap_hwmod *
3563  *
3564  * Enable an omap_hwmod @oh.  Intended to be called by omap_device_enable().
3565  * Returns -EINVAL on error or passes along the return value from _enable().
3566  */
3567 int omap_hwmod_enable(struct omap_hwmod *oh)
3569         int r;
3570         unsigned long flags;
3572         if (!oh)
3573                 return -EINVAL;
3575         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
3576         r = _enable(oh);
3577         spin_unlock_irqrestore(&oh->_lock, flags);
3579         return r;
3582 /**
3583  * omap_hwmod_idle - idle an omap_hwmod
3584  * @oh: struct omap_hwmod *
3585  *
3586  * Idle an omap_hwmod @oh.  Intended to be called by omap_device_idle().
3587  * Returns -EINVAL on error or passes along the return value from _idle().
3588  */
3589 int omap_hwmod_idle(struct omap_hwmod *oh)
3591         unsigned long flags;
3593         if (!oh)
3594                 return -EINVAL;
3596         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
3597         _idle(oh);
3598         spin_unlock_irqrestore(&oh->_lock, flags);
3600         return 0;
3603 /**
3604  * omap_hwmod_shutdown - shutdown an omap_hwmod
3605  * @oh: struct omap_hwmod *
3606  *
3607  * Shutdown an omap_hwmod @oh.  Intended to be called by
3608  * omap_device_shutdown().  Returns -EINVAL on error or passes along
3609  * the return value from _shutdown().
3610  */
3611 int omap_hwmod_shutdown(struct omap_hwmod *oh)
3613         unsigned long flags;
3615         if (!oh)
3616                 return -EINVAL;
3618         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
3619         _shutdown(oh);
3620         spin_unlock_irqrestore(&oh->_lock, flags);
3622         return 0;
3625 /**
3626  * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
3627  * @oh: struct omap_hwmod *oh
3628  *
3629  * Intended to be called by the omap_device code.
3630  */
3631 int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
3633         unsigned long flags;
3635         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
3636         _enable_clocks(oh);
3637         spin_unlock_irqrestore(&oh->_lock, flags);
3639         return 0;
3642 /**
3643  * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
3644  * @oh: struct omap_hwmod *oh
3645  *
3646  * Intended to be called by the omap_device code.
3647  */
3648 int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
3650         unsigned long flags;
3652         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
3653         _disable_clocks(oh);
3654         spin_unlock_irqrestore(&oh->_lock, flags);
3656         return 0;
3659 /**
3660  * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
3661  * @oh: struct omap_hwmod *oh
3662  *
3663  * Intended to be called by drivers and core code when all posted
3664  * writes to a device must complete before continuing further
3665  * execution (for example, after clearing some device IRQSTATUS
3666  * register bits)
3667  *
3668  * XXX what about targets with multiple OCP threads?
3669  */
3670 void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
3672         BUG_ON(!oh);
3674         if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
3675                 WARN(1, "omap_device: %s: OCP barrier impossible due to device configuration\n",
3676                         oh->name);
3677                 return;
3678         }
3680         /*
3681          * Forces posted writes to complete on the OCP thread handling
3682          * register writes
3683          */
3684         omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
3687 /**
3688  * omap_hwmod_reset - reset the hwmod
3689  * @oh: struct omap_hwmod *
3690  *
3691  * Under some conditions, a driver may wish to reset the entire device.
3692  * Called from omap_device code.  Returns -EINVAL on error or passes along
3693  * the return value from _reset().
3694  */
3695 int omap_hwmod_reset(struct omap_hwmod *oh)
3697         int r;
3698         unsigned long flags;
3700         if (!oh)
3701                 return -EINVAL;
3703         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
3704         r = _reset(oh);
3705         spin_unlock_irqrestore(&oh->_lock, flags);
3707         return r;
3710 /*
3711  * IP block data retrieval functions
3712  */
3714 /**
3715  * omap_hwmod_count_resources - count number of struct resources needed by hwmod
3716  * @oh: struct omap_hwmod *
3717  * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
3718  *
3719  * Count the number of struct resource array elements necessary to
3720  * contain omap_hwmod @oh resources.  Intended to be called by code
3721  * that registers omap_devices.  Intended to be used to determine the
3722  * size of a dynamically-allocated struct resource array, before
3723  * calling omap_hwmod_fill_resources().  Returns the number of struct
3724  * resource array elements needed.
3725  *
3726  * XXX This code is not optimized.  It could attempt to merge adjacent
3727  * resource IDs.
3728  *
3729  */
3730 int omap_hwmod_count_resources(struct omap_hwmod *oh, unsigned long flags)
3732         int ret = 0;
3734         if (flags & IORESOURCE_IRQ)
3735                 ret += _count_mpu_irqs(oh);
3737         if (flags & IORESOURCE_DMA)
3738                 ret += _count_sdma_reqs(oh);
3740         if (flags & IORESOURCE_MEM) {
3741                 int i = 0;
3742                 struct omap_hwmod_ocp_if *os;
3743                 struct list_head *p = oh->slave_ports.next;
3745                 while (i < oh->slaves_cnt) {
3746                         os = _fetch_next_ocp_if(&p, &i);
3747                         ret += _count_ocp_if_addr_spaces(os);
3748                 }
3749         }
3751         return ret;
3754 /**
3755  * omap_hwmod_fill_resources - fill struct resource array with hwmod data
3756  * @oh: struct omap_hwmod *
3757  * @res: pointer to the first element of an array of struct resource to fill
3758  *
3759  * Fill the struct resource array @res with resource data from the
3760  * omap_hwmod @oh.  Intended to be called by code that registers
3761  * omap_devices.  See also omap_hwmod_count_resources().  Returns the
3762  * number of array elements filled.
3763  */
3764 int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
3766         struct omap_hwmod_ocp_if *os;
3767         struct list_head *p;
3768         int i, j, mpu_irqs_cnt, sdma_reqs_cnt, addr_cnt;
3769         int r = 0;
3771         /* For each IRQ, DMA, memory area, fill in array.*/
3773         mpu_irqs_cnt = _count_mpu_irqs(oh);
3774         for (i = 0; i < mpu_irqs_cnt; i++) {
3775                 (res + r)->name = (oh->mpu_irqs + i)->name;
3776                 (res + r)->start = (oh->mpu_irqs + i)->irq;
3777                 (res + r)->end = (oh->mpu_irqs + i)->irq;
3778                 (res + r)->flags = IORESOURCE_IRQ;
3779                 r++;
3780         }
3782         sdma_reqs_cnt = _count_sdma_reqs(oh);
3783         for (i = 0; i < sdma_reqs_cnt; i++) {
3784                 (res + r)->name = (oh->sdma_reqs + i)->name;
3785                 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3786                 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3787                 (res + r)->flags = IORESOURCE_DMA;
3788                 r++;
3789         }
3791         p = oh->slave_ports.next;
3793         i = 0;
3794         while (i < oh->slaves_cnt) {
3795                 os = _fetch_next_ocp_if(&p, &i);
3796                 addr_cnt = _count_ocp_if_addr_spaces(os);
3798                 for (j = 0; j < addr_cnt; j++) {
3799                         (res + r)->name = (os->addr + j)->name;
3800                         (res + r)->start = (os->addr + j)->pa_start;
3801                         (res + r)->end = (os->addr + j)->pa_end;
3802                         (res + r)->flags = IORESOURCE_MEM;
3803                         r++;
3804                 }
3805         }
3807         return r;
3810 /**
3811  * omap_hwmod_fill_dma_resources - fill struct resource array with dma data
3812  * @oh: struct omap_hwmod *
3813  * @res: pointer to the array of struct resource to fill
3814  *
3815  * Fill the struct resource array @res with dma resource data from the
3816  * omap_hwmod @oh.  Intended to be called by code that registers
3817  * omap_devices.  See also omap_hwmod_count_resources().  Returns the
3818  * number of array elements filled.
3819  */
3820 int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res)
3822         int i, sdma_reqs_cnt;
3823         int r = 0;
3825         sdma_reqs_cnt = _count_sdma_reqs(oh);
3826         for (i = 0; i < sdma_reqs_cnt; i++) {
3827                 (res + r)->name = (oh->sdma_reqs + i)->name;
3828                 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3829                 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3830                 (res + r)->flags = IORESOURCE_DMA;
3831                 r++;
3832         }
3834         return r;
3837 /**
3838  * omap_hwmod_get_resource_byname - fetch IP block integration data by name
3839  * @oh: struct omap_hwmod * to operate on
3840  * @type: one of the IORESOURCE_* constants from include/linux/ioport.h
3841  * @name: pointer to the name of the data to fetch (optional)
3842  * @rsrc: pointer to a struct resource, allocated by the caller
3843  *
3844  * Retrieve MPU IRQ, SDMA request line, or address space start/end
3845  * data for the IP block pointed to by @oh.  The data will be filled
3846  * into a struct resource record pointed to by @rsrc.  The struct
3847  * resource must be allocated by the caller.  When @name is non-null,
3848  * the data associated with the matching entry in the IRQ/SDMA/address
3849  * space hwmod data arrays will be returned.  If @name is null, the
3850  * first array entry will be returned.  Data order is not meaningful
3851  * in hwmod data, so callers are strongly encouraged to use a non-null
3852  * @name whenever possible to avoid unpredictable effects if hwmod
3853  * data is later added that causes data ordering to change.  This
3854  * function is only intended for use by OMAP core code.  Device
3855  * drivers should not call this function - the appropriate bus-related
3856  * data accessor functions should be used instead.  Returns 0 upon
3857  * success or a negative error code upon error.
3858  */
3859 int omap_hwmod_get_resource_byname(struct omap_hwmod *oh, unsigned int type,
3860                                    const char *name, struct resource *rsrc)
3862         int r;
3863         unsigned int irq, dma;
3864         u32 pa_start, pa_end;
3866         if (!oh || !rsrc)
3867                 return -EINVAL;
3869         if (type == IORESOURCE_IRQ) {
3870                 r = _get_mpu_irq_by_name(oh, name, &irq);
3871                 if (r)
3872                         return r;
3874                 rsrc->start = irq;
3875                 rsrc->end = irq;
3876         } else if (type == IORESOURCE_DMA) {
3877                 r = _get_sdma_req_by_name(oh, name, &dma);
3878                 if (r)
3879                         return r;
3881                 rsrc->start = dma;
3882                 rsrc->end = dma;
3883         } else if (type == IORESOURCE_MEM) {
3884                 r = _get_addr_space_by_name(oh, name, &pa_start, &pa_end);
3885                 if (r)
3886                         return r;
3888                 rsrc->start = pa_start;
3889                 rsrc->end = pa_end;
3890         } else {
3891                 return -EINVAL;
3892         }
3894         rsrc->flags = type;
3895         rsrc->name = name;
3897         return 0;
3900 /**
3901  * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3902  * @oh: struct omap_hwmod *
3903  *
3904  * Return the powerdomain pointer associated with the OMAP module
3905  * @oh's main clock.  If @oh does not have a main clk, return the
3906  * powerdomain associated with the interface clock associated with the
3907  * module's MPU port. (XXX Perhaps this should use the SDMA port
3908  * instead?)  Returns NULL on error, or a struct powerdomain * on
3909  * success.
3910  */
3911 struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3913         struct clk *c;
3914         struct omap_hwmod_ocp_if *oi;
3915         struct clockdomain *clkdm;
3916         struct clk_hw_omap *clk;
3918         if (!oh)
3919                 return NULL;
3921         if (oh->clkdm)
3922                 return oh->clkdm->pwrdm.ptr;
3924         if (oh->_clk) {
3925                 c = oh->_clk;
3926         } else {
3927                 oi = _find_mpu_rt_port(oh);
3928                 if (!oi)
3929                         return NULL;
3930                 c = oi->_clk;
3931         }
3933         clk = to_clk_hw_omap(__clk_get_hw(c));
3934         clkdm = clk->clkdm;
3935         if (!clkdm)
3936                 return NULL;
3938         return clkdm->pwrdm.ptr;
3941 /**
3942  * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3943  * @oh: struct omap_hwmod *
3944  *
3945  * Returns the virtual address corresponding to the beginning of the
3946  * module's register target, in the address range that is intended to
3947  * be used by the MPU.  Returns the virtual address upon success or NULL
3948  * upon error.
3949  */
3950 void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3952         if (!oh)
3953                 return NULL;
3955         if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3956                 return NULL;
3958         if (oh->_state == _HWMOD_STATE_UNKNOWN)
3959                 return NULL;
3961         return oh->_mpu_rt_va;
3964 /**
3965  * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
3966  * @oh: struct omap_hwmod *
3967  * @init_oh: struct omap_hwmod * (initiator)
3968  *
3969  * Add a sleep dependency between the initiator @init_oh and @oh.
3970  * Intended to be called by DSP/Bridge code via platform_data for the
3971  * DSP case; and by the DMA code in the sDMA case.  DMA code, *Bridge
3972  * code needs to add/del initiator dependencies dynamically
3973  * before/after accessing a device.  Returns the return value from
3974  * _add_initiator_dep().
3975  *
3976  * XXX Keep a usecount in the clockdomain code
3977  */
3978 int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
3979                                  struct omap_hwmod *init_oh)
3981         return _add_initiator_dep(oh, init_oh);
3984 /*
3985  * XXX what about functions for drivers to save/restore ocp_sysconfig
3986  * for context save/restore operations?
3987  */
3989 /**
3990  * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
3991  * @oh: struct omap_hwmod *
3992  * @init_oh: struct omap_hwmod * (initiator)
3993  *
3994  * Remove a sleep dependency between the initiator @init_oh and @oh.
3995  * Intended to be called by DSP/Bridge code via platform_data for the
3996  * DSP case; and by the DMA code in the sDMA case.  DMA code, *Bridge
3997  * code needs to add/del initiator dependencies dynamically
3998  * before/after accessing a device.  Returns the return value from
3999  * _del_initiator_dep().
4000  *
4001  * XXX Keep a usecount in the clockdomain code
4002  */
4003 int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
4004                                  struct omap_hwmod *init_oh)
4006         return _del_initiator_dep(oh, init_oh);
4009 /**
4010  * omap_hwmod_enable_wakeup - allow device to wake up the system
4011  * @oh: struct omap_hwmod *
4012  *
4013  * Sets the module OCP socket ENAWAKEUP bit to allow the module to
4014  * send wakeups to the PRCM, and enable I/O ring wakeup events for
4015  * this IP block if it has dynamic mux entries.  Eventually this
4016  * should set PRCM wakeup registers to cause the PRCM to receive
4017  * wakeup events from the module.  Does not set any wakeup routing
4018  * registers beyond this point - if the module is to wake up any other
4019  * module or subsystem, that must be set separately.  Called by
4020  * omap_device code.  Returns -EINVAL on error or 0 upon success.
4021  */
4022 int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
4024         unsigned long flags;
4025         u32 v;
4027         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
4029         if (oh->class->sysc &&
4030             (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
4031                 v = oh->_sysc_cache;
4032                 _enable_wakeup(oh, &v);
4033                 _write_sysconfig(v, oh);
4034         }
4036         _set_idle_ioring_wakeup(oh, true);
4037         spin_unlock_irqrestore(&oh->_lock, flags);
4039         return 0;
4042 /**
4043  * omap_hwmod_disable_wakeup - prevent device from waking the system
4044  * @oh: struct omap_hwmod *
4045  *
4046  * Clears the module OCP socket ENAWAKEUP bit to prevent the module
4047  * from sending wakeups to the PRCM, and disable I/O ring wakeup
4048  * events for this IP block if it has dynamic mux entries.  Eventually
4049  * this should clear PRCM wakeup registers to cause the PRCM to ignore
4050  * wakeup events from the module.  Does not set any wakeup routing
4051  * registers beyond this point - if the module is to wake up any other
4052  * module or subsystem, that must be set separately.  Called by
4053  * omap_device code.  Returns -EINVAL on error or 0 upon success.
4054  */
4055 int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
4057         unsigned long flags;
4058         u32 v;
4060         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
4062         if (oh->class->sysc &&
4063             (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
4064                 v = oh->_sysc_cache;
4065                 _disable_wakeup(oh, &v);
4066                 _write_sysconfig(v, oh);
4067         }
4069         _set_idle_ioring_wakeup(oh, false);
4070         spin_unlock_irqrestore(&oh->_lock, flags);
4072         return 0;
4075 /**
4076  * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
4077  * contained in the hwmod module.
4078  * @oh: struct omap_hwmod *
4079  * @name: name of the reset line to lookup and assert
4080  *
4081  * Some IP like dsp, ipu or iva contain processor that require
4082  * an HW reset line to be assert / deassert in order to enable fully
4083  * the IP.  Returns -EINVAL if @oh is null or if the operation is not
4084  * yet supported on this OMAP; otherwise, passes along the return value
4085  * from _assert_hardreset().
4086  */
4087 int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
4089         int ret;
4090         unsigned long flags;
4092         if (!oh)
4093                 return -EINVAL;
4095         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
4096         ret = _assert_hardreset(oh, name);
4097         spin_unlock_irqrestore(&oh->_lock, flags);
4099         return ret;
4102 /**
4103  * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
4104  * contained in the hwmod module.
4105  * @oh: struct omap_hwmod *
4106  * @name: name of the reset line to look up and deassert
4107  *
4108  * Some IP like dsp, ipu or iva contain processor that require
4109  * an HW reset line to be assert / deassert in order to enable fully
4110  * the IP.  Returns -EINVAL if @oh is null or if the operation is not
4111  * yet supported on this OMAP; otherwise, passes along the return value
4112  * from _deassert_hardreset().
4113  */
4114 int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
4116         int ret;
4117         unsigned long flags;
4119         if (!oh)
4120                 return -EINVAL;
4122         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
4123         ret = _deassert_hardreset(oh, name);
4124         spin_unlock_irqrestore(&oh->_lock, flags);
4126         return ret;
4129 /**
4130  * omap_hwmod_read_hardreset - read the HW reset line state of submodules
4131  * contained in the hwmod module
4132  * @oh: struct omap_hwmod *
4133  * @name: name of the reset line to look up and read
4134  *
4135  * Return the current state of the hwmod @oh's reset line named @name:
4136  * returns -EINVAL upon parameter error or if this operation
4137  * is unsupported on the current OMAP; otherwise, passes along the return
4138  * value from _read_hardreset().
4139  */
4140 int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
4142         int ret;
4143         unsigned long flags;
4145         if (!oh)
4146                 return -EINVAL;
4148         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
4149         ret = _read_hardreset(oh, name);
4150         spin_unlock_irqrestore(&oh->_lock, flags);
4152         return ret;
4156 /**
4157  * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
4158  * @classname: struct omap_hwmod_class name to search for
4159  * @fn: callback function pointer to call for each hwmod in class @classname
4160  * @user: arbitrary context data to pass to the callback function
4161  *
4162  * For each omap_hwmod of class @classname, call @fn.
4163  * If the callback function returns something other than
4164  * zero, the iterator is terminated, and the callback function's return
4165  * value is passed back to the caller.  Returns 0 upon success, -EINVAL
4166  * if @classname or @fn are NULL, or passes back the error code from @fn.
4167  */
4168 int omap_hwmod_for_each_by_class(const char *classname,
4169                                  int (*fn)(struct omap_hwmod *oh,
4170                                            void *user),
4171                                  void *user)
4173         struct omap_hwmod *temp_oh;
4174         int ret = 0;
4176         if (!classname || !fn)
4177                 return -EINVAL;
4179         pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
4180                  __func__, classname);
4182         list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
4183                 if (!strcmp(temp_oh->class->name, classname)) {
4184                         pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
4185                                  __func__, temp_oh->name);
4186                         ret = (*fn)(temp_oh, user);
4187                         if (ret)
4188                                 break;
4189                 }
4190         }
4192         if (ret)
4193                 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
4194                          __func__, ret);
4196         return ret;
4199 /**
4200  * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
4201  * @oh: struct omap_hwmod *
4202  * @state: state that _setup() should leave the hwmod in
4203  *
4204  * Sets the hwmod state that @oh will enter at the end of _setup()
4205  * (called by omap_hwmod_setup_*()).  See also the documentation
4206  * for _setup_postsetup(), above.  Returns 0 upon success or
4207  * -EINVAL if there is a problem with the arguments or if the hwmod is
4208  * in the wrong state.
4209  */
4210 int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
4212         int ret;
4213         unsigned long flags;
4215         if (!oh)
4216                 return -EINVAL;
4218         if (state != _HWMOD_STATE_DISABLED &&
4219             state != _HWMOD_STATE_ENABLED &&
4220             state != _HWMOD_STATE_IDLE)
4221                 return -EINVAL;
4223         spin_lock_irqsave_nested(&oh->_lock, flags, oh->lockdep_class);
4225         if (oh->_state != _HWMOD_STATE_REGISTERED) {
4226                 ret = -EINVAL;
4227                 goto ohsps_unlock;
4228         }
4230         oh->_postsetup_state = state;
4231         ret = 0;
4233 ohsps_unlock:
4234         spin_unlock_irqrestore(&oh->_lock, flags);
4236         return ret;
4239 /**
4240  * omap_hwmod_get_context_loss_count - get lost context count
4241  * @oh: struct omap_hwmod *
4242  *
4243  * Returns the context loss count of associated @oh
4244  * upon success, or zero if no context loss data is available.
4245  *
4246  * On OMAP4, this queries the per-hwmod context loss register,
4247  * assuming one exists.  If not, or on OMAP2/3, this queries the
4248  * enclosing powerdomain context loss count.
4249  */
4250 int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
4252         struct powerdomain *pwrdm;
4253         int ret = 0;
4255         if (soc_ops.get_context_lost)
4256                 return soc_ops.get_context_lost(oh);
4258         pwrdm = omap_hwmod_get_pwrdm(oh);
4259         if (pwrdm)
4260                 ret = pwrdm_get_context_loss_count(pwrdm);
4262         return ret;
4265 /**
4266  * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
4267  * @oh: struct omap_hwmod *
4268  *
4269  * Prevent the hwmod @oh from being reset during the setup process.
4270  * Intended for use by board-*.c files on boards with devices that
4271  * cannot tolerate being reset.  Must be called before the hwmod has
4272  * been set up.  Returns 0 upon success or negative error code upon
4273  * failure.
4274  */
4275 int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
4277         if (!oh)
4278                 return -EINVAL;
4280         if (oh->_state != _HWMOD_STATE_REGISTERED) {
4281                 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
4282                         oh->name);
4283                 return -EINVAL;
4284         }
4286         oh->flags |= HWMOD_INIT_NO_RESET;
4288         return 0;
4291 /**
4292  * omap_hwmod_pad_route_irq - route an I/O pad wakeup to a particular MPU IRQ
4293  * @oh: struct omap_hwmod * containing hwmod mux entries
4294  * @pad_idx: array index in oh->mux of the hwmod mux entry to route wakeup
4295  * @irq_idx: the hwmod mpu_irqs array index of the IRQ to trigger on wakeup
4296  *
4297  * When an I/O pad wakeup arrives for the dynamic or wakeup hwmod mux
4298  * entry number @pad_idx for the hwmod @oh, trigger the interrupt
4299  * service routine for the hwmod's mpu_irqs array index @irq_idx.  If
4300  * this function is not called for a given pad_idx, then the ISR
4301  * associated with @oh's first MPU IRQ will be triggered when an I/O
4302  * pad wakeup occurs on that pad.  Note that @pad_idx is the index of
4303  * the _dynamic or wakeup_ entry: if there are other entries not
4304  * marked with OMAP_DEVICE_PAD_WAKEUP or OMAP_DEVICE_PAD_REMUX, these
4305  * entries are NOT COUNTED in the dynamic pad index.  This function
4306  * must be called separately for each pad that requires its interrupt
4307  * to be re-routed this way.  Returns -EINVAL if there is an argument
4308  * problem or if @oh does not have hwmod mux entries or MPU IRQs;
4309  * returns -ENOMEM if memory cannot be allocated; or 0 upon success.
4310  *
4311  * XXX This function interface is fragile.  Rather than using array
4312  * indexes, which are subject to unpredictable change, it should be
4313  * using hwmod IRQ names, and some other stable key for the hwmod mux
4314  * pad records.
4315  */
4316 int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx)
4318         int nr_irqs;
4320         might_sleep();
4322         if (!oh || !oh->mux || !oh->mpu_irqs || pad_idx < 0 ||
4323             pad_idx >= oh->mux->nr_pads_dynamic)
4324                 return -EINVAL;
4326         /* Check the number of available mpu_irqs */
4327         for (nr_irqs = 0; oh->mpu_irqs[nr_irqs].irq >= 0; nr_irqs++)
4328                 ;
4330         if (irq_idx >= nr_irqs)
4331                 return -EINVAL;
4333         if (!oh->mux->irqs) {
4334                 /* XXX What frees this? */
4335                 oh->mux->irqs = kzalloc(sizeof(int) * oh->mux->nr_pads_dynamic,
4336                         GFP_KERNEL);
4337                 if (!oh->mux->irqs)
4338                         return -ENOMEM;
4339         }
4340         oh->mux->irqs[pad_idx] = irq_idx;
4342         return 0;
4345 /**
4346  * omap_hwmod_init - initialize the hwmod code
4347  *
4348  * Sets up some function pointers needed by the hwmod code to operate on the
4349  * currently-booted SoC.  Intended to be called once during kernel init
4350  * before any hwmods are registered.  No return value.
4351  */
4352 void __init omap_hwmod_init(void)
4354         if (cpu_is_omap24xx()) {
4355                 soc_ops.wait_target_ready = _omap2xxx_wait_target_ready;
4356                 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4357                 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4358                 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
4359         } else if (cpu_is_omap34xx()) {
4360                 soc_ops.wait_target_ready = _omap3xxx_wait_target_ready;
4361                 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4362                 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4363                 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
4364                 soc_ops.init_clkdm = _init_clkdm;
4365         } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
4366                 soc_ops.enable_module = _omap4_enable_module;
4367                 soc_ops.disable_module = _omap4_disable_module;
4368                 soc_ops.wait_target_ready = _omap4_wait_target_ready;
4369                 soc_ops.assert_hardreset = _omap4_assert_hardreset;
4370                 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
4371                 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
4372                 soc_ops.init_clkdm = _init_clkdm;
4373                 soc_ops.update_context_lost = _omap4_update_context_lost;
4374                 soc_ops.get_context_lost = _omap4_get_context_lost;
4375         } else if (soc_is_am43xx()) {
4376                 soc_ops.enable_module = _omap4_enable_module;
4377                 soc_ops.disable_module = _omap4_disable_module;
4378                 soc_ops.wait_target_ready = _omap4_wait_target_ready;
4379                 soc_ops.assert_hardreset = _am33xx_assert_hardreset;
4380                 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
4381                 soc_ops.is_hardreset_asserted = _am33xx_is_hardreset_asserted;
4382                 soc_ops.init_clkdm = _init_clkdm;
4383         } else if (soc_is_am33xx()) {
4384                 soc_ops.enable_module = _am33xx_enable_module;
4385                 soc_ops.disable_module = _am33xx_disable_module;
4386                 soc_ops.wait_target_ready = _am33xx_wait_target_ready;
4387                 soc_ops.assert_hardreset = _am33xx_assert_hardreset;
4388                 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
4389                 soc_ops.is_hardreset_asserted = _am33xx_is_hardreset_asserted;
4390                 soc_ops.init_clkdm = _init_clkdm;
4391         } else {
4392                 WARN(1, "omap_hwmod: unknown SoC type\n");
4393         }
4395         inited = true;
4398 /**
4399  * omap_hwmod_setup_reidle - add hwmods to reidle list and register notifier
4400  *
4401  * Returns 0 on success.
4402  */
4403 int omap_hwmod_setup_reidle(void)
4405         omap_hwmod_for_each(_setup_reidle, NULL);
4407         if (!list_empty(&oh_reidle_list))
4408                 register_pm_notifier(&pm_nb);
4410         return 0;
4413 /**
4414  * omap_hwmod_get_main_clk - get pointer to main clock name
4415  * @oh: struct omap_hwmod *
4416  *
4417  * Returns the main clock name assocated with @oh upon success,
4418  * or NULL if @oh is NULL.
4419  */
4420 const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
4422         if (!oh)
4423                 return NULL;
4425         return oh->main_clk;
4428 static int omap_hwmod_save_context(struct omap_hwmod *oh, void *unused)
4430         int i;
4431         for (i = 0; i < oh->rst_lines_cnt; i++)
4432                 oh->rst_lines[i].context =
4433                                 _read_hardreset(oh, oh->rst_lines[i].name);
4434         return 0;
4437 static int omap_hwmod_restore_context(struct omap_hwmod *oh, void *unused)
4439         int i;
4440         for (i = 0; i < oh->rst_lines_cnt; i++)
4441                 if (oh->rst_lines[i].context)
4442                         _assert_hardreset(oh, oh->rst_lines[i].name);
4443                 else if (oh->_state == _HWMOD_STATE_ENABLED)
4444                         _deassert_hardreset(oh, oh->rst_lines[i].name);
4446         if (oh->_state == _HWMOD_STATE_ENABLED) {
4447                 if (soc_ops.enable_module)
4448                         soc_ops.enable_module(oh);
4449         } else {
4450                 if (soc_ops.disable_module)
4451                         soc_ops.disable_module(oh);
4452         }
4454         return 0;
4457 void omap_hwmods_save_context(void)
4459         omap_hwmod_for_each(omap_hwmod_save_context, NULL);
4462 void omap_hwmods_restore_context(void)
4464         omap_hwmod_for_each(omap_hwmod_restore_context, NULL);