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.
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.
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 * | ({read,write}l_relaxed, 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
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
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
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
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
130 #include <linux/kernel.h>
131 #include <linux/errno.h>
132 #include <linux/io.h>
133 #include <linux/clk.h>
134 #include <linux/clk-provider.h>
135 #include <linux/delay.h>
136 #include <linux/err.h>
137 #include <linux/list.h>
138 #include <linux/mutex.h>
139 #include <linux/spinlock.h>
140 #include <linux/slab.h>
141 #include <linux/bootmem.h>
142 #include <linux/cpu.h>
143 #include <linux/of.h>
144 #include <linux/of_address.h>
146 #include <asm/system_misc.h>
149 #include "omap_hwmod.h"
153 #include "clockdomain.h"
154 #include "powerdomain.h"
162 #include "prminst44xx.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 * Address offset (in bytes) between the reset control and the reset
177 * status registers: 4 bytes on OMAP4
179 #define OMAP4_RST_CTRL_ST_OFFSET 4
182 * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
183 * @enable_module: function to enable a module (via MODULEMODE)
184 * @disable_module: function to disable a module (via MODULEMODE)
186 * XXX Eventually this functionality will be hidden inside the PRM/CM
187 * device drivers. Until then, this should avoid huge blocks of cpu_is_*()
188 * conditionals in this code.
190 struct omap_hwmod_soc_ops
{
191 void (*enable_module
)(struct omap_hwmod
*oh
);
192 int (*disable_module
)(struct omap_hwmod
*oh
);
193 int (*wait_target_ready
)(struct omap_hwmod
*oh
);
194 int (*assert_hardreset
)(struct omap_hwmod
*oh
,
195 struct omap_hwmod_rst_info
*ohri
);
196 int (*deassert_hardreset
)(struct omap_hwmod
*oh
,
197 struct omap_hwmod_rst_info
*ohri
);
198 int (*is_hardreset_asserted
)(struct omap_hwmod
*oh
,
199 struct omap_hwmod_rst_info
*ohri
);
200 int (*init_clkdm
)(struct omap_hwmod
*oh
);
201 void (*update_context_lost
)(struct omap_hwmod
*oh
);
202 int (*get_context_lost
)(struct omap_hwmod
*oh
);
205 /* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
206 static struct omap_hwmod_soc_ops soc_ops
;
208 /* omap_hwmod_list contains all registered struct omap_hwmods */
209 static LIST_HEAD(omap_hwmod_list
);
211 /* mpu_oh: used to add/remove MPU initiator from sleepdep list */
212 static struct omap_hwmod
*mpu_oh
;
214 /* io_chain_lock: used to serialize reconfigurations of the I/O chain */
215 static DEFINE_SPINLOCK(io_chain_lock
);
218 * linkspace: ptr to a buffer that struct omap_hwmod_link records are
219 * allocated from - used to reduce the number of small memory
220 * allocations, which has a significant impact on performance
222 static struct omap_hwmod_link
*linkspace
;
225 * free_ls, max_ls: array indexes into linkspace; representing the
226 * next free struct omap_hwmod_link index, and the maximum number of
227 * struct omap_hwmod_link records allocated (respectively)
229 static unsigned short free_ls
, max_ls
, ls_supp
;
231 /* inited: set to true once the hwmod code is initialized */
234 /* Private functions */
237 * _fetch_next_ocp_if - return the next OCP interface in a list
238 * @p: ptr to a ptr to the list_head inside the ocp_if to return
239 * @i: pointer to the index of the element pointed to by @p in the list
241 * Return a pointer to the struct omap_hwmod_ocp_if record
242 * containing the struct list_head pointed to by @p, and increment
243 * @p such that a future call to this routine will return the next
246 static struct omap_hwmod_ocp_if
*_fetch_next_ocp_if(struct list_head
**p
,
249 struct omap_hwmod_ocp_if
*oi
;
251 oi
= list_entry(*p
, struct omap_hwmod_link
, node
)->ocp_if
;
260 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
261 * @oh: struct omap_hwmod *
263 * Load the current value of the hwmod OCP_SYSCONFIG register into the
264 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
265 * OCP_SYSCONFIG register or 0 upon success.
267 static int _update_sysc_cache(struct omap_hwmod
*oh
)
269 if (!oh
->class->sysc
) {
270 WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh
->name
);
274 /* XXX ensure module interface clock is up */
276 oh
->_sysc_cache
= omap_hwmod_read(oh
, oh
->class->sysc
->sysc_offs
);
278 if (!(oh
->class->sysc
->sysc_flags
& SYSC_NO_CACHE
))
279 oh
->_int_flags
|= _HWMOD_SYSCONFIG_LOADED
;
285 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
286 * @v: OCP_SYSCONFIG value to write
287 * @oh: struct omap_hwmod *
289 * Write @v into the module class' OCP_SYSCONFIG register, if it has
290 * one. No return value.
292 static void _write_sysconfig(u32 v
, struct omap_hwmod
*oh
)
294 if (!oh
->class->sysc
) {
295 WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh
->name
);
299 /* XXX ensure module interface clock is up */
301 /* Module might have lost context, always update cache and register */
305 * Some IP blocks (such as RTC) require unlocking of IP before
306 * accessing its registers. If a function pointer is present
307 * to unlock, then call it before accessing sysconfig and
308 * call lock after writing sysconfig.
310 if (oh
->class->unlock
)
311 oh
->class->unlock(oh
);
313 omap_hwmod_write(v
, oh
, oh
->class->sysc
->sysc_offs
);
320 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
321 * @oh: struct omap_hwmod *
322 * @standbymode: MIDLEMODE field bits
323 * @v: pointer to register contents to modify
325 * Update the master standby mode bits in @v to be @standbymode for
326 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
327 * upon error or 0 upon success.
329 static int _set_master_standbymode(struct omap_hwmod
*oh
, u8 standbymode
,
335 if (!oh
->class->sysc
||
336 !(oh
->class->sysc
->sysc_flags
& SYSC_HAS_MIDLEMODE
))
339 if (!oh
->class->sysc
->sysc_fields
) {
340 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh
->name
);
344 mstandby_shift
= oh
->class->sysc
->sysc_fields
->midle_shift
;
345 mstandby_mask
= (0x3 << mstandby_shift
);
347 *v
&= ~mstandby_mask
;
348 *v
|= __ffs(standbymode
) << mstandby_shift
;
354 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
355 * @oh: struct omap_hwmod *
356 * @idlemode: SIDLEMODE field bits
357 * @v: pointer to register contents to modify
359 * Update the slave idle mode bits in @v to be @idlemode for the @oh
360 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
363 static int _set_slave_idlemode(struct omap_hwmod
*oh
, u8 idlemode
, u32
*v
)
368 if (!oh
->class->sysc
||
369 !(oh
->class->sysc
->sysc_flags
& SYSC_HAS_SIDLEMODE
))
372 if (!oh
->class->sysc
->sysc_fields
) {
373 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh
->name
);
377 sidle_shift
= oh
->class->sysc
->sysc_fields
->sidle_shift
;
378 sidle_mask
= (0x3 << sidle_shift
);
381 *v
|= __ffs(idlemode
) << sidle_shift
;
387 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
388 * @oh: struct omap_hwmod *
389 * @clockact: CLOCKACTIVITY field bits
390 * @v: pointer to register contents to modify
392 * Update the clockactivity mode bits in @v to be @clockact for the
393 * @oh hwmod. Used for additional powersaving on some modules. Does
394 * not write to the hardware. Returns -EINVAL upon error or 0 upon
397 static int _set_clockactivity(struct omap_hwmod
*oh
, u8 clockact
, u32
*v
)
402 if (!oh
->class->sysc
||
403 !(oh
->class->sysc
->sysc_flags
& SYSC_HAS_CLOCKACTIVITY
))
406 if (!oh
->class->sysc
->sysc_fields
) {
407 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh
->name
);
411 clkact_shift
= oh
->class->sysc
->sysc_fields
->clkact_shift
;
412 clkact_mask
= (0x3 << clkact_shift
);
415 *v
|= clockact
<< clkact_shift
;
421 * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v
422 * @oh: struct omap_hwmod *
423 * @v: pointer to register contents to modify
425 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
426 * error or 0 upon success.
428 static int _set_softreset(struct omap_hwmod
*oh
, u32
*v
)
432 if (!oh
->class->sysc
||
433 !(oh
->class->sysc
->sysc_flags
& SYSC_HAS_SOFTRESET
))
436 if (!oh
->class->sysc
->sysc_fields
) {
437 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh
->name
);
441 softrst_mask
= (0x1 << oh
->class->sysc
->sysc_fields
->srst_shift
);
449 * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v
450 * @oh: struct omap_hwmod *
451 * @v: pointer to register contents to modify
453 * Clear the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
454 * error or 0 upon success.
456 static int _clear_softreset(struct omap_hwmod
*oh
, u32
*v
)
460 if (!oh
->class->sysc
||
461 !(oh
->class->sysc
->sysc_flags
& SYSC_HAS_SOFTRESET
))
464 if (!oh
->class->sysc
->sysc_fields
) {
466 "omap_hwmod: %s: sysc_fields absent for sysconfig class\n",
471 softrst_mask
= (0x1 << oh
->class->sysc
->sysc_fields
->srst_shift
);
479 * _wait_softreset_complete - wait for an OCP softreset to complete
480 * @oh: struct omap_hwmod * to wait on
482 * Wait until the IP block represented by @oh reports that its OCP
483 * softreset is complete. This can be triggered by software (see
484 * _ocp_softreset()) or by hardware upon returning from off-mode (one
485 * example is HSMMC). Waits for up to MAX_MODULE_SOFTRESET_WAIT
486 * microseconds. Returns the number of microseconds waited.
488 static int _wait_softreset_complete(struct omap_hwmod
*oh
)
490 struct omap_hwmod_class_sysconfig
*sysc
;
494 sysc
= oh
->class->sysc
;
496 if (sysc
->sysc_flags
& SYSS_HAS_RESET_STATUS
)
497 omap_test_timeout((omap_hwmod_read(oh
, sysc
->syss_offs
)
498 & SYSS_RESETDONE_MASK
),
499 MAX_MODULE_SOFTRESET_WAIT
, c
);
500 else if (sysc
->sysc_flags
& SYSC_HAS_RESET_STATUS
) {
501 softrst_mask
= (0x1 << sysc
->sysc_fields
->srst_shift
);
502 omap_test_timeout(!(omap_hwmod_read(oh
, sysc
->sysc_offs
)
504 MAX_MODULE_SOFTRESET_WAIT
, c
);
511 * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
512 * @oh: struct omap_hwmod *
514 * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
515 * of some modules. When the DMA must perform read/write accesses, the
516 * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
517 * for power management, software must set the DMADISABLE bit back to 1.
519 * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon
520 * error or 0 upon success.
522 static int _set_dmadisable(struct omap_hwmod
*oh
)
527 if (!oh
->class->sysc
||
528 !(oh
->class->sysc
->sysc_flags
& SYSC_HAS_DMADISABLE
))
531 if (!oh
->class->sysc
->sysc_fields
) {
532 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh
->name
);
536 /* clocks must be on for this operation */
537 if (oh
->_state
!= _HWMOD_STATE_ENABLED
) {
538 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh
->name
);
542 pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh
->name
);
546 (0x1 << oh
->class->sysc
->sysc_fields
->dmadisable_shift
);
547 v
|= dmadisable_mask
;
548 _write_sysconfig(v
, oh
);
554 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
555 * @oh: struct omap_hwmod *
556 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
557 * @v: pointer to register contents to modify
559 * Update the module autoidle bit in @v to be @autoidle for the @oh
560 * hwmod. The autoidle bit controls whether the module can gate
561 * internal clocks automatically when it isn't doing anything; the
562 * exact function of this bit varies on a per-module basis. This
563 * function does not write to the hardware. Returns -EINVAL upon
564 * error or 0 upon success.
566 static int _set_module_autoidle(struct omap_hwmod
*oh
, u8 autoidle
,
572 if (!oh
->class->sysc
||
573 !(oh
->class->sysc
->sysc_flags
& SYSC_HAS_AUTOIDLE
))
576 if (!oh
->class->sysc
->sysc_fields
) {
577 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh
->name
);
581 autoidle_shift
= oh
->class->sysc
->sysc_fields
->autoidle_shift
;
582 autoidle_mask
= (0x1 << autoidle_shift
);
584 *v
&= ~autoidle_mask
;
585 *v
|= autoidle
<< autoidle_shift
;
591 * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux
592 * @oh: struct omap_hwmod *
593 * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable
595 * Set or clear the I/O pad wakeup flag in the mux entries for the
596 * hwmod @oh. This function changes the @oh->mux->pads_dynamic array
597 * in memory. If the hwmod is currently idled, and the new idle
598 * values don't match the previous ones, this function will also
599 * update the SCM PADCTRL registers. Otherwise, if the hwmod is not
600 * currently idled, this function won't touch the hardware: the new
601 * mux settings are written to the SCM PADCTRL registers when the
602 * hwmod is idled. No return value.
604 static void _set_idle_ioring_wakeup(struct omap_hwmod
*oh
, bool set_wake
)
606 struct omap_device_pad
*pad
;
611 if (!oh
->mux
|| !oh
->mux
->enabled
)
614 for (j
= 0; j
< oh
->mux
->nr_pads_dynamic
; j
++) {
615 pad
= oh
->mux
->pads_dynamic
[j
];
617 if (!(pad
->flags
& OMAP_DEVICE_PAD_WAKEUP
))
620 prev_idle
= pad
->idle
;
623 pad
->idle
|= OMAP_WAKEUP_EN
;
625 pad
->idle
&= ~OMAP_WAKEUP_EN
;
627 if (prev_idle
!= pad
->idle
)
631 if (change
&& oh
->_state
== _HWMOD_STATE_IDLE
)
632 omap_hwmod_mux(oh
->mux
, _HWMOD_STATE_IDLE
);
636 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
637 * @oh: struct omap_hwmod *
639 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
640 * upon error or 0 upon success.
642 static int _enable_wakeup(struct omap_hwmod
*oh
, u32
*v
)
644 if (!oh
->class->sysc
||
645 !((oh
->class->sysc
->sysc_flags
& SYSC_HAS_ENAWAKEUP
) ||
646 (oh
->class->sysc
->idlemodes
& SIDLE_SMART_WKUP
) ||
647 (oh
->class->sysc
->idlemodes
& MSTANDBY_SMART_WKUP
)))
650 if (!oh
->class->sysc
->sysc_fields
) {
651 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh
->name
);
655 if (oh
->class->sysc
->sysc_flags
& SYSC_HAS_ENAWAKEUP
)
656 *v
|= 0x1 << oh
->class->sysc
->sysc_fields
->enwkup_shift
;
658 if (oh
->class->sysc
->idlemodes
& SIDLE_SMART_WKUP
)
659 _set_slave_idlemode(oh
, HWMOD_IDLEMODE_SMART_WKUP
, v
);
660 if (oh
->class->sysc
->idlemodes
& MSTANDBY_SMART_WKUP
)
661 _set_master_standbymode(oh
, HWMOD_IDLEMODE_SMART_WKUP
, v
);
663 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
669 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
670 * @oh: struct omap_hwmod *
672 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
673 * upon error or 0 upon success.
675 static int _disable_wakeup(struct omap_hwmod
*oh
, u32
*v
)
677 if (!oh
->class->sysc
||
678 !((oh
->class->sysc
->sysc_flags
& SYSC_HAS_ENAWAKEUP
) ||
679 (oh
->class->sysc
->idlemodes
& SIDLE_SMART_WKUP
) ||
680 (oh
->class->sysc
->idlemodes
& MSTANDBY_SMART_WKUP
)))
683 if (!oh
->class->sysc
->sysc_fields
) {
684 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh
->name
);
688 if (oh
->class->sysc
->sysc_flags
& SYSC_HAS_ENAWAKEUP
)
689 *v
&= ~(0x1 << oh
->class->sysc
->sysc_fields
->enwkup_shift
);
691 if (oh
->class->sysc
->idlemodes
& SIDLE_SMART_WKUP
)
692 _set_slave_idlemode(oh
, HWMOD_IDLEMODE_SMART
, v
);
693 if (oh
->class->sysc
->idlemodes
& MSTANDBY_SMART_WKUP
)
694 _set_master_standbymode(oh
, HWMOD_IDLEMODE_SMART
, v
);
696 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
701 static struct clockdomain
*_get_clkdm(struct omap_hwmod
*oh
)
703 struct clk_hw_omap
*clk
;
707 } else if (oh
->_clk
) {
708 if (__clk_get_flags(oh
->_clk
) & CLK_IS_BASIC
)
710 clk
= to_clk_hw_omap(__clk_get_hw(oh
->_clk
));
717 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
718 * @oh: struct omap_hwmod *
720 * Prevent the hardware module @oh from entering idle while the
721 * hardare module initiator @init_oh is active. Useful when a module
722 * will be accessed by a particular initiator (e.g., if a module will
723 * be accessed by the IVA, there should be a sleepdep between the IVA
724 * initiator and the module). Only applies to modules in smart-idle
725 * mode. If the clockdomain is marked as not needing autodeps, return
726 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
727 * passes along clkdm_add_sleepdep() value upon success.
729 static int _add_initiator_dep(struct omap_hwmod
*oh
, struct omap_hwmod
*init_oh
)
731 struct clockdomain
*clkdm
, *init_clkdm
;
733 clkdm
= _get_clkdm(oh
);
734 init_clkdm
= _get_clkdm(init_oh
);
736 if (!clkdm
|| !init_clkdm
)
739 if (clkdm
&& clkdm
->flags
& CLKDM_NO_AUTODEPS
)
742 return clkdm_add_sleepdep(clkdm
, init_clkdm
);
746 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
747 * @oh: struct omap_hwmod *
749 * Allow the hardware module @oh to enter idle while the hardare
750 * module initiator @init_oh is active. Useful when a module will not
751 * be accessed by a particular initiator (e.g., if a module will not
752 * be accessed by the IVA, there should be no sleepdep between the IVA
753 * initiator and the module). Only applies to modules in smart-idle
754 * mode. If the clockdomain is marked as not needing autodeps, return
755 * 0 without doing anything. Returns -EINVAL upon error or passes
756 * along clkdm_del_sleepdep() value upon success.
758 static int _del_initiator_dep(struct omap_hwmod
*oh
, struct omap_hwmod
*init_oh
)
760 struct clockdomain
*clkdm
, *init_clkdm
;
762 clkdm
= _get_clkdm(oh
);
763 init_clkdm
= _get_clkdm(init_oh
);
765 if (!clkdm
|| !init_clkdm
)
768 if (clkdm
&& clkdm
->flags
& CLKDM_NO_AUTODEPS
)
771 return clkdm_del_sleepdep(clkdm
, init_clkdm
);
775 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
776 * @oh: struct omap_hwmod *
778 * Called from _init_clocks(). Populates the @oh _clk (main
779 * functional clock pointer) if a main_clk is present. Returns 0 on
780 * success or -EINVAL on error.
782 static int _init_main_clk(struct omap_hwmod
*oh
)
789 oh
->_clk
= clk_get(NULL
, oh
->main_clk
);
790 if (IS_ERR(oh
->_clk
)) {
791 pr_warn("omap_hwmod: %s: cannot clk_get main_clk %s\n",
792 oh
->name
, oh
->main_clk
);
796 * HACK: This needs a re-visit once clk_prepare() is implemented
797 * to do something meaningful. Today its just a no-op.
798 * If clk_prepare() is used at some point to do things like
799 * voltage scaling etc, then this would have to be moved to
800 * some point where subsystems like i2c and pmic become
803 clk_prepare(oh
->_clk
);
806 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
807 oh
->name
, oh
->main_clk
);
813 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
814 * @oh: struct omap_hwmod *
816 * Called from _init_clocks(). Populates the @oh OCP slave interface
817 * clock pointers. Returns 0 on success or -EINVAL on error.
819 static int _init_interface_clks(struct omap_hwmod
*oh
)
821 struct omap_hwmod_ocp_if
*os
;
827 p
= oh
->slave_ports
.next
;
829 while (i
< oh
->slaves_cnt
) {
830 os
= _fetch_next_ocp_if(&p
, &i
);
834 c
= clk_get(NULL
, os
->clk
);
836 pr_warn("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
843 * HACK: This needs a re-visit once clk_prepare() is implemented
844 * to do something meaningful. Today its just a no-op.
845 * If clk_prepare() is used at some point to do things like
846 * voltage scaling etc, then this would have to be moved to
847 * some point where subsystems like i2c and pmic become
850 clk_prepare(os
->_clk
);
857 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
858 * @oh: struct omap_hwmod *
860 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
861 * clock pointers. Returns 0 on success or -EINVAL on error.
863 static int _init_opt_clks(struct omap_hwmod
*oh
)
865 struct omap_hwmod_opt_clk
*oc
;
870 for (i
= oh
->opt_clks_cnt
, oc
= oh
->opt_clks
; i
> 0; i
--, oc
++) {
871 c
= clk_get(NULL
, oc
->clk
);
873 pr_warn("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
880 * HACK: This needs a re-visit once clk_prepare() is implemented
881 * to do something meaningful. Today its just a no-op.
882 * If clk_prepare() is used at some point to do things like
883 * voltage scaling etc, then this would have to be moved to
884 * some point where subsystems like i2c and pmic become
887 clk_prepare(oc
->_clk
);
894 * _enable_clocks - enable hwmod main clock and interface clocks
895 * @oh: struct omap_hwmod *
897 * Enables all clocks necessary for register reads and writes to succeed
898 * on the hwmod @oh. Returns 0.
900 static int _enable_clocks(struct omap_hwmod
*oh
)
902 struct omap_hwmod_ocp_if
*os
;
906 pr_debug("omap_hwmod: %s: enabling clocks\n", oh
->name
);
909 clk_enable(oh
->_clk
);
911 p
= oh
->slave_ports
.next
;
913 while (i
< oh
->slaves_cnt
) {
914 os
= _fetch_next_ocp_if(&p
, &i
);
916 if (os
->_clk
&& (os
->flags
& OCPIF_SWSUP_IDLE
))
917 clk_enable(os
->_clk
);
920 /* The opt clocks are controlled by the device driver. */
926 * _disable_clocks - disable hwmod main clock and interface clocks
927 * @oh: struct omap_hwmod *
929 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
931 static int _disable_clocks(struct omap_hwmod
*oh
)
933 struct omap_hwmod_ocp_if
*os
;
937 pr_debug("omap_hwmod: %s: disabling clocks\n", oh
->name
);
940 clk_disable(oh
->_clk
);
942 p
= oh
->slave_ports
.next
;
944 while (i
< oh
->slaves_cnt
) {
945 os
= _fetch_next_ocp_if(&p
, &i
);
947 if (os
->_clk
&& (os
->flags
& OCPIF_SWSUP_IDLE
))
948 clk_disable(os
->_clk
);
951 /* The opt clocks are controlled by the device driver. */
956 static void _enable_optional_clocks(struct omap_hwmod
*oh
)
958 struct omap_hwmod_opt_clk
*oc
;
961 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh
->name
);
963 for (i
= oh
->opt_clks_cnt
, oc
= oh
->opt_clks
; i
> 0; i
--, oc
++)
965 pr_debug("omap_hwmod: enable %s:%s\n", oc
->role
,
966 __clk_get_name(oc
->_clk
));
967 clk_enable(oc
->_clk
);
971 static void _disable_optional_clocks(struct omap_hwmod
*oh
)
973 struct omap_hwmod_opt_clk
*oc
;
976 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh
->name
);
978 for (i
= oh
->opt_clks_cnt
, oc
= oh
->opt_clks
; i
> 0; i
--, oc
++)
980 pr_debug("omap_hwmod: disable %s:%s\n", oc
->role
,
981 __clk_get_name(oc
->_clk
));
982 clk_disable(oc
->_clk
);
987 * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
988 * @oh: struct omap_hwmod *
990 * Enables the PRCM module mode related to the hwmod @oh.
993 static void _omap4_enable_module(struct omap_hwmod
*oh
)
995 if (!oh
->clkdm
|| !oh
->prcm
.omap4
.modulemode
)
998 pr_debug("omap_hwmod: %s: %s: %d\n",
999 oh
->name
, __func__
, oh
->prcm
.omap4
.modulemode
);
1001 omap_cm_module_enable(oh
->prcm
.omap4
.modulemode
,
1002 oh
->clkdm
->prcm_partition
,
1003 oh
->clkdm
->cm_inst
, oh
->prcm
.omap4
.clkctrl_offs
);
1007 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
1008 * @oh: struct omap_hwmod *
1010 * Wait for a module @oh to enter slave idle. Returns 0 if the module
1011 * does not have an IDLEST bit or if the module successfully enters
1012 * slave idle; otherwise, pass along the return value of the
1013 * appropriate *_cm*_wait_module_idle() function.
1015 static int _omap4_wait_target_disable(struct omap_hwmod
*oh
)
1020 if (oh
->_int_flags
& _HWMOD_NO_MPU_PORT
|| !oh
->clkdm
)
1023 if (oh
->flags
& HWMOD_NO_IDLEST
)
1026 return omap_cm_wait_module_idle(oh
->clkdm
->prcm_partition
,
1028 oh
->prcm
.omap4
.clkctrl_offs
, 0);
1032 * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
1033 * @oh: struct omap_hwmod *oh
1035 * Count and return the number of MPU IRQs associated with the hwmod
1036 * @oh. Used to allocate struct resource data. Returns 0 if @oh is
1039 static int _count_mpu_irqs(struct omap_hwmod
*oh
)
1041 struct omap_hwmod_irq_info
*ohii
;
1044 if (!oh
|| !oh
->mpu_irqs
)
1048 ohii
= &oh
->mpu_irqs
[i
++];
1049 } while (ohii
->irq
!= -1);
1055 * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
1056 * @oh: struct omap_hwmod *oh
1058 * Count and return the number of SDMA request lines associated with
1059 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1062 static int _count_sdma_reqs(struct omap_hwmod
*oh
)
1064 struct omap_hwmod_dma_info
*ohdi
;
1067 if (!oh
|| !oh
->sdma_reqs
)
1071 ohdi
= &oh
->sdma_reqs
[i
++];
1072 } while (ohdi
->dma_req
!= -1);
1078 * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
1079 * @oh: struct omap_hwmod *oh
1081 * Count and return the number of address space ranges associated with
1082 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1085 static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if
*os
)
1087 struct omap_hwmod_addr_space
*mem
;
1090 if (!os
|| !os
->addr
)
1094 mem
= &os
->addr
[i
++];
1095 } while (mem
->pa_start
!= mem
->pa_end
);
1101 * _get_mpu_irq_by_name - fetch MPU interrupt line number by name
1102 * @oh: struct omap_hwmod * to operate on
1103 * @name: pointer to the name of the MPU interrupt number to fetch (optional)
1104 * @irq: pointer to an unsigned int to store the MPU IRQ number to
1106 * Retrieve a MPU hardware IRQ line number named by @name associated
1107 * with the IP block pointed to by @oh. The IRQ number will be filled
1108 * into the address pointed to by @dma. When @name is non-null, the
1109 * IRQ line number associated with the named entry will be returned.
1110 * If @name is null, the first matching entry will be returned. Data
1111 * order is not meaningful in hwmod data, so callers are strongly
1112 * encouraged to use a non-null @name whenever possible to avoid
1113 * unpredictable effects if hwmod data is later added that causes data
1114 * ordering to change. Returns 0 upon success or a negative error
1117 static int _get_mpu_irq_by_name(struct omap_hwmod
*oh
, const char *name
,
1127 while (oh
->mpu_irqs
[i
].irq
!= -1) {
1128 if (name
== oh
->mpu_irqs
[i
].name
||
1129 !strcmp(name
, oh
->mpu_irqs
[i
].name
)) {
1139 *irq
= oh
->mpu_irqs
[i
].irq
;
1145 * _get_sdma_req_by_name - fetch SDMA request line ID by name
1146 * @oh: struct omap_hwmod * to operate on
1147 * @name: pointer to the name of the SDMA request line to fetch (optional)
1148 * @dma: pointer to an unsigned int to store the request line ID to
1150 * Retrieve an SDMA request line ID named by @name on the IP block
1151 * pointed to by @oh. The ID will be filled into the address pointed
1152 * to by @dma. When @name is non-null, the request line ID associated
1153 * with the named entry will be returned. If @name is null, the first
1154 * matching entry will be returned. Data order is not meaningful in
1155 * hwmod data, so callers are strongly encouraged to use a non-null
1156 * @name whenever possible to avoid unpredictable effects if hwmod
1157 * data is later added that causes data ordering to change. Returns 0
1158 * upon success or a negative error code upon error.
1160 static int _get_sdma_req_by_name(struct omap_hwmod
*oh
, const char *name
,
1170 while (oh
->sdma_reqs
[i
].dma_req
!= -1) {
1171 if (name
== oh
->sdma_reqs
[i
].name
||
1172 !strcmp(name
, oh
->sdma_reqs
[i
].name
)) {
1182 *dma
= oh
->sdma_reqs
[i
].dma_req
;
1188 * _get_addr_space_by_name - fetch address space start & end by name
1189 * @oh: struct omap_hwmod * to operate on
1190 * @name: pointer to the name of the address space to fetch (optional)
1191 * @pa_start: pointer to a u32 to store the starting address to
1192 * @pa_end: pointer to a u32 to store the ending address to
1194 * Retrieve address space start and end addresses for the IP block
1195 * pointed to by @oh. The data will be filled into the addresses
1196 * pointed to by @pa_start and @pa_end. When @name is non-null, the
1197 * address space data associated with the named entry will be
1198 * returned. If @name is null, the first matching entry will be
1199 * returned. Data order is not meaningful in hwmod data, so callers
1200 * are strongly encouraged to use a non-null @name whenever possible
1201 * to avoid unpredictable effects if hwmod data is later added that
1202 * causes data ordering to change. Returns 0 upon success or a
1203 * negative error code upon error.
1205 static int _get_addr_space_by_name(struct omap_hwmod
*oh
, const char *name
,
1206 u32
*pa_start
, u32
*pa_end
)
1209 struct omap_hwmod_ocp_if
*os
;
1210 struct list_head
*p
= NULL
;
1213 p
= oh
->slave_ports
.next
;
1216 while (i
< oh
->slaves_cnt
) {
1217 os
= _fetch_next_ocp_if(&p
, &i
);
1223 while (os
->addr
[j
].pa_start
!= os
->addr
[j
].pa_end
) {
1224 if (name
== os
->addr
[j
].name
||
1225 !strcmp(name
, os
->addr
[j
].name
)) {
1239 *pa_start
= os
->addr
[j
].pa_start
;
1240 *pa_end
= os
->addr
[j
].pa_end
;
1246 * _save_mpu_port_index - find and save the index to @oh's MPU port
1247 * @oh: struct omap_hwmod *
1249 * Determines the array index of the OCP slave port that the MPU uses
1250 * to address the device, and saves it into the struct omap_hwmod.
1251 * Intended to be called during hwmod registration only. No return
1254 static void __init
_save_mpu_port_index(struct omap_hwmod
*oh
)
1256 struct omap_hwmod_ocp_if
*os
= NULL
;
1257 struct list_head
*p
;
1263 oh
->_int_flags
|= _HWMOD_NO_MPU_PORT
;
1265 p
= oh
->slave_ports
.next
;
1267 while (i
< oh
->slaves_cnt
) {
1268 os
= _fetch_next_ocp_if(&p
, &i
);
1269 if (os
->user
& OCP_USER_MPU
) {
1271 oh
->_int_flags
&= ~_HWMOD_NO_MPU_PORT
;
1280 * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1281 * @oh: struct omap_hwmod *
1283 * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1284 * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1285 * communicate with the IP block. This interface need not be directly
1286 * connected to the MPU (and almost certainly is not), but is directly
1287 * connected to the IP block represented by @oh. Returns a pointer
1288 * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1289 * error or if there does not appear to be a path from the MPU to this
1292 static struct omap_hwmod_ocp_if
*_find_mpu_rt_port(struct omap_hwmod
*oh
)
1294 if (!oh
|| oh
->_int_flags
& _HWMOD_NO_MPU_PORT
|| oh
->slaves_cnt
== 0)
1297 return oh
->_mpu_port
;
1301 * _find_mpu_rt_addr_space - return MPU register target address space for @oh
1302 * @oh: struct omap_hwmod *
1304 * Returns a pointer to the struct omap_hwmod_addr_space record representing
1305 * the register target MPU address space; or returns NULL upon error.
1307 static struct omap_hwmod_addr_space
* __init
_find_mpu_rt_addr_space(struct omap_hwmod
*oh
)
1309 struct omap_hwmod_ocp_if
*os
;
1310 struct omap_hwmod_addr_space
*mem
;
1311 int found
= 0, i
= 0;
1313 os
= _find_mpu_rt_port(oh
);
1314 if (!os
|| !os
->addr
)
1318 mem
= &os
->addr
[i
++];
1319 if (mem
->flags
& ADDR_TYPE_RT
)
1321 } while (!found
&& mem
->pa_start
!= mem
->pa_end
);
1323 return (found
) ? mem
: NULL
;
1327 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
1328 * @oh: struct omap_hwmod *
1330 * Ensure that the OCP_SYSCONFIG register for the IP block represented
1331 * by @oh is set to indicate to the PRCM that the IP block is active.
1332 * Usually this means placing the module into smart-idle mode and
1333 * smart-standby, but if there is a bug in the automatic idle handling
1334 * for the IP block, it may need to be placed into the force-idle or
1335 * no-idle variants of these modes. No return value.
1337 static void _enable_sysc(struct omap_hwmod
*oh
)
1342 struct clockdomain
*clkdm
;
1344 if (!oh
->class->sysc
)
1348 * Wait until reset has completed, this is needed as the IP
1349 * block is reset automatically by hardware in some cases
1350 * (off-mode for example), and the drivers require the
1351 * IP to be ready when they access it
1353 if (oh
->flags
& HWMOD_CONTROL_OPT_CLKS_IN_RESET
)
1354 _enable_optional_clocks(oh
);
1355 _wait_softreset_complete(oh
);
1356 if (oh
->flags
& HWMOD_CONTROL_OPT_CLKS_IN_RESET
)
1357 _disable_optional_clocks(oh
);
1359 v
= oh
->_sysc_cache
;
1360 sf
= oh
->class->sysc
->sysc_flags
;
1362 clkdm
= _get_clkdm(oh
);
1363 if (sf
& SYSC_HAS_SIDLEMODE
) {
1364 if (oh
->flags
& HWMOD_SWSUP_SIDLE
||
1365 oh
->flags
& HWMOD_SWSUP_SIDLE_ACT
) {
1366 idlemode
= HWMOD_IDLEMODE_NO
;
1368 if (sf
& SYSC_HAS_ENAWAKEUP
)
1369 _enable_wakeup(oh
, &v
);
1370 if (oh
->class->sysc
->idlemodes
& SIDLE_SMART_WKUP
)
1371 idlemode
= HWMOD_IDLEMODE_SMART_WKUP
;
1373 idlemode
= HWMOD_IDLEMODE_SMART
;
1377 * This is special handling for some IPs like
1378 * 32k sync timer. Force them to idle!
1380 clkdm_act
= (clkdm
&& clkdm
->flags
& CLKDM_ACTIVE_WITH_MPU
);
1381 if (clkdm_act
&& !(oh
->class->sysc
->idlemodes
&
1382 (SIDLE_SMART
| SIDLE_SMART_WKUP
)))
1383 idlemode
= HWMOD_IDLEMODE_FORCE
;
1385 _set_slave_idlemode(oh
, idlemode
, &v
);
1388 if (sf
& SYSC_HAS_MIDLEMODE
) {
1389 if (oh
->flags
& HWMOD_FORCE_MSTANDBY
) {
1390 idlemode
= HWMOD_IDLEMODE_FORCE
;
1391 } else if (oh
->flags
& HWMOD_SWSUP_MSTANDBY
) {
1392 idlemode
= HWMOD_IDLEMODE_NO
;
1394 if (sf
& SYSC_HAS_ENAWAKEUP
)
1395 _enable_wakeup(oh
, &v
);
1396 if (oh
->class->sysc
->idlemodes
& MSTANDBY_SMART_WKUP
)
1397 idlemode
= HWMOD_IDLEMODE_SMART_WKUP
;
1399 idlemode
= HWMOD_IDLEMODE_SMART
;
1401 _set_master_standbymode(oh
, idlemode
, &v
);
1405 * XXX The clock framework should handle this, by
1406 * calling into this code. But this must wait until the
1407 * clock structures are tagged with omap_hwmod entries
1409 if ((oh
->flags
& HWMOD_SET_DEFAULT_CLOCKACT
) &&
1410 (sf
& SYSC_HAS_CLOCKACTIVITY
))
1411 _set_clockactivity(oh
, oh
->class->sysc
->clockact
, &v
);
1413 /* If the cached value is the same as the new value, skip the write */
1414 if (oh
->_sysc_cache
!= v
)
1415 _write_sysconfig(v
, oh
);
1418 * Set the autoidle bit only after setting the smartidle bit
1419 * Setting this will not have any impact on the other modules.
1421 if (sf
& SYSC_HAS_AUTOIDLE
) {
1422 idlemode
= (oh
->flags
& HWMOD_NO_OCP_AUTOIDLE
) ?
1424 _set_module_autoidle(oh
, idlemode
, &v
);
1425 _write_sysconfig(v
, oh
);
1430 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
1431 * @oh: struct omap_hwmod *
1433 * If module is marked as SWSUP_SIDLE, force the module into slave
1434 * idle; otherwise, configure it for smart-idle. If module is marked
1435 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1436 * configure it for smart-standby. No return value.
1438 static void _idle_sysc(struct omap_hwmod
*oh
)
1443 if (!oh
->class->sysc
)
1446 v
= oh
->_sysc_cache
;
1447 sf
= oh
->class->sysc
->sysc_flags
;
1449 if (sf
& SYSC_HAS_SIDLEMODE
) {
1450 if (oh
->flags
& HWMOD_SWSUP_SIDLE
) {
1451 idlemode
= HWMOD_IDLEMODE_FORCE
;
1453 if (sf
& SYSC_HAS_ENAWAKEUP
)
1454 _enable_wakeup(oh
, &v
);
1455 if (oh
->class->sysc
->idlemodes
& SIDLE_SMART_WKUP
)
1456 idlemode
= HWMOD_IDLEMODE_SMART_WKUP
;
1458 idlemode
= HWMOD_IDLEMODE_SMART
;
1460 _set_slave_idlemode(oh
, idlemode
, &v
);
1463 if (sf
& SYSC_HAS_MIDLEMODE
) {
1464 if ((oh
->flags
& HWMOD_SWSUP_MSTANDBY
) ||
1465 (oh
->flags
& HWMOD_FORCE_MSTANDBY
)) {
1466 idlemode
= HWMOD_IDLEMODE_FORCE
;
1468 if (sf
& SYSC_HAS_ENAWAKEUP
)
1469 _enable_wakeup(oh
, &v
);
1470 if (oh
->class->sysc
->idlemodes
& MSTANDBY_SMART_WKUP
)
1471 idlemode
= HWMOD_IDLEMODE_SMART_WKUP
;
1473 idlemode
= HWMOD_IDLEMODE_SMART
;
1475 _set_master_standbymode(oh
, idlemode
, &v
);
1478 _write_sysconfig(v
, oh
);
1482 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
1483 * @oh: struct omap_hwmod *
1485 * Force the module into slave idle and master suspend. No return
1488 static void _shutdown_sysc(struct omap_hwmod
*oh
)
1493 if (!oh
->class->sysc
)
1496 v
= oh
->_sysc_cache
;
1497 sf
= oh
->class->sysc
->sysc_flags
;
1499 if (sf
& SYSC_HAS_SIDLEMODE
)
1500 _set_slave_idlemode(oh
, HWMOD_IDLEMODE_FORCE
, &v
);
1502 if (sf
& SYSC_HAS_MIDLEMODE
)
1503 _set_master_standbymode(oh
, HWMOD_IDLEMODE_FORCE
, &v
);
1505 if (sf
& SYSC_HAS_AUTOIDLE
)
1506 _set_module_autoidle(oh
, 1, &v
);
1508 _write_sysconfig(v
, oh
);
1512 * _lookup - find an omap_hwmod by name
1513 * @name: find an omap_hwmod by name
1515 * Return a pointer to an omap_hwmod by name, or NULL if not found.
1517 static struct omap_hwmod
*_lookup(const char *name
)
1519 struct omap_hwmod
*oh
, *temp_oh
;
1523 list_for_each_entry(temp_oh
, &omap_hwmod_list
, node
) {
1524 if (!strcmp(name
, temp_oh
->name
)) {
1534 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1535 * @oh: struct omap_hwmod *
1537 * Convert a clockdomain name stored in a struct omap_hwmod into a
1538 * clockdomain pointer, and save it into the struct omap_hwmod.
1539 * Return -EINVAL if the clkdm_name lookup failed.
1541 static int _init_clkdm(struct omap_hwmod
*oh
)
1543 if (!oh
->clkdm_name
) {
1544 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh
->name
);
1548 oh
->clkdm
= clkdm_lookup(oh
->clkdm_name
);
1550 pr_warn("omap_hwmod: %s: could not associate to clkdm %s\n",
1551 oh
->name
, oh
->clkdm_name
);
1555 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1556 oh
->name
, oh
->clkdm_name
);
1562 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1563 * well the clockdomain.
1564 * @oh: struct omap_hwmod *
1565 * @data: not used; pass NULL
1567 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
1568 * Resolves all clock names embedded in the hwmod. Returns 0 on
1569 * success, or a negative error code on failure.
1571 static int _init_clocks(struct omap_hwmod
*oh
, void *data
)
1575 if (oh
->_state
!= _HWMOD_STATE_REGISTERED
)
1578 pr_debug("omap_hwmod: %s: looking up clocks\n", oh
->name
);
1580 if (soc_ops
.init_clkdm
)
1581 ret
|= soc_ops
.init_clkdm(oh
);
1583 ret
|= _init_main_clk(oh
);
1584 ret
|= _init_interface_clks(oh
);
1585 ret
|= _init_opt_clks(oh
);
1588 oh
->_state
= _HWMOD_STATE_CLKS_INITED
;
1590 pr_warn("omap_hwmod: %s: cannot _init_clocks\n", oh
->name
);
1596 * _lookup_hardreset - fill register bit info for this hwmod/reset line
1597 * @oh: struct omap_hwmod *
1598 * @name: name of the reset line in the context of this hwmod
1599 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
1601 * Return the bit position of the reset line that match the
1602 * input name. Return -ENOENT if not found.
1604 static int _lookup_hardreset(struct omap_hwmod
*oh
, const char *name
,
1605 struct omap_hwmod_rst_info
*ohri
)
1609 for (i
= 0; i
< oh
->rst_lines_cnt
; i
++) {
1610 const char *rst_line
= oh
->rst_lines
[i
].name
;
1611 if (!strcmp(rst_line
, name
)) {
1612 ohri
->rst_shift
= oh
->rst_lines
[i
].rst_shift
;
1613 ohri
->st_shift
= oh
->rst_lines
[i
].st_shift
;
1614 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1615 oh
->name
, __func__
, rst_line
, ohri
->rst_shift
,
1626 * _assert_hardreset - assert the HW reset line of submodules
1627 * contained in the hwmod module.
1628 * @oh: struct omap_hwmod *
1629 * @name: name of the reset line to lookup and assert
1631 * Some IP like dsp, ipu or iva contain processor that require an HW
1632 * reset line to be assert / deassert in order to enable fully the IP.
1633 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1634 * asserting the hardreset line on the currently-booted SoC, or passes
1635 * along the return value from _lookup_hardreset() or the SoC's
1636 * assert_hardreset code.
1638 static int _assert_hardreset(struct omap_hwmod
*oh
, const char *name
)
1640 struct omap_hwmod_rst_info ohri
;
1646 if (!soc_ops
.assert_hardreset
)
1649 ret
= _lookup_hardreset(oh
, name
, &ohri
);
1653 ret
= soc_ops
.assert_hardreset(oh
, &ohri
);
1659 * _deassert_hardreset - deassert the HW reset line of submodules contained
1660 * in the hwmod module.
1661 * @oh: struct omap_hwmod *
1662 * @name: name of the reset line to look up and deassert
1664 * Some IP like dsp, ipu or iva contain processor that require an HW
1665 * reset line to be assert / deassert in order to enable fully the IP.
1666 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1667 * deasserting the hardreset line on the currently-booted SoC, or passes
1668 * along the return value from _lookup_hardreset() or the SoC's
1669 * deassert_hardreset code.
1671 static int _deassert_hardreset(struct omap_hwmod
*oh
, const char *name
)
1673 struct omap_hwmod_rst_info ohri
;
1680 if (!soc_ops
.deassert_hardreset
)
1683 ret
= _lookup_hardreset(oh
, name
, &ohri
);
1689 * A clockdomain must be in SW_SUP otherwise reset
1690 * might not be completed. The clockdomain can be set
1691 * in HW_AUTO only when the module become ready.
1693 hwsup
= clkdm_in_hwsup(oh
->clkdm
);
1694 ret
= clkdm_hwmod_enable(oh
->clkdm
, oh
);
1696 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1697 oh
->name
, oh
->clkdm
->name
, ret
);
1703 if (soc_ops
.enable_module
)
1704 soc_ops
.enable_module(oh
);
1706 ret
= soc_ops
.deassert_hardreset(oh
, &ohri
);
1708 if (soc_ops
.disable_module
)
1709 soc_ops
.disable_module(oh
);
1710 _disable_clocks(oh
);
1713 pr_warn("omap_hwmod: %s: failed to hardreset\n", oh
->name
);
1717 * Set the clockdomain to HW_AUTO, assuming that the
1718 * previous state was HW_AUTO.
1721 clkdm_allow_idle(oh
->clkdm
);
1723 clkdm_hwmod_disable(oh
->clkdm
, oh
);
1730 * _read_hardreset - read the HW reset line state of submodules
1731 * contained in the hwmod module
1732 * @oh: struct omap_hwmod *
1733 * @name: name of the reset line to look up and read
1735 * Return the state of the reset line. Returns -EINVAL if @oh is
1736 * null, -ENOSYS if we have no way of reading the hardreset line
1737 * status on the currently-booted SoC, or passes along the return
1738 * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1741 static int _read_hardreset(struct omap_hwmod
*oh
, const char *name
)
1743 struct omap_hwmod_rst_info ohri
;
1749 if (!soc_ops
.is_hardreset_asserted
)
1752 ret
= _lookup_hardreset(oh
, name
, &ohri
);
1756 return soc_ops
.is_hardreset_asserted(oh
, &ohri
);
1760 * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
1761 * @oh: struct omap_hwmod *
1763 * If all hardreset lines associated with @oh are asserted, then return true.
1764 * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1765 * associated with @oh are asserted, then return false.
1766 * This function is used to avoid executing some parts of the IP block
1767 * enable/disable sequence if its hardreset line is set.
1769 static bool _are_all_hardreset_lines_asserted(struct omap_hwmod
*oh
)
1773 if (oh
->rst_lines_cnt
== 0)
1776 for (i
= 0; i
< oh
->rst_lines_cnt
; i
++)
1777 if (_read_hardreset(oh
, oh
->rst_lines
[i
].name
) > 0)
1780 if (oh
->rst_lines_cnt
== rst_cnt
)
1787 * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1789 * @oh: struct omap_hwmod *
1791 * If any hardreset lines associated with @oh are asserted, then
1792 * return true. Otherwise, if no hardreset lines associated with @oh
1793 * are asserted, or if @oh has no hardreset lines, then return false.
1794 * This function is used to avoid executing some parts of the IP block
1795 * enable/disable sequence if any hardreset line is set.
1797 static bool _are_any_hardreset_lines_asserted(struct omap_hwmod
*oh
)
1802 for (i
= 0; i
< oh
->rst_lines_cnt
&& rst_cnt
== 0; i
++)
1803 if (_read_hardreset(oh
, oh
->rst_lines
[i
].name
) > 0)
1806 return (rst_cnt
) ? true : false;
1810 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1811 * @oh: struct omap_hwmod *
1813 * Disable the PRCM module mode related to the hwmod @oh.
1814 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1816 static int _omap4_disable_module(struct omap_hwmod
*oh
)
1820 if (!oh
->clkdm
|| !oh
->prcm
.omap4
.modulemode
)
1824 * Since integration code might still be doing something, only
1825 * disable if all lines are under hardreset.
1827 if (_are_any_hardreset_lines_asserted(oh
))
1830 pr_debug("omap_hwmod: %s: %s\n", oh
->name
, __func__
);
1832 omap_cm_module_disable(oh
->clkdm
->prcm_partition
, oh
->clkdm
->cm_inst
,
1833 oh
->prcm
.omap4
.clkctrl_offs
);
1835 v
= _omap4_wait_target_disable(oh
);
1837 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1844 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
1845 * @oh: struct omap_hwmod *
1847 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
1848 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1849 * reset this way, -EINVAL if the hwmod is in the wrong state,
1850 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
1852 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
1853 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
1854 * use the SYSCONFIG softreset bit to provide the status.
1856 * Note that some IP like McBSP do have reset control but don't have
1859 static int _ocp_softreset(struct omap_hwmod
*oh
)
1865 if (!oh
->class->sysc
||
1866 !(oh
->class->sysc
->sysc_flags
& SYSC_HAS_SOFTRESET
))
1869 /* clocks must be on for this operation */
1870 if (oh
->_state
!= _HWMOD_STATE_ENABLED
) {
1871 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1876 /* For some modules, all optionnal clocks need to be enabled as well */
1877 if (oh
->flags
& HWMOD_CONTROL_OPT_CLKS_IN_RESET
)
1878 _enable_optional_clocks(oh
);
1880 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh
->name
);
1882 v
= oh
->_sysc_cache
;
1883 ret
= _set_softreset(oh
, &v
);
1887 _write_sysconfig(v
, oh
);
1889 if (oh
->class->sysc
->srst_udelay
)
1890 udelay(oh
->class->sysc
->srst_udelay
);
1892 c
= _wait_softreset_complete(oh
);
1893 if (c
== MAX_MODULE_SOFTRESET_WAIT
) {
1894 pr_warn("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1895 oh
->name
, MAX_MODULE_SOFTRESET_WAIT
);
1899 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh
->name
, c
);
1902 ret
= _clear_softreset(oh
, &v
);
1906 _write_sysconfig(v
, oh
);
1909 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1910 * _wait_target_ready() or _reset()
1914 if (oh
->flags
& HWMOD_CONTROL_OPT_CLKS_IN_RESET
)
1915 _disable_optional_clocks(oh
);
1921 * _reset - reset an omap_hwmod
1922 * @oh: struct omap_hwmod *
1924 * Resets an omap_hwmod @oh. If the module has a custom reset
1925 * function pointer defined, then call it to reset the IP block, and
1926 * pass along its return value to the caller. Otherwise, if the IP
1927 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1928 * associated with it, call a function to reset the IP block via that
1929 * method, and pass along the return value to the caller. Finally, if
1930 * the IP block has some hardreset lines associated with it, assert
1931 * all of those, but do _not_ deassert them. (This is because driver
1932 * authors have expressed an apparent requirement to control the
1933 * deassertion of the hardreset lines themselves.)
1935 * The default software reset mechanism for most OMAP IP blocks is
1936 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1937 * hwmods cannot be reset via this method. Some are not targets and
1938 * therefore have no OCP header registers to access. Others (like the
1939 * IVA) have idiosyncratic reset sequences. So for these relatively
1940 * rare cases, custom reset code can be supplied in the struct
1941 * omap_hwmod_class .reset function pointer.
1943 * _set_dmadisable() is called to set the DMADISABLE bit so that it
1944 * does not prevent idling of the system. This is necessary for cases
1945 * where ROMCODE/BOOTLOADER uses dma and transfers control to the
1946 * kernel without disabling dma.
1948 * Passes along the return value from either _ocp_softreset() or the
1949 * custom reset function - these must return -EINVAL if the hwmod
1950 * cannot be reset this way or if the hwmod is in the wrong state,
1951 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
1953 static int _reset(struct omap_hwmod
*oh
)
1957 pr_debug("omap_hwmod: %s: resetting\n", oh
->name
);
1959 if (oh
->class->reset
) {
1960 r
= oh
->class->reset(oh
);
1962 if (oh
->rst_lines_cnt
> 0) {
1963 for (i
= 0; i
< oh
->rst_lines_cnt
; i
++)
1964 _assert_hardreset(oh
, oh
->rst_lines
[i
].name
);
1967 r
= _ocp_softreset(oh
);
1973 _set_dmadisable(oh
);
1976 * OCP_SYSCONFIG bits need to be reprogrammed after a
1977 * softreset. The _enable() function should be split to avoid
1978 * the rewrite of the OCP_SYSCONFIG register.
1980 if (oh
->class->sysc
) {
1981 _update_sysc_cache(oh
);
1989 * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain
1991 * Call the appropriate PRM function to clear any logged I/O chain
1992 * wakeups and to reconfigure the chain. This apparently needs to be
1993 * done upon every mux change. Since hwmods can be concurrently
1994 * enabled and idled, hold a spinlock around the I/O chain
1995 * reconfiguration sequence. No return value.
1997 * XXX When the PRM code is moved to drivers, this function can be removed,
1998 * as the PRM infrastructure should abstract this.
2000 static void _reconfigure_io_chain(void)
2002 unsigned long flags
;
2004 spin_lock_irqsave(&io_chain_lock
, flags
);
2006 omap_prm_reconfigure_io_chain();
2008 spin_unlock_irqrestore(&io_chain_lock
, flags
);
2012 * _omap4_update_context_lost - increment hwmod context loss counter if
2013 * hwmod context was lost, and clear hardware context loss reg
2014 * @oh: hwmod to check for context loss
2016 * If the PRCM indicates that the hwmod @oh lost context, increment
2017 * our in-memory context loss counter, and clear the RM_*_CONTEXT
2018 * bits. No return value.
2020 static void _omap4_update_context_lost(struct omap_hwmod
*oh
)
2022 if (oh
->prcm
.omap4
.flags
& HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT
)
2025 if (!prm_was_any_context_lost_old(oh
->clkdm
->pwrdm
.ptr
->prcm_partition
,
2026 oh
->clkdm
->pwrdm
.ptr
->prcm_offs
,
2027 oh
->prcm
.omap4
.context_offs
))
2030 oh
->prcm
.omap4
.context_lost_counter
++;
2031 prm_clear_context_loss_flags_old(oh
->clkdm
->pwrdm
.ptr
->prcm_partition
,
2032 oh
->clkdm
->pwrdm
.ptr
->prcm_offs
,
2033 oh
->prcm
.omap4
.context_offs
);
2037 * _omap4_get_context_lost - get context loss counter for a hwmod
2038 * @oh: hwmod to get context loss counter for
2040 * Returns the in-memory context loss counter for a hwmod.
2042 static int _omap4_get_context_lost(struct omap_hwmod
*oh
)
2044 return oh
->prcm
.omap4
.context_lost_counter
;
2048 * _enable_preprogram - Pre-program an IP block during the _enable() process
2049 * @oh: struct omap_hwmod *
2051 * Some IP blocks (such as AESS) require some additional programming
2052 * after enable before they can enter idle. If a function pointer to
2053 * do so is present in the hwmod data, then call it and pass along the
2054 * return value; otherwise, return 0.
2056 static int _enable_preprogram(struct omap_hwmod
*oh
)
2058 if (!oh
->class->enable_preprogram
)
2061 return oh
->class->enable_preprogram(oh
);
2065 * _enable - enable an omap_hwmod
2066 * @oh: struct omap_hwmod *
2068 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
2069 * register target. Returns -EINVAL if the hwmod is in the wrong
2070 * state or passes along the return value of _wait_target_ready().
2072 static int _enable(struct omap_hwmod
*oh
)
2077 pr_debug("omap_hwmod: %s: enabling\n", oh
->name
);
2080 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
2081 * state at init. Now that someone is really trying to enable
2082 * them, just ensure that the hwmod mux is set.
2084 if (oh
->_int_flags
& _HWMOD_SKIP_ENABLE
) {
2086 * If the caller has mux data populated, do the mux'ing
2087 * which wouldn't have been done as part of the _enable()
2088 * done during setup.
2091 omap_hwmod_mux(oh
->mux
, _HWMOD_STATE_ENABLED
);
2093 oh
->_int_flags
&= ~_HWMOD_SKIP_ENABLE
;
2097 if (oh
->_state
!= _HWMOD_STATE_INITIALIZED
&&
2098 oh
->_state
!= _HWMOD_STATE_IDLE
&&
2099 oh
->_state
!= _HWMOD_STATE_DISABLED
) {
2100 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
2106 * If an IP block contains HW reset lines and all of them are
2107 * asserted, we let integration code associated with that
2108 * block handle the enable. We've received very little
2109 * information on what those driver authors need, and until
2110 * detailed information is provided and the driver code is
2111 * posted to the public lists, this is probably the best we
2114 if (_are_all_hardreset_lines_asserted(oh
))
2117 /* Mux pins for device runtime if populated */
2118 if (oh
->mux
&& (!oh
->mux
->enabled
||
2119 ((oh
->_state
== _HWMOD_STATE_IDLE
) &&
2120 oh
->mux
->pads_dynamic
))) {
2121 omap_hwmod_mux(oh
->mux
, _HWMOD_STATE_ENABLED
);
2122 _reconfigure_io_chain();
2123 } else if (oh
->flags
& HWMOD_RECONFIG_IO_CHAIN
) {
2124 _reconfigure_io_chain();
2127 _add_initiator_dep(oh
, mpu_oh
);
2131 * A clockdomain must be in SW_SUP before enabling
2132 * completely the module. The clockdomain can be set
2133 * in HW_AUTO only when the module become ready.
2135 hwsup
= clkdm_in_hwsup(oh
->clkdm
) &&
2136 !clkdm_missing_idle_reporting(oh
->clkdm
);
2137 r
= clkdm_hwmod_enable(oh
->clkdm
, oh
);
2139 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
2140 oh
->name
, oh
->clkdm
->name
, r
);
2146 if (soc_ops
.enable_module
)
2147 soc_ops
.enable_module(oh
);
2148 if (oh
->flags
& HWMOD_BLOCK_WFI
)
2149 cpu_idle_poll_ctrl(true);
2151 if (soc_ops
.update_context_lost
)
2152 soc_ops
.update_context_lost(oh
);
2154 r
= (soc_ops
.wait_target_ready
) ? soc_ops
.wait_target_ready(oh
) :
2158 * Set the clockdomain to HW_AUTO only if the target is ready,
2159 * assuming that the previous state was HW_AUTO
2161 if (oh
->clkdm
&& hwsup
)
2162 clkdm_allow_idle(oh
->clkdm
);
2164 oh
->_state
= _HWMOD_STATE_ENABLED
;
2166 /* Access the sysconfig only if the target is ready */
2167 if (oh
->class->sysc
) {
2168 if (!(oh
->_int_flags
& _HWMOD_SYSCONFIG_LOADED
))
2169 _update_sysc_cache(oh
);
2172 r
= _enable_preprogram(oh
);
2174 if (soc_ops
.disable_module
)
2175 soc_ops
.disable_module(oh
);
2176 _disable_clocks(oh
);
2177 pr_err("omap_hwmod: %s: _wait_target_ready failed: %d\n",
2181 clkdm_hwmod_disable(oh
->clkdm
, oh
);
2188 * _idle - idle an omap_hwmod
2189 * @oh: struct omap_hwmod *
2191 * Idles an omap_hwmod @oh. This should be called once the hwmod has
2192 * no further work. Returns -EINVAL if the hwmod is in the wrong
2193 * state or returns 0.
2195 static int _idle(struct omap_hwmod
*oh
)
2197 pr_debug("omap_hwmod: %s: idling\n", oh
->name
);
2199 if (oh
->_state
!= _HWMOD_STATE_ENABLED
) {
2200 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2205 if (_are_all_hardreset_lines_asserted(oh
))
2208 if (oh
->class->sysc
)
2210 _del_initiator_dep(oh
, mpu_oh
);
2212 if (oh
->flags
& HWMOD_BLOCK_WFI
)
2213 cpu_idle_poll_ctrl(false);
2214 if (soc_ops
.disable_module
)
2215 soc_ops
.disable_module(oh
);
2218 * The module must be in idle mode before disabling any parents
2219 * clocks. Otherwise, the parent clock might be disabled before
2220 * the module transition is done, and thus will prevent the
2221 * transition to complete properly.
2223 _disable_clocks(oh
);
2225 clkdm_hwmod_disable(oh
->clkdm
, oh
);
2227 /* Mux pins for device idle if populated */
2228 if (oh
->mux
&& oh
->mux
->pads_dynamic
) {
2229 omap_hwmod_mux(oh
->mux
, _HWMOD_STATE_IDLE
);
2230 _reconfigure_io_chain();
2231 } else if (oh
->flags
& HWMOD_RECONFIG_IO_CHAIN
) {
2232 _reconfigure_io_chain();
2235 oh
->_state
= _HWMOD_STATE_IDLE
;
2241 * _shutdown - shutdown an omap_hwmod
2242 * @oh: struct omap_hwmod *
2244 * Shut down an omap_hwmod @oh. This should be called when the driver
2245 * used for the hwmod is removed or unloaded or if the driver is not
2246 * used by the system. Returns -EINVAL if the hwmod is in the wrong
2247 * state or returns 0.
2249 static int _shutdown(struct omap_hwmod
*oh
)
2254 if (oh
->_state
!= _HWMOD_STATE_IDLE
&&
2255 oh
->_state
!= _HWMOD_STATE_ENABLED
) {
2256 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2261 if (_are_all_hardreset_lines_asserted(oh
))
2264 pr_debug("omap_hwmod: %s: disabling\n", oh
->name
);
2266 if (oh
->class->pre_shutdown
) {
2267 prev_state
= oh
->_state
;
2268 if (oh
->_state
== _HWMOD_STATE_IDLE
)
2270 ret
= oh
->class->pre_shutdown(oh
);
2272 if (prev_state
== _HWMOD_STATE_IDLE
)
2278 if (oh
->class->sysc
) {
2279 if (oh
->_state
== _HWMOD_STATE_IDLE
)
2284 /* clocks and deps are already disabled in idle */
2285 if (oh
->_state
== _HWMOD_STATE_ENABLED
) {
2286 _del_initiator_dep(oh
, mpu_oh
);
2287 /* XXX what about the other system initiators here? dma, dsp */
2288 if (oh
->flags
& HWMOD_BLOCK_WFI
)
2289 cpu_idle_poll_ctrl(false);
2290 if (soc_ops
.disable_module
)
2291 soc_ops
.disable_module(oh
);
2292 _disable_clocks(oh
);
2294 clkdm_hwmod_disable(oh
->clkdm
, oh
);
2296 /* XXX Should this code also force-disable the optional clocks? */
2298 for (i
= 0; i
< oh
->rst_lines_cnt
; i
++)
2299 _assert_hardreset(oh
, oh
->rst_lines
[i
].name
);
2301 /* Mux pins to safe mode or use populated off mode values */
2303 omap_hwmod_mux(oh
->mux
, _HWMOD_STATE_DISABLED
);
2305 oh
->_state
= _HWMOD_STATE_DISABLED
;
2310 static int of_dev_find_hwmod(struct device_node
*np
,
2311 struct omap_hwmod
*oh
)
2316 count
= of_property_count_strings(np
, "ti,hwmods");
2320 for (i
= 0; i
< count
; i
++) {
2321 res
= of_property_read_string_index(np
, "ti,hwmods",
2325 if (!strcmp(p
, oh
->name
)) {
2326 pr_debug("omap_hwmod: dt %s[%i] uses hwmod %s\n",
2327 np
->name
, i
, oh
->name
);
2336 * of_dev_hwmod_lookup - look up needed hwmod from dt blob
2337 * @np: struct device_node *
2338 * @oh: struct omap_hwmod *
2339 * @index: index of the entry found
2340 * @found: struct device_node * found or NULL
2342 * Parse the dt blob and find out needed hwmod. Recursive function is
2343 * implemented to take care hierarchical dt blob parsing.
2344 * Return: Returns 0 on success, -ENODEV when not found.
2346 static int of_dev_hwmod_lookup(struct device_node
*np
,
2347 struct omap_hwmod
*oh
,
2349 struct device_node
**found
)
2351 struct device_node
*np0
= NULL
;
2354 res
= of_dev_find_hwmod(np
, oh
);
2361 for_each_child_of_node(np
, np0
) {
2362 struct device_node
*fc
;
2365 res
= of_dev_hwmod_lookup(np0
, oh
, &i
, &fc
);
2380 * _init_mpu_rt_base - populate the virtual address for a hwmod
2381 * @oh: struct omap_hwmod * to locate the virtual address
2382 * @data: (unused, caller should pass NULL)
2383 * @index: index of the reg entry iospace in device tree
2384 * @np: struct device_node * of the IP block's device node in the DT data
2386 * Cache the virtual address used by the MPU to access this IP block's
2387 * registers. This address is needed early so the OCP registers that
2388 * are part of the device's address space can be ioremapped properly.
2390 * If SYSC access is not needed, the registers will not be remapped
2391 * and non-availability of MPU access is not treated as an error.
2393 * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and
2394 * -ENXIO on absent or invalid register target address space.
2396 static int __init
_init_mpu_rt_base(struct omap_hwmod
*oh
, void *data
,
2397 int index
, struct device_node
*np
)
2399 struct omap_hwmod_addr_space
*mem
;
2400 void __iomem
*va_start
= NULL
;
2405 _save_mpu_port_index(oh
);
2407 /* if we don't need sysc access we don't need to ioremap */
2408 if (!oh
->class->sysc
)
2411 /* we can't continue without MPU PORT if we need sysc access */
2412 if (oh
->_int_flags
& _HWMOD_NO_MPU_PORT
)
2415 mem
= _find_mpu_rt_addr_space(oh
);
2417 pr_debug("omap_hwmod: %s: no MPU register target found\n",
2420 /* Extract the IO space from device tree blob */
2422 pr_err("omap_hwmod: %s: no dt node\n", oh
->name
);
2426 va_start
= of_iomap(np
, index
+ oh
->mpu_rt_idx
);
2428 va_start
= ioremap(mem
->pa_start
, mem
->pa_end
- mem
->pa_start
);
2433 pr_err("omap_hwmod: %s: Could not ioremap\n", oh
->name
);
2435 pr_err("omap_hwmod: %s: Missing dt reg%i for %s\n",
2436 oh
->name
, index
, np
->full_name
);
2440 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2441 oh
->name
, va_start
);
2443 oh
->_mpu_rt_va
= va_start
;
2448 * _init - initialize internal data for the hwmod @oh
2449 * @oh: struct omap_hwmod *
2452 * Look up the clocks and the address space used by the MPU to access
2453 * registers belonging to the hwmod @oh. @oh must already be
2454 * registered at this point. This is the first of two phases for
2455 * hwmod initialization. Code called here does not touch any hardware
2456 * registers, it simply prepares internal data structures. Returns 0
2457 * upon success or if the hwmod isn't registered or if the hwmod's
2458 * address space is not defined, or -EINVAL upon failure.
2460 static int __init
_init(struct omap_hwmod
*oh
, void *data
)
2463 struct device_node
*np
= NULL
;
2465 if (oh
->_state
!= _HWMOD_STATE_REGISTERED
)
2468 if (of_have_populated_dt()) {
2469 struct device_node
*bus
;
2471 bus
= of_find_node_by_name(NULL
, "ocp");
2475 r
= of_dev_hwmod_lookup(bus
, oh
, &index
, &np
);
2477 pr_debug("omap_hwmod: %s missing dt data\n", oh
->name
);
2478 else if (np
&& index
)
2479 pr_warn("omap_hwmod: %s using broken dt data from %s\n",
2480 oh
->name
, np
->name
);
2483 r
= _init_mpu_rt_base(oh
, NULL
, index
, np
);
2485 WARN(1, "omap_hwmod: %s: doesn't have mpu register target base\n",
2490 r
= _init_clocks(oh
, NULL
);
2492 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh
->name
);
2497 if (of_find_property(np
, "ti,no-reset-on-init", NULL
))
2498 oh
->flags
|= HWMOD_INIT_NO_RESET
;
2499 if (of_find_property(np
, "ti,no-idle-on-init", NULL
))
2500 oh
->flags
|= HWMOD_INIT_NO_IDLE
;
2503 oh
->_state
= _HWMOD_STATE_INITIALIZED
;
2509 * _setup_iclk_autoidle - configure an IP block's interface clocks
2510 * @oh: struct omap_hwmod *
2512 * Set up the module's interface clocks. XXX This function is still mostly
2513 * a stub; implementing this properly requires iclk autoidle usecounting in
2514 * the clock code. No return value.
2516 static void __init
_setup_iclk_autoidle(struct omap_hwmod
*oh
)
2518 struct omap_hwmod_ocp_if
*os
;
2519 struct list_head
*p
;
2521 if (oh
->_state
!= _HWMOD_STATE_INITIALIZED
)
2524 p
= oh
->slave_ports
.next
;
2526 while (i
< oh
->slaves_cnt
) {
2527 os
= _fetch_next_ocp_if(&p
, &i
);
2531 if (os
->flags
& OCPIF_SWSUP_IDLE
) {
2532 /* XXX omap_iclk_deny_idle(c); */
2534 /* XXX omap_iclk_allow_idle(c); */
2535 clk_enable(os
->_clk
);
2543 * _setup_reset - reset an IP block during the setup process
2544 * @oh: struct omap_hwmod *
2546 * Reset the IP block corresponding to the hwmod @oh during the setup
2547 * process. The IP block is first enabled so it can be successfully
2548 * reset. Returns 0 upon success or a negative error code upon
2551 static int __init
_setup_reset(struct omap_hwmod
*oh
)
2555 if (oh
->_state
!= _HWMOD_STATE_INITIALIZED
)
2558 if (oh
->flags
& HWMOD_EXT_OPT_MAIN_CLK
)
2561 if (oh
->rst_lines_cnt
== 0) {
2564 pr_warn("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2565 oh
->name
, oh
->_state
);
2570 if (!(oh
->flags
& HWMOD_INIT_NO_RESET
))
2577 * _setup_postsetup - transition to the appropriate state after _setup
2578 * @oh: struct omap_hwmod *
2580 * Place an IP block represented by @oh into a "post-setup" state --
2581 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
2582 * this function is called at the end of _setup().) The postsetup
2583 * state for an IP block can be changed by calling
2584 * omap_hwmod_enter_postsetup_state() early in the boot process,
2585 * before one of the omap_hwmod_setup*() functions are called for the
2588 * The IP block stays in this state until a PM runtime-based driver is
2589 * loaded for that IP block. A post-setup state of IDLE is
2590 * appropriate for almost all IP blocks with runtime PM-enabled
2591 * drivers, since those drivers are able to enable the IP block. A
2592 * post-setup state of ENABLED is appropriate for kernels with PM
2593 * runtime disabled. The DISABLED state is appropriate for unusual IP
2594 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2595 * included, since the WDTIMER starts running on reset and will reset
2596 * the MPU if left active.
2598 * This post-setup mechanism is deprecated. Once all of the OMAP
2599 * drivers have been converted to use PM runtime, and all of the IP
2600 * block data and interconnect data is available to the hwmod code, it
2601 * should be possible to replace this mechanism with a "lazy reset"
2602 * arrangement. In a "lazy reset" setup, each IP block is enabled
2603 * when the driver first probes, then all remaining IP blocks without
2604 * drivers are either shut down or enabled after the drivers have
2605 * loaded. However, this cannot take place until the above
2606 * preconditions have been met, since otherwise the late reset code
2607 * has no way of knowing which IP blocks are in use by drivers, and
2608 * which ones are unused.
2612 static void __init
_setup_postsetup(struct omap_hwmod
*oh
)
2616 if (oh
->rst_lines_cnt
> 0)
2619 postsetup_state
= oh
->_postsetup_state
;
2620 if (postsetup_state
== _HWMOD_STATE_UNKNOWN
)
2621 postsetup_state
= _HWMOD_STATE_ENABLED
;
2624 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2625 * it should be set by the core code as a runtime flag during startup
2627 if ((oh
->flags
& HWMOD_INIT_NO_IDLE
) &&
2628 (postsetup_state
== _HWMOD_STATE_IDLE
)) {
2629 oh
->_int_flags
|= _HWMOD_SKIP_ENABLE
;
2630 postsetup_state
= _HWMOD_STATE_ENABLED
;
2633 if (postsetup_state
== _HWMOD_STATE_IDLE
)
2635 else if (postsetup_state
== _HWMOD_STATE_DISABLED
)
2637 else if (postsetup_state
!= _HWMOD_STATE_ENABLED
)
2638 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2639 oh
->name
, postsetup_state
);
2645 * _setup - prepare IP block hardware for use
2646 * @oh: struct omap_hwmod *
2647 * @n: (unused, pass NULL)
2649 * Configure the IP block represented by @oh. This may include
2650 * enabling the IP block, resetting it, and placing it into a
2651 * post-setup state, depending on the type of IP block and applicable
2652 * flags. IP blocks are reset to prevent any previous configuration
2653 * by the bootloader or previous operating system from interfering
2654 * with power management or other parts of the system. The reset can
2655 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2656 * two phases for hwmod initialization. Code called here generally
2657 * affects the IP block hardware, or system integration hardware
2658 * associated with the IP block. Returns 0.
2660 static int __init
_setup(struct omap_hwmod
*oh
, void *data
)
2662 if (oh
->_state
!= _HWMOD_STATE_INITIALIZED
)
2665 if (oh
->parent_hwmod
) {
2668 r
= _enable(oh
->parent_hwmod
);
2669 WARN(r
, "hwmod: %s: setup: failed to enable parent hwmod %s\n",
2670 oh
->name
, oh
->parent_hwmod
->name
);
2673 _setup_iclk_autoidle(oh
);
2675 if (!_setup_reset(oh
))
2676 _setup_postsetup(oh
);
2678 if (oh
->parent_hwmod
) {
2681 postsetup_state
= oh
->parent_hwmod
->_postsetup_state
;
2683 if (postsetup_state
== _HWMOD_STATE_IDLE
)
2684 _idle(oh
->parent_hwmod
);
2685 else if (postsetup_state
== _HWMOD_STATE_DISABLED
)
2686 _shutdown(oh
->parent_hwmod
);
2687 else if (postsetup_state
!= _HWMOD_STATE_ENABLED
)
2688 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2689 oh
->parent_hwmod
->name
, postsetup_state
);
2696 * _register - register a struct omap_hwmod
2697 * @oh: struct omap_hwmod *
2699 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2700 * already has been registered by the same name; -EINVAL if the
2701 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2702 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2703 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2706 * XXX The data should be copied into bootmem, so the original data
2707 * should be marked __initdata and freed after init. This would allow
2708 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2709 * that the copy process would be relatively complex due to the large number
2712 static int __init
_register(struct omap_hwmod
*oh
)
2714 if (!oh
|| !oh
->name
|| !oh
->class || !oh
->class->name
||
2715 (oh
->_state
!= _HWMOD_STATE_UNKNOWN
))
2718 pr_debug("omap_hwmod: %s: registering\n", oh
->name
);
2720 if (_lookup(oh
->name
))
2723 list_add_tail(&oh
->node
, &omap_hwmod_list
);
2725 INIT_LIST_HEAD(&oh
->master_ports
);
2726 INIT_LIST_HEAD(&oh
->slave_ports
);
2727 spin_lock_init(&oh
->_lock
);
2728 lockdep_set_class(&oh
->_lock
, &oh
->hwmod_key
);
2730 oh
->_state
= _HWMOD_STATE_REGISTERED
;
2733 * XXX Rather than doing a strcmp(), this should test a flag
2734 * set in the hwmod data, inserted by the autogenerator code.
2736 if (!strcmp(oh
->name
, MPU_INITIATOR_NAME
))
2743 * _alloc_links - return allocated memory for hwmod links
2744 * @ml: pointer to a struct omap_hwmod_link * for the master link
2745 * @sl: pointer to a struct omap_hwmod_link * for the slave link
2747 * Return pointers to two struct omap_hwmod_link records, via the
2748 * addresses pointed to by @ml and @sl. Will first attempt to return
2749 * memory allocated as part of a large initial block, but if that has
2750 * been exhausted, will allocate memory itself. Since ideally this
2751 * second allocation path will never occur, the number of these
2752 * 'supplemental' allocations will be logged when debugging is
2753 * enabled. Returns 0.
2755 static int __init
_alloc_links(struct omap_hwmod_link
**ml
,
2756 struct omap_hwmod_link
**sl
)
2760 if ((free_ls
+ LINKS_PER_OCP_IF
) <= max_ls
) {
2761 *ml
= &linkspace
[free_ls
++];
2762 *sl
= &linkspace
[free_ls
++];
2766 sz
= sizeof(struct omap_hwmod_link
) * LINKS_PER_OCP_IF
;
2769 *ml
= memblock_virt_alloc(sz
, 0);
2771 *sl
= (void *)(*ml
) + sizeof(struct omap_hwmod_link
);
2774 pr_debug("omap_hwmod: supplemental link allocations needed: %d\n",
2775 ls_supp
* LINKS_PER_OCP_IF
);
2781 * _add_link - add an interconnect between two IP blocks
2782 * @oi: pointer to a struct omap_hwmod_ocp_if record
2784 * Add struct omap_hwmod_link records connecting the master IP block
2785 * specified in @oi->master to @oi, and connecting the slave IP block
2786 * specified in @oi->slave to @oi. This code is assumed to run before
2787 * preemption or SMP has been enabled, thus avoiding the need for
2788 * locking in this code. Changes to this assumption will require
2789 * additional locking. Returns 0.
2791 static int __init
_add_link(struct omap_hwmod_ocp_if
*oi
)
2793 struct omap_hwmod_link
*ml
, *sl
;
2795 pr_debug("omap_hwmod: %s -> %s: adding link\n", oi
->master
->name
,
2798 _alloc_links(&ml
, &sl
);
2801 list_add(&ml
->node
, &oi
->master
->master_ports
);
2802 oi
->master
->masters_cnt
++;
2805 list_add(&sl
->node
, &oi
->slave
->slave_ports
);
2806 oi
->slave
->slaves_cnt
++;
2812 * _register_link - register a struct omap_hwmod_ocp_if
2813 * @oi: struct omap_hwmod_ocp_if *
2815 * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
2816 * has already been registered; -EINVAL if @oi is NULL or if the
2817 * record pointed to by @oi is missing required fields; or 0 upon
2820 * XXX The data should be copied into bootmem, so the original data
2821 * should be marked __initdata and freed after init. This would allow
2822 * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2824 static int __init
_register_link(struct omap_hwmod_ocp_if
*oi
)
2826 if (!oi
|| !oi
->master
|| !oi
->slave
|| !oi
->user
)
2829 if (oi
->_int_flags
& _OCPIF_INT_FLAGS_REGISTERED
)
2832 pr_debug("omap_hwmod: registering link from %s to %s\n",
2833 oi
->master
->name
, oi
->slave
->name
);
2836 * Register the connected hwmods, if they haven't been
2837 * registered already
2839 if (oi
->master
->_state
!= _HWMOD_STATE_REGISTERED
)
2840 _register(oi
->master
);
2842 if (oi
->slave
->_state
!= _HWMOD_STATE_REGISTERED
)
2843 _register(oi
->slave
);
2847 oi
->_int_flags
|= _OCPIF_INT_FLAGS_REGISTERED
;
2853 * _alloc_linkspace - allocate large block of hwmod links
2854 * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count
2856 * Allocate a large block of struct omap_hwmod_link records. This
2857 * improves boot time significantly by avoiding the need to allocate
2858 * individual records one by one. If the number of records to
2859 * allocate in the block hasn't been manually specified, this function
2860 * will count the number of struct omap_hwmod_ocp_if records in @ois
2861 * and use that to determine the allocation size. For SoC families
2862 * that require multiple list registrations, such as OMAP3xxx, this
2863 * estimation process isn't optimal, so manual estimation is advised
2864 * in those cases. Returns -EEXIST if the allocation has already occurred
2865 * or 0 upon success.
2867 static int __init
_alloc_linkspace(struct omap_hwmod_ocp_if
**ois
)
2873 WARN(1, "linkspace already allocated\n");
2879 max_ls
+= LINKS_PER_OCP_IF
;
2881 sz
= sizeof(struct omap_hwmod_link
) * max_ls
;
2883 pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n",
2884 __func__
, sz
, max_ls
);
2886 linkspace
= memblock_virt_alloc(sz
, 0);
2891 /* Static functions intended only for use in soc_ops field function pointers */
2894 * _omap2xxx_3xxx_wait_target_ready - wait for a module to leave slave idle
2895 * @oh: struct omap_hwmod *
2897 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2898 * does not have an IDLEST bit or if the module successfully leaves
2899 * slave idle; otherwise, pass along the return value of the
2900 * appropriate *_cm*_wait_module_ready() function.
2902 static int _omap2xxx_3xxx_wait_target_ready(struct omap_hwmod
*oh
)
2907 if (oh
->flags
& HWMOD_NO_IDLEST
)
2910 if (!_find_mpu_rt_port(oh
))
2913 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2915 return omap_cm_wait_module_ready(0, oh
->prcm
.omap2
.module_offs
,
2916 oh
->prcm
.omap2
.idlest_reg_id
,
2917 oh
->prcm
.omap2
.idlest_idle_bit
);
2921 * _omap4_wait_target_ready - wait for a module to leave slave idle
2922 * @oh: struct omap_hwmod *
2924 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2925 * does not have an IDLEST bit or if the module successfully leaves
2926 * slave idle; otherwise, pass along the return value of the
2927 * appropriate *_cm*_wait_module_ready() function.
2929 static int _omap4_wait_target_ready(struct omap_hwmod
*oh
)
2934 if (oh
->flags
& HWMOD_NO_IDLEST
|| !oh
->clkdm
)
2937 if (!_find_mpu_rt_port(oh
))
2940 /* XXX check module SIDLEMODE, hardreset status */
2942 return omap_cm_wait_module_ready(oh
->clkdm
->prcm_partition
,
2944 oh
->prcm
.omap4
.clkctrl_offs
, 0);
2948 * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2949 * @oh: struct omap_hwmod * to assert hardreset
2950 * @ohri: hardreset line data
2952 * Call omap2_prm_assert_hardreset() with parameters extracted from
2953 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2954 * use as an soc_ops function pointer. Passes along the return value
2955 * from omap2_prm_assert_hardreset(). XXX This function is scheduled
2956 * for removal when the PRM code is moved into drivers/.
2958 static int _omap2_assert_hardreset(struct omap_hwmod
*oh
,
2959 struct omap_hwmod_rst_info
*ohri
)
2961 return omap_prm_assert_hardreset(ohri
->rst_shift
, 0,
2962 oh
->prcm
.omap2
.module_offs
, 0);
2966 * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2967 * @oh: struct omap_hwmod * to deassert hardreset
2968 * @ohri: hardreset line data
2970 * Call omap2_prm_deassert_hardreset() with parameters extracted from
2971 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2972 * use as an soc_ops function pointer. Passes along the return value
2973 * from omap2_prm_deassert_hardreset(). XXX This function is
2974 * scheduled for removal when the PRM code is moved into drivers/.
2976 static int _omap2_deassert_hardreset(struct omap_hwmod
*oh
,
2977 struct omap_hwmod_rst_info
*ohri
)
2979 return omap_prm_deassert_hardreset(ohri
->rst_shift
, ohri
->st_shift
, 0,
2980 oh
->prcm
.omap2
.module_offs
, 0, 0);
2984 * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
2985 * @oh: struct omap_hwmod * to test hardreset
2986 * @ohri: hardreset line data
2988 * Call omap2_prm_is_hardreset_asserted() with parameters extracted
2989 * from the hwmod @oh and the hardreset line data @ohri. Only
2990 * intended for use as an soc_ops function pointer. Passes along the
2991 * return value from omap2_prm_is_hardreset_asserted(). XXX This
2992 * function is scheduled for removal when the PRM code is moved into
2995 static int _omap2_is_hardreset_asserted(struct omap_hwmod
*oh
,
2996 struct omap_hwmod_rst_info
*ohri
)
2998 return omap_prm_is_hardreset_asserted(ohri
->st_shift
, 0,
2999 oh
->prcm
.omap2
.module_offs
, 0);
3003 * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
3004 * @oh: struct omap_hwmod * to assert hardreset
3005 * @ohri: hardreset line data
3007 * Call omap4_prminst_assert_hardreset() with parameters extracted
3008 * from the hwmod @oh and the hardreset line data @ohri. Only
3009 * intended for use as an soc_ops function pointer. Passes along the
3010 * return value from omap4_prminst_assert_hardreset(). XXX This
3011 * function is scheduled for removal when the PRM code is moved into
3014 static int _omap4_assert_hardreset(struct omap_hwmod
*oh
,
3015 struct omap_hwmod_rst_info
*ohri
)
3020 return omap_prm_assert_hardreset(ohri
->rst_shift
,
3021 oh
->clkdm
->pwrdm
.ptr
->prcm_partition
,
3022 oh
->clkdm
->pwrdm
.ptr
->prcm_offs
,
3023 oh
->prcm
.omap4
.rstctrl_offs
);
3027 * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
3028 * @oh: struct omap_hwmod * to deassert hardreset
3029 * @ohri: hardreset line data
3031 * Call omap4_prminst_deassert_hardreset() with parameters extracted
3032 * from the hwmod @oh and the hardreset line data @ohri. Only
3033 * intended for use as an soc_ops function pointer. Passes along the
3034 * return value from omap4_prminst_deassert_hardreset(). XXX This
3035 * function is scheduled for removal when the PRM code is moved into
3038 static int _omap4_deassert_hardreset(struct omap_hwmod
*oh
,
3039 struct omap_hwmod_rst_info
*ohri
)
3045 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
3046 oh
->name
, ohri
->name
);
3047 return omap_prm_deassert_hardreset(ohri
->rst_shift
, ohri
->rst_shift
,
3048 oh
->clkdm
->pwrdm
.ptr
->prcm_partition
,
3049 oh
->clkdm
->pwrdm
.ptr
->prcm_offs
,
3050 oh
->prcm
.omap4
.rstctrl_offs
,
3051 oh
->prcm
.omap4
.rstctrl_offs
+
3052 OMAP4_RST_CTRL_ST_OFFSET
);
3056 * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
3057 * @oh: struct omap_hwmod * to test hardreset
3058 * @ohri: hardreset line data
3060 * Call omap4_prminst_is_hardreset_asserted() with parameters
3061 * extracted from the hwmod @oh and the hardreset line data @ohri.
3062 * Only intended for use as an soc_ops function pointer. Passes along
3063 * the return value from omap4_prminst_is_hardreset_asserted(). XXX
3064 * This function is scheduled for removal when the PRM code is moved
3067 static int _omap4_is_hardreset_asserted(struct omap_hwmod
*oh
,
3068 struct omap_hwmod_rst_info
*ohri
)
3073 return omap_prm_is_hardreset_asserted(ohri
->rst_shift
,
3074 oh
->clkdm
->pwrdm
.ptr
->
3076 oh
->clkdm
->pwrdm
.ptr
->prcm_offs
,
3077 oh
->prcm
.omap4
.rstctrl_offs
);
3081 * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3082 * @oh: struct omap_hwmod * to deassert hardreset
3083 * @ohri: hardreset line data
3085 * Call am33xx_prminst_deassert_hardreset() with parameters extracted
3086 * from the hwmod @oh and the hardreset line data @ohri. Only
3087 * intended for use as an soc_ops function pointer. Passes along the
3088 * return value from am33xx_prminst_deassert_hardreset(). XXX This
3089 * function is scheduled for removal when the PRM code is moved into
3092 static int _am33xx_deassert_hardreset(struct omap_hwmod
*oh
,
3093 struct omap_hwmod_rst_info
*ohri
)
3095 return omap_prm_deassert_hardreset(ohri
->rst_shift
, ohri
->st_shift
,
3096 oh
->clkdm
->pwrdm
.ptr
->prcm_partition
,
3097 oh
->clkdm
->pwrdm
.ptr
->prcm_offs
,
3098 oh
->prcm
.omap4
.rstctrl_offs
,
3099 oh
->prcm
.omap4
.rstst_offs
);
3102 /* Public functions */
3104 u32
omap_hwmod_read(struct omap_hwmod
*oh
, u16 reg_offs
)
3106 if (oh
->flags
& HWMOD_16BIT_REG
)
3107 return readw_relaxed(oh
->_mpu_rt_va
+ reg_offs
);
3109 return readl_relaxed(oh
->_mpu_rt_va
+ reg_offs
);
3112 void omap_hwmod_write(u32 v
, struct omap_hwmod
*oh
, u16 reg_offs
)
3114 if (oh
->flags
& HWMOD_16BIT_REG
)
3115 writew_relaxed(v
, oh
->_mpu_rt_va
+ reg_offs
);
3117 writel_relaxed(v
, oh
->_mpu_rt_va
+ reg_offs
);
3121 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
3122 * @oh: struct omap_hwmod *
3124 * This is a public function exposed to drivers. Some drivers may need to do
3125 * some settings before and after resetting the device. Those drivers after
3126 * doing the necessary settings could use this function to start a reset by
3127 * setting the SYSCONFIG.SOFTRESET bit.
3129 int omap_hwmod_softreset(struct omap_hwmod
*oh
)
3134 if (!oh
|| !(oh
->_sysc_cache
))
3137 v
= oh
->_sysc_cache
;
3138 ret
= _set_softreset(oh
, &v
);
3141 _write_sysconfig(v
, oh
);
3143 ret
= _clear_softreset(oh
, &v
);
3146 _write_sysconfig(v
, oh
);
3153 * omap_hwmod_lookup - look up a registered omap_hwmod by name
3154 * @name: name of the omap_hwmod to look up
3156 * Given a @name of an omap_hwmod, return a pointer to the registered
3157 * struct omap_hwmod *, or NULL upon error.
3159 struct omap_hwmod
*omap_hwmod_lookup(const char *name
)
3161 struct omap_hwmod
*oh
;
3172 * omap_hwmod_for_each - call function for each registered omap_hwmod
3173 * @fn: pointer to a callback function
3174 * @data: void * data to pass to callback function
3176 * Call @fn for each registered omap_hwmod, passing @data to each
3177 * function. @fn must return 0 for success or any other value for
3178 * failure. If @fn returns non-zero, the iteration across omap_hwmods
3179 * will stop and the non-zero return value will be passed to the
3180 * caller of omap_hwmod_for_each(). @fn is called with
3181 * omap_hwmod_for_each() held.
3183 int omap_hwmod_for_each(int (*fn
)(struct omap_hwmod
*oh
, void *data
),
3186 struct omap_hwmod
*temp_oh
;
3192 list_for_each_entry(temp_oh
, &omap_hwmod_list
, node
) {
3193 ret
= (*fn
)(temp_oh
, data
);
3202 * omap_hwmod_register_links - register an array of hwmod links
3203 * @ois: pointer to an array of omap_hwmod_ocp_if to register
3205 * Intended to be called early in boot before the clock framework is
3206 * initialized. If @ois is not null, will register all omap_hwmods
3207 * listed in @ois that are valid for this chip. Returns -EINVAL if
3208 * omap_hwmod_init() hasn't been called before calling this function,
3209 * -ENOMEM if the link memory area can't be allocated, or 0 upon
3212 int __init
omap_hwmod_register_links(struct omap_hwmod_ocp_if
**ois
)
3222 if (ois
[0] == NULL
) /* Empty list */
3226 if (_alloc_linkspace(ois
)) {
3227 pr_err("omap_hwmod: could not allocate link space\n");
3234 r
= _register_link(ois
[i
]);
3235 WARN(r
&& r
!= -EEXIST
,
3236 "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3237 ois
[i
]->master
->name
, ois
[i
]->slave
->name
, r
);
3244 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3245 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
3247 * If the hwmod data corresponding to the MPU subsystem IP block
3248 * hasn't been initialized and set up yet, do so now. This must be
3249 * done first since sleep dependencies may be added from other hwmods
3250 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
3253 static void __init
_ensure_mpu_hwmod_is_setup(struct omap_hwmod
*oh
)
3255 if (!mpu_oh
|| mpu_oh
->_state
== _HWMOD_STATE_UNKNOWN
)
3256 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3257 __func__
, MPU_INITIATOR_NAME
);
3258 else if (mpu_oh
->_state
== _HWMOD_STATE_REGISTERED
&& oh
!= mpu_oh
)
3259 omap_hwmod_setup_one(MPU_INITIATOR_NAME
);
3263 * omap_hwmod_setup_one - set up a single hwmod
3264 * @oh_name: const char * name of the already-registered hwmod to set up
3266 * Initialize and set up a single hwmod. Intended to be used for a
3267 * small number of early devices, such as the timer IP blocks used for
3268 * the scheduler clock. Must be called after omap2_clk_init().
3269 * Resolves the struct clk names to struct clk pointers for each
3270 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
3271 * -EINVAL upon error or 0 upon success.
3273 int __init
omap_hwmod_setup_one(const char *oh_name
)
3275 struct omap_hwmod
*oh
;
3277 pr_debug("omap_hwmod: %s: %s\n", oh_name
, __func__
);
3279 oh
= _lookup(oh_name
);
3281 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name
);
3285 _ensure_mpu_hwmod_is_setup(oh
);
3294 * omap_hwmod_setup_all - set up all registered IP blocks
3296 * Initialize and set up all IP blocks registered with the hwmod code.
3297 * Must be called after omap2_clk_init(). Resolves the struct clk
3298 * names to struct clk pointers for each registered omap_hwmod. Also
3299 * calls _setup() on each hwmod. Returns 0 upon success.
3301 static int __init
omap_hwmod_setup_all(void)
3303 _ensure_mpu_hwmod_is_setup(NULL
);
3305 omap_hwmod_for_each(_init
, NULL
);
3306 omap_hwmod_for_each(_setup
, NULL
);
3310 omap_core_initcall(omap_hwmod_setup_all
);
3313 * omap_hwmod_enable - enable an omap_hwmod
3314 * @oh: struct omap_hwmod *
3316 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
3317 * Returns -EINVAL on error or passes along the return value from _enable().
3319 int omap_hwmod_enable(struct omap_hwmod
*oh
)
3322 unsigned long flags
;
3327 spin_lock_irqsave(&oh
->_lock
, flags
);
3329 spin_unlock_irqrestore(&oh
->_lock
, flags
);
3335 * omap_hwmod_idle - idle an omap_hwmod
3336 * @oh: struct omap_hwmod *
3338 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
3339 * Returns -EINVAL on error or passes along the return value from _idle().
3341 int omap_hwmod_idle(struct omap_hwmod
*oh
)
3344 unsigned long flags
;
3349 spin_lock_irqsave(&oh
->_lock
, flags
);
3351 spin_unlock_irqrestore(&oh
->_lock
, flags
);
3357 * omap_hwmod_shutdown - shutdown an omap_hwmod
3358 * @oh: struct omap_hwmod *
3360 * Shutdown an omap_hwmod @oh. Intended to be called by
3361 * omap_device_shutdown(). Returns -EINVAL on error or passes along
3362 * the return value from _shutdown().
3364 int omap_hwmod_shutdown(struct omap_hwmod
*oh
)
3367 unsigned long flags
;
3372 spin_lock_irqsave(&oh
->_lock
, flags
);
3374 spin_unlock_irqrestore(&oh
->_lock
, flags
);
3380 * IP block data retrieval functions
3384 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
3385 * @oh: struct omap_hwmod *
3386 * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
3388 * Count the number of struct resource array elements necessary to
3389 * contain omap_hwmod @oh resources. Intended to be called by code
3390 * that registers omap_devices. Intended to be used to determine the
3391 * size of a dynamically-allocated struct resource array, before
3392 * calling omap_hwmod_fill_resources(). Returns the number of struct
3393 * resource array elements needed.
3395 * XXX This code is not optimized. It could attempt to merge adjacent
3399 int omap_hwmod_count_resources(struct omap_hwmod
*oh
, unsigned long flags
)
3403 if (flags
& IORESOURCE_IRQ
)
3404 ret
+= _count_mpu_irqs(oh
);
3406 if (flags
& IORESOURCE_DMA
)
3407 ret
+= _count_sdma_reqs(oh
);
3409 if (flags
& IORESOURCE_MEM
) {
3411 struct omap_hwmod_ocp_if
*os
;
3412 struct list_head
*p
= oh
->slave_ports
.next
;
3414 while (i
< oh
->slaves_cnt
) {
3415 os
= _fetch_next_ocp_if(&p
, &i
);
3416 ret
+= _count_ocp_if_addr_spaces(os
);
3424 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
3425 * @oh: struct omap_hwmod *
3426 * @res: pointer to the first element of an array of struct resource to fill
3428 * Fill the struct resource array @res with resource data from the
3429 * omap_hwmod @oh. Intended to be called by code that registers
3430 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3431 * number of array elements filled.
3433 int omap_hwmod_fill_resources(struct omap_hwmod
*oh
, struct resource
*res
)
3435 struct omap_hwmod_ocp_if
*os
;
3436 struct list_head
*p
;
3437 int i
, j
, mpu_irqs_cnt
, sdma_reqs_cnt
, addr_cnt
;
3440 /* For each IRQ, DMA, memory area, fill in array.*/
3442 mpu_irqs_cnt
= _count_mpu_irqs(oh
);
3443 for (i
= 0; i
< mpu_irqs_cnt
; i
++) {
3447 irq
= oh
->xlate_irq((oh
->mpu_irqs
+ i
)->irq
);
3449 irq
= (oh
->mpu_irqs
+ i
)->irq
;
3450 (res
+ r
)->name
= (oh
->mpu_irqs
+ i
)->name
;
3451 (res
+ r
)->start
= irq
;
3452 (res
+ r
)->end
= irq
;
3453 (res
+ r
)->flags
= IORESOURCE_IRQ
;
3457 sdma_reqs_cnt
= _count_sdma_reqs(oh
);
3458 for (i
= 0; i
< sdma_reqs_cnt
; i
++) {
3459 (res
+ r
)->name
= (oh
->sdma_reqs
+ i
)->name
;
3460 (res
+ r
)->start
= (oh
->sdma_reqs
+ i
)->dma_req
;
3461 (res
+ r
)->end
= (oh
->sdma_reqs
+ i
)->dma_req
;
3462 (res
+ r
)->flags
= IORESOURCE_DMA
;
3466 p
= oh
->slave_ports
.next
;
3469 while (i
< oh
->slaves_cnt
) {
3470 os
= _fetch_next_ocp_if(&p
, &i
);
3471 addr_cnt
= _count_ocp_if_addr_spaces(os
);
3473 for (j
= 0; j
< addr_cnt
; j
++) {
3474 (res
+ r
)->name
= (os
->addr
+ j
)->name
;
3475 (res
+ r
)->start
= (os
->addr
+ j
)->pa_start
;
3476 (res
+ r
)->end
= (os
->addr
+ j
)->pa_end
;
3477 (res
+ r
)->flags
= IORESOURCE_MEM
;
3486 * omap_hwmod_fill_dma_resources - fill struct resource array with dma data
3487 * @oh: struct omap_hwmod *
3488 * @res: pointer to the array of struct resource to fill
3490 * Fill the struct resource array @res with dma resource data from the
3491 * omap_hwmod @oh. Intended to be called by code that registers
3492 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3493 * number of array elements filled.
3495 int omap_hwmod_fill_dma_resources(struct omap_hwmod
*oh
, struct resource
*res
)
3497 int i
, sdma_reqs_cnt
;
3500 sdma_reqs_cnt
= _count_sdma_reqs(oh
);
3501 for (i
= 0; i
< sdma_reqs_cnt
; i
++) {
3502 (res
+ r
)->name
= (oh
->sdma_reqs
+ i
)->name
;
3503 (res
+ r
)->start
= (oh
->sdma_reqs
+ i
)->dma_req
;
3504 (res
+ r
)->end
= (oh
->sdma_reqs
+ i
)->dma_req
;
3505 (res
+ r
)->flags
= IORESOURCE_DMA
;
3513 * omap_hwmod_get_resource_byname - fetch IP block integration data by name
3514 * @oh: struct omap_hwmod * to operate on
3515 * @type: one of the IORESOURCE_* constants from include/linux/ioport.h
3516 * @name: pointer to the name of the data to fetch (optional)
3517 * @rsrc: pointer to a struct resource, allocated by the caller
3519 * Retrieve MPU IRQ, SDMA request line, or address space start/end
3520 * data for the IP block pointed to by @oh. The data will be filled
3521 * into a struct resource record pointed to by @rsrc. The struct
3522 * resource must be allocated by the caller. When @name is non-null,
3523 * the data associated with the matching entry in the IRQ/SDMA/address
3524 * space hwmod data arrays will be returned. If @name is null, the
3525 * first array entry will be returned. Data order is not meaningful
3526 * in hwmod data, so callers are strongly encouraged to use a non-null
3527 * @name whenever possible to avoid unpredictable effects if hwmod
3528 * data is later added that causes data ordering to change. This
3529 * function is only intended for use by OMAP core code. Device
3530 * drivers should not call this function - the appropriate bus-related
3531 * data accessor functions should be used instead. Returns 0 upon
3532 * success or a negative error code upon error.
3534 int omap_hwmod_get_resource_byname(struct omap_hwmod
*oh
, unsigned int type
,
3535 const char *name
, struct resource
*rsrc
)
3538 unsigned int irq
, dma
;
3539 u32 pa_start
, pa_end
;
3544 if (type
== IORESOURCE_IRQ
) {
3545 r
= _get_mpu_irq_by_name(oh
, name
, &irq
);
3551 } else if (type
== IORESOURCE_DMA
) {
3552 r
= _get_sdma_req_by_name(oh
, name
, &dma
);
3558 } else if (type
== IORESOURCE_MEM
) {
3559 r
= _get_addr_space_by_name(oh
, name
, &pa_start
, &pa_end
);
3563 rsrc
->start
= pa_start
;
3576 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3577 * @oh: struct omap_hwmod *
3579 * Return the powerdomain pointer associated with the OMAP module
3580 * @oh's main clock. If @oh does not have a main clk, return the
3581 * powerdomain associated with the interface clock associated with the
3582 * module's MPU port. (XXX Perhaps this should use the SDMA port
3583 * instead?) Returns NULL on error, or a struct powerdomain * on
3586 struct powerdomain
*omap_hwmod_get_pwrdm(struct omap_hwmod
*oh
)
3589 struct omap_hwmod_ocp_if
*oi
;
3590 struct clockdomain
*clkdm
;
3591 struct clk_hw_omap
*clk
;
3597 return oh
->clkdm
->pwrdm
.ptr
;
3602 oi
= _find_mpu_rt_port(oh
);
3608 clk
= to_clk_hw_omap(__clk_get_hw(c
));
3613 return clkdm
->pwrdm
.ptr
;
3617 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3618 * @oh: struct omap_hwmod *
3620 * Returns the virtual address corresponding to the beginning of the
3621 * module's register target, in the address range that is intended to
3622 * be used by the MPU. Returns the virtual address upon success or NULL
3625 void __iomem
*omap_hwmod_get_mpu_rt_va(struct omap_hwmod
*oh
)
3630 if (oh
->_int_flags
& _HWMOD_NO_MPU_PORT
)
3633 if (oh
->_state
== _HWMOD_STATE_UNKNOWN
)
3636 return oh
->_mpu_rt_va
;
3640 * XXX what about functions for drivers to save/restore ocp_sysconfig
3641 * for context save/restore operations?
3645 * omap_hwmod_enable_wakeup - allow device to wake up the system
3646 * @oh: struct omap_hwmod *
3648 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
3649 * send wakeups to the PRCM, and enable I/O ring wakeup events for
3650 * this IP block if it has dynamic mux entries. Eventually this
3651 * should set PRCM wakeup registers to cause the PRCM to receive
3652 * wakeup events from the module. Does not set any wakeup routing
3653 * registers beyond this point - if the module is to wake up any other
3654 * module or subsystem, that must be set separately. Called by
3655 * omap_device code. Returns -EINVAL on error or 0 upon success.
3657 int omap_hwmod_enable_wakeup(struct omap_hwmod
*oh
)
3659 unsigned long flags
;
3662 spin_lock_irqsave(&oh
->_lock
, flags
);
3664 if (oh
->class->sysc
&&
3665 (oh
->class->sysc
->sysc_flags
& SYSC_HAS_ENAWAKEUP
)) {
3666 v
= oh
->_sysc_cache
;
3667 _enable_wakeup(oh
, &v
);
3668 _write_sysconfig(v
, oh
);
3671 _set_idle_ioring_wakeup(oh
, true);
3672 spin_unlock_irqrestore(&oh
->_lock
, flags
);
3678 * omap_hwmod_disable_wakeup - prevent device from waking the system
3679 * @oh: struct omap_hwmod *
3681 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
3682 * from sending wakeups to the PRCM, and disable I/O ring wakeup
3683 * events for this IP block if it has dynamic mux entries. Eventually
3684 * this should clear PRCM wakeup registers to cause the PRCM to ignore
3685 * wakeup events from the module. Does not set any wakeup routing
3686 * registers beyond this point - if the module is to wake up any other
3687 * module or subsystem, that must be set separately. Called by
3688 * omap_device code. Returns -EINVAL on error or 0 upon success.
3690 int omap_hwmod_disable_wakeup(struct omap_hwmod
*oh
)
3692 unsigned long flags
;
3695 spin_lock_irqsave(&oh
->_lock
, flags
);
3697 if (oh
->class->sysc
&&
3698 (oh
->class->sysc
->sysc_flags
& SYSC_HAS_ENAWAKEUP
)) {
3699 v
= oh
->_sysc_cache
;
3700 _disable_wakeup(oh
, &v
);
3701 _write_sysconfig(v
, oh
);
3704 _set_idle_ioring_wakeup(oh
, false);
3705 spin_unlock_irqrestore(&oh
->_lock
, flags
);
3711 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3712 * contained in the hwmod module.
3713 * @oh: struct omap_hwmod *
3714 * @name: name of the reset line to lookup and assert
3716 * Some IP like dsp, ipu or iva contain processor that require
3717 * an HW reset line to be assert / deassert in order to enable fully
3718 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3719 * yet supported on this OMAP; otherwise, passes along the return value
3720 * from _assert_hardreset().
3722 int omap_hwmod_assert_hardreset(struct omap_hwmod
*oh
, const char *name
)
3725 unsigned long flags
;
3730 spin_lock_irqsave(&oh
->_lock
, flags
);
3731 ret
= _assert_hardreset(oh
, name
);
3732 spin_unlock_irqrestore(&oh
->_lock
, flags
);
3738 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3739 * contained in the hwmod module.
3740 * @oh: struct omap_hwmod *
3741 * @name: name of the reset line to look up and deassert
3743 * Some IP like dsp, ipu or iva contain processor that require
3744 * an HW reset line to be assert / deassert in order to enable fully
3745 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3746 * yet supported on this OMAP; otherwise, passes along the return value
3747 * from _deassert_hardreset().
3749 int omap_hwmod_deassert_hardreset(struct omap_hwmod
*oh
, const char *name
)
3752 unsigned long flags
;
3757 spin_lock_irqsave(&oh
->_lock
, flags
);
3758 ret
= _deassert_hardreset(oh
, name
);
3759 spin_unlock_irqrestore(&oh
->_lock
, flags
);
3765 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
3766 * @classname: struct omap_hwmod_class name to search for
3767 * @fn: callback function pointer to call for each hwmod in class @classname
3768 * @user: arbitrary context data to pass to the callback function
3770 * For each omap_hwmod of class @classname, call @fn.
3771 * If the callback function returns something other than
3772 * zero, the iterator is terminated, and the callback function's return
3773 * value is passed back to the caller. Returns 0 upon success, -EINVAL
3774 * if @classname or @fn are NULL, or passes back the error code from @fn.
3776 int omap_hwmod_for_each_by_class(const char *classname
,
3777 int (*fn
)(struct omap_hwmod
*oh
,
3781 struct omap_hwmod
*temp_oh
;
3784 if (!classname
|| !fn
)
3787 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
3788 __func__
, classname
);
3790 list_for_each_entry(temp_oh
, &omap_hwmod_list
, node
) {
3791 if (!strcmp(temp_oh
->class->name
, classname
)) {
3792 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
3793 __func__
, temp_oh
->name
);
3794 ret
= (*fn
)(temp_oh
, user
);
3801 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
3808 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
3809 * @oh: struct omap_hwmod *
3810 * @state: state that _setup() should leave the hwmod in
3812 * Sets the hwmod state that @oh will enter at the end of _setup()
3813 * (called by omap_hwmod_setup_*()). See also the documentation
3814 * for _setup_postsetup(), above. Returns 0 upon success or
3815 * -EINVAL if there is a problem with the arguments or if the hwmod is
3816 * in the wrong state.
3818 int omap_hwmod_set_postsetup_state(struct omap_hwmod
*oh
, u8 state
)
3821 unsigned long flags
;
3826 if (state
!= _HWMOD_STATE_DISABLED
&&
3827 state
!= _HWMOD_STATE_ENABLED
&&
3828 state
!= _HWMOD_STATE_IDLE
)
3831 spin_lock_irqsave(&oh
->_lock
, flags
);
3833 if (oh
->_state
!= _HWMOD_STATE_REGISTERED
) {
3838 oh
->_postsetup_state
= state
;
3842 spin_unlock_irqrestore(&oh
->_lock
, flags
);
3848 * omap_hwmod_get_context_loss_count - get lost context count
3849 * @oh: struct omap_hwmod *
3851 * Returns the context loss count of associated @oh
3852 * upon success, or zero if no context loss data is available.
3854 * On OMAP4, this queries the per-hwmod context loss register,
3855 * assuming one exists. If not, or on OMAP2/3, this queries the
3856 * enclosing powerdomain context loss count.
3858 int omap_hwmod_get_context_loss_count(struct omap_hwmod
*oh
)
3860 struct powerdomain
*pwrdm
;
3863 if (soc_ops
.get_context_lost
)
3864 return soc_ops
.get_context_lost(oh
);
3866 pwrdm
= omap_hwmod_get_pwrdm(oh
);
3868 ret
= pwrdm_get_context_loss_count(pwrdm
);
3874 * omap_hwmod_init - initialize the hwmod code
3876 * Sets up some function pointers needed by the hwmod code to operate on the
3877 * currently-booted SoC. Intended to be called once during kernel init
3878 * before any hwmods are registered. No return value.
3880 void __init
omap_hwmod_init(void)
3882 if (cpu_is_omap24xx()) {
3883 soc_ops
.wait_target_ready
= _omap2xxx_3xxx_wait_target_ready
;
3884 soc_ops
.assert_hardreset
= _omap2_assert_hardreset
;
3885 soc_ops
.deassert_hardreset
= _omap2_deassert_hardreset
;
3886 soc_ops
.is_hardreset_asserted
= _omap2_is_hardreset_asserted
;
3887 } else if (cpu_is_omap34xx()) {
3888 soc_ops
.wait_target_ready
= _omap2xxx_3xxx_wait_target_ready
;
3889 soc_ops
.assert_hardreset
= _omap2_assert_hardreset
;
3890 soc_ops
.deassert_hardreset
= _omap2_deassert_hardreset
;
3891 soc_ops
.is_hardreset_asserted
= _omap2_is_hardreset_asserted
;
3892 soc_ops
.init_clkdm
= _init_clkdm
;
3893 } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
3894 soc_ops
.enable_module
= _omap4_enable_module
;
3895 soc_ops
.disable_module
= _omap4_disable_module
;
3896 soc_ops
.wait_target_ready
= _omap4_wait_target_ready
;
3897 soc_ops
.assert_hardreset
= _omap4_assert_hardreset
;
3898 soc_ops
.deassert_hardreset
= _omap4_deassert_hardreset
;
3899 soc_ops
.is_hardreset_asserted
= _omap4_is_hardreset_asserted
;
3900 soc_ops
.init_clkdm
= _init_clkdm
;
3901 soc_ops
.update_context_lost
= _omap4_update_context_lost
;
3902 soc_ops
.get_context_lost
= _omap4_get_context_lost
;
3903 } else if (cpu_is_ti814x() || cpu_is_ti816x() || soc_is_am33xx() ||
3905 soc_ops
.enable_module
= _omap4_enable_module
;
3906 soc_ops
.disable_module
= _omap4_disable_module
;
3907 soc_ops
.wait_target_ready
= _omap4_wait_target_ready
;
3908 soc_ops
.assert_hardreset
= _omap4_assert_hardreset
;
3909 soc_ops
.deassert_hardreset
= _am33xx_deassert_hardreset
;
3910 soc_ops
.is_hardreset_asserted
= _omap4_is_hardreset_asserted
;
3911 soc_ops
.init_clkdm
= _init_clkdm
;
3913 WARN(1, "omap_hwmod: unknown SoC type\n");
3920 * omap_hwmod_get_main_clk - get pointer to main clock name
3921 * @oh: struct omap_hwmod *
3923 * Returns the main clock name assocated with @oh upon success,
3924 * or NULL if @oh is NULL.
3926 const char *omap_hwmod_get_main_clk(struct omap_hwmod
*oh
)
3931 return oh
->main_clk
;