OMAP2/3: PRM: add module hard reset support
[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 *
16 * This code manages "OMAP modules" (on-chip devices) and their
17 * integration with Linux device driver and bus code.
18 *
19 * References:
20 * - OMAP2420 Multimedia Processor Silicon Revision 2.1.1, 2.2 (SWPU064)
21 * - OMAP2430 Multimedia Device POP Silicon Revision 2.1 (SWPU090)
22 * - OMAP34xx Multimedia Device Silicon Revision 3.1 (SWPU108)
23 * - OMAP4430 Multimedia Device Silicon Revision 1.0 (SWPU140)
24 * - Open Core Protocol Specification 2.2
25 *
26 * To do:
27 * - pin mux handling
28 * - handle IO mapping
29 * - bus throughput & module latency measurement code
30 *
31 * XXX add tests at the beginning of each function to ensure the hwmod is
32 * in the appropriate state
33 * XXX error return values should be checked to ensure that they are
34 * appropriate
35 */
36#undef DEBUG
37
38#include <linux/kernel.h>
39#include <linux/errno.h>
40#include <linux/io.h>
41#include <linux/clk.h>
42#include <linux/delay.h>
43#include <linux/err.h>
44#include <linux/list.h>
45#include <linux/mutex.h>
63c85238 46
6f8b7ff5 47#include <plat/common.h>
ce491cf8
TL
48#include <plat/cpu.h>
49#include <plat/clockdomain.h>
50#include <plat/powerdomain.h>
51#include <plat/clock.h>
52#include <plat/omap_hwmod.h>
63c85238
PW
53
54#include "cm.h"
55
56/* Maximum microseconds to wait for OMAP module to reset */
57#define MAX_MODULE_RESET_WAIT 10000
58
59/* Name of the OMAP hwmod for the MPU */
5c2c0296 60#define MPU_INITIATOR_NAME "mpu"
63c85238
PW
61
62/* omap_hwmod_list contains all registered struct omap_hwmods */
63static LIST_HEAD(omap_hwmod_list);
64
65static DEFINE_MUTEX(omap_hwmod_mutex);
66
67/* mpu_oh: used to add/remove MPU initiator from sleepdep list */
68static struct omap_hwmod *mpu_oh;
69
70/* inited: 0 if omap_hwmod_init() has not yet been called; 1 otherwise */
71static u8 inited;
72
73
74/* Private functions */
75
76/**
77 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
78 * @oh: struct omap_hwmod *
79 *
80 * Load the current value of the hwmod OCP_SYSCONFIG register into the
81 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
82 * OCP_SYSCONFIG register or 0 upon success.
83 */
84static int _update_sysc_cache(struct omap_hwmod *oh)
85{
43b40992
PW
86 if (!oh->class->sysc) {
87 WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
63c85238
PW
88 return -EINVAL;
89 }
90
91 /* XXX ensure module interface clock is up */
92
43b40992 93 oh->_sysc_cache = omap_hwmod_readl(oh, oh->class->sysc->sysc_offs);
63c85238 94
43b40992 95 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
883edfdd 96 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
63c85238
PW
97
98 return 0;
99}
100
101/**
102 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
103 * @v: OCP_SYSCONFIG value to write
104 * @oh: struct omap_hwmod *
105 *
43b40992
PW
106 * Write @v into the module class' OCP_SYSCONFIG register, if it has
107 * one. No return value.
63c85238
PW
108 */
109static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
110{
43b40992
PW
111 if (!oh->class->sysc) {
112 WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
63c85238
PW
113 return;
114 }
115
116 /* XXX ensure module interface clock is up */
117
118 if (oh->_sysc_cache != v) {
119 oh->_sysc_cache = v;
43b40992 120 omap_hwmod_writel(v, oh, oh->class->sysc->sysc_offs);
63c85238
PW
121 }
122}
123
124/**
125 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
126 * @oh: struct omap_hwmod *
127 * @standbymode: MIDLEMODE field bits
128 * @v: pointer to register contents to modify
129 *
130 * Update the master standby mode bits in @v to be @standbymode for
131 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
132 * upon error or 0 upon success.
133 */
134static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
135 u32 *v)
136{
358f0e63
TG
137 u32 mstandby_mask;
138 u8 mstandby_shift;
139
43b40992
PW
140 if (!oh->class->sysc ||
141 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
63c85238
PW
142 return -EINVAL;
143
43b40992
PW
144 if (!oh->class->sysc->sysc_fields) {
145 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
146 return -EINVAL;
147 }
148
43b40992 149 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
358f0e63
TG
150 mstandby_mask = (0x3 << mstandby_shift);
151
152 *v &= ~mstandby_mask;
153 *v |= __ffs(standbymode) << mstandby_shift;
63c85238
PW
154
155 return 0;
156}
157
158/**
159 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
160 * @oh: struct omap_hwmod *
161 * @idlemode: SIDLEMODE field bits
162 * @v: pointer to register contents to modify
163 *
164 * Update the slave idle mode bits in @v to be @idlemode for the @oh
165 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
166 * or 0 upon success.
167 */
168static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
169{
358f0e63
TG
170 u32 sidle_mask;
171 u8 sidle_shift;
172
43b40992
PW
173 if (!oh->class->sysc ||
174 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
63c85238
PW
175 return -EINVAL;
176
43b40992
PW
177 if (!oh->class->sysc->sysc_fields) {
178 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
179 return -EINVAL;
180 }
181
43b40992 182 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
358f0e63
TG
183 sidle_mask = (0x3 << sidle_shift);
184
185 *v &= ~sidle_mask;
186 *v |= __ffs(idlemode) << sidle_shift;
63c85238
PW
187
188 return 0;
189}
190
191/**
192 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
193 * @oh: struct omap_hwmod *
194 * @clockact: CLOCKACTIVITY field bits
195 * @v: pointer to register contents to modify
196 *
197 * Update the clockactivity mode bits in @v to be @clockact for the
198 * @oh hwmod. Used for additional powersaving on some modules. Does
199 * not write to the hardware. Returns -EINVAL upon error or 0 upon
200 * success.
201 */
202static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
203{
358f0e63
TG
204 u32 clkact_mask;
205 u8 clkact_shift;
206
43b40992
PW
207 if (!oh->class->sysc ||
208 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
63c85238
PW
209 return -EINVAL;
210
43b40992
PW
211 if (!oh->class->sysc->sysc_fields) {
212 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
213 return -EINVAL;
214 }
215
43b40992 216 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
358f0e63
TG
217 clkact_mask = (0x3 << clkact_shift);
218
219 *v &= ~clkact_mask;
220 *v |= clockact << clkact_shift;
63c85238
PW
221
222 return 0;
223}
224
225/**
226 * _set_softreset: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
227 * @oh: struct omap_hwmod *
228 * @v: pointer to register contents to modify
229 *
230 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
231 * error or 0 upon success.
232 */
233static int _set_softreset(struct omap_hwmod *oh, u32 *v)
234{
358f0e63
TG
235 u32 softrst_mask;
236
43b40992
PW
237 if (!oh->class->sysc ||
238 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
63c85238
PW
239 return -EINVAL;
240
43b40992
PW
241 if (!oh->class->sysc->sysc_fields) {
242 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
243 return -EINVAL;
244 }
245
43b40992 246 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
358f0e63
TG
247
248 *v |= softrst_mask;
63c85238
PW
249
250 return 0;
251}
252
726072e5
PW
253/**
254 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
255 * @oh: struct omap_hwmod *
256 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
257 * @v: pointer to register contents to modify
258 *
259 * Update the module autoidle bit in @v to be @autoidle for the @oh
260 * hwmod. The autoidle bit controls whether the module can gate
261 * internal clocks automatically when it isn't doing anything; the
262 * exact function of this bit varies on a per-module basis. This
263 * function does not write to the hardware. Returns -EINVAL upon
264 * error or 0 upon success.
265 */
266static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
267 u32 *v)
268{
358f0e63
TG
269 u32 autoidle_mask;
270 u8 autoidle_shift;
271
43b40992
PW
272 if (!oh->class->sysc ||
273 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
726072e5
PW
274 return -EINVAL;
275
43b40992
PW
276 if (!oh->class->sysc->sysc_fields) {
277 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
278 return -EINVAL;
279 }
280
43b40992 281 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
358f0e63
TG
282 autoidle_mask = (0x3 << autoidle_shift);
283
284 *v &= ~autoidle_mask;
285 *v |= autoidle << autoidle_shift;
726072e5
PW
286
287 return 0;
288}
289
63c85238
PW
290/**
291 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
292 * @oh: struct omap_hwmod *
293 *
294 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
295 * upon error or 0 upon success.
296 */
297static int _enable_wakeup(struct omap_hwmod *oh)
298{
358f0e63 299 u32 v, wakeup_mask;
63c85238 300
43b40992
PW
301 if (!oh->class->sysc ||
302 !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
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 wakeup_mask = (0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
358f0e63 311
63c85238 312 v = oh->_sysc_cache;
358f0e63 313 v |= wakeup_mask;
63c85238
PW
314 _write_sysconfig(v, oh);
315
316 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
317
318 oh->_int_flags |= _HWMOD_WAKEUP_ENABLED;
319
320 return 0;
321}
322
323/**
324 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
325 * @oh: struct omap_hwmod *
326 *
327 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
328 * upon error or 0 upon success.
329 */
330static int _disable_wakeup(struct omap_hwmod *oh)
331{
358f0e63 332 u32 v, wakeup_mask;
63c85238 333
43b40992
PW
334 if (!oh->class->sysc ||
335 !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
63c85238
PW
336 return -EINVAL;
337
43b40992
PW
338 if (!oh->class->sysc->sysc_fields) {
339 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
358f0e63
TG
340 return -EINVAL;
341 }
342
43b40992 343 wakeup_mask = (0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
358f0e63 344
63c85238 345 v = oh->_sysc_cache;
358f0e63 346 v &= ~wakeup_mask;
63c85238
PW
347 _write_sysconfig(v, oh);
348
349 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
350
351 oh->_int_flags &= ~_HWMOD_WAKEUP_ENABLED;
352
353 return 0;
354}
355
356/**
357 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
358 * @oh: struct omap_hwmod *
359 *
360 * Prevent the hardware module @oh from entering idle while the
361 * hardare module initiator @init_oh is active. Useful when a module
362 * will be accessed by a particular initiator (e.g., if a module will
363 * be accessed by the IVA, there should be a sleepdep between the IVA
364 * initiator and the module). Only applies to modules in smart-idle
365 * mode. Returns -EINVAL upon error or passes along
55ed9694 366 * clkdm_add_sleepdep() value upon success.
63c85238
PW
367 */
368static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
369{
370 if (!oh->_clk)
371 return -EINVAL;
372
55ed9694 373 return clkdm_add_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
63c85238
PW
374}
375
376/**
377 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
378 * @oh: struct omap_hwmod *
379 *
380 * Allow the hardware module @oh to enter idle while the hardare
381 * module initiator @init_oh is active. Useful when a module will not
382 * be accessed by a particular initiator (e.g., if a module will not
383 * be accessed by the IVA, there should be no sleepdep between the IVA
384 * initiator and the module). Only applies to modules in smart-idle
385 * mode. Returns -EINVAL upon error or passes along
55ed9694 386 * clkdm_del_sleepdep() value upon success.
63c85238
PW
387 */
388static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
389{
390 if (!oh->_clk)
391 return -EINVAL;
392
55ed9694 393 return clkdm_del_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
63c85238
PW
394}
395
396/**
397 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
398 * @oh: struct omap_hwmod *
399 *
400 * Called from _init_clocks(). Populates the @oh _clk (main
401 * functional clock pointer) if a main_clk is present. Returns 0 on
402 * success or -EINVAL on error.
403 */
404static int _init_main_clk(struct omap_hwmod *oh)
405{
63c85238
PW
406 int ret = 0;
407
50ebdac2 408 if (!oh->main_clk)
63c85238
PW
409 return 0;
410
63403384 411 oh->_clk = omap_clk_get_by_name(oh->main_clk);
dc75925d 412 if (!oh->_clk) {
20383d82
BC
413 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
414 oh->name, oh->main_clk);
63403384 415 return -EINVAL;
dc75925d 416 }
63c85238 417
63403384
BC
418 if (!oh->_clk->clkdm)
419 pr_warning("omap_hwmod: %s: missing clockdomain for %s.\n",
420 oh->main_clk, oh->_clk->name);
81d7c6ff 421
63c85238
PW
422 return ret;
423}
424
425/**
887adeac 426 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
63c85238
PW
427 * @oh: struct omap_hwmod *
428 *
429 * Called from _init_clocks(). Populates the @oh OCP slave interface
430 * clock pointers. Returns 0 on success or -EINVAL on error.
431 */
432static int _init_interface_clks(struct omap_hwmod *oh)
433{
63c85238
PW
434 struct clk *c;
435 int i;
436 int ret = 0;
437
438 if (oh->slaves_cnt == 0)
439 return 0;
440
682fdc96
BC
441 for (i = 0; i < oh->slaves_cnt; i++) {
442 struct omap_hwmod_ocp_if *os = oh->slaves[i];
443
50ebdac2 444 if (!os->clk)
63c85238
PW
445 continue;
446
50ebdac2 447 c = omap_clk_get_by_name(os->clk);
dc75925d 448 if (!c) {
20383d82
BC
449 pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
450 oh->name, os->clk);
63c85238 451 ret = -EINVAL;
dc75925d 452 }
63c85238
PW
453 os->_clk = c;
454 }
455
456 return ret;
457}
458
459/**
460 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
461 * @oh: struct omap_hwmod *
462 *
463 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
464 * clock pointers. Returns 0 on success or -EINVAL on error.
465 */
466static int _init_opt_clks(struct omap_hwmod *oh)
467{
468 struct omap_hwmod_opt_clk *oc;
469 struct clk *c;
470 int i;
471 int ret = 0;
472
473 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
50ebdac2 474 c = omap_clk_get_by_name(oc->clk);
dc75925d 475 if (!c) {
20383d82
BC
476 pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
477 oh->name, oc->clk);
63c85238 478 ret = -EINVAL;
dc75925d 479 }
63c85238
PW
480 oc->_clk = c;
481 }
482
483 return ret;
484}
485
486/**
487 * _enable_clocks - enable hwmod main clock and interface clocks
488 * @oh: struct omap_hwmod *
489 *
490 * Enables all clocks necessary for register reads and writes to succeed
491 * on the hwmod @oh. Returns 0.
492 */
493static int _enable_clocks(struct omap_hwmod *oh)
494{
63c85238
PW
495 int i;
496
497 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
498
4d3ae5a9 499 if (oh->_clk)
63c85238
PW
500 clk_enable(oh->_clk);
501
502 if (oh->slaves_cnt > 0) {
682fdc96
BC
503 for (i = 0; i < oh->slaves_cnt; i++) {
504 struct omap_hwmod_ocp_if *os = oh->slaves[i];
63c85238
PW
505 struct clk *c = os->_clk;
506
4d3ae5a9 507 if (c && (os->flags & OCPIF_SWSUP_IDLE))
63c85238
PW
508 clk_enable(c);
509 }
510 }
511
512 /* The opt clocks are controlled by the device driver. */
513
514 return 0;
515}
516
517/**
518 * _disable_clocks - disable hwmod main clock and interface clocks
519 * @oh: struct omap_hwmod *
520 *
521 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
522 */
523static int _disable_clocks(struct omap_hwmod *oh)
524{
63c85238
PW
525 int i;
526
527 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
528
4d3ae5a9 529 if (oh->_clk)
63c85238
PW
530 clk_disable(oh->_clk);
531
532 if (oh->slaves_cnt > 0) {
682fdc96
BC
533 for (i = 0; i < oh->slaves_cnt; i++) {
534 struct omap_hwmod_ocp_if *os = oh->slaves[i];
63c85238
PW
535 struct clk *c = os->_clk;
536
4d3ae5a9 537 if (c && (os->flags & OCPIF_SWSUP_IDLE))
63c85238
PW
538 clk_disable(c);
539 }
540 }
541
542 /* The opt clocks are controlled by the device driver. */
543
544 return 0;
545}
546
547/**
548 * _find_mpu_port_index - find hwmod OCP slave port ID intended for MPU use
549 * @oh: struct omap_hwmod *
550 *
551 * Returns the array index of the OCP slave port that the MPU
552 * addresses the device on, or -EINVAL upon error or not found.
553 */
554static int _find_mpu_port_index(struct omap_hwmod *oh)
555{
63c85238
PW
556 int i;
557 int found = 0;
558
559 if (!oh || oh->slaves_cnt == 0)
560 return -EINVAL;
561
682fdc96
BC
562 for (i = 0; i < oh->slaves_cnt; i++) {
563 struct omap_hwmod_ocp_if *os = oh->slaves[i];
564
63c85238
PW
565 if (os->user & OCP_USER_MPU) {
566 found = 1;
567 break;
568 }
569 }
570
571 if (found)
572 pr_debug("omap_hwmod: %s: MPU OCP slave port ID %d\n",
573 oh->name, i);
574 else
575 pr_debug("omap_hwmod: %s: no MPU OCP slave port found\n",
576 oh->name);
577
578 return (found) ? i : -EINVAL;
579}
580
581/**
582 * _find_mpu_rt_base - find hwmod register target base addr accessible by MPU
583 * @oh: struct omap_hwmod *
584 *
585 * Return the virtual address of the base of the register target of
586 * device @oh, or NULL on error.
587 */
588static void __iomem *_find_mpu_rt_base(struct omap_hwmod *oh, u8 index)
589{
590 struct omap_hwmod_ocp_if *os;
591 struct omap_hwmod_addr_space *mem;
592 int i;
593 int found = 0;
986a13f5 594 void __iomem *va_start;
63c85238
PW
595
596 if (!oh || oh->slaves_cnt == 0)
597 return NULL;
598
682fdc96 599 os = oh->slaves[index];
63c85238
PW
600
601 for (i = 0, mem = os->addr; i < os->addr_cnt; i++, mem++) {
602 if (mem->flags & ADDR_TYPE_RT) {
603 found = 1;
604 break;
605 }
606 }
607
986a13f5
TL
608 if (found) {
609 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
610 if (!va_start) {
611 pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
612 return NULL;
613 }
63c85238 614 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
986a13f5
TL
615 oh->name, va_start);
616 } else {
63c85238
PW
617 pr_debug("omap_hwmod: %s: no MPU register target found\n",
618 oh->name);
986a13f5 619 }
63c85238 620
986a13f5 621 return (found) ? va_start : NULL;
63c85238
PW
622}
623
624/**
625 * _sysc_enable - try to bring a module out of idle via OCP_SYSCONFIG
626 * @oh: struct omap_hwmod *
627 *
628 * If module is marked as SWSUP_SIDLE, force the module out of slave
629 * idle; otherwise, configure it for smart-idle. If module is marked
630 * as SWSUP_MSUSPEND, force the module out of master standby;
631 * otherwise, configure it for smart-standby. No return value.
632 */
633static void _sysc_enable(struct omap_hwmod *oh)
634{
43b40992 635 u8 idlemode, sf;
63c85238
PW
636 u32 v;
637
43b40992 638 if (!oh->class->sysc)
63c85238
PW
639 return;
640
641 v = oh->_sysc_cache;
43b40992 642 sf = oh->class->sysc->sysc_flags;
63c85238 643
43b40992 644 if (sf & SYSC_HAS_SIDLEMODE) {
63c85238
PW
645 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
646 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
647 _set_slave_idlemode(oh, idlemode, &v);
648 }
649
43b40992 650 if (sf & SYSC_HAS_MIDLEMODE) {
63c85238
PW
651 idlemode = (oh->flags & HWMOD_SWSUP_MSTANDBY) ?
652 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
653 _set_master_standbymode(oh, idlemode, &v);
654 }
655
43b40992 656 if (sf & SYSC_HAS_AUTOIDLE) {
726072e5
PW
657 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
658 0 : 1;
659 _set_module_autoidle(oh, idlemode, &v);
660 }
661
662 /* XXX OCP ENAWAKEUP bit? */
63c85238 663
a16b1f7f
PW
664 /*
665 * XXX The clock framework should handle this, by
666 * calling into this code. But this must wait until the
667 * clock structures are tagged with omap_hwmod entries
668 */
43b40992
PW
669 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
670 (sf & SYSC_HAS_CLOCKACTIVITY))
671 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
63c85238
PW
672
673 _write_sysconfig(v, oh);
674}
675
676/**
677 * _sysc_idle - try to put a module into idle via OCP_SYSCONFIG
678 * @oh: struct omap_hwmod *
679 *
680 * If module is marked as SWSUP_SIDLE, force the module into slave
681 * idle; otherwise, configure it for smart-idle. If module is marked
682 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
683 * configure it for smart-standby. No return value.
684 */
685static void _sysc_idle(struct omap_hwmod *oh)
686{
43b40992 687 u8 idlemode, sf;
63c85238
PW
688 u32 v;
689
43b40992 690 if (!oh->class->sysc)
63c85238
PW
691 return;
692
693 v = oh->_sysc_cache;
43b40992 694 sf = oh->class->sysc->sysc_flags;
63c85238 695
43b40992 696 if (sf & SYSC_HAS_SIDLEMODE) {
63c85238
PW
697 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
698 HWMOD_IDLEMODE_FORCE : HWMOD_IDLEMODE_SMART;
699 _set_slave_idlemode(oh, idlemode, &v);
700 }
701
43b40992 702 if (sf & SYSC_HAS_MIDLEMODE) {
63c85238
PW
703 idlemode = (oh->flags & HWMOD_SWSUP_MSTANDBY) ?
704 HWMOD_IDLEMODE_FORCE : HWMOD_IDLEMODE_SMART;
705 _set_master_standbymode(oh, idlemode, &v);
706 }
707
708 _write_sysconfig(v, oh);
709}
710
711/**
712 * _sysc_shutdown - force a module into idle via OCP_SYSCONFIG
713 * @oh: struct omap_hwmod *
714 *
715 * Force the module into slave idle and master suspend. No return
716 * value.
717 */
718static void _sysc_shutdown(struct omap_hwmod *oh)
719{
720 u32 v;
43b40992 721 u8 sf;
63c85238 722
43b40992 723 if (!oh->class->sysc)
63c85238
PW
724 return;
725
726 v = oh->_sysc_cache;
43b40992 727 sf = oh->class->sysc->sysc_flags;
63c85238 728
43b40992 729 if (sf & SYSC_HAS_SIDLEMODE)
63c85238
PW
730 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
731
43b40992 732 if (sf & SYSC_HAS_MIDLEMODE)
63c85238
PW
733 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
734
43b40992 735 if (sf & SYSC_HAS_AUTOIDLE)
726072e5 736 _set_module_autoidle(oh, 1, &v);
63c85238
PW
737
738 _write_sysconfig(v, oh);
739}
740
741/**
742 * _lookup - find an omap_hwmod by name
743 * @name: find an omap_hwmod by name
744 *
745 * Return a pointer to an omap_hwmod by name, or NULL if not found.
746 * Caller must hold omap_hwmod_mutex.
747 */
748static struct omap_hwmod *_lookup(const char *name)
749{
750 struct omap_hwmod *oh, *temp_oh;
751
752 oh = NULL;
753
754 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
755 if (!strcmp(name, temp_oh->name)) {
756 oh = temp_oh;
757 break;
758 }
759 }
760
761 return oh;
762}
763
764/**
765 * _init_clocks - clk_get() all clocks associated with this hwmod
766 * @oh: struct omap_hwmod *
97d60162 767 * @data: not used; pass NULL
63c85238
PW
768 *
769 * Called by omap_hwmod_late_init() (after omap2_clk_init()).
12b1fdb4
KH
770 * Resolves all clock names embedded in the hwmod. Returns -EINVAL if
771 * the omap_hwmod has not yet been registered or if the clocks have
772 * already been initialized, 0 on success, or a non-zero error on
773 * failure.
63c85238 774 */
97d60162 775static int _init_clocks(struct omap_hwmod *oh, void *data)
63c85238
PW
776{
777 int ret = 0;
778
779 if (!oh || (oh->_state != _HWMOD_STATE_REGISTERED))
780 return -EINVAL;
781
782 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
783
784 ret |= _init_main_clk(oh);
785 ret |= _init_interface_clks(oh);
786 ret |= _init_opt_clks(oh);
787
f5c1f84b
BC
788 if (!ret)
789 oh->_state = _HWMOD_STATE_CLKS_INITED;
63c85238 790
f5c1f84b 791 return 0;
63c85238
PW
792}
793
794/**
795 * _wait_target_ready - wait for a module to leave slave idle
796 * @oh: struct omap_hwmod *
797 *
798 * Wait for a module @oh to leave slave idle. Returns 0 if the module
799 * does not have an IDLEST bit or if the module successfully leaves
800 * slave idle; otherwise, pass along the return value of the
801 * appropriate *_cm_wait_module_ready() function.
802 */
803static int _wait_target_ready(struct omap_hwmod *oh)
804{
805 struct omap_hwmod_ocp_if *os;
806 int ret;
807
808 if (!oh)
809 return -EINVAL;
810
811 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
812 return 0;
813
682fdc96 814 os = oh->slaves[oh->_mpu_port_index];
63c85238 815
33f7ec81 816 if (oh->flags & HWMOD_NO_IDLEST)
63c85238
PW
817 return 0;
818
819 /* XXX check module SIDLEMODE */
820
821 /* XXX check clock enable states */
822
823 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
824 ret = omap2_cm_wait_module_ready(oh->prcm.omap2.module_offs,
825 oh->prcm.omap2.idlest_reg_id,
826 oh->prcm.omap2.idlest_idle_bit);
63c85238 827 } else if (cpu_is_omap44xx()) {
9a23dfe1 828 ret = omap4_cm_wait_module_ready(oh->prcm.omap4.clkctrl_reg);
63c85238
PW
829 } else {
830 BUG();
831 };
832
833 return ret;
834}
835
836/**
837 * _reset - reset an omap_hwmod
838 * @oh: struct omap_hwmod *
839 *
840 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
12b1fdb4
KH
841 * enabled for this to work. Returns -EINVAL if the hwmod cannot be
842 * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if
843 * the module did not reset in time, or 0 upon success.
63c85238
PW
844 */
845static int _reset(struct omap_hwmod *oh)
846{
847 u32 r, v;
6f8b7ff5 848 int c = 0;
63c85238 849
43b40992
PW
850 if (!oh->class->sysc ||
851 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET) ||
852 (oh->class->sysc->sysc_flags & SYSS_MISSING))
63c85238
PW
853 return -EINVAL;
854
855 /* clocks must be on for this operation */
856 if (oh->_state != _HWMOD_STATE_ENABLED) {
857 WARN(1, "omap_hwmod: %s: reset can only be entered from "
858 "enabled state\n", oh->name);
859 return -EINVAL;
860 }
861
862 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
863
864 v = oh->_sysc_cache;
865 r = _set_softreset(oh, &v);
866 if (r)
867 return r;
868 _write_sysconfig(v, oh);
869
43b40992 870 omap_test_timeout((omap_hwmod_readl(oh, oh->class->sysc->syss_offs) &
6f8b7ff5
PW
871 SYSS_RESETDONE_MASK),
872 MAX_MODULE_RESET_WAIT, c);
63c85238
PW
873
874 if (c == MAX_MODULE_RESET_WAIT)
875 WARN(1, "omap_hwmod: %s: failed to reset in %d usec\n",
876 oh->name, MAX_MODULE_RESET_WAIT);
877 else
02bfc030 878 pr_debug("omap_hwmod: %s: reset in %d usec\n", oh->name, c);
63c85238
PW
879
880 /*
881 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
882 * _wait_target_ready() or _reset()
883 */
884
885 return (c == MAX_MODULE_RESET_WAIT) ? -ETIMEDOUT : 0;
886}
887
888/**
84824022 889 * _omap_hwmod_enable - enable an omap_hwmod
63c85238
PW
890 * @oh: struct omap_hwmod *
891 *
892 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
12b1fdb4
KH
893 * register target. Returns -EINVAL if the hwmod is in the wrong
894 * state or passes along the return value of _wait_target_ready().
63c85238 895 */
84824022 896int _omap_hwmod_enable(struct omap_hwmod *oh)
63c85238
PW
897{
898 int r;
899
900 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
901 oh->_state != _HWMOD_STATE_IDLE &&
902 oh->_state != _HWMOD_STATE_DISABLED) {
903 WARN(1, "omap_hwmod: %s: enabled state can only be entered "
904 "from initialized, idle, or disabled state\n", oh->name);
905 return -EINVAL;
906 }
907
908 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
909
910 /* XXX mux balls */
911
912 _add_initiator_dep(oh, mpu_oh);
913 _enable_clocks(oh);
914
63c85238 915 r = _wait_target_ready(oh);
9a23dfe1 916 if (!r) {
63c85238
PW
917 oh->_state = _HWMOD_STATE_ENABLED;
918
9a23dfe1
BC
919 /* Access the sysconfig only if the target is ready */
920 if (oh->class->sysc) {
921 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
922 _update_sysc_cache(oh);
923 _sysc_enable(oh);
924 }
925 } else {
926 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
927 oh->name, r);
928 }
929
63c85238
PW
930 return r;
931}
932
933/**
934 * _idle - idle an omap_hwmod
935 * @oh: struct omap_hwmod *
936 *
937 * Idles an omap_hwmod @oh. This should be called once the hwmod has
938 * no further work. Returns -EINVAL if the hwmod is in the wrong
939 * state or returns 0.
940 */
84824022 941int _omap_hwmod_idle(struct omap_hwmod *oh)
63c85238
PW
942{
943 if (oh->_state != _HWMOD_STATE_ENABLED) {
944 WARN(1, "omap_hwmod: %s: idle state can only be entered from "
945 "enabled state\n", oh->name);
946 return -EINVAL;
947 }
948
949 pr_debug("omap_hwmod: %s: idling\n", oh->name);
950
43b40992 951 if (oh->class->sysc)
63c85238
PW
952 _sysc_idle(oh);
953 _del_initiator_dep(oh, mpu_oh);
954 _disable_clocks(oh);
955
956 oh->_state = _HWMOD_STATE_IDLE;
957
958 return 0;
959}
960
961/**
962 * _shutdown - shutdown an omap_hwmod
963 * @oh: struct omap_hwmod *
964 *
965 * Shut down an omap_hwmod @oh. This should be called when the driver
966 * used for the hwmod is removed or unloaded or if the driver is not
967 * used by the system. Returns -EINVAL if the hwmod is in the wrong
968 * state or returns 0.
969 */
970static int _shutdown(struct omap_hwmod *oh)
971{
972 if (oh->_state != _HWMOD_STATE_IDLE &&
973 oh->_state != _HWMOD_STATE_ENABLED) {
974 WARN(1, "omap_hwmod: %s: disabled state can only be entered "
975 "from idle, or enabled state\n", oh->name);
976 return -EINVAL;
977 }
978
979 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
980
43b40992 981 if (oh->class->sysc)
63c85238 982 _sysc_shutdown(oh);
3827f949
BC
983
984 /* clocks and deps are already disabled in idle */
985 if (oh->_state == _HWMOD_STATE_ENABLED) {
986 _del_initiator_dep(oh, mpu_oh);
987 /* XXX what about the other system initiators here? dma, dsp */
988 _disable_clocks(oh);
989 }
63c85238
PW
990 /* XXX Should this code also force-disable the optional clocks? */
991
992 /* XXX mux any associated balls to safe mode */
993
994 oh->_state = _HWMOD_STATE_DISABLED;
995
996 return 0;
997}
998
63c85238
PW
999/**
1000 * _setup - do initial configuration of omap_hwmod
1001 * @oh: struct omap_hwmod *
97d60162 1002 * @skip_setup_idle_p: do not idle hwmods at the end of the fn if 1
63c85238
PW
1003 *
1004 * Writes the CLOCKACTIVITY bits @clockact to the hwmod @oh
12b1fdb4
KH
1005 * OCP_SYSCONFIG register. @skip_setup_idle is intended to be used on
1006 * a system that will not call omap_hwmod_enable() to enable devices
1007 * (e.g., a system without PM runtime). Returns -EINVAL if the hwmod
1008 * is in the wrong state or returns 0.
63c85238 1009 */
97d60162 1010static int _setup(struct omap_hwmod *oh, void *data)
63c85238 1011{
9a23dfe1 1012 int i, r;
97d60162 1013 u8 skip_setup_idle;
63c85238 1014
97d60162 1015 if (!oh || !data)
63c85238
PW
1016 return -EINVAL;
1017
97d60162
PW
1018 skip_setup_idle = *(u8 *)data;
1019
63c85238
PW
1020 /* Set iclk autoidle mode */
1021 if (oh->slaves_cnt > 0) {
682fdc96
BC
1022 for (i = 0; i < oh->slaves_cnt; i++) {
1023 struct omap_hwmod_ocp_if *os = oh->slaves[i];
63c85238
PW
1024 struct clk *c = os->_clk;
1025
4d3ae5a9 1026 if (!c)
63c85238
PW
1027 continue;
1028
1029 if (os->flags & OCPIF_SWSUP_IDLE) {
1030 /* XXX omap_iclk_deny_idle(c); */
1031 } else {
1032 /* XXX omap_iclk_allow_idle(c); */
1033 clk_enable(c);
1034 }
1035 }
1036 }
1037
12b1fdb4 1038 mutex_init(&oh->_mutex);
63c85238
PW
1039 oh->_state = _HWMOD_STATE_INITIALIZED;
1040
84824022 1041 r = _omap_hwmod_enable(oh);
9a23dfe1
BC
1042 if (r) {
1043 pr_warning("omap_hwmod: %s: cannot be enabled (%d)\n",
1044 oh->name, oh->_state);
1045 return 0;
1046 }
63c85238 1047
b835d014
PW
1048 if (!(oh->flags & HWMOD_INIT_NO_RESET)) {
1049 /*
1050 * XXX Do the OCP_SYSCONFIG bits need to be
1051 * reprogrammed after a reset? If not, then this can
1052 * be removed. If they do, then probably the
84824022 1053 * _omap_hwmod_enable() function should be split to avoid the
b835d014
PW
1054 * rewrite of the OCP_SYSCONFIG register.
1055 */
43b40992 1056 if (oh->class->sysc) {
b835d014
PW
1057 _update_sysc_cache(oh);
1058 _sysc_enable(oh);
1059 }
1060 }
63c85238 1061
97d60162 1062 if (!(oh->flags & HWMOD_INIT_NO_IDLE) && !skip_setup_idle)
84824022 1063 _omap_hwmod_idle(oh);
63c85238
PW
1064
1065 return 0;
1066}
1067
1068
1069
1070/* Public functions */
1071
1072u32 omap_hwmod_readl(struct omap_hwmod *oh, u16 reg_offs)
1073{
db2a60bf 1074 return __raw_readl(oh->_mpu_rt_va + reg_offs);
63c85238
PW
1075}
1076
1077void omap_hwmod_writel(u32 v, struct omap_hwmod *oh, u16 reg_offs)
1078{
db2a60bf 1079 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
63c85238
PW
1080}
1081
887adeac
PW
1082/**
1083 * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode
1084 * @oh: struct omap_hwmod *
1085 * @idlemode: SIDLEMODE field bits (shifted to bit 0)
1086 *
1087 * Sets the IP block's OCP slave idlemode in hardware, and updates our
1088 * local copy. Intended to be used by drivers that have some erratum
1089 * that requires direct manipulation of the SIDLEMODE bits. Returns
1090 * -EINVAL if @oh is null, or passes along the return value from
1091 * _set_slave_idlemode().
1092 *
1093 * XXX Does this function have any current users? If not, we should
1094 * remove it; it is better to let the rest of the hwmod code handle this.
1095 * Any users of this function should be scrutinized carefully.
1096 */
46273e6f
KH
1097int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode)
1098{
1099 u32 v;
1100 int retval = 0;
1101
1102 if (!oh)
1103 return -EINVAL;
1104
1105 v = oh->_sysc_cache;
1106
1107 retval = _set_slave_idlemode(oh, idlemode, &v);
1108 if (!retval)
1109 _write_sysconfig(v, oh);
1110
1111 return retval;
1112}
1113
63c85238
PW
1114/**
1115 * omap_hwmod_register - register a struct omap_hwmod
1116 * @oh: struct omap_hwmod *
1117 *
43b40992
PW
1118 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
1119 * already has been registered by the same name; -EINVAL if the
1120 * omap_hwmod is in the wrong state, if @oh is NULL, if the
1121 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
1122 * name, or if the omap_hwmod's class is missing a name; or 0 upon
1123 * success.
63c85238
PW
1124 *
1125 * XXX The data should be copied into bootmem, so the original data
1126 * should be marked __initdata and freed after init. This would allow
1127 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
1128 * that the copy process would be relatively complex due to the large number
1129 * of substructures.
1130 */
1131int omap_hwmod_register(struct omap_hwmod *oh)
1132{
1133 int ret, ms_id;
1134
43b40992
PW
1135 if (!oh || !oh->name || !oh->class || !oh->class->name ||
1136 (oh->_state != _HWMOD_STATE_UNKNOWN))
63c85238
PW
1137 return -EINVAL;
1138
1139 mutex_lock(&omap_hwmod_mutex);
1140
1141 pr_debug("omap_hwmod: %s: registering\n", oh->name);
1142
1143 if (_lookup(oh->name)) {
1144 ret = -EEXIST;
1145 goto ohr_unlock;
1146 }
1147
1148 ms_id = _find_mpu_port_index(oh);
1149 if (!IS_ERR_VALUE(ms_id)) {
1150 oh->_mpu_port_index = ms_id;
db2a60bf 1151 oh->_mpu_rt_va = _find_mpu_rt_base(oh, oh->_mpu_port_index);
63c85238
PW
1152 } else {
1153 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
1154 }
1155
1156 list_add_tail(&oh->node, &omap_hwmod_list);
1157
1158 oh->_state = _HWMOD_STATE_REGISTERED;
1159
1160 ret = 0;
1161
1162ohr_unlock:
1163 mutex_unlock(&omap_hwmod_mutex);
1164 return ret;
1165}
1166
1167/**
1168 * omap_hwmod_lookup - look up a registered omap_hwmod by name
1169 * @name: name of the omap_hwmod to look up
1170 *
1171 * Given a @name of an omap_hwmod, return a pointer to the registered
1172 * struct omap_hwmod *, or NULL upon error.
1173 */
1174struct omap_hwmod *omap_hwmod_lookup(const char *name)
1175{
1176 struct omap_hwmod *oh;
1177
1178 if (!name)
1179 return NULL;
1180
1181 mutex_lock(&omap_hwmod_mutex);
1182 oh = _lookup(name);
1183 mutex_unlock(&omap_hwmod_mutex);
1184
1185 return oh;
1186}
1187
1188/**
1189 * omap_hwmod_for_each - call function for each registered omap_hwmod
1190 * @fn: pointer to a callback function
97d60162 1191 * @data: void * data to pass to callback function
63c85238
PW
1192 *
1193 * Call @fn for each registered omap_hwmod, passing @data to each
1194 * function. @fn must return 0 for success or any other value for
1195 * failure. If @fn returns non-zero, the iteration across omap_hwmods
1196 * will stop and the non-zero return value will be passed to the
1197 * caller of omap_hwmod_for_each(). @fn is called with
1198 * omap_hwmod_for_each() held.
1199 */
97d60162
PW
1200int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
1201 void *data)
63c85238
PW
1202{
1203 struct omap_hwmod *temp_oh;
1204 int ret;
1205
1206 if (!fn)
1207 return -EINVAL;
1208
1209 mutex_lock(&omap_hwmod_mutex);
1210 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
97d60162 1211 ret = (*fn)(temp_oh, data);
63c85238
PW
1212 if (ret)
1213 break;
1214 }
1215 mutex_unlock(&omap_hwmod_mutex);
1216
1217 return ret;
1218}
1219
1220
1221/**
1222 * omap_hwmod_init - init omap_hwmod code and register hwmods
1223 * @ohs: pointer to an array of omap_hwmods to register
1224 *
1225 * Intended to be called early in boot before the clock framework is
1226 * initialized. If @ohs is not null, will register all omap_hwmods
1227 * listed in @ohs that are valid for this chip. Returns -EINVAL if
1228 * omap_hwmod_init() has already been called or 0 otherwise.
1229 */
1230int omap_hwmod_init(struct omap_hwmod **ohs)
1231{
1232 struct omap_hwmod *oh;
1233 int r;
1234
1235 if (inited)
1236 return -EINVAL;
1237
1238 inited = 1;
1239
1240 if (!ohs)
1241 return 0;
1242
1243 oh = *ohs;
1244 while (oh) {
1245 if (omap_chip_is(oh->omap_chip)) {
1246 r = omap_hwmod_register(oh);
1247 WARN(r, "omap_hwmod: %s: omap_hwmod_register returned "
1248 "%d\n", oh->name, r);
1249 }
1250 oh = *++ohs;
1251 }
1252
1253 return 0;
1254}
1255
1256/**
1257 * omap_hwmod_late_init - do some post-clock framework initialization
97d60162 1258 * @skip_setup_idle: if 1, do not idle hwmods in _setup()
63c85238
PW
1259 *
1260 * Must be called after omap2_clk_init(). Resolves the struct clk names
1261 * to struct clk pointers for each registered omap_hwmod. Also calls
1262 * _setup() on each hwmod. Returns 0.
1263 */
97d60162 1264int omap_hwmod_late_init(u8 skip_setup_idle)
63c85238
PW
1265{
1266 int r;
1267
1268 /* XXX check return value */
97d60162 1269 r = omap_hwmod_for_each(_init_clocks, NULL);
63c85238
PW
1270 WARN(r, "omap_hwmod: omap_hwmod_late_init(): _init_clocks failed\n");
1271
1272 mpu_oh = omap_hwmod_lookup(MPU_INITIATOR_NAME);
1273 WARN(!mpu_oh, "omap_hwmod: could not find MPU initiator hwmod %s\n",
1274 MPU_INITIATOR_NAME);
1275
97d60162
PW
1276 if (skip_setup_idle)
1277 pr_debug("omap_hwmod: will leave hwmods enabled during setup\n");
1278
1279 omap_hwmod_for_each(_setup, &skip_setup_idle);
63c85238
PW
1280
1281 return 0;
1282}
1283
1284/**
1285 * omap_hwmod_unregister - unregister an omap_hwmod
1286 * @oh: struct omap_hwmod *
1287 *
1288 * Unregisters a previously-registered omap_hwmod @oh. There's probably
1289 * no use case for this, so it is likely to be removed in a later version.
1290 *
1291 * XXX Free all of the bootmem-allocated structures here when that is
1292 * implemented. Make it clear that core code is the only code that is
1293 * expected to unregister modules.
1294 */
1295int omap_hwmod_unregister(struct omap_hwmod *oh)
1296{
1297 if (!oh)
1298 return -EINVAL;
1299
1300 pr_debug("omap_hwmod: %s: unregistering\n", oh->name);
1301
1302 mutex_lock(&omap_hwmod_mutex);
db2a60bf 1303 iounmap(oh->_mpu_rt_va);
63c85238
PW
1304 list_del(&oh->node);
1305 mutex_unlock(&omap_hwmod_mutex);
1306
1307 return 0;
1308}
1309
1310/**
1311 * omap_hwmod_enable - enable an omap_hwmod
1312 * @oh: struct omap_hwmod *
1313 *
1314 * Enable an omap_hwomd @oh. Intended to be called by omap_device_enable().
1315 * Returns -EINVAL on error or passes along the return value from _enable().
1316 */
1317int omap_hwmod_enable(struct omap_hwmod *oh)
1318{
1319 int r;
1320
1321 if (!oh)
1322 return -EINVAL;
1323
12b1fdb4 1324 mutex_lock(&oh->_mutex);
84824022 1325 r = _omap_hwmod_enable(oh);
12b1fdb4 1326 mutex_unlock(&oh->_mutex);
63c85238
PW
1327
1328 return r;
1329}
1330
84824022 1331
63c85238
PW
1332/**
1333 * omap_hwmod_idle - idle an omap_hwmod
1334 * @oh: struct omap_hwmod *
1335 *
1336 * Idle an omap_hwomd @oh. Intended to be called by omap_device_idle().
1337 * Returns -EINVAL on error or passes along the return value from _idle().
1338 */
1339int omap_hwmod_idle(struct omap_hwmod *oh)
1340{
1341 if (!oh)
1342 return -EINVAL;
1343
12b1fdb4 1344 mutex_lock(&oh->_mutex);
84824022 1345 _omap_hwmod_idle(oh);
12b1fdb4 1346 mutex_unlock(&oh->_mutex);
63c85238
PW
1347
1348 return 0;
1349}
1350
1351/**
1352 * omap_hwmod_shutdown - shutdown an omap_hwmod
1353 * @oh: struct omap_hwmod *
1354 *
1355 * Shutdown an omap_hwomd @oh. Intended to be called by
1356 * omap_device_shutdown(). Returns -EINVAL on error or passes along
1357 * the return value from _shutdown().
1358 */
1359int omap_hwmod_shutdown(struct omap_hwmod *oh)
1360{
1361 if (!oh)
1362 return -EINVAL;
1363
12b1fdb4 1364 mutex_lock(&oh->_mutex);
63c85238 1365 _shutdown(oh);
12b1fdb4 1366 mutex_unlock(&oh->_mutex);
63c85238
PW
1367
1368 return 0;
1369}
1370
1371/**
1372 * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
1373 * @oh: struct omap_hwmod *oh
1374 *
1375 * Intended to be called by the omap_device code.
1376 */
1377int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
1378{
12b1fdb4 1379 mutex_lock(&oh->_mutex);
63c85238 1380 _enable_clocks(oh);
12b1fdb4 1381 mutex_unlock(&oh->_mutex);
63c85238
PW
1382
1383 return 0;
1384}
1385
1386/**
1387 * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
1388 * @oh: struct omap_hwmod *oh
1389 *
1390 * Intended to be called by the omap_device code.
1391 */
1392int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
1393{
12b1fdb4 1394 mutex_lock(&oh->_mutex);
63c85238 1395 _disable_clocks(oh);
12b1fdb4 1396 mutex_unlock(&oh->_mutex);
63c85238
PW
1397
1398 return 0;
1399}
1400
1401/**
1402 * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
1403 * @oh: struct omap_hwmod *oh
1404 *
1405 * Intended to be called by drivers and core code when all posted
1406 * writes to a device must complete before continuing further
1407 * execution (for example, after clearing some device IRQSTATUS
1408 * register bits)
1409 *
1410 * XXX what about targets with multiple OCP threads?
1411 */
1412void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
1413{
1414 BUG_ON(!oh);
1415
43b40992 1416 if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
63c85238
PW
1417 WARN(1, "omap_device: %s: OCP barrier impossible due to "
1418 "device configuration\n", oh->name);
1419 return;
1420 }
1421
1422 /*
1423 * Forces posted writes to complete on the OCP thread handling
1424 * register writes
1425 */
43b40992 1426 omap_hwmod_readl(oh, oh->class->sysc->sysc_offs);
63c85238
PW
1427}
1428
1429/**
1430 * omap_hwmod_reset - reset the hwmod
1431 * @oh: struct omap_hwmod *
1432 *
1433 * Under some conditions, a driver may wish to reset the entire device.
1434 * Called from omap_device code. Returns -EINVAL on error or passes along
9b579114 1435 * the return value from _reset().
63c85238
PW
1436 */
1437int omap_hwmod_reset(struct omap_hwmod *oh)
1438{
1439 int r;
1440
9b579114 1441 if (!oh)
63c85238
PW
1442 return -EINVAL;
1443
12b1fdb4 1444 mutex_lock(&oh->_mutex);
63c85238 1445 r = _reset(oh);
12b1fdb4 1446 mutex_unlock(&oh->_mutex);
63c85238
PW
1447
1448 return r;
1449}
1450
1451/**
1452 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
1453 * @oh: struct omap_hwmod *
1454 * @res: pointer to the first element of an array of struct resource to fill
1455 *
1456 * Count the number of struct resource array elements necessary to
1457 * contain omap_hwmod @oh resources. Intended to be called by code
1458 * that registers omap_devices. Intended to be used to determine the
1459 * size of a dynamically-allocated struct resource array, before
1460 * calling omap_hwmod_fill_resources(). Returns the number of struct
1461 * resource array elements needed.
1462 *
1463 * XXX This code is not optimized. It could attempt to merge adjacent
1464 * resource IDs.
1465 *
1466 */
1467int omap_hwmod_count_resources(struct omap_hwmod *oh)
1468{
1469 int ret, i;
1470
9ee9fff9 1471 ret = oh->mpu_irqs_cnt + oh->sdma_reqs_cnt;
63c85238
PW
1472
1473 for (i = 0; i < oh->slaves_cnt; i++)
682fdc96 1474 ret += oh->slaves[i]->addr_cnt;
63c85238
PW
1475
1476 return ret;
1477}
1478
1479/**
1480 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
1481 * @oh: struct omap_hwmod *
1482 * @res: pointer to the first element of an array of struct resource to fill
1483 *
1484 * Fill the struct resource array @res with resource data from the
1485 * omap_hwmod @oh. Intended to be called by code that registers
1486 * omap_devices. See also omap_hwmod_count_resources(). Returns the
1487 * number of array elements filled.
1488 */
1489int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
1490{
1491 int i, j;
1492 int r = 0;
1493
1494 /* For each IRQ, DMA, memory area, fill in array.*/
1495
1496 for (i = 0; i < oh->mpu_irqs_cnt; i++) {
718bfd76
PW
1497 (res + r)->name = (oh->mpu_irqs + i)->name;
1498 (res + r)->start = (oh->mpu_irqs + i)->irq;
1499 (res + r)->end = (oh->mpu_irqs + i)->irq;
63c85238
PW
1500 (res + r)->flags = IORESOURCE_IRQ;
1501 r++;
1502 }
1503
9ee9fff9
BC
1504 for (i = 0; i < oh->sdma_reqs_cnt; i++) {
1505 (res + r)->name = (oh->sdma_reqs + i)->name;
1506 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
1507 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
63c85238
PW
1508 (res + r)->flags = IORESOURCE_DMA;
1509 r++;
1510 }
1511
1512 for (i = 0; i < oh->slaves_cnt; i++) {
1513 struct omap_hwmod_ocp_if *os;
1514
682fdc96 1515 os = oh->slaves[i];
63c85238
PW
1516
1517 for (j = 0; j < os->addr_cnt; j++) {
1518 (res + r)->start = (os->addr + j)->pa_start;
1519 (res + r)->end = (os->addr + j)->pa_end;
1520 (res + r)->flags = IORESOURCE_MEM;
1521 r++;
1522 }
1523 }
1524
1525 return r;
1526}
1527
1528/**
1529 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
1530 * @oh: struct omap_hwmod *
1531 *
1532 * Return the powerdomain pointer associated with the OMAP module
1533 * @oh's main clock. If @oh does not have a main clk, return the
1534 * powerdomain associated with the interface clock associated with the
1535 * module's MPU port. (XXX Perhaps this should use the SDMA port
1536 * instead?) Returns NULL on error, or a struct powerdomain * on
1537 * success.
1538 */
1539struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
1540{
1541 struct clk *c;
1542
1543 if (!oh)
1544 return NULL;
1545
1546 if (oh->_clk) {
1547 c = oh->_clk;
1548 } else {
1549 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1550 return NULL;
1551 c = oh->slaves[oh->_mpu_port_index]->_clk;
1552 }
1553
d5647c18
TG
1554 if (!c->clkdm)
1555 return NULL;
1556
63c85238
PW
1557 return c->clkdm->pwrdm.ptr;
1558
1559}
1560
db2a60bf
PW
1561/**
1562 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
1563 * @oh: struct omap_hwmod *
1564 *
1565 * Returns the virtual address corresponding to the beginning of the
1566 * module's register target, in the address range that is intended to
1567 * be used by the MPU. Returns the virtual address upon success or NULL
1568 * upon error.
1569 */
1570void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
1571{
1572 if (!oh)
1573 return NULL;
1574
1575 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1576 return NULL;
1577
1578 if (oh->_state == _HWMOD_STATE_UNKNOWN)
1579 return NULL;
1580
1581 return oh->_mpu_rt_va;
1582}
1583
63c85238
PW
1584/**
1585 * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
1586 * @oh: struct omap_hwmod *
1587 * @init_oh: struct omap_hwmod * (initiator)
1588 *
1589 * Add a sleep dependency between the initiator @init_oh and @oh.
1590 * Intended to be called by DSP/Bridge code via platform_data for the
1591 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
1592 * code needs to add/del initiator dependencies dynamically
1593 * before/after accessing a device. Returns the return value from
1594 * _add_initiator_dep().
1595 *
1596 * XXX Keep a usecount in the clockdomain code
1597 */
1598int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
1599 struct omap_hwmod *init_oh)
1600{
1601 return _add_initiator_dep(oh, init_oh);
1602}
1603
1604/*
1605 * XXX what about functions for drivers to save/restore ocp_sysconfig
1606 * for context save/restore operations?
1607 */
1608
1609/**
1610 * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
1611 * @oh: struct omap_hwmod *
1612 * @init_oh: struct omap_hwmod * (initiator)
1613 *
1614 * Remove a sleep dependency between the initiator @init_oh and @oh.
1615 * Intended to be called by DSP/Bridge code via platform_data for the
1616 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
1617 * code needs to add/del initiator dependencies dynamically
1618 * before/after accessing a device. Returns the return value from
1619 * _del_initiator_dep().
1620 *
1621 * XXX Keep a usecount in the clockdomain code
1622 */
1623int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
1624 struct omap_hwmod *init_oh)
1625{
1626 return _del_initiator_dep(oh, init_oh);
1627}
1628
63c85238
PW
1629/**
1630 * omap_hwmod_enable_wakeup - allow device to wake up the system
1631 * @oh: struct omap_hwmod *
1632 *
1633 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
1634 * send wakeups to the PRCM. Eventually this should sets PRCM wakeup
1635 * registers to cause the PRCM to receive wakeup events from the
1636 * module. Does not set any wakeup routing registers beyond this
1637 * point - if the module is to wake up any other module or subsystem,
1638 * that must be set separately. Called by omap_device code. Returns
1639 * -EINVAL on error or 0 upon success.
1640 */
1641int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
1642{
43b40992
PW
1643 if (!oh->class->sysc ||
1644 !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
63c85238
PW
1645 return -EINVAL;
1646
12b1fdb4 1647 mutex_lock(&oh->_mutex);
63c85238 1648 _enable_wakeup(oh);
12b1fdb4 1649 mutex_unlock(&oh->_mutex);
63c85238
PW
1650
1651 return 0;
1652}
1653
1654/**
1655 * omap_hwmod_disable_wakeup - prevent device from waking the system
1656 * @oh: struct omap_hwmod *
1657 *
1658 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
1659 * from sending wakeups to the PRCM. Eventually this should clear
1660 * PRCM wakeup registers to cause the PRCM to ignore wakeup events
1661 * from the module. Does not set any wakeup routing registers beyond
1662 * this point - if the module is to wake up any other module or
1663 * subsystem, that must be set separately. Called by omap_device
1664 * code. Returns -EINVAL on error or 0 upon success.
1665 */
1666int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
1667{
43b40992
PW
1668 if (!oh->class->sysc ||
1669 !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP))
63c85238
PW
1670 return -EINVAL;
1671
12b1fdb4 1672 mutex_lock(&oh->_mutex);
63c85238 1673 _disable_wakeup(oh);
12b1fdb4 1674 mutex_unlock(&oh->_mutex);
63c85238
PW
1675
1676 return 0;
1677}
43b40992
PW
1678
1679/**
1680 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
1681 * @classname: struct omap_hwmod_class name to search for
1682 * @fn: callback function pointer to call for each hwmod in class @classname
1683 * @user: arbitrary context data to pass to the callback function
1684 *
1685 * For each omap_hwmod of class @classname, call @fn. Takes
1686 * omap_hwmod_mutex to prevent the hwmod list from changing during the
1687 * iteration. If the callback function returns something other than
1688 * zero, the iterator is terminated, and the callback function's return
1689 * value is passed back to the caller. Returns 0 upon success, -EINVAL
1690 * if @classname or @fn are NULL, or passes back the error code from @fn.
1691 */
1692int omap_hwmod_for_each_by_class(const char *classname,
1693 int (*fn)(struct omap_hwmod *oh,
1694 void *user),
1695 void *user)
1696{
1697 struct omap_hwmod *temp_oh;
1698 int ret = 0;
1699
1700 if (!classname || !fn)
1701 return -EINVAL;
1702
1703 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
1704 __func__, classname);
1705
1706 mutex_lock(&omap_hwmod_mutex);
1707
1708 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1709 if (!strcmp(temp_oh->class->name, classname)) {
1710 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
1711 __func__, temp_oh->name);
1712 ret = (*fn)(temp_oh, user);
1713 if (ret)
1714 break;
1715 }
1716 }
1717
1718 mutex_unlock(&omap_hwmod_mutex);
1719
1720 if (ret)
1721 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
1722 __func__, ret);
1723
1724 return ret;
1725}
1726