blob: 52c69d265f7cadfaefaa0bcd429054f92e2719b7 [file] [log] [blame]
Paul Walmsley63c85232009-09-03 20:14:03 +03001/*
2 * omap_hwmod implementation for OMAP2/3/4
3 *
Paul Walmsley550c8092011-02-28 11:58:14 -07004 * Copyright (C) 2009-2011 Nokia Corporation
Paul Walmsley30e105c2012-04-19 00:49:09 -06005 * Copyright (C) 2011-2012 Texas Instruments, Inc.
Paul Walmsley63c85232009-09-03 20:14:03 +03006 *
Paul Walmsley4788da22010-05-18 20:24:05 -06007 * Paul Walmsley, Benoît Cousson, Kevin Hilman
8 *
9 * Created in collaboration with (alphabetical order): Thara Gopinath,
10 * Tony Lindgren, Rajendra Nayak, Vikram Pandita, Sakari Poussa, Anand
11 * Sawant, Santosh Shilimkar, Richard Woodruff
Paul Walmsley63c85232009-09-03 20:14:03 +030012 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -060017 * Introduction
18 * ------------
19 * One way to view an OMAP SoC is as a collection of largely unrelated
20 * IP blocks connected by interconnects. The IP blocks include
21 * devices such as ARM processors, audio serial interfaces, UARTs,
22 * etc. Some of these devices, like the DSP, are created by TI;
23 * others, like the SGX, largely originate from external vendors. In
24 * TI's documentation, on-chip devices are referred to as "OMAP
25 * modules." Some of these IP blocks are identical across several
26 * OMAP versions. Others are revised frequently.
Paul Walmsley63c85232009-09-03 20:14:03 +030027 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -060028 * These OMAP modules are tied together by various interconnects.
29 * Most of the address and data flow between modules is via OCP-based
30 * interconnects such as the L3 and L4 buses; but there are other
31 * interconnects that distribute the hardware clock tree, handle idle
32 * and reset signaling, supply power, and connect the modules to
33 * various pads or balls on the OMAP package.
34 *
35 * OMAP hwmod provides a consistent way to describe the on-chip
36 * hardware blocks and their integration into the rest of the chip.
37 * This description can be automatically generated from the TI
38 * hardware database. OMAP hwmod provides a standard, consistent API
39 * to reset, enable, idle, and disable these hardware blocks. And
40 * hwmod provides a way for other core code, such as the Linux device
41 * code or the OMAP power management and address space mapping code,
42 * to query the hardware database.
43 *
44 * Using hwmod
45 * -----------
46 * Drivers won't call hwmod functions directly. That is done by the
47 * omap_device code, and in rare occasions, by custom integration code
48 * in arch/arm/ *omap*. The omap_device code includes functions to
49 * build a struct platform_device using omap_hwmod data, and that is
50 * currently how hwmod data is communicated to drivers and to the
51 * Linux driver model. Most drivers will call omap_hwmod functions only
52 * indirectly, via pm_runtime*() functions.
53 *
54 * From a layering perspective, here is where the OMAP hwmod code
55 * fits into the kernel software stack:
56 *
57 * +-------------------------------+
58 * | Device driver code |
59 * | (e.g., drivers/) |
60 * +-------------------------------+
61 * | Linux driver model |
62 * | (platform_device / |
63 * | platform_driver data/code) |
64 * +-------------------------------+
65 * | OMAP core-driver integration |
66 * |(arch/arm/mach-omap2/devices.c)|
67 * +-------------------------------+
68 * | omap_device code |
69 * | (../plat-omap/omap_device.c) |
70 * +-------------------------------+
71 * ----> | omap_hwmod code/data | <-----
72 * | (../mach-omap2/omap_hwmod*) |
73 * +-------------------------------+
74 * | OMAP clock/PRCM/register fns |
75 * | (__raw_{read,write}l, clk*) |
76 * +-------------------------------+
77 *
78 * Device drivers should not contain any OMAP-specific code or data in
79 * them. They should only contain code to operate the IP block that
80 * the driver is responsible for. This is because these IP blocks can
81 * also appear in other SoCs, either from TI (such as DaVinci) or from
82 * other manufacturers; and drivers should be reusable across other
83 * platforms.
84 *
85 * The OMAP hwmod code also will attempt to reset and idle all on-chip
86 * devices upon boot. The goal here is for the kernel to be
87 * completely self-reliant and independent from bootloaders. This is
88 * to ensure a repeatable configuration, both to ensure consistent
89 * runtime behavior, and to make it easier for others to reproduce
90 * bugs.
91 *
92 * OMAP module activity states
93 * ---------------------------
94 * The hwmod code considers modules to be in one of several activity
95 * states. IP blocks start out in an UNKNOWN state, then once they
96 * are registered via the hwmod code, proceed to the REGISTERED state.
97 * Once their clock names are resolved to clock pointers, the module
98 * enters the CLKS_INITED state; and finally, once the module has been
99 * reset and the integration registers programmed, the INITIALIZED state
100 * is entered. The hwmod code will then place the module into either
101 * the IDLE state to save power, or in the case of a critical system
102 * module, the ENABLED state.
103 *
104 * OMAP core integration code can then call omap_hwmod*() functions
105 * directly to move the module between the IDLE, ENABLED, and DISABLED
106 * states, as needed. This is done during both the PM idle loop, and
107 * in the OMAP core integration code's implementation of the PM runtime
108 * functions.
109 *
110 * References
111 * ----------
112 * This is a partial list.
Paul Walmsley63c85232009-09-03 20:14:03 +0300113 * - OMAP2420 Multimedia Processor Silicon Revision 2.1.1, 2.2 (SWPU064)
114 * - OMAP2430 Multimedia Device POP Silicon Revision 2.1 (SWPU090)
115 * - OMAP34xx Multimedia Device Silicon Revision 3.1 (SWPU108)
116 * - OMAP4430 Multimedia Device Silicon Revision 1.0 (SWPU140)
117 * - Open Core Protocol Specification 2.2
118 *
119 * To do:
Paul Walmsley63c85232009-09-03 20:14:03 +0300120 * - handle IO mapping
121 * - bus throughput & module latency measurement code
122 *
123 * XXX add tests at the beginning of each function to ensure the hwmod is
124 * in the appropriate state
125 * XXX error return values should be checked to ensure that they are
126 * appropriate
127 */
128#undef DEBUG
129
130#include <linux/kernel.h>
131#include <linux/errno.h>
132#include <linux/io.h>
133#include <linux/clk.h>
134#include <linux/delay.h>
135#include <linux/err.h>
136#include <linux/list.h>
137#include <linux/mutex.h>
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -0700138#include <linux/spinlock.h>
Tero Kristoabc2d542011-12-16 14:36:59 -0700139#include <linux/slab.h>
Paul Walmsley63c85232009-09-03 20:14:03 +0300140
Tony Lindgren4e653312011-11-10 22:45:17 +0100141#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -0700142#include <plat/cpu.h>
Paul Walmsley1540f2142010-12-21 21:05:15 -0700143#include "clockdomain.h"
Paul Walmsley72e06d02010-12-21 21:05:16 -0700144#include "powerdomain.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -0700145#include <plat/clock.h>
146#include <plat/omap_hwmod.h>
Benoît Cousson5365efb2010-09-21 10:34:11 -0600147#include <plat/prcm.h>
Paul Walmsley63c85232009-09-03 20:14:03 +0300148
Paul Walmsley59fb6592010-12-21 15:30:55 -0700149#include "cm2xxx_3xxx.h"
Benoit Coussond0f06312011-07-10 05:56:30 -0600150#include "cminst44xx.h"
Paul Walmsley59fb6592010-12-21 15:30:55 -0700151#include "prm2xxx_3xxx.h"
Paul Walmsleyd198b512010-12-21 15:30:54 -0700152#include "prm44xx.h"
Benoit Coussoneaac3292011-07-10 05:56:31 -0600153#include "prminst44xx.h"
Tony Lindgren8d9af882010-12-22 18:42:35 -0800154#include "mux.h"
Paul Walmsley63c85232009-09-03 20:14:03 +0300155
Benoît Cousson5365efb2010-09-21 10:34:11 -0600156/* Maximum microseconds to wait for OMAP module to softreset */
157#define MAX_MODULE_SOFTRESET_WAIT 10000
Paul Walmsley63c85232009-09-03 20:14:03 +0300158
159/* Name of the OMAP hwmod for the MPU */
Benoit Cousson5c2c0292010-05-20 12:31:10 -0600160#define MPU_INITIATOR_NAME "mpu"
Paul Walmsley63c85232009-09-03 20:14:03 +0300161
162/* omap_hwmod_list contains all registered struct omap_hwmods */
163static LIST_HEAD(omap_hwmod_list);
164
Paul Walmsley63c85232009-09-03 20:14:03 +0300165/* mpu_oh: used to add/remove MPU initiator from sleepdep list */
166static struct omap_hwmod *mpu_oh;
167
Paul Walmsley63c85232009-09-03 20:14:03 +0300168
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{
Paul Walmsley43b40992010-02-22 22:09:34 -0700181 if (!oh->class->sysc) {
182 WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +0300183 return -EINVAL;
184 }
185
186 /* XXX ensure module interface clock is up */
187
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -0700188 oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +0300189
Paul Walmsley43b40992010-02-22 22:09:34 -0700190 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
Thara Gopinath883edfd2010-01-19 17:30:51 -0700191 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
Paul Walmsley63c85232009-09-03 20:14:03 +0300192
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 *
Paul Walmsley43b40992010-02-22 22:09:34 -0700201 * Write @v into the module class' OCP_SYSCONFIG register, if it has
202 * one. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +0300203 */
204static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
205{
Paul Walmsley43b40992010-02-22 22:09:34 -0700206 if (!oh->class->sysc) {
207 WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +0300208 return;
209 }
210
211 /* XXX ensure module interface clock is up */
212
Rajendra Nayak233cbe52010-12-14 12:42:36 -0700213 /* 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);
Paul Walmsley63c85232009-09-03 20:14:03 +0300216}
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{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700231 u32 mstandby_mask;
232 u8 mstandby_shift;
233
Paul Walmsley43b40992010-02-22 22:09:34 -0700234 if (!oh->class->sysc ||
235 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300236 return -EINVAL;
237
Paul Walmsley43b40992010-02-22 22:09:34 -0700238 if (!oh->class->sysc->sysc_fields) {
239 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700240 return -EINVAL;
241 }
242
Paul Walmsley43b40992010-02-22 22:09:34 -0700243 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700244 mstandby_mask = (0x3 << mstandby_shift);
245
246 *v &= ~mstandby_mask;
247 *v |= __ffs(standbymode) << mstandby_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300248
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{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700264 u32 sidle_mask;
265 u8 sidle_shift;
266
Paul Walmsley43b40992010-02-22 22:09:34 -0700267 if (!oh->class->sysc ||
268 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300269 return -EINVAL;
270
Paul Walmsley43b40992010-02-22 22:09:34 -0700271 if (!oh->class->sysc->sysc_fields) {
272 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700273 return -EINVAL;
274 }
275
Paul Walmsley43b40992010-02-22 22:09:34 -0700276 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700277 sidle_mask = (0x3 << sidle_shift);
278
279 *v &= ~sidle_mask;
280 *v |= __ffs(idlemode) << sidle_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300281
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{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700298 u32 clkact_mask;
299 u8 clkact_shift;
300
Paul Walmsley43b40992010-02-22 22:09:34 -0700301 if (!oh->class->sysc ||
302 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
Paul Walmsley63c85232009-09-03 20:14:03 +0300303 return -EINVAL;
304
Paul Walmsley43b40992010-02-22 22:09:34 -0700305 if (!oh->class->sysc->sysc_fields) {
306 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700307 return -EINVAL;
308 }
309
Paul Walmsley43b40992010-02-22 22:09:34 -0700310 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700311 clkact_mask = (0x3 << clkact_shift);
312
313 *v &= ~clkact_mask;
314 *v |= clockact << clkact_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300315
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{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700329 u32 softrst_mask;
330
Paul Walmsley43b40992010-02-22 22:09:34 -0700331 if (!oh->class->sysc ||
332 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley63c85232009-09-03 20:14:03 +0300333 return -EINVAL;
334
Paul Walmsley43b40992010-02-22 22:09:34 -0700335 if (!oh->class->sysc->sysc_fields) {
336 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700337 return -EINVAL;
338 }
339
Paul Walmsley43b40992010-02-22 22:09:34 -0700340 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700341
342 *v |= softrst_mask;
Paul Walmsley63c85232009-09-03 20:14:03 +0300343
344 return 0;
345}
346
347/**
Paul Walmsley726072e2009-12-08 16:34:15 -0700348 * _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{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700363 u32 autoidle_mask;
364 u8 autoidle_shift;
365
Paul Walmsley43b40992010-02-22 22:09:34 -0700366 if (!oh->class->sysc ||
367 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
Paul Walmsley726072e2009-12-08 16:34:15 -0700368 return -EINVAL;
369
Paul Walmsley43b40992010-02-22 22:09:34 -0700370 if (!oh->class->sysc->sysc_fields) {
371 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700372 return -EINVAL;
373 }
374
Paul Walmsley43b40992010-02-22 22:09:34 -0700375 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
Tarun Kanti DebBarma8985b632011-03-03 14:22:46 -0700376 autoidle_mask = (0x1 << autoidle_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700377
378 *v &= ~autoidle_mask;
379 *v |= autoidle << autoidle_shift;
Paul Walmsley726072e2009-12-08 16:34:15 -0700380
381 return 0;
382}
383
384/**
Govindraj Receec002011-12-16 14:36:58 -0700385 * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux
386 * @oh: struct omap_hwmod *
387 * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable
388 *
389 * Set or clear the I/O pad wakeup flag in the mux entries for the
390 * hwmod @oh. This function changes the @oh->mux->pads_dynamic array
391 * in memory. If the hwmod is currently idled, and the new idle
392 * values don't match the previous ones, this function will also
393 * update the SCM PADCTRL registers. Otherwise, if the hwmod is not
394 * currently idled, this function won't touch the hardware: the new
395 * mux settings are written to the SCM PADCTRL registers when the
396 * hwmod is idled. No return value.
397 */
398static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake)
399{
400 struct omap_device_pad *pad;
401 bool change = false;
402 u16 prev_idle;
403 int j;
404
405 if (!oh->mux || !oh->mux->enabled)
406 return;
407
408 for (j = 0; j < oh->mux->nr_pads_dynamic; j++) {
409 pad = oh->mux->pads_dynamic[j];
410
411 if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP))
412 continue;
413
414 prev_idle = pad->idle;
415
416 if (set_wake)
417 pad->idle |= OMAP_WAKEUP_EN;
418 else
419 pad->idle &= ~OMAP_WAKEUP_EN;
420
421 if (prev_idle != pad->idle)
422 change = true;
423 }
424
425 if (change && oh->_state == _HWMOD_STATE_IDLE)
426 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
427}
428
429/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300430 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
431 * @oh: struct omap_hwmod *
432 *
433 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
434 * upon error or 0 upon success.
435 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700436static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300437{
Paul Walmsley43b40992010-02-22 22:09:34 -0700438 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700439 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200440 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
441 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300442 return -EINVAL;
443
Paul Walmsley43b40992010-02-22 22:09:34 -0700444 if (!oh->class->sysc->sysc_fields) {
445 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700446 return -EINVAL;
447 }
448
Benoit Cousson1fe74112011-07-01 22:54:03 +0200449 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
450 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300451
Benoit Cousson86009eb2010-12-21 21:31:28 -0700452 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
453 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200454 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
455 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700456
Paul Walmsley63c85232009-09-03 20:14:03 +0300457 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
458
459 oh->_int_flags |= _HWMOD_WAKEUP_ENABLED;
460
461 return 0;
462}
463
464/**
465 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
466 * @oh: struct omap_hwmod *
467 *
468 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
469 * upon error or 0 upon success.
470 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700471static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300472{
Paul Walmsley43b40992010-02-22 22:09:34 -0700473 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700474 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200475 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
476 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300477 return -EINVAL;
478
Paul Walmsley43b40992010-02-22 22:09:34 -0700479 if (!oh->class->sysc->sysc_fields) {
480 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700481 return -EINVAL;
482 }
483
Benoit Cousson1fe74112011-07-01 22:54:03 +0200484 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
485 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
Paul Walmsley63c85232009-09-03 20:14:03 +0300486
Benoit Cousson86009eb2010-12-21 21:31:28 -0700487 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
488 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200489 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
490 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700491
Paul Walmsley63c85232009-09-03 20:14:03 +0300492 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
493
494 oh->_int_flags &= ~_HWMOD_WAKEUP_ENABLED;
495
496 return 0;
497}
498
499/**
500 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
501 * @oh: struct omap_hwmod *
502 *
503 * Prevent the hardware module @oh from entering idle while the
504 * hardare module initiator @init_oh is active. Useful when a module
505 * will be accessed by a particular initiator (e.g., if a module will
506 * be accessed by the IVA, there should be a sleepdep between the IVA
507 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700508 * mode. If the clockdomain is marked as not needing autodeps, return
509 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
510 * passes along clkdm_add_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300511 */
512static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
513{
514 if (!oh->_clk)
515 return -EINVAL;
516
Paul Walmsley570b54c2011-03-10 03:50:09 -0700517 if (oh->_clk->clkdm && oh->_clk->clkdm->flags & CLKDM_NO_AUTODEPS)
518 return 0;
519
Paul Walmsley55ed9692010-01-26 20:12:59 -0700520 return clkdm_add_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300521}
522
523/**
524 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
525 * @oh: struct omap_hwmod *
526 *
527 * Allow the hardware module @oh to enter idle while the hardare
528 * module initiator @init_oh is active. Useful when a module will not
529 * be accessed by a particular initiator (e.g., if a module will not
530 * be accessed by the IVA, there should be no sleepdep between the IVA
531 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700532 * mode. If the clockdomain is marked as not needing autodeps, return
533 * 0 without doing anything. Returns -EINVAL upon error or passes
534 * along clkdm_del_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300535 */
536static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
537{
538 if (!oh->_clk)
539 return -EINVAL;
540
Paul Walmsley570b54c2011-03-10 03:50:09 -0700541 if (oh->_clk->clkdm && oh->_clk->clkdm->flags & CLKDM_NO_AUTODEPS)
542 return 0;
543
Paul Walmsley55ed9692010-01-26 20:12:59 -0700544 return clkdm_del_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300545}
546
547/**
548 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
549 * @oh: struct omap_hwmod *
550 *
551 * Called from _init_clocks(). Populates the @oh _clk (main
552 * functional clock pointer) if a main_clk is present. Returns 0 on
553 * success or -EINVAL on error.
554 */
555static int _init_main_clk(struct omap_hwmod *oh)
556{
Paul Walmsley63c85232009-09-03 20:14:03 +0300557 int ret = 0;
558
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700559 if (!oh->main_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300560 return 0;
561
Benoit Cousson63403382010-05-20 12:31:10 -0600562 oh->_clk = omap_clk_get_by_name(oh->main_clk);
Benoit Coussondc759252010-06-23 18:15:12 -0600563 if (!oh->_clk) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600564 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
565 oh->name, oh->main_clk);
Benoit Cousson63403382010-05-20 12:31:10 -0600566 return -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600567 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300568
Benoit Cousson63403382010-05-20 12:31:10 -0600569 if (!oh->_clk->clkdm)
570 pr_warning("omap_hwmod: %s: missing clockdomain for %s.\n",
571 oh->main_clk, oh->_clk->name);
Kevin Hilman81d7c6f2009-12-08 16:34:24 -0700572
Paul Walmsley63c85232009-09-03 20:14:03 +0300573 return ret;
574}
575
576/**
Paul Walmsley887adea2010-07-26 16:34:33 -0600577 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
Paul Walmsley63c85232009-09-03 20:14:03 +0300578 * @oh: struct omap_hwmod *
579 *
580 * Called from _init_clocks(). Populates the @oh OCP slave interface
581 * clock pointers. Returns 0 on success or -EINVAL on error.
582 */
583static int _init_interface_clks(struct omap_hwmod *oh)
584{
Paul Walmsley63c85232009-09-03 20:14:03 +0300585 struct clk *c;
586 int i;
587 int ret = 0;
588
589 if (oh->slaves_cnt == 0)
590 return 0;
591
Benoit Cousson682fdc92010-05-20 12:31:09 -0600592 for (i = 0; i < oh->slaves_cnt; i++) {
593 struct omap_hwmod_ocp_if *os = oh->slaves[i];
594
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700595 if (!os->clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300596 continue;
597
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700598 c = omap_clk_get_by_name(os->clk);
Benoit Coussondc759252010-06-23 18:15:12 -0600599 if (!c) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600600 pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
601 oh->name, os->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300602 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600603 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300604 os->_clk = c;
605 }
606
607 return ret;
608}
609
610/**
611 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
612 * @oh: struct omap_hwmod *
613 *
614 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
615 * clock pointers. Returns 0 on success or -EINVAL on error.
616 */
617static int _init_opt_clks(struct omap_hwmod *oh)
618{
619 struct omap_hwmod_opt_clk *oc;
620 struct clk *c;
621 int i;
622 int ret = 0;
623
624 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700625 c = omap_clk_get_by_name(oc->clk);
Benoit Coussondc759252010-06-23 18:15:12 -0600626 if (!c) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600627 pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
628 oh->name, oc->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300629 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600630 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300631 oc->_clk = c;
632 }
633
634 return ret;
635}
636
637/**
638 * _enable_clocks - enable hwmod main clock and interface clocks
639 * @oh: struct omap_hwmod *
640 *
641 * Enables all clocks necessary for register reads and writes to succeed
642 * on the hwmod @oh. Returns 0.
643 */
644static int _enable_clocks(struct omap_hwmod *oh)
645{
Paul Walmsley63c85232009-09-03 20:14:03 +0300646 int i;
647
648 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
649
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600650 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300651 clk_enable(oh->_clk);
652
653 if (oh->slaves_cnt > 0) {
Benoit Cousson682fdc92010-05-20 12:31:09 -0600654 for (i = 0; i < oh->slaves_cnt; i++) {
655 struct omap_hwmod_ocp_if *os = oh->slaves[i];
Paul Walmsley63c85232009-09-03 20:14:03 +0300656 struct clk *c = os->_clk;
657
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600658 if (c && (os->flags & OCPIF_SWSUP_IDLE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300659 clk_enable(c);
660 }
661 }
662
663 /* The opt clocks are controlled by the device driver. */
664
665 return 0;
666}
667
668/**
669 * _disable_clocks - disable hwmod main clock and interface clocks
670 * @oh: struct omap_hwmod *
671 *
672 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
673 */
674static int _disable_clocks(struct omap_hwmod *oh)
675{
Paul Walmsley63c85232009-09-03 20:14:03 +0300676 int i;
677
678 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
679
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600680 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300681 clk_disable(oh->_clk);
682
683 if (oh->slaves_cnt > 0) {
Benoit Cousson682fdc92010-05-20 12:31:09 -0600684 for (i = 0; i < oh->slaves_cnt; i++) {
685 struct omap_hwmod_ocp_if *os = oh->slaves[i];
Paul Walmsley63c85232009-09-03 20:14:03 +0300686 struct clk *c = os->_clk;
687
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600688 if (c && (os->flags & OCPIF_SWSUP_IDLE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300689 clk_disable(c);
690 }
691 }
692
693 /* The opt clocks are controlled by the device driver. */
694
695 return 0;
696}
697
Benoit Cousson96835af2010-09-21 18:57:58 +0200698static void _enable_optional_clocks(struct omap_hwmod *oh)
699{
700 struct omap_hwmod_opt_clk *oc;
701 int i;
702
703 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
704
705 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
706 if (oc->_clk) {
707 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
708 oc->_clk->name);
709 clk_enable(oc->_clk);
710 }
711}
712
713static void _disable_optional_clocks(struct omap_hwmod *oh)
714{
715 struct omap_hwmod_opt_clk *oc;
716 int i;
717
718 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
719
720 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
721 if (oc->_clk) {
722 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
723 oc->_clk->name);
724 clk_disable(oc->_clk);
725 }
726}
727
Paul Walmsley63c85232009-09-03 20:14:03 +0300728/**
Benoit Cousson45c38252011-07-10 05:56:33 -0600729 * _enable_module - enable CLKCTRL modulemode on OMAP4
730 * @oh: struct omap_hwmod *
731 *
732 * Enables the PRCM module mode related to the hwmod @oh.
733 * No return value.
734 */
735static void _enable_module(struct omap_hwmod *oh)
736{
737 /* The module mode does not exist prior OMAP4 */
738 if (cpu_is_omap24xx() || cpu_is_omap34xx())
739 return;
740
741 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
742 return;
743
744 pr_debug("omap_hwmod: %s: _enable_module: %d\n",
745 oh->name, oh->prcm.omap4.modulemode);
746
747 omap4_cminst_module_enable(oh->prcm.omap4.modulemode,
748 oh->clkdm->prcm_partition,
749 oh->clkdm->cm_inst,
750 oh->clkdm->clkdm_offs,
751 oh->prcm.omap4.clkctrl_offs);
752}
753
754/**
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800755 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
756 * @oh: struct omap_hwmod *
757 *
758 * Wait for a module @oh to enter slave idle. Returns 0 if the module
759 * does not have an IDLEST bit or if the module successfully enters
760 * slave idle; otherwise, pass along the return value of the
761 * appropriate *_cm*_wait_module_idle() function.
762 */
763static int _omap4_wait_target_disable(struct omap_hwmod *oh)
764{
765 if (!cpu_is_omap44xx())
766 return 0;
767
768 if (!oh)
769 return -EINVAL;
770
771 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
772 return 0;
773
774 if (oh->flags & HWMOD_NO_IDLEST)
775 return 0;
776
777 return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition,
778 oh->clkdm->cm_inst,
779 oh->clkdm->clkdm_offs,
780 oh->prcm.omap4.clkctrl_offs);
781}
782
783/**
Paul Walmsley212738a2011-07-09 19:14:06 -0600784 * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
785 * @oh: struct omap_hwmod *oh
786 *
787 * Count and return the number of MPU IRQs associated with the hwmod
788 * @oh. Used to allocate struct resource data. Returns 0 if @oh is
789 * NULL.
790 */
791static int _count_mpu_irqs(struct omap_hwmod *oh)
792{
793 struct omap_hwmod_irq_info *ohii;
794 int i = 0;
795
796 if (!oh || !oh->mpu_irqs)
797 return 0;
798
799 do {
800 ohii = &oh->mpu_irqs[i++];
801 } while (ohii->irq != -1);
802
sricharancc1b07652011-11-23 14:35:07 -0800803 return i-1;
Paul Walmsley212738a2011-07-09 19:14:06 -0600804}
805
806/**
Paul Walmsleybc614952011-07-09 19:14:07 -0600807 * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
808 * @oh: struct omap_hwmod *oh
809 *
810 * Count and return the number of SDMA request lines associated with
811 * the hwmod @oh. Used to allocate struct resource data. Returns 0
812 * if @oh is NULL.
813 */
814static int _count_sdma_reqs(struct omap_hwmod *oh)
815{
816 struct omap_hwmod_dma_info *ohdi;
817 int i = 0;
818
819 if (!oh || !oh->sdma_reqs)
820 return 0;
821
822 do {
823 ohdi = &oh->sdma_reqs[i++];
824 } while (ohdi->dma_req != -1);
825
sricharancc1b07652011-11-23 14:35:07 -0800826 return i-1;
Paul Walmsleybc614952011-07-09 19:14:07 -0600827}
828
829/**
Paul Walmsley78183f32011-07-09 19:14:05 -0600830 * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
831 * @oh: struct omap_hwmod *oh
832 *
833 * Count and return the number of address space ranges associated with
834 * the hwmod @oh. Used to allocate struct resource data. Returns 0
835 * if @oh is NULL.
836 */
837static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
838{
839 struct omap_hwmod_addr_space *mem;
840 int i = 0;
841
842 if (!os || !os->addr)
843 return 0;
844
845 do {
846 mem = &os->addr[i++];
847 } while (mem->pa_start != mem->pa_end);
848
sricharancc1b07652011-11-23 14:35:07 -0800849 return i-1;
Paul Walmsley78183f32011-07-09 19:14:05 -0600850}
851
852/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300853 * _find_mpu_port_index - find hwmod OCP slave port ID intended for MPU use
854 * @oh: struct omap_hwmod *
855 *
856 * Returns the array index of the OCP slave port that the MPU
857 * addresses the device on, or -EINVAL upon error or not found.
858 */
Benoit Cousson01592df2010-12-21 21:31:28 -0700859static int __init _find_mpu_port_index(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +0300860{
Paul Walmsley63c85232009-09-03 20:14:03 +0300861 int i;
862 int found = 0;
863
864 if (!oh || oh->slaves_cnt == 0)
865 return -EINVAL;
866
Benoit Cousson682fdc92010-05-20 12:31:09 -0600867 for (i = 0; i < oh->slaves_cnt; i++) {
868 struct omap_hwmod_ocp_if *os = oh->slaves[i];
869
Paul Walmsley63c85232009-09-03 20:14:03 +0300870 if (os->user & OCP_USER_MPU) {
871 found = 1;
872 break;
873 }
874 }
875
876 if (found)
877 pr_debug("omap_hwmod: %s: MPU OCP slave port ID %d\n",
878 oh->name, i);
879 else
880 pr_debug("omap_hwmod: %s: no MPU OCP slave port found\n",
881 oh->name);
882
883 return (found) ? i : -EINVAL;
884}
885
886/**
Paul Walmsleyc9aafd22012-04-18 19:10:05 -0600887 * _find_mpu_rt_addr_space - return MPU register target address space for @oh
Paul Walmsley63c85232009-09-03 20:14:03 +0300888 * @oh: struct omap_hwmod *
889 *
Paul Walmsleyc9aafd22012-04-18 19:10:05 -0600890 * Returns a pointer to the struct omap_hwmod_addr_space record representing
891 * the register target MPU address space; or returns NULL upon error.
Paul Walmsley63c85232009-09-03 20:14:03 +0300892 */
Paul Walmsleyc9aafd22012-04-18 19:10:05 -0600893static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +0300894{
895 struct omap_hwmod_ocp_if *os;
896 struct omap_hwmod_addr_space *mem;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -0600897 int found = 0, i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300898
Paul Walmsleyc9aafd22012-04-18 19:10:05 -0600899 if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
Paul Walmsley63c85232009-09-03 20:14:03 +0300900 return NULL;
901
Paul Walmsleyc9aafd22012-04-18 19:10:05 -0600902 os = oh->slaves[oh->_mpu_port_index];
Paul Walmsley78183f32011-07-09 19:14:05 -0600903 if (!os->addr)
904 return NULL;
905
906 do {
907 mem = &os->addr[i++];
908 if (mem->flags & ADDR_TYPE_RT)
Paul Walmsley63c85232009-09-03 20:14:03 +0300909 found = 1;
Paul Walmsley78183f32011-07-09 19:14:05 -0600910 } while (!found && mem->pa_start != mem->pa_end);
Paul Walmsley63c85232009-09-03 20:14:03 +0300911
Paul Walmsleyc9aafd22012-04-18 19:10:05 -0600912 return (found) ? mem : NULL;
Paul Walmsley63c85232009-09-03 20:14:03 +0300913}
914
915/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -0600916 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +0300917 * @oh: struct omap_hwmod *
918 *
919 * If module is marked as SWSUP_SIDLE, force the module out of slave
920 * idle; otherwise, configure it for smart-idle. If module is marked
921 * as SWSUP_MSUSPEND, force the module out of master standby;
922 * otherwise, configure it for smart-standby. No return value.
923 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -0600924static void _enable_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +0300925{
Paul Walmsley43b40992010-02-22 22:09:34 -0700926 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +0300927 u32 v;
928
Paul Walmsley43b40992010-02-22 22:09:34 -0700929 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +0300930 return;
931
932 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -0700933 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +0300934
Paul Walmsley43b40992010-02-22 22:09:34 -0700935 if (sf & SYSC_HAS_SIDLEMODE) {
Paul Walmsley63c85232009-09-03 20:14:03 +0300936 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
937 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
938 _set_slave_idlemode(oh, idlemode, &v);
939 }
940
Paul Walmsley43b40992010-02-22 22:09:34 -0700941 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +0200942 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
943 idlemode = HWMOD_IDLEMODE_NO;
944 } else {
945 if (sf & SYSC_HAS_ENAWAKEUP)
946 _enable_wakeup(oh, &v);
947 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
948 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
949 else
950 idlemode = HWMOD_IDLEMODE_SMART;
951 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300952 _set_master_standbymode(oh, idlemode, &v);
953 }
954
Paul Walmsleya16b1f72009-12-08 16:34:17 -0700955 /*
956 * XXX The clock framework should handle this, by
957 * calling into this code. But this must wait until the
958 * clock structures are tagged with omap_hwmod entries
959 */
Paul Walmsley43b40992010-02-22 22:09:34 -0700960 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
961 (sf & SYSC_HAS_CLOCKACTIVITY))
962 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +0300963
Rajendra Nayak9980ce52010-09-21 19:58:30 +0530964 /* If slave is in SMARTIDLE, also enable wakeup */
965 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700966 _enable_wakeup(oh, &v);
967
968 _write_sysconfig(v, oh);
Hema HK78f26e82010-09-24 10:23:19 -0600969
970 /*
971 * Set the autoidle bit only after setting the smartidle bit
972 * Setting this will not have any impact on the other modules.
973 */
974 if (sf & SYSC_HAS_AUTOIDLE) {
975 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
976 0 : 1;
977 _set_module_autoidle(oh, idlemode, &v);
978 _write_sysconfig(v, oh);
979 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300980}
981
982/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -0600983 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +0300984 * @oh: struct omap_hwmod *
985 *
986 * If module is marked as SWSUP_SIDLE, force the module into slave
987 * idle; otherwise, configure it for smart-idle. If module is marked
988 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
989 * configure it for smart-standby. No return value.
990 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -0600991static void _idle_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +0300992{
Paul Walmsley43b40992010-02-22 22:09:34 -0700993 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +0300994 u32 v;
995
Paul Walmsley43b40992010-02-22 22:09:34 -0700996 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +0300997 return;
998
999 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001000 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001001
Paul Walmsley43b40992010-02-22 22:09:34 -07001002 if (sf & SYSC_HAS_SIDLEMODE) {
Paul Walmsley63c85232009-09-03 20:14:03 +03001003 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
1004 HWMOD_IDLEMODE_FORCE : HWMOD_IDLEMODE_SMART;
1005 _set_slave_idlemode(oh, idlemode, &v);
1006 }
1007
Paul Walmsley43b40992010-02-22 22:09:34 -07001008 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001009 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1010 idlemode = HWMOD_IDLEMODE_FORCE;
1011 } else {
1012 if (sf & SYSC_HAS_ENAWAKEUP)
1013 _enable_wakeup(oh, &v);
1014 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1015 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1016 else
1017 idlemode = HWMOD_IDLEMODE_SMART;
1018 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001019 _set_master_standbymode(oh, idlemode, &v);
1020 }
1021
Benoit Cousson86009eb2010-12-21 21:31:28 -07001022 /* If slave is in SMARTIDLE, also enable wakeup */
1023 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
1024 _enable_wakeup(oh, &v);
1025
Paul Walmsley63c85232009-09-03 20:14:03 +03001026 _write_sysconfig(v, oh);
1027}
1028
1029/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001030 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001031 * @oh: struct omap_hwmod *
1032 *
1033 * Force the module into slave idle and master suspend. No return
1034 * value.
1035 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001036static void _shutdown_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001037{
1038 u32 v;
Paul Walmsley43b40992010-02-22 22:09:34 -07001039 u8 sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001040
Paul Walmsley43b40992010-02-22 22:09:34 -07001041 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001042 return;
1043
1044 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001045 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001046
Paul Walmsley43b40992010-02-22 22:09:34 -07001047 if (sf & SYSC_HAS_SIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001048 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1049
Paul Walmsley43b40992010-02-22 22:09:34 -07001050 if (sf & SYSC_HAS_MIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001051 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1052
Paul Walmsley43b40992010-02-22 22:09:34 -07001053 if (sf & SYSC_HAS_AUTOIDLE)
Paul Walmsley726072e2009-12-08 16:34:15 -07001054 _set_module_autoidle(oh, 1, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001055
1056 _write_sysconfig(v, oh);
1057}
1058
1059/**
1060 * _lookup - find an omap_hwmod by name
1061 * @name: find an omap_hwmod by name
1062 *
1063 * Return a pointer to an omap_hwmod by name, or NULL if not found.
Paul Walmsley63c85232009-09-03 20:14:03 +03001064 */
1065static struct omap_hwmod *_lookup(const char *name)
1066{
1067 struct omap_hwmod *oh, *temp_oh;
1068
1069 oh = NULL;
1070
1071 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1072 if (!strcmp(name, temp_oh->name)) {
1073 oh = temp_oh;
1074 break;
1075 }
1076 }
1077
1078 return oh;
1079}
Benoit Cousson6ae76992011-07-10 05:56:30 -06001080/**
1081 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1082 * @oh: struct omap_hwmod *
1083 *
1084 * Convert a clockdomain name stored in a struct omap_hwmod into a
1085 * clockdomain pointer, and save it into the struct omap_hwmod.
1086 * return -EINVAL if clkdm_name does not exist or if the lookup failed.
1087 */
1088static int _init_clkdm(struct omap_hwmod *oh)
1089{
1090 if (cpu_is_omap24xx() || cpu_is_omap34xx())
1091 return 0;
1092
1093 if (!oh->clkdm_name) {
1094 pr_warning("omap_hwmod: %s: no clkdm_name\n", oh->name);
1095 return -EINVAL;
1096 }
1097
1098 oh->clkdm = clkdm_lookup(oh->clkdm_name);
1099 if (!oh->clkdm) {
1100 pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n",
1101 oh->name, oh->clkdm_name);
1102 return -EINVAL;
1103 }
1104
1105 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1106 oh->name, oh->clkdm_name);
1107
1108 return 0;
1109}
Paul Walmsley63c85232009-09-03 20:14:03 +03001110
1111/**
Benoit Cousson6ae76992011-07-10 05:56:30 -06001112 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1113 * well the clockdomain.
Paul Walmsley63c85232009-09-03 20:14:03 +03001114 * @oh: struct omap_hwmod *
Paul Walmsley97d60162010-07-26 16:34:30 -06001115 * @data: not used; pass NULL
Paul Walmsley63c85232009-09-03 20:14:03 +03001116 *
Paul Walmsleya2debdb2011-02-23 00:14:07 -07001117 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
Paul Walmsley48d54f32011-02-23 00:14:07 -07001118 * Resolves all clock names embedded in the hwmod. Returns 0 on
1119 * success, or a negative error code on failure.
Paul Walmsley63c85232009-09-03 20:14:03 +03001120 */
Paul Walmsley97d60162010-07-26 16:34:30 -06001121static int _init_clocks(struct omap_hwmod *oh, void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03001122{
1123 int ret = 0;
1124
Paul Walmsley48d54f32011-02-23 00:14:07 -07001125 if (oh->_state != _HWMOD_STATE_REGISTERED)
1126 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001127
1128 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1129
1130 ret |= _init_main_clk(oh);
1131 ret |= _init_interface_clks(oh);
1132 ret |= _init_opt_clks(oh);
Benoit Cousson6ae76992011-07-10 05:56:30 -06001133 ret |= _init_clkdm(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03001134
Benoit Coussonf5c1f842010-05-20 12:31:10 -06001135 if (!ret)
1136 oh->_state = _HWMOD_STATE_CLKS_INITED;
Benoit Cousson66522712011-07-01 22:54:06 +02001137 else
1138 pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001139
Rajendra Nayak09c35f22011-02-16 12:11:24 +00001140 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001141}
1142
1143/**
1144 * _wait_target_ready - wait for a module to leave slave idle
1145 * @oh: struct omap_hwmod *
1146 *
1147 * Wait for a module @oh to leave slave idle. Returns 0 if the module
1148 * does not have an IDLEST bit or if the module successfully leaves
1149 * slave idle; otherwise, pass along the return value of the
Benoit Coussond0f06312011-07-10 05:56:30 -06001150 * appropriate *_cm*_wait_module_ready() function.
Paul Walmsley63c85232009-09-03 20:14:03 +03001151 */
1152static int _wait_target_ready(struct omap_hwmod *oh)
1153{
1154 struct omap_hwmod_ocp_if *os;
1155 int ret;
1156
1157 if (!oh)
1158 return -EINVAL;
1159
1160 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1161 return 0;
1162
Benoit Cousson682fdc92010-05-20 12:31:09 -06001163 os = oh->slaves[oh->_mpu_port_index];
Paul Walmsley63c85232009-09-03 20:14:03 +03001164
Benoit Cousson33f7ec82010-05-20 12:31:09 -06001165 if (oh->flags & HWMOD_NO_IDLEST)
Paul Walmsley63c85232009-09-03 20:14:03 +03001166 return 0;
1167
1168 /* XXX check module SIDLEMODE */
1169
1170 /* XXX check clock enable states */
1171
1172 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1173 ret = omap2_cm_wait_module_ready(oh->prcm.omap2.module_offs,
1174 oh->prcm.omap2.idlest_reg_id,
1175 oh->prcm.omap2.idlest_idle_bit);
Paul Walmsley63c85232009-09-03 20:14:03 +03001176 } else if (cpu_is_omap44xx()) {
Benoit Coussond0f06312011-07-10 05:56:30 -06001177 if (!oh->clkdm)
1178 return -EINVAL;
1179
1180 ret = omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition,
1181 oh->clkdm->cm_inst,
1182 oh->clkdm->clkdm_offs,
1183 oh->prcm.omap4.clkctrl_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03001184 } else {
1185 BUG();
1186 };
1187
1188 return ret;
1189}
1190
1191/**
omar ramirezcc1226e2011-03-04 13:32:44 -07001192 * _lookup_hardreset - fill register bit info for this hwmod/reset line
Benoît Cousson5365efb2010-09-21 10:34:11 -06001193 * @oh: struct omap_hwmod *
1194 * @name: name of the reset line in the context of this hwmod
omar ramirezcc1226e2011-03-04 13:32:44 -07001195 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
Benoît Cousson5365efb2010-09-21 10:34:11 -06001196 *
1197 * Return the bit position of the reset line that match the
1198 * input name. Return -ENOENT if not found.
1199 */
omar ramirezcc1226e2011-03-04 13:32:44 -07001200static u8 _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1201 struct omap_hwmod_rst_info *ohri)
Benoît Cousson5365efb2010-09-21 10:34:11 -06001202{
1203 int i;
1204
1205 for (i = 0; i < oh->rst_lines_cnt; i++) {
1206 const char *rst_line = oh->rst_lines[i].name;
1207 if (!strcmp(rst_line, name)) {
omar ramirezcc1226e2011-03-04 13:32:44 -07001208 ohri->rst_shift = oh->rst_lines[i].rst_shift;
1209 ohri->st_shift = oh->rst_lines[i].st_shift;
1210 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1211 oh->name, __func__, rst_line, ohri->rst_shift,
1212 ohri->st_shift);
Benoît Cousson5365efb2010-09-21 10:34:11 -06001213
omar ramirezcc1226e2011-03-04 13:32:44 -07001214 return 0;
Benoît Cousson5365efb2010-09-21 10:34:11 -06001215 }
1216 }
1217
1218 return -ENOENT;
1219}
1220
1221/**
1222 * _assert_hardreset - assert the HW reset line of submodules
1223 * contained in the hwmod module.
1224 * @oh: struct omap_hwmod *
1225 * @name: name of the reset line to lookup and assert
1226 *
1227 * Some IP like dsp, ipu or iva contain processor that require
1228 * an HW reset line to be assert / deassert in order to enable fully
1229 * the IP.
1230 */
1231static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1232{
omar ramirezcc1226e2011-03-04 13:32:44 -07001233 struct omap_hwmod_rst_info ohri;
1234 u8 ret;
Benoît Cousson5365efb2010-09-21 10:34:11 -06001235
1236 if (!oh)
1237 return -EINVAL;
1238
omar ramirezcc1226e2011-03-04 13:32:44 -07001239 ret = _lookup_hardreset(oh, name, &ohri);
1240 if (IS_ERR_VALUE(ret))
1241 return ret;
Benoît Cousson5365efb2010-09-21 10:34:11 -06001242
1243 if (cpu_is_omap24xx() || cpu_is_omap34xx())
1244 return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
omar ramirezcc1226e2011-03-04 13:32:44 -07001245 ohri.rst_shift);
Benoît Cousson5365efb2010-09-21 10:34:11 -06001246 else if (cpu_is_omap44xx())
Benoit Coussoneaac3292011-07-10 05:56:31 -06001247 return omap4_prminst_assert_hardreset(ohri.rst_shift,
1248 oh->clkdm->pwrdm.ptr->prcm_partition,
1249 oh->clkdm->pwrdm.ptr->prcm_offs,
1250 oh->prcm.omap4.rstctrl_offs);
Benoît Cousson5365efb2010-09-21 10:34:11 -06001251 else
1252 return -EINVAL;
1253}
1254
1255/**
1256 * _deassert_hardreset - deassert the HW reset line of submodules contained
1257 * in the hwmod module.
1258 * @oh: struct omap_hwmod *
1259 * @name: name of the reset line to look up and deassert
1260 *
1261 * Some IP like dsp, ipu or iva contain processor that require
1262 * an HW reset line to be assert / deassert in order to enable fully
1263 * the IP.
1264 */
1265static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1266{
omar ramirezcc1226e2011-03-04 13:32:44 -07001267 struct omap_hwmod_rst_info ohri;
1268 int ret;
Benoît Cousson5365efb2010-09-21 10:34:11 -06001269
1270 if (!oh)
1271 return -EINVAL;
1272
omar ramirezcc1226e2011-03-04 13:32:44 -07001273 ret = _lookup_hardreset(oh, name, &ohri);
1274 if (IS_ERR_VALUE(ret))
1275 return ret;
Benoît Cousson5365efb2010-09-21 10:34:11 -06001276
omar ramirezcc1226e2011-03-04 13:32:44 -07001277 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1278 ret = omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
1279 ohri.rst_shift,
1280 ohri.st_shift);
1281 } else if (cpu_is_omap44xx()) {
1282 if (ohri.st_shift)
1283 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
1284 oh->name, name);
Benoit Coussoneaac3292011-07-10 05:56:31 -06001285 ret = omap4_prminst_deassert_hardreset(ohri.rst_shift,
1286 oh->clkdm->pwrdm.ptr->prcm_partition,
1287 oh->clkdm->pwrdm.ptr->prcm_offs,
1288 oh->prcm.omap4.rstctrl_offs);
omar ramirezcc1226e2011-03-04 13:32:44 -07001289 } else {
Benoît Cousson5365efb2010-09-21 10:34:11 -06001290 return -EINVAL;
omar ramirezcc1226e2011-03-04 13:32:44 -07001291 }
Benoît Cousson5365efb2010-09-21 10:34:11 -06001292
omar ramirezcc1226e2011-03-04 13:32:44 -07001293 if (ret == -EBUSY)
Benoît Cousson5365efb2010-09-21 10:34:11 -06001294 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1295
omar ramirezcc1226e2011-03-04 13:32:44 -07001296 return ret;
Benoît Cousson5365efb2010-09-21 10:34:11 -06001297}
1298
1299/**
1300 * _read_hardreset - read the HW reset line state of submodules
1301 * contained in the hwmod module
1302 * @oh: struct omap_hwmod *
1303 * @name: name of the reset line to look up and read
1304 *
1305 * Return the state of the reset line.
1306 */
1307static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1308{
omar ramirezcc1226e2011-03-04 13:32:44 -07001309 struct omap_hwmod_rst_info ohri;
1310 u8 ret;
Benoît Cousson5365efb2010-09-21 10:34:11 -06001311
1312 if (!oh)
1313 return -EINVAL;
1314
omar ramirezcc1226e2011-03-04 13:32:44 -07001315 ret = _lookup_hardreset(oh, name, &ohri);
1316 if (IS_ERR_VALUE(ret))
1317 return ret;
Benoît Cousson5365efb2010-09-21 10:34:11 -06001318
1319 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1320 return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
omar ramirezcc1226e2011-03-04 13:32:44 -07001321 ohri.st_shift);
Benoît Cousson5365efb2010-09-21 10:34:11 -06001322 } else if (cpu_is_omap44xx()) {
Benoit Coussoneaac3292011-07-10 05:56:31 -06001323 return omap4_prminst_is_hardreset_asserted(ohri.rst_shift,
1324 oh->clkdm->pwrdm.ptr->prcm_partition,
1325 oh->clkdm->pwrdm.ptr->prcm_offs,
1326 oh->prcm.omap4.rstctrl_offs);
Benoît Cousson5365efb2010-09-21 10:34:11 -06001327 } else {
1328 return -EINVAL;
1329 }
1330}
1331
1332/**
Paul Walmsley747834a2012-04-18 19:10:04 -06001333 * _are_any_hardreset_lines_asserted - return true if part of @oh is hard-reset
1334 * @oh: struct omap_hwmod *
1335 *
1336 * If any hardreset line associated with @oh is asserted, then return true.
1337 * Otherwise, if @oh has no hardreset lines associated with it, or if
1338 * no hardreset lines associated with @oh are asserted, then return false.
1339 * This function is used to avoid executing some parts of the IP block
1340 * enable/disable sequence if a hardreset line is set.
1341 */
1342static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1343{
1344 int i;
1345
1346 if (oh->rst_lines_cnt == 0)
1347 return false;
1348
1349 for (i = 0; i < oh->rst_lines_cnt; i++)
1350 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1351 return true;
1352
1353 return false;
1354}
1355
1356/**
1357 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1358 * @oh: struct omap_hwmod *
1359 *
1360 * Disable the PRCM module mode related to the hwmod @oh.
1361 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1362 */
1363static int _omap4_disable_module(struct omap_hwmod *oh)
1364{
1365 int v;
1366
1367 /* The module mode does not exist prior OMAP4 */
1368 if (!cpu_is_omap44xx())
1369 return -EINVAL;
1370
1371 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1372 return -EINVAL;
1373
1374 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1375
1376 omap4_cminst_module_disable(oh->clkdm->prcm_partition,
1377 oh->clkdm->cm_inst,
1378 oh->clkdm->clkdm_offs,
1379 oh->prcm.omap4.clkctrl_offs);
1380
1381 if (_are_any_hardreset_lines_asserted(oh))
1382 return 0;
1383
1384 v = _omap4_wait_target_disable(oh);
1385 if (v)
1386 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1387 oh->name);
1388
1389 return 0;
1390}
1391
1392/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001393 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
Paul Walmsley63c85232009-09-03 20:14:03 +03001394 * @oh: struct omap_hwmod *
1395 *
1396 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
Paul Walmsley30e105c2012-04-19 00:49:09 -06001397 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1398 * reset this way, -EINVAL if the hwmod is in the wrong state,
1399 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Benoit Cousson2cb06812010-09-21 18:57:59 +02001400 *
1401 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
Paul Walmsleybd361792010-12-14 12:42:35 -07001402 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
Benoit Cousson2cb06812010-09-21 18:57:59 +02001403 * use the SYSCONFIG softreset bit to provide the status.
1404 *
Paul Walmsleybd361792010-12-14 12:42:35 -07001405 * Note that some IP like McBSP do have reset control but don't have
1406 * reset status.
Paul Walmsley63c85232009-09-03 20:14:03 +03001407 */
Paul Walmsleybd361792010-12-14 12:42:35 -07001408static int _ocp_softreset(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001409{
Rajendra Nayak387ca5b2012-03-12 04:29:58 -06001410 u32 v, softrst_mask;
Paul Walmsley6f8b7ff2009-12-08 16:33:16 -07001411 int c = 0;
Benoit Cousson96835af2010-09-21 18:57:58 +02001412 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001413
Paul Walmsley43b40992010-02-22 22:09:34 -07001414 if (!oh->class->sysc ||
Benoit Cousson2cb06812010-09-21 18:57:59 +02001415 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley30e105c2012-04-19 00:49:09 -06001416 return -ENOENT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001417
1418 /* clocks must be on for this operation */
1419 if (oh->_state != _HWMOD_STATE_ENABLED) {
Benoit Cousson76e55892010-09-21 10:34:11 -06001420 pr_warning("omap_hwmod: %s: reset can only be entered from "
1421 "enabled state\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001422 return -EINVAL;
1423 }
1424
Benoit Cousson96835af2010-09-21 18:57:58 +02001425 /* For some modules, all optionnal clocks need to be enabled as well */
1426 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1427 _enable_optional_clocks(oh);
1428
Paul Walmsleybd361792010-12-14 12:42:35 -07001429 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001430
1431 v = oh->_sysc_cache;
Benoit Cousson96835af2010-09-21 18:57:58 +02001432 ret = _set_softreset(oh, &v);
1433 if (ret)
1434 goto dis_opt_clks;
Paul Walmsley63c85232009-09-03 20:14:03 +03001435 _write_sysconfig(v, oh);
1436
Fernando Guzman Lugod99de7f2012-04-13 05:08:03 -06001437 if (oh->class->sysc->srst_udelay)
1438 udelay(oh->class->sysc->srst_udelay);
1439
Benoit Cousson2cb06812010-09-21 18:57:59 +02001440 if (oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07001441 omap_test_timeout((omap_hwmod_read(oh,
Benoit Cousson2cb06812010-09-21 18:57:59 +02001442 oh->class->sysc->syss_offs)
1443 & SYSS_RESETDONE_MASK),
1444 MAX_MODULE_SOFTRESET_WAIT, c);
Rajendra Nayak387ca5b2012-03-12 04:29:58 -06001445 else if (oh->class->sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
1446 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07001447 omap_test_timeout(!(omap_hwmod_read(oh,
Benoit Cousson2cb06812010-09-21 18:57:59 +02001448 oh->class->sysc->sysc_offs)
Rajendra Nayak387ca5b2012-03-12 04:29:58 -06001449 & softrst_mask),
Benoit Cousson2cb06812010-09-21 18:57:59 +02001450 MAX_MODULE_SOFTRESET_WAIT, c);
Rajendra Nayak387ca5b2012-03-12 04:29:58 -06001451 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001452
Benoît Cousson5365efb2010-09-21 10:34:11 -06001453 if (c == MAX_MODULE_SOFTRESET_WAIT)
Benoit Cousson76e55892010-09-21 10:34:11 -06001454 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1455 oh->name, MAX_MODULE_SOFTRESET_WAIT);
Paul Walmsley63c85232009-09-03 20:14:03 +03001456 else
Benoît Cousson5365efb2010-09-21 10:34:11 -06001457 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
Paul Walmsley63c85232009-09-03 20:14:03 +03001458
1459 /*
1460 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1461 * _wait_target_ready() or _reset()
1462 */
1463
Benoit Cousson96835af2010-09-21 18:57:58 +02001464 ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
1465
1466dis_opt_clks:
1467 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1468 _disable_optional_clocks(oh);
1469
1470 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001471}
1472
1473/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001474 * _reset - reset an omap_hwmod
1475 * @oh: struct omap_hwmod *
1476 *
Paul Walmsley30e105c2012-04-19 00:49:09 -06001477 * Resets an omap_hwmod @oh. If the module has a custom reset
1478 * function pointer defined, then call it to reset the IP block, and
1479 * pass along its return value to the caller. Otherwise, if the IP
1480 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1481 * associated with it, call a function to reset the IP block via that
1482 * method, and pass along the return value to the caller. Finally, if
1483 * the IP block has some hardreset lines associated with it, assert
1484 * all of those, but do _not_ deassert them. (This is because driver
1485 * authors have expressed an apparent requirement to control the
1486 * deassertion of the hardreset lines themselves.)
1487 *
1488 * The default software reset mechanism for most OMAP IP blocks is
1489 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1490 * hwmods cannot be reset via this method. Some are not targets and
1491 * therefore have no OCP header registers to access. Others (like the
1492 * IVA) have idiosyncratic reset sequences. So for these relatively
1493 * rare cases, custom reset code can be supplied in the struct
1494 * omap_hwmod_class .reset function pointer. Passes along the return
1495 * value from either _ocp_softreset() or the custom reset function -
1496 * these must return -EINVAL if the hwmod cannot be reset this way or
1497 * if the hwmod is in the wrong state, -ETIMEDOUT if the module did
1498 * not reset in time, or 0 upon success.
Paul Walmsleybd361792010-12-14 12:42:35 -07001499 */
1500static int _reset(struct omap_hwmod *oh)
1501{
Paul Walmsley30e105c2012-04-19 00:49:09 -06001502 int i, r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001503
1504 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1505
Paul Walmsley30e105c2012-04-19 00:49:09 -06001506 if (oh->class->reset) {
1507 r = oh->class->reset(oh);
1508 } else {
1509 if (oh->rst_lines_cnt > 0) {
1510 for (i = 0; i < oh->rst_lines_cnt; i++)
1511 _assert_hardreset(oh, oh->rst_lines[i].name);
1512 return 0;
1513 } else {
1514 r = _ocp_softreset(oh);
1515 if (r == -ENOENT)
1516 r = 0;
1517 }
1518 }
Paul Walmsleybd361792010-12-14 12:42:35 -07001519
Paul Walmsley30e105c2012-04-19 00:49:09 -06001520 /*
1521 * OCP_SYSCONFIG bits need to be reprogrammed after a
1522 * softreset. The _enable() function should be split to avoid
1523 * the rewrite of the OCP_SYSCONFIG register.
1524 */
Rajendra Nayak28008522012-03-13 22:55:23 +05301525 if (oh->class->sysc) {
1526 _update_sysc_cache(oh);
1527 _enable_sysc(oh);
1528 }
1529
Paul Walmsley30e105c2012-04-19 00:49:09 -06001530 return r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001531}
1532
1533/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001534 * _enable - enable an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03001535 * @oh: struct omap_hwmod *
1536 *
1537 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001538 * register target. Returns -EINVAL if the hwmod is in the wrong
1539 * state or passes along the return value of _wait_target_ready().
Paul Walmsley63c85232009-09-03 20:14:03 +03001540 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001541static int _enable(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001542{
Paul Walmsley747834a2012-04-18 19:10:04 -06001543 int r;
Rajendra Nayak665d0012011-07-10 05:57:07 -06001544 int hwsup = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001545
Benoit Cousson34617e22011-07-01 22:54:07 +02001546 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
1547
Rajendra Nayakaacf0942011-12-16 05:50:12 -07001548 /*
Paul Walmsley64813c32012-04-18 19:10:03 -06001549 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
1550 * state at init. Now that someone is really trying to enable
1551 * them, just ensure that the hwmod mux is set.
Rajendra Nayakaacf0942011-12-16 05:50:12 -07001552 */
1553 if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
1554 /*
1555 * If the caller has mux data populated, do the mux'ing
1556 * which wouldn't have been done as part of the _enable()
1557 * done during setup.
1558 */
1559 if (oh->mux)
1560 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
1561
1562 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
1563 return 0;
1564 }
1565
Paul Walmsley63c85232009-09-03 20:14:03 +03001566 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
1567 oh->_state != _HWMOD_STATE_IDLE &&
1568 oh->_state != _HWMOD_STATE_DISABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00001569 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
1570 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001571 return -EINVAL;
1572 }
1573
Benoit Cousson31f62862011-07-01 22:54:05 +02001574 /*
Paul Walmsley747834a2012-04-18 19:10:04 -06001575 * If an IP block contains HW reset lines and any of them are
1576 * asserted, we let integration code associated with that
1577 * block handle the enable. We've received very little
1578 * information on what those driver authors need, and until
1579 * detailed information is provided and the driver code is
1580 * posted to the public lists, this is probably the best we
1581 * can do.
Benoit Cousson31f62862011-07-01 22:54:05 +02001582 */
Paul Walmsley747834a2012-04-18 19:10:04 -06001583 if (_are_any_hardreset_lines_asserted(oh))
1584 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001585
Rajendra Nayak665d0012011-07-10 05:57:07 -06001586 /* Mux pins for device runtime if populated */
1587 if (oh->mux && (!oh->mux->enabled ||
1588 ((oh->_state == _HWMOD_STATE_IDLE) &&
1589 oh->mux->pads_dynamic)))
1590 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
Benoit Cousson34617e22011-07-01 22:54:07 +02001591
Rajendra Nayak665d0012011-07-10 05:57:07 -06001592 _add_initiator_dep(oh, mpu_oh);
1593
1594 if (oh->clkdm) {
1595 /*
1596 * A clockdomain must be in SW_SUP before enabling
1597 * completely the module. The clockdomain can be set
1598 * in HW_AUTO only when the module become ready.
1599 */
1600 hwsup = clkdm_in_hwsup(oh->clkdm);
1601 r = clkdm_hwmod_enable(oh->clkdm, oh);
1602 if (r) {
1603 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1604 oh->name, oh->clkdm->name, r);
1605 return r;
1606 }
Benoit Cousson34617e22011-07-01 22:54:07 +02001607 }
Rajendra Nayak665d0012011-07-10 05:57:07 -06001608
1609 _enable_clocks(oh);
Benoit Cousson45c38252011-07-10 05:56:33 -06001610 _enable_module(oh);
Benoit Cousson34617e22011-07-01 22:54:07 +02001611
Rajendra Nayak665d0012011-07-10 05:57:07 -06001612 r = _wait_target_ready(oh);
1613 if (!r) {
1614 /*
1615 * Set the clockdomain to HW_AUTO only if the target is ready,
1616 * assuming that the previous state was HW_AUTO
1617 */
1618 if (oh->clkdm && hwsup)
1619 clkdm_allow_idle(oh->clkdm);
Benoit Cousson34617e22011-07-01 22:54:07 +02001620
Rajendra Nayak665d0012011-07-10 05:57:07 -06001621 oh->_state = _HWMOD_STATE_ENABLED;
1622
1623 /* Access the sysconfig only if the target is ready */
1624 if (oh->class->sysc) {
1625 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
1626 _update_sysc_cache(oh);
1627 _enable_sysc(oh);
1628 }
1629 } else {
1630 _disable_clocks(oh);
1631 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
1632 oh->name, r);
1633
1634 if (oh->clkdm)
1635 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06001636 }
1637
Paul Walmsley63c85232009-09-03 20:14:03 +03001638 return r;
1639}
1640
1641/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001642 * _idle - idle an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03001643 * @oh: struct omap_hwmod *
1644 *
1645 * Idles an omap_hwmod @oh. This should be called once the hwmod has
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001646 * no further work. Returns -EINVAL if the hwmod is in the wrong
1647 * state or returns 0.
Paul Walmsley63c85232009-09-03 20:14:03 +03001648 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001649static int _idle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001650{
Benoit Cousson34617e22011-07-01 22:54:07 +02001651 pr_debug("omap_hwmod: %s: idling\n", oh->name);
1652
Paul Walmsley63c85232009-09-03 20:14:03 +03001653 if (oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00001654 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
1655 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001656 return -EINVAL;
1657 }
1658
Paul Walmsley747834a2012-04-18 19:10:04 -06001659 if (_are_any_hardreset_lines_asserted(oh))
1660 return 0;
1661
Paul Walmsley43b40992010-02-22 22:09:34 -07001662 if (oh->class->sysc)
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001663 _idle_sysc(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03001664 _del_initiator_dep(oh, mpu_oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08001665
1666 _omap4_disable_module(oh);
1667
Benoit Cousson45c38252011-07-10 05:56:33 -06001668 /*
1669 * The module must be in idle mode before disabling any parents
1670 * clocks. Otherwise, the parent clock might be disabled before
1671 * the module transition is done, and thus will prevent the
1672 * transition to complete properly.
1673 */
1674 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06001675 if (oh->clkdm)
1676 clkdm_hwmod_disable(oh->clkdm, oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03001677
Tony Lindgren8d9af882010-12-22 18:42:35 -08001678 /* Mux pins for device idle if populated */
Tony Lindgren029268e2011-03-11 11:32:25 -08001679 if (oh->mux && oh->mux->pads_dynamic)
Tony Lindgren8d9af882010-12-22 18:42:35 -08001680 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
1681
Paul Walmsley63c85232009-09-03 20:14:03 +03001682 oh->_state = _HWMOD_STATE_IDLE;
1683
1684 return 0;
1685}
1686
1687/**
Kishon Vijay Abraham I95992172011-03-10 03:50:08 -07001688 * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit
1689 * @oh: struct omap_hwmod *
1690 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
1691 *
1692 * Sets the IP block's OCP autoidle bit in hardware, and updates our
1693 * local copy. Intended to be used by drivers that require
1694 * direct manipulation of the AUTOIDLE bits.
1695 * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes
1696 * along the return value from _set_module_autoidle().
1697 *
1698 * Any users of this function should be scrutinized carefully.
1699 */
1700int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle)
1701{
1702 u32 v;
1703 int retval = 0;
1704 unsigned long flags;
1705
1706 if (!oh || oh->_state != _HWMOD_STATE_ENABLED)
1707 return -EINVAL;
1708
1709 spin_lock_irqsave(&oh->_lock, flags);
1710
1711 v = oh->_sysc_cache;
1712
1713 retval = _set_module_autoidle(oh, autoidle, &v);
1714
1715 if (!retval)
1716 _write_sysconfig(v, oh);
1717
1718 spin_unlock_irqrestore(&oh->_lock, flags);
1719
1720 return retval;
1721}
1722
1723/**
Paul Walmsley63c85232009-09-03 20:14:03 +03001724 * _shutdown - shutdown an omap_hwmod
1725 * @oh: struct omap_hwmod *
1726 *
1727 * Shut down an omap_hwmod @oh. This should be called when the driver
1728 * used for the hwmod is removed or unloaded or if the driver is not
1729 * used by the system. Returns -EINVAL if the hwmod is in the wrong
1730 * state or returns 0.
1731 */
1732static int _shutdown(struct omap_hwmod *oh)
1733{
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06001734 int ret, i;
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07001735 u8 prev_state;
1736
Paul Walmsley63c85232009-09-03 20:14:03 +03001737 if (oh->_state != _HWMOD_STATE_IDLE &&
1738 oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00001739 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
1740 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001741 return -EINVAL;
1742 }
1743
Paul Walmsley747834a2012-04-18 19:10:04 -06001744 if (_are_any_hardreset_lines_asserted(oh))
1745 return 0;
1746
Paul Walmsley63c85232009-09-03 20:14:03 +03001747 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
1748
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07001749 if (oh->class->pre_shutdown) {
1750 prev_state = oh->_state;
1751 if (oh->_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001752 _enable(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07001753 ret = oh->class->pre_shutdown(oh);
1754 if (ret) {
1755 if (prev_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001756 _idle(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07001757 return ret;
1758 }
1759 }
1760
Miguel Vadillo6481c732011-07-01 22:54:02 +02001761 if (oh->class->sysc) {
1762 if (oh->_state == _HWMOD_STATE_IDLE)
1763 _enable(oh);
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001764 _shutdown_sysc(oh);
Miguel Vadillo6481c732011-07-01 22:54:02 +02001765 }
Benoît Cousson5365efb2010-09-21 10:34:11 -06001766
Benoit Cousson3827f942010-09-21 10:34:08 -06001767 /* clocks and deps are already disabled in idle */
1768 if (oh->_state == _HWMOD_STATE_ENABLED) {
1769 _del_initiator_dep(oh, mpu_oh);
1770 /* XXX what about the other system initiators here? dma, dsp */
Benoit Coussonbfc141e2011-12-16 16:09:11 -08001771 _omap4_disable_module(oh);
Benoit Cousson45c38252011-07-10 05:56:33 -06001772 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06001773 if (oh->clkdm)
1774 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson3827f942010-09-21 10:34:08 -06001775 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001776 /* XXX Should this code also force-disable the optional clocks? */
1777
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06001778 for (i = 0; i < oh->rst_lines_cnt; i++)
1779 _assert_hardreset(oh, oh->rst_lines[i].name);
Benoit Cousson31f62862011-07-01 22:54:05 +02001780
Tony Lindgren8d9af882010-12-22 18:42:35 -08001781 /* Mux pins to safe mode or use populated off mode values */
1782 if (oh->mux)
1783 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
Paul Walmsley63c85232009-09-03 20:14:03 +03001784
1785 oh->_state = _HWMOD_STATE_DISABLED;
1786
1787 return 0;
1788}
1789
1790/**
Paul Walmsley381d0332012-04-19 00:58:22 -06001791 * _init_mpu_rt_base - populate the virtual address for a hwmod
1792 * @oh: struct omap_hwmod * to locate the virtual address
1793 *
1794 * Cache the virtual address used by the MPU to access this IP block's
1795 * registers. This address is needed early so the OCP registers that
1796 * are part of the device's address space can be ioremapped properly.
1797 * No return value.
1798 */
1799static void __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data)
1800{
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001801 struct omap_hwmod_addr_space *mem;
1802 void __iomem *va_start;
1803
1804 if (!oh)
1805 return;
1806
Paul Walmsley381d0332012-04-19 00:58:22 -06001807 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1808 return;
1809
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001810 mem = _find_mpu_rt_addr_space(oh);
1811 if (!mem) {
1812 pr_debug("omap_hwmod: %s: no MPU register target found\n",
1813 oh->name);
1814 return;
1815 }
1816
1817 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
1818 if (!va_start) {
1819 pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
1820 return;
1821 }
1822
1823 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
1824 oh->name, va_start);
1825
1826 oh->_mpu_rt_va = va_start;
Paul Walmsley381d0332012-04-19 00:58:22 -06001827}
1828
1829/**
1830 * _init - initialize internal data for the hwmod @oh
1831 * @oh: struct omap_hwmod *
1832 * @n: (unused)
1833 *
1834 * Look up the clocks and the address space used by the MPU to access
1835 * registers belonging to the hwmod @oh. @oh must already be
1836 * registered at this point. This is the first of two phases for
1837 * hwmod initialization. Code called here does not touch any hardware
1838 * registers, it simply prepares internal data structures. Returns 0
1839 * upon success or if the hwmod isn't registered, or -EINVAL upon
1840 * failure.
1841 */
1842static int __init _init(struct omap_hwmod *oh, void *data)
1843{
1844 int r;
1845
1846 if (oh->_state != _HWMOD_STATE_REGISTERED)
1847 return 0;
1848
1849 _init_mpu_rt_base(oh, NULL);
1850
1851 r = _init_clocks(oh, NULL);
1852 if (IS_ERR_VALUE(r)) {
1853 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
1854 return -EINVAL;
1855 }
1856
1857 oh->_state = _HWMOD_STATE_INITIALIZED;
1858
1859 return 0;
1860}
1861
1862/**
Paul Walmsley64813c32012-04-18 19:10:03 -06001863 * _setup_iclk_autoidle - configure an IP block's interface clocks
Paul Walmsley63c85232009-09-03 20:14:03 +03001864 * @oh: struct omap_hwmod *
1865 *
Paul Walmsley64813c32012-04-18 19:10:03 -06001866 * Set up the module's interface clocks. XXX This function is still mostly
1867 * a stub; implementing this properly requires iclk autoidle usecounting in
1868 * the clock code. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001869 */
Paul Walmsley64813c32012-04-18 19:10:03 -06001870static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001871{
Paul Walmsley64813c32012-04-18 19:10:03 -06001872 int i;
Paul Walmsley97d60162010-07-26 16:34:30 -06001873
Paul Walmsley381d0332012-04-19 00:58:22 -06001874 if (oh->_state != _HWMOD_STATE_INITIALIZED)
Paul Walmsley64813c32012-04-18 19:10:03 -06001875 return;
Paul Walmsley48d54f32011-02-23 00:14:07 -07001876
Paul Walmsley64813c32012-04-18 19:10:03 -06001877 for (i = 0; i < oh->slaves_cnt; i++) {
1878 struct omap_hwmod_ocp_if *os = oh->slaves[i];
1879 struct clk *c = os->_clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03001880
Paul Walmsley64813c32012-04-18 19:10:03 -06001881 if (!c)
1882 continue;
Paul Walmsley63c85232009-09-03 20:14:03 +03001883
Paul Walmsley64813c32012-04-18 19:10:03 -06001884 if (os->flags & OCPIF_SWSUP_IDLE) {
1885 /* XXX omap_iclk_deny_idle(c); */
1886 } else {
1887 /* XXX omap_iclk_allow_idle(c); */
1888 clk_enable(c);
Paul Walmsley63c85232009-09-03 20:14:03 +03001889 }
1890 }
1891
Paul Walmsley64813c32012-04-18 19:10:03 -06001892 return;
1893}
1894
1895/**
1896 * _setup_reset - reset an IP block during the setup process
1897 * @oh: struct omap_hwmod *
1898 *
1899 * Reset the IP block corresponding to the hwmod @oh during the setup
1900 * process. The IP block is first enabled so it can be successfully
1901 * reset. Returns 0 upon success or a negative error code upon
1902 * failure.
1903 */
1904static int __init _setup_reset(struct omap_hwmod *oh)
1905{
1906 int r;
1907
1908 if (oh->_state != _HWMOD_STATE_INITIALIZED)
1909 return -EINVAL;
Paul Walmsley63c85232009-09-03 20:14:03 +03001910
Paul Walmsley747834a2012-04-18 19:10:04 -06001911 if (oh->rst_lines_cnt == 0) {
1912 r = _enable(oh);
1913 if (r) {
1914 pr_warning("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
1915 oh->name, oh->_state);
1916 return -EINVAL;
1917 }
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06001918 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001919
Rajendra Nayak28008522012-03-13 22:55:23 +05301920 if (!(oh->flags & HWMOD_INIT_NO_RESET))
Paul Walmsley64813c32012-04-18 19:10:03 -06001921 r = _reset(oh);
1922
1923 return r;
1924}
1925
1926/**
1927 * _setup_postsetup - transition to the appropriate state after _setup
1928 * @oh: struct omap_hwmod *
1929 *
1930 * Place an IP block represented by @oh into a "post-setup" state --
1931 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
1932 * this function is called at the end of _setup().) The postsetup
1933 * state for an IP block can be changed by calling
1934 * omap_hwmod_enter_postsetup_state() early in the boot process,
1935 * before one of the omap_hwmod_setup*() functions are called for the
1936 * IP block.
1937 *
1938 * The IP block stays in this state until a PM runtime-based driver is
1939 * loaded for that IP block. A post-setup state of IDLE is
1940 * appropriate for almost all IP blocks with runtime PM-enabled
1941 * drivers, since those drivers are able to enable the IP block. A
1942 * post-setup state of ENABLED is appropriate for kernels with PM
1943 * runtime disabled. The DISABLED state is appropriate for unusual IP
1944 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
1945 * included, since the WDTIMER starts running on reset and will reset
1946 * the MPU if left active.
1947 *
1948 * This post-setup mechanism is deprecated. Once all of the OMAP
1949 * drivers have been converted to use PM runtime, and all of the IP
1950 * block data and interconnect data is available to the hwmod code, it
1951 * should be possible to replace this mechanism with a "lazy reset"
1952 * arrangement. In a "lazy reset" setup, each IP block is enabled
1953 * when the driver first probes, then all remaining IP blocks without
1954 * drivers are either shut down or enabled after the drivers have
1955 * loaded. However, this cannot take place until the above
1956 * preconditions have been met, since otherwise the late reset code
1957 * has no way of knowing which IP blocks are in use by drivers, and
1958 * which ones are unused.
1959 *
1960 * No return value.
1961 */
1962static void __init _setup_postsetup(struct omap_hwmod *oh)
1963{
1964 u8 postsetup_state;
1965
1966 if (oh->rst_lines_cnt > 0)
1967 return;
Benoit Cousson76e55892010-09-21 10:34:11 -06001968
Paul Walmsley2092e5c2010-12-14 12:42:35 -07001969 postsetup_state = oh->_postsetup_state;
1970 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
1971 postsetup_state = _HWMOD_STATE_ENABLED;
1972
1973 /*
1974 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
1975 * it should be set by the core code as a runtime flag during startup
1976 */
1977 if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
Rajendra Nayakaacf0942011-12-16 05:50:12 -07001978 (postsetup_state == _HWMOD_STATE_IDLE)) {
1979 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07001980 postsetup_state = _HWMOD_STATE_ENABLED;
Rajendra Nayakaacf0942011-12-16 05:50:12 -07001981 }
Paul Walmsley2092e5c2010-12-14 12:42:35 -07001982
1983 if (postsetup_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001984 _idle(oh);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07001985 else if (postsetup_state == _HWMOD_STATE_DISABLED)
1986 _shutdown(oh);
1987 else if (postsetup_state != _HWMOD_STATE_ENABLED)
1988 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
1989 oh->name, postsetup_state);
Paul Walmsley63c85232009-09-03 20:14:03 +03001990
Paul Walmsley64813c32012-04-18 19:10:03 -06001991 return;
1992}
1993
1994/**
1995 * _setup - prepare IP block hardware for use
1996 * @oh: struct omap_hwmod *
1997 * @n: (unused, pass NULL)
1998 *
1999 * Configure the IP block represented by @oh. This may include
2000 * enabling the IP block, resetting it, and placing it into a
2001 * post-setup state, depending on the type of IP block and applicable
2002 * flags. IP blocks are reset to prevent any previous configuration
2003 * by the bootloader or previous operating system from interfering
2004 * with power management or other parts of the system. The reset can
2005 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2006 * two phases for hwmod initialization. Code called here generally
2007 * affects the IP block hardware, or system integration hardware
2008 * associated with the IP block. Returns 0.
2009 */
2010static int __init _setup(struct omap_hwmod *oh, void *data)
2011{
2012 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2013 return 0;
2014
2015 _setup_iclk_autoidle(oh);
2016
2017 if (!_setup_reset(oh))
2018 _setup_postsetup(oh);
2019
Paul Walmsley63c85232009-09-03 20:14:03 +03002020 return 0;
2021}
2022
Benoit Cousson0102b622010-12-21 21:31:27 -07002023/**
2024 * _register - register a struct omap_hwmod
2025 * @oh: struct omap_hwmod *
2026 *
2027 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2028 * already has been registered by the same name; -EINVAL if the
2029 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2030 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2031 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2032 * success.
2033 *
2034 * XXX The data should be copied into bootmem, so the original data
2035 * should be marked __initdata and freed after init. This would allow
2036 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2037 * that the copy process would be relatively complex due to the large number
2038 * of substructures.
2039 */
Benoit Cousson01592df2010-12-21 21:31:28 -07002040static int __init _register(struct omap_hwmod *oh)
Benoit Cousson0102b622010-12-21 21:31:27 -07002041{
Paul Walmsley569edd702011-02-23 00:14:06 -07002042 int ms_id;
Benoit Cousson0102b622010-12-21 21:31:27 -07002043
2044 if (!oh || !oh->name || !oh->class || !oh->class->name ||
2045 (oh->_state != _HWMOD_STATE_UNKNOWN))
2046 return -EINVAL;
2047
Benoit Cousson0102b622010-12-21 21:31:27 -07002048 pr_debug("omap_hwmod: %s: registering\n", oh->name);
2049
Benoit Coussonce35b242010-12-21 21:31:28 -07002050 if (_lookup(oh->name))
2051 return -EEXIST;
Benoit Cousson0102b622010-12-21 21:31:27 -07002052
2053 ms_id = _find_mpu_port_index(oh);
Tony Lindgrene7c7d762011-02-14 15:40:21 -08002054 if (!IS_ERR_VALUE(ms_id))
Benoit Cousson0102b622010-12-21 21:31:27 -07002055 oh->_mpu_port_index = ms_id;
Tony Lindgrene7c7d762011-02-14 15:40:21 -08002056 else
Benoit Cousson0102b622010-12-21 21:31:27 -07002057 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
Benoit Cousson0102b622010-12-21 21:31:27 -07002058
2059 list_add_tail(&oh->node, &omap_hwmod_list);
2060
2061 spin_lock_init(&oh->_lock);
2062
2063 oh->_state = _HWMOD_STATE_REGISTERED;
2064
Paul Walmsley569edd702011-02-23 00:14:06 -07002065 /*
2066 * XXX Rather than doing a strcmp(), this should test a flag
2067 * set in the hwmod data, inserted by the autogenerator code.
2068 */
2069 if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2070 mpu_oh = oh;
Benoit Cousson0102b622010-12-21 21:31:27 -07002071
Paul Walmsley569edd702011-02-23 00:14:06 -07002072 return 0;
Benoit Cousson0102b622010-12-21 21:31:27 -07002073}
Paul Walmsley63c85232009-09-03 20:14:03 +03002074
2075
2076/* Public functions */
2077
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002078u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03002079{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002080 if (oh->flags & HWMOD_16BIT_REG)
2081 return __raw_readw(oh->_mpu_rt_va + reg_offs);
2082 else
2083 return __raw_readl(oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03002084}
2085
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002086void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03002087{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002088 if (oh->flags & HWMOD_16BIT_REG)
2089 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
2090 else
2091 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03002092}
2093
Paul Walmsley887adea2010-07-26 16:34:33 -06002094/**
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06002095 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
2096 * @oh: struct omap_hwmod *
2097 *
2098 * This is a public function exposed to drivers. Some drivers may need to do
2099 * some settings before and after resetting the device. Those drivers after
2100 * doing the necessary settings could use this function to start a reset by
2101 * setting the SYSCONFIG.SOFTRESET bit.
2102 */
2103int omap_hwmod_softreset(struct omap_hwmod *oh)
2104{
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06002105 u32 v;
2106 int ret;
2107
2108 if (!oh || !(oh->_sysc_cache))
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06002109 return -EINVAL;
2110
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06002111 v = oh->_sysc_cache;
2112 ret = _set_softreset(oh, &v);
2113 if (ret)
2114 goto error;
2115 _write_sysconfig(v, oh);
2116
2117error:
2118 return ret;
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06002119}
2120
2121/**
Paul Walmsley887adea2010-07-26 16:34:33 -06002122 * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode
2123 * @oh: struct omap_hwmod *
2124 * @idlemode: SIDLEMODE field bits (shifted to bit 0)
2125 *
2126 * Sets the IP block's OCP slave idlemode in hardware, and updates our
2127 * local copy. Intended to be used by drivers that have some erratum
2128 * that requires direct manipulation of the SIDLEMODE bits. Returns
2129 * -EINVAL if @oh is null, or passes along the return value from
2130 * _set_slave_idlemode().
2131 *
2132 * XXX Does this function have any current users? If not, we should
2133 * remove it; it is better to let the rest of the hwmod code handle this.
2134 * Any users of this function should be scrutinized carefully.
2135 */
Kevin Hilman46273e62010-01-26 20:13:03 -07002136int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode)
2137{
2138 u32 v;
2139 int retval = 0;
2140
2141 if (!oh)
2142 return -EINVAL;
2143
2144 v = oh->_sysc_cache;
2145
2146 retval = _set_slave_idlemode(oh, idlemode, &v);
2147 if (!retval)
2148 _write_sysconfig(v, oh);
2149
2150 return retval;
2151}
2152
Paul Walmsley63c85232009-09-03 20:14:03 +03002153/**
Paul Walmsley63c85232009-09-03 20:14:03 +03002154 * omap_hwmod_lookup - look up a registered omap_hwmod by name
2155 * @name: name of the omap_hwmod to look up
2156 *
2157 * Given a @name of an omap_hwmod, return a pointer to the registered
2158 * struct omap_hwmod *, or NULL upon error.
2159 */
2160struct omap_hwmod *omap_hwmod_lookup(const char *name)
2161{
2162 struct omap_hwmod *oh;
2163
2164 if (!name)
2165 return NULL;
2166
Paul Walmsley63c85232009-09-03 20:14:03 +03002167 oh = _lookup(name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002168
2169 return oh;
2170}
2171
2172/**
2173 * omap_hwmod_for_each - call function for each registered omap_hwmod
2174 * @fn: pointer to a callback function
Paul Walmsley97d60162010-07-26 16:34:30 -06002175 * @data: void * data to pass to callback function
Paul Walmsley63c85232009-09-03 20:14:03 +03002176 *
2177 * Call @fn for each registered omap_hwmod, passing @data to each
2178 * function. @fn must return 0 for success or any other value for
2179 * failure. If @fn returns non-zero, the iteration across omap_hwmods
2180 * will stop and the non-zero return value will be passed to the
2181 * caller of omap_hwmod_for_each(). @fn is called with
2182 * omap_hwmod_for_each() held.
2183 */
Paul Walmsley97d60162010-07-26 16:34:30 -06002184int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
2185 void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03002186{
2187 struct omap_hwmod *temp_oh;
Govindraj.R30ebad92011-06-01 11:28:56 +05302188 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002189
2190 if (!fn)
2191 return -EINVAL;
2192
Paul Walmsley63c85232009-09-03 20:14:03 +03002193 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
Paul Walmsley97d60162010-07-26 16:34:30 -06002194 ret = (*fn)(temp_oh, data);
Paul Walmsley63c85232009-09-03 20:14:03 +03002195 if (ret)
2196 break;
2197 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002198
2199 return ret;
2200}
2201
Paul Walmsley63c85232009-09-03 20:14:03 +03002202/**
Paul Walmsley550c8092011-02-28 11:58:14 -07002203 * omap_hwmod_register - register an array of hwmods
Paul Walmsley63c85232009-09-03 20:14:03 +03002204 * @ohs: pointer to an array of omap_hwmods to register
2205 *
2206 * Intended to be called early in boot before the clock framework is
2207 * initialized. If @ohs is not null, will register all omap_hwmods
Paul Walmsley550c8092011-02-28 11:58:14 -07002208 * listed in @ohs that are valid for this chip. Returns 0.
Paul Walmsley63c85232009-09-03 20:14:03 +03002209 */
Paul Walmsley550c8092011-02-28 11:58:14 -07002210int __init omap_hwmod_register(struct omap_hwmod **ohs)
Paul Walmsley63c85232009-09-03 20:14:03 +03002211{
Paul Walmsleybac1a0f2011-02-23 00:14:06 -07002212 int r, i;
Paul Walmsley63c85232009-09-03 20:14:03 +03002213
2214 if (!ohs)
2215 return 0;
2216
Paul Walmsleybac1a0f2011-02-23 00:14:06 -07002217 i = 0;
2218 do {
Paul Walmsleybac1a0f2011-02-23 00:14:06 -07002219 r = _register(ohs[i]);
2220 WARN(r, "omap_hwmod: %s: _register returned %d\n", ohs[i]->name,
2221 r);
2222 } while (ohs[++i]);
Paul Walmsley63c85232009-09-03 20:14:03 +03002223
2224 return 0;
2225}
2226
Paul Walmsley381d0332012-04-19 00:58:22 -06002227/**
2228 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
2229 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08002230 *
Paul Walmsley381d0332012-04-19 00:58:22 -06002231 * If the hwmod data corresponding to the MPU subsystem IP block
2232 * hasn't been initialized and set up yet, do so now. This must be
2233 * done first since sleep dependencies may be added from other hwmods
2234 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
2235 * return value.
Tony Lindgrene7c7d762011-02-14 15:40:21 -08002236 */
Paul Walmsley381d0332012-04-19 00:58:22 -06002237static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08002238{
Paul Walmsley381d0332012-04-19 00:58:22 -06002239 if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
2240 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
2241 __func__, MPU_INITIATOR_NAME);
2242 else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
2243 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
Paul Walmsley63c85232009-09-03 20:14:03 +03002244}
2245
2246/**
Paul Walmsleya2debdb2011-02-23 00:14:07 -07002247 * omap_hwmod_setup_one - set up a single hwmod
2248 * @oh_name: const char * name of the already-registered hwmod to set up
2249 *
Paul Walmsley381d0332012-04-19 00:58:22 -06002250 * Initialize and set up a single hwmod. Intended to be used for a
2251 * small number of early devices, such as the timer IP blocks used for
2252 * the scheduler clock. Must be called after omap2_clk_init().
2253 * Resolves the struct clk names to struct clk pointers for each
2254 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
2255 * -EINVAL upon error or 0 upon success.
Paul Walmsleya2debdb2011-02-23 00:14:07 -07002256 */
2257int __init omap_hwmod_setup_one(const char *oh_name)
2258{
2259 struct omap_hwmod *oh;
Paul Walmsleya2debdb2011-02-23 00:14:07 -07002260
2261 pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
2262
Paul Walmsleya2debdb2011-02-23 00:14:07 -07002263 oh = _lookup(oh_name);
2264 if (!oh) {
2265 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
2266 return -EINVAL;
2267 }
2268
Paul Walmsley381d0332012-04-19 00:58:22 -06002269 _ensure_mpu_hwmod_is_setup(oh);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07002270
Paul Walmsley381d0332012-04-19 00:58:22 -06002271 _init(oh, NULL);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07002272 _setup(oh, NULL);
2273
2274 return 0;
2275}
2276
2277/**
Paul Walmsley381d0332012-04-19 00:58:22 -06002278 * omap_hwmod_setup_all - set up all registered IP blocks
Paul Walmsley63c85232009-09-03 20:14:03 +03002279 *
Paul Walmsley381d0332012-04-19 00:58:22 -06002280 * Initialize and set up all IP blocks registered with the hwmod code.
2281 * Must be called after omap2_clk_init(). Resolves the struct clk
2282 * names to struct clk pointers for each registered omap_hwmod. Also
2283 * calls _setup() on each hwmod. Returns 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03002284 */
Paul Walmsley550c8092011-02-28 11:58:14 -07002285static int __init omap_hwmod_setup_all(void)
Paul Walmsley63c85232009-09-03 20:14:03 +03002286{
Paul Walmsley381d0332012-04-19 00:58:22 -06002287 _ensure_mpu_hwmod_is_setup(NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03002288
Paul Walmsley381d0332012-04-19 00:58:22 -06002289 omap_hwmod_for_each(_init, NULL);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002290 omap_hwmod_for_each(_setup, NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03002291
2292 return 0;
2293}
Paul Walmsley550c8092011-02-28 11:58:14 -07002294core_initcall(omap_hwmod_setup_all);
Paul Walmsley63c85232009-09-03 20:14:03 +03002295
2296/**
Paul Walmsley63c85232009-09-03 20:14:03 +03002297 * omap_hwmod_enable - enable an omap_hwmod
2298 * @oh: struct omap_hwmod *
2299 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002300 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
Paul Walmsley63c85232009-09-03 20:14:03 +03002301 * Returns -EINVAL on error or passes along the return value from _enable().
2302 */
2303int omap_hwmod_enable(struct omap_hwmod *oh)
2304{
2305 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002306 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03002307
2308 if (!oh)
2309 return -EINVAL;
2310
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002311 spin_lock_irqsave(&oh->_lock, flags);
2312 r = _enable(oh);
2313 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002314
2315 return r;
2316}
2317
2318/**
2319 * omap_hwmod_idle - idle an omap_hwmod
2320 * @oh: struct omap_hwmod *
2321 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002322 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
Paul Walmsley63c85232009-09-03 20:14:03 +03002323 * Returns -EINVAL on error or passes along the return value from _idle().
2324 */
2325int omap_hwmod_idle(struct omap_hwmod *oh)
2326{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002327 unsigned long flags;
2328
Paul Walmsley63c85232009-09-03 20:14:03 +03002329 if (!oh)
2330 return -EINVAL;
2331
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002332 spin_lock_irqsave(&oh->_lock, flags);
2333 _idle(oh);
2334 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002335
2336 return 0;
2337}
2338
2339/**
2340 * omap_hwmod_shutdown - shutdown an omap_hwmod
2341 * @oh: struct omap_hwmod *
2342 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002343 * Shutdown an omap_hwmod @oh. Intended to be called by
Paul Walmsley63c85232009-09-03 20:14:03 +03002344 * omap_device_shutdown(). Returns -EINVAL on error or passes along
2345 * the return value from _shutdown().
2346 */
2347int omap_hwmod_shutdown(struct omap_hwmod *oh)
2348{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002349 unsigned long flags;
2350
Paul Walmsley63c85232009-09-03 20:14:03 +03002351 if (!oh)
2352 return -EINVAL;
2353
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002354 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002355 _shutdown(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002356 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002357
2358 return 0;
2359}
2360
2361/**
2362 * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
2363 * @oh: struct omap_hwmod *oh
2364 *
2365 * Intended to be called by the omap_device code.
2366 */
2367int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
2368{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002369 unsigned long flags;
2370
2371 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002372 _enable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002373 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002374
2375 return 0;
2376}
2377
2378/**
2379 * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
2380 * @oh: struct omap_hwmod *oh
2381 *
2382 * Intended to be called by the omap_device code.
2383 */
2384int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
2385{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002386 unsigned long flags;
2387
2388 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002389 _disable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002390 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002391
2392 return 0;
2393}
2394
2395/**
2396 * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
2397 * @oh: struct omap_hwmod *oh
2398 *
2399 * Intended to be called by drivers and core code when all posted
2400 * writes to a device must complete before continuing further
2401 * execution (for example, after clearing some device IRQSTATUS
2402 * register bits)
2403 *
2404 * XXX what about targets with multiple OCP threads?
2405 */
2406void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
2407{
2408 BUG_ON(!oh);
2409
Paul Walmsley43b40992010-02-22 22:09:34 -07002410 if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
Russell King4f8a4282012-02-07 10:59:37 +00002411 WARN(1, "omap_device: %s: OCP barrier impossible due to device configuration\n",
2412 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002413 return;
2414 }
2415
2416 /*
2417 * Forces posted writes to complete on the OCP thread handling
2418 * register writes
2419 */
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002420 omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03002421}
2422
2423/**
2424 * omap_hwmod_reset - reset the hwmod
2425 * @oh: struct omap_hwmod *
2426 *
2427 * Under some conditions, a driver may wish to reset the entire device.
2428 * Called from omap_device code. Returns -EINVAL on error or passes along
Liam Girdwood9b579112010-09-21 10:34:09 -06002429 * the return value from _reset().
Paul Walmsley63c85232009-09-03 20:14:03 +03002430 */
2431int omap_hwmod_reset(struct omap_hwmod *oh)
2432{
2433 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002434 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03002435
Liam Girdwood9b579112010-09-21 10:34:09 -06002436 if (!oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002437 return -EINVAL;
2438
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002439 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002440 r = _reset(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002441 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002442
2443 return r;
2444}
2445
2446/**
2447 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
2448 * @oh: struct omap_hwmod *
2449 * @res: pointer to the first element of an array of struct resource to fill
2450 *
2451 * Count the number of struct resource array elements necessary to
2452 * contain omap_hwmod @oh resources. Intended to be called by code
2453 * that registers omap_devices. Intended to be used to determine the
2454 * size of a dynamically-allocated struct resource array, before
2455 * calling omap_hwmod_fill_resources(). Returns the number of struct
2456 * resource array elements needed.
2457 *
2458 * XXX This code is not optimized. It could attempt to merge adjacent
2459 * resource IDs.
2460 *
2461 */
2462int omap_hwmod_count_resources(struct omap_hwmod *oh)
2463{
2464 int ret, i;
2465
Paul Walmsleybc614952011-07-09 19:14:07 -06002466 ret = _count_mpu_irqs(oh) + _count_sdma_reqs(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002467
2468 for (i = 0; i < oh->slaves_cnt; i++)
Paul Walmsley78183f32011-07-09 19:14:05 -06002469 ret += _count_ocp_if_addr_spaces(oh->slaves[i]);
Paul Walmsley63c85232009-09-03 20:14:03 +03002470
2471 return ret;
2472}
2473
2474/**
2475 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
2476 * @oh: struct omap_hwmod *
2477 * @res: pointer to the first element of an array of struct resource to fill
2478 *
2479 * Fill the struct resource array @res with resource data from the
2480 * omap_hwmod @oh. Intended to be called by code that registers
2481 * omap_devices. See also omap_hwmod_count_resources(). Returns the
2482 * number of array elements filled.
2483 */
2484int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
2485{
Paul Walmsleybc614952011-07-09 19:14:07 -06002486 int i, j, mpu_irqs_cnt, sdma_reqs_cnt;
Paul Walmsley63c85232009-09-03 20:14:03 +03002487 int r = 0;
2488
2489 /* For each IRQ, DMA, memory area, fill in array.*/
2490
Paul Walmsley212738a2011-07-09 19:14:06 -06002491 mpu_irqs_cnt = _count_mpu_irqs(oh);
2492 for (i = 0; i < mpu_irqs_cnt; i++) {
Paul Walmsley718bfd72009-12-08 16:34:16 -07002493 (res + r)->name = (oh->mpu_irqs + i)->name;
2494 (res + r)->start = (oh->mpu_irqs + i)->irq;
2495 (res + r)->end = (oh->mpu_irqs + i)->irq;
Paul Walmsley63c85232009-09-03 20:14:03 +03002496 (res + r)->flags = IORESOURCE_IRQ;
2497 r++;
2498 }
2499
Paul Walmsleybc614952011-07-09 19:14:07 -06002500 sdma_reqs_cnt = _count_sdma_reqs(oh);
2501 for (i = 0; i < sdma_reqs_cnt; i++) {
Benoit Cousson9ee9fff2010-09-21 10:34:08 -06002502 (res + r)->name = (oh->sdma_reqs + i)->name;
2503 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
2504 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
Paul Walmsley63c85232009-09-03 20:14:03 +03002505 (res + r)->flags = IORESOURCE_DMA;
2506 r++;
2507 }
2508
2509 for (i = 0; i < oh->slaves_cnt; i++) {
2510 struct omap_hwmod_ocp_if *os;
Paul Walmsley78183f32011-07-09 19:14:05 -06002511 int addr_cnt;
Paul Walmsley63c85232009-09-03 20:14:03 +03002512
Benoit Cousson682fdc92010-05-20 12:31:09 -06002513 os = oh->slaves[i];
Paul Walmsley78183f32011-07-09 19:14:05 -06002514 addr_cnt = _count_ocp_if_addr_spaces(os);
Paul Walmsley63c85232009-09-03 20:14:03 +03002515
Paul Walmsley78183f32011-07-09 19:14:05 -06002516 for (j = 0; j < addr_cnt; j++) {
Kishon Vijay Abraham Icd503802011-02-24 12:51:45 -08002517 (res + r)->name = (os->addr + j)->name;
Paul Walmsley63c85232009-09-03 20:14:03 +03002518 (res + r)->start = (os->addr + j)->pa_start;
2519 (res + r)->end = (os->addr + j)->pa_end;
2520 (res + r)->flags = IORESOURCE_MEM;
2521 r++;
2522 }
2523 }
2524
2525 return r;
2526}
2527
2528/**
2529 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
2530 * @oh: struct omap_hwmod *
2531 *
2532 * Return the powerdomain pointer associated with the OMAP module
2533 * @oh's main clock. If @oh does not have a main clk, return the
2534 * powerdomain associated with the interface clock associated with the
2535 * module's MPU port. (XXX Perhaps this should use the SDMA port
2536 * instead?) Returns NULL on error, or a struct powerdomain * on
2537 * success.
2538 */
2539struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
2540{
2541 struct clk *c;
2542
2543 if (!oh)
2544 return NULL;
2545
2546 if (oh->_clk) {
2547 c = oh->_clk;
2548 } else {
2549 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2550 return NULL;
2551 c = oh->slaves[oh->_mpu_port_index]->_clk;
2552 }
2553
Thara Gopinathd5647c12010-03-31 04:16:29 -06002554 if (!c->clkdm)
2555 return NULL;
2556
Paul Walmsley63c85232009-09-03 20:14:03 +03002557 return c->clkdm->pwrdm.ptr;
2558
2559}
2560
2561/**
Paul Walmsleydb2a60b2010-07-26 16:34:33 -06002562 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
2563 * @oh: struct omap_hwmod *
2564 *
2565 * Returns the virtual address corresponding to the beginning of the
2566 * module's register target, in the address range that is intended to
2567 * be used by the MPU. Returns the virtual address upon success or NULL
2568 * upon error.
2569 */
2570void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
2571{
2572 if (!oh)
2573 return NULL;
2574
2575 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2576 return NULL;
2577
2578 if (oh->_state == _HWMOD_STATE_UNKNOWN)
2579 return NULL;
2580
2581 return oh->_mpu_rt_va;
2582}
2583
2584/**
Paul Walmsley63c85232009-09-03 20:14:03 +03002585 * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
2586 * @oh: struct omap_hwmod *
2587 * @init_oh: struct omap_hwmod * (initiator)
2588 *
2589 * Add a sleep dependency between the initiator @init_oh and @oh.
2590 * Intended to be called by DSP/Bridge code via platform_data for the
2591 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
2592 * code needs to add/del initiator dependencies dynamically
2593 * before/after accessing a device. Returns the return value from
2594 * _add_initiator_dep().
2595 *
2596 * XXX Keep a usecount in the clockdomain code
2597 */
2598int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
2599 struct omap_hwmod *init_oh)
2600{
2601 return _add_initiator_dep(oh, init_oh);
2602}
2603
2604/*
2605 * XXX what about functions for drivers to save/restore ocp_sysconfig
2606 * for context save/restore operations?
2607 */
2608
2609/**
2610 * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
2611 * @oh: struct omap_hwmod *
2612 * @init_oh: struct omap_hwmod * (initiator)
2613 *
2614 * Remove a sleep dependency between the initiator @init_oh and @oh.
2615 * Intended to be called by DSP/Bridge code via platform_data for the
2616 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
2617 * code needs to add/del initiator dependencies dynamically
2618 * before/after accessing a device. Returns the return value from
2619 * _del_initiator_dep().
2620 *
2621 * XXX Keep a usecount in the clockdomain code
2622 */
2623int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
2624 struct omap_hwmod *init_oh)
2625{
2626 return _del_initiator_dep(oh, init_oh);
2627}
2628
2629/**
Paul Walmsley63c85232009-09-03 20:14:03 +03002630 * omap_hwmod_enable_wakeup - allow device to wake up the system
2631 * @oh: struct omap_hwmod *
2632 *
2633 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
Govindraj.R2a1cc142012-04-05 02:59:32 -06002634 * send wakeups to the PRCM, and enable I/O ring wakeup events for
2635 * this IP block if it has dynamic mux entries. Eventually this
2636 * should set PRCM wakeup registers to cause the PRCM to receive
2637 * wakeup events from the module. Does not set any wakeup routing
2638 * registers beyond this point - if the module is to wake up any other
2639 * module or subsystem, that must be set separately. Called by
2640 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03002641 */
2642int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
2643{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002644 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07002645 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002646
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002647 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06002648
2649 if (oh->class->sysc &&
2650 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
2651 v = oh->_sysc_cache;
2652 _enable_wakeup(oh, &v);
2653 _write_sysconfig(v, oh);
2654 }
2655
Govindraj Receec002011-12-16 14:36:58 -07002656 _set_idle_ioring_wakeup(oh, true);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002657 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002658
2659 return 0;
2660}
2661
2662/**
2663 * omap_hwmod_disable_wakeup - prevent device from waking the system
2664 * @oh: struct omap_hwmod *
2665 *
2666 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
Govindraj.R2a1cc142012-04-05 02:59:32 -06002667 * from sending wakeups to the PRCM, and disable I/O ring wakeup
2668 * events for this IP block if it has dynamic mux entries. Eventually
2669 * this should clear PRCM wakeup registers to cause the PRCM to ignore
2670 * wakeup events from the module. Does not set any wakeup routing
2671 * registers beyond this point - if the module is to wake up any other
2672 * module or subsystem, that must be set separately. Called by
2673 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03002674 */
2675int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
2676{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002677 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07002678 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002679
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002680 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06002681
2682 if (oh->class->sysc &&
2683 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
2684 v = oh->_sysc_cache;
2685 _disable_wakeup(oh, &v);
2686 _write_sysconfig(v, oh);
2687 }
2688
Govindraj Receec002011-12-16 14:36:58 -07002689 _set_idle_ioring_wakeup(oh, false);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002690 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03002691
2692 return 0;
2693}
Paul Walmsley43b40992010-02-22 22:09:34 -07002694
2695/**
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002696 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
2697 * contained in the hwmod module.
2698 * @oh: struct omap_hwmod *
2699 * @name: name of the reset line to lookup and assert
2700 *
2701 * Some IP like dsp, ipu or iva contain processor that require
2702 * an HW reset line to be assert / deassert in order to enable fully
2703 * the IP. Returns -EINVAL if @oh is null or if the operation is not
2704 * yet supported on this OMAP; otherwise, passes along the return value
2705 * from _assert_hardreset().
2706 */
2707int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
2708{
2709 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002710 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002711
2712 if (!oh)
2713 return -EINVAL;
2714
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002715 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002716 ret = _assert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002717 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002718
2719 return ret;
2720}
2721
2722/**
2723 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
2724 * contained in the hwmod module.
2725 * @oh: struct omap_hwmod *
2726 * @name: name of the reset line to look up and deassert
2727 *
2728 * Some IP like dsp, ipu or iva contain processor that require
2729 * an HW reset line to be assert / deassert in order to enable fully
2730 * the IP. Returns -EINVAL if @oh is null or if the operation is not
2731 * yet supported on this OMAP; otherwise, passes along the return value
2732 * from _deassert_hardreset().
2733 */
2734int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
2735{
2736 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002737 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002738
2739 if (!oh)
2740 return -EINVAL;
2741
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002742 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002743 ret = _deassert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002744 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002745
2746 return ret;
2747}
2748
2749/**
2750 * omap_hwmod_read_hardreset - read the HW reset line state of submodules
2751 * contained in the hwmod module
2752 * @oh: struct omap_hwmod *
2753 * @name: name of the reset line to look up and read
2754 *
2755 * Return the current state of the hwmod @oh's reset line named @name:
2756 * returns -EINVAL upon parameter error or if this operation
2757 * is unsupported on the current OMAP; otherwise, passes along the return
2758 * value from _read_hardreset().
2759 */
2760int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
2761{
2762 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002763 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002764
2765 if (!oh)
2766 return -EINVAL;
2767
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002768 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002769 ret = _read_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002770 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06002771
2772 return ret;
2773}
2774
2775
2776/**
Paul Walmsley43b40992010-02-22 22:09:34 -07002777 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
2778 * @classname: struct omap_hwmod_class name to search for
2779 * @fn: callback function pointer to call for each hwmod in class @classname
2780 * @user: arbitrary context data to pass to the callback function
2781 *
Benoit Coussonce35b242010-12-21 21:31:28 -07002782 * For each omap_hwmod of class @classname, call @fn.
2783 * If the callback function returns something other than
Paul Walmsley43b40992010-02-22 22:09:34 -07002784 * zero, the iterator is terminated, and the callback function's return
2785 * value is passed back to the caller. Returns 0 upon success, -EINVAL
2786 * if @classname or @fn are NULL, or passes back the error code from @fn.
2787 */
2788int omap_hwmod_for_each_by_class(const char *classname,
2789 int (*fn)(struct omap_hwmod *oh,
2790 void *user),
2791 void *user)
2792{
2793 struct omap_hwmod *temp_oh;
2794 int ret = 0;
2795
2796 if (!classname || !fn)
2797 return -EINVAL;
2798
2799 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
2800 __func__, classname);
2801
Paul Walmsley43b40992010-02-22 22:09:34 -07002802 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
2803 if (!strcmp(temp_oh->class->name, classname)) {
2804 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
2805 __func__, temp_oh->name);
2806 ret = (*fn)(temp_oh, user);
2807 if (ret)
2808 break;
2809 }
2810 }
2811
Paul Walmsley43b40992010-02-22 22:09:34 -07002812 if (ret)
2813 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
2814 __func__, ret);
2815
2816 return ret;
2817}
2818
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002819/**
2820 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
2821 * @oh: struct omap_hwmod *
2822 * @state: state that _setup() should leave the hwmod in
2823 *
Paul Walmsley550c8092011-02-28 11:58:14 -07002824 * Sets the hwmod state that @oh will enter at the end of _setup()
Paul Walmsley64813c32012-04-18 19:10:03 -06002825 * (called by omap_hwmod_setup_*()). See also the documentation
2826 * for _setup_postsetup(), above. Returns 0 upon success or
2827 * -EINVAL if there is a problem with the arguments or if the hwmod is
2828 * in the wrong state.
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002829 */
2830int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
2831{
2832 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002833 unsigned long flags;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002834
2835 if (!oh)
2836 return -EINVAL;
2837
2838 if (state != _HWMOD_STATE_DISABLED &&
2839 state != _HWMOD_STATE_ENABLED &&
2840 state != _HWMOD_STATE_IDLE)
2841 return -EINVAL;
2842
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002843 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002844
2845 if (oh->_state != _HWMOD_STATE_REGISTERED) {
2846 ret = -EINVAL;
2847 goto ohsps_unlock;
2848 }
2849
2850 oh->_postsetup_state = state;
2851 ret = 0;
2852
2853ohsps_unlock:
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002854 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002855
2856 return ret;
2857}
Kevin Hilmanc80705a2010-12-21 21:31:55 -07002858
2859/**
2860 * omap_hwmod_get_context_loss_count - get lost context count
2861 * @oh: struct omap_hwmod *
2862 *
2863 * Query the powerdomain of of @oh to get the context loss
2864 * count for this device.
2865 *
2866 * Returns the context loss count of the powerdomain assocated with @oh
2867 * upon success, or zero if no powerdomain exists for @oh.
2868 */
Tomi Valkeinenfc013872011-06-09 16:56:23 +03002869int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
Kevin Hilmanc80705a2010-12-21 21:31:55 -07002870{
2871 struct powerdomain *pwrdm;
2872 int ret = 0;
2873
2874 pwrdm = omap_hwmod_get_pwrdm(oh);
2875 if (pwrdm)
2876 ret = pwrdm_get_context_loss_count(pwrdm);
2877
2878 return ret;
2879}
Paul Walmsley43b01642011-03-10 03:50:07 -07002880
2881/**
2882 * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
2883 * @oh: struct omap_hwmod *
2884 *
2885 * Prevent the hwmod @oh from being reset during the setup process.
2886 * Intended for use by board-*.c files on boards with devices that
2887 * cannot tolerate being reset. Must be called before the hwmod has
2888 * been set up. Returns 0 upon success or negative error code upon
2889 * failure.
2890 */
2891int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
2892{
2893 if (!oh)
2894 return -EINVAL;
2895
2896 if (oh->_state != _HWMOD_STATE_REGISTERED) {
2897 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
2898 oh->name);
2899 return -EINVAL;
2900 }
2901
2902 oh->flags |= HWMOD_INIT_NO_RESET;
2903
2904 return 0;
2905}
Tero Kristoabc2d542011-12-16 14:36:59 -07002906
2907/**
2908 * omap_hwmod_pad_route_irq - route an I/O pad wakeup to a particular MPU IRQ
2909 * @oh: struct omap_hwmod * containing hwmod mux entries
2910 * @pad_idx: array index in oh->mux of the hwmod mux entry to route wakeup
2911 * @irq_idx: the hwmod mpu_irqs array index of the IRQ to trigger on wakeup
2912 *
2913 * When an I/O pad wakeup arrives for the dynamic or wakeup hwmod mux
2914 * entry number @pad_idx for the hwmod @oh, trigger the interrupt
2915 * service routine for the hwmod's mpu_irqs array index @irq_idx. If
2916 * this function is not called for a given pad_idx, then the ISR
2917 * associated with @oh's first MPU IRQ will be triggered when an I/O
2918 * pad wakeup occurs on that pad. Note that @pad_idx is the index of
2919 * the _dynamic or wakeup_ entry: if there are other entries not
2920 * marked with OMAP_DEVICE_PAD_WAKEUP or OMAP_DEVICE_PAD_REMUX, these
2921 * entries are NOT COUNTED in the dynamic pad index. This function
2922 * must be called separately for each pad that requires its interrupt
2923 * to be re-routed this way. Returns -EINVAL if there is an argument
2924 * problem or if @oh does not have hwmod mux entries or MPU IRQs;
2925 * returns -ENOMEM if memory cannot be allocated; or 0 upon success.
2926 *
2927 * XXX This function interface is fragile. Rather than using array
2928 * indexes, which are subject to unpredictable change, it should be
2929 * using hwmod IRQ names, and some other stable key for the hwmod mux
2930 * pad records.
2931 */
2932int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx)
2933{
2934 int nr_irqs;
2935
2936 might_sleep();
2937
2938 if (!oh || !oh->mux || !oh->mpu_irqs || pad_idx < 0 ||
2939 pad_idx >= oh->mux->nr_pads_dynamic)
2940 return -EINVAL;
2941
2942 /* Check the number of available mpu_irqs */
2943 for (nr_irqs = 0; oh->mpu_irqs[nr_irqs].irq >= 0; nr_irqs++)
2944 ;
2945
2946 if (irq_idx >= nr_irqs)
2947 return -EINVAL;
2948
2949 if (!oh->mux->irqs) {
2950 /* XXX What frees this? */
2951 oh->mux->irqs = kzalloc(sizeof(int) * oh->mux->nr_pads_dynamic,
2952 GFP_KERNEL);
2953 if (!oh->mux->irqs)
2954 return -ENOMEM;
2955 }
2956 oh->mux->irqs[pad_idx] = irq_idx;
2957
2958 return 0;
2959}