OMAP2+: hwmod: add API to handle autoidle mode
[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 *
db2a60bf 4 * Copyright (C) 2009-2010 Nokia Corporation
63c85238 5 *
4788da26
PW
6 * Paul Walmsley, Benoît Cousson, Kevin Hilman
7 *
8 * Created in collaboration with (alphabetical order): Thara Gopinath,
9 * Tony Lindgren, Rajendra Nayak, Vikram Pandita, Sakari Poussa, Anand
10 * Sawant, Santosh Shilimkar, Richard Woodruff
63c85238
PW
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
74ff3a68
PW
16 * Introduction
17 * ------------
18 * One way to view an OMAP SoC is as a collection of largely unrelated
19 * IP blocks connected by interconnects. The IP blocks include
20 * devices such as ARM processors, audio serial interfaces, UARTs,
21 * etc. Some of these devices, like the DSP, are created by TI;
22 * others, like the SGX, largely originate from external vendors. In
23 * TI's documentation, on-chip devices are referred to as "OMAP
24 * modules." Some of these IP blocks are identical across several
25 * OMAP versions. Others are revised frequently.
63c85238 26 *
74ff3a68
PW
27 * These OMAP modules are tied together by various interconnects.
28 * Most of the address and data flow between modules is via OCP-based
29 * interconnects such as the L3 and L4 buses; but there are other
30 * interconnects that distribute the hardware clock tree, handle idle
31 * and reset signaling, supply power, and connect the modules to
32 * various pads or balls on the OMAP package.
33 *
34 * OMAP hwmod provides a consistent way to describe the on-chip
35 * hardware blocks and their integration into the rest of the chip.
36 * This description can be automatically generated from the TI
37 * hardware database. OMAP hwmod provides a standard, consistent API
38 * to reset, enable, idle, and disable these hardware blocks. And
39 * hwmod provides a way for other core code, such as the Linux device
40 * code or the OMAP power management and address space mapping code,
41 * to query the hardware database.
42 *
43 * Using hwmod
44 * -----------
45 * Drivers won't call hwmod functions directly. That is done by the
46 * omap_device code, and in rare occasions, by custom integration code
47 * in arch/arm/ *omap*. The omap_device code includes functions to
48 * build a struct platform_device using omap_hwmod data, and that is
49 * currently how hwmod data is communicated to drivers and to the
50 * Linux driver model. Most drivers will call omap_hwmod functions only
51 * indirectly, via pm_runtime*() functions.
52 *
53 * From a layering perspective, here is where the OMAP hwmod code
54 * fits into the kernel software stack:
55 *
56 * +-------------------------------+
57 * | Device driver code |
58 * | (e.g., drivers/) |
59 * +-------------------------------+
60 * | Linux driver model |
61 * | (platform_device / |
62 * | platform_driver data/code) |
63 * +-------------------------------+
64 * | OMAP core-driver integration |
65 * |(arch/arm/mach-omap2/devices.c)|
66 * +-------------------------------+
67 * | omap_device code |
68 * | (../plat-omap/omap_device.c) |
69 * +-------------------------------+
70 * ----> | omap_hwmod code/data | <-----
71 * | (../mach-omap2/omap_hwmod*) |
72 * +-------------------------------+
73 * | OMAP clock/PRCM/register fns |
74 * | (__raw_{read,write}l, clk*) |
75 * +-------------------------------+
76 *
77 * Device drivers should not contain any OMAP-specific code or data in
78 * them. They should only contain code to operate the IP block that
79 * the driver is responsible for. This is because these IP blocks can
80 * also appear in other SoCs, either from TI (such as DaVinci) or from
81 * other manufacturers; and drivers should be reusable across other
82 * platforms.
83 *
84 * The OMAP hwmod code also will attempt to reset and idle all on-chip
85 * devices upon boot. The goal here is for the kernel to be
86 * completely self-reliant and independent from bootloaders. This is
87 * to ensure a repeatable configuration, both to ensure consistent
88 * runtime behavior, and to make it easier for others to reproduce
89 * bugs.
90 *
91 * OMAP module activity states
92 * ---------------------------
93 * The hwmod code considers modules to be in one of several activity
94 * states. IP blocks start out in an UNKNOWN state, then once they
95 * are registered via the hwmod code, proceed to the REGISTERED state.
96 * Once their clock names are resolved to clock pointers, the module
97 * enters the CLKS_INITED state; and finally, once the module has been
98 * reset and the integration registers programmed, the INITIALIZED state
99 * is entered. The hwmod code will then place the module into either
100 * the IDLE state to save power, or in the case of a critical system
101 * module, the ENABLED state.
102 *
103 * OMAP core integration code can then call omap_hwmod*() functions
104 * directly to move the module between the IDLE, ENABLED, and DISABLED
105 * states, as needed. This is done during both the PM idle loop, and
106 * in the OMAP core integration code's implementation of the PM runtime
107 * functions.
108 *
109 * References
110 * ----------
111 * This is a partial list.
63c85238
PW
112 * - OMAP2420 Multimedia Processor Silicon Revision 2.1.1, 2.2 (SWPU064)
113 * - OMAP2430 Multimedia Device POP Silicon Revision 2.1 (SWPU090)
114 * - OMAP34xx Multimedia Device Silicon Revision 3.1 (SWPU108)
115 * - OMAP4430 Multimedia Device Silicon Revision 1.0 (SWPU140)
116 * - Open Core Protocol Specification 2.2
117 *
118 * To do:
63c85238
PW
119 * - handle IO mapping
120 * - bus throughput & module latency measurement code
121 *
122 * XXX add tests at the beginning of each function to ensure the hwmod is
123 * in the appropriate state
124 * XXX error return values should be checked to ensure that they are
125 * appropriate
126 */
127#undef DEBUG
128
129#include <linux/kernel.h>
130#include <linux/errno.h>
131#include <linux/io.h>
132#include <linux/clk.h>
133#include <linux/delay.h>
134#include <linux/err.h>
135#include <linux/list.h>
136#include <linux/mutex.h>
dc6d1cda 137#include <linux/spinlock.h>
63c85238 138
6f8b7ff5 139#include <plat/common.h>
ce491cf8 140#include <plat/cpu.h>
1540f214 141#include "clockdomain.h"
72e06d08 142#include "powerdomain.h"
ce491cf8
TL
143#include <plat/clock.h>
144#include <plat/omap_hwmod.h>
5365efbe 145#include <plat/prcm.h>
63c85238 146
59fb659b
PW
147#include "cm2xxx_3xxx.h"
148#include "cm44xx.h"
149#include "prm2xxx_3xxx.h"
d198b514 150#include "prm44xx.h"
8d9af88f 151#include "mux.h"
63c85238 152
5365efbe
BC
153/* Maximum microseconds to wait for OMAP module to softreset */
154#define MAX_MODULE_SOFTRESET_WAIT 10000
63c85238
PW
155
156/* Name of the OMAP hwmod for the MPU */
5c2c0296 157#define MPU_INITIATOR_NAME "mpu"
63c85238
PW
158
159/* omap_hwmod_list contains all registered struct omap_hwmods */
160static LIST_HEAD(omap_hwmod_list);
161
63c85238
PW
162/* mpu_oh: used to add/remove MPU initiator from sleepdep list */
163static struct omap_hwmod *mpu_oh;
164
165/* inited: 0 if omap_hwmod_init() has not yet been called; 1 otherwise */
166static u8 inited;
167
168
169/* Private functions */
170
171/**
172 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
173 * @oh: struct omap_hwmod *
174 *
175 * Load the current value of the hwmod OCP_SYSCONFIG register into the
176 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
177 * OCP_SYSCONFIG register or 0 upon success.
178 */
179static int _update_sysc_cache(struct omap_hwmod *oh)
180{
43b40992
PW
181 if (!oh->class->sysc) {
182 WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
63c85238
PW
183 return -EINVAL;
184 }
185
186 /* XXX ensure module interface clock is up */
187
cc7a1d2a 188 oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
63c85238 189
43b40992 190 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
883edfdd 191 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
63c85238
PW
192
193 return 0;
194}
195
196/**
197 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
198 * @v: OCP_SYSCONFIG value to write
199 * @oh: struct omap_hwmod *
200 *
43b40992
PW
201 * Write @v into the module class' OCP_SYSCONFIG register, if it has
202 * one. No return value.
63c85238
PW
203 */
204static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
205{
43b40992
PW
206 if (!oh->class->sysc) {
207 WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
63c85238
PW
208 return;
209 }
210
211 /* XXX ensure module interface clock is up */
212
233cbe5b
RN
213 /* Module might have lost context, always update cache and register */
214 oh->_sysc_cache = v;
215 omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
63c85238
PW
216}
217
218/**
219 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
220 * @oh: struct omap_hwmod *
221 * @standbymode: MIDLEMODE field bits
222 * @v: pointer to register contents to modify
223 *
224 * Update the master standby mode bits in @v to be @standbymode for
225 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
226 * upon error or 0 upon success.
227 */
228static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
229 u32 *v)
230{
358f0e63
TG
231 u32 mstandby_mask;
232 u8 mstandby_shift;
233
43b40992
PW
234 if (!oh->class->sysc ||
235 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
63c85238
PW
236 return -EINVAL;
237
43b40992
PW
238 if (!oh->class->sysc->sysc_fields) {
239 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
240 return -EINVAL;
241 }
242
43b40992 243 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
358f0e63
TG
244 mstandby_mask = (0x3 << mstandby_shift);
245
246 *v &= ~mstandby_mask;
247 *v |= __ffs(standbymode) << mstandby_shift;
63c85238
PW
248
249 return 0;
250}
251
252/**
253 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
254 * @oh: struct omap_hwmod *
255 * @idlemode: SIDLEMODE field bits
256 * @v: pointer to register contents to modify
257 *
258 * Update the slave idle mode bits in @v to be @idlemode for the @oh
259 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
260 * or 0 upon success.
261 */
262static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
263{
358f0e63
TG
264 u32 sidle_mask;
265 u8 sidle_shift;
266
43b40992
PW
267 if (!oh->class->sysc ||
268 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
63c85238
PW
269 return -EINVAL;
270
43b40992
PW
271 if (!oh->class->sysc->sysc_fields) {
272 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
273 return -EINVAL;
274 }
275
43b40992 276 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
358f0e63
TG
277 sidle_mask = (0x3 << sidle_shift);
278
279 *v &= ~sidle_mask;
280 *v |= __ffs(idlemode) << sidle_shift;
63c85238
PW
281
282 return 0;
283}
284
285/**
286 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
287 * @oh: struct omap_hwmod *
288 * @clockact: CLOCKACTIVITY field bits
289 * @v: pointer to register contents to modify
290 *
291 * Update the clockactivity mode bits in @v to be @clockact for the
292 * @oh hwmod. Used for additional powersaving on some modules. Does
293 * not write to the hardware. Returns -EINVAL upon error or 0 upon
294 * success.
295 */
296static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
297{
358f0e63
TG
298 u32 clkact_mask;
299 u8 clkact_shift;
300
43b40992
PW
301 if (!oh->class->sysc ||
302 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
63c85238
PW
303 return -EINVAL;
304
43b40992
PW
305 if (!oh->class->sysc->sysc_fields) {
306 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
307 return -EINVAL;
308 }
309
43b40992 310 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
358f0e63
TG
311 clkact_mask = (0x3 << clkact_shift);
312
313 *v &= ~clkact_mask;
314 *v |= clockact << clkact_shift;
63c85238
PW
315
316 return 0;
317}
318
319/**
320 * _set_softreset: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
321 * @oh: struct omap_hwmod *
322 * @v: pointer to register contents to modify
323 *
324 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
325 * error or 0 upon success.
326 */
327static int _set_softreset(struct omap_hwmod *oh, u32 *v)
328{
358f0e63
TG
329 u32 softrst_mask;
330
43b40992
PW
331 if (!oh->class->sysc ||
332 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
63c85238
PW
333 return -EINVAL;
334
43b40992
PW
335 if (!oh->class->sysc->sysc_fields) {
336 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
337 return -EINVAL;
338 }
339
43b40992 340 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
358f0e63
TG
341
342 *v |= softrst_mask;
63c85238
PW
343
344 return 0;
345}
346
726072e5
PW
347/**
348 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
349 * @oh: struct omap_hwmod *
350 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
351 * @v: pointer to register contents to modify
352 *
353 * Update the module autoidle bit in @v to be @autoidle for the @oh
354 * hwmod. The autoidle bit controls whether the module can gate
355 * internal clocks automatically when it isn't doing anything; the
356 * exact function of this bit varies on a per-module basis. This
357 * function does not write to the hardware. Returns -EINVAL upon
358 * error or 0 upon success.
359 */
360static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
361 u32 *v)
362{
358f0e63
TG
363 u32 autoidle_mask;
364 u8 autoidle_shift;
365
43b40992
PW
366 if (!oh->class->sysc ||
367 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
726072e5
PW
368 return -EINVAL;
369
43b40992
PW
370 if (!oh->class->sysc->sysc_fields) {
371 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
372 return -EINVAL;
373 }
374
43b40992 375 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
358f0e63
TG
376 autoidle_mask = (0x3 << autoidle_shift);
377
378 *v &= ~autoidle_mask;
379 *v |= autoidle << autoidle_shift;
726072e5
PW
380
381 return 0;
382}
383
63c85238
PW
384/**
385 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
386 * @oh: struct omap_hwmod *
387 *
388 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
389 * upon error or 0 upon success.
390 */
5a7ddcbd 391static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
63c85238 392{
5a7ddcbd 393 u32 wakeup_mask;
63c85238 394
43b40992 395 if (!oh->class->sysc ||
86009eb3
BC
396 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
397 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)))
63c85238
PW
398 return -EINVAL;
399
43b40992
PW
400 if (!oh->class->sysc->sysc_fields) {
401 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
402 return -EINVAL;
403 }
404
43b40992 405 wakeup_mask = (0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
358f0e63 406
5a7ddcbd 407 *v |= wakeup_mask;
63c85238 408
86009eb3
BC
409 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
410 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
411
63c85238
PW
412 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
413
414 oh->_int_flags |= _HWMOD_WAKEUP_ENABLED;
415
416 return 0;
417}
418
419/**
420 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
421 * @oh: struct omap_hwmod *
422 *
423 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
424 * upon error or 0 upon success.
425 */
5a7ddcbd 426static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
63c85238 427{
5a7ddcbd 428 u32 wakeup_mask;
63c85238 429
43b40992 430 if (!oh->class->sysc ||
86009eb3
BC
431 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
432 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)))
63c85238
PW
433 return -EINVAL;
434
43b40992
PW
435 if (!oh->class->sysc->sysc_fields) {
436 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
437 return -EINVAL;
438 }
439
43b40992 440 wakeup_mask = (0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
358f0e63 441
5a7ddcbd 442 *v &= ~wakeup_mask;
63c85238 443
86009eb3
BC
444 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
445 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
446
63c85238
PW
447 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
448
449 oh->_int_flags &= ~_HWMOD_WAKEUP_ENABLED;
450
451 return 0;
452}
453
454/**
455 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
456 * @oh: struct omap_hwmod *
457 *
458 * Prevent the hardware module @oh from entering idle while the
459 * hardare module initiator @init_oh is active. Useful when a module
460 * will be accessed by a particular initiator (e.g., if a module will
461 * be accessed by the IVA, there should be a sleepdep between the IVA
462 * initiator and the module). Only applies to modules in smart-idle
463 * mode. Returns -EINVAL upon error or passes along
55ed9694 464 * clkdm_add_sleepdep() value upon success.
63c85238
PW
465 */
466static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
467{
468 if (!oh->_clk)
469 return -EINVAL;
470
55ed9694 471 return clkdm_add_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
63c85238
PW
472}
473
474/**
475 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
476 * @oh: struct omap_hwmod *
477 *
478 * Allow the hardware module @oh to enter idle while the hardare
479 * module initiator @init_oh is active. Useful when a module will not
480 * be accessed by a particular initiator (e.g., if a module will not
481 * be accessed by the IVA, there should be no sleepdep between the IVA
482 * initiator and the module). Only applies to modules in smart-idle
483 * mode. Returns -EINVAL upon error or passes along
55ed9694 484 * clkdm_del_sleepdep() value upon success.
63c85238
PW
485 */
486static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
487{
488 if (!oh->_clk)
489 return -EINVAL;
490
55ed9694 491 return clkdm_del_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
63c85238
PW
492}
493
494/**
495 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
496 * @oh: struct omap_hwmod *
497 *
498 * Called from _init_clocks(). Populates the @oh _clk (main
499 * functional clock pointer) if a main_clk is present. Returns 0 on
500 * success or -EINVAL on error.
501 */
502static int _init_main_clk(struct omap_hwmod *oh)
503{
63c85238
PW
504 int ret = 0;
505
50ebdac2 506 if (!oh->main_clk)
63c85238
PW
507 return 0;
508
63403384 509 oh->_clk = omap_clk_get_by_name(oh->main_clk);
dc75925d 510 if (!oh->_clk) {
20383d82
BC
511 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
512 oh->name, oh->main_clk);
63403384 513 return -EINVAL;
dc75925d 514 }
63c85238 515
63403384
BC
516 if (!oh->_clk->clkdm)
517 pr_warning("omap_hwmod: %s: missing clockdomain for %s.\n",
518 oh->main_clk, oh->_clk->name);
81d7c6ff 519
63c85238
PW
520 return ret;
521}
522
523/**
887adeac 524 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
63c85238
PW
525 * @oh: struct omap_hwmod *
526 *
527 * Called from _init_clocks(). Populates the @oh OCP slave interface
528 * clock pointers. Returns 0 on success or -EINVAL on error.
529 */
530static int _init_interface_clks(struct omap_hwmod *oh)
531{
63c85238
PW
532 struct clk *c;
533 int i;
534 int ret = 0;
535
536 if (oh->slaves_cnt == 0)
537 return 0;
538
682fdc96
BC
539 for (i = 0; i < oh->slaves_cnt; i++) {
540 struct omap_hwmod_ocp_if *os = oh->slaves[i];
541
50ebdac2 542 if (!os->clk)
63c85238
PW
543 continue;
544
50ebdac2 545 c = omap_clk_get_by_name(os->clk);
dc75925d 546 if (!c) {
20383d82
BC
547 pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
548 oh->name, os->clk);
63c85238 549 ret = -EINVAL;
dc75925d 550 }
63c85238
PW
551 os->_clk = c;
552 }
553
554 return ret;
555}
556
557/**
558 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
559 * @oh: struct omap_hwmod *
560 *
561 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
562 * clock pointers. Returns 0 on success or -EINVAL on error.
563 */
564static int _init_opt_clks(struct omap_hwmod *oh)
565{
566 struct omap_hwmod_opt_clk *oc;
567 struct clk *c;
568 int i;
569 int ret = 0;
570
571 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
50ebdac2 572 c = omap_clk_get_by_name(oc->clk);
dc75925d 573 if (!c) {
20383d82
BC
574 pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
575 oh->name, oc->clk);
63c85238 576 ret = -EINVAL;
dc75925d 577 }
63c85238
PW
578 oc->_clk = c;
579 }
580
581 return ret;
582}
583
584/**
585 * _enable_clocks - enable hwmod main clock and interface clocks
586 * @oh: struct omap_hwmod *
587 *
588 * Enables all clocks necessary for register reads and writes to succeed
589 * on the hwmod @oh. Returns 0.
590 */
591static int _enable_clocks(struct omap_hwmod *oh)
592{
63c85238
PW
593 int i;
594
595 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
596
4d3ae5a9 597 if (oh->_clk)
63c85238
PW
598 clk_enable(oh->_clk);
599
600 if (oh->slaves_cnt > 0) {
682fdc96
BC
601 for (i = 0; i < oh->slaves_cnt; i++) {
602 struct omap_hwmod_ocp_if *os = oh->slaves[i];
63c85238
PW
603 struct clk *c = os->_clk;
604
4d3ae5a9 605 if (c && (os->flags & OCPIF_SWSUP_IDLE))
63c85238
PW
606 clk_enable(c);
607 }
608 }
609
610 /* The opt clocks are controlled by the device driver. */
611
612 return 0;
613}
614
615/**
616 * _disable_clocks - disable hwmod main clock and interface clocks
617 * @oh: struct omap_hwmod *
618 *
619 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
620 */
621static int _disable_clocks(struct omap_hwmod *oh)
622{
63c85238
PW
623 int i;
624
625 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
626
4d3ae5a9 627 if (oh->_clk)
63c85238
PW
628 clk_disable(oh->_clk);
629
630 if (oh->slaves_cnt > 0) {
682fdc96
BC
631 for (i = 0; i < oh->slaves_cnt; i++) {
632 struct omap_hwmod_ocp_if *os = oh->slaves[i];
63c85238
PW
633 struct clk *c = os->_clk;
634
4d3ae5a9 635 if (c && (os->flags & OCPIF_SWSUP_IDLE))
63c85238
PW
636 clk_disable(c);
637 }
638 }
639
640 /* The opt clocks are controlled by the device driver. */
641
642 return 0;
643}
644
96835af9
BC
645static void _enable_optional_clocks(struct omap_hwmod *oh)
646{
647 struct omap_hwmod_opt_clk *oc;
648 int i;
649
650 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
651
652 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
653 if (oc->_clk) {
654 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
655 oc->_clk->name);
656 clk_enable(oc->_clk);
657 }
658}
659
660static void _disable_optional_clocks(struct omap_hwmod *oh)
661{
662 struct omap_hwmod_opt_clk *oc;
663 int i;
664
665 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
666
667 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
668 if (oc->_clk) {
669 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
670 oc->_clk->name);
671 clk_disable(oc->_clk);
672 }
673}
674
63c85238
PW
675/**
676 * _find_mpu_port_index - find hwmod OCP slave port ID intended for MPU use
677 * @oh: struct omap_hwmod *
678 *
679 * Returns the array index of the OCP slave port that the MPU
680 * addresses the device on, or -EINVAL upon error or not found.
681 */
01592df9 682static int __init _find_mpu_port_index(struct omap_hwmod *oh)
63c85238 683{
63c85238
PW
684 int i;
685 int found = 0;
686
687 if (!oh || oh->slaves_cnt == 0)
688 return -EINVAL;
689
682fdc96
BC
690 for (i = 0; i < oh->slaves_cnt; i++) {
691 struct omap_hwmod_ocp_if *os = oh->slaves[i];
692
63c85238
PW
693 if (os->user & OCP_USER_MPU) {
694 found = 1;
695 break;
696 }
697 }
698
699 if (found)
700 pr_debug("omap_hwmod: %s: MPU OCP slave port ID %d\n",
701 oh->name, i);
702 else
703 pr_debug("omap_hwmod: %s: no MPU OCP slave port found\n",
704 oh->name);
705
706 return (found) ? i : -EINVAL;
707}
708
709/**
710 * _find_mpu_rt_base - find hwmod register target base addr accessible by MPU
711 * @oh: struct omap_hwmod *
712 *
713 * Return the virtual address of the base of the register target of
714 * device @oh, or NULL on error.
715 */
01592df9 716static void __iomem * __init _find_mpu_rt_base(struct omap_hwmod *oh, u8 index)
63c85238
PW
717{
718 struct omap_hwmod_ocp_if *os;
719 struct omap_hwmod_addr_space *mem;
720 int i;
721 int found = 0;
986a13f5 722 void __iomem *va_start;
63c85238
PW
723
724 if (!oh || oh->slaves_cnt == 0)
725 return NULL;
726
682fdc96 727 os = oh->slaves[index];
63c85238
PW
728
729 for (i = 0, mem = os->addr; i < os->addr_cnt; i++, mem++) {
730 if (mem->flags & ADDR_TYPE_RT) {
731 found = 1;
732 break;
733 }
734 }
735
986a13f5
TL
736 if (found) {
737 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
738 if (!va_start) {
739 pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
740 return NULL;
741 }
63c85238 742 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
986a13f5
TL
743 oh->name, va_start);
744 } else {
63c85238
PW
745 pr_debug("omap_hwmod: %s: no MPU register target found\n",
746 oh->name);
986a13f5 747 }
63c85238 748
986a13f5 749 return (found) ? va_start : NULL;
63c85238
PW
750}
751
752/**
74ff3a68 753 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
63c85238
PW
754 * @oh: struct omap_hwmod *
755 *
756 * If module is marked as SWSUP_SIDLE, force the module out of slave
757 * idle; otherwise, configure it for smart-idle. If module is marked
758 * as SWSUP_MSUSPEND, force the module out of master standby;
759 * otherwise, configure it for smart-standby. No return value.
760 */
74ff3a68 761static void _enable_sysc(struct omap_hwmod *oh)
63c85238 762{
43b40992 763 u8 idlemode, sf;
63c85238
PW
764 u32 v;
765
43b40992 766 if (!oh->class->sysc)
63c85238
PW
767 return;
768
769 v = oh->_sysc_cache;
43b40992 770 sf = oh->class->sysc->sysc_flags;
63c85238 771
43b40992 772 if (sf & SYSC_HAS_SIDLEMODE) {
63c85238
PW
773 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
774 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
775 _set_slave_idlemode(oh, idlemode, &v);
776 }
777
43b40992 778 if (sf & SYSC_HAS_MIDLEMODE) {
63c85238
PW
779 idlemode = (oh->flags & HWMOD_SWSUP_MSTANDBY) ?
780 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
781 _set_master_standbymode(oh, idlemode, &v);
782 }
783
a16b1f7f
PW
784 /*
785 * XXX The clock framework should handle this, by
786 * calling into this code. But this must wait until the
787 * clock structures are tagged with omap_hwmod entries
788 */
43b40992
PW
789 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
790 (sf & SYSC_HAS_CLOCKACTIVITY))
791 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
63c85238 792
9980ce53
RN
793 /* If slave is in SMARTIDLE, also enable wakeup */
794 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
5a7ddcbd
KH
795 _enable_wakeup(oh, &v);
796
797 _write_sysconfig(v, oh);
78f26e87
HH
798
799 /*
800 * Set the autoidle bit only after setting the smartidle bit
801 * Setting this will not have any impact on the other modules.
802 */
803 if (sf & SYSC_HAS_AUTOIDLE) {
804 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
805 0 : 1;
806 _set_module_autoidle(oh, idlemode, &v);
807 _write_sysconfig(v, oh);
808 }
63c85238
PW
809}
810
811/**
74ff3a68 812 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
63c85238
PW
813 * @oh: struct omap_hwmod *
814 *
815 * If module is marked as SWSUP_SIDLE, force the module into slave
816 * idle; otherwise, configure it for smart-idle. If module is marked
817 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
818 * configure it for smart-standby. No return value.
819 */
74ff3a68 820static void _idle_sysc(struct omap_hwmod *oh)
63c85238 821{
43b40992 822 u8 idlemode, sf;
63c85238
PW
823 u32 v;
824
43b40992 825 if (!oh->class->sysc)
63c85238
PW
826 return;
827
828 v = oh->_sysc_cache;
43b40992 829 sf = oh->class->sysc->sysc_flags;
63c85238 830
43b40992 831 if (sf & SYSC_HAS_SIDLEMODE) {
63c85238
PW
832 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
833 HWMOD_IDLEMODE_FORCE : HWMOD_IDLEMODE_SMART;
834 _set_slave_idlemode(oh, idlemode, &v);
835 }
836
43b40992 837 if (sf & SYSC_HAS_MIDLEMODE) {
63c85238
PW
838 idlemode = (oh->flags & HWMOD_SWSUP_MSTANDBY) ?
839 HWMOD_IDLEMODE_FORCE : HWMOD_IDLEMODE_SMART;
840 _set_master_standbymode(oh, idlemode, &v);
841 }
842
86009eb3
BC
843 /* If slave is in SMARTIDLE, also enable wakeup */
844 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
845 _enable_wakeup(oh, &v);
846
63c85238
PW
847 _write_sysconfig(v, oh);
848}
849
850/**
74ff3a68 851 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
63c85238
PW
852 * @oh: struct omap_hwmod *
853 *
854 * Force the module into slave idle and master suspend. No return
855 * value.
856 */
74ff3a68 857static void _shutdown_sysc(struct omap_hwmod *oh)
63c85238
PW
858{
859 u32 v;
43b40992 860 u8 sf;
63c85238 861
43b40992 862 if (!oh->class->sysc)
63c85238
PW
863 return;
864
865 v = oh->_sysc_cache;
43b40992 866 sf = oh->class->sysc->sysc_flags;
63c85238 867
43b40992 868 if (sf & SYSC_HAS_SIDLEMODE)
63c85238
PW
869 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
870
43b40992 871 if (sf & SYSC_HAS_MIDLEMODE)
63c85238
PW
872 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
873
43b40992 874 if (sf & SYSC_HAS_AUTOIDLE)
726072e5 875 _set_module_autoidle(oh, 1, &v);
63c85238
PW
876
877 _write_sysconfig(v, oh);
878}
879
880/**
881 * _lookup - find an omap_hwmod by name
882 * @name: find an omap_hwmod by name
883 *
884 * Return a pointer to an omap_hwmod by name, or NULL if not found.
63c85238
PW
885 */
886static struct omap_hwmod *_lookup(const char *name)
887{
888 struct omap_hwmod *oh, *temp_oh;
889
890 oh = NULL;
891
892 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
893 if (!strcmp(name, temp_oh->name)) {
894 oh = temp_oh;
895 break;
896 }
897 }
898
899 return oh;
900}
901
902/**
903 * _init_clocks - clk_get() all clocks associated with this hwmod
904 * @oh: struct omap_hwmod *
97d60162 905 * @data: not used; pass NULL
63c85238
PW
906 *
907 * Called by omap_hwmod_late_init() (after omap2_clk_init()).
12b1fdb4
KH
908 * Resolves all clock names embedded in the hwmod. Returns -EINVAL if
909 * the omap_hwmod has not yet been registered or if the clocks have
910 * already been initialized, 0 on success, or a non-zero error on
911 * failure.
63c85238 912 */
97d60162 913static int _init_clocks(struct omap_hwmod *oh, void *data)
63c85238
PW
914{
915 int ret = 0;
916
917 if (!oh || (oh->_state != _HWMOD_STATE_REGISTERED))
918 return -EINVAL;
919
920 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
921
922 ret |= _init_main_clk(oh);
923 ret |= _init_interface_clks(oh);
924 ret |= _init_opt_clks(oh);
925
f5c1f84b
BC
926 if (!ret)
927 oh->_state = _HWMOD_STATE_CLKS_INITED;
63c85238 928
f5c1f84b 929 return 0;
63c85238
PW
930}
931
932/**
933 * _wait_target_ready - wait for a module to leave slave idle
934 * @oh: struct omap_hwmod *
935 *
936 * Wait for a module @oh to leave slave idle. Returns 0 if the module
937 * does not have an IDLEST bit or if the module successfully leaves
938 * slave idle; otherwise, pass along the return value of the
939 * appropriate *_cm_wait_module_ready() function.
940 */
941static int _wait_target_ready(struct omap_hwmod *oh)
942{
943 struct omap_hwmod_ocp_if *os;
944 int ret;
945
946 if (!oh)
947 return -EINVAL;
948
949 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
950 return 0;
951
682fdc96 952 os = oh->slaves[oh->_mpu_port_index];
63c85238 953
33f7ec81 954 if (oh->flags & HWMOD_NO_IDLEST)
63c85238
PW
955 return 0;
956
957 /* XXX check module SIDLEMODE */
958
959 /* XXX check clock enable states */
960
961 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
962 ret = omap2_cm_wait_module_ready(oh->prcm.omap2.module_offs,
963 oh->prcm.omap2.idlest_reg_id,
964 oh->prcm.omap2.idlest_idle_bit);
63c85238 965 } else if (cpu_is_omap44xx()) {
9a23dfe1 966 ret = omap4_cm_wait_module_ready(oh->prcm.omap4.clkctrl_reg);
63c85238
PW
967 } else {
968 BUG();
969 };
970
971 return ret;
972}
973
5365efbe
BC
974/**
975 * _lookup_hardreset - return the register bit shift for this hwmod/reset line
976 * @oh: struct omap_hwmod *
977 * @name: name of the reset line in the context of this hwmod
978 *
979 * Return the bit position of the reset line that match the
980 * input name. Return -ENOENT if not found.
981 */
982static u8 _lookup_hardreset(struct omap_hwmod *oh, const char *name)
983{
984 int i;
985
986 for (i = 0; i < oh->rst_lines_cnt; i++) {
987 const char *rst_line = oh->rst_lines[i].name;
988 if (!strcmp(rst_line, name)) {
989 u8 shift = oh->rst_lines[i].rst_shift;
990 pr_debug("omap_hwmod: %s: _lookup_hardreset: %s: %d\n",
991 oh->name, rst_line, shift);
992
993 return shift;
994 }
995 }
996
997 return -ENOENT;
998}
999
1000/**
1001 * _assert_hardreset - assert the HW reset line of submodules
1002 * contained in the hwmod module.
1003 * @oh: struct omap_hwmod *
1004 * @name: name of the reset line to lookup and assert
1005 *
1006 * Some IP like dsp, ipu or iva contain processor that require
1007 * an HW reset line to be assert / deassert in order to enable fully
1008 * the IP.
1009 */
1010static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1011{
1012 u8 shift;
1013
1014 if (!oh)
1015 return -EINVAL;
1016
1017 shift = _lookup_hardreset(oh, name);
1018 if (IS_ERR_VALUE(shift))
1019 return shift;
1020
1021 if (cpu_is_omap24xx() || cpu_is_omap34xx())
1022 return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
1023 shift);
1024 else if (cpu_is_omap44xx())
1025 return omap4_prm_assert_hardreset(oh->prcm.omap4.rstctrl_reg,
1026 shift);
1027 else
1028 return -EINVAL;
1029}
1030
1031/**
1032 * _deassert_hardreset - deassert the HW reset line of submodules contained
1033 * in the hwmod module.
1034 * @oh: struct omap_hwmod *
1035 * @name: name of the reset line to look up and deassert
1036 *
1037 * Some IP like dsp, ipu or iva contain processor that require
1038 * an HW reset line to be assert / deassert in order to enable fully
1039 * the IP.
1040 */
1041static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1042{
1043 u8 shift;
1044 int r;
1045
1046 if (!oh)
1047 return -EINVAL;
1048
1049 shift = _lookup_hardreset(oh, name);
1050 if (IS_ERR_VALUE(shift))
1051 return shift;
1052
1053 if (cpu_is_omap24xx() || cpu_is_omap34xx())
1054 r = omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
1055 shift);
1056 else if (cpu_is_omap44xx())
1057 r = omap4_prm_deassert_hardreset(oh->prcm.omap4.rstctrl_reg,
1058 shift);
1059 else
1060 return -EINVAL;
1061
1062 if (r == -EBUSY)
1063 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1064
1065 return r;
1066}
1067
1068/**
1069 * _read_hardreset - read the HW reset line state of submodules
1070 * contained in the hwmod module
1071 * @oh: struct omap_hwmod *
1072 * @name: name of the reset line to look up and read
1073 *
1074 * Return the state of the reset line.
1075 */
1076static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1077{
1078 u8 shift;
1079
1080 if (!oh)
1081 return -EINVAL;
1082
1083 shift = _lookup_hardreset(oh, name);
1084 if (IS_ERR_VALUE(shift))
1085 return shift;
1086
1087 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1088 return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
1089 shift);
1090 } else if (cpu_is_omap44xx()) {
1091 return omap4_prm_is_hardreset_asserted(oh->prcm.omap4.rstctrl_reg,
1092 shift);
1093 } else {
1094 return -EINVAL;
1095 }
1096}
1097
63c85238 1098/**
bd36179e 1099 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
63c85238
PW
1100 * @oh: struct omap_hwmod *
1101 *
1102 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
12b1fdb4
KH
1103 * enabled for this to work. Returns -EINVAL if the hwmod cannot be
1104 * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if
1105 * the module did not reset in time, or 0 upon success.
2cb06814
BC
1106 *
1107 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
bd36179e 1108 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
2cb06814
BC
1109 * use the SYSCONFIG softreset bit to provide the status.
1110 *
bd36179e
PW
1111 * Note that some IP like McBSP do have reset control but don't have
1112 * reset status.
63c85238 1113 */
bd36179e 1114static int _ocp_softreset(struct omap_hwmod *oh)
63c85238 1115{
96835af9 1116 u32 v;
6f8b7ff5 1117 int c = 0;
96835af9 1118 int ret = 0;
63c85238 1119
43b40992 1120 if (!oh->class->sysc ||
2cb06814 1121 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
63c85238
PW
1122 return -EINVAL;
1123
1124 /* clocks must be on for this operation */
1125 if (oh->_state != _HWMOD_STATE_ENABLED) {
76e5589e
BC
1126 pr_warning("omap_hwmod: %s: reset can only be entered from "
1127 "enabled state\n", oh->name);
63c85238
PW
1128 return -EINVAL;
1129 }
1130
96835af9
BC
1131 /* For some modules, all optionnal clocks need to be enabled as well */
1132 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1133 _enable_optional_clocks(oh);
1134
bd36179e 1135 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
63c85238
PW
1136
1137 v = oh->_sysc_cache;
96835af9
BC
1138 ret = _set_softreset(oh, &v);
1139 if (ret)
1140 goto dis_opt_clks;
63c85238
PW
1141 _write_sysconfig(v, oh);
1142
2cb06814 1143 if (oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
cc7a1d2a 1144 omap_test_timeout((omap_hwmod_read(oh,
2cb06814
BC
1145 oh->class->sysc->syss_offs)
1146 & SYSS_RESETDONE_MASK),
1147 MAX_MODULE_SOFTRESET_WAIT, c);
1148 else if (oh->class->sysc->sysc_flags & SYSC_HAS_RESET_STATUS)
cc7a1d2a 1149 omap_test_timeout(!(omap_hwmod_read(oh,
2cb06814
BC
1150 oh->class->sysc->sysc_offs)
1151 & SYSC_TYPE2_SOFTRESET_MASK),
1152 MAX_MODULE_SOFTRESET_WAIT, c);
63c85238 1153
5365efbe 1154 if (c == MAX_MODULE_SOFTRESET_WAIT)
76e5589e
BC
1155 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1156 oh->name, MAX_MODULE_SOFTRESET_WAIT);
63c85238 1157 else
5365efbe 1158 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
63c85238
PW
1159
1160 /*
1161 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1162 * _wait_target_ready() or _reset()
1163 */
1164
96835af9
BC
1165 ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
1166
1167dis_opt_clks:
1168 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1169 _disable_optional_clocks(oh);
1170
1171 return ret;
63c85238
PW
1172}
1173
bd36179e
PW
1174/**
1175 * _reset - reset an omap_hwmod
1176 * @oh: struct omap_hwmod *
1177 *
1178 * Resets an omap_hwmod @oh. The default software reset mechanism for
1179 * most OMAP IP blocks is triggered via the OCP_SYSCONFIG.SOFTRESET
1180 * bit. However, some hwmods cannot be reset via this method: some
1181 * are not targets and therefore have no OCP header registers to
1182 * access; others (like the IVA) have idiosyncratic reset sequences.
1183 * So for these relatively rare cases, custom reset code can be
1184 * supplied in the struct omap_hwmod_class .reset function pointer.
1185 * Passes along the return value from either _reset() or the custom
1186 * reset function - these must return -EINVAL if the hwmod cannot be
1187 * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if
1188 * the module did not reset in time, or 0 upon success.
1189 */
1190static int _reset(struct omap_hwmod *oh)
1191{
1192 int ret;
1193
1194 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1195
1196 ret = (oh->class->reset) ? oh->class->reset(oh) : _ocp_softreset(oh);
1197
1198 return ret;
1199}
1200
63c85238 1201/**
dc6d1cda 1202 * _enable - enable an omap_hwmod
63c85238
PW
1203 * @oh: struct omap_hwmod *
1204 *
1205 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
dc6d1cda
PW
1206 * register target. Returns -EINVAL if the hwmod is in the wrong
1207 * state or passes along the return value of _wait_target_ready().
63c85238 1208 */
dc6d1cda 1209static int _enable(struct omap_hwmod *oh)
63c85238
PW
1210{
1211 int r;
1212
1213 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
1214 oh->_state != _HWMOD_STATE_IDLE &&
1215 oh->_state != _HWMOD_STATE_DISABLED) {
1216 WARN(1, "omap_hwmod: %s: enabled state can only be entered "
1217 "from initialized, idle, or disabled state\n", oh->name);
1218 return -EINVAL;
1219 }
1220
1221 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
1222
5365efbe
BC
1223 /*
1224 * If an IP contains only one HW reset line, then de-assert it in order
1225 * to allow to enable the clocks. Otherwise the PRCM will return
1226 * Intransition status, and the init will failed.
1227 */
1228 if ((oh->_state == _HWMOD_STATE_INITIALIZED ||
1229 oh->_state == _HWMOD_STATE_DISABLED) && oh->rst_lines_cnt == 1)
1230 _deassert_hardreset(oh, oh->rst_lines[0].name);
1231
8d9af88f
TL
1232 /* Mux pins for device runtime if populated */
1233 if (oh->mux)
1234 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
63c85238
PW
1235
1236 _add_initiator_dep(oh, mpu_oh);
1237 _enable_clocks(oh);
1238
63c85238 1239 r = _wait_target_ready(oh);
9a23dfe1 1240 if (!r) {
63c85238
PW
1241 oh->_state = _HWMOD_STATE_ENABLED;
1242
9a23dfe1
BC
1243 /* Access the sysconfig only if the target is ready */
1244 if (oh->class->sysc) {
1245 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
1246 _update_sysc_cache(oh);
74ff3a68 1247 _enable_sysc(oh);
9a23dfe1
BC
1248 }
1249 } else {
f2dd7e09 1250 _disable_clocks(oh);
9a23dfe1
BC
1251 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
1252 oh->name, r);
1253 }
1254
63c85238
PW
1255 return r;
1256}
1257
1258/**
dc6d1cda 1259 * _idle - idle an omap_hwmod
63c85238
PW
1260 * @oh: struct omap_hwmod *
1261 *
1262 * Idles an omap_hwmod @oh. This should be called once the hwmod has
dc6d1cda
PW
1263 * no further work. Returns -EINVAL if the hwmod is in the wrong
1264 * state or returns 0.
63c85238 1265 */
dc6d1cda 1266static int _idle(struct omap_hwmod *oh)
63c85238
PW
1267{
1268 if (oh->_state != _HWMOD_STATE_ENABLED) {
1269 WARN(1, "omap_hwmod: %s: idle state can only be entered from "
1270 "enabled state\n", oh->name);
1271 return -EINVAL;
1272 }
1273
1274 pr_debug("omap_hwmod: %s: idling\n", oh->name);
1275
43b40992 1276 if (oh->class->sysc)
74ff3a68 1277 _idle_sysc(oh);
63c85238
PW
1278 _del_initiator_dep(oh, mpu_oh);
1279 _disable_clocks(oh);
1280
8d9af88f
TL
1281 /* Mux pins for device idle if populated */
1282 if (oh->mux)
1283 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
1284
63c85238
PW
1285 oh->_state = _HWMOD_STATE_IDLE;
1286
1287 return 0;
1288}
1289
9599217a
KVA
1290/**
1291 * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit
1292 * @oh: struct omap_hwmod *
1293 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
1294 *
1295 * Sets the IP block's OCP autoidle bit in hardware, and updates our
1296 * local copy. Intended to be used by drivers that require
1297 * direct manipulation of the AUTOIDLE bits.
1298 * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes
1299 * along the return value from _set_module_autoidle().
1300 *
1301 * Any users of this function should be scrutinized carefully.
1302 */
1303int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle)
1304{
1305 u32 v;
1306 int retval = 0;
1307 unsigned long flags;
1308
1309 if (!oh || oh->_state != _HWMOD_STATE_ENABLED)
1310 return -EINVAL;
1311
1312 spin_lock_irqsave(&oh->_lock, flags);
1313
1314 v = oh->_sysc_cache;
1315
1316 retval = _set_module_autoidle(oh, autoidle, &v);
1317
1318 if (!retval)
1319 _write_sysconfig(v, oh);
1320
1321 spin_unlock_irqrestore(&oh->_lock, flags);
1322
1323 return retval;
1324}
1325
63c85238
PW
1326/**
1327 * _shutdown - shutdown an omap_hwmod
1328 * @oh: struct omap_hwmod *
1329 *
1330 * Shut down an omap_hwmod @oh. This should be called when the driver
1331 * used for the hwmod is removed or unloaded or if the driver is not
1332 * used by the system. Returns -EINVAL if the hwmod is in the wrong
1333 * state or returns 0.
1334 */
1335static int _shutdown(struct omap_hwmod *oh)
1336{
e4dc8f50
PW
1337 int ret;
1338 u8 prev_state;
1339
63c85238
PW
1340 if (oh->_state != _HWMOD_STATE_IDLE &&
1341 oh->_state != _HWMOD_STATE_ENABLED) {
1342 WARN(1, "omap_hwmod: %s: disabled state can only be entered "
1343 "from idle, or enabled state\n", oh->name);
1344 return -EINVAL;
1345 }
1346
1347 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
1348
e4dc8f50
PW
1349 if (oh->class->pre_shutdown) {
1350 prev_state = oh->_state;
1351 if (oh->_state == _HWMOD_STATE_IDLE)
dc6d1cda 1352 _enable(oh);
e4dc8f50
PW
1353 ret = oh->class->pre_shutdown(oh);
1354 if (ret) {
1355 if (prev_state == _HWMOD_STATE_IDLE)
dc6d1cda 1356 _idle(oh);
e4dc8f50
PW
1357 return ret;
1358 }
1359 }
1360
43b40992 1361 if (oh->class->sysc)
74ff3a68 1362 _shutdown_sysc(oh);
3827f949 1363
5365efbe
BC
1364 /*
1365 * If an IP contains only one HW reset line, then assert it
1366 * before disabling the clocks and shutting down the IP.
1367 */
1368 if (oh->rst_lines_cnt == 1)
1369 _assert_hardreset(oh, oh->rst_lines[0].name);
1370
3827f949
BC
1371 /* clocks and deps are already disabled in idle */
1372 if (oh->_state == _HWMOD_STATE_ENABLED) {
1373 _del_initiator_dep(oh, mpu_oh);
1374 /* XXX what about the other system initiators here? dma, dsp */
1375 _disable_clocks(oh);
1376 }
63c85238
PW
1377 /* XXX Should this code also force-disable the optional clocks? */
1378
8d9af88f
TL
1379 /* Mux pins to safe mode or use populated off mode values */
1380 if (oh->mux)
1381 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
63c85238
PW
1382
1383 oh->_state = _HWMOD_STATE_DISABLED;
1384
1385 return 0;
1386}
1387
63c85238
PW
1388/**
1389 * _setup - do initial configuration of omap_hwmod
1390 * @oh: struct omap_hwmod *
1391 *
1392 * Writes the CLOCKACTIVITY bits @clockact to the hwmod @oh
2092e5cc
PW
1393 * OCP_SYSCONFIG register. Returns -EINVAL if the hwmod is in the
1394 * wrong state or returns 0.
63c85238 1395 */
97d60162 1396static int _setup(struct omap_hwmod *oh, void *data)
63c85238 1397{
9a23dfe1 1398 int i, r;
2092e5cc 1399 u8 postsetup_state;
97d60162 1400
63c85238
PW
1401 /* Set iclk autoidle mode */
1402 if (oh->slaves_cnt > 0) {
682fdc96
BC
1403 for (i = 0; i < oh->slaves_cnt; i++) {
1404 struct omap_hwmod_ocp_if *os = oh->slaves[i];
63c85238
PW
1405 struct clk *c = os->_clk;
1406
4d3ae5a9 1407 if (!c)
63c85238
PW
1408 continue;
1409
1410 if (os->flags & OCPIF_SWSUP_IDLE) {
1411 /* XXX omap_iclk_deny_idle(c); */
1412 } else {
1413 /* XXX omap_iclk_allow_idle(c); */
1414 clk_enable(c);
1415 }
1416 }
1417 }
1418
1419 oh->_state = _HWMOD_STATE_INITIALIZED;
1420
5365efbe
BC
1421 /*
1422 * In the case of hwmod with hardreset that should not be
1423 * de-assert at boot time, we have to keep the module
1424 * initialized, because we cannot enable it properly with the
1425 * reset asserted. Exit without warning because that behavior is
1426 * expected.
1427 */
1428 if ((oh->flags & HWMOD_INIT_NO_RESET) && oh->rst_lines_cnt == 1)
1429 return 0;
1430
dc6d1cda 1431 r = _enable(oh);
9a23dfe1
BC
1432 if (r) {
1433 pr_warning("omap_hwmod: %s: cannot be enabled (%d)\n",
1434 oh->name, oh->_state);
1435 return 0;
1436 }
63c85238 1437
b835d014 1438 if (!(oh->flags & HWMOD_INIT_NO_RESET)) {
76e5589e
BC
1439 _reset(oh);
1440
b835d014 1441 /*
76e5589e 1442 * OCP_SYSCONFIG bits need to be reprogrammed after a softreset.
dc6d1cda 1443 * The _enable() function should be split to
76e5589e 1444 * avoid the rewrite of the OCP_SYSCONFIG register.
b835d014 1445 */
43b40992 1446 if (oh->class->sysc) {
b835d014 1447 _update_sysc_cache(oh);
74ff3a68 1448 _enable_sysc(oh);
b835d014
PW
1449 }
1450 }
63c85238 1451
2092e5cc
PW
1452 postsetup_state = oh->_postsetup_state;
1453 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
1454 postsetup_state = _HWMOD_STATE_ENABLED;
1455
1456 /*
1457 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
1458 * it should be set by the core code as a runtime flag during startup
1459 */
1460 if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
1461 (postsetup_state == _HWMOD_STATE_IDLE))
1462 postsetup_state = _HWMOD_STATE_ENABLED;
1463
1464 if (postsetup_state == _HWMOD_STATE_IDLE)
dc6d1cda 1465 _idle(oh);
2092e5cc
PW
1466 else if (postsetup_state == _HWMOD_STATE_DISABLED)
1467 _shutdown(oh);
1468 else if (postsetup_state != _HWMOD_STATE_ENABLED)
1469 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
1470 oh->name, postsetup_state);
63c85238
PW
1471
1472 return 0;
1473}
1474
63c85238 1475/**
0102b627 1476 * _register - register a struct omap_hwmod
63c85238
PW
1477 * @oh: struct omap_hwmod *
1478 *
43b40992
PW
1479 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
1480 * already has been registered by the same name; -EINVAL if the
1481 * omap_hwmod is in the wrong state, if @oh is NULL, if the
1482 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
1483 * name, or if the omap_hwmod's class is missing a name; or 0 upon
1484 * success.
63c85238
PW
1485 *
1486 * XXX The data should be copied into bootmem, so the original data
1487 * should be marked __initdata and freed after init. This would allow
1488 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
1489 * that the copy process would be relatively complex due to the large number
1490 * of substructures.
1491 */
01592df9 1492static int __init _register(struct omap_hwmod *oh)
63c85238
PW
1493{
1494 int ret, ms_id;
1495
43b40992
PW
1496 if (!oh || !oh->name || !oh->class || !oh->class->name ||
1497 (oh->_state != _HWMOD_STATE_UNKNOWN))
63c85238
PW
1498 return -EINVAL;
1499
63c85238
PW
1500 pr_debug("omap_hwmod: %s: registering\n", oh->name);
1501
ce35b244
BC
1502 if (_lookup(oh->name))
1503 return -EEXIST;
63c85238
PW
1504
1505 ms_id = _find_mpu_port_index(oh);
1506 if (!IS_ERR_VALUE(ms_id)) {
1507 oh->_mpu_port_index = ms_id;
db2a60bf 1508 oh->_mpu_rt_va = _find_mpu_rt_base(oh, oh->_mpu_port_index);
63c85238
PW
1509 } else {
1510 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
1511 }
1512
1513 list_add_tail(&oh->node, &omap_hwmod_list);
1514
dc6d1cda 1515 spin_lock_init(&oh->_lock);
2092e5cc 1516
63c85238
PW
1517 oh->_state = _HWMOD_STATE_REGISTERED;
1518
1519 ret = 0;
1520
63c85238
PW
1521 return ret;
1522}
1523
0102b627
BC
1524
1525/* Public functions */
1526
1527u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
1528{
1529 if (oh->flags & HWMOD_16BIT_REG)
1530 return __raw_readw(oh->_mpu_rt_va + reg_offs);
1531 else
1532 return __raw_readl(oh->_mpu_rt_va + reg_offs);
1533}
1534
1535void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
1536{
1537 if (oh->flags & HWMOD_16BIT_REG)
1538 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
1539 else
1540 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
1541}
1542
1543/**
1544 * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode
1545 * @oh: struct omap_hwmod *
1546 * @idlemode: SIDLEMODE field bits (shifted to bit 0)
1547 *
1548 * Sets the IP block's OCP slave idlemode in hardware, and updates our
1549 * local copy. Intended to be used by drivers that have some erratum
1550 * that requires direct manipulation of the SIDLEMODE bits. Returns
1551 * -EINVAL if @oh is null, or passes along the return value from
1552 * _set_slave_idlemode().
1553 *
1554 * XXX Does this function have any current users? If not, we should
1555 * remove it; it is better to let the rest of the hwmod code handle this.
1556 * Any users of this function should be scrutinized carefully.
1557 */
1558int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode)
1559{
1560 u32 v;
1561 int retval = 0;
1562
1563 if (!oh)
1564 return -EINVAL;
1565
1566 v = oh->_sysc_cache;
1567
1568 retval = _set_slave_idlemode(oh, idlemode, &v);
1569 if (!retval)
1570 _write_sysconfig(v, oh);
1571
1572 return retval;
1573}
1574
63c85238
PW
1575/**
1576 * omap_hwmod_lookup - look up a registered omap_hwmod by name
1577 * @name: name of the omap_hwmod to look up
1578 *
1579 * Given a @name of an omap_hwmod, return a pointer to the registered
1580 * struct omap_hwmod *, or NULL upon error.
1581 */
1582struct omap_hwmod *omap_hwmod_lookup(const char *name)
1583{
1584 struct omap_hwmod *oh;
1585
1586 if (!name)
1587 return NULL;
1588
63c85238 1589 oh = _lookup(name);
63c85238
PW
1590
1591 return oh;
1592}
1593
1594/**
1595 * omap_hwmod_for_each - call function for each registered omap_hwmod
1596 * @fn: pointer to a callback function
97d60162 1597 * @data: void * data to pass to callback function
63c85238
PW
1598 *
1599 * Call @fn for each registered omap_hwmod, passing @data to each
1600 * function. @fn must return 0 for success or any other value for
1601 * failure. If @fn returns non-zero, the iteration across omap_hwmods
1602 * will stop and the non-zero return value will be passed to the
1603 * caller of omap_hwmod_for_each(). @fn is called with
1604 * omap_hwmod_for_each() held.
1605 */
97d60162
PW
1606int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
1607 void *data)
63c85238
PW
1608{
1609 struct omap_hwmod *temp_oh;
1610 int ret;
1611
1612 if (!fn)
1613 return -EINVAL;
1614
63c85238 1615 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
97d60162 1616 ret = (*fn)(temp_oh, data);
63c85238
PW
1617 if (ret)
1618 break;
1619 }
63c85238
PW
1620
1621 return ret;
1622}
1623
1624
1625/**
1626 * omap_hwmod_init - init omap_hwmod code and register hwmods
1627 * @ohs: pointer to an array of omap_hwmods to register
1628 *
1629 * Intended to be called early in boot before the clock framework is
1630 * initialized. If @ohs is not null, will register all omap_hwmods
1631 * listed in @ohs that are valid for this chip. Returns -EINVAL if
1632 * omap_hwmod_init() has already been called or 0 otherwise.
1633 */
01592df9 1634int __init omap_hwmod_init(struct omap_hwmod **ohs)
63c85238
PW
1635{
1636 struct omap_hwmod *oh;
1637 int r;
1638
1639 if (inited)
1640 return -EINVAL;
1641
1642 inited = 1;
1643
1644 if (!ohs)
1645 return 0;
1646
1647 oh = *ohs;
1648 while (oh) {
1649 if (omap_chip_is(oh->omap_chip)) {
0102b627
BC
1650 r = _register(oh);
1651 WARN(r, "omap_hwmod: %s: _register returned "
63c85238
PW
1652 "%d\n", oh->name, r);
1653 }
1654 oh = *++ohs;
1655 }
1656
1657 return 0;
1658}
1659
1660/**
1661 * omap_hwmod_late_init - do some post-clock framework initialization
1662 *
1663 * Must be called after omap2_clk_init(). Resolves the struct clk names
1664 * to struct clk pointers for each registered omap_hwmod. Also calls
1665 * _setup() on each hwmod. Returns 0.
1666 */
2092e5cc 1667int omap_hwmod_late_init(void)
63c85238
PW
1668{
1669 int r;
1670
1671 /* XXX check return value */
97d60162 1672 r = omap_hwmod_for_each(_init_clocks, NULL);
63c85238
PW
1673 WARN(r, "omap_hwmod: omap_hwmod_late_init(): _init_clocks failed\n");
1674
1675 mpu_oh = omap_hwmod_lookup(MPU_INITIATOR_NAME);
1676 WARN(!mpu_oh, "omap_hwmod: could not find MPU initiator hwmod %s\n",
1677 MPU_INITIATOR_NAME);
1678
2092e5cc 1679 omap_hwmod_for_each(_setup, NULL);
63c85238
PW
1680
1681 return 0;
1682}
1683
63c85238
PW
1684/**
1685 * omap_hwmod_enable - enable an omap_hwmod
1686 * @oh: struct omap_hwmod *
1687 *
74ff3a68 1688 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
63c85238
PW
1689 * Returns -EINVAL on error or passes along the return value from _enable().
1690 */
1691int omap_hwmod_enable(struct omap_hwmod *oh)
1692{
1693 int r;
dc6d1cda 1694 unsigned long flags;
63c85238
PW
1695
1696 if (!oh)
1697 return -EINVAL;
1698
dc6d1cda
PW
1699 spin_lock_irqsave(&oh->_lock, flags);
1700 r = _enable(oh);
1701 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
1702
1703 return r;
1704}
1705
1706/**
1707 * omap_hwmod_idle - idle an omap_hwmod
1708 * @oh: struct omap_hwmod *
1709 *
74ff3a68 1710 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
63c85238
PW
1711 * Returns -EINVAL on error or passes along the return value from _idle().
1712 */
1713int omap_hwmod_idle(struct omap_hwmod *oh)
1714{
dc6d1cda
PW
1715 unsigned long flags;
1716
63c85238
PW
1717 if (!oh)
1718 return -EINVAL;
1719
dc6d1cda
PW
1720 spin_lock_irqsave(&oh->_lock, flags);
1721 _idle(oh);
1722 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
1723
1724 return 0;
1725}
1726
1727/**
1728 * omap_hwmod_shutdown - shutdown an omap_hwmod
1729 * @oh: struct omap_hwmod *
1730 *
74ff3a68 1731 * Shutdown an omap_hwmod @oh. Intended to be called by
63c85238
PW
1732 * omap_device_shutdown(). Returns -EINVAL on error or passes along
1733 * the return value from _shutdown().
1734 */
1735int omap_hwmod_shutdown(struct omap_hwmod *oh)
1736{
dc6d1cda
PW
1737 unsigned long flags;
1738
63c85238
PW
1739 if (!oh)
1740 return -EINVAL;
1741
dc6d1cda 1742 spin_lock_irqsave(&oh->_lock, flags);
63c85238 1743 _shutdown(oh);
dc6d1cda 1744 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
1745
1746 return 0;
1747}
1748
1749/**
1750 * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
1751 * @oh: struct omap_hwmod *oh
1752 *
1753 * Intended to be called by the omap_device code.
1754 */
1755int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
1756{
dc6d1cda
PW
1757 unsigned long flags;
1758
1759 spin_lock_irqsave(&oh->_lock, flags);
63c85238 1760 _enable_clocks(oh);
dc6d1cda 1761 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
1762
1763 return 0;
1764}
1765
1766/**
1767 * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
1768 * @oh: struct omap_hwmod *oh
1769 *
1770 * Intended to be called by the omap_device code.
1771 */
1772int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
1773{
dc6d1cda
PW
1774 unsigned long flags;
1775
1776 spin_lock_irqsave(&oh->_lock, flags);
63c85238 1777 _disable_clocks(oh);
dc6d1cda 1778 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
1779
1780 return 0;
1781}
1782
1783/**
1784 * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
1785 * @oh: struct omap_hwmod *oh
1786 *
1787 * Intended to be called by drivers and core code when all posted
1788 * writes to a device must complete before continuing further
1789 * execution (for example, after clearing some device IRQSTATUS
1790 * register bits)
1791 *
1792 * XXX what about targets with multiple OCP threads?
1793 */
1794void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
1795{
1796 BUG_ON(!oh);
1797
43b40992 1798 if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
63c85238
PW
1799 WARN(1, "omap_device: %s: OCP barrier impossible due to "
1800 "device configuration\n", oh->name);
1801 return;
1802 }
1803
1804 /*
1805 * Forces posted writes to complete on the OCP thread handling
1806 * register writes
1807 */
cc7a1d2a 1808 omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
63c85238
PW
1809}
1810
1811/**
1812 * omap_hwmod_reset - reset the hwmod
1813 * @oh: struct omap_hwmod *
1814 *
1815 * Under some conditions, a driver may wish to reset the entire device.
1816 * Called from omap_device code. Returns -EINVAL on error or passes along
9b579114 1817 * the return value from _reset().
63c85238
PW
1818 */
1819int omap_hwmod_reset(struct omap_hwmod *oh)
1820{
1821 int r;
dc6d1cda 1822 unsigned long flags;
63c85238 1823
9b579114 1824 if (!oh)
63c85238
PW
1825 return -EINVAL;
1826
dc6d1cda 1827 spin_lock_irqsave(&oh->_lock, flags);
63c85238 1828 r = _reset(oh);
dc6d1cda 1829 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
1830
1831 return r;
1832}
1833
1834/**
1835 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
1836 * @oh: struct omap_hwmod *
1837 * @res: pointer to the first element of an array of struct resource to fill
1838 *
1839 * Count the number of struct resource array elements necessary to
1840 * contain omap_hwmod @oh resources. Intended to be called by code
1841 * that registers omap_devices. Intended to be used to determine the
1842 * size of a dynamically-allocated struct resource array, before
1843 * calling omap_hwmod_fill_resources(). Returns the number of struct
1844 * resource array elements needed.
1845 *
1846 * XXX This code is not optimized. It could attempt to merge adjacent
1847 * resource IDs.
1848 *
1849 */
1850int omap_hwmod_count_resources(struct omap_hwmod *oh)
1851{
1852 int ret, i;
1853
9ee9fff9 1854 ret = oh->mpu_irqs_cnt + oh->sdma_reqs_cnt;
63c85238
PW
1855
1856 for (i = 0; i < oh->slaves_cnt; i++)
682fdc96 1857 ret += oh->slaves[i]->addr_cnt;
63c85238
PW
1858
1859 return ret;
1860}
1861
1862/**
1863 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
1864 * @oh: struct omap_hwmod *
1865 * @res: pointer to the first element of an array of struct resource to fill
1866 *
1867 * Fill the struct resource array @res with resource data from the
1868 * omap_hwmod @oh. Intended to be called by code that registers
1869 * omap_devices. See also omap_hwmod_count_resources(). Returns the
1870 * number of array elements filled.
1871 */
1872int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
1873{
1874 int i, j;
1875 int r = 0;
1876
1877 /* For each IRQ, DMA, memory area, fill in array.*/
1878
1879 for (i = 0; i < oh->mpu_irqs_cnt; i++) {
718bfd76
PW
1880 (res + r)->name = (oh->mpu_irqs + i)->name;
1881 (res + r)->start = (oh->mpu_irqs + i)->irq;
1882 (res + r)->end = (oh->mpu_irqs + i)->irq;
63c85238
PW
1883 (res + r)->flags = IORESOURCE_IRQ;
1884 r++;
1885 }
1886
9ee9fff9
BC
1887 for (i = 0; i < oh->sdma_reqs_cnt; i++) {
1888 (res + r)->name = (oh->sdma_reqs + i)->name;
1889 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
1890 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
63c85238
PW
1891 (res + r)->flags = IORESOURCE_DMA;
1892 r++;
1893 }
1894
1895 for (i = 0; i < oh->slaves_cnt; i++) {
1896 struct omap_hwmod_ocp_if *os;
1897
682fdc96 1898 os = oh->slaves[i];
63c85238
PW
1899
1900 for (j = 0; j < os->addr_cnt; j++) {
1901 (res + r)->start = (os->addr + j)->pa_start;
1902 (res + r)->end = (os->addr + j)->pa_end;
1903 (res + r)->flags = IORESOURCE_MEM;
1904 r++;
1905 }
1906 }
1907
1908 return r;
1909}
1910
1911/**
1912 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
1913 * @oh: struct omap_hwmod *
1914 *
1915 * Return the powerdomain pointer associated with the OMAP module
1916 * @oh's main clock. If @oh does not have a main clk, return the
1917 * powerdomain associated with the interface clock associated with the
1918 * module's MPU port. (XXX Perhaps this should use the SDMA port
1919 * instead?) Returns NULL on error, or a struct powerdomain * on
1920 * success.
1921 */
1922struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
1923{
1924 struct clk *c;
1925
1926 if (!oh)
1927 return NULL;
1928
1929 if (oh->_clk) {
1930 c = oh->_clk;
1931 } else {
1932 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1933 return NULL;
1934 c = oh->slaves[oh->_mpu_port_index]->_clk;
1935 }
1936
d5647c18
TG
1937 if (!c->clkdm)
1938 return NULL;
1939
63c85238
PW
1940 return c->clkdm->pwrdm.ptr;
1941
1942}
1943
db2a60bf
PW
1944/**
1945 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
1946 * @oh: struct omap_hwmod *
1947 *
1948 * Returns the virtual address corresponding to the beginning of the
1949 * module's register target, in the address range that is intended to
1950 * be used by the MPU. Returns the virtual address upon success or NULL
1951 * upon error.
1952 */
1953void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
1954{
1955 if (!oh)
1956 return NULL;
1957
1958 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1959 return NULL;
1960
1961 if (oh->_state == _HWMOD_STATE_UNKNOWN)
1962 return NULL;
1963
1964 return oh->_mpu_rt_va;
1965}
1966
63c85238
PW
1967/**
1968 * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
1969 * @oh: struct omap_hwmod *
1970 * @init_oh: struct omap_hwmod * (initiator)
1971 *
1972 * Add a sleep dependency between the initiator @init_oh and @oh.
1973 * Intended to be called by DSP/Bridge code via platform_data for the
1974 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
1975 * code needs to add/del initiator dependencies dynamically
1976 * before/after accessing a device. Returns the return value from
1977 * _add_initiator_dep().
1978 *
1979 * XXX Keep a usecount in the clockdomain code
1980 */
1981int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
1982 struct omap_hwmod *init_oh)
1983{
1984 return _add_initiator_dep(oh, init_oh);
1985}
1986
1987/*
1988 * XXX what about functions for drivers to save/restore ocp_sysconfig
1989 * for context save/restore operations?
1990 */
1991
1992/**
1993 * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
1994 * @oh: struct omap_hwmod *
1995 * @init_oh: struct omap_hwmod * (initiator)
1996 *
1997 * Remove a sleep dependency between the initiator @init_oh and @oh.
1998 * Intended to be called by DSP/Bridge code via platform_data for the
1999 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
2000 * code needs to add/del initiator dependencies dynamically
2001 * before/after accessing a device. Returns the return value from
2002 * _del_initiator_dep().
2003 *
2004 * XXX Keep a usecount in the clockdomain code
2005 */
2006int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
2007 struct omap_hwmod *init_oh)
2008{
2009 return _del_initiator_dep(oh, init_oh);
2010}
2011
63c85238
PW
2012/**
2013 * omap_hwmod_enable_wakeup - allow device to wake up the system
2014 * @oh: struct omap_hwmod *
2015 *
2016 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
2017 * send wakeups to the PRCM. Eventually this should sets PRCM wakeup
2018 * registers to cause the PRCM to receive wakeup events from the
2019 * module. Does not set any wakeup routing registers beyond this
2020 * point - if the module is to wake up any other module or subsystem,
2021 * that must be set separately. Called by omap_device code. Returns
2022 * -EINVAL on error or 0 upon success.
2023 */
2024int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
2025{
dc6d1cda 2026 unsigned long flags;
5a7ddcbd 2027 u32 v;
dc6d1cda 2028
43b40992
PW
2029 if (!oh->class->sysc ||
2030 !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
63c85238
PW
2031 return -EINVAL;
2032
dc6d1cda 2033 spin_lock_irqsave(&oh->_lock, flags);
5a7ddcbd
KH
2034 v = oh->_sysc_cache;
2035 _enable_wakeup(oh, &v);
2036 _write_sysconfig(v, oh);
dc6d1cda 2037 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
2038
2039 return 0;
2040}
2041
2042/**
2043 * omap_hwmod_disable_wakeup - prevent device from waking the system
2044 * @oh: struct omap_hwmod *
2045 *
2046 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
2047 * from sending wakeups to the PRCM. Eventually this should clear
2048 * PRCM wakeup registers to cause the PRCM to ignore wakeup events
2049 * from the module. Does not set any wakeup routing registers beyond
2050 * this point - if the module is to wake up any other module or
2051 * subsystem, that must be set separately. Called by omap_device
2052 * code. Returns -EINVAL on error or 0 upon success.
2053 */
2054int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
2055{
dc6d1cda 2056 unsigned long flags;
5a7ddcbd 2057 u32 v;
dc6d1cda 2058
43b40992
PW
2059 if (!oh->class->sysc ||
2060 !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
63c85238
PW
2061 return -EINVAL;
2062
dc6d1cda 2063 spin_lock_irqsave(&oh->_lock, flags);
5a7ddcbd
KH
2064 v = oh->_sysc_cache;
2065 _disable_wakeup(oh, &v);
2066 _write_sysconfig(v, oh);
dc6d1cda 2067 spin_unlock_irqrestore(&oh->_lock, flags);
63c85238
PW
2068
2069 return 0;
2070}
43b40992 2071
aee48e3c
PW
2072/**
2073 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
2074 * contained in the hwmod module.
2075 * @oh: struct omap_hwmod *
2076 * @name: name of the reset line to lookup and assert
2077 *
2078 * Some IP like dsp, ipu or iva contain processor that require
2079 * an HW reset line to be assert / deassert in order to enable fully
2080 * the IP. Returns -EINVAL if @oh is null or if the operation is not
2081 * yet supported on this OMAP; otherwise, passes along the return value
2082 * from _assert_hardreset().
2083 */
2084int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
2085{
2086 int ret;
dc6d1cda 2087 unsigned long flags;
aee48e3c
PW
2088
2089 if (!oh)
2090 return -EINVAL;
2091
dc6d1cda 2092 spin_lock_irqsave(&oh->_lock, flags);
aee48e3c 2093 ret = _assert_hardreset(oh, name);
dc6d1cda 2094 spin_unlock_irqrestore(&oh->_lock, flags);
aee48e3c
PW
2095
2096 return ret;
2097}
2098
2099/**
2100 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
2101 * contained in the hwmod module.
2102 * @oh: struct omap_hwmod *
2103 * @name: name of the reset line to look up and deassert
2104 *
2105 * Some IP like dsp, ipu or iva contain processor that require
2106 * an HW reset line to be assert / deassert in order to enable fully
2107 * the IP. Returns -EINVAL if @oh is null or if the operation is not
2108 * yet supported on this OMAP; otherwise, passes along the return value
2109 * from _deassert_hardreset().
2110 */
2111int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
2112{
2113 int ret;
dc6d1cda 2114 unsigned long flags;
aee48e3c
PW
2115
2116 if (!oh)
2117 return -EINVAL;
2118
dc6d1cda 2119 spin_lock_irqsave(&oh->_lock, flags);
aee48e3c 2120 ret = _deassert_hardreset(oh, name);
dc6d1cda 2121 spin_unlock_irqrestore(&oh->_lock, flags);
aee48e3c
PW
2122
2123 return ret;
2124}
2125
2126/**
2127 * omap_hwmod_read_hardreset - read the HW reset line state of submodules
2128 * contained in the hwmod module
2129 * @oh: struct omap_hwmod *
2130 * @name: name of the reset line to look up and read
2131 *
2132 * Return the current state of the hwmod @oh's reset line named @name:
2133 * returns -EINVAL upon parameter error or if this operation
2134 * is unsupported on the current OMAP; otherwise, passes along the return
2135 * value from _read_hardreset().
2136 */
2137int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
2138{
2139 int ret;
dc6d1cda 2140 unsigned long flags;
aee48e3c
PW
2141
2142 if (!oh)
2143 return -EINVAL;
2144
dc6d1cda 2145 spin_lock_irqsave(&oh->_lock, flags);
aee48e3c 2146 ret = _read_hardreset(oh, name);
dc6d1cda 2147 spin_unlock_irqrestore(&oh->_lock, flags);
aee48e3c
PW
2148
2149 return ret;
2150}
2151
2152
43b40992
PW
2153/**
2154 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
2155 * @classname: struct omap_hwmod_class name to search for
2156 * @fn: callback function pointer to call for each hwmod in class @classname
2157 * @user: arbitrary context data to pass to the callback function
2158 *
ce35b244
BC
2159 * For each omap_hwmod of class @classname, call @fn.
2160 * If the callback function returns something other than
43b40992
PW
2161 * zero, the iterator is terminated, and the callback function's return
2162 * value is passed back to the caller. Returns 0 upon success, -EINVAL
2163 * if @classname or @fn are NULL, or passes back the error code from @fn.
2164 */
2165int omap_hwmod_for_each_by_class(const char *classname,
2166 int (*fn)(struct omap_hwmod *oh,
2167 void *user),
2168 void *user)
2169{
2170 struct omap_hwmod *temp_oh;
2171 int ret = 0;
2172
2173 if (!classname || !fn)
2174 return -EINVAL;
2175
2176 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
2177 __func__, classname);
2178
43b40992
PW
2179 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
2180 if (!strcmp(temp_oh->class->name, classname)) {
2181 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
2182 __func__, temp_oh->name);
2183 ret = (*fn)(temp_oh, user);
2184 if (ret)
2185 break;
2186 }
2187 }
2188
43b40992
PW
2189 if (ret)
2190 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
2191 __func__, ret);
2192
2193 return ret;
2194}
2195
2092e5cc
PW
2196/**
2197 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
2198 * @oh: struct omap_hwmod *
2199 * @state: state that _setup() should leave the hwmod in
2200 *
2201 * Sets the hwmod state that @oh will enter at the end of _setup() (called by
2202 * omap_hwmod_late_init()). Only valid to call between calls to
2203 * omap_hwmod_init() and omap_hwmod_late_init(). Returns 0 upon success or
2204 * -EINVAL if there is a problem with the arguments or if the hwmod is
2205 * in the wrong state.
2206 */
2207int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
2208{
2209 int ret;
dc6d1cda 2210 unsigned long flags;
2092e5cc
PW
2211
2212 if (!oh)
2213 return -EINVAL;
2214
2215 if (state != _HWMOD_STATE_DISABLED &&
2216 state != _HWMOD_STATE_ENABLED &&
2217 state != _HWMOD_STATE_IDLE)
2218 return -EINVAL;
2219
dc6d1cda 2220 spin_lock_irqsave(&oh->_lock, flags);
2092e5cc
PW
2221
2222 if (oh->_state != _HWMOD_STATE_REGISTERED) {
2223 ret = -EINVAL;
2224 goto ohsps_unlock;
2225 }
2226
2227 oh->_postsetup_state = state;
2228 ret = 0;
2229
2230ohsps_unlock:
dc6d1cda 2231 spin_unlock_irqrestore(&oh->_lock, flags);
2092e5cc
PW
2232
2233 return ret;
2234}
c80705aa
KH
2235
2236/**
2237 * omap_hwmod_get_context_loss_count - get lost context count
2238 * @oh: struct omap_hwmod *
2239 *
2240 * Query the powerdomain of of @oh to get the context loss
2241 * count for this device.
2242 *
2243 * Returns the context loss count of the powerdomain assocated with @oh
2244 * upon success, or zero if no powerdomain exists for @oh.
2245 */
2246u32 omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
2247{
2248 struct powerdomain *pwrdm;
2249 int ret = 0;
2250
2251 pwrdm = omap_hwmod_get_pwrdm(oh);
2252 if (pwrdm)
2253 ret = pwrdm_get_context_loss_count(pwrdm);
2254
2255 return ret;
2256}
43b01643
PW
2257
2258/**
2259 * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
2260 * @oh: struct omap_hwmod *
2261 *
2262 * Prevent the hwmod @oh from being reset during the setup process.
2263 * Intended for use by board-*.c files on boards with devices that
2264 * cannot tolerate being reset. Must be called before the hwmod has
2265 * been set up. Returns 0 upon success or negative error code upon
2266 * failure.
2267 */
2268int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
2269{
2270 if (!oh)
2271 return -EINVAL;
2272
2273 if (oh->_state != _HWMOD_STATE_REGISTERED) {
2274 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
2275 oh->name);
2276 return -EINVAL;
2277 }
2278
2279 oh->flags |= HWMOD_INIT_NO_RESET;
2280
2281 return 0;
2282}