x86/xen: resume timer irqs early
[linux/fpc-iii.git] / arch / arm / mach-omap2 / omap_hwmod.c
blob832adb1a6dd2d7b01d73719ee25a185dee7cc9bf
1 /*
2 * omap_hwmod implementation for OMAP2/3/4
4 * Copyright (C) 2009-2011 Nokia Corporation
5 * Copyright (C) 2011-2012 Texas Instruments, Inc.
7 * Paul Walmsley, BenoƮt Cousson, Kevin Hilman
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
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.
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.
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.
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.
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.
54 * From a layering perspective, here is where the OMAP hwmod code
55 * fits into the kernel software stack:
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 * +-------------------------------+
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.
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.
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.
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.
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
119 * To do:
120 * - handle IO mapping
121 * - bus throughput & module latency measurement code
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
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>
145 #include <asm/system_misc.h>
147 #include "clock.h"
148 #include "omap_hwmod.h"
150 #include "soc.h"
151 #include "common.h"
152 #include "clockdomain.h"
153 #include "powerdomain.h"
154 #include "cm2xxx.h"
155 #include "cm3xxx.h"
156 #include "cminst44xx.h"
157 #include "cm33xx.h"
158 #include "prm.h"
159 #include "prm3xxx.h"
160 #include "prm44xx.h"
161 #include "prm33xx.h"
162 #include "prminst44xx.h"
163 #include "mux.h"
164 #include "pm.h"
166 /* Name of the OMAP hwmod for the MPU */
167 #define MPU_INITIATOR_NAME "mpu"
170 * Number of struct omap_hwmod_link records per struct
171 * omap_hwmod_ocp_if record (master->slave and slave->master)
173 #define LINKS_PER_OCP_IF 2
176 * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
177 * @enable_module: function to enable a module (via MODULEMODE)
178 * @disable_module: function to disable a module (via MODULEMODE)
180 * XXX Eventually this functionality will be hidden inside the PRM/CM
181 * device drivers. Until then, this should avoid huge blocks of cpu_is_*()
182 * conditionals in this code.
184 struct omap_hwmod_soc_ops {
185 void (*enable_module)(struct omap_hwmod *oh);
186 int (*disable_module)(struct omap_hwmod *oh);
187 int (*wait_target_ready)(struct omap_hwmod *oh);
188 int (*assert_hardreset)(struct omap_hwmod *oh,
189 struct omap_hwmod_rst_info *ohri);
190 int (*deassert_hardreset)(struct omap_hwmod *oh,
191 struct omap_hwmod_rst_info *ohri);
192 int (*is_hardreset_asserted)(struct omap_hwmod *oh,
193 struct omap_hwmod_rst_info *ohri);
194 int (*init_clkdm)(struct omap_hwmod *oh);
195 void (*update_context_lost)(struct omap_hwmod *oh);
196 int (*get_context_lost)(struct omap_hwmod *oh);
199 /* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
200 static struct omap_hwmod_soc_ops soc_ops;
202 /* omap_hwmod_list contains all registered struct omap_hwmods */
203 static LIST_HEAD(omap_hwmod_list);
205 /* mpu_oh: used to add/remove MPU initiator from sleepdep list */
206 static struct omap_hwmod *mpu_oh;
208 /* io_chain_lock: used to serialize reconfigurations of the I/O chain */
209 static DEFINE_SPINLOCK(io_chain_lock);
212 * linkspace: ptr to a buffer that struct omap_hwmod_link records are
213 * allocated from - used to reduce the number of small memory
214 * allocations, which has a significant impact on performance
216 static struct omap_hwmod_link *linkspace;
219 * free_ls, max_ls: array indexes into linkspace; representing the
220 * next free struct omap_hwmod_link index, and the maximum number of
221 * struct omap_hwmod_link records allocated (respectively)
223 static unsigned short free_ls, max_ls, ls_supp;
225 /* inited: set to true once the hwmod code is initialized */
226 static bool inited;
228 /* Private functions */
231 * _fetch_next_ocp_if - return the next OCP interface in a list
232 * @p: ptr to a ptr to the list_head inside the ocp_if to return
233 * @i: pointer to the index of the element pointed to by @p in the list
235 * Return a pointer to the struct omap_hwmod_ocp_if record
236 * containing the struct list_head pointed to by @p, and increment
237 * @p such that a future call to this routine will return the next
238 * record.
240 static struct omap_hwmod_ocp_if *_fetch_next_ocp_if(struct list_head **p,
241 int *i)
243 struct omap_hwmod_ocp_if *oi;
245 oi = list_entry(*p, struct omap_hwmod_link, node)->ocp_if;
246 *p = (*p)->next;
248 *i = *i + 1;
250 return oi;
254 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
255 * @oh: struct omap_hwmod *
257 * Load the current value of the hwmod OCP_SYSCONFIG register into the
258 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
259 * OCP_SYSCONFIG register or 0 upon success.
261 static int _update_sysc_cache(struct omap_hwmod *oh)
263 if (!oh->class->sysc) {
264 WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
265 return -EINVAL;
268 /* XXX ensure module interface clock is up */
270 oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
272 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
273 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
275 return 0;
279 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
280 * @v: OCP_SYSCONFIG value to write
281 * @oh: struct omap_hwmod *
283 * Write @v into the module class' OCP_SYSCONFIG register, if it has
284 * one. No return value.
286 static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
288 if (!oh->class->sysc) {
289 WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
290 return;
293 /* XXX ensure module interface clock is up */
295 /* Module might have lost context, always update cache and register */
296 oh->_sysc_cache = v;
297 omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
301 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
302 * @oh: struct omap_hwmod *
303 * @standbymode: MIDLEMODE field bits
304 * @v: pointer to register contents to modify
306 * Update the master standby mode bits in @v to be @standbymode for
307 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
308 * upon error or 0 upon success.
310 static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
311 u32 *v)
313 u32 mstandby_mask;
314 u8 mstandby_shift;
316 if (!oh->class->sysc ||
317 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
318 return -EINVAL;
320 if (!oh->class->sysc->sysc_fields) {
321 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
322 return -EINVAL;
325 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
326 mstandby_mask = (0x3 << mstandby_shift);
328 *v &= ~mstandby_mask;
329 *v |= __ffs(standbymode) << mstandby_shift;
331 return 0;
335 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
336 * @oh: struct omap_hwmod *
337 * @idlemode: SIDLEMODE field bits
338 * @v: pointer to register contents to modify
340 * Update the slave idle mode bits in @v to be @idlemode for the @oh
341 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
342 * or 0 upon success.
344 static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
346 u32 sidle_mask;
347 u8 sidle_shift;
349 if (!oh->class->sysc ||
350 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
351 return -EINVAL;
353 if (!oh->class->sysc->sysc_fields) {
354 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
355 return -EINVAL;
358 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
359 sidle_mask = (0x3 << sidle_shift);
361 *v &= ~sidle_mask;
362 *v |= __ffs(idlemode) << sidle_shift;
364 return 0;
368 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
369 * @oh: struct omap_hwmod *
370 * @clockact: CLOCKACTIVITY field bits
371 * @v: pointer to register contents to modify
373 * Update the clockactivity mode bits in @v to be @clockact for the
374 * @oh hwmod. Used for additional powersaving on some modules. Does
375 * not write to the hardware. Returns -EINVAL upon error or 0 upon
376 * success.
378 static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
380 u32 clkact_mask;
381 u8 clkact_shift;
383 if (!oh->class->sysc ||
384 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
385 return -EINVAL;
387 if (!oh->class->sysc->sysc_fields) {
388 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
389 return -EINVAL;
392 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
393 clkact_mask = (0x3 << clkact_shift);
395 *v &= ~clkact_mask;
396 *v |= clockact << clkact_shift;
398 return 0;
402 * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v
403 * @oh: struct omap_hwmod *
404 * @v: pointer to register contents to modify
406 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
407 * error or 0 upon success.
409 static int _set_softreset(struct omap_hwmod *oh, u32 *v)
411 u32 softrst_mask;
413 if (!oh->class->sysc ||
414 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
415 return -EINVAL;
417 if (!oh->class->sysc->sysc_fields) {
418 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
419 return -EINVAL;
422 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
424 *v |= softrst_mask;
426 return 0;
430 * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v
431 * @oh: struct omap_hwmod *
432 * @v: pointer to register contents to modify
434 * Clear the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
435 * error or 0 upon success.
437 static int _clear_softreset(struct omap_hwmod *oh, u32 *v)
439 u32 softrst_mask;
441 if (!oh->class->sysc ||
442 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
443 return -EINVAL;
445 if (!oh->class->sysc->sysc_fields) {
446 WARN(1,
447 "omap_hwmod: %s: sysc_fields absent for sysconfig class\n",
448 oh->name);
449 return -EINVAL;
452 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
454 *v &= ~softrst_mask;
456 return 0;
460 * _wait_softreset_complete - wait for an OCP softreset to complete
461 * @oh: struct omap_hwmod * to wait on
463 * Wait until the IP block represented by @oh reports that its OCP
464 * softreset is complete. This can be triggered by software (see
465 * _ocp_softreset()) or by hardware upon returning from off-mode (one
466 * example is HSMMC). Waits for up to MAX_MODULE_SOFTRESET_WAIT
467 * microseconds. Returns the number of microseconds waited.
469 static int _wait_softreset_complete(struct omap_hwmod *oh)
471 struct omap_hwmod_class_sysconfig *sysc;
472 u32 softrst_mask;
473 int c = 0;
475 sysc = oh->class->sysc;
477 if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
478 omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs)
479 & SYSS_RESETDONE_MASK),
480 MAX_MODULE_SOFTRESET_WAIT, c);
481 else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
482 softrst_mask = (0x1 << sysc->sysc_fields->srst_shift);
483 omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs)
484 & softrst_mask),
485 MAX_MODULE_SOFTRESET_WAIT, c);
488 return c;
492 * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
493 * @oh: struct omap_hwmod *
495 * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
496 * of some modules. When the DMA must perform read/write accesses, the
497 * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
498 * for power management, software must set the DMADISABLE bit back to 1.
500 * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon
501 * error or 0 upon success.
503 static int _set_dmadisable(struct omap_hwmod *oh)
505 u32 v;
506 u32 dmadisable_mask;
508 if (!oh->class->sysc ||
509 !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
510 return -EINVAL;
512 if (!oh->class->sysc->sysc_fields) {
513 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
514 return -EINVAL;
517 /* clocks must be on for this operation */
518 if (oh->_state != _HWMOD_STATE_ENABLED) {
519 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
520 return -EINVAL;
523 pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
525 v = oh->_sysc_cache;
526 dmadisable_mask =
527 (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
528 v |= dmadisable_mask;
529 _write_sysconfig(v, oh);
531 return 0;
535 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
536 * @oh: struct omap_hwmod *
537 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
538 * @v: pointer to register contents to modify
540 * Update the module autoidle bit in @v to be @autoidle for the @oh
541 * hwmod. The autoidle bit controls whether the module can gate
542 * internal clocks automatically when it isn't doing anything; the
543 * exact function of this bit varies on a per-module basis. This
544 * function does not write to the hardware. Returns -EINVAL upon
545 * error or 0 upon success.
547 static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
548 u32 *v)
550 u32 autoidle_mask;
551 u8 autoidle_shift;
553 if (!oh->class->sysc ||
554 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
555 return -EINVAL;
557 if (!oh->class->sysc->sysc_fields) {
558 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
559 return -EINVAL;
562 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
563 autoidle_mask = (0x1 << autoidle_shift);
565 *v &= ~autoidle_mask;
566 *v |= autoidle << autoidle_shift;
568 return 0;
572 * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux
573 * @oh: struct omap_hwmod *
574 * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable
576 * Set or clear the I/O pad wakeup flag in the mux entries for the
577 * hwmod @oh. This function changes the @oh->mux->pads_dynamic array
578 * in memory. If the hwmod is currently idled, and the new idle
579 * values don't match the previous ones, this function will also
580 * update the SCM PADCTRL registers. Otherwise, if the hwmod is not
581 * currently idled, this function won't touch the hardware: the new
582 * mux settings are written to the SCM PADCTRL registers when the
583 * hwmod is idled. No return value.
585 static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake)
587 struct omap_device_pad *pad;
588 bool change = false;
589 u16 prev_idle;
590 int j;
592 if (!oh->mux || !oh->mux->enabled)
593 return;
595 for (j = 0; j < oh->mux->nr_pads_dynamic; j++) {
596 pad = oh->mux->pads_dynamic[j];
598 if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP))
599 continue;
601 prev_idle = pad->idle;
603 if (set_wake)
604 pad->idle |= OMAP_WAKEUP_EN;
605 else
606 pad->idle &= ~OMAP_WAKEUP_EN;
608 if (prev_idle != pad->idle)
609 change = true;
612 if (change && oh->_state == _HWMOD_STATE_IDLE)
613 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
617 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
618 * @oh: struct omap_hwmod *
620 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
621 * upon error or 0 upon success.
623 static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
625 if (!oh->class->sysc ||
626 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
627 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
628 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
629 return -EINVAL;
631 if (!oh->class->sysc->sysc_fields) {
632 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
633 return -EINVAL;
636 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
637 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
639 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
640 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
641 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
642 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
644 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
646 return 0;
650 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
651 * @oh: struct omap_hwmod *
653 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
654 * upon error or 0 upon success.
656 static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
658 if (!oh->class->sysc ||
659 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
660 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
661 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
662 return -EINVAL;
664 if (!oh->class->sysc->sysc_fields) {
665 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
666 return -EINVAL;
669 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
670 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
672 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
673 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
674 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
675 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
677 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
679 return 0;
682 static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
684 struct clk_hw_omap *clk;
686 if (oh->clkdm) {
687 return oh->clkdm;
688 } else if (oh->_clk) {
689 clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
690 return clk->clkdm;
692 return NULL;
696 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
697 * @oh: struct omap_hwmod *
699 * Prevent the hardware module @oh from entering idle while the
700 * hardare module initiator @init_oh is active. Useful when a module
701 * will be accessed by a particular initiator (e.g., if a module will
702 * be accessed by the IVA, there should be a sleepdep between the IVA
703 * initiator and the module). Only applies to modules in smart-idle
704 * mode. If the clockdomain is marked as not needing autodeps, return
705 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
706 * passes along clkdm_add_sleepdep() value upon success.
708 static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
710 struct clockdomain *clkdm, *init_clkdm;
712 clkdm = _get_clkdm(oh);
713 init_clkdm = _get_clkdm(init_oh);
715 if (!clkdm || !init_clkdm)
716 return -EINVAL;
718 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
719 return 0;
721 return clkdm_add_sleepdep(clkdm, init_clkdm);
725 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
726 * @oh: struct omap_hwmod *
728 * Allow the hardware module @oh to enter idle while the hardare
729 * module initiator @init_oh is active. Useful when a module will not
730 * be accessed by a particular initiator (e.g., if a module will not
731 * be accessed by the IVA, there should be no sleepdep between the IVA
732 * initiator and the module). Only applies to modules in smart-idle
733 * mode. If the clockdomain is marked as not needing autodeps, return
734 * 0 without doing anything. Returns -EINVAL upon error or passes
735 * along clkdm_del_sleepdep() value upon success.
737 static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
739 struct clockdomain *clkdm, *init_clkdm;
741 clkdm = _get_clkdm(oh);
742 init_clkdm = _get_clkdm(init_oh);
744 if (!clkdm || !init_clkdm)
745 return -EINVAL;
747 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
748 return 0;
750 return clkdm_del_sleepdep(clkdm, init_clkdm);
754 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
755 * @oh: struct omap_hwmod *
757 * Called from _init_clocks(). Populates the @oh _clk (main
758 * functional clock pointer) if a main_clk is present. Returns 0 on
759 * success or -EINVAL on error.
761 static int _init_main_clk(struct omap_hwmod *oh)
763 int ret = 0;
765 if (!oh->main_clk)
766 return 0;
768 oh->_clk = clk_get(NULL, oh->main_clk);
769 if (IS_ERR(oh->_clk)) {
770 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
771 oh->name, oh->main_clk);
772 return -EINVAL;
775 * HACK: This needs a re-visit once clk_prepare() is implemented
776 * to do something meaningful. Today its just a no-op.
777 * If clk_prepare() is used at some point to do things like
778 * voltage scaling etc, then this would have to be moved to
779 * some point where subsystems like i2c and pmic become
780 * available.
782 clk_prepare(oh->_clk);
784 if (!_get_clkdm(oh))
785 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
786 oh->name, oh->main_clk);
788 return ret;
792 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
793 * @oh: struct omap_hwmod *
795 * Called from _init_clocks(). Populates the @oh OCP slave interface
796 * clock pointers. Returns 0 on success or -EINVAL on error.
798 static int _init_interface_clks(struct omap_hwmod *oh)
800 struct omap_hwmod_ocp_if *os;
801 struct list_head *p;
802 struct clk *c;
803 int i = 0;
804 int ret = 0;
806 p = oh->slave_ports.next;
808 while (i < oh->slaves_cnt) {
809 os = _fetch_next_ocp_if(&p, &i);
810 if (!os->clk)
811 continue;
813 c = clk_get(NULL, os->clk);
814 if (IS_ERR(c)) {
815 pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
816 oh->name, os->clk);
817 ret = -EINVAL;
819 os->_clk = c;
821 * HACK: This needs a re-visit once clk_prepare() is implemented
822 * to do something meaningful. Today its just a no-op.
823 * If clk_prepare() is used at some point to do things like
824 * voltage scaling etc, then this would have to be moved to
825 * some point where subsystems like i2c and pmic become
826 * available.
828 clk_prepare(os->_clk);
831 return ret;
835 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
836 * @oh: struct omap_hwmod *
838 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
839 * clock pointers. Returns 0 on success or -EINVAL on error.
841 static int _init_opt_clks(struct omap_hwmod *oh)
843 struct omap_hwmod_opt_clk *oc;
844 struct clk *c;
845 int i;
846 int ret = 0;
848 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
849 c = clk_get(NULL, oc->clk);
850 if (IS_ERR(c)) {
851 pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
852 oh->name, oc->clk);
853 ret = -EINVAL;
855 oc->_clk = c;
857 * HACK: This needs a re-visit once clk_prepare() is implemented
858 * to do something meaningful. Today its just a no-op.
859 * If clk_prepare() is used at some point to do things like
860 * voltage scaling etc, then this would have to be moved to
861 * some point where subsystems like i2c and pmic become
862 * available.
864 clk_prepare(oc->_clk);
867 return ret;
871 * _enable_clocks - enable hwmod main clock and interface clocks
872 * @oh: struct omap_hwmod *
874 * Enables all clocks necessary for register reads and writes to succeed
875 * on the hwmod @oh. Returns 0.
877 static int _enable_clocks(struct omap_hwmod *oh)
879 struct omap_hwmod_ocp_if *os;
880 struct list_head *p;
881 int i = 0;
883 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
885 if (oh->_clk)
886 clk_enable(oh->_clk);
888 p = oh->slave_ports.next;
890 while (i < oh->slaves_cnt) {
891 os = _fetch_next_ocp_if(&p, &i);
893 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
894 clk_enable(os->_clk);
897 /* The opt clocks are controlled by the device driver. */
899 return 0;
903 * _disable_clocks - disable hwmod main clock and interface clocks
904 * @oh: struct omap_hwmod *
906 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
908 static int _disable_clocks(struct omap_hwmod *oh)
910 struct omap_hwmod_ocp_if *os;
911 struct list_head *p;
912 int i = 0;
914 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
916 if (oh->_clk)
917 clk_disable(oh->_clk);
919 p = oh->slave_ports.next;
921 while (i < oh->slaves_cnt) {
922 os = _fetch_next_ocp_if(&p, &i);
924 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
925 clk_disable(os->_clk);
928 /* The opt clocks are controlled by the device driver. */
930 return 0;
933 static void _enable_optional_clocks(struct omap_hwmod *oh)
935 struct omap_hwmod_opt_clk *oc;
936 int i;
938 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
940 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
941 if (oc->_clk) {
942 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
943 __clk_get_name(oc->_clk));
944 clk_enable(oc->_clk);
948 static void _disable_optional_clocks(struct omap_hwmod *oh)
950 struct omap_hwmod_opt_clk *oc;
951 int i;
953 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
955 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
956 if (oc->_clk) {
957 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
958 __clk_get_name(oc->_clk));
959 clk_disable(oc->_clk);
964 * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
965 * @oh: struct omap_hwmod *
967 * Enables the PRCM module mode related to the hwmod @oh.
968 * No return value.
970 static void _omap4_enable_module(struct omap_hwmod *oh)
972 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
973 return;
975 pr_debug("omap_hwmod: %s: %s: %d\n",
976 oh->name, __func__, oh->prcm.omap4.modulemode);
978 omap4_cminst_module_enable(oh->prcm.omap4.modulemode,
979 oh->clkdm->prcm_partition,
980 oh->clkdm->cm_inst,
981 oh->clkdm->clkdm_offs,
982 oh->prcm.omap4.clkctrl_offs);
986 * _am33xx_enable_module - enable CLKCTRL modulemode on AM33XX
987 * @oh: struct omap_hwmod *
989 * Enables the PRCM module mode related to the hwmod @oh.
990 * No return value.
992 static void _am33xx_enable_module(struct omap_hwmod *oh)
994 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
995 return;
997 pr_debug("omap_hwmod: %s: %s: %d\n",
998 oh->name, __func__, oh->prcm.omap4.modulemode);
1000 am33xx_cm_module_enable(oh->prcm.omap4.modulemode, oh->clkdm->cm_inst,
1001 oh->clkdm->clkdm_offs,
1002 oh->prcm.omap4.clkctrl_offs);
1006 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
1007 * @oh: struct omap_hwmod *
1009 * Wait for a module @oh to enter slave idle. Returns 0 if the module
1010 * does not have an IDLEST bit or if the module successfully enters
1011 * slave idle; otherwise, pass along the return value of the
1012 * appropriate *_cm*_wait_module_idle() function.
1014 static int _omap4_wait_target_disable(struct omap_hwmod *oh)
1016 if (!oh)
1017 return -EINVAL;
1019 if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
1020 return 0;
1022 if (oh->flags & HWMOD_NO_IDLEST)
1023 return 0;
1025 return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition,
1026 oh->clkdm->cm_inst,
1027 oh->clkdm->clkdm_offs,
1028 oh->prcm.omap4.clkctrl_offs);
1032 * _am33xx_wait_target_disable - wait for a module to be disabled on AM33XX
1033 * @oh: struct omap_hwmod *
1035 * Wait for a module @oh to enter slave idle. Returns 0 if the module
1036 * does not have an IDLEST bit or if the module successfully enters
1037 * slave idle; otherwise, pass along the return value of the
1038 * appropriate *_cm*_wait_module_idle() function.
1040 static int _am33xx_wait_target_disable(struct omap_hwmod *oh)
1042 if (!oh)
1043 return -EINVAL;
1045 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1046 return 0;
1048 if (oh->flags & HWMOD_NO_IDLEST)
1049 return 0;
1051 return am33xx_cm_wait_module_idle(oh->clkdm->cm_inst,
1052 oh->clkdm->clkdm_offs,
1053 oh->prcm.omap4.clkctrl_offs);
1057 * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
1058 * @oh: struct omap_hwmod *oh
1060 * Count and return the number of MPU IRQs associated with the hwmod
1061 * @oh. Used to allocate struct resource data. Returns 0 if @oh is
1062 * NULL.
1064 static int _count_mpu_irqs(struct omap_hwmod *oh)
1066 struct omap_hwmod_irq_info *ohii;
1067 int i = 0;
1069 if (!oh || !oh->mpu_irqs)
1070 return 0;
1072 do {
1073 ohii = &oh->mpu_irqs[i++];
1074 } while (ohii->irq != -1);
1076 return i-1;
1080 * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
1081 * @oh: struct omap_hwmod *oh
1083 * Count and return the number of SDMA request lines associated with
1084 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1085 * if @oh is NULL.
1087 static int _count_sdma_reqs(struct omap_hwmod *oh)
1089 struct omap_hwmod_dma_info *ohdi;
1090 int i = 0;
1092 if (!oh || !oh->sdma_reqs)
1093 return 0;
1095 do {
1096 ohdi = &oh->sdma_reqs[i++];
1097 } while (ohdi->dma_req != -1);
1099 return i-1;
1103 * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
1104 * @oh: struct omap_hwmod *oh
1106 * Count and return the number of address space ranges associated with
1107 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1108 * if @oh is NULL.
1110 static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
1112 struct omap_hwmod_addr_space *mem;
1113 int i = 0;
1115 if (!os || !os->addr)
1116 return 0;
1118 do {
1119 mem = &os->addr[i++];
1120 } while (mem->pa_start != mem->pa_end);
1122 return i-1;
1126 * _get_mpu_irq_by_name - fetch MPU interrupt line number by name
1127 * @oh: struct omap_hwmod * to operate on
1128 * @name: pointer to the name of the MPU interrupt number to fetch (optional)
1129 * @irq: pointer to an unsigned int to store the MPU IRQ number to
1131 * Retrieve a MPU hardware IRQ line number named by @name associated
1132 * with the IP block pointed to by @oh. The IRQ number will be filled
1133 * into the address pointed to by @dma. When @name is non-null, the
1134 * IRQ line number associated with the named entry will be returned.
1135 * If @name is null, the first matching entry will be returned. Data
1136 * order is not meaningful in hwmod data, so callers are strongly
1137 * encouraged to use a non-null @name whenever possible to avoid
1138 * unpredictable effects if hwmod data is later added that causes data
1139 * ordering to change. Returns 0 upon success or a negative error
1140 * code upon error.
1142 static int _get_mpu_irq_by_name(struct omap_hwmod *oh, const char *name,
1143 unsigned int *irq)
1145 int i;
1146 bool found = false;
1148 if (!oh->mpu_irqs)
1149 return -ENOENT;
1151 i = 0;
1152 while (oh->mpu_irqs[i].irq != -1) {
1153 if (name == oh->mpu_irqs[i].name ||
1154 !strcmp(name, oh->mpu_irqs[i].name)) {
1155 found = true;
1156 break;
1158 i++;
1161 if (!found)
1162 return -ENOENT;
1164 *irq = oh->mpu_irqs[i].irq;
1166 return 0;
1170 * _get_sdma_req_by_name - fetch SDMA request line ID by name
1171 * @oh: struct omap_hwmod * to operate on
1172 * @name: pointer to the name of the SDMA request line to fetch (optional)
1173 * @dma: pointer to an unsigned int to store the request line ID to
1175 * Retrieve an SDMA request line ID named by @name on the IP block
1176 * pointed to by @oh. The ID will be filled into the address pointed
1177 * to by @dma. When @name is non-null, the request line ID associated
1178 * with the named entry will be returned. If @name is null, the first
1179 * matching entry will be returned. Data order is not meaningful in
1180 * hwmod data, so callers are strongly encouraged to use a non-null
1181 * @name whenever possible to avoid unpredictable effects if hwmod
1182 * data is later added that causes data ordering to change. Returns 0
1183 * upon success or a negative error code upon error.
1185 static int _get_sdma_req_by_name(struct omap_hwmod *oh, const char *name,
1186 unsigned int *dma)
1188 int i;
1189 bool found = false;
1191 if (!oh->sdma_reqs)
1192 return -ENOENT;
1194 i = 0;
1195 while (oh->sdma_reqs[i].dma_req != -1) {
1196 if (name == oh->sdma_reqs[i].name ||
1197 !strcmp(name, oh->sdma_reqs[i].name)) {
1198 found = true;
1199 break;
1201 i++;
1204 if (!found)
1205 return -ENOENT;
1207 *dma = oh->sdma_reqs[i].dma_req;
1209 return 0;
1213 * _get_addr_space_by_name - fetch address space start & end by name
1214 * @oh: struct omap_hwmod * to operate on
1215 * @name: pointer to the name of the address space to fetch (optional)
1216 * @pa_start: pointer to a u32 to store the starting address to
1217 * @pa_end: pointer to a u32 to store the ending address to
1219 * Retrieve address space start and end addresses for the IP block
1220 * pointed to by @oh. The data will be filled into the addresses
1221 * pointed to by @pa_start and @pa_end. When @name is non-null, the
1222 * address space data associated with the named entry will be
1223 * returned. If @name is null, the first matching entry will be
1224 * returned. Data order is not meaningful in hwmod data, so callers
1225 * are strongly encouraged to use a non-null @name whenever possible
1226 * to avoid unpredictable effects if hwmod data is later added that
1227 * causes data ordering to change. Returns 0 upon success or a
1228 * negative error code upon error.
1230 static int _get_addr_space_by_name(struct omap_hwmod *oh, const char *name,
1231 u32 *pa_start, u32 *pa_end)
1233 int i, j;
1234 struct omap_hwmod_ocp_if *os;
1235 struct list_head *p = NULL;
1236 bool found = false;
1238 p = oh->slave_ports.next;
1240 i = 0;
1241 while (i < oh->slaves_cnt) {
1242 os = _fetch_next_ocp_if(&p, &i);
1244 if (!os->addr)
1245 return -ENOENT;
1247 j = 0;
1248 while (os->addr[j].pa_start != os->addr[j].pa_end) {
1249 if (name == os->addr[j].name ||
1250 !strcmp(name, os->addr[j].name)) {
1251 found = true;
1252 break;
1254 j++;
1257 if (found)
1258 break;
1261 if (!found)
1262 return -ENOENT;
1264 *pa_start = os->addr[j].pa_start;
1265 *pa_end = os->addr[j].pa_end;
1267 return 0;
1271 * _save_mpu_port_index - find and save the index to @oh's MPU port
1272 * @oh: struct omap_hwmod *
1274 * Determines the array index of the OCP slave port that the MPU uses
1275 * to address the device, and saves it into the struct omap_hwmod.
1276 * Intended to be called during hwmod registration only. No return
1277 * value.
1279 static void __init _save_mpu_port_index(struct omap_hwmod *oh)
1281 struct omap_hwmod_ocp_if *os = NULL;
1282 struct list_head *p;
1283 int i = 0;
1285 if (!oh)
1286 return;
1288 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
1290 p = oh->slave_ports.next;
1292 while (i < oh->slaves_cnt) {
1293 os = _fetch_next_ocp_if(&p, &i);
1294 if (os->user & OCP_USER_MPU) {
1295 oh->_mpu_port = os;
1296 oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
1297 break;
1301 return;
1305 * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1306 * @oh: struct omap_hwmod *
1308 * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1309 * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1310 * communicate with the IP block. This interface need not be directly
1311 * connected to the MPU (and almost certainly is not), but is directly
1312 * connected to the IP block represented by @oh. Returns a pointer
1313 * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1314 * error or if there does not appear to be a path from the MPU to this
1315 * IP block.
1317 static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1319 if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1320 return NULL;
1322 return oh->_mpu_port;
1326 * _find_mpu_rt_addr_space - return MPU register target address space for @oh
1327 * @oh: struct omap_hwmod *
1329 * Returns a pointer to the struct omap_hwmod_addr_space record representing
1330 * the register target MPU address space; or returns NULL upon error.
1332 static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh)
1334 struct omap_hwmod_ocp_if *os;
1335 struct omap_hwmod_addr_space *mem;
1336 int found = 0, i = 0;
1338 os = _find_mpu_rt_port(oh);
1339 if (!os || !os->addr)
1340 return NULL;
1342 do {
1343 mem = &os->addr[i++];
1344 if (mem->flags & ADDR_TYPE_RT)
1345 found = 1;
1346 } while (!found && mem->pa_start != mem->pa_end);
1348 return (found) ? mem : NULL;
1352 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
1353 * @oh: struct omap_hwmod *
1355 * Ensure that the OCP_SYSCONFIG register for the IP block represented
1356 * by @oh is set to indicate to the PRCM that the IP block is active.
1357 * Usually this means placing the module into smart-idle mode and
1358 * smart-standby, but if there is a bug in the automatic idle handling
1359 * for the IP block, it may need to be placed into the force-idle or
1360 * no-idle variants of these modes. No return value.
1362 static void _enable_sysc(struct omap_hwmod *oh)
1364 u8 idlemode, sf;
1365 u32 v;
1366 bool clkdm_act;
1367 struct clockdomain *clkdm;
1369 if (!oh->class->sysc)
1370 return;
1373 * Wait until reset has completed, this is needed as the IP
1374 * block is reset automatically by hardware in some cases
1375 * (off-mode for example), and the drivers require the
1376 * IP to be ready when they access it
1378 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1379 _enable_optional_clocks(oh);
1380 _wait_softreset_complete(oh);
1381 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1382 _disable_optional_clocks(oh);
1384 v = oh->_sysc_cache;
1385 sf = oh->class->sysc->sysc_flags;
1387 clkdm = _get_clkdm(oh);
1388 if (sf & SYSC_HAS_SIDLEMODE) {
1389 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1390 oh->flags & HWMOD_SWSUP_SIDLE_ACT) {
1391 idlemode = HWMOD_IDLEMODE_NO;
1392 } else {
1393 if (sf & SYSC_HAS_ENAWAKEUP)
1394 _enable_wakeup(oh, &v);
1395 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1396 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1397 else
1398 idlemode = HWMOD_IDLEMODE_SMART;
1402 * This is special handling for some IPs like
1403 * 32k sync timer. Force them to idle!
1405 clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
1406 if (clkdm_act && !(oh->class->sysc->idlemodes &
1407 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1408 idlemode = HWMOD_IDLEMODE_FORCE;
1410 _set_slave_idlemode(oh, idlemode, &v);
1413 if (sf & SYSC_HAS_MIDLEMODE) {
1414 if (oh->flags & HWMOD_FORCE_MSTANDBY) {
1415 idlemode = HWMOD_IDLEMODE_FORCE;
1416 } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1417 idlemode = HWMOD_IDLEMODE_NO;
1418 } else {
1419 if (sf & SYSC_HAS_ENAWAKEUP)
1420 _enable_wakeup(oh, &v);
1421 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1422 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1423 else
1424 idlemode = HWMOD_IDLEMODE_SMART;
1426 _set_master_standbymode(oh, idlemode, &v);
1430 * XXX The clock framework should handle this, by
1431 * calling into this code. But this must wait until the
1432 * clock structures are tagged with omap_hwmod entries
1434 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1435 (sf & SYSC_HAS_CLOCKACTIVITY))
1436 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
1438 /* If the cached value is the same as the new value, skip the write */
1439 if (oh->_sysc_cache != v)
1440 _write_sysconfig(v, oh);
1443 * Set the autoidle bit only after setting the smartidle bit
1444 * Setting this will not have any impact on the other modules.
1446 if (sf & SYSC_HAS_AUTOIDLE) {
1447 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1448 0 : 1;
1449 _set_module_autoidle(oh, idlemode, &v);
1450 _write_sysconfig(v, oh);
1455 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
1456 * @oh: struct omap_hwmod *
1458 * If module is marked as SWSUP_SIDLE, force the module into slave
1459 * idle; otherwise, configure it for smart-idle. If module is marked
1460 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1461 * configure it for smart-standby. No return value.
1463 static void _idle_sysc(struct omap_hwmod *oh)
1465 u8 idlemode, sf;
1466 u32 v;
1468 if (!oh->class->sysc)
1469 return;
1471 v = oh->_sysc_cache;
1472 sf = oh->class->sysc->sysc_flags;
1474 if (sf & SYSC_HAS_SIDLEMODE) {
1475 if (oh->flags & HWMOD_SWSUP_SIDLE) {
1476 idlemode = HWMOD_IDLEMODE_FORCE;
1477 } else {
1478 if (sf & SYSC_HAS_ENAWAKEUP)
1479 _enable_wakeup(oh, &v);
1480 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1481 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1482 else
1483 idlemode = HWMOD_IDLEMODE_SMART;
1485 _set_slave_idlemode(oh, idlemode, &v);
1488 if (sf & SYSC_HAS_MIDLEMODE) {
1489 if ((oh->flags & HWMOD_SWSUP_MSTANDBY) ||
1490 (oh->flags & HWMOD_FORCE_MSTANDBY)) {
1491 idlemode = HWMOD_IDLEMODE_FORCE;
1492 } else {
1493 if (sf & SYSC_HAS_ENAWAKEUP)
1494 _enable_wakeup(oh, &v);
1495 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1496 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1497 else
1498 idlemode = HWMOD_IDLEMODE_SMART;
1500 _set_master_standbymode(oh, idlemode, &v);
1503 _write_sysconfig(v, oh);
1507 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
1508 * @oh: struct omap_hwmod *
1510 * Force the module into slave idle and master suspend. No return
1511 * value.
1513 static void _shutdown_sysc(struct omap_hwmod *oh)
1515 u32 v;
1516 u8 sf;
1518 if (!oh->class->sysc)
1519 return;
1521 v = oh->_sysc_cache;
1522 sf = oh->class->sysc->sysc_flags;
1524 if (sf & SYSC_HAS_SIDLEMODE)
1525 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1527 if (sf & SYSC_HAS_MIDLEMODE)
1528 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1530 if (sf & SYSC_HAS_AUTOIDLE)
1531 _set_module_autoidle(oh, 1, &v);
1533 _write_sysconfig(v, oh);
1537 * _lookup - find an omap_hwmod by name
1538 * @name: find an omap_hwmod by name
1540 * Return a pointer to an omap_hwmod by name, or NULL if not found.
1542 static struct omap_hwmod *_lookup(const char *name)
1544 struct omap_hwmod *oh, *temp_oh;
1546 oh = NULL;
1548 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1549 if (!strcmp(name, temp_oh->name)) {
1550 oh = temp_oh;
1551 break;
1555 return oh;
1559 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1560 * @oh: struct omap_hwmod *
1562 * Convert a clockdomain name stored in a struct omap_hwmod into a
1563 * clockdomain pointer, and save it into the struct omap_hwmod.
1564 * Return -EINVAL if the clkdm_name lookup failed.
1566 static int _init_clkdm(struct omap_hwmod *oh)
1568 if (!oh->clkdm_name) {
1569 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
1570 return 0;
1573 oh->clkdm = clkdm_lookup(oh->clkdm_name);
1574 if (!oh->clkdm) {
1575 pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n",
1576 oh->name, oh->clkdm_name);
1577 return -EINVAL;
1580 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1581 oh->name, oh->clkdm_name);
1583 return 0;
1587 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1588 * well the clockdomain.
1589 * @oh: struct omap_hwmod *
1590 * @data: not used; pass NULL
1592 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
1593 * Resolves all clock names embedded in the hwmod. Returns 0 on
1594 * success, or a negative error code on failure.
1596 static int _init_clocks(struct omap_hwmod *oh, void *data)
1598 int ret = 0;
1600 if (oh->_state != _HWMOD_STATE_REGISTERED)
1601 return 0;
1603 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1605 if (soc_ops.init_clkdm)
1606 ret |= soc_ops.init_clkdm(oh);
1608 ret |= _init_main_clk(oh);
1609 ret |= _init_interface_clks(oh);
1610 ret |= _init_opt_clks(oh);
1612 if (!ret)
1613 oh->_state = _HWMOD_STATE_CLKS_INITED;
1614 else
1615 pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
1617 return ret;
1621 * _lookup_hardreset - fill register bit info for this hwmod/reset line
1622 * @oh: struct omap_hwmod *
1623 * @name: name of the reset line in the context of this hwmod
1624 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
1626 * Return the bit position of the reset line that match the
1627 * input name. Return -ENOENT if not found.
1629 static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1630 struct omap_hwmod_rst_info *ohri)
1632 int i;
1634 for (i = 0; i < oh->rst_lines_cnt; i++) {
1635 const char *rst_line = oh->rst_lines[i].name;
1636 if (!strcmp(rst_line, name)) {
1637 ohri->rst_shift = oh->rst_lines[i].rst_shift;
1638 ohri->st_shift = oh->rst_lines[i].st_shift;
1639 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1640 oh->name, __func__, rst_line, ohri->rst_shift,
1641 ohri->st_shift);
1643 return 0;
1647 return -ENOENT;
1651 * _assert_hardreset - assert the HW reset line of submodules
1652 * contained in the hwmod module.
1653 * @oh: struct omap_hwmod *
1654 * @name: name of the reset line to lookup and assert
1656 * Some IP like dsp, ipu or iva contain processor that require an HW
1657 * reset line to be assert / deassert in order to enable fully the IP.
1658 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1659 * asserting the hardreset line on the currently-booted SoC, or passes
1660 * along the return value from _lookup_hardreset() or the SoC's
1661 * assert_hardreset code.
1663 static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1665 struct omap_hwmod_rst_info ohri;
1666 int ret = -EINVAL;
1668 if (!oh)
1669 return -EINVAL;
1671 if (!soc_ops.assert_hardreset)
1672 return -ENOSYS;
1674 ret = _lookup_hardreset(oh, name, &ohri);
1675 if (ret < 0)
1676 return ret;
1678 ret = soc_ops.assert_hardreset(oh, &ohri);
1680 return ret;
1684 * _deassert_hardreset - deassert the HW reset line of submodules contained
1685 * in the hwmod module.
1686 * @oh: struct omap_hwmod *
1687 * @name: name of the reset line to look up and deassert
1689 * Some IP like dsp, ipu or iva contain processor that require an HW
1690 * reset line to be assert / deassert in order to enable fully the IP.
1691 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1692 * deasserting the hardreset line on the currently-booted SoC, or passes
1693 * along the return value from _lookup_hardreset() or the SoC's
1694 * deassert_hardreset code.
1696 static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1698 struct omap_hwmod_rst_info ohri;
1699 int ret = -EINVAL;
1700 int hwsup = 0;
1702 if (!oh)
1703 return -EINVAL;
1705 if (!soc_ops.deassert_hardreset)
1706 return -ENOSYS;
1708 ret = _lookup_hardreset(oh, name, &ohri);
1709 if (ret < 0)
1710 return ret;
1712 if (oh->clkdm) {
1714 * A clockdomain must be in SW_SUP otherwise reset
1715 * might not be completed. The clockdomain can be set
1716 * in HW_AUTO only when the module become ready.
1718 hwsup = clkdm_in_hwsup(oh->clkdm);
1719 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1720 if (ret) {
1721 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1722 oh->name, oh->clkdm->name, ret);
1723 return ret;
1727 _enable_clocks(oh);
1728 if (soc_ops.enable_module)
1729 soc_ops.enable_module(oh);
1731 ret = soc_ops.deassert_hardreset(oh, &ohri);
1733 if (soc_ops.disable_module)
1734 soc_ops.disable_module(oh);
1735 _disable_clocks(oh);
1737 if (ret == -EBUSY)
1738 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1740 if (!ret) {
1742 * Set the clockdomain to HW_AUTO, assuming that the
1743 * previous state was HW_AUTO.
1745 if (oh->clkdm && hwsup)
1746 clkdm_allow_idle(oh->clkdm);
1747 } else {
1748 if (oh->clkdm)
1749 clkdm_hwmod_disable(oh->clkdm, oh);
1752 return ret;
1756 * _read_hardreset - read the HW reset line state of submodules
1757 * contained in the hwmod module
1758 * @oh: struct omap_hwmod *
1759 * @name: name of the reset line to look up and read
1761 * Return the state of the reset line. Returns -EINVAL if @oh is
1762 * null, -ENOSYS if we have no way of reading the hardreset line
1763 * status on the currently-booted SoC, or passes along the return
1764 * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1765 * code.
1767 static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1769 struct omap_hwmod_rst_info ohri;
1770 int ret = -EINVAL;
1772 if (!oh)
1773 return -EINVAL;
1775 if (!soc_ops.is_hardreset_asserted)
1776 return -ENOSYS;
1778 ret = _lookup_hardreset(oh, name, &ohri);
1779 if (ret < 0)
1780 return ret;
1782 return soc_ops.is_hardreset_asserted(oh, &ohri);
1786 * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
1787 * @oh: struct omap_hwmod *
1789 * If all hardreset lines associated with @oh are asserted, then return true.
1790 * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1791 * associated with @oh are asserted, then return false.
1792 * This function is used to avoid executing some parts of the IP block
1793 * enable/disable sequence if its hardreset line is set.
1795 static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
1797 int i, rst_cnt = 0;
1799 if (oh->rst_lines_cnt == 0)
1800 return false;
1802 for (i = 0; i < oh->rst_lines_cnt; i++)
1803 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1804 rst_cnt++;
1806 if (oh->rst_lines_cnt == rst_cnt)
1807 return true;
1809 return false;
1813 * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1814 * hard-reset
1815 * @oh: struct omap_hwmod *
1817 * If any hardreset lines associated with @oh are asserted, then
1818 * return true. Otherwise, if no hardreset lines associated with @oh
1819 * are asserted, or if @oh has no hardreset lines, then return false.
1820 * This function is used to avoid executing some parts of the IP block
1821 * enable/disable sequence if any hardreset line is set.
1823 static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1825 int rst_cnt = 0;
1826 int i;
1828 for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1829 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1830 rst_cnt++;
1832 return (rst_cnt) ? true : false;
1836 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1837 * @oh: struct omap_hwmod *
1839 * Disable the PRCM module mode related to the hwmod @oh.
1840 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1842 static int _omap4_disable_module(struct omap_hwmod *oh)
1844 int v;
1846 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1847 return -EINVAL;
1850 * Since integration code might still be doing something, only
1851 * disable if all lines are under hardreset.
1853 if (_are_any_hardreset_lines_asserted(oh))
1854 return 0;
1856 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1858 omap4_cminst_module_disable(oh->clkdm->prcm_partition,
1859 oh->clkdm->cm_inst,
1860 oh->clkdm->clkdm_offs,
1861 oh->prcm.omap4.clkctrl_offs);
1863 v = _omap4_wait_target_disable(oh);
1864 if (v)
1865 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1866 oh->name);
1868 return 0;
1872 * _am33xx_disable_module - enable CLKCTRL modulemode on AM33XX
1873 * @oh: struct omap_hwmod *
1875 * Disable the PRCM module mode related to the hwmod @oh.
1876 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1878 static int _am33xx_disable_module(struct omap_hwmod *oh)
1880 int v;
1882 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1883 return -EINVAL;
1885 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1887 if (_are_any_hardreset_lines_asserted(oh))
1888 return 0;
1890 am33xx_cm_module_disable(oh->clkdm->cm_inst, oh->clkdm->clkdm_offs,
1891 oh->prcm.omap4.clkctrl_offs);
1893 v = _am33xx_wait_target_disable(oh);
1894 if (v)
1895 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1896 oh->name);
1898 return 0;
1902 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
1903 * @oh: struct omap_hwmod *
1905 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
1906 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1907 * reset this way, -EINVAL if the hwmod is in the wrong state,
1908 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
1910 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
1911 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
1912 * use the SYSCONFIG softreset bit to provide the status.
1914 * Note that some IP like McBSP do have reset control but don't have
1915 * reset status.
1917 static int _ocp_softreset(struct omap_hwmod *oh)
1919 u32 v;
1920 int c = 0;
1921 int ret = 0;
1923 if (!oh->class->sysc ||
1924 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
1925 return -ENOENT;
1927 /* clocks must be on for this operation */
1928 if (oh->_state != _HWMOD_STATE_ENABLED) {
1929 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1930 oh->name);
1931 return -EINVAL;
1934 /* For some modules, all optionnal clocks need to be enabled as well */
1935 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1936 _enable_optional_clocks(oh);
1938 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
1940 v = oh->_sysc_cache;
1941 ret = _set_softreset(oh, &v);
1942 if (ret)
1943 goto dis_opt_clks;
1945 _write_sysconfig(v, oh);
1946 ret = _clear_softreset(oh, &v);
1947 if (ret)
1948 goto dis_opt_clks;
1950 _write_sysconfig(v, oh);
1952 if (oh->class->sysc->srst_udelay)
1953 udelay(oh->class->sysc->srst_udelay);
1955 c = _wait_softreset_complete(oh);
1956 if (c == MAX_MODULE_SOFTRESET_WAIT)
1957 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1958 oh->name, MAX_MODULE_SOFTRESET_WAIT);
1959 else
1960 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
1963 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1964 * _wait_target_ready() or _reset()
1967 ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
1969 dis_opt_clks:
1970 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1971 _disable_optional_clocks(oh);
1973 return ret;
1977 * _reset - reset an omap_hwmod
1978 * @oh: struct omap_hwmod *
1980 * Resets an omap_hwmod @oh. If the module has a custom reset
1981 * function pointer defined, then call it to reset the IP block, and
1982 * pass along its return value to the caller. Otherwise, if the IP
1983 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1984 * associated with it, call a function to reset the IP block via that
1985 * method, and pass along the return value to the caller. Finally, if
1986 * the IP block has some hardreset lines associated with it, assert
1987 * all of those, but do _not_ deassert them. (This is because driver
1988 * authors have expressed an apparent requirement to control the
1989 * deassertion of the hardreset lines themselves.)
1991 * The default software reset mechanism for most OMAP IP blocks is
1992 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1993 * hwmods cannot be reset via this method. Some are not targets and
1994 * therefore have no OCP header registers to access. Others (like the
1995 * IVA) have idiosyncratic reset sequences. So for these relatively
1996 * rare cases, custom reset code can be supplied in the struct
1997 * omap_hwmod_class .reset function pointer.
1999 * _set_dmadisable() is called to set the DMADISABLE bit so that it
2000 * does not prevent idling of the system. This is necessary for cases
2001 * where ROMCODE/BOOTLOADER uses dma and transfers control to the
2002 * kernel without disabling dma.
2004 * Passes along the return value from either _ocp_softreset() or the
2005 * custom reset function - these must return -EINVAL if the hwmod
2006 * cannot be reset this way or if the hwmod is in the wrong state,
2007 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
2009 static int _reset(struct omap_hwmod *oh)
2011 int i, r;
2013 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
2015 if (oh->class->reset) {
2016 r = oh->class->reset(oh);
2017 } else {
2018 if (oh->rst_lines_cnt > 0) {
2019 for (i = 0; i < oh->rst_lines_cnt; i++)
2020 _assert_hardreset(oh, oh->rst_lines[i].name);
2021 return 0;
2022 } else {
2023 r = _ocp_softreset(oh);
2024 if (r == -ENOENT)
2025 r = 0;
2029 _set_dmadisable(oh);
2032 * OCP_SYSCONFIG bits need to be reprogrammed after a
2033 * softreset. The _enable() function should be split to avoid
2034 * the rewrite of the OCP_SYSCONFIG register.
2036 if (oh->class->sysc) {
2037 _update_sysc_cache(oh);
2038 _enable_sysc(oh);
2041 return r;
2045 * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain
2047 * Call the appropriate PRM function to clear any logged I/O chain
2048 * wakeups and to reconfigure the chain. This apparently needs to be
2049 * done upon every mux change. Since hwmods can be concurrently
2050 * enabled and idled, hold a spinlock around the I/O chain
2051 * reconfiguration sequence. No return value.
2053 * XXX When the PRM code is moved to drivers, this function can be removed,
2054 * as the PRM infrastructure should abstract this.
2056 static void _reconfigure_io_chain(void)
2058 unsigned long flags;
2060 spin_lock_irqsave(&io_chain_lock, flags);
2062 if (cpu_is_omap34xx() && omap3_has_io_chain_ctrl())
2063 omap3xxx_prm_reconfigure_io_chain();
2064 else if (cpu_is_omap44xx())
2065 omap44xx_prm_reconfigure_io_chain();
2067 spin_unlock_irqrestore(&io_chain_lock, flags);
2071 * _omap4_update_context_lost - increment hwmod context loss counter if
2072 * hwmod context was lost, and clear hardware context loss reg
2073 * @oh: hwmod to check for context loss
2075 * If the PRCM indicates that the hwmod @oh lost context, increment
2076 * our in-memory context loss counter, and clear the RM_*_CONTEXT
2077 * bits. No return value.
2079 static void _omap4_update_context_lost(struct omap_hwmod *oh)
2081 if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
2082 return;
2084 if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2085 oh->clkdm->pwrdm.ptr->prcm_offs,
2086 oh->prcm.omap4.context_offs))
2087 return;
2089 oh->prcm.omap4.context_lost_counter++;
2090 prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2091 oh->clkdm->pwrdm.ptr->prcm_offs,
2092 oh->prcm.omap4.context_offs);
2096 * _omap4_get_context_lost - get context loss counter for a hwmod
2097 * @oh: hwmod to get context loss counter for
2099 * Returns the in-memory context loss counter for a hwmod.
2101 static int _omap4_get_context_lost(struct omap_hwmod *oh)
2103 return oh->prcm.omap4.context_lost_counter;
2107 * _enable_preprogram - Pre-program an IP block during the _enable() process
2108 * @oh: struct omap_hwmod *
2110 * Some IP blocks (such as AESS) require some additional programming
2111 * after enable before they can enter idle. If a function pointer to
2112 * do so is present in the hwmod data, then call it and pass along the
2113 * return value; otherwise, return 0.
2115 static int _enable_preprogram(struct omap_hwmod *oh)
2117 if (!oh->class->enable_preprogram)
2118 return 0;
2120 return oh->class->enable_preprogram(oh);
2124 * _enable - enable an omap_hwmod
2125 * @oh: struct omap_hwmod *
2127 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
2128 * register target. Returns -EINVAL if the hwmod is in the wrong
2129 * state or passes along the return value of _wait_target_ready().
2131 static int _enable(struct omap_hwmod *oh)
2133 int r;
2134 int hwsup = 0;
2136 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
2139 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
2140 * state at init. Now that someone is really trying to enable
2141 * them, just ensure that the hwmod mux is set.
2143 if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
2145 * If the caller has mux data populated, do the mux'ing
2146 * which wouldn't have been done as part of the _enable()
2147 * done during setup.
2149 if (oh->mux)
2150 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2152 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
2153 return 0;
2156 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
2157 oh->_state != _HWMOD_STATE_IDLE &&
2158 oh->_state != _HWMOD_STATE_DISABLED) {
2159 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
2160 oh->name);
2161 return -EINVAL;
2165 * If an IP block contains HW reset lines and all of them are
2166 * asserted, we let integration code associated with that
2167 * block handle the enable. We've received very little
2168 * information on what those driver authors need, and until
2169 * detailed information is provided and the driver code is
2170 * posted to the public lists, this is probably the best we
2171 * can do.
2173 if (_are_all_hardreset_lines_asserted(oh))
2174 return 0;
2176 /* Mux pins for device runtime if populated */
2177 if (oh->mux && (!oh->mux->enabled ||
2178 ((oh->_state == _HWMOD_STATE_IDLE) &&
2179 oh->mux->pads_dynamic))) {
2180 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2181 _reconfigure_io_chain();
2184 _add_initiator_dep(oh, mpu_oh);
2186 if (oh->clkdm) {
2188 * A clockdomain must be in SW_SUP before enabling
2189 * completely the module. The clockdomain can be set
2190 * in HW_AUTO only when the module become ready.
2192 hwsup = clkdm_in_hwsup(oh->clkdm) &&
2193 !clkdm_missing_idle_reporting(oh->clkdm);
2194 r = clkdm_hwmod_enable(oh->clkdm, oh);
2195 if (r) {
2196 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
2197 oh->name, oh->clkdm->name, r);
2198 return r;
2202 _enable_clocks(oh);
2203 if (soc_ops.enable_module)
2204 soc_ops.enable_module(oh);
2205 if (oh->flags & HWMOD_BLOCK_WFI)
2206 cpu_idle_poll_ctrl(true);
2208 if (soc_ops.update_context_lost)
2209 soc_ops.update_context_lost(oh);
2211 r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
2212 -EINVAL;
2213 if (!r) {
2215 * Set the clockdomain to HW_AUTO only if the target is ready,
2216 * assuming that the previous state was HW_AUTO
2218 if (oh->clkdm && hwsup)
2219 clkdm_allow_idle(oh->clkdm);
2221 oh->_state = _HWMOD_STATE_ENABLED;
2223 /* Access the sysconfig only if the target is ready */
2224 if (oh->class->sysc) {
2225 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
2226 _update_sysc_cache(oh);
2227 _enable_sysc(oh);
2229 r = _enable_preprogram(oh);
2230 } else {
2231 if (soc_ops.disable_module)
2232 soc_ops.disable_module(oh);
2233 _disable_clocks(oh);
2234 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
2235 oh->name, r);
2237 if (oh->clkdm)
2238 clkdm_hwmod_disable(oh->clkdm, oh);
2241 return r;
2245 * _idle - idle an omap_hwmod
2246 * @oh: struct omap_hwmod *
2248 * Idles an omap_hwmod @oh. This should be called once the hwmod has
2249 * no further work. Returns -EINVAL if the hwmod is in the wrong
2250 * state or returns 0.
2252 static int _idle(struct omap_hwmod *oh)
2254 pr_debug("omap_hwmod: %s: idling\n", oh->name);
2256 if (oh->_state != _HWMOD_STATE_ENABLED) {
2257 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2258 oh->name);
2259 return -EINVAL;
2262 if (_are_all_hardreset_lines_asserted(oh))
2263 return 0;
2265 if (oh->class->sysc)
2266 _idle_sysc(oh);
2267 _del_initiator_dep(oh, mpu_oh);
2269 if (oh->flags & HWMOD_BLOCK_WFI)
2270 cpu_idle_poll_ctrl(false);
2271 if (soc_ops.disable_module)
2272 soc_ops.disable_module(oh);
2275 * The module must be in idle mode before disabling any parents
2276 * clocks. Otherwise, the parent clock might be disabled before
2277 * the module transition is done, and thus will prevent the
2278 * transition to complete properly.
2280 _disable_clocks(oh);
2281 if (oh->clkdm)
2282 clkdm_hwmod_disable(oh->clkdm, oh);
2284 /* Mux pins for device idle if populated */
2285 if (oh->mux && oh->mux->pads_dynamic) {
2286 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
2287 _reconfigure_io_chain();
2290 oh->_state = _HWMOD_STATE_IDLE;
2292 return 0;
2296 * _shutdown - shutdown an omap_hwmod
2297 * @oh: struct omap_hwmod *
2299 * Shut down an omap_hwmod @oh. This should be called when the driver
2300 * used for the hwmod is removed or unloaded or if the driver is not
2301 * used by the system. Returns -EINVAL if the hwmod is in the wrong
2302 * state or returns 0.
2304 static int _shutdown(struct omap_hwmod *oh)
2306 int ret, i;
2307 u8 prev_state;
2309 if (oh->_state != _HWMOD_STATE_IDLE &&
2310 oh->_state != _HWMOD_STATE_ENABLED) {
2311 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2312 oh->name);
2313 return -EINVAL;
2316 if (_are_all_hardreset_lines_asserted(oh))
2317 return 0;
2319 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2321 if (oh->class->pre_shutdown) {
2322 prev_state = oh->_state;
2323 if (oh->_state == _HWMOD_STATE_IDLE)
2324 _enable(oh);
2325 ret = oh->class->pre_shutdown(oh);
2326 if (ret) {
2327 if (prev_state == _HWMOD_STATE_IDLE)
2328 _idle(oh);
2329 return ret;
2333 if (oh->class->sysc) {
2334 if (oh->_state == _HWMOD_STATE_IDLE)
2335 _enable(oh);
2336 _shutdown_sysc(oh);
2339 /* clocks and deps are already disabled in idle */
2340 if (oh->_state == _HWMOD_STATE_ENABLED) {
2341 _del_initiator_dep(oh, mpu_oh);
2342 /* XXX what about the other system initiators here? dma, dsp */
2343 if (oh->flags & HWMOD_BLOCK_WFI)
2344 cpu_idle_poll_ctrl(false);
2345 if (soc_ops.disable_module)
2346 soc_ops.disable_module(oh);
2347 _disable_clocks(oh);
2348 if (oh->clkdm)
2349 clkdm_hwmod_disable(oh->clkdm, oh);
2351 /* XXX Should this code also force-disable the optional clocks? */
2353 for (i = 0; i < oh->rst_lines_cnt; i++)
2354 _assert_hardreset(oh, oh->rst_lines[i].name);
2356 /* Mux pins to safe mode or use populated off mode values */
2357 if (oh->mux)
2358 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
2360 oh->_state = _HWMOD_STATE_DISABLED;
2362 return 0;
2366 * of_dev_hwmod_lookup - look up needed hwmod from dt blob
2367 * @np: struct device_node *
2368 * @oh: struct omap_hwmod *
2370 * Parse the dt blob and find out needed hwmod. Recursive function is
2371 * implemented to take care hierarchical dt blob parsing.
2372 * Return: The device node on success or NULL on failure.
2374 static struct device_node *of_dev_hwmod_lookup(struct device_node *np,
2375 struct omap_hwmod *oh)
2377 struct device_node *np0 = NULL, *np1 = NULL;
2378 const char *p;
2380 for_each_child_of_node(np, np0) {
2381 if (of_find_property(np0, "ti,hwmods", NULL)) {
2382 p = of_get_property(np0, "ti,hwmods", NULL);
2383 if (!strcmp(p, oh->name))
2384 return np0;
2385 np1 = of_dev_hwmod_lookup(np0, oh);
2386 if (np1)
2387 return np1;
2390 return NULL;
2394 * _init_mpu_rt_base - populate the virtual address for a hwmod
2395 * @oh: struct omap_hwmod * to locate the virtual address
2397 * Cache the virtual address used by the MPU to access this IP block's
2398 * registers. This address is needed early so the OCP registers that
2399 * are part of the device's address space can be ioremapped properly.
2401 * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and
2402 * -ENXIO on absent or invalid register target address space.
2404 static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data)
2406 struct omap_hwmod_addr_space *mem;
2407 void __iomem *va_start = NULL;
2408 struct device_node *np;
2410 if (!oh)
2411 return -EINVAL;
2413 _save_mpu_port_index(oh);
2415 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2416 return -ENXIO;
2418 mem = _find_mpu_rt_addr_space(oh);
2419 if (!mem) {
2420 pr_debug("omap_hwmod: %s: no MPU register target found\n",
2421 oh->name);
2423 /* Extract the IO space from device tree blob */
2424 if (!of_have_populated_dt())
2425 return -ENXIO;
2427 np = of_dev_hwmod_lookup(of_find_node_by_name(NULL, "ocp"), oh);
2428 if (np)
2429 va_start = of_iomap(np, oh->mpu_rt_idx);
2430 } else {
2431 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
2434 if (!va_start) {
2435 pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
2436 return -ENXIO;
2439 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2440 oh->name, va_start);
2442 oh->_mpu_rt_va = va_start;
2443 return 0;
2447 * _init - initialize internal data for the hwmod @oh
2448 * @oh: struct omap_hwmod *
2449 * @n: (unused)
2451 * Look up the clocks and the address space used by the MPU to access
2452 * registers belonging to the hwmod @oh. @oh must already be
2453 * registered at this point. This is the first of two phases for
2454 * hwmod initialization. Code called here does not touch any hardware
2455 * registers, it simply prepares internal data structures. Returns 0
2456 * upon success or if the hwmod isn't registered or if the hwmod's
2457 * address space is not defined, or -EINVAL upon failure.
2459 static int __init _init(struct omap_hwmod *oh, void *data)
2461 int r;
2463 if (oh->_state != _HWMOD_STATE_REGISTERED)
2464 return 0;
2466 if (oh->class->sysc) {
2467 r = _init_mpu_rt_base(oh, NULL);
2468 if (r < 0) {
2469 WARN(1, "omap_hwmod: %s: doesn't have mpu register target base\n",
2470 oh->name);
2471 return 0;
2475 r = _init_clocks(oh, NULL);
2476 if (r < 0) {
2477 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2478 return -EINVAL;
2481 oh->_state = _HWMOD_STATE_INITIALIZED;
2483 return 0;
2487 * _setup_iclk_autoidle - configure an IP block's interface clocks
2488 * @oh: struct omap_hwmod *
2490 * Set up the module's interface clocks. XXX This function is still mostly
2491 * a stub; implementing this properly requires iclk autoidle usecounting in
2492 * the clock code. No return value.
2494 static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
2496 struct omap_hwmod_ocp_if *os;
2497 struct list_head *p;
2498 int i = 0;
2499 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2500 return;
2502 p = oh->slave_ports.next;
2504 while (i < oh->slaves_cnt) {
2505 os = _fetch_next_ocp_if(&p, &i);
2506 if (!os->_clk)
2507 continue;
2509 if (os->flags & OCPIF_SWSUP_IDLE) {
2510 /* XXX omap_iclk_deny_idle(c); */
2511 } else {
2512 /* XXX omap_iclk_allow_idle(c); */
2513 clk_enable(os->_clk);
2517 return;
2521 * _setup_reset - reset an IP block during the setup process
2522 * @oh: struct omap_hwmod *
2524 * Reset the IP block corresponding to the hwmod @oh during the setup
2525 * process. The IP block is first enabled so it can be successfully
2526 * reset. Returns 0 upon success or a negative error code upon
2527 * failure.
2529 static int __init _setup_reset(struct omap_hwmod *oh)
2531 int r;
2533 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2534 return -EINVAL;
2536 if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
2537 return -EPERM;
2539 if (oh->rst_lines_cnt == 0) {
2540 r = _enable(oh);
2541 if (r) {
2542 pr_warning("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2543 oh->name, oh->_state);
2544 return -EINVAL;
2548 if (!(oh->flags & HWMOD_INIT_NO_RESET))
2549 r = _reset(oh);
2551 return r;
2555 * _setup_postsetup - transition to the appropriate state after _setup
2556 * @oh: struct omap_hwmod *
2558 * Place an IP block represented by @oh into a "post-setup" state --
2559 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
2560 * this function is called at the end of _setup().) The postsetup
2561 * state for an IP block can be changed by calling
2562 * omap_hwmod_enter_postsetup_state() early in the boot process,
2563 * before one of the omap_hwmod_setup*() functions are called for the
2564 * IP block.
2566 * The IP block stays in this state until a PM runtime-based driver is
2567 * loaded for that IP block. A post-setup state of IDLE is
2568 * appropriate for almost all IP blocks with runtime PM-enabled
2569 * drivers, since those drivers are able to enable the IP block. A
2570 * post-setup state of ENABLED is appropriate for kernels with PM
2571 * runtime disabled. The DISABLED state is appropriate for unusual IP
2572 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2573 * included, since the WDTIMER starts running on reset and will reset
2574 * the MPU if left active.
2576 * This post-setup mechanism is deprecated. Once all of the OMAP
2577 * drivers have been converted to use PM runtime, and all of the IP
2578 * block data and interconnect data is available to the hwmod code, it
2579 * should be possible to replace this mechanism with a "lazy reset"
2580 * arrangement. In a "lazy reset" setup, each IP block is enabled
2581 * when the driver first probes, then all remaining IP blocks without
2582 * drivers are either shut down or enabled after the drivers have
2583 * loaded. However, this cannot take place until the above
2584 * preconditions have been met, since otherwise the late reset code
2585 * has no way of knowing which IP blocks are in use by drivers, and
2586 * which ones are unused.
2588 * No return value.
2590 static void __init _setup_postsetup(struct omap_hwmod *oh)
2592 u8 postsetup_state;
2594 if (oh->rst_lines_cnt > 0)
2595 return;
2597 postsetup_state = oh->_postsetup_state;
2598 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2599 postsetup_state = _HWMOD_STATE_ENABLED;
2602 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2603 * it should be set by the core code as a runtime flag during startup
2605 if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
2606 (postsetup_state == _HWMOD_STATE_IDLE)) {
2607 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
2608 postsetup_state = _HWMOD_STATE_ENABLED;
2611 if (postsetup_state == _HWMOD_STATE_IDLE)
2612 _idle(oh);
2613 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2614 _shutdown(oh);
2615 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2616 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2617 oh->name, postsetup_state);
2619 return;
2623 * _setup - prepare IP block hardware for use
2624 * @oh: struct omap_hwmod *
2625 * @n: (unused, pass NULL)
2627 * Configure the IP block represented by @oh. This may include
2628 * enabling the IP block, resetting it, and placing it into a
2629 * post-setup state, depending on the type of IP block and applicable
2630 * flags. IP blocks are reset to prevent any previous configuration
2631 * by the bootloader or previous operating system from interfering
2632 * with power management or other parts of the system. The reset can
2633 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2634 * two phases for hwmod initialization. Code called here generally
2635 * affects the IP block hardware, or system integration hardware
2636 * associated with the IP block. Returns 0.
2638 static int __init _setup(struct omap_hwmod *oh, void *data)
2640 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2641 return 0;
2643 _setup_iclk_autoidle(oh);
2645 if (!_setup_reset(oh))
2646 _setup_postsetup(oh);
2648 return 0;
2652 * _register - register a struct omap_hwmod
2653 * @oh: struct omap_hwmod *
2655 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2656 * already has been registered by the same name; -EINVAL if the
2657 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2658 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2659 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2660 * success.
2662 * XXX The data should be copied into bootmem, so the original data
2663 * should be marked __initdata and freed after init. This would allow
2664 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2665 * that the copy process would be relatively complex due to the large number
2666 * of substructures.
2668 static int __init _register(struct omap_hwmod *oh)
2670 if (!oh || !oh->name || !oh->class || !oh->class->name ||
2671 (oh->_state != _HWMOD_STATE_UNKNOWN))
2672 return -EINVAL;
2674 pr_debug("omap_hwmod: %s: registering\n", oh->name);
2676 if (_lookup(oh->name))
2677 return -EEXIST;
2679 list_add_tail(&oh->node, &omap_hwmod_list);
2681 INIT_LIST_HEAD(&oh->master_ports);
2682 INIT_LIST_HEAD(&oh->slave_ports);
2683 spin_lock_init(&oh->_lock);
2685 oh->_state = _HWMOD_STATE_REGISTERED;
2688 * XXX Rather than doing a strcmp(), this should test a flag
2689 * set in the hwmod data, inserted by the autogenerator code.
2691 if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2692 mpu_oh = oh;
2694 return 0;
2698 * _alloc_links - return allocated memory for hwmod links
2699 * @ml: pointer to a struct omap_hwmod_link * for the master link
2700 * @sl: pointer to a struct omap_hwmod_link * for the slave link
2702 * Return pointers to two struct omap_hwmod_link records, via the
2703 * addresses pointed to by @ml and @sl. Will first attempt to return
2704 * memory allocated as part of a large initial block, but if that has
2705 * been exhausted, will allocate memory itself. Since ideally this
2706 * second allocation path will never occur, the number of these
2707 * 'supplemental' allocations will be logged when debugging is
2708 * enabled. Returns 0.
2710 static int __init _alloc_links(struct omap_hwmod_link **ml,
2711 struct omap_hwmod_link **sl)
2713 unsigned int sz;
2715 if ((free_ls + LINKS_PER_OCP_IF) <= max_ls) {
2716 *ml = &linkspace[free_ls++];
2717 *sl = &linkspace[free_ls++];
2718 return 0;
2721 sz = sizeof(struct omap_hwmod_link) * LINKS_PER_OCP_IF;
2723 *sl = NULL;
2724 *ml = alloc_bootmem(sz);
2726 memset(*ml, 0, sz);
2728 *sl = (void *)(*ml) + sizeof(struct omap_hwmod_link);
2730 ls_supp++;
2731 pr_debug("omap_hwmod: supplemental link allocations needed: %d\n",
2732 ls_supp * LINKS_PER_OCP_IF);
2734 return 0;
2738 * _add_link - add an interconnect between two IP blocks
2739 * @oi: pointer to a struct omap_hwmod_ocp_if record
2741 * Add struct omap_hwmod_link records connecting the master IP block
2742 * specified in @oi->master to @oi, and connecting the slave IP block
2743 * specified in @oi->slave to @oi. This code is assumed to run before
2744 * preemption or SMP has been enabled, thus avoiding the need for
2745 * locking in this code. Changes to this assumption will require
2746 * additional locking. Returns 0.
2748 static int __init _add_link(struct omap_hwmod_ocp_if *oi)
2750 struct omap_hwmod_link *ml, *sl;
2752 pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2753 oi->slave->name);
2755 _alloc_links(&ml, &sl);
2757 ml->ocp_if = oi;
2758 INIT_LIST_HEAD(&ml->node);
2759 list_add(&ml->node, &oi->master->master_ports);
2760 oi->master->masters_cnt++;
2762 sl->ocp_if = oi;
2763 INIT_LIST_HEAD(&sl->node);
2764 list_add(&sl->node, &oi->slave->slave_ports);
2765 oi->slave->slaves_cnt++;
2767 return 0;
2771 * _register_link - register a struct omap_hwmod_ocp_if
2772 * @oi: struct omap_hwmod_ocp_if *
2774 * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
2775 * has already been registered; -EINVAL if @oi is NULL or if the
2776 * record pointed to by @oi is missing required fields; or 0 upon
2777 * success.
2779 * XXX The data should be copied into bootmem, so the original data
2780 * should be marked __initdata and freed after init. This would allow
2781 * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2783 static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2785 if (!oi || !oi->master || !oi->slave || !oi->user)
2786 return -EINVAL;
2788 if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2789 return -EEXIST;
2791 pr_debug("omap_hwmod: registering link from %s to %s\n",
2792 oi->master->name, oi->slave->name);
2795 * Register the connected hwmods, if they haven't been
2796 * registered already
2798 if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2799 _register(oi->master);
2801 if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2802 _register(oi->slave);
2804 _add_link(oi);
2806 oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2808 return 0;
2812 * _alloc_linkspace - allocate large block of hwmod links
2813 * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count
2815 * Allocate a large block of struct omap_hwmod_link records. This
2816 * improves boot time significantly by avoiding the need to allocate
2817 * individual records one by one. If the number of records to
2818 * allocate in the block hasn't been manually specified, this function
2819 * will count the number of struct omap_hwmod_ocp_if records in @ois
2820 * and use that to determine the allocation size. For SoC families
2821 * that require multiple list registrations, such as OMAP3xxx, this
2822 * estimation process isn't optimal, so manual estimation is advised
2823 * in those cases. Returns -EEXIST if the allocation has already occurred
2824 * or 0 upon success.
2826 static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois)
2828 unsigned int i = 0;
2829 unsigned int sz;
2831 if (linkspace) {
2832 WARN(1, "linkspace already allocated\n");
2833 return -EEXIST;
2836 if (max_ls == 0)
2837 while (ois[i++])
2838 max_ls += LINKS_PER_OCP_IF;
2840 sz = sizeof(struct omap_hwmod_link) * max_ls;
2842 pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n",
2843 __func__, sz, max_ls);
2845 linkspace = alloc_bootmem(sz);
2847 memset(linkspace, 0, sz);
2849 return 0;
2852 /* Static functions intended only for use in soc_ops field function pointers */
2855 * _omap2xxx_wait_target_ready - wait for a module to leave slave idle
2856 * @oh: struct omap_hwmod *
2858 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2859 * does not have an IDLEST bit or if the module successfully leaves
2860 * slave idle; otherwise, pass along the return value of the
2861 * appropriate *_cm*_wait_module_ready() function.
2863 static int _omap2xxx_wait_target_ready(struct omap_hwmod *oh)
2865 if (!oh)
2866 return -EINVAL;
2868 if (oh->flags & HWMOD_NO_IDLEST)
2869 return 0;
2871 if (!_find_mpu_rt_port(oh))
2872 return 0;
2874 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2876 return omap2xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2877 oh->prcm.omap2.idlest_reg_id,
2878 oh->prcm.omap2.idlest_idle_bit);
2882 * _omap3xxx_wait_target_ready - wait for a module to leave slave idle
2883 * @oh: struct omap_hwmod *
2885 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2886 * does not have an IDLEST bit or if the module successfully leaves
2887 * slave idle; otherwise, pass along the return value of the
2888 * appropriate *_cm*_wait_module_ready() function.
2890 static int _omap3xxx_wait_target_ready(struct omap_hwmod *oh)
2892 if (!oh)
2893 return -EINVAL;
2895 if (oh->flags & HWMOD_NO_IDLEST)
2896 return 0;
2898 if (!_find_mpu_rt_port(oh))
2899 return 0;
2901 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2903 return omap3xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2904 oh->prcm.omap2.idlest_reg_id,
2905 oh->prcm.omap2.idlest_idle_bit);
2909 * _omap4_wait_target_ready - wait for a module to leave slave idle
2910 * @oh: struct omap_hwmod *
2912 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2913 * does not have an IDLEST bit or if the module successfully leaves
2914 * slave idle; otherwise, pass along the return value of the
2915 * appropriate *_cm*_wait_module_ready() function.
2917 static int _omap4_wait_target_ready(struct omap_hwmod *oh)
2919 if (!oh)
2920 return -EINVAL;
2922 if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
2923 return 0;
2925 if (!_find_mpu_rt_port(oh))
2926 return 0;
2928 /* XXX check module SIDLEMODE, hardreset status */
2930 return omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition,
2931 oh->clkdm->cm_inst,
2932 oh->clkdm->clkdm_offs,
2933 oh->prcm.omap4.clkctrl_offs);
2937 * _am33xx_wait_target_ready - wait for a module to leave slave idle
2938 * @oh: struct omap_hwmod *
2940 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2941 * does not have an IDLEST bit or if the module successfully leaves
2942 * slave idle; otherwise, pass along the return value of the
2943 * appropriate *_cm*_wait_module_ready() function.
2945 static int _am33xx_wait_target_ready(struct omap_hwmod *oh)
2947 if (!oh || !oh->clkdm)
2948 return -EINVAL;
2950 if (oh->flags & HWMOD_NO_IDLEST)
2951 return 0;
2953 if (!_find_mpu_rt_port(oh))
2954 return 0;
2956 /* XXX check module SIDLEMODE, hardreset status */
2958 return am33xx_cm_wait_module_ready(oh->clkdm->cm_inst,
2959 oh->clkdm->clkdm_offs,
2960 oh->prcm.omap4.clkctrl_offs);
2964 * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2965 * @oh: struct omap_hwmod * to assert hardreset
2966 * @ohri: hardreset line data
2968 * Call omap2_prm_assert_hardreset() with parameters extracted from
2969 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2970 * use as an soc_ops function pointer. Passes along the return value
2971 * from omap2_prm_assert_hardreset(). XXX This function is scheduled
2972 * for removal when the PRM code is moved into drivers/.
2974 static int _omap2_assert_hardreset(struct omap_hwmod *oh,
2975 struct omap_hwmod_rst_info *ohri)
2977 return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
2978 ohri->rst_shift);
2982 * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2983 * @oh: struct omap_hwmod * to deassert hardreset
2984 * @ohri: hardreset line data
2986 * Call omap2_prm_deassert_hardreset() with parameters extracted from
2987 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2988 * use as an soc_ops function pointer. Passes along the return value
2989 * from omap2_prm_deassert_hardreset(). XXX This function is
2990 * scheduled for removal when the PRM code is moved into drivers/.
2992 static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
2993 struct omap_hwmod_rst_info *ohri)
2995 return omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
2996 ohri->rst_shift,
2997 ohri->st_shift);
3001 * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
3002 * @oh: struct omap_hwmod * to test hardreset
3003 * @ohri: hardreset line data
3005 * Call omap2_prm_is_hardreset_asserted() with parameters extracted
3006 * from the hwmod @oh and the hardreset line data @ohri. Only
3007 * intended for use as an soc_ops function pointer. Passes along the
3008 * return value from omap2_prm_is_hardreset_asserted(). XXX This
3009 * function is scheduled for removal when the PRM code is moved into
3010 * drivers/.
3012 static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
3013 struct omap_hwmod_rst_info *ohri)
3015 return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
3016 ohri->st_shift);
3020 * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
3021 * @oh: struct omap_hwmod * to assert hardreset
3022 * @ohri: hardreset line data
3024 * Call omap4_prminst_assert_hardreset() with parameters extracted
3025 * from the hwmod @oh and the hardreset line data @ohri. Only
3026 * intended for use as an soc_ops function pointer. Passes along the
3027 * return value from omap4_prminst_assert_hardreset(). XXX This
3028 * function is scheduled for removal when the PRM code is moved into
3029 * drivers/.
3031 static int _omap4_assert_hardreset(struct omap_hwmod *oh,
3032 struct omap_hwmod_rst_info *ohri)
3034 if (!oh->clkdm)
3035 return -EINVAL;
3037 return omap4_prminst_assert_hardreset(ohri->rst_shift,
3038 oh->clkdm->pwrdm.ptr->prcm_partition,
3039 oh->clkdm->pwrdm.ptr->prcm_offs,
3040 oh->prcm.omap4.rstctrl_offs);
3044 * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
3045 * @oh: struct omap_hwmod * to deassert hardreset
3046 * @ohri: hardreset line data
3048 * Call omap4_prminst_deassert_hardreset() with parameters extracted
3049 * from the hwmod @oh and the hardreset line data @ohri. Only
3050 * intended for use as an soc_ops function pointer. Passes along the
3051 * return value from omap4_prminst_deassert_hardreset(). XXX This
3052 * function is scheduled for removal when the PRM code is moved into
3053 * drivers/.
3055 static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
3056 struct omap_hwmod_rst_info *ohri)
3058 if (!oh->clkdm)
3059 return -EINVAL;
3061 if (ohri->st_shift)
3062 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
3063 oh->name, ohri->name);
3064 return omap4_prminst_deassert_hardreset(ohri->rst_shift,
3065 oh->clkdm->pwrdm.ptr->prcm_partition,
3066 oh->clkdm->pwrdm.ptr->prcm_offs,
3067 oh->prcm.omap4.rstctrl_offs);
3071 * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
3072 * @oh: struct omap_hwmod * to test hardreset
3073 * @ohri: hardreset line data
3075 * Call omap4_prminst_is_hardreset_asserted() with parameters
3076 * extracted from the hwmod @oh and the hardreset line data @ohri.
3077 * Only intended for use as an soc_ops function pointer. Passes along
3078 * the return value from omap4_prminst_is_hardreset_asserted(). XXX
3079 * This function is scheduled for removal when the PRM code is moved
3080 * into drivers/.
3082 static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
3083 struct omap_hwmod_rst_info *ohri)
3085 if (!oh->clkdm)
3086 return -EINVAL;
3088 return omap4_prminst_is_hardreset_asserted(ohri->rst_shift,
3089 oh->clkdm->pwrdm.ptr->prcm_partition,
3090 oh->clkdm->pwrdm.ptr->prcm_offs,
3091 oh->prcm.omap4.rstctrl_offs);
3095 * _am33xx_assert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3096 * @oh: struct omap_hwmod * to assert hardreset
3097 * @ohri: hardreset line data
3099 * Call am33xx_prminst_assert_hardreset() with parameters extracted
3100 * from the hwmod @oh and the hardreset line data @ohri. Only
3101 * intended for use as an soc_ops function pointer. Passes along the
3102 * return value from am33xx_prminst_assert_hardreset(). XXX This
3103 * function is scheduled for removal when the PRM code is moved into
3104 * drivers/.
3106 static int _am33xx_assert_hardreset(struct omap_hwmod *oh,
3107 struct omap_hwmod_rst_info *ohri)
3110 return am33xx_prm_assert_hardreset(ohri->rst_shift,
3111 oh->clkdm->pwrdm.ptr->prcm_offs,
3112 oh->prcm.omap4.rstctrl_offs);
3116 * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3117 * @oh: struct omap_hwmod * to deassert hardreset
3118 * @ohri: hardreset line data
3120 * Call am33xx_prminst_deassert_hardreset() with parameters extracted
3121 * from the hwmod @oh and the hardreset line data @ohri. Only
3122 * intended for use as an soc_ops function pointer. Passes along the
3123 * return value from am33xx_prminst_deassert_hardreset(). XXX This
3124 * function is scheduled for removal when the PRM code is moved into
3125 * drivers/.
3127 static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
3128 struct omap_hwmod_rst_info *ohri)
3130 return am33xx_prm_deassert_hardreset(ohri->rst_shift,
3131 ohri->st_shift,
3132 oh->clkdm->pwrdm.ptr->prcm_offs,
3133 oh->prcm.omap4.rstctrl_offs,
3134 oh->prcm.omap4.rstst_offs);
3138 * _am33xx_is_hardreset_asserted - call AM33XX PRM hardreset fn with hwmod args
3139 * @oh: struct omap_hwmod * to test hardreset
3140 * @ohri: hardreset line data
3142 * Call am33xx_prminst_is_hardreset_asserted() with parameters
3143 * extracted from the hwmod @oh and the hardreset line data @ohri.
3144 * Only intended for use as an soc_ops function pointer. Passes along
3145 * the return value from am33xx_prminst_is_hardreset_asserted(). XXX
3146 * This function is scheduled for removal when the PRM code is moved
3147 * into drivers/.
3149 static int _am33xx_is_hardreset_asserted(struct omap_hwmod *oh,
3150 struct omap_hwmod_rst_info *ohri)
3152 return am33xx_prm_is_hardreset_asserted(ohri->rst_shift,
3153 oh->clkdm->pwrdm.ptr->prcm_offs,
3154 oh->prcm.omap4.rstctrl_offs);
3157 /* Public functions */
3159 u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
3161 if (oh->flags & HWMOD_16BIT_REG)
3162 return __raw_readw(oh->_mpu_rt_va + reg_offs);
3163 else
3164 return __raw_readl(oh->_mpu_rt_va + reg_offs);
3167 void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
3169 if (oh->flags & HWMOD_16BIT_REG)
3170 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
3171 else
3172 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
3176 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
3177 * @oh: struct omap_hwmod *
3179 * This is a public function exposed to drivers. Some drivers may need to do
3180 * some settings before and after resetting the device. Those drivers after
3181 * doing the necessary settings could use this function to start a reset by
3182 * setting the SYSCONFIG.SOFTRESET bit.
3184 int omap_hwmod_softreset(struct omap_hwmod *oh)
3186 u32 v;
3187 int ret;
3189 if (!oh || !(oh->_sysc_cache))
3190 return -EINVAL;
3192 v = oh->_sysc_cache;
3193 ret = _set_softreset(oh, &v);
3194 if (ret)
3195 goto error;
3196 _write_sysconfig(v, oh);
3198 ret = _clear_softreset(oh, &v);
3199 if (ret)
3200 goto error;
3201 _write_sysconfig(v, oh);
3203 error:
3204 return ret;
3208 * omap_hwmod_lookup - look up a registered omap_hwmod by name
3209 * @name: name of the omap_hwmod to look up
3211 * Given a @name of an omap_hwmod, return a pointer to the registered
3212 * struct omap_hwmod *, or NULL upon error.
3214 struct omap_hwmod *omap_hwmod_lookup(const char *name)
3216 struct omap_hwmod *oh;
3218 if (!name)
3219 return NULL;
3221 oh = _lookup(name);
3223 return oh;
3227 * omap_hwmod_for_each - call function for each registered omap_hwmod
3228 * @fn: pointer to a callback function
3229 * @data: void * data to pass to callback function
3231 * Call @fn for each registered omap_hwmod, passing @data to each
3232 * function. @fn must return 0 for success or any other value for
3233 * failure. If @fn returns non-zero, the iteration across omap_hwmods
3234 * will stop and the non-zero return value will be passed to the
3235 * caller of omap_hwmod_for_each(). @fn is called with
3236 * omap_hwmod_for_each() held.
3238 int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
3239 void *data)
3241 struct omap_hwmod *temp_oh;
3242 int ret = 0;
3244 if (!fn)
3245 return -EINVAL;
3247 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3248 ret = (*fn)(temp_oh, data);
3249 if (ret)
3250 break;
3253 return ret;
3257 * omap_hwmod_register_links - register an array of hwmod links
3258 * @ois: pointer to an array of omap_hwmod_ocp_if to register
3260 * Intended to be called early in boot before the clock framework is
3261 * initialized. If @ois is not null, will register all omap_hwmods
3262 * listed in @ois that are valid for this chip. Returns -EINVAL if
3263 * omap_hwmod_init() hasn't been called before calling this function,
3264 * -ENOMEM if the link memory area can't be allocated, or 0 upon
3265 * success.
3267 int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
3269 int r, i;
3271 if (!inited)
3272 return -EINVAL;
3274 if (!ois)
3275 return 0;
3277 if (!linkspace) {
3278 if (_alloc_linkspace(ois)) {
3279 pr_err("omap_hwmod: could not allocate link space\n");
3280 return -ENOMEM;
3284 i = 0;
3285 do {
3286 r = _register_link(ois[i]);
3287 WARN(r && r != -EEXIST,
3288 "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3289 ois[i]->master->name, ois[i]->slave->name, r);
3290 } while (ois[++i]);
3292 return 0;
3296 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3297 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
3299 * If the hwmod data corresponding to the MPU subsystem IP block
3300 * hasn't been initialized and set up yet, do so now. This must be
3301 * done first since sleep dependencies may be added from other hwmods
3302 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
3303 * return value.
3305 static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
3307 if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3308 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3309 __func__, MPU_INITIATOR_NAME);
3310 else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3311 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
3315 * omap_hwmod_setup_one - set up a single hwmod
3316 * @oh_name: const char * name of the already-registered hwmod to set up
3318 * Initialize and set up a single hwmod. Intended to be used for a
3319 * small number of early devices, such as the timer IP blocks used for
3320 * the scheduler clock. Must be called after omap2_clk_init().
3321 * Resolves the struct clk names to struct clk pointers for each
3322 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
3323 * -EINVAL upon error or 0 upon success.
3325 int __init omap_hwmod_setup_one(const char *oh_name)
3327 struct omap_hwmod *oh;
3329 pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3331 oh = _lookup(oh_name);
3332 if (!oh) {
3333 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3334 return -EINVAL;
3337 _ensure_mpu_hwmod_is_setup(oh);
3339 _init(oh, NULL);
3340 _setup(oh, NULL);
3342 return 0;
3346 * omap_hwmod_setup_all - set up all registered IP blocks
3348 * Initialize and set up all IP blocks registered with the hwmod code.
3349 * Must be called after omap2_clk_init(). Resolves the struct clk
3350 * names to struct clk pointers for each registered omap_hwmod. Also
3351 * calls _setup() on each hwmod. Returns 0 upon success.
3353 static int __init omap_hwmod_setup_all(void)
3355 _ensure_mpu_hwmod_is_setup(NULL);
3357 omap_hwmod_for_each(_init, NULL);
3358 omap_hwmod_for_each(_setup, NULL);
3360 return 0;
3362 omap_core_initcall(omap_hwmod_setup_all);
3365 * omap_hwmod_enable - enable an omap_hwmod
3366 * @oh: struct omap_hwmod *
3368 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
3369 * Returns -EINVAL on error or passes along the return value from _enable().
3371 int omap_hwmod_enable(struct omap_hwmod *oh)
3373 int r;
3374 unsigned long flags;
3376 if (!oh)
3377 return -EINVAL;
3379 spin_lock_irqsave(&oh->_lock, flags);
3380 r = _enable(oh);
3381 spin_unlock_irqrestore(&oh->_lock, flags);
3383 return r;
3387 * omap_hwmod_idle - idle an omap_hwmod
3388 * @oh: struct omap_hwmod *
3390 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
3391 * Returns -EINVAL on error or passes along the return value from _idle().
3393 int omap_hwmod_idle(struct omap_hwmod *oh)
3395 unsigned long flags;
3397 if (!oh)
3398 return -EINVAL;
3400 spin_lock_irqsave(&oh->_lock, flags);
3401 _idle(oh);
3402 spin_unlock_irqrestore(&oh->_lock, flags);
3404 return 0;
3408 * omap_hwmod_shutdown - shutdown an omap_hwmod
3409 * @oh: struct omap_hwmod *
3411 * Shutdown an omap_hwmod @oh. Intended to be called by
3412 * omap_device_shutdown(). Returns -EINVAL on error or passes along
3413 * the return value from _shutdown().
3415 int omap_hwmod_shutdown(struct omap_hwmod *oh)
3417 unsigned long flags;
3419 if (!oh)
3420 return -EINVAL;
3422 spin_lock_irqsave(&oh->_lock, flags);
3423 _shutdown(oh);
3424 spin_unlock_irqrestore(&oh->_lock, flags);
3426 return 0;
3430 * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
3431 * @oh: struct omap_hwmod *oh
3433 * Intended to be called by the omap_device code.
3435 int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
3437 unsigned long flags;
3439 spin_lock_irqsave(&oh->_lock, flags);
3440 _enable_clocks(oh);
3441 spin_unlock_irqrestore(&oh->_lock, flags);
3443 return 0;
3447 * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
3448 * @oh: struct omap_hwmod *oh
3450 * Intended to be called by the omap_device code.
3452 int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
3454 unsigned long flags;
3456 spin_lock_irqsave(&oh->_lock, flags);
3457 _disable_clocks(oh);
3458 spin_unlock_irqrestore(&oh->_lock, flags);
3460 return 0;
3464 * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
3465 * @oh: struct omap_hwmod *oh
3467 * Intended to be called by drivers and core code when all posted
3468 * writes to a device must complete before continuing further
3469 * execution (for example, after clearing some device IRQSTATUS
3470 * register bits)
3472 * XXX what about targets with multiple OCP threads?
3474 void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
3476 BUG_ON(!oh);
3478 if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
3479 WARN(1, "omap_device: %s: OCP barrier impossible due to device configuration\n",
3480 oh->name);
3481 return;
3485 * Forces posted writes to complete on the OCP thread handling
3486 * register writes
3488 omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
3492 * omap_hwmod_reset - reset the hwmod
3493 * @oh: struct omap_hwmod *
3495 * Under some conditions, a driver may wish to reset the entire device.
3496 * Called from omap_device code. Returns -EINVAL on error or passes along
3497 * the return value from _reset().
3499 int omap_hwmod_reset(struct omap_hwmod *oh)
3501 int r;
3502 unsigned long flags;
3504 if (!oh)
3505 return -EINVAL;
3507 spin_lock_irqsave(&oh->_lock, flags);
3508 r = _reset(oh);
3509 spin_unlock_irqrestore(&oh->_lock, flags);
3511 return r;
3515 * IP block data retrieval functions
3519 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
3520 * @oh: struct omap_hwmod *
3521 * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
3523 * Count the number of struct resource array elements necessary to
3524 * contain omap_hwmod @oh resources. Intended to be called by code
3525 * that registers omap_devices. Intended to be used to determine the
3526 * size of a dynamically-allocated struct resource array, before
3527 * calling omap_hwmod_fill_resources(). Returns the number of struct
3528 * resource array elements needed.
3530 * XXX This code is not optimized. It could attempt to merge adjacent
3531 * resource IDs.
3534 int omap_hwmod_count_resources(struct omap_hwmod *oh, unsigned long flags)
3536 int ret = 0;
3538 if (flags & IORESOURCE_IRQ)
3539 ret += _count_mpu_irqs(oh);
3541 if (flags & IORESOURCE_DMA)
3542 ret += _count_sdma_reqs(oh);
3544 if (flags & IORESOURCE_MEM) {
3545 int i = 0;
3546 struct omap_hwmod_ocp_if *os;
3547 struct list_head *p = oh->slave_ports.next;
3549 while (i < oh->slaves_cnt) {
3550 os = _fetch_next_ocp_if(&p, &i);
3551 ret += _count_ocp_if_addr_spaces(os);
3555 return ret;
3559 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
3560 * @oh: struct omap_hwmod *
3561 * @res: pointer to the first element of an array of struct resource to fill
3563 * Fill the struct resource array @res with resource data from the
3564 * omap_hwmod @oh. Intended to be called by code that registers
3565 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3566 * number of array elements filled.
3568 int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
3570 struct omap_hwmod_ocp_if *os;
3571 struct list_head *p;
3572 int i, j, mpu_irqs_cnt, sdma_reqs_cnt, addr_cnt;
3573 int r = 0;
3575 /* For each IRQ, DMA, memory area, fill in array.*/
3577 mpu_irqs_cnt = _count_mpu_irqs(oh);
3578 for (i = 0; i < mpu_irqs_cnt; i++) {
3579 (res + r)->name = (oh->mpu_irqs + i)->name;
3580 (res + r)->start = (oh->mpu_irqs + i)->irq;
3581 (res + r)->end = (oh->mpu_irqs + i)->irq;
3582 (res + r)->flags = IORESOURCE_IRQ;
3583 r++;
3586 sdma_reqs_cnt = _count_sdma_reqs(oh);
3587 for (i = 0; i < sdma_reqs_cnt; i++) {
3588 (res + r)->name = (oh->sdma_reqs + i)->name;
3589 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3590 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3591 (res + r)->flags = IORESOURCE_DMA;
3592 r++;
3595 p = oh->slave_ports.next;
3597 i = 0;
3598 while (i < oh->slaves_cnt) {
3599 os = _fetch_next_ocp_if(&p, &i);
3600 addr_cnt = _count_ocp_if_addr_spaces(os);
3602 for (j = 0; j < addr_cnt; j++) {
3603 (res + r)->name = (os->addr + j)->name;
3604 (res + r)->start = (os->addr + j)->pa_start;
3605 (res + r)->end = (os->addr + j)->pa_end;
3606 (res + r)->flags = IORESOURCE_MEM;
3607 r++;
3611 return r;
3615 * omap_hwmod_fill_dma_resources - fill struct resource array with dma data
3616 * @oh: struct omap_hwmod *
3617 * @res: pointer to the array of struct resource to fill
3619 * Fill the struct resource array @res with dma resource data from the
3620 * omap_hwmod @oh. Intended to be called by code that registers
3621 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3622 * number of array elements filled.
3624 int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res)
3626 int i, sdma_reqs_cnt;
3627 int r = 0;
3629 sdma_reqs_cnt = _count_sdma_reqs(oh);
3630 for (i = 0; i < sdma_reqs_cnt; i++) {
3631 (res + r)->name = (oh->sdma_reqs + i)->name;
3632 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3633 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3634 (res + r)->flags = IORESOURCE_DMA;
3635 r++;
3638 return r;
3642 * omap_hwmod_get_resource_byname - fetch IP block integration data by name
3643 * @oh: struct omap_hwmod * to operate on
3644 * @type: one of the IORESOURCE_* constants from include/linux/ioport.h
3645 * @name: pointer to the name of the data to fetch (optional)
3646 * @rsrc: pointer to a struct resource, allocated by the caller
3648 * Retrieve MPU IRQ, SDMA request line, or address space start/end
3649 * data for the IP block pointed to by @oh. The data will be filled
3650 * into a struct resource record pointed to by @rsrc. The struct
3651 * resource must be allocated by the caller. When @name is non-null,
3652 * the data associated with the matching entry in the IRQ/SDMA/address
3653 * space hwmod data arrays will be returned. If @name is null, the
3654 * first array entry will be returned. Data order is not meaningful
3655 * in hwmod data, so callers are strongly encouraged to use a non-null
3656 * @name whenever possible to avoid unpredictable effects if hwmod
3657 * data is later added that causes data ordering to change. This
3658 * function is only intended for use by OMAP core code. Device
3659 * drivers should not call this function - the appropriate bus-related
3660 * data accessor functions should be used instead. Returns 0 upon
3661 * success or a negative error code upon error.
3663 int omap_hwmod_get_resource_byname(struct omap_hwmod *oh, unsigned int type,
3664 const char *name, struct resource *rsrc)
3666 int r;
3667 unsigned int irq, dma;
3668 u32 pa_start, pa_end;
3670 if (!oh || !rsrc)
3671 return -EINVAL;
3673 if (type == IORESOURCE_IRQ) {
3674 r = _get_mpu_irq_by_name(oh, name, &irq);
3675 if (r)
3676 return r;
3678 rsrc->start = irq;
3679 rsrc->end = irq;
3680 } else if (type == IORESOURCE_DMA) {
3681 r = _get_sdma_req_by_name(oh, name, &dma);
3682 if (r)
3683 return r;
3685 rsrc->start = dma;
3686 rsrc->end = dma;
3687 } else if (type == IORESOURCE_MEM) {
3688 r = _get_addr_space_by_name(oh, name, &pa_start, &pa_end);
3689 if (r)
3690 return r;
3692 rsrc->start = pa_start;
3693 rsrc->end = pa_end;
3694 } else {
3695 return -EINVAL;
3698 rsrc->flags = type;
3699 rsrc->name = name;
3701 return 0;
3705 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3706 * @oh: struct omap_hwmod *
3708 * Return the powerdomain pointer associated with the OMAP module
3709 * @oh's main clock. If @oh does not have a main clk, return the
3710 * powerdomain associated with the interface clock associated with the
3711 * module's MPU port. (XXX Perhaps this should use the SDMA port
3712 * instead?) Returns NULL on error, or a struct powerdomain * on
3713 * success.
3715 struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3717 struct clk *c;
3718 struct omap_hwmod_ocp_if *oi;
3719 struct clockdomain *clkdm;
3720 struct clk_hw_omap *clk;
3722 if (!oh)
3723 return NULL;
3725 if (oh->clkdm)
3726 return oh->clkdm->pwrdm.ptr;
3728 if (oh->_clk) {
3729 c = oh->_clk;
3730 } else {
3731 oi = _find_mpu_rt_port(oh);
3732 if (!oi)
3733 return NULL;
3734 c = oi->_clk;
3737 clk = to_clk_hw_omap(__clk_get_hw(c));
3738 clkdm = clk->clkdm;
3739 if (!clkdm)
3740 return NULL;
3742 return clkdm->pwrdm.ptr;
3746 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3747 * @oh: struct omap_hwmod *
3749 * Returns the virtual address corresponding to the beginning of the
3750 * module's register target, in the address range that is intended to
3751 * be used by the MPU. Returns the virtual address upon success or NULL
3752 * upon error.
3754 void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3756 if (!oh)
3757 return NULL;
3759 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3760 return NULL;
3762 if (oh->_state == _HWMOD_STATE_UNKNOWN)
3763 return NULL;
3765 return oh->_mpu_rt_va;
3769 * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
3770 * @oh: struct omap_hwmod *
3771 * @init_oh: struct omap_hwmod * (initiator)
3773 * Add a sleep dependency between the initiator @init_oh and @oh.
3774 * Intended to be called by DSP/Bridge code via platform_data for the
3775 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3776 * code needs to add/del initiator dependencies dynamically
3777 * before/after accessing a device. Returns the return value from
3778 * _add_initiator_dep().
3780 * XXX Keep a usecount in the clockdomain code
3782 int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
3783 struct omap_hwmod *init_oh)
3785 return _add_initiator_dep(oh, init_oh);
3789 * XXX what about functions for drivers to save/restore ocp_sysconfig
3790 * for context save/restore operations?
3794 * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
3795 * @oh: struct omap_hwmod *
3796 * @init_oh: struct omap_hwmod * (initiator)
3798 * Remove a sleep dependency between the initiator @init_oh and @oh.
3799 * Intended to be called by DSP/Bridge code via platform_data for the
3800 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3801 * code needs to add/del initiator dependencies dynamically
3802 * before/after accessing a device. Returns the return value from
3803 * _del_initiator_dep().
3805 * XXX Keep a usecount in the clockdomain code
3807 int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
3808 struct omap_hwmod *init_oh)
3810 return _del_initiator_dep(oh, init_oh);
3814 * omap_hwmod_enable_wakeup - allow device to wake up the system
3815 * @oh: struct omap_hwmod *
3817 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
3818 * send wakeups to the PRCM, and enable I/O ring wakeup events for
3819 * this IP block if it has dynamic mux entries. Eventually this
3820 * should set PRCM wakeup registers to cause the PRCM to receive
3821 * wakeup events from the module. Does not set any wakeup routing
3822 * registers beyond this point - if the module is to wake up any other
3823 * module or subsystem, that must be set separately. Called by
3824 * omap_device code. Returns -EINVAL on error or 0 upon success.
3826 int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
3828 unsigned long flags;
3829 u32 v;
3831 spin_lock_irqsave(&oh->_lock, flags);
3833 if (oh->class->sysc &&
3834 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3835 v = oh->_sysc_cache;
3836 _enable_wakeup(oh, &v);
3837 _write_sysconfig(v, oh);
3840 _set_idle_ioring_wakeup(oh, true);
3841 spin_unlock_irqrestore(&oh->_lock, flags);
3843 return 0;
3847 * omap_hwmod_disable_wakeup - prevent device from waking the system
3848 * @oh: struct omap_hwmod *
3850 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
3851 * from sending wakeups to the PRCM, and disable I/O ring wakeup
3852 * events for this IP block if it has dynamic mux entries. Eventually
3853 * this should clear PRCM wakeup registers to cause the PRCM to ignore
3854 * wakeup events from the module. Does not set any wakeup routing
3855 * registers beyond this point - if the module is to wake up any other
3856 * module or subsystem, that must be set separately. Called by
3857 * omap_device code. Returns -EINVAL on error or 0 upon success.
3859 int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
3861 unsigned long flags;
3862 u32 v;
3864 spin_lock_irqsave(&oh->_lock, flags);
3866 if (oh->class->sysc &&
3867 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3868 v = oh->_sysc_cache;
3869 _disable_wakeup(oh, &v);
3870 _write_sysconfig(v, oh);
3873 _set_idle_ioring_wakeup(oh, false);
3874 spin_unlock_irqrestore(&oh->_lock, flags);
3876 return 0;
3880 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3881 * contained in the hwmod module.
3882 * @oh: struct omap_hwmod *
3883 * @name: name of the reset line to lookup and assert
3885 * Some IP like dsp, ipu or iva contain processor that require
3886 * an HW reset line to be assert / deassert in order to enable fully
3887 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3888 * yet supported on this OMAP; otherwise, passes along the return value
3889 * from _assert_hardreset().
3891 int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
3893 int ret;
3894 unsigned long flags;
3896 if (!oh)
3897 return -EINVAL;
3899 spin_lock_irqsave(&oh->_lock, flags);
3900 ret = _assert_hardreset(oh, name);
3901 spin_unlock_irqrestore(&oh->_lock, flags);
3903 return ret;
3907 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3908 * contained in the hwmod module.
3909 * @oh: struct omap_hwmod *
3910 * @name: name of the reset line to look up and deassert
3912 * Some IP like dsp, ipu or iva contain processor that require
3913 * an HW reset line to be assert / deassert in order to enable fully
3914 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3915 * yet supported on this OMAP; otherwise, passes along the return value
3916 * from _deassert_hardreset().
3918 int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
3920 int ret;
3921 unsigned long flags;
3923 if (!oh)
3924 return -EINVAL;
3926 spin_lock_irqsave(&oh->_lock, flags);
3927 ret = _deassert_hardreset(oh, name);
3928 spin_unlock_irqrestore(&oh->_lock, flags);
3930 return ret;
3934 * omap_hwmod_read_hardreset - read the HW reset line state of submodules
3935 * contained in the hwmod module
3936 * @oh: struct omap_hwmod *
3937 * @name: name of the reset line to look up and read
3939 * Return the current state of the hwmod @oh's reset line named @name:
3940 * returns -EINVAL upon parameter error or if this operation
3941 * is unsupported on the current OMAP; otherwise, passes along the return
3942 * value from _read_hardreset().
3944 int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
3946 int ret;
3947 unsigned long flags;
3949 if (!oh)
3950 return -EINVAL;
3952 spin_lock_irqsave(&oh->_lock, flags);
3953 ret = _read_hardreset(oh, name);
3954 spin_unlock_irqrestore(&oh->_lock, flags);
3956 return ret;
3961 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
3962 * @classname: struct omap_hwmod_class name to search for
3963 * @fn: callback function pointer to call for each hwmod in class @classname
3964 * @user: arbitrary context data to pass to the callback function
3966 * For each omap_hwmod of class @classname, call @fn.
3967 * If the callback function returns something other than
3968 * zero, the iterator is terminated, and the callback function's return
3969 * value is passed back to the caller. Returns 0 upon success, -EINVAL
3970 * if @classname or @fn are NULL, or passes back the error code from @fn.
3972 int omap_hwmod_for_each_by_class(const char *classname,
3973 int (*fn)(struct omap_hwmod *oh,
3974 void *user),
3975 void *user)
3977 struct omap_hwmod *temp_oh;
3978 int ret = 0;
3980 if (!classname || !fn)
3981 return -EINVAL;
3983 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
3984 __func__, classname);
3986 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3987 if (!strcmp(temp_oh->class->name, classname)) {
3988 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
3989 __func__, temp_oh->name);
3990 ret = (*fn)(temp_oh, user);
3991 if (ret)
3992 break;
3996 if (ret)
3997 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
3998 __func__, ret);
4000 return ret;
4004 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
4005 * @oh: struct omap_hwmod *
4006 * @state: state that _setup() should leave the hwmod in
4008 * Sets the hwmod state that @oh will enter at the end of _setup()
4009 * (called by omap_hwmod_setup_*()). See also the documentation
4010 * for _setup_postsetup(), above. Returns 0 upon success or
4011 * -EINVAL if there is a problem with the arguments or if the hwmod is
4012 * in the wrong state.
4014 int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
4016 int ret;
4017 unsigned long flags;
4019 if (!oh)
4020 return -EINVAL;
4022 if (state != _HWMOD_STATE_DISABLED &&
4023 state != _HWMOD_STATE_ENABLED &&
4024 state != _HWMOD_STATE_IDLE)
4025 return -EINVAL;
4027 spin_lock_irqsave(&oh->_lock, flags);
4029 if (oh->_state != _HWMOD_STATE_REGISTERED) {
4030 ret = -EINVAL;
4031 goto ohsps_unlock;
4034 oh->_postsetup_state = state;
4035 ret = 0;
4037 ohsps_unlock:
4038 spin_unlock_irqrestore(&oh->_lock, flags);
4040 return ret;
4044 * omap_hwmod_get_context_loss_count - get lost context count
4045 * @oh: struct omap_hwmod *
4047 * Returns the context loss count of associated @oh
4048 * upon success, or zero if no context loss data is available.
4050 * On OMAP4, this queries the per-hwmod context loss register,
4051 * assuming one exists. If not, or on OMAP2/3, this queries the
4052 * enclosing powerdomain context loss count.
4054 int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
4056 struct powerdomain *pwrdm;
4057 int ret = 0;
4059 if (soc_ops.get_context_lost)
4060 return soc_ops.get_context_lost(oh);
4062 pwrdm = omap_hwmod_get_pwrdm(oh);
4063 if (pwrdm)
4064 ret = pwrdm_get_context_loss_count(pwrdm);
4066 return ret;
4070 * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
4071 * @oh: struct omap_hwmod *
4073 * Prevent the hwmod @oh from being reset during the setup process.
4074 * Intended for use by board-*.c files on boards with devices that
4075 * cannot tolerate being reset. Must be called before the hwmod has
4076 * been set up. Returns 0 upon success or negative error code upon
4077 * failure.
4079 int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
4081 if (!oh)
4082 return -EINVAL;
4084 if (oh->_state != _HWMOD_STATE_REGISTERED) {
4085 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
4086 oh->name);
4087 return -EINVAL;
4090 oh->flags |= HWMOD_INIT_NO_RESET;
4092 return 0;
4096 * omap_hwmod_pad_route_irq - route an I/O pad wakeup to a particular MPU IRQ
4097 * @oh: struct omap_hwmod * containing hwmod mux entries
4098 * @pad_idx: array index in oh->mux of the hwmod mux entry to route wakeup
4099 * @irq_idx: the hwmod mpu_irqs array index of the IRQ to trigger on wakeup
4101 * When an I/O pad wakeup arrives for the dynamic or wakeup hwmod mux
4102 * entry number @pad_idx for the hwmod @oh, trigger the interrupt
4103 * service routine for the hwmod's mpu_irqs array index @irq_idx. If
4104 * this function is not called for a given pad_idx, then the ISR
4105 * associated with @oh's first MPU IRQ will be triggered when an I/O
4106 * pad wakeup occurs on that pad. Note that @pad_idx is the index of
4107 * the _dynamic or wakeup_ entry: if there are other entries not
4108 * marked with OMAP_DEVICE_PAD_WAKEUP or OMAP_DEVICE_PAD_REMUX, these
4109 * entries are NOT COUNTED in the dynamic pad index. This function
4110 * must be called separately for each pad that requires its interrupt
4111 * to be re-routed this way. Returns -EINVAL if there is an argument
4112 * problem or if @oh does not have hwmod mux entries or MPU IRQs;
4113 * returns -ENOMEM if memory cannot be allocated; or 0 upon success.
4115 * XXX This function interface is fragile. Rather than using array
4116 * indexes, which are subject to unpredictable change, it should be
4117 * using hwmod IRQ names, and some other stable key for the hwmod mux
4118 * pad records.
4120 int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx)
4122 int nr_irqs;
4124 might_sleep();
4126 if (!oh || !oh->mux || !oh->mpu_irqs || pad_idx < 0 ||
4127 pad_idx >= oh->mux->nr_pads_dynamic)
4128 return -EINVAL;
4130 /* Check the number of available mpu_irqs */
4131 for (nr_irqs = 0; oh->mpu_irqs[nr_irqs].irq >= 0; nr_irqs++)
4134 if (irq_idx >= nr_irqs)
4135 return -EINVAL;
4137 if (!oh->mux->irqs) {
4138 /* XXX What frees this? */
4139 oh->mux->irqs = kzalloc(sizeof(int) * oh->mux->nr_pads_dynamic,
4140 GFP_KERNEL);
4141 if (!oh->mux->irqs)
4142 return -ENOMEM;
4144 oh->mux->irqs[pad_idx] = irq_idx;
4146 return 0;
4150 * omap_hwmod_init - initialize the hwmod code
4152 * Sets up some function pointers needed by the hwmod code to operate on the
4153 * currently-booted SoC. Intended to be called once during kernel init
4154 * before any hwmods are registered. No return value.
4156 void __init omap_hwmod_init(void)
4158 if (cpu_is_omap24xx()) {
4159 soc_ops.wait_target_ready = _omap2xxx_wait_target_ready;
4160 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4161 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4162 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
4163 } else if (cpu_is_omap34xx()) {
4164 soc_ops.wait_target_ready = _omap3xxx_wait_target_ready;
4165 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4166 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4167 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
4168 } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
4169 soc_ops.enable_module = _omap4_enable_module;
4170 soc_ops.disable_module = _omap4_disable_module;
4171 soc_ops.wait_target_ready = _omap4_wait_target_ready;
4172 soc_ops.assert_hardreset = _omap4_assert_hardreset;
4173 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
4174 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
4175 soc_ops.init_clkdm = _init_clkdm;
4176 soc_ops.update_context_lost = _omap4_update_context_lost;
4177 soc_ops.get_context_lost = _omap4_get_context_lost;
4178 } else if (soc_is_am33xx()) {
4179 soc_ops.enable_module = _am33xx_enable_module;
4180 soc_ops.disable_module = _am33xx_disable_module;
4181 soc_ops.wait_target_ready = _am33xx_wait_target_ready;
4182 soc_ops.assert_hardreset = _am33xx_assert_hardreset;
4183 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
4184 soc_ops.is_hardreset_asserted = _am33xx_is_hardreset_asserted;
4185 soc_ops.init_clkdm = _init_clkdm;
4186 } else {
4187 WARN(1, "omap_hwmod: unknown SoC type\n");
4190 inited = true;
4194 * omap_hwmod_get_main_clk - get pointer to main clock name
4195 * @oh: struct omap_hwmod *
4197 * Returns the main clock name assocated with @oh upon success,
4198 * or NULL if @oh is NULL.
4200 const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
4202 if (!oh)
4203 return NULL;
4205 return oh->main_clk;