ARM: pxa/tosa-bt: add MODULE_LICENSE tag
[linux-2.6-block.git] / arch / arm / mach-omap2 / omap_hwmod.c
CommitLineData
63c85238
PW
1/*
2 * omap_hwmod implementation for OMAP2/3/4
3 *
550c8092 4 * Copyright (C) 2009-2011 Nokia Corporation
30e105c0 5 * Copyright (C) 2011-2012 Texas Instruments, Inc.
63c85238 6 *
4788da26
PW
7 * Paul Walmsley, BenoƮt Cousson, Kevin Hilman
8 *
9 * Created in collaboration with (alphabetical order): Thara Gopinath,
10 * Tony Lindgren, Rajendra Nayak, Vikram Pandita, Sakari Poussa, Anand
11 * Sawant, Santosh Shilimkar, Richard Woodruff
63c85238
PW
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 *
74ff3a68
PW
17 * Introduction
18 * ------------
19 * One way to view an OMAP SoC is as a collection of largely unrelated
20 * IP blocks connected by interconnects. The IP blocks include
21 * devices such as ARM processors, audio serial interfaces, UARTs,
22 * etc. Some of these devices, like the DSP, are created by TI;
23 * others, like the SGX, largely originate from external vendors. In
24 * TI's documentation, on-chip devices are referred to as "OMAP
25 * modules." Some of these IP blocks are identical across several
26 * OMAP versions. Others are revised frequently.
63c85238 27 *
74ff3a68
PW
28 * These OMAP modules are tied together by various interconnects.
29 * Most of the address and data flow between modules is via OCP-based
30 * interconnects such as the L3 and L4 buses; but there are other
31 * interconnects that distribute the hardware clock tree, handle idle
32 * and reset signaling, supply power, and connect the modules to
33 * various pads or balls on the OMAP package.
34 *
35 * OMAP hwmod provides a consistent way to describe the on-chip
36 * hardware blocks and their integration into the rest of the chip.
37 * This description can be automatically generated from the TI
38 * hardware database. OMAP hwmod provides a standard, consistent API
39 * to reset, enable, idle, and disable these hardware blocks. And
40 * hwmod provides a way for other core code, such as the Linux device
41 * code or the OMAP power management and address space mapping code,
42 * to query the hardware database.
43 *
44 * Using hwmod
45 * -----------
46 * Drivers won't call hwmod functions directly. That is done by the
47 * omap_device code, and in rare occasions, by custom integration code
48 * in arch/arm/ *omap*. The omap_device code includes functions to
49 * build a struct platform_device using omap_hwmod data, and that is
50 * currently how hwmod data is communicated to drivers and to the
51 * Linux driver model. Most drivers will call omap_hwmod functions only
52 * indirectly, via pm_runtime*() functions.
53 *
54 * From a layering perspective, here is where the OMAP hwmod code
55 * fits into the kernel software stack:
56 *
57 * +-------------------------------+
58 * | Device driver code |
59 * | (e.g., drivers/) |
60 * +-------------------------------+
61 * | Linux driver model |
62 * | (platform_device / |
63 * | platform_driver data/code) |
64 * +-------------------------------+
65 * | OMAP core-driver integration |
66 * |(arch/arm/mach-omap2/devices.c)|
67 * +-------------------------------+
68 * | omap_device code |
69 * | (../plat-omap/omap_device.c) |
70 * +-------------------------------+
71 * ----> | omap_hwmod code/data | <-----
72 * | (../mach-omap2/omap_hwmod*) |
73 * +-------------------------------+
74 * | OMAP clock/PRCM/register fns |
edfaf05c 75 * | ({read,write}l_relaxed, clk*) |
74ff3a68
PW
76 * +-------------------------------+
77 *
78 * Device drivers should not contain any OMAP-specific code or data in
79 * them. They should only contain code to operate the IP block that
80 * the driver is responsible for. This is because these IP blocks can
81 * also appear in other SoCs, either from TI (such as DaVinci) or from
82 * other manufacturers; and drivers should be reusable across other
83 * platforms.
84 *
85 * The OMAP hwmod code also will attempt to reset and idle all on-chip
86 * devices upon boot. The goal here is for the kernel to be
87 * completely self-reliant and independent from bootloaders. This is
88 * to ensure a repeatable configuration, both to ensure consistent
89 * runtime behavior, and to make it easier for others to reproduce
90 * bugs.
91 *
92 * OMAP module activity states
93 * ---------------------------
94 * The hwmod code considers modules to be in one of several activity
95 * states. IP blocks start out in an UNKNOWN state, then once they
96 * are registered via the hwmod code, proceed to the REGISTERED state.
97 * Once their clock names are resolved to clock pointers, the module
98 * enters the CLKS_INITED state; and finally, once the module has been
99 * reset and the integration registers programmed, the INITIALIZED state
100 * is entered. The hwmod code will then place the module into either
101 * the IDLE state to save power, or in the case of a critical system
102 * module, the ENABLED state.
103 *
104 * OMAP core integration code can then call omap_hwmod*() functions
105 * directly to move the module between the IDLE, ENABLED, and DISABLED
106 * states, as needed. This is done during both the PM idle loop, and
107 * in the OMAP core integration code's implementation of the PM runtime
108 * functions.
109 *
110 * References
111 * ----------
112 * This is a partial list.
63c85238
PW
113 * - OMAP2420 Multimedia Processor Silicon Revision 2.1.1, 2.2 (SWPU064)
114 * - OMAP2430 Multimedia Device POP Silicon Revision 2.1 (SWPU090)
115 * - OMAP34xx Multimedia Device Silicon Revision 3.1 (SWPU108)
116 * - OMAP4430 Multimedia Device Silicon Revision 1.0 (SWPU140)
117 * - Open Core Protocol Specification 2.2
118 *
119 * To do:
63c85238
PW
120 * - handle IO mapping
121 * - bus throughput & module latency measurement code
122 *
123 * XXX add tests at the beginning of each function to ensure the hwmod is
124 * in the appropriate state
125 * XXX error return values should be checked to ensure that they are
126 * appropriate
127 */
128#undef DEBUG
129
130#include <linux/kernel.h>
131#include <linux/errno.h>
132#include <linux/io.h>
f5b00f6f 133#include <linux/clk.h>
f5dd3bb5 134#include <linux/clk-provider.h>
63c85238
PW
135#include <linux/delay.h>
136#include <linux/err.h>
137#include <linux/list.h>
138#include <linux/mutex.h>
dc6d1cda 139#include <linux/spinlock.h>
abc2d545 140#include <linux/slab.h>
f7b861b7 141#include <linux/cpu.h>
079abade
SS
142#include <linux/of.h>
143#include <linux/of_address.h>
70f05be3 144#include <linux/bootmem.h>
63c85238 145
fa200222
PW
146#include <asm/system_misc.h>
147
a135eaae 148#include "clock.h"
2a296c8f 149#include "omap_hwmod.h"
63c85238 150
dbc04161
TL
151#include "soc.h"
152#include "common.h"
153#include "clockdomain.h"
154#include "powerdomain.h"
ff4ae5d9
PW
155#include "cm2xxx.h"
156#include "cm3xxx.h"
1688bf19 157#include "cm33xx.h"
b13159af 158#include "prm.h"
139563ad 159#include "prm3xxx.h"
d198b514 160#include "prm44xx.h"
1688bf19 161#include "prm33xx.h"
eaac329d 162#include "prminst44xx.h"
5165882a 163#include "pm.h"
63c85238 164
63c85238 165/* Name of the OMAP hwmod for the MPU */
5c2c0296 166#define MPU_INITIATOR_NAME "mpu"
63c85238 167
2221b5cd
PW
168/*
169 * Number of struct omap_hwmod_link records per struct
170 * omap_hwmod_ocp_if record (master->slave and slave->master)
171 */
172#define LINKS_PER_OCP_IF 2
173
4ebf5b28
TK
174/*
175 * Address offset (in bytes) between the reset control and the reset
176 * status registers: 4 bytes on OMAP4
177 */
178#define OMAP4_RST_CTRL_ST_OFFSET 4
179
9fabc1a2
TK
180/*
181 * Maximum length for module clock handle names
182 */
183#define MOD_CLK_MAX_NAME_LEN 32
184
70f05be3
TK
185/**
186 * struct clkctrl_provider - clkctrl provider mapping data
187 * @addr: base address for the provider
6e83ecaa
TK
188 * @size: size of the provider address space
189 * @offset: offset of the provider from PRCM instance base
70f05be3
TK
190 * @node: device node associated with the provider
191 * @link: list link
192 */
193struct clkctrl_provider {
194 u32 addr;
6e83ecaa 195 u32 size;
70f05be3 196 u16 offset;
70f05be3
TK
197 struct device_node *node;
198 struct list_head link;
199};
200
201static LIST_HEAD(clkctrl_providers);
202
9ebfd285
KH
203/**
204 * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
205 * @enable_module: function to enable a module (via MODULEMODE)
206 * @disable_module: function to disable a module (via MODULEMODE)
207 *
208 * XXX Eventually this functionality will be hidden inside the PRM/CM
209 * device drivers. Until then, this should avoid huge blocks of cpu_is_*()
210 * conditionals in this code.
211 */
212struct omap_hwmod_soc_ops {
213 void (*enable_module)(struct omap_hwmod *oh);
214 int (*disable_module)(struct omap_hwmod *oh);
8f6aa8ee 215 int (*wait_target_ready)(struct omap_hwmod *oh);
b8249cf2
KH
216 int (*assert_hardreset)(struct omap_hwmod *oh,
217 struct omap_hwmod_rst_info *ohri);
218 int (*deassert_hardreset)(struct omap_hwmod *oh,
219 struct omap_hwmod_rst_info *ohri);
220 int (*is_hardreset_asserted)(struct omap_hwmod *oh,
221 struct omap_hwmod_rst_info *ohri);
0a179eaa 222 int (*init_clkdm)(struct omap_hwmod *oh);
e6d3a8b0
RN
223 void (*update_context_lost)(struct omap_hwmod *oh);
224 int (*get_context_lost)(struct omap_hwmod *oh);
9fabc1a2 225 int (*disable_direct_prcm)(struct omap_hwmod *oh);
6e83ecaa 226 u32 (*xlate_clkctrl)(struct omap_hwmod *oh);
9ebfd285
KH
227};
228
229/* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
230static struct omap_hwmod_soc_ops soc_ops;
231
63c85238
PW
232/* omap_hwmod_list contains all registered struct omap_hwmods */
233static LIST_HEAD(omap_hwmod_list);
234
63c85238
PW
235/* mpu_oh: used to add/remove MPU initiator from sleepdep list */
236static struct omap_hwmod *mpu_oh;
237
9ebfd285
KH
238/* inited: set to true once the hwmod code is initialized */
239static bool inited;
240
63c85238
PW
241/* Private functions */
242
243/**
244 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
245 * @oh: struct omap_hwmod *
246 *
247 * Load the current value of the hwmod OCP_SYSCONFIG register into the
248 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
249 * OCP_SYSCONFIG register or 0 upon success.
250 */
251static int _update_sysc_cache(struct omap_hwmod *oh)
252{
43b40992
PW
253 if (!oh->class->sysc) {
254 WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
63c85238
PW
255 return -EINVAL;
256 }
257
258 /* XXX ensure module interface clock is up */
259
cc7a1d2a 260 oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
63c85238 261
43b40992 262 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
883edfdd 263 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
63c85238
PW
264
265 return 0;
266}
267
268/**
269 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
270 * @v: OCP_SYSCONFIG value to write
271 * @oh: struct omap_hwmod *
272 *
43b40992
PW
273 * Write @v into the module class' OCP_SYSCONFIG register, if it has
274 * one. No return value.
63c85238
PW
275 */
276static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
277{
43b40992
PW
278 if (!oh->class->sysc) {
279 WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
63c85238
PW
280 return;
281 }
282
283 /* XXX ensure module interface clock is up */
284
233cbe5b
RN
285 /* Module might have lost context, always update cache and register */
286 oh->_sysc_cache = v;
aaf2c0fb
LV
287
288 /*
289 * Some IP blocks (such as RTC) require unlocking of IP before
290 * accessing its registers. If a function pointer is present
291 * to unlock, then call it before accessing sysconfig and
292 * call lock after writing sysconfig.
293 */
294 if (oh->class->unlock)
295 oh->class->unlock(oh);
296
233cbe5b 297 omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
aaf2c0fb
LV
298
299 if (oh->class->lock)
300 oh->class->lock(oh);
63c85238
PW
301}
302
303/**
304 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
305 * @oh: struct omap_hwmod *
306 * @standbymode: MIDLEMODE field bits
307 * @v: pointer to register contents to modify
308 *
309 * Update the master standby mode bits in @v to be @standbymode for
310 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
311 * upon error or 0 upon success.
312 */
313static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
314 u32 *v)
315{
358f0e63
TG
316 u32 mstandby_mask;
317 u8 mstandby_shift;
318
43b40992
PW
319 if (!oh->class->sysc ||
320 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
63c85238
PW
321 return -EINVAL;
322
43b40992
PW
323 if (!oh->class->sysc->sysc_fields) {
324 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
325 return -EINVAL;
326 }
327
43b40992 328 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
358f0e63
TG
329 mstandby_mask = (0x3 << mstandby_shift);
330
331 *v &= ~mstandby_mask;
332 *v |= __ffs(standbymode) << mstandby_shift;
63c85238
PW
333
334 return 0;
335}
336
337/**
338 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
339 * @oh: struct omap_hwmod *
340 * @idlemode: SIDLEMODE field bits
341 * @v: pointer to register contents to modify
342 *
343 * Update the slave idle mode bits in @v to be @idlemode for the @oh
344 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
345 * or 0 upon success.
346 */
347static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
348{
358f0e63
TG
349 u32 sidle_mask;
350 u8 sidle_shift;
351
43b40992
PW
352 if (!oh->class->sysc ||
353 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
63c85238
PW
354 return -EINVAL;
355
43b40992
PW
356 if (!oh->class->sysc->sysc_fields) {
357 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
358 return -EINVAL;
359 }
360
43b40992 361 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
358f0e63
TG
362 sidle_mask = (0x3 << sidle_shift);
363
364 *v &= ~sidle_mask;
365 *v |= __ffs(idlemode) << sidle_shift;
63c85238
PW
366
367 return 0;
368}
369
370/**
371 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
372 * @oh: struct omap_hwmod *
373 * @clockact: CLOCKACTIVITY field bits
374 * @v: pointer to register contents to modify
375 *
376 * Update the clockactivity mode bits in @v to be @clockact for the
377 * @oh hwmod. Used for additional powersaving on some modules. Does
378 * not write to the hardware. Returns -EINVAL upon error or 0 upon
379 * success.
380 */
381static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
382{
358f0e63
TG
383 u32 clkact_mask;
384 u8 clkact_shift;
385
43b40992
PW
386 if (!oh->class->sysc ||
387 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
63c85238
PW
388 return -EINVAL;
389
43b40992
PW
390 if (!oh->class->sysc->sysc_fields) {
391 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
392 return -EINVAL;
393 }
394
43b40992 395 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
358f0e63
TG
396 clkact_mask = (0x3 << clkact_shift);
397
398 *v &= ~clkact_mask;
399 *v |= clockact << clkact_shift;
63c85238
PW
400
401 return 0;
402}
403
404/**
313a76ee 405 * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v
63c85238
PW
406 * @oh: struct omap_hwmod *
407 * @v: pointer to register contents to modify
408 *
409 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
410 * error or 0 upon success.
411 */
412static int _set_softreset(struct omap_hwmod *oh, u32 *v)
413{
358f0e63
TG
414 u32 softrst_mask;
415
43b40992
PW
416 if (!oh->class->sysc ||
417 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
63c85238
PW
418 return -EINVAL;
419
43b40992
PW
420 if (!oh->class->sysc->sysc_fields) {
421 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
422 return -EINVAL;
423 }
424
43b40992 425 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
358f0e63
TG
426
427 *v |= softrst_mask;
63c85238
PW
428
429 return 0;
430}
431
313a76ee
RQ
432/**
433 * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v
434 * @oh: struct omap_hwmod *
435 * @v: pointer to register contents to modify
436 *
437 * Clear the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
438 * error or 0 upon success.
439 */
440static int _clear_softreset(struct omap_hwmod *oh, u32 *v)
441{
442 u32 softrst_mask;
443
444 if (!oh->class->sysc ||
445 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
446 return -EINVAL;
447
448 if (!oh->class->sysc->sysc_fields) {
449 WARN(1,
450 "omap_hwmod: %s: sysc_fields absent for sysconfig class\n",
451 oh->name);
452 return -EINVAL;
453 }
454
455 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
456
457 *v &= ~softrst_mask;
458
459 return 0;
460}
461
613ad0e9
TK
462/**
463 * _wait_softreset_complete - wait for an OCP softreset to complete
464 * @oh: struct omap_hwmod * to wait on
465 *
466 * Wait until the IP block represented by @oh reports that its OCP
467 * softreset is complete. This can be triggered by software (see
468 * _ocp_softreset()) or by hardware upon returning from off-mode (one
469 * example is HSMMC). Waits for up to MAX_MODULE_SOFTRESET_WAIT
470 * microseconds. Returns the number of microseconds waited.
471 */
472static int _wait_softreset_complete(struct omap_hwmod *oh)
473{
474 struct omap_hwmod_class_sysconfig *sysc;
475 u32 softrst_mask;
476 int c = 0;
477
478 sysc = oh->class->sysc;
479
480 if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
481 omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs)
482 & SYSS_RESETDONE_MASK),
483 MAX_MODULE_SOFTRESET_WAIT, c);
484 else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
485 softrst_mask = (0x1 << sysc->sysc_fields->srst_shift);
486 omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs)
487 & softrst_mask),
488 MAX_MODULE_SOFTRESET_WAIT, c);
489 }
490
491 return c;
492}
493
6668546f
KVA
494/**
495 * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
496 * @oh: struct omap_hwmod *
497 *
498 * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
499 * of some modules. When the DMA must perform read/write accesses, the
500 * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
501 * for power management, software must set the DMADISABLE bit back to 1.
502 *
503 * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon
504 * error or 0 upon success.
505 */
506static int _set_dmadisable(struct omap_hwmod *oh)
507{
508 u32 v;
509 u32 dmadisable_mask;
510
511 if (!oh->class->sysc ||
512 !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
513 return -EINVAL;
514
515 if (!oh->class->sysc->sysc_fields) {
516 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
517 return -EINVAL;
518 }
519
520 /* clocks must be on for this operation */
521 if (oh->_state != _HWMOD_STATE_ENABLED) {
522 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
523 return -EINVAL;
524 }
525
526 pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
527
528 v = oh->_sysc_cache;
529 dmadisable_mask =
530 (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
531 v |= dmadisable_mask;
532 _write_sysconfig(v, oh);
533
534 return 0;
535}
536
726072e5
PW
537/**
538 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
539 * @oh: struct omap_hwmod *
540 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
541 * @v: pointer to register contents to modify
542 *
543 * Update the module autoidle bit in @v to be @autoidle for the @oh
544 * hwmod. The autoidle bit controls whether the module can gate
545 * internal clocks automatically when it isn't doing anything; the
546 * exact function of this bit varies on a per-module basis. This
547 * function does not write to the hardware. Returns -EINVAL upon
548 * error or 0 upon success.
549 */
550static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
551 u32 *v)
552{
358f0e63
TG
553 u32 autoidle_mask;
554 u8 autoidle_shift;
555
43b40992
PW
556 if (!oh->class->sysc ||
557 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
726072e5
PW
558 return -EINVAL;
559
43b40992
PW
560 if (!oh->class->sysc->sysc_fields) {
561 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
562 return -EINVAL;
563 }
564
43b40992 565 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
8985b63d 566 autoidle_mask = (0x1 << autoidle_shift);
358f0e63
TG
567
568 *v &= ~autoidle_mask;
569 *v |= autoidle << autoidle_shift;
726072e5
PW
570
571 return 0;
572}
573
63c85238
PW
574/**
575 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
576 * @oh: struct omap_hwmod *
577 *
578 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
579 * upon error or 0 upon success.
580 */
5a7ddcbd 581static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
63c85238 582{
43b40992 583 if (!oh->class->sysc ||
86009eb3 584 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
724019b0
BC
585 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
586 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
63c85238
PW
587 return -EINVAL;
588
43b40992
PW
589 if (!oh->class->sysc->sysc_fields) {
590 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
591 return -EINVAL;
592 }
593
1fe74113
BC
594 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
595 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
63c85238 596
86009eb3
BC
597 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
598 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
724019b0
BC
599 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
600 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
86009eb3 601
63c85238
PW
602 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
603
63c85238
PW
604 return 0;
605}
606
607/**
608 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
609 * @oh: struct omap_hwmod *
610 *
611 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
612 * upon error or 0 upon success.
613 */
5a7ddcbd 614static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
63c85238 615{
43b40992 616 if (!oh->class->sysc ||
86009eb3 617 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
724019b0
BC
618 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
619 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
63c85238
PW
620 return -EINVAL;
621
43b40992
PW
622 if (!oh->class->sysc->sysc_fields) {
623 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
624 return -EINVAL;
625 }
626
1fe74113
BC
627 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
628 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
63c85238 629
86009eb3
BC
630 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
631 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
724019b0 632 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
561038f0 633 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
86009eb3 634
63c85238
PW
635 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
636
63c85238
PW
637 return 0;
638}
639
f5dd3bb5
RN
640static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
641{
c4a1ea2c
RN
642 struct clk_hw_omap *clk;
643
f5dd3bb5
RN
644 if (oh->clkdm) {
645 return oh->clkdm;
646 } else if (oh->_clk) {
924f9498
TK
647 if (__clk_get_flags(oh->_clk) & CLK_IS_BASIC)
648 return NULL;
f5dd3bb5
RN
649 clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
650 return clk->clkdm;
f5dd3bb5
RN
651 }
652 return NULL;
653}
654
63c85238
PW
655/**
656 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
657 * @oh: struct omap_hwmod *
658 *
659 * Prevent the hardware module @oh from entering idle while the
660 * hardare module initiator @init_oh is active. Useful when a module
661 * will be accessed by a particular initiator (e.g., if a module will
662 * be accessed by the IVA, there should be a sleepdep between the IVA
663 * initiator and the module). Only applies to modules in smart-idle
570b54c7
PW
664 * mode. If the clockdomain is marked as not needing autodeps, return
665 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
666 * passes along clkdm_add_sleepdep() value upon success.
63c85238
PW
667 */
668static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
669{
f5dd3bb5
RN
670 struct clockdomain *clkdm, *init_clkdm;
671
672 clkdm = _get_clkdm(oh);
673 init_clkdm = _get_clkdm(init_oh);
674
675 if (!clkdm || !init_clkdm)
63c85238
PW
676 return -EINVAL;
677
f5dd3bb5 678 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
570b54c7
PW
679 return 0;
680
f5dd3bb5 681 return clkdm_add_sleepdep(clkdm, init_clkdm);
63c85238
PW
682}
683
684/**
685 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
686 * @oh: struct omap_hwmod *
687 *
688 * Allow the hardware module @oh to enter idle while the hardare
689 * module initiator @init_oh is active. Useful when a module will not
690 * be accessed by a particular initiator (e.g., if a module will not
691 * be accessed by the IVA, there should be no sleepdep between the IVA
692 * initiator and the module). Only applies to modules in smart-idle
570b54c7
PW
693 * mode. If the clockdomain is marked as not needing autodeps, return
694 * 0 without doing anything. Returns -EINVAL upon error or passes
695 * along clkdm_del_sleepdep() value upon success.
63c85238
PW
696 */
697static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
698{
f5dd3bb5
RN
699 struct clockdomain *clkdm, *init_clkdm;
700
701 clkdm = _get_clkdm(oh);
702 init_clkdm = _get_clkdm(init_oh);
703
704 if (!clkdm || !init_clkdm)
63c85238
PW
705 return -EINVAL;
706
f5dd3bb5 707 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
570b54c7
PW
708 return 0;
709
f5dd3bb5 710 return clkdm_del_sleepdep(clkdm, init_clkdm);
63c85238
PW
711}
712
70f05be3
TK
713static const struct of_device_id ti_clkctrl_match_table[] __initconst = {
714 { .compatible = "ti,clkctrl" },
715 { }
716};
717
70f05be3
TK
718static int _setup_clkctrl_provider(struct device_node *np)
719{
720 const __be32 *addrp;
721 struct clkctrl_provider *provider;
6e83ecaa 722 u64 size;
70f05be3
TK
723
724 provider = memblock_virt_alloc(sizeof(*provider), 0);
725 if (!provider)
726 return -ENOMEM;
727
6e83ecaa 728 addrp = of_get_address(np, 0, &size, NULL);
70f05be3 729 provider->addr = (u32)of_translate_address(np, addrp);
6e83ecaa
TK
730 addrp = of_get_address(np->parent, 0, NULL, NULL);
731 provider->offset = provider->addr -
732 (u32)of_translate_address(np->parent, addrp);
70f05be3 733 provider->addr &= ~0xff;
6e83ecaa 734 provider->size = size | 0xff;
70f05be3
TK
735 provider->node = np;
736
6e83ecaa
TK
737 pr_debug("%s: %s: %x...%x [+%x]\n", __func__, np->parent->name,
738 provider->addr, provider->addr + provider->size,
739 provider->offset);
70f05be3
TK
740
741 list_add(&provider->link, &clkctrl_providers);
742
743 return 0;
744}
745
746static int _init_clkctrl_providers(void)
747{
748 struct device_node *np;
749 int ret = 0;
750
751 for_each_matching_node(np, ti_clkctrl_match_table) {
752 ret = _setup_clkctrl_provider(np);
753 if (ret)
754 break;
755 }
756
757 return ret;
758}
759
6e83ecaa 760static u32 _omap4_xlate_clkctrl(struct omap_hwmod *oh)
70f05be3 761{
6e83ecaa
TK
762 if (!oh->prcm.omap4.modulemode)
763 return 0;
764
765 return omap_cm_xlate_clkctrl(oh->clkdm->prcm_partition,
766 oh->clkdm->cm_inst,
767 oh->prcm.omap4.clkctrl_offs);
70f05be3
TK
768}
769
770static struct clk *_lookup_clkctrl_clk(struct omap_hwmod *oh)
771{
772 struct clkctrl_provider *provider;
773 struct clk *clk;
6e83ecaa 774 u32 addr;
70f05be3
TK
775
776 if (!soc_ops.xlate_clkctrl)
777 return NULL;
778
6e83ecaa
TK
779 addr = soc_ops.xlate_clkctrl(oh);
780 if (!addr)
781 return NULL;
782
783 pr_debug("%s: %s: addr=%x\n", __func__, oh->name, addr);
784
70f05be3 785 list_for_each_entry(provider, &clkctrl_providers, link) {
6e83ecaa
TK
786 if (provider->addr <= addr &&
787 provider->addr + provider->size >= addr) {
70f05be3
TK
788 struct of_phandle_args clkspec;
789
790 clkspec.np = provider->node;
791 clkspec.args_count = 2;
6e83ecaa
TK
792 clkspec.args[0] = addr - provider->addr -
793 provider->offset;
70f05be3
TK
794 clkspec.args[1] = 0;
795
796 clk = of_clk_get_from_provider(&clkspec);
797
6e83ecaa
TK
798 pr_debug("%s: %s got %p (offset=%x, provider=%s)\n",
799 __func__, oh->name, clk, clkspec.args[0],
800 provider->node->parent->name);
801
70f05be3
TK
802 return clk;
803 }
804 }
805
806 return NULL;
807}
808
63c85238
PW
809/**
810 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
811 * @oh: struct omap_hwmod *
812 *
813 * Called from _init_clocks(). Populates the @oh _clk (main
9fabc1a2
TK
814 * functional clock pointer) if a clock matching the hwmod name is found,
815 * or a main_clk is present. Returns 0 on success or -EINVAL on error.
63c85238
PW
816 */
817static int _init_main_clk(struct omap_hwmod *oh)
818{
63c85238 819 int ret = 0;
70f05be3 820 struct clk *clk = NULL;
63c85238 821
70f05be3 822 clk = _lookup_clkctrl_clk(oh);
9fabc1a2 823
70f05be3
TK
824 if (!IS_ERR_OR_NULL(clk)) {
825 pr_debug("%s: mapped main_clk %s for %s\n", __func__,
826 __clk_get_name(clk), oh->name);
827 oh->main_clk = __clk_get_name(clk);
9fabc1a2
TK
828 oh->_clk = clk;
829 soc_ops.disable_direct_prcm(oh);
9fabc1a2
TK
830 } else {
831 if (!oh->main_clk)
832 return 0;
833
834 oh->_clk = clk_get(NULL, oh->main_clk);
835 }
63c85238 836
6ea74cb9 837 if (IS_ERR(oh->_clk)) {
3d0cb73e
JP
838 pr_warn("omap_hwmod: %s: cannot clk_get main_clk %s\n",
839 oh->name, oh->main_clk);
63403384 840 return -EINVAL;
dc75925d 841 }
4d7cb45e
RN
842 /*
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
848 * available.
849 */
850 clk_prepare(oh->_clk);
63c85238 851
f5dd3bb5 852 if (!_get_clkdm(oh))
3bb05dbf 853 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
5dcc3b97 854 oh->name, oh->main_clk);
81d7c6ff 855
63c85238
PW
856 return ret;
857}
858
859/**
887adeac 860 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
63c85238
PW
861 * @oh: struct omap_hwmod *
862 *
863 * Called from _init_clocks(). Populates the @oh OCP slave interface
864 * clock pointers. Returns 0 on success or -EINVAL on error.
865 */
866static int _init_interface_clks(struct omap_hwmod *oh)
867{
5d95dde7 868 struct omap_hwmod_ocp_if *os;
63c85238 869 struct clk *c;
63c85238
PW
870 int ret = 0;
871
b8e1bddc 872 list_for_each_entry(os, &oh->slave_ports, node) {
50ebdac2 873 if (!os->clk)
63c85238
PW
874 continue;
875
6ea74cb9
RN
876 c = clk_get(NULL, os->clk);
877 if (IS_ERR(c)) {
3d0cb73e
JP
878 pr_warn("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
879 oh->name, os->clk);
63c85238 880 ret = -EINVAL;
0e7dc862 881 continue;
dc75925d 882 }
63c85238 883 os->_clk = c;
4d7cb45e
RN
884 /*
885 * HACK: This needs a re-visit once clk_prepare() is implemented
886 * to do something meaningful. Today its just a no-op.
887 * If clk_prepare() is used at some point to do things like
888 * voltage scaling etc, then this would have to be moved to
889 * some point where subsystems like i2c and pmic become
890 * available.
891 */
892 clk_prepare(os->_clk);
63c85238
PW
893 }
894
895 return ret;
896}
897
898/**
899 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
900 * @oh: struct omap_hwmod *
901 *
902 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
903 * clock pointers. Returns 0 on success or -EINVAL on error.
904 */
905static int _init_opt_clks(struct omap_hwmod *oh)
906{
907 struct omap_hwmod_opt_clk *oc;
908 struct clk *c;
909 int i;
910 int ret = 0;
911
912 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
6ea74cb9
RN
913 c = clk_get(NULL, oc->clk);
914 if (IS_ERR(c)) {
3d0cb73e
JP
915 pr_warn("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
916 oh->name, oc->clk);
63c85238 917 ret = -EINVAL;
0e7dc862 918 continue;
dc75925d 919 }
63c85238 920 oc->_clk = c;
4d7cb45e
RN
921 /*
922 * HACK: This needs a re-visit once clk_prepare() is implemented
923 * to do something meaningful. Today its just a no-op.
924 * If clk_prepare() is used at some point to do things like
925 * voltage scaling etc, then this would have to be moved to
926 * some point where subsystems like i2c and pmic become
927 * available.
928 */
929 clk_prepare(oc->_clk);
63c85238
PW
930 }
931
932 return ret;
933}
934
c12ba8ce
PU
935static void _enable_optional_clocks(struct omap_hwmod *oh)
936{
937 struct omap_hwmod_opt_clk *oc;
938 int i;
939
940 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
941
942 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
943 if (oc->_clk) {
944 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
945 __clk_get_name(oc->_clk));
946 clk_enable(oc->_clk);
947 }
948}
949
950static void _disable_optional_clocks(struct omap_hwmod *oh)
951{
952 struct omap_hwmod_opt_clk *oc;
953 int i;
954
955 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
956
957 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
958 if (oc->_clk) {
959 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
960 __clk_get_name(oc->_clk));
961 clk_disable(oc->_clk);
962 }
963}
964
63c85238
PW
965/**
966 * _enable_clocks - enable hwmod main clock and interface clocks
967 * @oh: struct omap_hwmod *
968 *
969 * Enables all clocks necessary for register reads and writes to succeed
970 * on the hwmod @oh. Returns 0.
971 */
972static int _enable_clocks(struct omap_hwmod *oh)
973{
5d95dde7 974 struct omap_hwmod_ocp_if *os;
63c85238
PW
975
976 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
977
4d3ae5a9 978 if (oh->_clk)
63c85238
PW
979 clk_enable(oh->_clk);
980
b8e1bddc 981 list_for_each_entry(os, &oh->slave_ports, node) {
5d95dde7
PW
982 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
983 clk_enable(os->_clk);
63c85238
PW
984 }
985
c12ba8ce
PU
986 if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
987 _enable_optional_clocks(oh);
988
63c85238
PW
989 /* The opt clocks are controlled by the device driver. */
990
991 return 0;
992}
993
8823ddf2
TL
994/**
995 * _omap4_clkctrl_managed_by_clkfwk - true if clkctrl managed by clock framework
996 * @oh: struct omap_hwmod *
997 */
998static bool _omap4_clkctrl_managed_by_clkfwk(struct omap_hwmod *oh)
999{
1000 if (oh->prcm.omap4.flags & HWMOD_OMAP4_CLKFWK_CLKCTR_CLOCK)
1001 return true;
1002
1003 return false;
1004}
1005
1006/**
1007 * _omap4_has_clkctrl_clock - returns true if a module has clkctrl clock
1008 * @oh: struct omap_hwmod *
1009 */
1010static bool _omap4_has_clkctrl_clock(struct omap_hwmod *oh)
1011{
1012 if (oh->prcm.omap4.clkctrl_offs)
1013 return true;
1014
1015 if (!oh->prcm.omap4.clkctrl_offs &&
1016 oh->prcm.omap4.flags & HWMOD_OMAP4_ZERO_CLKCTRL_OFFSET)
1017 return true;
1018
1019 return false;
1020}
1021
63c85238
PW
1022/**
1023 * _disable_clocks - disable hwmod main clock and interface clocks
1024 * @oh: struct omap_hwmod *
1025 *
1026 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
1027 */
1028static int _disable_clocks(struct omap_hwmod *oh)
1029{
5d95dde7 1030 struct omap_hwmod_ocp_if *os;
63c85238
PW
1031
1032 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
1033
4d3ae5a9 1034 if (oh->_clk)
63c85238
PW
1035 clk_disable(oh->_clk);
1036
b8e1bddc 1037 list_for_each_entry(os, &oh->slave_ports, node) {
5d95dde7
PW
1038 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
1039 clk_disable(os->_clk);
63c85238
PW
1040 }
1041
c12ba8ce
PU
1042 if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
1043 _disable_optional_clocks(oh);
1044
63c85238
PW
1045 /* The opt clocks are controlled by the device driver. */
1046
1047 return 0;
1048}
1049
45c38252 1050/**
3d9f0327 1051 * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
45c38252
BC
1052 * @oh: struct omap_hwmod *
1053 *
1054 * Enables the PRCM module mode related to the hwmod @oh.
1055 * No return value.
1056 */
3d9f0327 1057static void _omap4_enable_module(struct omap_hwmod *oh)
45c38252 1058{
8823ddf2
TL
1059 if (!oh->clkdm || !oh->prcm.omap4.modulemode ||
1060 _omap4_clkctrl_managed_by_clkfwk(oh))
45c38252
BC
1061 return;
1062
3d9f0327
KH
1063 pr_debug("omap_hwmod: %s: %s: %d\n",
1064 oh->name, __func__, oh->prcm.omap4.modulemode);
45c38252 1065
128603f0
TK
1066 omap_cm_module_enable(oh->prcm.omap4.modulemode,
1067 oh->clkdm->prcm_partition,
1068 oh->clkdm->cm_inst, oh->prcm.omap4.clkctrl_offs);
1688bf19
VH
1069}
1070
45c38252 1071/**
bfc141e3
BC
1072 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
1073 * @oh: struct omap_hwmod *
1074 *
1075 * Wait for a module @oh to enter slave idle. Returns 0 if the module
1076 * does not have an IDLEST bit or if the module successfully enters
1077 * slave idle; otherwise, pass along the return value of the
1078 * appropriate *_cm*_wait_module_idle() function.
1079 */
1080static int _omap4_wait_target_disable(struct omap_hwmod *oh)
1081{
2b026d13 1082 if (!oh)
bfc141e3
BC
1083 return -EINVAL;
1084
2b026d13 1085 if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
bfc141e3
BC
1086 return 0;
1087
1088 if (oh->flags & HWMOD_NO_IDLEST)
1089 return 0;
1090
8823ddf2
TL
1091 if (_omap4_clkctrl_managed_by_clkfwk(oh))
1092 return 0;
1093
1094 if (!_omap4_has_clkctrl_clock(oh))
428929c7
DG
1095 return 0;
1096
a8ae5afa
TK
1097 return omap_cm_wait_module_idle(oh->clkdm->prcm_partition,
1098 oh->clkdm->cm_inst,
1099 oh->prcm.omap4.clkctrl_offs, 0);
1688bf19
VH
1100}
1101
63c85238 1102/**
24dbc213 1103 * _save_mpu_port_index - find and save the index to @oh's MPU port
63c85238
PW
1104 * @oh: struct omap_hwmod *
1105 *
24dbc213
PW
1106 * Determines the array index of the OCP slave port that the MPU uses
1107 * to address the device, and saves it into the struct omap_hwmod.
1108 * Intended to be called during hwmod registration only. No return
1109 * value.
63c85238 1110 */
24dbc213 1111static void __init _save_mpu_port_index(struct omap_hwmod *oh)
63c85238 1112{
24dbc213 1113 struct omap_hwmod_ocp_if *os = NULL;
63c85238 1114
5d95dde7 1115 if (!oh)
24dbc213
PW
1116 return;
1117
1118 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
63c85238 1119
b8e1bddc 1120 list_for_each_entry(os, &oh->slave_ports, node) {
63c85238 1121 if (os->user & OCP_USER_MPU) {
2221b5cd 1122 oh->_mpu_port = os;
24dbc213 1123 oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
63c85238
PW
1124 break;
1125 }
1126 }
1127
24dbc213 1128 return;
63c85238
PW
1129}
1130
2d6141ba
PW
1131/**
1132 * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1133 * @oh: struct omap_hwmod *
1134 *
1135 * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1136 * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1137 * communicate with the IP block. This interface need not be directly
1138 * connected to the MPU (and almost certainly is not), but is directly
1139 * connected to the IP block represented by @oh. Returns a pointer
1140 * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1141 * error or if there does not appear to be a path from the MPU to this
1142 * IP block.
1143 */
1144static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1145{
1146 if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1147 return NULL;
1148
11cd4b94 1149 return oh->_mpu_port;
2d6141ba
PW
1150};
1151
63c85238 1152/**
74ff3a68 1153 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
63c85238
PW
1154 * @oh: struct omap_hwmod *
1155 *
006c7f18
PW
1156 * Ensure that the OCP_SYSCONFIG register for the IP block represented
1157 * by @oh is set to indicate to the PRCM that the IP block is active.
1158 * Usually this means placing the module into smart-idle mode and
1159 * smart-standby, but if there is a bug in the automatic idle handling
1160 * for the IP block, it may need to be placed into the force-idle or
1161 * no-idle variants of these modes. No return value.
63c85238 1162 */
74ff3a68 1163static void _enable_sysc(struct omap_hwmod *oh)
63c85238 1164{
43b40992 1165 u8 idlemode, sf;
63c85238 1166 u32 v;
006c7f18 1167 bool clkdm_act;
f5dd3bb5 1168 struct clockdomain *clkdm;
63c85238 1169
43b40992 1170 if (!oh->class->sysc)
63c85238
PW
1171 return;
1172
613ad0e9
TK
1173 /*
1174 * Wait until reset has completed, this is needed as the IP
1175 * block is reset automatically by hardware in some cases
1176 * (off-mode for example), and the drivers require the
1177 * IP to be ready when they access it
1178 */
1179 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1180 _enable_optional_clocks(oh);
1181 _wait_softreset_complete(oh);
1182 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1183 _disable_optional_clocks(oh);
1184
63c85238 1185 v = oh->_sysc_cache;
43b40992 1186 sf = oh->class->sysc->sysc_flags;
63c85238 1187
f5dd3bb5 1188 clkdm = _get_clkdm(oh);
43b40992 1189 if (sf & SYSC_HAS_SIDLEMODE) {
ca43ea34
RN
1190 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1191 oh->flags & HWMOD_SWSUP_SIDLE_ACT) {
35513171
RN
1192 idlemode = HWMOD_IDLEMODE_NO;
1193 } else {
1194 if (sf & SYSC_HAS_ENAWAKEUP)
1195 _enable_wakeup(oh, &v);
1196 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1197 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1198 else
1199 idlemode = HWMOD_IDLEMODE_SMART;
1200 }
1201
1202 /*
1203 * This is special handling for some IPs like
1204 * 32k sync timer. Force them to idle!
1205 */
f5dd3bb5 1206 clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
006c7f18
PW
1207 if (clkdm_act && !(oh->class->sysc->idlemodes &
1208 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1209 idlemode = HWMOD_IDLEMODE_FORCE;
35513171 1210
63c85238
PW
1211 _set_slave_idlemode(oh, idlemode, &v);
1212 }
1213
43b40992 1214 if (sf & SYSC_HAS_MIDLEMODE) {
092bc089
GI
1215 if (oh->flags & HWMOD_FORCE_MSTANDBY) {
1216 idlemode = HWMOD_IDLEMODE_FORCE;
1217 } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
724019b0
BC
1218 idlemode = HWMOD_IDLEMODE_NO;
1219 } else {
1220 if (sf & SYSC_HAS_ENAWAKEUP)
1221 _enable_wakeup(oh, &v);
1222 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1223 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1224 else
1225 idlemode = HWMOD_IDLEMODE_SMART;
1226 }
63c85238
PW
1227 _set_master_standbymode(oh, idlemode, &v);
1228 }
1229
a16b1f7f
PW
1230 /*
1231 * XXX The clock framework should handle this, by
1232 * calling into this code. But this must wait until the
1233 * clock structures are tagged with omap_hwmod entries
1234 */
43b40992
PW
1235 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1236 (sf & SYSC_HAS_CLOCKACTIVITY))
ca5339b1 1237 _set_clockactivity(oh, CLOCKACT_TEST_ICLK, &v);
63c85238 1238
3ca4a238 1239 _write_sysconfig(v, oh);
78f26e87
HH
1240
1241 /*
1242 * Set the autoidle bit only after setting the smartidle bit
1243 * Setting this will not have any impact on the other modules.
1244 */
1245 if (sf & SYSC_HAS_AUTOIDLE) {
1246 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1247 0 : 1;
1248 _set_module_autoidle(oh, idlemode, &v);
1249 _write_sysconfig(v, oh);
1250 }
63c85238
PW
1251}
1252
1253/**
74ff3a68 1254 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
63c85238
PW
1255 * @oh: struct omap_hwmod *
1256 *
1257 * If module is marked as SWSUP_SIDLE, force the module into slave
1258 * idle; otherwise, configure it for smart-idle. If module is marked
1259 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1260 * configure it for smart-standby. No return value.
1261 */
74ff3a68 1262static void _idle_sysc(struct omap_hwmod *oh)
63c85238 1263{
43b40992 1264 u8 idlemode, sf;
63c85238
PW
1265 u32 v;
1266
43b40992 1267 if (!oh->class->sysc)
63c85238
PW
1268 return;
1269
1270 v = oh->_sysc_cache;
43b40992 1271 sf = oh->class->sysc->sysc_flags;
63c85238 1272
43b40992 1273 if (sf & SYSC_HAS_SIDLEMODE) {
35513171 1274 if (oh->flags & HWMOD_SWSUP_SIDLE) {
006c7f18 1275 idlemode = HWMOD_IDLEMODE_FORCE;
35513171
RN
1276 } else {
1277 if (sf & SYSC_HAS_ENAWAKEUP)
1278 _enable_wakeup(oh, &v);
1279 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1280 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1281 else
1282 idlemode = HWMOD_IDLEMODE_SMART;
1283 }
63c85238
PW
1284 _set_slave_idlemode(oh, idlemode, &v);
1285 }
1286
43b40992 1287 if (sf & SYSC_HAS_MIDLEMODE) {
092bc089
GI
1288 if ((oh->flags & HWMOD_SWSUP_MSTANDBY) ||
1289 (oh->flags & HWMOD_FORCE_MSTANDBY)) {
724019b0
BC
1290 idlemode = HWMOD_IDLEMODE_FORCE;
1291 } else {
1292 if (sf & SYSC_HAS_ENAWAKEUP)
1293 _enable_wakeup(oh, &v);
1294 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1295 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1296 else
1297 idlemode = HWMOD_IDLEMODE_SMART;
1298 }
63c85238
PW
1299 _set_master_standbymode(oh, idlemode, &v);
1300 }
1301
3ca4a238
LV
1302 /* If the cached value is the same as the new value, skip the write */
1303 if (oh->_sysc_cache != v)
1304 _write_sysconfig(v, oh);
63c85238
PW
1305}
1306
1307/**
74ff3a68 1308 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
63c85238
PW
1309 * @oh: struct omap_hwmod *
1310 *
1311 * Force the module into slave idle and master suspend. No return
1312 * value.
1313 */
74ff3a68 1314static void _shutdown_sysc(struct omap_hwmod *oh)
63c85238
PW
1315{
1316 u32 v;
43b40992 1317 u8 sf;
63c85238 1318
43b40992 1319 if (!oh->class->sysc)
63c85238
PW
1320 return;
1321
1322 v = oh->_sysc_cache;
43b40992 1323 sf = oh->class->sysc->sysc_flags;
63c85238 1324
43b40992 1325 if (sf & SYSC_HAS_SIDLEMODE)
63c85238
PW
1326 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1327
43b40992 1328 if (sf & SYSC_HAS_MIDLEMODE)
63c85238
PW
1329 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1330
43b40992 1331 if (sf & SYSC_HAS_AUTOIDLE)
726072e5 1332 _set_module_autoidle(oh, 1, &v);
63c85238
PW
1333
1334 _write_sysconfig(v, oh);
1335}
1336
1337/**
1338 * _lookup - find an omap_hwmod by name
1339 * @name: find an omap_hwmod by name
1340 *
1341 * Return a pointer to an omap_hwmod by name, or NULL if not found.
63c85238
PW
1342 */
1343static struct omap_hwmod *_lookup(const char *name)
1344{
1345 struct omap_hwmod *oh, *temp_oh;
1346
1347 oh = NULL;
1348
1349 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1350 if (!strcmp(name, temp_oh->name)) {
1351 oh = temp_oh;
1352 break;
1353 }
1354 }
1355
1356 return oh;
1357}
868c157d 1358
6ae76997
BC
1359/**
1360 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1361 * @oh: struct omap_hwmod *
1362 *
1363 * Convert a clockdomain name stored in a struct omap_hwmod into a
1364 * clockdomain pointer, and save it into the struct omap_hwmod.
868c157d 1365 * Return -EINVAL if the clkdm_name lookup failed.
6ae76997
BC
1366 */
1367static int _init_clkdm(struct omap_hwmod *oh)
1368{
3bb05dbf
PW
1369 if (!oh->clkdm_name) {
1370 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
6ae76997 1371 return 0;
3bb05dbf 1372 }
6ae76997 1373
6ae76997
BC
1374 oh->clkdm = clkdm_lookup(oh->clkdm_name);
1375 if (!oh->clkdm) {
3d0cb73e 1376 pr_warn("omap_hwmod: %s: could not associate to clkdm %s\n",
6ae76997 1377 oh->name, oh->clkdm_name);
0385c582 1378 return 0;
6ae76997
BC
1379 }
1380
1381 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1382 oh->name, oh->clkdm_name);
1383
1384 return 0;
1385}
63c85238
PW
1386
1387/**
6ae76997
BC
1388 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1389 * well the clockdomain.
63c85238 1390 * @oh: struct omap_hwmod *
70f05be3 1391 * @np: device_node mapped to this hwmod
63c85238 1392 *
a2debdbd 1393 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
48d54f3f
PW
1394 * Resolves all clock names embedded in the hwmod. Returns 0 on
1395 * success, or a negative error code on failure.
63c85238 1396 */
70f05be3 1397static int _init_clocks(struct omap_hwmod *oh, struct device_node *np)
63c85238
PW
1398{
1399 int ret = 0;
1400
48d54f3f
PW
1401 if (oh->_state != _HWMOD_STATE_REGISTERED)
1402 return 0;
63c85238
PW
1403
1404 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1405
b797be1d
VH
1406 if (soc_ops.init_clkdm)
1407 ret |= soc_ops.init_clkdm(oh);
1408
63c85238
PW
1409 ret |= _init_main_clk(oh);
1410 ret |= _init_interface_clks(oh);
1411 ret |= _init_opt_clks(oh);
1412
f5c1f84b
BC
1413 if (!ret)
1414 oh->_state = _HWMOD_STATE_CLKS_INITED;
6652271a 1415 else
3d0cb73e 1416 pr_warn("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
63c85238 1417
09c35f2f 1418 return ret;
63c85238
PW
1419}
1420
5365efbe 1421/**
cc1226e7 1422 * _lookup_hardreset - fill register bit info for this hwmod/reset line
5365efbe
BC
1423 * @oh: struct omap_hwmod *
1424 * @name: name of the reset line in the context of this hwmod
cc1226e7 1425 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
5365efbe
BC
1426 *
1427 * Return the bit position of the reset line that match the
1428 * input name. Return -ENOENT if not found.
1429 */
a032d33b
PW
1430static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1431 struct omap_hwmod_rst_info *ohri)
5365efbe
BC
1432{
1433 int i;
1434
1435 for (i = 0; i < oh->rst_lines_cnt; i++) {
1436 const char *rst_line = oh->rst_lines[i].name;
1437 if (!strcmp(rst_line, name)) {
cc1226e7 1438 ohri->rst_shift = oh->rst_lines[i].rst_shift;
1439 ohri->st_shift = oh->rst_lines[i].st_shift;
1440 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1441 oh->name, __func__, rst_line, ohri->rst_shift,
1442 ohri->st_shift);
5365efbe 1443
cc1226e7 1444 return 0;
5365efbe
BC
1445 }
1446 }
1447
1448 return -ENOENT;
1449}
1450
1451/**
1452 * _assert_hardreset - assert the HW reset line of submodules
1453 * contained in the hwmod module.
1454 * @oh: struct omap_hwmod *
1455 * @name: name of the reset line to lookup and assert
1456 *
b8249cf2
KH
1457 * Some IP like dsp, ipu or iva contain processor that require an HW
1458 * reset line to be assert / deassert in order to enable fully the IP.
1459 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1460 * asserting the hardreset line on the currently-booted SoC, or passes
1461 * along the return value from _lookup_hardreset() or the SoC's
1462 * assert_hardreset code.
5365efbe
BC
1463 */
1464static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1465{
cc1226e7 1466 struct omap_hwmod_rst_info ohri;
a032d33b 1467 int ret = -EINVAL;
5365efbe
BC
1468
1469 if (!oh)
1470 return -EINVAL;
1471
b8249cf2
KH
1472 if (!soc_ops.assert_hardreset)
1473 return -ENOSYS;
1474
cc1226e7 1475 ret = _lookup_hardreset(oh, name, &ohri);
a032d33b 1476 if (ret < 0)
cc1226e7 1477 return ret;
5365efbe 1478
b8249cf2
KH
1479 ret = soc_ops.assert_hardreset(oh, &ohri);
1480
1481 return ret;
5365efbe
BC
1482}
1483
1484/**
1485 * _deassert_hardreset - deassert the HW reset line of submodules contained
1486 * in the hwmod module.
1487 * @oh: struct omap_hwmod *
1488 * @name: name of the reset line to look up and deassert
1489 *
b8249cf2
KH
1490 * Some IP like dsp, ipu or iva contain processor that require an HW
1491 * reset line to be assert / deassert in order to enable fully the IP.
1492 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1493 * deasserting the hardreset line on the currently-booted SoC, or passes
1494 * along the return value from _lookup_hardreset() or the SoC's
1495 * deassert_hardreset code.
5365efbe
BC
1496 */
1497static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1498{
cc1226e7 1499 struct omap_hwmod_rst_info ohri;
b8249cf2 1500 int ret = -EINVAL;
5365efbe
BC
1501
1502 if (!oh)
1503 return -EINVAL;
1504
b8249cf2
KH
1505 if (!soc_ops.deassert_hardreset)
1506 return -ENOSYS;
1507
cc1226e7 1508 ret = _lookup_hardreset(oh, name, &ohri);
c48cd659 1509 if (ret < 0)
cc1226e7 1510 return ret;
5365efbe 1511
e8e96dff
ORL
1512 if (oh->clkdm) {
1513 /*
1514 * A clockdomain must be in SW_SUP otherwise reset
1515 * might not be completed. The clockdomain can be set
1516 * in HW_AUTO only when the module become ready.
1517 */
1d9a5425 1518 clkdm_deny_idle(oh->clkdm);
e8e96dff
ORL
1519 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1520 if (ret) {
1521 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1522 oh->name, oh->clkdm->name, ret);
1523 return ret;
1524 }
1525 }
1526
1527 _enable_clocks(oh);
1528 if (soc_ops.enable_module)
1529 soc_ops.enable_module(oh);
1530
b8249cf2 1531 ret = soc_ops.deassert_hardreset(oh, &ohri);
e8e96dff
ORL
1532
1533 if (soc_ops.disable_module)
1534 soc_ops.disable_module(oh);
1535 _disable_clocks(oh);
1536
cc1226e7 1537 if (ret == -EBUSY)
3d0cb73e 1538 pr_warn("omap_hwmod: %s: failed to hardreset\n", oh->name);
5365efbe 1539
80d2518d 1540 if (oh->clkdm) {
e8e96dff
ORL
1541 /*
1542 * Set the clockdomain to HW_AUTO, assuming that the
1543 * previous state was HW_AUTO.
1544 */
1d9a5425 1545 clkdm_allow_idle(oh->clkdm);
80d2518d
TK
1546
1547 clkdm_hwmod_disable(oh->clkdm, oh);
e8e96dff
ORL
1548 }
1549
cc1226e7 1550 return ret;
5365efbe
BC
1551}
1552
1553/**
1554 * _read_hardreset - read the HW reset line state of submodules
1555 * contained in the hwmod module
1556 * @oh: struct omap_hwmod *
1557 * @name: name of the reset line to look up and read
1558 *
b8249cf2
KH
1559 * Return the state of the reset line. Returns -EINVAL if @oh is
1560 * null, -ENOSYS if we have no way of reading the hardreset line
1561 * status on the currently-booted SoC, or passes along the return
1562 * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1563 * code.
5365efbe
BC
1564 */
1565static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1566{
cc1226e7 1567 struct omap_hwmod_rst_info ohri;
a032d33b 1568 int ret = -EINVAL;
5365efbe
BC
1569
1570 if (!oh)
1571 return -EINVAL;
1572
b8249cf2
KH
1573 if (!soc_ops.is_hardreset_asserted)
1574 return -ENOSYS;
1575
cc1226e7 1576 ret = _lookup_hardreset(oh, name, &ohri);
a032d33b 1577 if (ret < 0)
cc1226e7 1578 return ret;
5365efbe 1579
b8249cf2 1580 return soc_ops.is_hardreset_asserted(oh, &ohri);
5365efbe
BC
1581}
1582
747834ab 1583/**
eb05f691 1584 * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
747834ab
PW
1585 * @oh: struct omap_hwmod *
1586 *
eb05f691
ORL
1587 * If all hardreset lines associated with @oh are asserted, then return true.
1588 * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1589 * associated with @oh are asserted, then return false.
747834ab 1590 * This function is used to avoid executing some parts of the IP block
eb05f691 1591 * enable/disable sequence if its hardreset line is set.
747834ab 1592 */
eb05f691 1593static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
747834ab 1594{
eb05f691 1595 int i, rst_cnt = 0;
747834ab
PW
1596
1597 if (oh->rst_lines_cnt == 0)
1598 return false;
1599
1600 for (i = 0; i < oh->rst_lines_cnt; i++)
1601 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
eb05f691
ORL
1602 rst_cnt++;
1603
1604 if (oh->rst_lines_cnt == rst_cnt)
1605 return true;
747834ab
PW
1606
1607 return false;
1608}
1609
e9332b6e
PW
1610/**
1611 * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1612 * hard-reset
1613 * @oh: struct omap_hwmod *
1614 *
1615 * If any hardreset lines associated with @oh are asserted, then
1616 * return true. Otherwise, if no hardreset lines associated with @oh
1617 * are asserted, or if @oh has no hardreset lines, then return false.
1618 * This function is used to avoid executing some parts of the IP block
1619 * enable/disable sequence if any hardreset line is set.
1620 */
1621static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1622{
1623 int rst_cnt = 0;
1624 int i;
1625
1626 for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1627 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1628 rst_cnt++;
1629
1630 return (rst_cnt) ? true : false;
1631}
1632
747834ab
PW
1633/**
1634 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1635 * @oh: struct omap_hwmod *
1636 *
1637 * Disable the PRCM module mode related to the hwmod @oh.
1638 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1639 */
1640static int _omap4_disable_module(struct omap_hwmod *oh)
1641{
1642 int v;
1643
8823ddf2
TL
1644 if (!oh->clkdm || !oh->prcm.omap4.modulemode ||
1645 _omap4_clkctrl_managed_by_clkfwk(oh))
747834ab
PW
1646 return -EINVAL;
1647
eb05f691
ORL
1648 /*
1649 * Since integration code might still be doing something, only
1650 * disable if all lines are under hardreset.
1651 */
e9332b6e 1652 if (_are_any_hardreset_lines_asserted(oh))
eb05f691
ORL
1653 return 0;
1654
747834ab
PW
1655 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1656
128603f0
TK
1657 omap_cm_module_disable(oh->clkdm->prcm_partition, oh->clkdm->cm_inst,
1658 oh->prcm.omap4.clkctrl_offs);
747834ab 1659
747834ab
PW
1660 v = _omap4_wait_target_disable(oh);
1661 if (v)
1662 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1663 oh->name);
1664
1665 return 0;
1666}
1667
63c85238 1668/**
bd36179e 1669 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
63c85238
PW
1670 * @oh: struct omap_hwmod *
1671 *
1672 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
30e105c0
PW
1673 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1674 * reset this way, -EINVAL if the hwmod is in the wrong state,
1675 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
2cb06814
BC
1676 *
1677 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
bd36179e 1678 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
2cb06814
BC
1679 * use the SYSCONFIG softreset bit to provide the status.
1680 *
bd36179e
PW
1681 * Note that some IP like McBSP do have reset control but don't have
1682 * reset status.
63c85238 1683 */
bd36179e 1684static int _ocp_softreset(struct omap_hwmod *oh)
63c85238 1685{
613ad0e9 1686 u32 v;
6f8b7ff5 1687 int c = 0;
96835af9 1688 int ret = 0;
63c85238 1689
43b40992 1690 if (!oh->class->sysc ||
2cb06814 1691 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
30e105c0 1692 return -ENOENT;
63c85238
PW
1693
1694 /* clocks must be on for this operation */
1695 if (oh->_state != _HWMOD_STATE_ENABLED) {
7852ec05
PW
1696 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1697 oh->name);
63c85238
PW
1698 return -EINVAL;
1699 }
1700
96835af9
BC
1701 /* For some modules, all optionnal clocks need to be enabled as well */
1702 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1703 _enable_optional_clocks(oh);
1704
bd36179e 1705 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
63c85238
PW
1706
1707 v = oh->_sysc_cache;
96835af9
BC
1708 ret = _set_softreset(oh, &v);
1709 if (ret)
1710 goto dis_opt_clks;
313a76ee 1711
63c85238
PW
1712 _write_sysconfig(v, oh);
1713
d99de7f5
FGL
1714 if (oh->class->sysc->srst_udelay)
1715 udelay(oh->class->sysc->srst_udelay);
1716
613ad0e9 1717 c = _wait_softreset_complete(oh);
01142519 1718 if (c == MAX_MODULE_SOFTRESET_WAIT) {
3d0cb73e
JP
1719 pr_warn("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1720 oh->name, MAX_MODULE_SOFTRESET_WAIT);
01142519
IS
1721 ret = -ETIMEDOUT;
1722 goto dis_opt_clks;
1723 } else {
5365efbe 1724 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
01142519
IS
1725 }
1726
1727 ret = _clear_softreset(oh, &v);
1728 if (ret)
1729 goto dis_opt_clks;
1730
1731 _write_sysconfig(v, oh);
63c85238
PW
1732
1733 /*
1734 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1735 * _wait_target_ready() or _reset()
1736 */
1737
96835af9
BC
1738dis_opt_clks:
1739 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1740 _disable_optional_clocks(oh);
1741
1742 return ret;
63c85238
PW
1743}
1744
bd36179e
PW
1745/**
1746 * _reset - reset an omap_hwmod
1747 * @oh: struct omap_hwmod *
1748 *
30e105c0
PW
1749 * Resets an omap_hwmod @oh. If the module has a custom reset
1750 * function pointer defined, then call it to reset the IP block, and
1751 * pass along its return value to the caller. Otherwise, if the IP
1752 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1753 * associated with it, call a function to reset the IP block via that
1754 * method, and pass along the return value to the caller. Finally, if
1755 * the IP block has some hardreset lines associated with it, assert
1756 * all of those, but do _not_ deassert them. (This is because driver
1757 * authors have expressed an apparent requirement to control the
1758 * deassertion of the hardreset lines themselves.)
1759 *
1760 * The default software reset mechanism for most OMAP IP blocks is
1761 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1762 * hwmods cannot be reset via this method. Some are not targets and
1763 * therefore have no OCP header registers to access. Others (like the
1764 * IVA) have idiosyncratic reset sequences. So for these relatively
1765 * rare cases, custom reset code can be supplied in the struct
6668546f
KVA
1766 * omap_hwmod_class .reset function pointer.
1767 *
1768 * _set_dmadisable() is called to set the DMADISABLE bit so that it
1769 * does not prevent idling of the system. This is necessary for cases
1770 * where ROMCODE/BOOTLOADER uses dma and transfers control to the
1771 * kernel without disabling dma.
1772 *
1773 * Passes along the return value from either _ocp_softreset() or the
1774 * custom reset function - these must return -EINVAL if the hwmod
1775 * cannot be reset this way or if the hwmod is in the wrong state,
1776 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
bd36179e
PW
1777 */
1778static int _reset(struct omap_hwmod *oh)
1779{
30e105c0 1780 int i, r;
bd36179e
PW
1781
1782 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1783
30e105c0
PW
1784 if (oh->class->reset) {
1785 r = oh->class->reset(oh);
1786 } else {
1787 if (oh->rst_lines_cnt > 0) {
1788 for (i = 0; i < oh->rst_lines_cnt; i++)
1789 _assert_hardreset(oh, oh->rst_lines[i].name);
1790 return 0;
1791 } else {
1792 r = _ocp_softreset(oh);
1793 if (r == -ENOENT)
1794 r = 0;
1795 }
1796 }
1797
6668546f
KVA
1798 _set_dmadisable(oh);
1799
9c8b0ec7 1800 /*
30e105c0
PW
1801 * OCP_SYSCONFIG bits need to be reprogrammed after a
1802 * softreset. The _enable() function should be split to avoid
1803 * the rewrite of the OCP_SYSCONFIG register.
9c8b0ec7 1804 */
2800852a
RN
1805 if (oh->class->sysc) {
1806 _update_sysc_cache(oh);
1807 _enable_sysc(oh);
1808 }
1809
30e105c0 1810 return r;
bd36179e
PW
1811}
1812
e6d3a8b0
RN
1813/**
1814 * _omap4_update_context_lost - increment hwmod context loss counter if
1815 * hwmod context was lost, and clear hardware context loss reg
1816 * @oh: hwmod to check for context loss
1817 *
1818 * If the PRCM indicates that the hwmod @oh lost context, increment
1819 * our in-memory context loss counter, and clear the RM_*_CONTEXT
1820 * bits. No return value.
1821 */
1822static void _omap4_update_context_lost(struct omap_hwmod *oh)
1823{
1824 if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
1825 return;
1826
1827 if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
1828 oh->clkdm->pwrdm.ptr->prcm_offs,
1829 oh->prcm.omap4.context_offs))
1830 return;
1831
1832 oh->prcm.omap4.context_lost_counter++;
1833 prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
1834 oh->clkdm->pwrdm.ptr->prcm_offs,
1835 oh->prcm.omap4.context_offs);
1836}
1837
1838/**
1839 * _omap4_get_context_lost - get context loss counter for a hwmod
1840 * @oh: hwmod to get context loss counter for
1841 *
1842 * Returns the in-memory context loss counter for a hwmod.
1843 */
1844static int _omap4_get_context_lost(struct omap_hwmod *oh)
1845{
1846 return oh->prcm.omap4.context_lost_counter;
1847}
1848
6d266f63
PW
1849/**
1850 * _enable_preprogram - Pre-program an IP block during the _enable() process
1851 * @oh: struct omap_hwmod *
1852 *
1853 * Some IP blocks (such as AESS) require some additional programming
1854 * after enable before they can enter idle. If a function pointer to
1855 * do so is present in the hwmod data, then call it and pass along the
1856 * return value; otherwise, return 0.
1857 */
0f497039 1858static int _enable_preprogram(struct omap_hwmod *oh)
6d266f63
PW
1859{
1860 if (!oh->class->enable_preprogram)
1861 return 0;
1862
1863 return oh->class->enable_preprogram(oh);
1864}
1865
63c85238 1866/**
dc6d1cda 1867 * _enable - enable an omap_hwmod
63c85238
PW
1868 * @oh: struct omap_hwmod *
1869 *
1870 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
dc6d1cda
PW
1871 * register target. Returns -EINVAL if the hwmod is in the wrong
1872 * state or passes along the return value of _wait_target_ready().
63c85238 1873 */
dc6d1cda 1874static int _enable(struct omap_hwmod *oh)
63c85238 1875{
747834ab 1876 int r;
63c85238 1877
34617e2a
BC
1878 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
1879
aacf0941 1880 /*
64813c3f 1881 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
b4281455 1882 * state at init.
aacf0941
RN
1883 */
1884 if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
aacf0941
RN
1885 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
1886 return 0;
1887 }
1888
63c85238
PW
1889 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
1890 oh->_state != _HWMOD_STATE_IDLE &&
1891 oh->_state != _HWMOD_STATE_DISABLED) {
4f8a428d
RK
1892 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
1893 oh->name);
63c85238
PW
1894 return -EINVAL;
1895 }
1896
31f62866 1897 /*
eb05f691 1898 * If an IP block contains HW reset lines and all of them are
747834ab
PW
1899 * asserted, we let integration code associated with that
1900 * block handle the enable. We've received very little
1901 * information on what those driver authors need, and until
1902 * detailed information is provided and the driver code is
1903 * posted to the public lists, this is probably the best we
1904 * can do.
31f62866 1905 */
eb05f691 1906 if (_are_all_hardreset_lines_asserted(oh))
747834ab 1907 return 0;
63c85238 1908
665d0013 1909 _add_initiator_dep(oh, mpu_oh);
34617e2a 1910
665d0013
RN
1911 if (oh->clkdm) {
1912 /*
1913 * A clockdomain must be in SW_SUP before enabling
1914 * completely the module. The clockdomain can be set
1915 * in HW_AUTO only when the module become ready.
1916 */
1d9a5425 1917 clkdm_deny_idle(oh->clkdm);
665d0013
RN
1918 r = clkdm_hwmod_enable(oh->clkdm, oh);
1919 if (r) {
1920 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1921 oh->name, oh->clkdm->name, r);
1922 return r;
1923 }
34617e2a 1924 }
665d0013
RN
1925
1926 _enable_clocks(oh);
9ebfd285
KH
1927 if (soc_ops.enable_module)
1928 soc_ops.enable_module(oh);
fa200222 1929 if (oh->flags & HWMOD_BLOCK_WFI)
f7b861b7 1930 cpu_idle_poll_ctrl(true);
34617e2a 1931
e6d3a8b0
RN
1932 if (soc_ops.update_context_lost)
1933 soc_ops.update_context_lost(oh);
1934
8f6aa8ee
KH
1935 r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
1936 -EINVAL;
8ff42da4 1937 if (oh->clkdm && !(oh->flags & HWMOD_CLKDM_NOAUTO))
1d9a5425 1938 clkdm_allow_idle(oh->clkdm);
665d0013 1939
1d9a5425 1940 if (!r) {
665d0013
RN
1941 oh->_state = _HWMOD_STATE_ENABLED;
1942
1943 /* Access the sysconfig only if the target is ready */
1944 if (oh->class->sysc) {
1945 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
1946 _update_sysc_cache(oh);
1947 _enable_sysc(oh);
1948 }
6d266f63 1949 r = _enable_preprogram(oh);
665d0013 1950 } else {
2577a4a6
PW
1951 if (soc_ops.disable_module)
1952 soc_ops.disable_module(oh);
665d0013 1953 _disable_clocks(oh);
812ce9d2
LV
1954 pr_err("omap_hwmod: %s: _wait_target_ready failed: %d\n",
1955 oh->name, r);
34617e2a 1956
665d0013
RN
1957 if (oh->clkdm)
1958 clkdm_hwmod_disable(oh->clkdm, oh);
9a23dfe1
BC
1959 }
1960
63c85238
PW
1961 return r;
1962}
1963
1964/**
dc6d1cda 1965 * _idle - idle an omap_hwmod
63c85238
PW
1966 * @oh: struct omap_hwmod *
1967 *
1968 * Idles an omap_hwmod @oh. This should be called once the hwmod has
dc6d1cda
PW
1969 * no further work. Returns -EINVAL if the hwmod is in the wrong
1970 * state or returns 0.
63c85238 1971 */
dc6d1cda 1972static int _idle(struct omap_hwmod *oh)
63c85238 1973{
2e18f5a1
LV
1974 if (oh->flags & HWMOD_NO_IDLE) {
1975 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
1976 return 0;
1977 }
1978
34617e2a
BC
1979 pr_debug("omap_hwmod: %s: idling\n", oh->name);
1980
c20c8f75
SA
1981 if (_are_all_hardreset_lines_asserted(oh))
1982 return 0;
1983
63c85238 1984 if (oh->_state != _HWMOD_STATE_ENABLED) {
4f8a428d
RK
1985 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
1986 oh->name);
63c85238
PW
1987 return -EINVAL;
1988 }
1989
43b40992 1990 if (oh->class->sysc)
74ff3a68 1991 _idle_sysc(oh);
63c85238 1992 _del_initiator_dep(oh, mpu_oh);
bfc141e3 1993
8ff42da4
RQ
1994 /*
1995 * If HWMOD_CLKDM_NOAUTO is set then we don't
1996 * deny idle the clkdm again since idle was already denied
1997 * in _enable()
1998 */
1999 if (oh->clkdm && !(oh->flags & HWMOD_CLKDM_NOAUTO))
1d9a5425
TK
2000 clkdm_deny_idle(oh->clkdm);
2001
fa200222 2002 if (oh->flags & HWMOD_BLOCK_WFI)
f7b861b7 2003 cpu_idle_poll_ctrl(false);
9ebfd285
KH
2004 if (soc_ops.disable_module)
2005 soc_ops.disable_module(oh);
bfc141e3 2006
45c38252
BC
2007 /*
2008 * The module must be in idle mode before disabling any parents
2009 * clocks. Otherwise, the parent clock might be disabled before
2010 * the module transition is done, and thus will prevent the
2011 * transition to complete properly.
2012 */
2013 _disable_clocks(oh);
1d9a5425
TK
2014 if (oh->clkdm) {
2015 clkdm_allow_idle(oh->clkdm);
665d0013 2016 clkdm_hwmod_disable(oh->clkdm, oh);
1d9a5425 2017 }
63c85238
PW
2018
2019 oh->_state = _HWMOD_STATE_IDLE;
2020
2021 return 0;
2022}
2023
2024/**
2025 * _shutdown - shutdown an omap_hwmod
2026 * @oh: struct omap_hwmod *
2027 *
2028 * Shut down an omap_hwmod @oh. This should be called when the driver
2029 * used for the hwmod is removed or unloaded or if the driver is not
2030 * used by the system. Returns -EINVAL if the hwmod is in the wrong
2031 * state or returns 0.
2032 */
2033static int _shutdown(struct omap_hwmod *oh)
2034{
9c8b0ec7 2035 int ret, i;
e4dc8f50
PW
2036 u8 prev_state;
2037
c20c8f75
SA
2038 if (_are_all_hardreset_lines_asserted(oh))
2039 return 0;
2040
63c85238
PW
2041 if (oh->_state != _HWMOD_STATE_IDLE &&
2042 oh->_state != _HWMOD_STATE_ENABLED) {
4f8a428d
RK
2043 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2044 oh->name);
63c85238
PW
2045 return -EINVAL;
2046 }
2047
2048 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2049
e4dc8f50
PW
2050 if (oh->class->pre_shutdown) {
2051 prev_state = oh->_state;
2052 if (oh->_state == _HWMOD_STATE_IDLE)
dc6d1cda 2053 _enable(oh);
e4dc8f50
PW
2054 ret = oh->class->pre_shutdown(oh);
2055 if (ret) {
2056 if (prev_state == _HWMOD_STATE_IDLE)
dc6d1cda 2057 _idle(oh);
e4dc8f50
PW
2058 return ret;
2059 }
2060 }
2061
6481c73c
MV
2062 if (oh->class->sysc) {
2063 if (oh->_state == _HWMOD_STATE_IDLE)
2064 _enable(oh);
74ff3a68 2065 _shutdown_sysc(oh);
6481c73c 2066 }
5365efbe 2067
3827f949
BC
2068 /* clocks and deps are already disabled in idle */
2069 if (oh->_state == _HWMOD_STATE_ENABLED) {
2070 _del_initiator_dep(oh, mpu_oh);
2071 /* XXX what about the other system initiators here? dma, dsp */
fa200222 2072 if (oh->flags & HWMOD_BLOCK_WFI)
f7b861b7 2073 cpu_idle_poll_ctrl(false);
9ebfd285
KH
2074 if (soc_ops.disable_module)
2075 soc_ops.disable_module(oh);
45c38252 2076 _disable_clocks(oh);
665d0013
RN
2077 if (oh->clkdm)
2078 clkdm_hwmod_disable(oh->clkdm, oh);
3827f949 2079 }
63c85238
PW
2080 /* XXX Should this code also force-disable the optional clocks? */
2081
9c8b0ec7
PW
2082 for (i = 0; i < oh->rst_lines_cnt; i++)
2083 _assert_hardreset(oh, oh->rst_lines[i].name);
31f62866 2084
63c85238
PW
2085 oh->_state = _HWMOD_STATE_DISABLED;
2086
2087 return 0;
2088}
2089
5e863c56
TL
2090static int of_dev_find_hwmod(struct device_node *np,
2091 struct omap_hwmod *oh)
2092{
2093 int count, i, res;
2094 const char *p;
2095
2096 count = of_property_count_strings(np, "ti,hwmods");
2097 if (count < 1)
2098 return -ENODEV;
2099
2100 for (i = 0; i < count; i++) {
2101 res = of_property_read_string_index(np, "ti,hwmods",
2102 i, &p);
2103 if (res)
2104 continue;
2105 if (!strcmp(p, oh->name)) {
2106 pr_debug("omap_hwmod: dt %s[%i] uses hwmod %s\n",
2107 np->name, i, oh->name);
2108 return i;
2109 }
2110 }
2111
2112 return -ENODEV;
2113}
2114
079abade
SS
2115/**
2116 * of_dev_hwmod_lookup - look up needed hwmod from dt blob
2117 * @np: struct device_node *
2118 * @oh: struct omap_hwmod *
5e863c56
TL
2119 * @index: index of the entry found
2120 * @found: struct device_node * found or NULL
079abade
SS
2121 *
2122 * Parse the dt blob and find out needed hwmod. Recursive function is
2123 * implemented to take care hierarchical dt blob parsing.
5e863c56 2124 * Return: Returns 0 on success, -ENODEV when not found.
079abade 2125 */
5e863c56
TL
2126static int of_dev_hwmod_lookup(struct device_node *np,
2127 struct omap_hwmod *oh,
2128 int *index,
2129 struct device_node **found)
079abade 2130{
5e863c56
TL
2131 struct device_node *np0 = NULL;
2132 int res;
2133
2134 res = of_dev_find_hwmod(np, oh);
2135 if (res >= 0) {
2136 *found = np;
2137 *index = res;
2138 return 0;
2139 }
079abade
SS
2140
2141 for_each_child_of_node(np, np0) {
5e863c56
TL
2142 struct device_node *fc;
2143 int i;
2144
2145 res = of_dev_hwmod_lookup(np0, oh, &i, &fc);
2146 if (res == 0) {
2147 *found = fc;
2148 *index = i;
2149 return 0;
079abade
SS
2150 }
2151 }
5e863c56
TL
2152
2153 *found = NULL;
2154 *index = 0;
2155
2156 return -ENODEV;
079abade
SS
2157}
2158
6c72b355
TL
2159/**
2160 * omap_hwmod_parse_module_range - map module IO range from device tree
2161 * @oh: struct omap_hwmod *
2162 * @np: struct device_node *
2163 *
2164 * Parse the device tree range an interconnect target module provides
2165 * for it's child device IP blocks. This way we can support the old
2166 * "ti,hwmods" property with just dts data without a need for platform
2167 * data for IO resources. And we don't need all the child IP device
2168 * nodes available in the dts.
2169 */
2170int omap_hwmod_parse_module_range(struct omap_hwmod *oh,
2171 struct device_node *np,
2172 struct resource *res)
2173{
2174 struct property *prop;
2175 const __be32 *ranges;
2176 const char *name;
2177 u32 nr_addr, nr_size;
2178 u64 base, size;
2179 int len, error;
2180
2181 if (!res)
2182 return -EINVAL;
2183
2184 ranges = of_get_property(np, "ranges", &len);
2185 if (!ranges)
2186 return -ENOENT;
2187
2188 len /= sizeof(*ranges);
2189
2190 if (len < 3)
2191 return -EINVAL;
2192
2193 of_property_for_each_string(np, "compatible", prop, name)
2194 if (!strncmp("ti,sysc-", name, 8))
2195 break;
2196
2197 if (!name)
2198 return -ENOENT;
2199
2200 error = of_property_read_u32(np, "#address-cells", &nr_addr);
2201 if (error)
2202 return -ENOENT;
2203
2204 error = of_property_read_u32(np, "#size-cells", &nr_size);
2205 if (error)
2206 return -ENOENT;
2207
2208 if (nr_addr != 1 || nr_size != 1) {
2209 pr_err("%s: invalid range for %s->%s\n", __func__,
2210 oh->name, np->name);
2211 return -EINVAL;
2212 }
2213
2214 ranges++;
2215 base = of_translate_address(np, ranges++);
2216 size = be32_to_cpup(ranges);
2217
2218 pr_debug("omap_hwmod: %s %s at 0x%llx size 0x%llx\n",
2219 oh->name, np->name, base, size);
2220
2221 res->start = base;
2222 res->end = base + size - 1;
2223 res->flags = IORESOURCE_MEM;
2224
2225 return 0;
2226}
2227
381d033a
PW
2228/**
2229 * _init_mpu_rt_base - populate the virtual address for a hwmod
2230 * @oh: struct omap_hwmod * to locate the virtual address
f92d9597 2231 * @data: (unused, caller should pass NULL)
5e863c56 2232 * @index: index of the reg entry iospace in device tree
f92d9597 2233 * @np: struct device_node * of the IP block's device node in the DT data
381d033a
PW
2234 *
2235 * Cache the virtual address used by the MPU to access this IP block's
2236 * registers. This address is needed early so the OCP registers that
2237 * are part of the device's address space can be ioremapped properly.
6423d6df 2238 *
9a258afa
RQ
2239 * If SYSC access is not needed, the registers will not be remapped
2240 * and non-availability of MPU access is not treated as an error.
2241 *
6423d6df
SA
2242 * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and
2243 * -ENXIO on absent or invalid register target address space.
381d033a 2244 */
f92d9597 2245static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data,
5e863c56 2246 int index, struct device_node *np)
381d033a 2247{
079abade 2248 void __iomem *va_start = NULL;
6c72b355
TL
2249 struct resource res;
2250 int error;
c9aafd23
PW
2251
2252 if (!oh)
6423d6df 2253 return -EINVAL;
c9aafd23 2254
2221b5cd
PW
2255 _save_mpu_port_index(oh);
2256
9a258afa
RQ
2257 /* if we don't need sysc access we don't need to ioremap */
2258 if (!oh->class->sysc)
2259 return 0;
2260
2261 /* we can't continue without MPU PORT if we need sysc access */
381d033a 2262 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
6423d6df 2263 return -ENXIO;
381d033a 2264
9cffb1a0
TL
2265 if (!np) {
2266 pr_err("omap_hwmod: %s: no dt node\n", oh->name);
2267 return -ENXIO;
c9aafd23
PW
2268 }
2269
9cffb1a0
TL
2270 /* Do we have a dts range for the interconnect target module? */
2271 error = omap_hwmod_parse_module_range(oh, np, &res);
2272 if (!error)
2273 va_start = ioremap(res.start, resource_size(&res));
2274
2275 /* No ranges, rely on device reg entry */
2276 if (!va_start)
2277 va_start = of_iomap(np, index + oh->mpu_rt_idx);
c9aafd23 2278 if (!va_start) {
9cffb1a0
TL
2279 pr_err("omap_hwmod: %s: Missing dt reg%i for %pOF\n",
2280 oh->name, index, np);
6423d6df 2281 return -ENXIO;
c9aafd23
PW
2282 }
2283
2284 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2285 oh->name, va_start);
2286
2287 oh->_mpu_rt_va = va_start;
6423d6df 2288 return 0;
381d033a
PW
2289}
2290
2291/**
2292 * _init - initialize internal data for the hwmod @oh
2293 * @oh: struct omap_hwmod *
2294 * @n: (unused)
2295 *
2296 * Look up the clocks and the address space used by the MPU to access
2297 * registers belonging to the hwmod @oh. @oh must already be
2298 * registered at this point. This is the first of two phases for
2299 * hwmod initialization. Code called here does not touch any hardware
2300 * registers, it simply prepares internal data structures. Returns 0
6423d6df
SA
2301 * upon success or if the hwmod isn't registered or if the hwmod's
2302 * address space is not defined, or -EINVAL upon failure.
381d033a
PW
2303 */
2304static int __init _init(struct omap_hwmod *oh, void *data)
2305{
5e863c56 2306 int r, index;
f92d9597 2307 struct device_node *np = NULL;
1aa8f0cb 2308 struct device_node *bus;
381d033a
PW
2309
2310 if (oh->_state != _HWMOD_STATE_REGISTERED)
2311 return 0;
2312
1aa8f0cb
TL
2313 bus = of_find_node_by_name(NULL, "ocp");
2314 if (!bus)
2315 return -ENODEV;
5e863c56 2316
1aa8f0cb
TL
2317 r = of_dev_hwmod_lookup(bus, oh, &index, &np);
2318 if (r)
2319 pr_debug("omap_hwmod: %s missing dt data\n", oh->name);
2320 else if (np && index)
2321 pr_warn("omap_hwmod: %s using broken dt data from %s\n",
2322 oh->name, np->name);
f92d9597 2323
9a258afa
RQ
2324 r = _init_mpu_rt_base(oh, NULL, index, np);
2325 if (r < 0) {
2326 WARN(1, "omap_hwmod: %s: doesn't have mpu register target base\n",
2327 oh->name);
2328 return 0;
6423d6df 2329 }
381d033a 2330
70f05be3 2331 r = _init_clocks(oh, np);
c48cd659 2332 if (r < 0) {
381d033a
PW
2333 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2334 return -EINVAL;
2335 }
2336
3d36ad7e 2337 if (np) {
f92d9597
RN
2338 if (of_find_property(np, "ti,no-reset-on-init", NULL))
2339 oh->flags |= HWMOD_INIT_NO_RESET;
2340 if (of_find_property(np, "ti,no-idle-on-init", NULL))
2341 oh->flags |= HWMOD_INIT_NO_IDLE;
2e18f5a1
LV
2342 if (of_find_property(np, "ti,no-idle", NULL))
2343 oh->flags |= HWMOD_NO_IDLE;
3d36ad7e 2344 }
f92d9597 2345
381d033a
PW
2346 oh->_state = _HWMOD_STATE_INITIALIZED;
2347
2348 return 0;
2349}
2350
63c85238 2351/**
64813c3f 2352 * _setup_iclk_autoidle - configure an IP block's interface clocks
63c85238
PW
2353 * @oh: struct omap_hwmod *
2354 *
64813c3f
PW
2355 * Set up the module's interface clocks. XXX This function is still mostly
2356 * a stub; implementing this properly requires iclk autoidle usecounting in
2357 * the clock code. No return value.
63c85238 2358 */
64813c3f 2359static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
63c85238 2360{
5d95dde7 2361 struct omap_hwmod_ocp_if *os;
b8e1bddc 2362
381d033a 2363 if (oh->_state != _HWMOD_STATE_INITIALIZED)
64813c3f 2364 return;
48d54f3f 2365
b8e1bddc 2366 list_for_each_entry(os, &oh->slave_ports, node) {
5d95dde7 2367 if (!os->_clk)
64813c3f 2368 continue;
63c85238 2369
64813c3f
PW
2370 if (os->flags & OCPIF_SWSUP_IDLE) {
2371 /* XXX omap_iclk_deny_idle(c); */
2372 } else {
2373 /* XXX omap_iclk_allow_idle(c); */
5d95dde7 2374 clk_enable(os->_clk);
63c85238
PW
2375 }
2376 }
2377
64813c3f
PW
2378 return;
2379}
2380
2381/**
2382 * _setup_reset - reset an IP block during the setup process
2383 * @oh: struct omap_hwmod *
2384 *
2385 * Reset the IP block corresponding to the hwmod @oh during the setup
2386 * process. The IP block is first enabled so it can be successfully
2387 * reset. Returns 0 upon success or a negative error code upon
2388 * failure.
2389 */
2390static int __init _setup_reset(struct omap_hwmod *oh)
2391{
2392 int r;
2393
2394 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2395 return -EINVAL;
63c85238 2396
5fb3d522
PW
2397 if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
2398 return -EPERM;
2399
747834ab
PW
2400 if (oh->rst_lines_cnt == 0) {
2401 r = _enable(oh);
2402 if (r) {
3d0cb73e
JP
2403 pr_warn("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2404 oh->name, oh->_state);
747834ab
PW
2405 return -EINVAL;
2406 }
9a23dfe1 2407 }
63c85238 2408
2800852a 2409 if (!(oh->flags & HWMOD_INIT_NO_RESET))
64813c3f
PW
2410 r = _reset(oh);
2411
2412 return r;
2413}
2414
2415/**
2416 * _setup_postsetup - transition to the appropriate state after _setup
2417 * @oh: struct omap_hwmod *
2418 *
2419 * Place an IP block represented by @oh into a "post-setup" state --
2420 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
2421 * this function is called at the end of _setup().) The postsetup
2422 * state for an IP block can be changed by calling
2423 * omap_hwmod_enter_postsetup_state() early in the boot process,
2424 * before one of the omap_hwmod_setup*() functions are called for the
2425 * IP block.
2426 *
2427 * The IP block stays in this state until a PM runtime-based driver is
2428 * loaded for that IP block. A post-setup state of IDLE is
2429 * appropriate for almost all IP blocks with runtime PM-enabled
2430 * drivers, since those drivers are able to enable the IP block. A
2431 * post-setup state of ENABLED is appropriate for kernels with PM
2432 * runtime disabled. The DISABLED state is appropriate for unusual IP
2433 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2434 * included, since the WDTIMER starts running on reset and will reset
2435 * the MPU if left active.
2436 *
2437 * This post-setup mechanism is deprecated. Once all of the OMAP
2438 * drivers have been converted to use PM runtime, and all of the IP
2439 * block data and interconnect data is available to the hwmod code, it
2440 * should be possible to replace this mechanism with a "lazy reset"
2441 * arrangement. In a "lazy reset" setup, each IP block is enabled
2442 * when the driver first probes, then all remaining IP blocks without
2443 * drivers are either shut down or enabled after the drivers have
2444 * loaded. However, this cannot take place until the above
2445 * preconditions have been met, since otherwise the late reset code
2446 * has no way of knowing which IP blocks are in use by drivers, and
2447 * which ones are unused.
2448 *
2449 * No return value.
2450 */
2451static void __init _setup_postsetup(struct omap_hwmod *oh)
2452{
2453 u8 postsetup_state;
2454
2455 if (oh->rst_lines_cnt > 0)
2456 return;
76e5589e 2457
2092e5cc
PW
2458 postsetup_state = oh->_postsetup_state;
2459 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2460 postsetup_state = _HWMOD_STATE_ENABLED;
2461
2462 /*
2463 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2464 * it should be set by the core code as a runtime flag during startup
2465 */
2e18f5a1 2466 if ((oh->flags & (HWMOD_INIT_NO_IDLE | HWMOD_NO_IDLE)) &&
aacf0941
RN
2467 (postsetup_state == _HWMOD_STATE_IDLE)) {
2468 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
2092e5cc 2469 postsetup_state = _HWMOD_STATE_ENABLED;
aacf0941 2470 }
2092e5cc
PW
2471
2472 if (postsetup_state == _HWMOD_STATE_IDLE)
dc6d1cda 2473 _idle(oh);
2092e5cc
PW
2474 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2475 _shutdown(oh);
2476 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2477 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2478 oh->name, postsetup_state);
63c85238 2479
64813c3f
PW
2480 return;
2481}
2482
2483/**
2484 * _setup - prepare IP block hardware for use
2485 * @oh: struct omap_hwmod *
2486 * @n: (unused, pass NULL)
2487 *
2488 * Configure the IP block represented by @oh. This may include
2489 * enabling the IP block, resetting it, and placing it into a
2490 * post-setup state, depending on the type of IP block and applicable
2491 * flags. IP blocks are reset to prevent any previous configuration
2492 * by the bootloader or previous operating system from interfering
2493 * with power management or other parts of the system. The reset can
2494 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2495 * two phases for hwmod initialization. Code called here generally
2496 * affects the IP block hardware, or system integration hardware
2497 * associated with the IP block. Returns 0.
2498 */
2499static int __init _setup(struct omap_hwmod *oh, void *data)
2500{
2501 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2502 return 0;
2503
f22d2545
TV
2504 if (oh->parent_hwmod) {
2505 int r;
2506
2507 r = _enable(oh->parent_hwmod);
2508 WARN(r, "hwmod: %s: setup: failed to enable parent hwmod %s\n",
2509 oh->name, oh->parent_hwmod->name);
2510 }
2511
64813c3f
PW
2512 _setup_iclk_autoidle(oh);
2513
2514 if (!_setup_reset(oh))
2515 _setup_postsetup(oh);
2516
f22d2545
TV
2517 if (oh->parent_hwmod) {
2518 u8 postsetup_state;
2519
2520 postsetup_state = oh->parent_hwmod->_postsetup_state;
2521
2522 if (postsetup_state == _HWMOD_STATE_IDLE)
2523 _idle(oh->parent_hwmod);
2524 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2525 _shutdown(oh->parent_hwmod);
2526 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2527 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2528 oh->parent_hwmod->name, postsetup_state);
2529 }
2530
63c85238
PW
2531 return 0;
2532}
2533
63c85238 2534/**
0102b627 2535 * _register - register a struct omap_hwmod
63c85238
PW
2536 * @oh: struct omap_hwmod *
2537 *
43b40992
PW
2538 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2539 * already has been registered by the same name; -EINVAL if the
2540 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2541 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2542 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2543 * success.
63c85238
PW
2544 *
2545 * XXX The data should be copied into bootmem, so the original data
2546 * should be marked __initdata and freed after init. This would allow
2547 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2548 * that the copy process would be relatively complex due to the large number
2549 * of substructures.
2550 */
01592df9 2551static int __init _register(struct omap_hwmod *oh)
63c85238 2552{
43b40992
PW
2553 if (!oh || !oh->name || !oh->class || !oh->class->name ||
2554 (oh->_state != _HWMOD_STATE_UNKNOWN))
63c85238
PW
2555 return -EINVAL;
2556
63c85238
PW
2557 pr_debug("omap_hwmod: %s: registering\n", oh->name);
2558
ce35b244
BC
2559 if (_lookup(oh->name))
2560 return -EEXIST;
63c85238 2561
63c85238
PW
2562 list_add_tail(&oh->node, &omap_hwmod_list);
2563
2221b5cd 2564 INIT_LIST_HEAD(&oh->slave_ports);
dc6d1cda 2565 spin_lock_init(&oh->_lock);
69317952 2566 lockdep_set_class(&oh->_lock, &oh->hwmod_key);
2092e5cc 2567
63c85238
PW
2568 oh->_state = _HWMOD_STATE_REGISTERED;
2569
569edd70
PW
2570 /*
2571 * XXX Rather than doing a strcmp(), this should test a flag
2572 * set in the hwmod data, inserted by the autogenerator code.
2573 */
2574 if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2575 mpu_oh = oh;
63c85238 2576
569edd70 2577 return 0;
63c85238
PW
2578}
2579
2221b5cd
PW
2580/**
2581 * _add_link - add an interconnect between two IP blocks
2582 * @oi: pointer to a struct omap_hwmod_ocp_if record
2583 *
a1e31235 2584 * Add struct omap_hwmod_link records connecting the slave IP block
2221b5cd
PW
2585 * specified in @oi->slave to @oi. This code is assumed to run before
2586 * preemption or SMP has been enabled, thus avoiding the need for
2587 * locking in this code. Changes to this assumption will require
2588 * additional locking. Returns 0.
2589 */
2590static int __init _add_link(struct omap_hwmod_ocp_if *oi)
2591{
2221b5cd
PW
2592 pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2593 oi->slave->name);
2594
a1e31235 2595 list_add(&oi->node, &oi->slave->slave_ports);
2221b5cd
PW
2596 oi->slave->slaves_cnt++;
2597
2598 return 0;
2599}
2600
2601/**
2602 * _register_link - register a struct omap_hwmod_ocp_if
2603 * @oi: struct omap_hwmod_ocp_if *
2604 *
2605 * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
2606 * has already been registered; -EINVAL if @oi is NULL or if the
2607 * record pointed to by @oi is missing required fields; or 0 upon
2608 * success.
2609 *
2610 * XXX The data should be copied into bootmem, so the original data
2611 * should be marked __initdata and freed after init. This would allow
2612 * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2613 */
2614static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2615{
2616 if (!oi || !oi->master || !oi->slave || !oi->user)
2617 return -EINVAL;
2618
2619 if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2620 return -EEXIST;
2621
2622 pr_debug("omap_hwmod: registering link from %s to %s\n",
2623 oi->master->name, oi->slave->name);
2624
2625 /*
2626 * Register the connected hwmods, if they haven't been
2627 * registered already
2628 */
2629 if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2630 _register(oi->master);
2631
2632 if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2633 _register(oi->slave);
2634
2635 _add_link(oi);
2636
2637 oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2638
2639 return 0;
2640}
2641
8f6aa8ee
KH
2642/* Static functions intended only for use in soc_ops field function pointers */
2643
2644/**
9002e921 2645 * _omap2xxx_3xxx_wait_target_ready - wait for a module to leave slave idle
8f6aa8ee
KH
2646 * @oh: struct omap_hwmod *
2647 *
2648 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2649 * does not have an IDLEST bit or if the module successfully leaves
2650 * slave idle; otherwise, pass along the return value of the
2651 * appropriate *_cm*_wait_module_ready() function.
2652 */
9002e921 2653static int _omap2xxx_3xxx_wait_target_ready(struct omap_hwmod *oh)
8f6aa8ee
KH
2654{
2655 if (!oh)
2656 return -EINVAL;
2657
2658 if (oh->flags & HWMOD_NO_IDLEST)
2659 return 0;
2660
2661 if (!_find_mpu_rt_port(oh))
2662 return 0;
2663
2664 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2665
021b6ff0
TK
2666 return omap_cm_wait_module_ready(0, oh->prcm.omap2.module_offs,
2667 oh->prcm.omap2.idlest_reg_id,
2668 oh->prcm.omap2.idlest_idle_bit);
8f6aa8ee
KH
2669}
2670
2671/**
2672 * _omap4_wait_target_ready - wait for a module to leave slave idle
2673 * @oh: struct omap_hwmod *
2674 *
2675 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2676 * does not have an IDLEST bit or if the module successfully leaves
2677 * slave idle; otherwise, pass along the return value of the
2678 * appropriate *_cm*_wait_module_ready() function.
2679 */
2680static int _omap4_wait_target_ready(struct omap_hwmod *oh)
2681{
2b026d13 2682 if (!oh)
8f6aa8ee
KH
2683 return -EINVAL;
2684
2b026d13 2685 if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
8f6aa8ee
KH
2686 return 0;
2687
2688 if (!_find_mpu_rt_port(oh))
2689 return 0;
2690
8823ddf2
TL
2691 if (_omap4_clkctrl_managed_by_clkfwk(oh))
2692 return 0;
2693
2694 if (!_omap4_has_clkctrl_clock(oh))
428929c7
DG
2695 return 0;
2696
8f6aa8ee
KH
2697 /* XXX check module SIDLEMODE, hardreset status */
2698
021b6ff0
TK
2699 return omap_cm_wait_module_ready(oh->clkdm->prcm_partition,
2700 oh->clkdm->cm_inst,
2701 oh->prcm.omap4.clkctrl_offs, 0);
1688bf19
VH
2702}
2703
b8249cf2
KH
2704/**
2705 * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2706 * @oh: struct omap_hwmod * to assert hardreset
2707 * @ohri: hardreset line data
2708 *
2709 * Call omap2_prm_assert_hardreset() with parameters extracted from
2710 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2711 * use as an soc_ops function pointer. Passes along the return value
2712 * from omap2_prm_assert_hardreset(). XXX This function is scheduled
2713 * for removal when the PRM code is moved into drivers/.
2714 */
2715static int _omap2_assert_hardreset(struct omap_hwmod *oh,
2716 struct omap_hwmod_rst_info *ohri)
2717{
efd44dc3
TK
2718 return omap_prm_assert_hardreset(ohri->rst_shift, 0,
2719 oh->prcm.omap2.module_offs, 0);
b8249cf2
KH
2720}
2721
2722/**
2723 * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2724 * @oh: struct omap_hwmod * to deassert hardreset
2725 * @ohri: hardreset line data
2726 *
2727 * Call omap2_prm_deassert_hardreset() with parameters extracted from
2728 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2729 * use as an soc_ops function pointer. Passes along the return value
2730 * from omap2_prm_deassert_hardreset(). XXX This function is
2731 * scheduled for removal when the PRM code is moved into drivers/.
2732 */
2733static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
2734 struct omap_hwmod_rst_info *ohri)
2735{
37fb59d7
TK
2736 return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift, 0,
2737 oh->prcm.omap2.module_offs, 0, 0);
b8249cf2
KH
2738}
2739
2740/**
2741 * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
2742 * @oh: struct omap_hwmod * to test hardreset
2743 * @ohri: hardreset line data
2744 *
2745 * Call omap2_prm_is_hardreset_asserted() with parameters extracted
2746 * from the hwmod @oh and the hardreset line data @ohri. Only
2747 * intended for use as an soc_ops function pointer. Passes along the
2748 * return value from omap2_prm_is_hardreset_asserted(). XXX This
2749 * function is scheduled for removal when the PRM code is moved into
2750 * drivers/.
2751 */
2752static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
2753 struct omap_hwmod_rst_info *ohri)
2754{
1bc28b34
TK
2755 return omap_prm_is_hardreset_asserted(ohri->st_shift, 0,
2756 oh->prcm.omap2.module_offs, 0);
b8249cf2
KH
2757}
2758
2759/**
2760 * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2761 * @oh: struct omap_hwmod * to assert hardreset
2762 * @ohri: hardreset line data
2763 *
2764 * Call omap4_prminst_assert_hardreset() with parameters extracted
2765 * from the hwmod @oh and the hardreset line data @ohri. Only
2766 * intended for use as an soc_ops function pointer. Passes along the
2767 * return value from omap4_prminst_assert_hardreset(). XXX This
2768 * function is scheduled for removal when the PRM code is moved into
2769 * drivers/.
2770 */
2771static int _omap4_assert_hardreset(struct omap_hwmod *oh,
2772 struct omap_hwmod_rst_info *ohri)
b8249cf2 2773{
07b3a139
PW
2774 if (!oh->clkdm)
2775 return -EINVAL;
2776
efd44dc3
TK
2777 return omap_prm_assert_hardreset(ohri->rst_shift,
2778 oh->clkdm->pwrdm.ptr->prcm_partition,
2779 oh->clkdm->pwrdm.ptr->prcm_offs,
2780 oh->prcm.omap4.rstctrl_offs);
b8249cf2
KH
2781}
2782
2783/**
2784 * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2785 * @oh: struct omap_hwmod * to deassert hardreset
2786 * @ohri: hardreset line data
2787 *
2788 * Call omap4_prminst_deassert_hardreset() with parameters extracted
2789 * from the hwmod @oh and the hardreset line data @ohri. Only
2790 * intended for use as an soc_ops function pointer. Passes along the
2791 * return value from omap4_prminst_deassert_hardreset(). XXX This
2792 * function is scheduled for removal when the PRM code is moved into
2793 * drivers/.
2794 */
2795static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
2796 struct omap_hwmod_rst_info *ohri)
2797{
07b3a139
PW
2798 if (!oh->clkdm)
2799 return -EINVAL;
2800
b8249cf2
KH
2801 if (ohri->st_shift)
2802 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
2803 oh->name, ohri->name);
4ebf5b28 2804 return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->rst_shift,
37fb59d7
TK
2805 oh->clkdm->pwrdm.ptr->prcm_partition,
2806 oh->clkdm->pwrdm.ptr->prcm_offs,
4ebf5b28
TK
2807 oh->prcm.omap4.rstctrl_offs,
2808 oh->prcm.omap4.rstctrl_offs +
2809 OMAP4_RST_CTRL_ST_OFFSET);
b8249cf2
KH
2810}
2811
2812/**
2813 * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
2814 * @oh: struct omap_hwmod * to test hardreset
2815 * @ohri: hardreset line data
2816 *
2817 * Call omap4_prminst_is_hardreset_asserted() with parameters
2818 * extracted from the hwmod @oh and the hardreset line data @ohri.
2819 * Only intended for use as an soc_ops function pointer. Passes along
2820 * the return value from omap4_prminst_is_hardreset_asserted(). XXX
2821 * This function is scheduled for removal when the PRM code is moved
2822 * into drivers/.
2823 */
2824static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
2825 struct omap_hwmod_rst_info *ohri)
2826{
07b3a139
PW
2827 if (!oh->clkdm)
2828 return -EINVAL;
2829
1bc28b34
TK
2830 return omap_prm_is_hardreset_asserted(ohri->rst_shift,
2831 oh->clkdm->pwrdm.ptr->
2832 prcm_partition,
2833 oh->clkdm->pwrdm.ptr->prcm_offs,
2834 oh->prcm.omap4.rstctrl_offs);
b8249cf2
KH
2835}
2836
9fabc1a2
TK
2837/**
2838 * _omap4_disable_direct_prcm - disable direct PRCM control for hwmod
2839 * @oh: struct omap_hwmod * to disable control for
2840 *
2841 * Disables direct PRCM clkctrl done by hwmod core. Instead, the hwmod
2842 * will be using its main_clk to enable/disable the module. Returns
2843 * 0 if successful.
2844 */
2845static int _omap4_disable_direct_prcm(struct omap_hwmod *oh)
2846{
2847 if (!oh)
2848 return -EINVAL;
2849
8823ddf2 2850 oh->prcm.omap4.flags |= HWMOD_OMAP4_CLKFWK_CLKCTR_CLOCK;
9fabc1a2
TK
2851
2852 return 0;
2853}
2854
1688bf19
VH
2855/**
2856 * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
2857 * @oh: struct omap_hwmod * to deassert hardreset
2858 * @ohri: hardreset line data
2859 *
2860 * Call am33xx_prminst_deassert_hardreset() with parameters extracted
2861 * from the hwmod @oh and the hardreset line data @ohri. Only
2862 * intended for use as an soc_ops function pointer. Passes along the
2863 * return value from am33xx_prminst_deassert_hardreset(). XXX This
2864 * function is scheduled for removal when the PRM code is moved into
2865 * drivers/.
2866 */
2867static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
2868 struct omap_hwmod_rst_info *ohri)
2869{
a5bf00cd
TK
2870 return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift,
2871 oh->clkdm->pwrdm.ptr->prcm_partition,
37fb59d7
TK
2872 oh->clkdm->pwrdm.ptr->prcm_offs,
2873 oh->prcm.omap4.rstctrl_offs,
2874 oh->prcm.omap4.rstst_offs);
1688bf19
VH
2875}
2876
0102b627
BC
2877/* Public functions */
2878
2879u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
2880{
2881 if (oh->flags & HWMOD_16BIT_REG)
edfaf05c 2882 return readw_relaxed(oh->_mpu_rt_va + reg_offs);
0102b627 2883 else
edfaf05c 2884 return readl_relaxed(oh->_mpu_rt_va + reg_offs);
0102b627
BC
2885}
2886
2887void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
2888{
2889 if (oh->flags & HWMOD_16BIT_REG)
edfaf05c 2890 writew_relaxed(v, oh->_mpu_rt_va + reg_offs);
0102b627 2891 else
edfaf05c 2892 writel_relaxed(v, oh->_mpu_rt_va + reg_offs);
0102b627
BC
2893}
2894
6d3c55fd
A
2895/**
2896 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
2897 * @oh: struct omap_hwmod *
2898 *
2899 * This is a public function exposed to drivers. Some drivers may need to do
2900 * some settings before and after resetting the device. Those drivers after
2901 * doing the necessary settings could use this function to start a reset by
2902 * setting the SYSCONFIG.SOFTRESET bit.
2903 */
2904int omap_hwmod_softreset(struct omap_hwmod *oh)
2905{
3c55c1ba
PW
2906 u32 v;
2907 int ret;
2908
2909 if (!oh || !(oh->_sysc_cache))
6d3c55fd
A
2910 return -EINVAL;
2911
3c55c1ba
PW
2912 v = oh->_sysc_cache;
2913 ret = _set_softreset(oh, &v);
2914 if (ret)
2915 goto error;
2916 _write_sysconfig(v, oh);
2917
313a76ee
RQ
2918 ret = _clear_softreset(oh, &v);
2919 if (ret)
2920 goto error;
2921 _write_sysconfig(v, oh);
2922
3c55c1ba
PW
2923error:
2924 return ret;
6d3c55fd
A
2925}
2926
63c85238
PW
2927/**
2928 * omap_hwmod_lookup - look up a registered omap_hwmod by name
2929 * @name: name of the omap_hwmod to look up
2930 *
2931 * Given a @name of an omap_hwmod, return a pointer to the registered
2932 * struct omap_hwmod *, or NULL upon error.
2933 */
2934struct omap_hwmod *omap_hwmod_lookup(const char *name)
2935{
2936 struct omap_hwmod *oh;
2937
2938 if (!name)
2939 return NULL;
2940
63c85238 2941 oh = _lookup(name);
63c85238
PW
2942
2943 return oh;
2944}
2945
2946/**
2947 * omap_hwmod_for_each - call function for each registered omap_hwmod
2948 * @fn: pointer to a callback function
97d60162 2949 * @data: void * data to pass to callback function
63c85238
PW
2950 *
2951 * Call @fn for each registered omap_hwmod, passing @data to each
2952 * function. @fn must return 0 for success or any other value for
2953 * failure. If @fn returns non-zero, the iteration across omap_hwmods
2954 * will stop and the non-zero return value will be passed to the
2955 * caller of omap_hwmod_for_each(). @fn is called with
2956 * omap_hwmod_for_each() held.
2957 */
97d60162
PW
2958int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
2959 void *data)
63c85238
PW
2960{
2961 struct omap_hwmod *temp_oh;
30ebad9d 2962 int ret = 0;
63c85238
PW
2963
2964 if (!fn)
2965 return -EINVAL;
2966
63c85238 2967 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
97d60162 2968 ret = (*fn)(temp_oh, data);
63c85238
PW
2969 if (ret)
2970 break;
2971 }
63c85238
PW
2972
2973 return ret;
2974}
2975
2221b5cd
PW
2976/**
2977 * omap_hwmod_register_links - register an array of hwmod links
2978 * @ois: pointer to an array of omap_hwmod_ocp_if to register
2979 *
2980 * Intended to be called early in boot before the clock framework is
2981 * initialized. If @ois is not null, will register all omap_hwmods
9ebfd285
KH
2982 * listed in @ois that are valid for this chip. Returns -EINVAL if
2983 * omap_hwmod_init() hasn't been called before calling this function,
2984 * -ENOMEM if the link memory area can't be allocated, or 0 upon
2985 * success.
2221b5cd
PW
2986 */
2987int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
2988{
2989 int r, i;
2990
9ebfd285
KH
2991 if (!inited)
2992 return -EINVAL;
2993
2221b5cd
PW
2994 if (!ois)
2995 return 0;
2996
f7f7a29b
RN
2997 if (ois[0] == NULL) /* Empty list */
2998 return 0;
2999
2221b5cd
PW
3000 i = 0;
3001 do {
3002 r = _register_link(ois[i]);
3003 WARN(r && r != -EEXIST,
3004 "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3005 ois[i]->master->name, ois[i]->slave->name, r);
3006 } while (ois[++i]);
3007
3008 return 0;
3009}
3010
381d033a
PW
3011/**
3012 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3013 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
3014 *
3015 * If the hwmod data corresponding to the MPU subsystem IP block
3016 * hasn't been initialized and set up yet, do so now. This must be
3017 * done first since sleep dependencies may be added from other hwmods
3018 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
3019 * return value.
63c85238 3020 */
381d033a 3021static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
e7c7d760 3022{
381d033a
PW
3023 if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3024 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3025 __func__, MPU_INITIATOR_NAME);
3026 else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3027 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
e7c7d760
TL
3028}
3029
63c85238 3030/**
a2debdbd
PW
3031 * omap_hwmod_setup_one - set up a single hwmod
3032 * @oh_name: const char * name of the already-registered hwmod to set up
3033 *
381d033a
PW
3034 * Initialize and set up a single hwmod. Intended to be used for a
3035 * small number of early devices, such as the timer IP blocks used for
3036 * the scheduler clock. Must be called after omap2_clk_init().
3037 * Resolves the struct clk names to struct clk pointers for each
3038 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
3039 * -EINVAL upon error or 0 upon success.
a2debdbd
PW
3040 */
3041int __init omap_hwmod_setup_one(const char *oh_name)
63c85238
PW
3042{
3043 struct omap_hwmod *oh;
63c85238 3044
a2debdbd
PW
3045 pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3046
a2debdbd
PW
3047 oh = _lookup(oh_name);
3048 if (!oh) {
3049 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3050 return -EINVAL;
3051 }
63c85238 3052
381d033a 3053 _ensure_mpu_hwmod_is_setup(oh);
63c85238 3054
381d033a 3055 _init(oh, NULL);
a2debdbd
PW
3056 _setup(oh, NULL);
3057
63c85238
PW
3058 return 0;
3059}
3060
8dd6666f
LV
3061/**
3062 * omap_hwmod_setup_earlycon_flags - set up flags for early console
3063 *
3064 * Enable DEBUG_OMAPUART_FLAGS for uart hwmod that is being used as
3065 * early concole so that hwmod core doesn't reset and keep it in idle
3066 * that specific uart.
3067 */
3068#ifdef CONFIG_SERIAL_EARLYCON
3069static void __init omap_hwmod_setup_earlycon_flags(void)
3070{
3071 struct device_node *np;
3072 struct omap_hwmod *oh;
3073 const char *uart;
3074
3075 np = of_find_node_by_path("/chosen");
3076 if (np) {
3077 uart = of_get_property(np, "stdout-path", NULL);
3078 if (uart) {
3079 np = of_find_node_by_path(uart);
3080 if (np) {
3081 uart = of_get_property(np, "ti,hwmods", NULL);
3082 oh = omap_hwmod_lookup(uart);
3083 if (oh)
3084 oh->flags |= DEBUG_OMAPUART_FLAGS;
3085 }
3086 }
3087 }
3088}
3089#endif
3090
63c85238 3091/**
381d033a 3092 * omap_hwmod_setup_all - set up all registered IP blocks
63c85238 3093 *
381d033a
PW
3094 * Initialize and set up all IP blocks registered with the hwmod code.
3095 * Must be called after omap2_clk_init(). Resolves the struct clk
3096 * names to struct clk pointers for each registered omap_hwmod. Also
3097 * calls _setup() on each hwmod. Returns 0 upon success.
63c85238 3098 */
550c8092 3099static int __init omap_hwmod_setup_all(void)
63c85238 3100{
381d033a 3101 _ensure_mpu_hwmod_is_setup(NULL);
63c85238 3102
381d033a 3103 omap_hwmod_for_each(_init, NULL);
8dd6666f
LV
3104#ifdef CONFIG_SERIAL_EARLYCON
3105 omap_hwmod_setup_earlycon_flags();
3106#endif
2092e5cc 3107 omap_hwmod_for_each(_setup, NULL);
63c85238
PW
3108
3109 return 0;
3110}
8dd5ea72 3111omap_postcore_initcall(omap_hwmod_setup_all);
63c85238 3112
63c85238
PW
3113/**
3114 * omap_hwmod_enable - enable an omap_hwmod
3115 * @oh: struct omap_hwmod *
3116 *
74ff3a68 3117 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
63c85238
PW
3118 * Returns -EINVAL on error or passes along the return value from _enable().
3119 */
3120int omap_hwmod_enable(struct omap_hwmod *oh)
3121{
3122 int r;
dc6d1cda 3123 unsigned long flags;
63c85238
PW
3124
3125 if (!oh)
3126 return -EINVAL;
3127
dc6d1cda
PW
3128 spin_lock_irqsave(&oh->_lock, flags);
3129 r = _enable(oh);
3130 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
3131
3132 return r;
3133}
3134
3135/**
3136 * omap_hwmod_idle - idle an omap_hwmod
3137 * @oh: struct omap_hwmod *
3138 *
74ff3a68 3139 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
63c85238
PW
3140 * Returns -EINVAL on error or passes along the return value from _idle().
3141 */
3142int omap_hwmod_idle(struct omap_hwmod *oh)
3143{
6da23358 3144 int r;
dc6d1cda
PW
3145 unsigned long flags;
3146
63c85238
PW
3147 if (!oh)
3148 return -EINVAL;
3149
dc6d1cda 3150 spin_lock_irqsave(&oh->_lock, flags);
6da23358 3151 r = _idle(oh);
dc6d1cda 3152 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238 3153
6da23358 3154 return r;
63c85238
PW
3155}
3156
3157/**
3158 * omap_hwmod_shutdown - shutdown an omap_hwmod
3159 * @oh: struct omap_hwmod *
3160 *
74ff3a68 3161 * Shutdown an omap_hwmod @oh. Intended to be called by
63c85238
PW
3162 * omap_device_shutdown(). Returns -EINVAL on error or passes along
3163 * the return value from _shutdown().
3164 */
3165int omap_hwmod_shutdown(struct omap_hwmod *oh)
3166{
6da23358 3167 int r;
dc6d1cda
PW
3168 unsigned long flags;
3169
63c85238
PW
3170 if (!oh)
3171 return -EINVAL;
3172
dc6d1cda 3173 spin_lock_irqsave(&oh->_lock, flags);
6da23358 3174 r = _shutdown(oh);
dc6d1cda 3175 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238 3176
6da23358 3177 return r;
63c85238
PW
3178}
3179
5e8370f1
PW
3180/*
3181 * IP block data retrieval functions
3182 */
3183
63c85238
PW
3184/**
3185 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3186 * @oh: struct omap_hwmod *
3187 *
3188 * Return the powerdomain pointer associated with the OMAP module
3189 * @oh's main clock. If @oh does not have a main clk, return the
3190 * powerdomain associated with the interface clock associated with the
3191 * module's MPU port. (XXX Perhaps this should use the SDMA port
3192 * instead?) Returns NULL on error, or a struct powerdomain * on
3193 * success.
3194 */
3195struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3196{
3197 struct clk *c;
2d6141ba 3198 struct omap_hwmod_ocp_if *oi;
f5dd3bb5 3199 struct clockdomain *clkdm;
f5dd3bb5 3200 struct clk_hw_omap *clk;
63c85238
PW
3201
3202 if (!oh)
3203 return NULL;
3204
f5dd3bb5
RN
3205 if (oh->clkdm)
3206 return oh->clkdm->pwrdm.ptr;
3207
63c85238
PW
3208 if (oh->_clk) {
3209 c = oh->_clk;
3210 } else {
2d6141ba
PW
3211 oi = _find_mpu_rt_port(oh);
3212 if (!oi)
63c85238 3213 return NULL;
2d6141ba 3214 c = oi->_clk;
63c85238
PW
3215 }
3216
f5dd3bb5
RN
3217 clk = to_clk_hw_omap(__clk_get_hw(c));
3218 clkdm = clk->clkdm;
f5dd3bb5 3219 if (!clkdm)
d5647c18
TG
3220 return NULL;
3221
f5dd3bb5 3222 return clkdm->pwrdm.ptr;
63c85238
PW
3223}
3224
db2a60bf
PW
3225/**
3226 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3227 * @oh: struct omap_hwmod *
3228 *
3229 * Returns the virtual address corresponding to the beginning of the
3230 * module's register target, in the address range that is intended to
3231 * be used by the MPU. Returns the virtual address upon success or NULL
3232 * upon error.
3233 */
3234void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3235{
3236 if (!oh)
3237 return NULL;
3238
3239 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3240 return NULL;
3241
3242 if (oh->_state == _HWMOD_STATE_UNKNOWN)
3243 return NULL;
3244
3245 return oh->_mpu_rt_va;
3246}
3247
63c85238
PW
3248/*
3249 * XXX what about functions for drivers to save/restore ocp_sysconfig
3250 * for context save/restore operations?
3251 */
3252
63c85238
PW
3253/**
3254 * omap_hwmod_enable_wakeup - allow device to wake up the system
3255 * @oh: struct omap_hwmod *
3256 *
3257 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
2a1cc144
G
3258 * send wakeups to the PRCM, and enable I/O ring wakeup events for
3259 * this IP block if it has dynamic mux entries. Eventually this
3260 * should set PRCM wakeup registers to cause the PRCM to receive
3261 * wakeup events from the module. Does not set any wakeup routing
3262 * registers beyond this point - if the module is to wake up any other
3263 * module or subsystem, that must be set separately. Called by
3264 * omap_device code. Returns -EINVAL on error or 0 upon success.
63c85238
PW
3265 */
3266int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
3267{
dc6d1cda 3268 unsigned long flags;
5a7ddcbd 3269 u32 v;
dc6d1cda 3270
dc6d1cda 3271 spin_lock_irqsave(&oh->_lock, flags);
2a1cc144
G
3272
3273 if (oh->class->sysc &&
3274 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3275 v = oh->_sysc_cache;
3276 _enable_wakeup(oh, &v);
3277 _write_sysconfig(v, oh);
3278 }
3279
dc6d1cda 3280 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
3281
3282 return 0;
3283}
3284
3285/**
3286 * omap_hwmod_disable_wakeup - prevent device from waking the system
3287 * @oh: struct omap_hwmod *
3288 *
3289 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
2a1cc144
G
3290 * from sending wakeups to the PRCM, and disable I/O ring wakeup
3291 * events for this IP block if it has dynamic mux entries. Eventually
3292 * this should clear PRCM wakeup registers to cause the PRCM to ignore
3293 * wakeup events from the module. Does not set any wakeup routing
3294 * registers beyond this point - if the module is to wake up any other
3295 * module or subsystem, that must be set separately. Called by
3296 * omap_device code. Returns -EINVAL on error or 0 upon success.
63c85238
PW
3297 */
3298int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
3299{
dc6d1cda 3300 unsigned long flags;
5a7ddcbd 3301 u32 v;
dc6d1cda 3302
dc6d1cda 3303 spin_lock_irqsave(&oh->_lock, flags);
2a1cc144
G
3304
3305 if (oh->class->sysc &&
3306 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3307 v = oh->_sysc_cache;
3308 _disable_wakeup(oh, &v);
3309 _write_sysconfig(v, oh);
3310 }
3311
dc6d1cda 3312 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
3313
3314 return 0;
3315}
43b40992 3316
aee48e3c
PW
3317/**
3318 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3319 * contained in the hwmod module.
3320 * @oh: struct omap_hwmod *
3321 * @name: name of the reset line to lookup and assert
3322 *
3323 * Some IP like dsp, ipu or iva contain processor that require
3324 * an HW reset line to be assert / deassert in order to enable fully
3325 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3326 * yet supported on this OMAP; otherwise, passes along the return value
3327 * from _assert_hardreset().
3328 */
3329int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
3330{
3331 int ret;
dc6d1cda 3332 unsigned long flags;
aee48e3c
PW
3333
3334 if (!oh)
3335 return -EINVAL;
3336
dc6d1cda 3337 spin_lock_irqsave(&oh->_lock, flags);
aee48e3c 3338 ret = _assert_hardreset(oh, name);
dc6d1cda 3339 spin_unlock_irqrestore(&oh->_lock, flags);
aee48e3c
PW
3340
3341 return ret;
3342}
3343
3344/**
3345 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3346 * contained in the hwmod module.
3347 * @oh: struct omap_hwmod *
3348 * @name: name of the reset line to look up and deassert
3349 *
3350 * Some IP like dsp, ipu or iva contain processor that require
3351 * an HW reset line to be assert / deassert in order to enable fully
3352 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3353 * yet supported on this OMAP; otherwise, passes along the return value
3354 * from _deassert_hardreset().
3355 */
3356int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
3357{
3358 int ret;
dc6d1cda 3359 unsigned long flags;
aee48e3c
PW
3360
3361 if (!oh)
3362 return -EINVAL;
3363
dc6d1cda 3364 spin_lock_irqsave(&oh->_lock, flags);
aee48e3c 3365 ret = _deassert_hardreset(oh, name);
dc6d1cda 3366 spin_unlock_irqrestore(&oh->_lock, flags);
aee48e3c
PW
3367
3368 return ret;
3369}
3370
43b40992
PW
3371/**
3372 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
3373 * @classname: struct omap_hwmod_class name to search for
3374 * @fn: callback function pointer to call for each hwmod in class @classname
3375 * @user: arbitrary context data to pass to the callback function
3376 *
ce35b244
BC
3377 * For each omap_hwmod of class @classname, call @fn.
3378 * If the callback function returns something other than
43b40992
PW
3379 * zero, the iterator is terminated, and the callback function's return
3380 * value is passed back to the caller. Returns 0 upon success, -EINVAL
3381 * if @classname or @fn are NULL, or passes back the error code from @fn.
3382 */
3383int omap_hwmod_for_each_by_class(const char *classname,
3384 int (*fn)(struct omap_hwmod *oh,
3385 void *user),
3386 void *user)
3387{
3388 struct omap_hwmod *temp_oh;
3389 int ret = 0;
3390
3391 if (!classname || !fn)
3392 return -EINVAL;
3393
3394 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
3395 __func__, classname);
3396
43b40992
PW
3397 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3398 if (!strcmp(temp_oh->class->name, classname)) {
3399 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
3400 __func__, temp_oh->name);
3401 ret = (*fn)(temp_oh, user);
3402 if (ret)
3403 break;
3404 }
3405 }
3406
43b40992
PW
3407 if (ret)
3408 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
3409 __func__, ret);
3410
3411 return ret;
3412}
3413
2092e5cc
PW
3414/**
3415 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
3416 * @oh: struct omap_hwmod *
3417 * @state: state that _setup() should leave the hwmod in
3418 *
550c8092 3419 * Sets the hwmod state that @oh will enter at the end of _setup()
64813c3f
PW
3420 * (called by omap_hwmod_setup_*()). See also the documentation
3421 * for _setup_postsetup(), above. Returns 0 upon success or
3422 * -EINVAL if there is a problem with the arguments or if the hwmod is
3423 * in the wrong state.
2092e5cc
PW
3424 */
3425int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
3426{
3427 int ret;
dc6d1cda 3428 unsigned long flags;
2092e5cc
PW
3429
3430 if (!oh)
3431 return -EINVAL;
3432
3433 if (state != _HWMOD_STATE_DISABLED &&
3434 state != _HWMOD_STATE_ENABLED &&
3435 state != _HWMOD_STATE_IDLE)
3436 return -EINVAL;
3437
dc6d1cda 3438 spin_lock_irqsave(&oh->_lock, flags);
2092e5cc
PW
3439
3440 if (oh->_state != _HWMOD_STATE_REGISTERED) {
3441 ret = -EINVAL;
3442 goto ohsps_unlock;
3443 }
3444
3445 oh->_postsetup_state = state;
3446 ret = 0;
3447
3448ohsps_unlock:
dc6d1cda 3449 spin_unlock_irqrestore(&oh->_lock, flags);
2092e5cc
PW
3450
3451 return ret;
3452}
c80705aa
KH
3453
3454/**
3455 * omap_hwmod_get_context_loss_count - get lost context count
3456 * @oh: struct omap_hwmod *
3457 *
e6d3a8b0
RN
3458 * Returns the context loss count of associated @oh
3459 * upon success, or zero if no context loss data is available.
c80705aa 3460 *
e6d3a8b0
RN
3461 * On OMAP4, this queries the per-hwmod context loss register,
3462 * assuming one exists. If not, or on OMAP2/3, this queries the
3463 * enclosing powerdomain context loss count.
c80705aa 3464 */
fc013873 3465int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
c80705aa
KH
3466{
3467 struct powerdomain *pwrdm;
3468 int ret = 0;
3469
e6d3a8b0
RN
3470 if (soc_ops.get_context_lost)
3471 return soc_ops.get_context_lost(oh);
3472
c80705aa
KH
3473 pwrdm = omap_hwmod_get_pwrdm(oh);
3474 if (pwrdm)
3475 ret = pwrdm_get_context_loss_count(pwrdm);
3476
3477 return ret;
3478}
43b01643 3479
9ebfd285
KH
3480/**
3481 * omap_hwmod_init - initialize the hwmod code
3482 *
3483 * Sets up some function pointers needed by the hwmod code to operate on the
3484 * currently-booted SoC. Intended to be called once during kernel init
3485 * before any hwmods are registered. No return value.
3486 */
3487void __init omap_hwmod_init(void)
3488{
ff4ae5d9 3489 if (cpu_is_omap24xx()) {
9002e921 3490 soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
ff4ae5d9
PW
3491 soc_ops.assert_hardreset = _omap2_assert_hardreset;
3492 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
3493 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
3494 } else if (cpu_is_omap34xx()) {
9002e921 3495 soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
b8249cf2
KH
3496 soc_ops.assert_hardreset = _omap2_assert_hardreset;
3497 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
3498 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
0385c582 3499 soc_ops.init_clkdm = _init_clkdm;
debcd1f8 3500 } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
9ebfd285
KH
3501 soc_ops.enable_module = _omap4_enable_module;
3502 soc_ops.disable_module = _omap4_disable_module;
8f6aa8ee 3503 soc_ops.wait_target_ready = _omap4_wait_target_ready;
b8249cf2
KH
3504 soc_ops.assert_hardreset = _omap4_assert_hardreset;
3505 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
3506 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
0a179eaa 3507 soc_ops.init_clkdm = _init_clkdm;
e6d3a8b0
RN
3508 soc_ops.update_context_lost = _omap4_update_context_lost;
3509 soc_ops.get_context_lost = _omap4_get_context_lost;
9fabc1a2 3510 soc_ops.disable_direct_prcm = _omap4_disable_direct_prcm;
70f05be3 3511 soc_ops.xlate_clkctrl = _omap4_xlate_clkctrl;
0f3ccb24
TL
3512 } else if (cpu_is_ti814x() || cpu_is_ti816x() || soc_is_am33xx() ||
3513 soc_is_am43xx()) {
c8b428a5
AM
3514 soc_ops.enable_module = _omap4_enable_module;
3515 soc_ops.disable_module = _omap4_disable_module;
3516 soc_ops.wait_target_ready = _omap4_wait_target_ready;
409d7063 3517 soc_ops.assert_hardreset = _omap4_assert_hardreset;
1688bf19 3518 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
a5bf00cd 3519 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
1688bf19 3520 soc_ops.init_clkdm = _init_clkdm;
9fabc1a2 3521 soc_ops.disable_direct_prcm = _omap4_disable_direct_prcm;
2b96be3d 3522 soc_ops.xlate_clkctrl = _omap4_xlate_clkctrl;
8f6aa8ee
KH
3523 } else {
3524 WARN(1, "omap_hwmod: unknown SoC type\n");
9ebfd285
KH
3525 }
3526
70f05be3
TK
3527 _init_clkctrl_providers();
3528
9ebfd285
KH
3529 inited = true;
3530}
68c9a95e
TL
3531
3532/**
3533 * omap_hwmod_get_main_clk - get pointer to main clock name
3534 * @oh: struct omap_hwmod *
3535 *
3536 * Returns the main clock name assocated with @oh upon success,
3537 * or NULL if @oh is NULL.
3538 */
3539const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
3540{
3541 if (!oh)
3542 return NULL;
3543
3544 return oh->main_clk;
3545}