blob: e5cafed8ef2584dc20a86bbbed5821e6063384c0 [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>
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700133#include <linux/clk-provider.h>
Paul Walmsley63c85232009-09-03 20:14:03 +0300134#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 Walmsley2221b5c2012-04-19 04:04:30 -0600140#include <linux/bootmem.h>
Paul Walmsley63c85232009-09-03 20:14:03 +0300141
Paul Walmsleyfa200222013-01-26 00:48:56 -0700142#include <asm/system_misc.h>
143
Paul Walmsleya135eaa2012-09-27 10:33:34 -0600144#include "clock.h"
Tony Lindgren2a296c82012-10-02 17:41:35 -0700145#include "omap_hwmod.h"
Paul Walmsley63c85232009-09-03 20:14:03 +0300146
Tony Lindgrendbc04162012-08-31 10:59:07 -0700147#include "soc.h"
148#include "common.h"
149#include "clockdomain.h"
150#include "powerdomain.h"
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -0600151#include "cm2xxx.h"
152#include "cm3xxx.h"
Benoit Coussond0f06312011-07-10 05:56:30 -0600153#include "cminst44xx.h"
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600154#include "cm33xx.h"
Paul Walmsleyb13159a2012-10-29 20:57:44 -0600155#include "prm.h"
Paul Walmsley139563a2012-10-21 01:01:10 -0600156#include "prm3xxx.h"
Paul Walmsleyd198b512010-12-21 15:30:54 -0700157#include "prm44xx.h"
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600158#include "prm33xx.h"
Benoit Coussoneaac3292011-07-10 05:56:31 -0600159#include "prminst44xx.h"
Tony Lindgren8d9af882010-12-22 18:42:35 -0800160#include "mux.h"
Vishwanath BS51658822012-06-22 08:40:04 -0600161#include "pm.h"
Paul Walmsley63c85232009-09-03 20:14:03 +0300162
Paul Walmsley63c85232009-09-03 20:14:03 +0300163/* Name of the OMAP hwmod for the MPU */
Benoit Cousson5c2c0292010-05-20 12:31:10 -0600164#define MPU_INITIATOR_NAME "mpu"
Paul Walmsley63c85232009-09-03 20:14:03 +0300165
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600166/*
167 * Number of struct omap_hwmod_link records per struct
168 * omap_hwmod_ocp_if record (master->slave and slave->master)
169 */
170#define LINKS_PER_OCP_IF 2
171
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600172/**
173 * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
174 * @enable_module: function to enable a module (via MODULEMODE)
175 * @disable_module: function to disable a module (via MODULEMODE)
176 *
177 * XXX Eventually this functionality will be hidden inside the PRM/CM
178 * device drivers. Until then, this should avoid huge blocks of cpu_is_*()
179 * conditionals in this code.
180 */
181struct omap_hwmod_soc_ops {
182 void (*enable_module)(struct omap_hwmod *oh);
183 int (*disable_module)(struct omap_hwmod *oh);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -0600184 int (*wait_target_ready)(struct omap_hwmod *oh);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -0600185 int (*assert_hardreset)(struct omap_hwmod *oh,
186 struct omap_hwmod_rst_info *ohri);
187 int (*deassert_hardreset)(struct omap_hwmod *oh,
188 struct omap_hwmod_rst_info *ohri);
189 int (*is_hardreset_asserted)(struct omap_hwmod *oh,
190 struct omap_hwmod_rst_info *ohri);
Kevin Hilman0a179ea2012-06-18 12:12:25 -0600191 int (*init_clkdm)(struct omap_hwmod *oh);
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -0700192 void (*update_context_lost)(struct omap_hwmod *oh);
193 int (*get_context_lost)(struct omap_hwmod *oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600194};
195
196/* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
197static struct omap_hwmod_soc_ops soc_ops;
198
Paul Walmsley63c85232009-09-03 20:14:03 +0300199/* omap_hwmod_list contains all registered struct omap_hwmods */
200static LIST_HEAD(omap_hwmod_list);
201
Paul Walmsley63c85232009-09-03 20:14:03 +0300202/* mpu_oh: used to add/remove MPU initiator from sleepdep list */
203static struct omap_hwmod *mpu_oh;
204
Vishwanath BS51658822012-06-22 08:40:04 -0600205/* io_chain_lock: used to serialize reconfigurations of the I/O chain */
206static DEFINE_SPINLOCK(io_chain_lock);
207
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600208/*
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600209 * linkspace: ptr to a buffer that struct omap_hwmod_link records are
210 * allocated from - used to reduce the number of small memory
211 * allocations, which has a significant impact on performance
212 */
213static struct omap_hwmod_link *linkspace;
214
215/*
216 * free_ls, max_ls: array indexes into linkspace; representing the
217 * next free struct omap_hwmod_link index, and the maximum number of
218 * struct omap_hwmod_link records allocated (respectively)
219 */
220static unsigned short free_ls, max_ls, ls_supp;
Paul Walmsley63c85232009-09-03 20:14:03 +0300221
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600222/* inited: set to true once the hwmod code is initialized */
223static bool inited;
224
Paul Walmsley63c85232009-09-03 20:14:03 +0300225/* Private functions */
226
227/**
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600228 * _fetch_next_ocp_if - return the next OCP interface in a list
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600229 * @p: ptr to a ptr to the list_head inside the ocp_if to return
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600230 * @i: pointer to the index of the element pointed to by @p in the list
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600231 *
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600232 * Return a pointer to the struct omap_hwmod_ocp_if record
233 * containing the struct list_head pointed to by @p, and increment
234 * @p such that a future call to this routine will return the next
235 * record.
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600236 */
237static struct omap_hwmod_ocp_if *_fetch_next_ocp_if(struct list_head **p,
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600238 int *i)
239{
240 struct omap_hwmod_ocp_if *oi;
241
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600242 oi = list_entry(*p, struct omap_hwmod_link, node)->ocp_if;
243 *p = (*p)->next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600244
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600245 *i = *i + 1;
246
247 return oi;
248}
249
250/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300251 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
252 * @oh: struct omap_hwmod *
253 *
254 * Load the current value of the hwmod OCP_SYSCONFIG register into the
255 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
256 * OCP_SYSCONFIG register or 0 upon success.
257 */
258static int _update_sysc_cache(struct omap_hwmod *oh)
259{
Paul Walmsley43b40992010-02-22 22:09:34 -0700260 if (!oh->class->sysc) {
261 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 +0300262 return -EINVAL;
263 }
264
265 /* XXX ensure module interface clock is up */
266
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -0700267 oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +0300268
Paul Walmsley43b40992010-02-22 22:09:34 -0700269 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
Thara Gopinath883edfd2010-01-19 17:30:51 -0700270 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
Paul Walmsley63c85232009-09-03 20:14:03 +0300271
272 return 0;
273}
274
275/**
276 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
277 * @v: OCP_SYSCONFIG value to write
278 * @oh: struct omap_hwmod *
279 *
Paul Walmsley43b40992010-02-22 22:09:34 -0700280 * Write @v into the module class' OCP_SYSCONFIG register, if it has
281 * one. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +0300282 */
283static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
284{
Paul Walmsley43b40992010-02-22 22:09:34 -0700285 if (!oh->class->sysc) {
286 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 +0300287 return;
288 }
289
290 /* XXX ensure module interface clock is up */
291
Rajendra Nayak233cbe52010-12-14 12:42:36 -0700292 /* Module might have lost context, always update cache and register */
293 oh->_sysc_cache = v;
294 omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +0300295}
296
297/**
298 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
299 * @oh: struct omap_hwmod *
300 * @standbymode: MIDLEMODE field bits
301 * @v: pointer to register contents to modify
302 *
303 * Update the master standby mode bits in @v to be @standbymode for
304 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
305 * upon error or 0 upon success.
306 */
307static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
308 u32 *v)
309{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700310 u32 mstandby_mask;
311 u8 mstandby_shift;
312
Paul Walmsley43b40992010-02-22 22:09:34 -0700313 if (!oh->class->sysc ||
314 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300315 return -EINVAL;
316
Paul Walmsley43b40992010-02-22 22:09:34 -0700317 if (!oh->class->sysc->sysc_fields) {
318 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700319 return -EINVAL;
320 }
321
Paul Walmsley43b40992010-02-22 22:09:34 -0700322 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700323 mstandby_mask = (0x3 << mstandby_shift);
324
325 *v &= ~mstandby_mask;
326 *v |= __ffs(standbymode) << mstandby_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300327
328 return 0;
329}
330
331/**
332 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
333 * @oh: struct omap_hwmod *
334 * @idlemode: SIDLEMODE field bits
335 * @v: pointer to register contents to modify
336 *
337 * Update the slave idle mode bits in @v to be @idlemode for the @oh
338 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
339 * or 0 upon success.
340 */
341static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
342{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700343 u32 sidle_mask;
344 u8 sidle_shift;
345
Paul Walmsley43b40992010-02-22 22:09:34 -0700346 if (!oh->class->sysc ||
347 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300348 return -EINVAL;
349
Paul Walmsley43b40992010-02-22 22:09:34 -0700350 if (!oh->class->sysc->sysc_fields) {
351 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700352 return -EINVAL;
353 }
354
Paul Walmsley43b40992010-02-22 22:09:34 -0700355 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700356 sidle_mask = (0x3 << sidle_shift);
357
358 *v &= ~sidle_mask;
359 *v |= __ffs(idlemode) << sidle_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300360
361 return 0;
362}
363
364/**
365 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
366 * @oh: struct omap_hwmod *
367 * @clockact: CLOCKACTIVITY field bits
368 * @v: pointer to register contents to modify
369 *
370 * Update the clockactivity mode bits in @v to be @clockact for the
371 * @oh hwmod. Used for additional powersaving on some modules. Does
372 * not write to the hardware. Returns -EINVAL upon error or 0 upon
373 * success.
374 */
375static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
376{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700377 u32 clkact_mask;
378 u8 clkact_shift;
379
Paul Walmsley43b40992010-02-22 22:09:34 -0700380 if (!oh->class->sysc ||
381 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
Paul Walmsley63c85232009-09-03 20:14:03 +0300382 return -EINVAL;
383
Paul Walmsley43b40992010-02-22 22:09:34 -0700384 if (!oh->class->sysc->sysc_fields) {
385 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700386 return -EINVAL;
387 }
388
Paul Walmsley43b40992010-02-22 22:09:34 -0700389 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700390 clkact_mask = (0x3 << clkact_shift);
391
392 *v &= ~clkact_mask;
393 *v |= clockact << clkact_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300394
395 return 0;
396}
397
398/**
399 * _set_softreset: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
400 * @oh: struct omap_hwmod *
401 * @v: pointer to register contents to modify
402 *
403 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
404 * error or 0 upon success.
405 */
406static int _set_softreset(struct omap_hwmod *oh, u32 *v)
407{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700408 u32 softrst_mask;
409
Paul Walmsley43b40992010-02-22 22:09:34 -0700410 if (!oh->class->sysc ||
411 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley63c85232009-09-03 20:14:03 +0300412 return -EINVAL;
413
Paul Walmsley43b40992010-02-22 22:09:34 -0700414 if (!oh->class->sysc->sysc_fields) {
415 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700416 return -EINVAL;
417 }
418
Paul Walmsley43b40992010-02-22 22:09:34 -0700419 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700420
421 *v |= softrst_mask;
Paul Walmsley63c85232009-09-03 20:14:03 +0300422
423 return 0;
424}
425
426/**
Tero Kristo613ad0e2012-10-29 22:02:13 -0600427 * _wait_softreset_complete - wait for an OCP softreset to complete
428 * @oh: struct omap_hwmod * to wait on
429 *
430 * Wait until the IP block represented by @oh reports that its OCP
431 * softreset is complete. This can be triggered by software (see
432 * _ocp_softreset()) or by hardware upon returning from off-mode (one
433 * example is HSMMC). Waits for up to MAX_MODULE_SOFTRESET_WAIT
434 * microseconds. Returns the number of microseconds waited.
435 */
436static int _wait_softreset_complete(struct omap_hwmod *oh)
437{
438 struct omap_hwmod_class_sysconfig *sysc;
439 u32 softrst_mask;
440 int c = 0;
441
442 sysc = oh->class->sysc;
443
444 if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
445 omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs)
446 & SYSS_RESETDONE_MASK),
447 MAX_MODULE_SOFTRESET_WAIT, c);
448 else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
449 softrst_mask = (0x1 << sysc->sysc_fields->srst_shift);
450 omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs)
451 & softrst_mask),
452 MAX_MODULE_SOFTRESET_WAIT, c);
453 }
454
455 return c;
456}
457
458/**
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -0600459 * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
460 * @oh: struct omap_hwmod *
461 *
462 * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
463 * of some modules. When the DMA must perform read/write accesses, the
464 * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
465 * for power management, software must set the DMADISABLE bit back to 1.
466 *
467 * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon
468 * error or 0 upon success.
469 */
470static int _set_dmadisable(struct omap_hwmod *oh)
471{
472 u32 v;
473 u32 dmadisable_mask;
474
475 if (!oh->class->sysc ||
476 !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
477 return -EINVAL;
478
479 if (!oh->class->sysc->sysc_fields) {
480 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
481 return -EINVAL;
482 }
483
484 /* clocks must be on for this operation */
485 if (oh->_state != _HWMOD_STATE_ENABLED) {
486 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
487 return -EINVAL;
488 }
489
490 pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
491
492 v = oh->_sysc_cache;
493 dmadisable_mask =
494 (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
495 v |= dmadisable_mask;
496 _write_sysconfig(v, oh);
497
498 return 0;
499}
500
501/**
Paul Walmsley726072e2009-12-08 16:34:15 -0700502 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
503 * @oh: struct omap_hwmod *
504 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
505 * @v: pointer to register contents to modify
506 *
507 * Update the module autoidle bit in @v to be @autoidle for the @oh
508 * hwmod. The autoidle bit controls whether the module can gate
509 * internal clocks automatically when it isn't doing anything; the
510 * exact function of this bit varies on a per-module basis. This
511 * function does not write to the hardware. Returns -EINVAL upon
512 * error or 0 upon success.
513 */
514static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
515 u32 *v)
516{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700517 u32 autoidle_mask;
518 u8 autoidle_shift;
519
Paul Walmsley43b40992010-02-22 22:09:34 -0700520 if (!oh->class->sysc ||
521 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
Paul Walmsley726072e2009-12-08 16:34:15 -0700522 return -EINVAL;
523
Paul Walmsley43b40992010-02-22 22:09:34 -0700524 if (!oh->class->sysc->sysc_fields) {
525 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700526 return -EINVAL;
527 }
528
Paul Walmsley43b40992010-02-22 22:09:34 -0700529 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
Tarun Kanti DebBarma8985b632011-03-03 14:22:46 -0700530 autoidle_mask = (0x1 << autoidle_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700531
532 *v &= ~autoidle_mask;
533 *v |= autoidle << autoidle_shift;
Paul Walmsley726072e2009-12-08 16:34:15 -0700534
535 return 0;
536}
537
538/**
Govindraj Receec002011-12-16 14:36:58 -0700539 * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux
540 * @oh: struct omap_hwmod *
541 * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable
542 *
543 * Set or clear the I/O pad wakeup flag in the mux entries for the
544 * hwmod @oh. This function changes the @oh->mux->pads_dynamic array
545 * in memory. If the hwmod is currently idled, and the new idle
546 * values don't match the previous ones, this function will also
547 * update the SCM PADCTRL registers. Otherwise, if the hwmod is not
548 * currently idled, this function won't touch the hardware: the new
549 * mux settings are written to the SCM PADCTRL registers when the
550 * hwmod is idled. No return value.
551 */
552static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake)
553{
554 struct omap_device_pad *pad;
555 bool change = false;
556 u16 prev_idle;
557 int j;
558
559 if (!oh->mux || !oh->mux->enabled)
560 return;
561
562 for (j = 0; j < oh->mux->nr_pads_dynamic; j++) {
563 pad = oh->mux->pads_dynamic[j];
564
565 if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP))
566 continue;
567
568 prev_idle = pad->idle;
569
570 if (set_wake)
571 pad->idle |= OMAP_WAKEUP_EN;
572 else
573 pad->idle &= ~OMAP_WAKEUP_EN;
574
575 if (prev_idle != pad->idle)
576 change = true;
577 }
578
579 if (change && oh->_state == _HWMOD_STATE_IDLE)
580 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
581}
582
583/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300584 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
585 * @oh: struct omap_hwmod *
586 *
587 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
588 * upon error or 0 upon success.
589 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700590static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300591{
Paul Walmsley43b40992010-02-22 22:09:34 -0700592 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700593 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200594 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
595 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300596 return -EINVAL;
597
Paul Walmsley43b40992010-02-22 22:09:34 -0700598 if (!oh->class->sysc->sysc_fields) {
599 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700600 return -EINVAL;
601 }
602
Benoit Cousson1fe74112011-07-01 22:54:03 +0200603 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
604 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300605
Benoit Cousson86009eb2010-12-21 21:31:28 -0700606 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
607 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200608 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
609 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700610
Paul Walmsley63c85232009-09-03 20:14:03 +0300611 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
612
Paul Walmsley63c85232009-09-03 20:14:03 +0300613 return 0;
614}
615
616/**
617 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
618 * @oh: struct omap_hwmod *
619 *
620 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
621 * upon error or 0 upon success.
622 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700623static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300624{
Paul Walmsley43b40992010-02-22 22:09:34 -0700625 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700626 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200627 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
628 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300629 return -EINVAL;
630
Paul Walmsley43b40992010-02-22 22:09:34 -0700631 if (!oh->class->sysc->sysc_fields) {
632 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700633 return -EINVAL;
634 }
635
Benoit Cousson1fe74112011-07-01 22:54:03 +0200636 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
637 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
Paul Walmsley63c85232009-09-03 20:14:03 +0300638
Benoit Cousson86009eb2010-12-21 21:31:28 -0700639 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
640 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200641 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
Djamil Elaidi561038f2012-06-17 11:57:51 -0600642 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700643
Paul Walmsley63c85232009-09-03 20:14:03 +0300644 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
645
Paul Walmsley63c85232009-09-03 20:14:03 +0300646 return 0;
647}
648
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700649static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
650{
Rajendra Nayakc4a1ea22012-04-27 16:32:53 +0530651 struct clk_hw_omap *clk;
652
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700653 if (oh->clkdm) {
654 return oh->clkdm;
655 } else if (oh->_clk) {
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700656 clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
657 return clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700658 }
659 return NULL;
660}
661
Paul Walmsley63c85232009-09-03 20:14:03 +0300662/**
663 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
664 * @oh: struct omap_hwmod *
665 *
666 * Prevent the hardware module @oh from entering idle while the
667 * hardare module initiator @init_oh is active. Useful when a module
668 * will be accessed by a particular initiator (e.g., if a module will
669 * be accessed by the IVA, there should be a sleepdep between the IVA
670 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700671 * mode. If the clockdomain is marked as not needing autodeps, return
672 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
673 * passes along clkdm_add_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300674 */
675static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
676{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700677 struct clockdomain *clkdm, *init_clkdm;
678
679 clkdm = _get_clkdm(oh);
680 init_clkdm = _get_clkdm(init_oh);
681
682 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300683 return -EINVAL;
684
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700685 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700686 return 0;
687
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700688 return clkdm_add_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300689}
690
691/**
692 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
693 * @oh: struct omap_hwmod *
694 *
695 * Allow the hardware module @oh to enter idle while the hardare
696 * module initiator @init_oh is active. Useful when a module will not
697 * be accessed by a particular initiator (e.g., if a module will not
698 * be accessed by the IVA, there should be no sleepdep between the IVA
699 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700700 * mode. If the clockdomain is marked as not needing autodeps, return
701 * 0 without doing anything. Returns -EINVAL upon error or passes
702 * along clkdm_del_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300703 */
704static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
705{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700706 struct clockdomain *clkdm, *init_clkdm;
707
708 clkdm = _get_clkdm(oh);
709 init_clkdm = _get_clkdm(init_oh);
710
711 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300712 return -EINVAL;
713
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700714 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700715 return 0;
716
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700717 return clkdm_del_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300718}
719
720/**
721 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
722 * @oh: struct omap_hwmod *
723 *
724 * Called from _init_clocks(). Populates the @oh _clk (main
725 * functional clock pointer) if a main_clk is present. Returns 0 on
726 * success or -EINVAL on error.
727 */
728static int _init_main_clk(struct omap_hwmod *oh)
729{
Paul Walmsley63c85232009-09-03 20:14:03 +0300730 int ret = 0;
731
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700732 if (!oh->main_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300733 return 0;
734
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600735 oh->_clk = clk_get(NULL, oh->main_clk);
736 if (IS_ERR(oh->_clk)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600737 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
738 oh->name, oh->main_clk);
Benoit Cousson63403382010-05-20 12:31:10 -0600739 return -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600740 }
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600741 /*
742 * HACK: This needs a re-visit once clk_prepare() is implemented
743 * to do something meaningful. Today its just a no-op.
744 * If clk_prepare() is used at some point to do things like
745 * voltage scaling etc, then this would have to be moved to
746 * some point where subsystems like i2c and pmic become
747 * available.
748 */
749 clk_prepare(oh->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300750
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700751 if (!_get_clkdm(oh))
Paul Walmsley3bb05db2012-09-23 17:28:18 -0600752 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600753 oh->name, oh->main_clk);
Kevin Hilman81d7c6f2009-12-08 16:34:24 -0700754
Paul Walmsley63c85232009-09-03 20:14:03 +0300755 return ret;
756}
757
758/**
Paul Walmsley887adea2010-07-26 16:34:33 -0600759 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
Paul Walmsley63c85232009-09-03 20:14:03 +0300760 * @oh: struct omap_hwmod *
761 *
762 * Called from _init_clocks(). Populates the @oh OCP slave interface
763 * clock pointers. Returns 0 on success or -EINVAL on error.
764 */
765static int _init_interface_clks(struct omap_hwmod *oh)
766{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600767 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600768 struct list_head *p;
Paul Walmsley63c85232009-09-03 20:14:03 +0300769 struct clk *c;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600770 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300771 int ret = 0;
772
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600773 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600774
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600775 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600776 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700777 if (!os->clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300778 continue;
779
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600780 c = clk_get(NULL, os->clk);
781 if (IS_ERR(c)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600782 pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
783 oh->name, os->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300784 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600785 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300786 os->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600787 /*
788 * HACK: This needs a re-visit once clk_prepare() is implemented
789 * to do something meaningful. Today its just a no-op.
790 * If clk_prepare() is used at some point to do things like
791 * voltage scaling etc, then this would have to be moved to
792 * some point where subsystems like i2c and pmic become
793 * available.
794 */
795 clk_prepare(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300796 }
797
798 return ret;
799}
800
801/**
802 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
803 * @oh: struct omap_hwmod *
804 *
805 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
806 * clock pointers. Returns 0 on success or -EINVAL on error.
807 */
808static int _init_opt_clks(struct omap_hwmod *oh)
809{
810 struct omap_hwmod_opt_clk *oc;
811 struct clk *c;
812 int i;
813 int ret = 0;
814
815 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600816 c = clk_get(NULL, oc->clk);
817 if (IS_ERR(c)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600818 pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
819 oh->name, oc->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300820 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600821 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300822 oc->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600823 /*
824 * HACK: This needs a re-visit once clk_prepare() is implemented
825 * to do something meaningful. Today its just a no-op.
826 * If clk_prepare() is used at some point to do things like
827 * voltage scaling etc, then this would have to be moved to
828 * some point where subsystems like i2c and pmic become
829 * available.
830 */
831 clk_prepare(oc->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300832 }
833
834 return ret;
835}
836
837/**
838 * _enable_clocks - enable hwmod main clock and interface clocks
839 * @oh: struct omap_hwmod *
840 *
841 * Enables all clocks necessary for register reads and writes to succeed
842 * on the hwmod @oh. Returns 0.
843 */
844static int _enable_clocks(struct omap_hwmod *oh)
845{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600846 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600847 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600848 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300849
850 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
851
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600852 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300853 clk_enable(oh->_clk);
854
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600855 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600856
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600857 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600858 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300859
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600860 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
861 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300862 }
863
864 /* The opt clocks are controlled by the device driver. */
865
866 return 0;
867}
868
869/**
870 * _disable_clocks - disable hwmod main clock and interface clocks
871 * @oh: struct omap_hwmod *
872 *
873 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
874 */
875static int _disable_clocks(struct omap_hwmod *oh)
876{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600877 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600878 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600879 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300880
881 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
882
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600883 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300884 clk_disable(oh->_clk);
885
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600886 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600887
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600888 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600889 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300890
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600891 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
892 clk_disable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300893 }
894
895 /* The opt clocks are controlled by the device driver. */
896
897 return 0;
898}
899
Benoit Cousson96835af2010-09-21 18:57:58 +0200900static void _enable_optional_clocks(struct omap_hwmod *oh)
901{
902 struct omap_hwmod_opt_clk *oc;
903 int i;
904
905 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
906
907 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
908 if (oc->_clk) {
909 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600910 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200911 clk_enable(oc->_clk);
912 }
913}
914
915static void _disable_optional_clocks(struct omap_hwmod *oh)
916{
917 struct omap_hwmod_opt_clk *oc;
918 int i;
919
920 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
921
922 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
923 if (oc->_clk) {
924 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600925 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200926 clk_disable(oc->_clk);
927 }
928}
929
Paul Walmsley63c85232009-09-03 20:14:03 +0300930/**
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600931 * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
Benoit Cousson45c38252011-07-10 05:56:33 -0600932 * @oh: struct omap_hwmod *
933 *
934 * Enables the PRCM module mode related to the hwmod @oh.
935 * No return value.
936 */
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600937static void _omap4_enable_module(struct omap_hwmod *oh)
Benoit Cousson45c38252011-07-10 05:56:33 -0600938{
Benoit Cousson45c38252011-07-10 05:56:33 -0600939 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
940 return;
941
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600942 pr_debug("omap_hwmod: %s: %s: %d\n",
943 oh->name, __func__, oh->prcm.omap4.modulemode);
Benoit Cousson45c38252011-07-10 05:56:33 -0600944
945 omap4_cminst_module_enable(oh->prcm.omap4.modulemode,
946 oh->clkdm->prcm_partition,
947 oh->clkdm->cm_inst,
948 oh->clkdm->clkdm_offs,
949 oh->prcm.omap4.clkctrl_offs);
950}
951
952/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600953 * _am33xx_enable_module - enable CLKCTRL modulemode on AM33XX
954 * @oh: struct omap_hwmod *
955 *
956 * Enables the PRCM module mode related to the hwmod @oh.
957 * No return value.
958 */
959static void _am33xx_enable_module(struct omap_hwmod *oh)
960{
961 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
962 return;
963
964 pr_debug("omap_hwmod: %s: %s: %d\n",
965 oh->name, __func__, oh->prcm.omap4.modulemode);
966
967 am33xx_cm_module_enable(oh->prcm.omap4.modulemode, oh->clkdm->cm_inst,
968 oh->clkdm->clkdm_offs,
969 oh->prcm.omap4.clkctrl_offs);
970}
971
972/**
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800973 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
974 * @oh: struct omap_hwmod *
975 *
976 * Wait for a module @oh to enter slave idle. Returns 0 if the module
977 * does not have an IDLEST bit or if the module successfully enters
978 * slave idle; otherwise, pass along the return value of the
979 * appropriate *_cm*_wait_module_idle() function.
980 */
981static int _omap4_wait_target_disable(struct omap_hwmod *oh)
982{
Paul Walmsley2b026d12012-09-23 17:28:18 -0600983 if (!oh)
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800984 return -EINVAL;
985
Paul Walmsley2b026d12012-09-23 17:28:18 -0600986 if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800987 return 0;
988
989 if (oh->flags & HWMOD_NO_IDLEST)
990 return 0;
991
992 return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition,
993 oh->clkdm->cm_inst,
994 oh->clkdm->clkdm_offs,
995 oh->prcm.omap4.clkctrl_offs);
996}
997
998/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600999 * _am33xx_wait_target_disable - wait for a module to be disabled on AM33XX
1000 * @oh: struct omap_hwmod *
1001 *
1002 * Wait for a module @oh to enter slave idle. Returns 0 if the module
1003 * does not have an IDLEST bit or if the module successfully enters
1004 * slave idle; otherwise, pass along the return value of the
1005 * appropriate *_cm*_wait_module_idle() function.
1006 */
1007static int _am33xx_wait_target_disable(struct omap_hwmod *oh)
1008{
1009 if (!oh)
1010 return -EINVAL;
1011
1012 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1013 return 0;
1014
1015 if (oh->flags & HWMOD_NO_IDLEST)
1016 return 0;
1017
1018 return am33xx_cm_wait_module_idle(oh->clkdm->cm_inst,
1019 oh->clkdm->clkdm_offs,
1020 oh->prcm.omap4.clkctrl_offs);
1021}
1022
1023/**
Paul Walmsley212738a2011-07-09 19:14:06 -06001024 * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
1025 * @oh: struct omap_hwmod *oh
1026 *
1027 * Count and return the number of MPU IRQs associated with the hwmod
1028 * @oh. Used to allocate struct resource data. Returns 0 if @oh is
1029 * NULL.
1030 */
1031static int _count_mpu_irqs(struct omap_hwmod *oh)
1032{
1033 struct omap_hwmod_irq_info *ohii;
1034 int i = 0;
1035
1036 if (!oh || !oh->mpu_irqs)
1037 return 0;
1038
1039 do {
1040 ohii = &oh->mpu_irqs[i++];
1041 } while (ohii->irq != -1);
1042
sricharancc1b0762011-11-23 14:35:07 -08001043 return i-1;
Paul Walmsley212738a2011-07-09 19:14:06 -06001044}
1045
1046/**
Paul Walmsleybc614952011-07-09 19:14:07 -06001047 * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
1048 * @oh: struct omap_hwmod *oh
1049 *
1050 * Count and return the number of SDMA request lines associated with
1051 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1052 * if @oh is NULL.
1053 */
1054static int _count_sdma_reqs(struct omap_hwmod *oh)
1055{
1056 struct omap_hwmod_dma_info *ohdi;
1057 int i = 0;
1058
1059 if (!oh || !oh->sdma_reqs)
1060 return 0;
1061
1062 do {
1063 ohdi = &oh->sdma_reqs[i++];
1064 } while (ohdi->dma_req != -1);
1065
sricharancc1b0762011-11-23 14:35:07 -08001066 return i-1;
Paul Walmsleybc614952011-07-09 19:14:07 -06001067}
1068
1069/**
Paul Walmsley78183f32011-07-09 19:14:05 -06001070 * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
1071 * @oh: struct omap_hwmod *oh
1072 *
1073 * Count and return the number of address space ranges associated with
1074 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1075 * if @oh is NULL.
1076 */
1077static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
1078{
1079 struct omap_hwmod_addr_space *mem;
1080 int i = 0;
1081
1082 if (!os || !os->addr)
1083 return 0;
1084
1085 do {
1086 mem = &os->addr[i++];
1087 } while (mem->pa_start != mem->pa_end);
1088
sricharancc1b0762011-11-23 14:35:07 -08001089 return i-1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001090}
1091
1092/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001093 * _get_mpu_irq_by_name - fetch MPU interrupt line number by name
1094 * @oh: struct omap_hwmod * to operate on
1095 * @name: pointer to the name of the MPU interrupt number to fetch (optional)
1096 * @irq: pointer to an unsigned int to store the MPU IRQ number to
1097 *
1098 * Retrieve a MPU hardware IRQ line number named by @name associated
1099 * with the IP block pointed to by @oh. The IRQ number will be filled
1100 * into the address pointed to by @dma. When @name is non-null, the
1101 * IRQ line number associated with the named entry will be returned.
1102 * If @name is null, the first matching entry will be returned. Data
1103 * order is not meaningful in hwmod data, so callers are strongly
1104 * encouraged to use a non-null @name whenever possible to avoid
1105 * unpredictable effects if hwmod data is later added that causes data
1106 * ordering to change. Returns 0 upon success or a negative error
1107 * code upon error.
1108 */
1109static int _get_mpu_irq_by_name(struct omap_hwmod *oh, const char *name,
1110 unsigned int *irq)
1111{
1112 int i;
1113 bool found = false;
1114
1115 if (!oh->mpu_irqs)
1116 return -ENOENT;
1117
1118 i = 0;
1119 while (oh->mpu_irqs[i].irq != -1) {
1120 if (name == oh->mpu_irqs[i].name ||
1121 !strcmp(name, oh->mpu_irqs[i].name)) {
1122 found = true;
1123 break;
1124 }
1125 i++;
1126 }
1127
1128 if (!found)
1129 return -ENOENT;
1130
1131 *irq = oh->mpu_irqs[i].irq;
1132
1133 return 0;
1134}
1135
1136/**
1137 * _get_sdma_req_by_name - fetch SDMA request line ID by name
1138 * @oh: struct omap_hwmod * to operate on
1139 * @name: pointer to the name of the SDMA request line to fetch (optional)
1140 * @dma: pointer to an unsigned int to store the request line ID to
1141 *
1142 * Retrieve an SDMA request line ID named by @name on the IP block
1143 * pointed to by @oh. The ID will be filled into the address pointed
1144 * to by @dma. When @name is non-null, the request line ID associated
1145 * with the named entry will be returned. If @name is null, the first
1146 * matching entry will be returned. Data order is not meaningful in
1147 * hwmod data, so callers are strongly encouraged to use a non-null
1148 * @name whenever possible to avoid unpredictable effects if hwmod
1149 * data is later added that causes data ordering to change. Returns 0
1150 * upon success or a negative error code upon error.
1151 */
1152static int _get_sdma_req_by_name(struct omap_hwmod *oh, const char *name,
1153 unsigned int *dma)
1154{
1155 int i;
1156 bool found = false;
1157
1158 if (!oh->sdma_reqs)
1159 return -ENOENT;
1160
1161 i = 0;
1162 while (oh->sdma_reqs[i].dma_req != -1) {
1163 if (name == oh->sdma_reqs[i].name ||
1164 !strcmp(name, oh->sdma_reqs[i].name)) {
1165 found = true;
1166 break;
1167 }
1168 i++;
1169 }
1170
1171 if (!found)
1172 return -ENOENT;
1173
1174 *dma = oh->sdma_reqs[i].dma_req;
1175
1176 return 0;
1177}
1178
1179/**
1180 * _get_addr_space_by_name - fetch address space start & end by name
1181 * @oh: struct omap_hwmod * to operate on
1182 * @name: pointer to the name of the address space to fetch (optional)
1183 * @pa_start: pointer to a u32 to store the starting address to
1184 * @pa_end: pointer to a u32 to store the ending address to
1185 *
1186 * Retrieve address space start and end addresses for the IP block
1187 * pointed to by @oh. The data will be filled into the addresses
1188 * pointed to by @pa_start and @pa_end. When @name is non-null, the
1189 * address space data associated with the named entry will be
1190 * returned. If @name is null, the first matching entry will be
1191 * returned. Data order is not meaningful in hwmod data, so callers
1192 * are strongly encouraged to use a non-null @name whenever possible
1193 * to avoid unpredictable effects if hwmod data is later added that
1194 * causes data ordering to change. Returns 0 upon success or a
1195 * negative error code upon error.
1196 */
1197static int _get_addr_space_by_name(struct omap_hwmod *oh, const char *name,
1198 u32 *pa_start, u32 *pa_end)
1199{
1200 int i, j;
1201 struct omap_hwmod_ocp_if *os;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001202 struct list_head *p = NULL;
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001203 bool found = false;
1204
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001205 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001206
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001207 i = 0;
1208 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001209 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001210
1211 if (!os->addr)
1212 return -ENOENT;
1213
1214 j = 0;
1215 while (os->addr[j].pa_start != os->addr[j].pa_end) {
1216 if (name == os->addr[j].name ||
1217 !strcmp(name, os->addr[j].name)) {
1218 found = true;
1219 break;
1220 }
1221 j++;
1222 }
1223
1224 if (found)
1225 break;
1226 }
1227
1228 if (!found)
1229 return -ENOENT;
1230
1231 *pa_start = os->addr[j].pa_start;
1232 *pa_end = os->addr[j].pa_end;
1233
1234 return 0;
1235}
1236
1237/**
Paul Walmsley24dbc212012-04-19 04:04:29 -06001238 * _save_mpu_port_index - find and save the index to @oh's MPU port
Paul Walmsley63c85232009-09-03 20:14:03 +03001239 * @oh: struct omap_hwmod *
1240 *
Paul Walmsley24dbc212012-04-19 04:04:29 -06001241 * Determines the array index of the OCP slave port that the MPU uses
1242 * to address the device, and saves it into the struct omap_hwmod.
1243 * Intended to be called during hwmod registration only. No return
1244 * value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001245 */
Paul Walmsley24dbc212012-04-19 04:04:29 -06001246static void __init _save_mpu_port_index(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001247{
Paul Walmsley24dbc212012-04-19 04:04:29 -06001248 struct omap_hwmod_ocp_if *os = NULL;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001249 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001250 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001251
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001252 if (!oh)
Paul Walmsley24dbc212012-04-19 04:04:29 -06001253 return;
1254
1255 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001256
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001257 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001258
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001259 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001260 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +03001261 if (os->user & OCP_USER_MPU) {
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001262 oh->_mpu_port = os;
Paul Walmsley24dbc212012-04-19 04:04:29 -06001263 oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001264 break;
1265 }
1266 }
1267
Paul Walmsley24dbc212012-04-19 04:04:29 -06001268 return;
Paul Walmsley63c85232009-09-03 20:14:03 +03001269}
1270
1271/**
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001272 * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1273 * @oh: struct omap_hwmod *
1274 *
1275 * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1276 * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1277 * communicate with the IP block. This interface need not be directly
1278 * connected to the MPU (and almost certainly is not), but is directly
1279 * connected to the IP block represented by @oh. Returns a pointer
1280 * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1281 * error or if there does not appear to be a path from the MPU to this
1282 * IP block.
1283 */
1284static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1285{
1286 if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1287 return NULL;
1288
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001289 return oh->_mpu_port;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001290};
1291
1292/**
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001293 * _find_mpu_rt_addr_space - return MPU register target address space for @oh
Paul Walmsley63c85232009-09-03 20:14:03 +03001294 * @oh: struct omap_hwmod *
1295 *
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001296 * Returns a pointer to the struct omap_hwmod_addr_space record representing
1297 * the register target MPU address space; or returns NULL upon error.
Paul Walmsley63c85232009-09-03 20:14:03 +03001298 */
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001299static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001300{
1301 struct omap_hwmod_ocp_if *os;
1302 struct omap_hwmod_addr_space *mem;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001303 int found = 0, i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001304
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001305 os = _find_mpu_rt_port(oh);
Paul Walmsley24dbc212012-04-19 04:04:29 -06001306 if (!os || !os->addr)
Paul Walmsley78183f32011-07-09 19:14:05 -06001307 return NULL;
1308
1309 do {
1310 mem = &os->addr[i++];
1311 if (mem->flags & ADDR_TYPE_RT)
Paul Walmsley63c85232009-09-03 20:14:03 +03001312 found = 1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001313 } while (!found && mem->pa_start != mem->pa_end);
Paul Walmsley63c85232009-09-03 20:14:03 +03001314
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001315 return (found) ? mem : NULL;
Paul Walmsley63c85232009-09-03 20:14:03 +03001316}
1317
1318/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001319 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001320 * @oh: struct omap_hwmod *
1321 *
Paul Walmsley006c7f12012-07-04 05:22:53 -06001322 * Ensure that the OCP_SYSCONFIG register for the IP block represented
1323 * by @oh is set to indicate to the PRCM that the IP block is active.
1324 * Usually this means placing the module into smart-idle mode and
1325 * smart-standby, but if there is a bug in the automatic idle handling
1326 * for the IP block, it may need to be placed into the force-idle or
1327 * no-idle variants of these modes. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001328 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001329static void _enable_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001330{
Paul Walmsley43b40992010-02-22 22:09:34 -07001331 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001332 u32 v;
Paul Walmsley006c7f12012-07-04 05:22:53 -06001333 bool clkdm_act;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001334 struct clockdomain *clkdm;
Paul Walmsley63c85232009-09-03 20:14:03 +03001335
Paul Walmsley43b40992010-02-22 22:09:34 -07001336 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001337 return;
1338
Tero Kristo613ad0e2012-10-29 22:02:13 -06001339 /*
1340 * Wait until reset has completed, this is needed as the IP
1341 * block is reset automatically by hardware in some cases
1342 * (off-mode for example), and the drivers require the
1343 * IP to be ready when they access it
1344 */
1345 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1346 _enable_optional_clocks(oh);
1347 _wait_softreset_complete(oh);
1348 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1349 _disable_optional_clocks(oh);
1350
Paul Walmsley63c85232009-09-03 20:14:03 +03001351 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001352 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001353
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001354 clkdm = _get_clkdm(oh);
Paul Walmsley43b40992010-02-22 22:09:34 -07001355 if (sf & SYSC_HAS_SIDLEMODE) {
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001356 clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
Paul Walmsley006c7f12012-07-04 05:22:53 -06001357 if (clkdm_act && !(oh->class->sysc->idlemodes &
1358 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1359 idlemode = HWMOD_IDLEMODE_FORCE;
1360 else
1361 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
1362 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
Paul Walmsley63c85232009-09-03 20:14:03 +03001363 _set_slave_idlemode(oh, idlemode, &v);
1364 }
1365
Paul Walmsley43b40992010-02-22 22:09:34 -07001366 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001367 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1368 idlemode = HWMOD_IDLEMODE_NO;
1369 } else {
1370 if (sf & SYSC_HAS_ENAWAKEUP)
1371 _enable_wakeup(oh, &v);
1372 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1373 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1374 else
1375 idlemode = HWMOD_IDLEMODE_SMART;
1376 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001377 _set_master_standbymode(oh, idlemode, &v);
1378 }
1379
Paul Walmsleya16b1f72009-12-08 16:34:17 -07001380 /*
1381 * XXX The clock framework should handle this, by
1382 * calling into this code. But this must wait until the
1383 * clock structures are tagged with omap_hwmod entries
1384 */
Paul Walmsley43b40992010-02-22 22:09:34 -07001385 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1386 (sf & SYSC_HAS_CLOCKACTIVITY))
1387 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001388
Rajendra Nayak9980ce52010-09-21 19:58:30 +05301389 /* If slave is in SMARTIDLE, also enable wakeup */
1390 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07001391 _enable_wakeup(oh, &v);
1392
1393 _write_sysconfig(v, oh);
Hema HK78f26e82010-09-24 10:23:19 -06001394
1395 /*
1396 * Set the autoidle bit only after setting the smartidle bit
1397 * Setting this will not have any impact on the other modules.
1398 */
1399 if (sf & SYSC_HAS_AUTOIDLE) {
1400 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1401 0 : 1;
1402 _set_module_autoidle(oh, idlemode, &v);
1403 _write_sysconfig(v, oh);
1404 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001405}
1406
1407/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001408 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001409 * @oh: struct omap_hwmod *
1410 *
1411 * If module is marked as SWSUP_SIDLE, force the module into slave
1412 * idle; otherwise, configure it for smart-idle. If module is marked
1413 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1414 * configure it for smart-standby. No return value.
1415 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001416static void _idle_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001417{
Paul Walmsley43b40992010-02-22 22:09:34 -07001418 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001419 u32 v;
1420
Paul Walmsley43b40992010-02-22 22:09:34 -07001421 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001422 return;
1423
1424 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001425 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001426
Paul Walmsley43b40992010-02-22 22:09:34 -07001427 if (sf & SYSC_HAS_SIDLEMODE) {
Paul Walmsley006c7f12012-07-04 05:22:53 -06001428 /* XXX What about HWMOD_IDLEMODE_SMART_WKUP? */
1429 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1430 !(oh->class->sysc->idlemodes &
1431 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1432 idlemode = HWMOD_IDLEMODE_FORCE;
1433 else
1434 idlemode = HWMOD_IDLEMODE_SMART;
Paul Walmsley63c85232009-09-03 20:14:03 +03001435 _set_slave_idlemode(oh, idlemode, &v);
1436 }
1437
Paul Walmsley43b40992010-02-22 22:09:34 -07001438 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001439 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1440 idlemode = HWMOD_IDLEMODE_FORCE;
1441 } else {
1442 if (sf & SYSC_HAS_ENAWAKEUP)
1443 _enable_wakeup(oh, &v);
1444 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1445 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1446 else
1447 idlemode = HWMOD_IDLEMODE_SMART;
1448 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001449 _set_master_standbymode(oh, idlemode, &v);
1450 }
1451
Benoit Cousson86009eb2010-12-21 21:31:28 -07001452 /* If slave is in SMARTIDLE, also enable wakeup */
1453 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
1454 _enable_wakeup(oh, &v);
1455
Paul Walmsley63c85232009-09-03 20:14:03 +03001456 _write_sysconfig(v, oh);
1457}
1458
1459/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001460 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001461 * @oh: struct omap_hwmod *
1462 *
1463 * Force the module into slave idle and master suspend. No return
1464 * value.
1465 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001466static void _shutdown_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001467{
1468 u32 v;
Paul Walmsley43b40992010-02-22 22:09:34 -07001469 u8 sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001470
Paul Walmsley43b40992010-02-22 22:09:34 -07001471 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001472 return;
1473
1474 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001475 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001476
Paul Walmsley43b40992010-02-22 22:09:34 -07001477 if (sf & SYSC_HAS_SIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001478 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1479
Paul Walmsley43b40992010-02-22 22:09:34 -07001480 if (sf & SYSC_HAS_MIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001481 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1482
Paul Walmsley43b40992010-02-22 22:09:34 -07001483 if (sf & SYSC_HAS_AUTOIDLE)
Paul Walmsley726072e2009-12-08 16:34:15 -07001484 _set_module_autoidle(oh, 1, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001485
1486 _write_sysconfig(v, oh);
1487}
1488
1489/**
1490 * _lookup - find an omap_hwmod by name
1491 * @name: find an omap_hwmod by name
1492 *
1493 * Return a pointer to an omap_hwmod by name, or NULL if not found.
Paul Walmsley63c85232009-09-03 20:14:03 +03001494 */
1495static struct omap_hwmod *_lookup(const char *name)
1496{
1497 struct omap_hwmod *oh, *temp_oh;
1498
1499 oh = NULL;
1500
1501 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1502 if (!strcmp(name, temp_oh->name)) {
1503 oh = temp_oh;
1504 break;
1505 }
1506 }
1507
1508 return oh;
1509}
Paul Walmsley868c1572012-06-19 15:01:02 -06001510
Benoit Cousson6ae76992011-07-10 05:56:30 -06001511/**
1512 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1513 * @oh: struct omap_hwmod *
1514 *
1515 * Convert a clockdomain name stored in a struct omap_hwmod into a
1516 * clockdomain pointer, and save it into the struct omap_hwmod.
Paul Walmsley868c1572012-06-19 15:01:02 -06001517 * Return -EINVAL if the clkdm_name lookup failed.
Benoit Cousson6ae76992011-07-10 05:56:30 -06001518 */
1519static int _init_clkdm(struct omap_hwmod *oh)
1520{
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001521 if (!oh->clkdm_name) {
1522 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
Benoit Cousson6ae76992011-07-10 05:56:30 -06001523 return 0;
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001524 }
Benoit Cousson6ae76992011-07-10 05:56:30 -06001525
Benoit Cousson6ae76992011-07-10 05:56:30 -06001526 oh->clkdm = clkdm_lookup(oh->clkdm_name);
1527 if (!oh->clkdm) {
1528 pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n",
1529 oh->name, oh->clkdm_name);
1530 return -EINVAL;
1531 }
1532
1533 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1534 oh->name, oh->clkdm_name);
1535
1536 return 0;
1537}
Paul Walmsley63c85232009-09-03 20:14:03 +03001538
1539/**
Benoit Cousson6ae76992011-07-10 05:56:30 -06001540 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1541 * well the clockdomain.
Paul Walmsley63c85232009-09-03 20:14:03 +03001542 * @oh: struct omap_hwmod *
Paul Walmsley97d60162010-07-26 16:34:30 -06001543 * @data: not used; pass NULL
Paul Walmsley63c85232009-09-03 20:14:03 +03001544 *
Paul Walmsleya2debdb2011-02-23 00:14:07 -07001545 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
Paul Walmsley48d54f32011-02-23 00:14:07 -07001546 * Resolves all clock names embedded in the hwmod. Returns 0 on
1547 * success, or a negative error code on failure.
Paul Walmsley63c85232009-09-03 20:14:03 +03001548 */
Paul Walmsley97d60162010-07-26 16:34:30 -06001549static int _init_clocks(struct omap_hwmod *oh, void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03001550{
1551 int ret = 0;
1552
Paul Walmsley48d54f32011-02-23 00:14:07 -07001553 if (oh->_state != _HWMOD_STATE_REGISTERED)
1554 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001555
1556 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1557
Vaibhav Hiremathb797be12012-07-09 18:24:30 +05301558 if (soc_ops.init_clkdm)
1559 ret |= soc_ops.init_clkdm(oh);
1560
Paul Walmsley63c85232009-09-03 20:14:03 +03001561 ret |= _init_main_clk(oh);
1562 ret |= _init_interface_clks(oh);
1563 ret |= _init_opt_clks(oh);
1564
Benoit Coussonf5c1f842010-05-20 12:31:10 -06001565 if (!ret)
1566 oh->_state = _HWMOD_STATE_CLKS_INITED;
Benoit Cousson66522712011-07-01 22:54:06 +02001567 else
1568 pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001569
Rajendra Nayak09c35f22011-02-16 12:11:24 +00001570 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001571}
1572
1573/**
omar ramirezcc1226e2011-03-04 13:32:44 -07001574 * _lookup_hardreset - fill register bit info for this hwmod/reset line
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001575 * @oh: struct omap_hwmod *
1576 * @name: name of the reset line in the context of this hwmod
omar ramirezcc1226e2011-03-04 13:32:44 -07001577 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001578 *
1579 * Return the bit position of the reset line that match the
1580 * input name. Return -ENOENT if not found.
1581 */
Paul Walmsleya032d332012-08-03 09:21:10 -06001582static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1583 struct omap_hwmod_rst_info *ohri)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001584{
1585 int i;
1586
1587 for (i = 0; i < oh->rst_lines_cnt; i++) {
1588 const char *rst_line = oh->rst_lines[i].name;
1589 if (!strcmp(rst_line, name)) {
omar ramirezcc1226e2011-03-04 13:32:44 -07001590 ohri->rst_shift = oh->rst_lines[i].rst_shift;
1591 ohri->st_shift = oh->rst_lines[i].st_shift;
1592 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1593 oh->name, __func__, rst_line, ohri->rst_shift,
1594 ohri->st_shift);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001595
omar ramirezcc1226e2011-03-04 13:32:44 -07001596 return 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001597 }
1598 }
1599
1600 return -ENOENT;
1601}
1602
1603/**
1604 * _assert_hardreset - assert the HW reset line of submodules
1605 * contained in the hwmod module.
1606 * @oh: struct omap_hwmod *
1607 * @name: name of the reset line to lookup and assert
1608 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001609 * Some IP like dsp, ipu or iva contain processor that require an HW
1610 * reset line to be assert / deassert in order to enable fully the IP.
1611 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1612 * asserting the hardreset line on the currently-booted SoC, or passes
1613 * along the return value from _lookup_hardreset() or the SoC's
1614 * assert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001615 */
1616static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1617{
omar ramirezcc1226e2011-03-04 13:32:44 -07001618 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001619 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001620
1621 if (!oh)
1622 return -EINVAL;
1623
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001624 if (!soc_ops.assert_hardreset)
1625 return -ENOSYS;
1626
omar ramirezcc1226e2011-03-04 13:32:44 -07001627 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001628 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001629 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001630
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001631 ret = soc_ops.assert_hardreset(oh, &ohri);
1632
1633 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001634}
1635
1636/**
1637 * _deassert_hardreset - deassert the HW reset line of submodules contained
1638 * in the hwmod module.
1639 * @oh: struct omap_hwmod *
1640 * @name: name of the reset line to look up and deassert
1641 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001642 * Some IP like dsp, ipu or iva contain processor that require an HW
1643 * reset line to be assert / deassert in order to enable fully the IP.
1644 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1645 * deasserting the hardreset line on the currently-booted SoC, or passes
1646 * along the return value from _lookup_hardreset() or the SoC's
1647 * deassert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001648 */
1649static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1650{
omar ramirezcc1226e2011-03-04 13:32:44 -07001651 struct omap_hwmod_rst_info ohri;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001652 int ret = -EINVAL;
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001653 int hwsup = 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001654
1655 if (!oh)
1656 return -EINVAL;
1657
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001658 if (!soc_ops.deassert_hardreset)
1659 return -ENOSYS;
1660
omar ramirezcc1226e2011-03-04 13:32:44 -07001661 ret = _lookup_hardreset(oh, name, &ohri);
1662 if (IS_ERR_VALUE(ret))
1663 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001664
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001665 if (oh->clkdm) {
1666 /*
1667 * A clockdomain must be in SW_SUP otherwise reset
1668 * might not be completed. The clockdomain can be set
1669 * in HW_AUTO only when the module become ready.
1670 */
1671 hwsup = clkdm_in_hwsup(oh->clkdm);
1672 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1673 if (ret) {
1674 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1675 oh->name, oh->clkdm->name, ret);
1676 return ret;
1677 }
1678 }
1679
1680 _enable_clocks(oh);
1681 if (soc_ops.enable_module)
1682 soc_ops.enable_module(oh);
1683
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001684 ret = soc_ops.deassert_hardreset(oh, &ohri);
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001685
1686 if (soc_ops.disable_module)
1687 soc_ops.disable_module(oh);
1688 _disable_clocks(oh);
1689
omar ramirezcc1226e2011-03-04 13:32:44 -07001690 if (ret == -EBUSY)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001691 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1692
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001693 if (!ret) {
1694 /*
1695 * Set the clockdomain to HW_AUTO, assuming that the
1696 * previous state was HW_AUTO.
1697 */
1698 if (oh->clkdm && hwsup)
1699 clkdm_allow_idle(oh->clkdm);
1700 } else {
1701 if (oh->clkdm)
1702 clkdm_hwmod_disable(oh->clkdm, oh);
1703 }
1704
omar ramirezcc1226e2011-03-04 13:32:44 -07001705 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001706}
1707
1708/**
1709 * _read_hardreset - read the HW reset line state of submodules
1710 * contained in the hwmod module
1711 * @oh: struct omap_hwmod *
1712 * @name: name of the reset line to look up and read
1713 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001714 * Return the state of the reset line. Returns -EINVAL if @oh is
1715 * null, -ENOSYS if we have no way of reading the hardreset line
1716 * status on the currently-booted SoC, or passes along the return
1717 * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1718 * code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001719 */
1720static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1721{
omar ramirezcc1226e2011-03-04 13:32:44 -07001722 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001723 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001724
1725 if (!oh)
1726 return -EINVAL;
1727
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001728 if (!soc_ops.is_hardreset_asserted)
1729 return -ENOSYS;
1730
omar ramirezcc1226e2011-03-04 13:32:44 -07001731 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001732 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001733 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001734
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001735 return soc_ops.is_hardreset_asserted(oh, &ohri);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001736}
1737
1738/**
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001739 * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
Paul Walmsley747834a2012-04-18 19:10:04 -06001740 * @oh: struct omap_hwmod *
1741 *
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001742 * If all hardreset lines associated with @oh are asserted, then return true.
1743 * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1744 * associated with @oh are asserted, then return false.
Paul Walmsley747834a2012-04-18 19:10:04 -06001745 * This function is used to avoid executing some parts of the IP block
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001746 * enable/disable sequence if its hardreset line is set.
Paul Walmsley747834a2012-04-18 19:10:04 -06001747 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001748static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
Paul Walmsley747834a2012-04-18 19:10:04 -06001749{
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001750 int i, rst_cnt = 0;
Paul Walmsley747834a2012-04-18 19:10:04 -06001751
1752 if (oh->rst_lines_cnt == 0)
1753 return false;
1754
1755 for (i = 0; i < oh->rst_lines_cnt; i++)
1756 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001757 rst_cnt++;
1758
1759 if (oh->rst_lines_cnt == rst_cnt)
1760 return true;
Paul Walmsley747834a2012-04-18 19:10:04 -06001761
1762 return false;
1763}
1764
1765/**
Paul Walmsleye9332b62012-10-08 23:08:15 -06001766 * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1767 * hard-reset
1768 * @oh: struct omap_hwmod *
1769 *
1770 * If any hardreset lines associated with @oh are asserted, then
1771 * return true. Otherwise, if no hardreset lines associated with @oh
1772 * are asserted, or if @oh has no hardreset lines, then return false.
1773 * This function is used to avoid executing some parts of the IP block
1774 * enable/disable sequence if any hardreset line is set.
1775 */
1776static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1777{
1778 int rst_cnt = 0;
1779 int i;
1780
1781 for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1782 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1783 rst_cnt++;
1784
1785 return (rst_cnt) ? true : false;
1786}
1787
1788/**
Paul Walmsley747834a2012-04-18 19:10:04 -06001789 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1790 * @oh: struct omap_hwmod *
1791 *
1792 * Disable the PRCM module mode related to the hwmod @oh.
1793 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1794 */
1795static int _omap4_disable_module(struct omap_hwmod *oh)
1796{
1797 int v;
1798
Paul Walmsley747834a2012-04-18 19:10:04 -06001799 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1800 return -EINVAL;
1801
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001802 /*
1803 * Since integration code might still be doing something, only
1804 * disable if all lines are under hardreset.
1805 */
Paul Walmsleye9332b62012-10-08 23:08:15 -06001806 if (_are_any_hardreset_lines_asserted(oh))
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001807 return 0;
1808
Paul Walmsley747834a2012-04-18 19:10:04 -06001809 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1810
1811 omap4_cminst_module_disable(oh->clkdm->prcm_partition,
1812 oh->clkdm->cm_inst,
1813 oh->clkdm->clkdm_offs,
1814 oh->prcm.omap4.clkctrl_offs);
1815
Paul Walmsley747834a2012-04-18 19:10:04 -06001816 v = _omap4_wait_target_disable(oh);
1817 if (v)
1818 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1819 oh->name);
1820
1821 return 0;
1822}
1823
1824/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001825 * _am33xx_disable_module - enable CLKCTRL modulemode on AM33XX
1826 * @oh: struct omap_hwmod *
1827 *
1828 * Disable the PRCM module mode related to the hwmod @oh.
1829 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1830 */
1831static int _am33xx_disable_module(struct omap_hwmod *oh)
1832{
1833 int v;
1834
1835 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1836 return -EINVAL;
1837
1838 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1839
Paul Walmsleye9332b62012-10-08 23:08:15 -06001840 if (_are_any_hardreset_lines_asserted(oh))
1841 return 0;
1842
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001843 am33xx_cm_module_disable(oh->clkdm->cm_inst, oh->clkdm->clkdm_offs,
1844 oh->prcm.omap4.clkctrl_offs);
1845
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001846 v = _am33xx_wait_target_disable(oh);
1847 if (v)
1848 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1849 oh->name);
1850
1851 return 0;
1852}
1853
1854/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001855 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
Paul Walmsley63c85232009-09-03 20:14:03 +03001856 * @oh: struct omap_hwmod *
1857 *
1858 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
Paul Walmsley30e105c2012-04-19 00:49:09 -06001859 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1860 * reset this way, -EINVAL if the hwmod is in the wrong state,
1861 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Benoit Cousson2cb06812010-09-21 18:57:59 +02001862 *
1863 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
Paul Walmsleybd361792010-12-14 12:42:35 -07001864 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
Benoit Cousson2cb06812010-09-21 18:57:59 +02001865 * use the SYSCONFIG softreset bit to provide the status.
1866 *
Paul Walmsleybd361792010-12-14 12:42:35 -07001867 * Note that some IP like McBSP do have reset control but don't have
1868 * reset status.
Paul Walmsley63c85232009-09-03 20:14:03 +03001869 */
Paul Walmsleybd361792010-12-14 12:42:35 -07001870static int _ocp_softreset(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001871{
Tero Kristo613ad0e2012-10-29 22:02:13 -06001872 u32 v;
Paul Walmsley6f8b7ff2009-12-08 16:33:16 -07001873 int c = 0;
Benoit Cousson96835af2010-09-21 18:57:58 +02001874 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001875
Paul Walmsley43b40992010-02-22 22:09:34 -07001876 if (!oh->class->sysc ||
Benoit Cousson2cb06812010-09-21 18:57:59 +02001877 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley30e105c2012-04-19 00:49:09 -06001878 return -ENOENT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001879
1880 /* clocks must be on for this operation */
1881 if (oh->_state != _HWMOD_STATE_ENABLED) {
Paul Walmsley7852ec02012-07-26 00:54:26 -06001882 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1883 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001884 return -EINVAL;
1885 }
1886
Benoit Cousson96835af2010-09-21 18:57:58 +02001887 /* For some modules, all optionnal clocks need to be enabled as well */
1888 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1889 _enable_optional_clocks(oh);
1890
Paul Walmsleybd361792010-12-14 12:42:35 -07001891 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001892
1893 v = oh->_sysc_cache;
Benoit Cousson96835af2010-09-21 18:57:58 +02001894 ret = _set_softreset(oh, &v);
1895 if (ret)
1896 goto dis_opt_clks;
Paul Walmsley63c85232009-09-03 20:14:03 +03001897 _write_sysconfig(v, oh);
1898
Fernando Guzman Lugod99de7f2012-04-13 05:08:03 -06001899 if (oh->class->sysc->srst_udelay)
1900 udelay(oh->class->sysc->srst_udelay);
1901
Tero Kristo613ad0e2012-10-29 22:02:13 -06001902 c = _wait_softreset_complete(oh);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001903 if (c == MAX_MODULE_SOFTRESET_WAIT)
Benoit Cousson76e55892010-09-21 10:34:11 -06001904 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1905 oh->name, MAX_MODULE_SOFTRESET_WAIT);
Paul Walmsley63c85232009-09-03 20:14:03 +03001906 else
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001907 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
Paul Walmsley63c85232009-09-03 20:14:03 +03001908
1909 /*
1910 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1911 * _wait_target_ready() or _reset()
1912 */
1913
Benoit Cousson96835af2010-09-21 18:57:58 +02001914 ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
1915
1916dis_opt_clks:
1917 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1918 _disable_optional_clocks(oh);
1919
1920 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001921}
1922
1923/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001924 * _reset - reset an omap_hwmod
1925 * @oh: struct omap_hwmod *
1926 *
Paul Walmsley30e105c2012-04-19 00:49:09 -06001927 * Resets an omap_hwmod @oh. If the module has a custom reset
1928 * function pointer defined, then call it to reset the IP block, and
1929 * pass along its return value to the caller. Otherwise, if the IP
1930 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1931 * associated with it, call a function to reset the IP block via that
1932 * method, and pass along the return value to the caller. Finally, if
1933 * the IP block has some hardreset lines associated with it, assert
1934 * all of those, but do _not_ deassert them. (This is because driver
1935 * authors have expressed an apparent requirement to control the
1936 * deassertion of the hardreset lines themselves.)
1937 *
1938 * The default software reset mechanism for most OMAP IP blocks is
1939 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1940 * hwmods cannot be reset via this method. Some are not targets and
1941 * therefore have no OCP header registers to access. Others (like the
1942 * IVA) have idiosyncratic reset sequences. So for these relatively
1943 * rare cases, custom reset code can be supplied in the struct
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001944 * omap_hwmod_class .reset function pointer.
1945 *
1946 * _set_dmadisable() is called to set the DMADISABLE bit so that it
1947 * does not prevent idling of the system. This is necessary for cases
1948 * where ROMCODE/BOOTLOADER uses dma and transfers control to the
1949 * kernel without disabling dma.
1950 *
1951 * Passes along the return value from either _ocp_softreset() or the
1952 * custom reset function - these must return -EINVAL if the hwmod
1953 * cannot be reset this way or if the hwmod is in the wrong state,
1954 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Paul Walmsleybd361792010-12-14 12:42:35 -07001955 */
1956static int _reset(struct omap_hwmod *oh)
1957{
Paul Walmsley30e105c2012-04-19 00:49:09 -06001958 int i, r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001959
1960 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1961
Paul Walmsley30e105c2012-04-19 00:49:09 -06001962 if (oh->class->reset) {
1963 r = oh->class->reset(oh);
1964 } else {
1965 if (oh->rst_lines_cnt > 0) {
1966 for (i = 0; i < oh->rst_lines_cnt; i++)
1967 _assert_hardreset(oh, oh->rst_lines[i].name);
1968 return 0;
1969 } else {
1970 r = _ocp_softreset(oh);
1971 if (r == -ENOENT)
1972 r = 0;
1973 }
1974 }
Paul Walmsleybd361792010-12-14 12:42:35 -07001975
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001976 _set_dmadisable(oh);
1977
Paul Walmsley30e105c2012-04-19 00:49:09 -06001978 /*
1979 * OCP_SYSCONFIG bits need to be reprogrammed after a
1980 * softreset. The _enable() function should be split to avoid
1981 * the rewrite of the OCP_SYSCONFIG register.
1982 */
Rajendra Nayak28008522012-03-13 22:55:23 +05301983 if (oh->class->sysc) {
1984 _update_sysc_cache(oh);
1985 _enable_sysc(oh);
1986 }
1987
Paul Walmsley30e105c2012-04-19 00:49:09 -06001988 return r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001989}
1990
1991/**
Vishwanath BS51658822012-06-22 08:40:04 -06001992 * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain
1993 *
1994 * Call the appropriate PRM function to clear any logged I/O chain
1995 * wakeups and to reconfigure the chain. This apparently needs to be
1996 * done upon every mux change. Since hwmods can be concurrently
1997 * enabled and idled, hold a spinlock around the I/O chain
1998 * reconfiguration sequence. No return value.
1999 *
2000 * XXX When the PRM code is moved to drivers, this function can be removed,
2001 * as the PRM infrastructure should abstract this.
2002 */
2003static void _reconfigure_io_chain(void)
2004{
2005 unsigned long flags;
2006
2007 spin_lock_irqsave(&io_chain_lock, flags);
2008
2009 if (cpu_is_omap34xx() && omap3_has_io_chain_ctrl())
2010 omap3xxx_prm_reconfigure_io_chain();
2011 else if (cpu_is_omap44xx())
2012 omap44xx_prm_reconfigure_io_chain();
2013
2014 spin_unlock_irqrestore(&io_chain_lock, flags);
2015}
2016
2017/**
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07002018 * _omap4_update_context_lost - increment hwmod context loss counter if
2019 * hwmod context was lost, and clear hardware context loss reg
2020 * @oh: hwmod to check for context loss
2021 *
2022 * If the PRCM indicates that the hwmod @oh lost context, increment
2023 * our in-memory context loss counter, and clear the RM_*_CONTEXT
2024 * bits. No return value.
2025 */
2026static void _omap4_update_context_lost(struct omap_hwmod *oh)
2027{
2028 if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
2029 return;
2030
2031 if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2032 oh->clkdm->pwrdm.ptr->prcm_offs,
2033 oh->prcm.omap4.context_offs))
2034 return;
2035
2036 oh->prcm.omap4.context_lost_counter++;
2037 prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2038 oh->clkdm->pwrdm.ptr->prcm_offs,
2039 oh->prcm.omap4.context_offs);
2040}
2041
2042/**
2043 * _omap4_get_context_lost - get context loss counter for a hwmod
2044 * @oh: hwmod to get context loss counter for
2045 *
2046 * Returns the in-memory context loss counter for a hwmod.
2047 */
2048static int _omap4_get_context_lost(struct omap_hwmod *oh)
2049{
2050 return oh->prcm.omap4.context_lost_counter;
2051}
2052
2053/**
Paul Walmsley6d266f62013-02-10 11:22:22 -07002054 * _enable_preprogram - Pre-program an IP block during the _enable() process
2055 * @oh: struct omap_hwmod *
2056 *
2057 * Some IP blocks (such as AESS) require some additional programming
2058 * after enable before they can enter idle. If a function pointer to
2059 * do so is present in the hwmod data, then call it and pass along the
2060 * return value; otherwise, return 0.
2061 */
2062static int __init _enable_preprogram(struct omap_hwmod *oh)
2063{
2064 if (!oh->class->enable_preprogram)
2065 return 0;
2066
2067 return oh->class->enable_preprogram(oh);
2068}
2069
2070/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002071 * _enable - enable an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002072 * @oh: struct omap_hwmod *
2073 *
2074 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002075 * register target. Returns -EINVAL if the hwmod is in the wrong
2076 * state or passes along the return value of _wait_target_ready().
Paul Walmsley63c85232009-09-03 20:14:03 +03002077 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002078static int _enable(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002079{
Paul Walmsley747834a2012-04-18 19:10:04 -06002080 int r;
Rajendra Nayak665d0012011-07-10 05:57:07 -06002081 int hwsup = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002082
Benoit Cousson34617e22011-07-01 22:54:07 +02002083 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
2084
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002085 /*
Paul Walmsley64813c32012-04-18 19:10:03 -06002086 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
2087 * state at init. Now that someone is really trying to enable
2088 * them, just ensure that the hwmod mux is set.
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002089 */
2090 if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
2091 /*
2092 * If the caller has mux data populated, do the mux'ing
2093 * which wouldn't have been done as part of the _enable()
2094 * done during setup.
2095 */
2096 if (oh->mux)
2097 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2098
2099 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
2100 return 0;
2101 }
2102
Paul Walmsley63c85232009-09-03 20:14:03 +03002103 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
2104 oh->_state != _HWMOD_STATE_IDLE &&
2105 oh->_state != _HWMOD_STATE_DISABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002106 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
2107 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002108 return -EINVAL;
2109 }
2110
Benoit Cousson31f62862011-07-01 22:54:05 +02002111 /*
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002112 * If an IP block contains HW reset lines and all of them are
Paul Walmsley747834a2012-04-18 19:10:04 -06002113 * asserted, we let integration code associated with that
2114 * block handle the enable. We've received very little
2115 * information on what those driver authors need, and until
2116 * detailed information is provided and the driver code is
2117 * posted to the public lists, this is probably the best we
2118 * can do.
Benoit Cousson31f62862011-07-01 22:54:05 +02002119 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002120 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002121 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002122
Rajendra Nayak665d0012011-07-10 05:57:07 -06002123 /* Mux pins for device runtime if populated */
2124 if (oh->mux && (!oh->mux->enabled ||
2125 ((oh->_state == _HWMOD_STATE_IDLE) &&
Vishwanath BS51658822012-06-22 08:40:04 -06002126 oh->mux->pads_dynamic))) {
Rajendra Nayak665d0012011-07-10 05:57:07 -06002127 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
Vishwanath BS51658822012-06-22 08:40:04 -06002128 _reconfigure_io_chain();
2129 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002130
Rajendra Nayak665d0012011-07-10 05:57:07 -06002131 _add_initiator_dep(oh, mpu_oh);
2132
2133 if (oh->clkdm) {
2134 /*
2135 * A clockdomain must be in SW_SUP before enabling
2136 * completely the module. The clockdomain can be set
2137 * in HW_AUTO only when the module become ready.
2138 */
Paul Walmsleyb71c7212012-09-23 17:28:28 -06002139 hwsup = clkdm_in_hwsup(oh->clkdm) &&
2140 !clkdm_missing_idle_reporting(oh->clkdm);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002141 r = clkdm_hwmod_enable(oh->clkdm, oh);
2142 if (r) {
2143 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
2144 oh->name, oh->clkdm->name, r);
2145 return r;
2146 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002147 }
Rajendra Nayak665d0012011-07-10 05:57:07 -06002148
2149 _enable_clocks(oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002150 if (soc_ops.enable_module)
2151 soc_ops.enable_module(oh);
Paul Walmsleyfa200222013-01-26 00:48:56 -07002152 if (oh->flags & HWMOD_BLOCK_WFI)
2153 disable_hlt();
Benoit Cousson34617e22011-07-01 22:54:07 +02002154
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07002155 if (soc_ops.update_context_lost)
2156 soc_ops.update_context_lost(oh);
2157
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002158 r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
2159 -EINVAL;
Rajendra Nayak665d0012011-07-10 05:57:07 -06002160 if (!r) {
2161 /*
2162 * Set the clockdomain to HW_AUTO only if the target is ready,
2163 * assuming that the previous state was HW_AUTO
2164 */
2165 if (oh->clkdm && hwsup)
2166 clkdm_allow_idle(oh->clkdm);
Benoit Cousson34617e22011-07-01 22:54:07 +02002167
Rajendra Nayak665d0012011-07-10 05:57:07 -06002168 oh->_state = _HWMOD_STATE_ENABLED;
2169
2170 /* Access the sysconfig only if the target is ready */
2171 if (oh->class->sysc) {
2172 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
2173 _update_sysc_cache(oh);
2174 _enable_sysc(oh);
2175 }
Paul Walmsley6d266f62013-02-10 11:22:22 -07002176 r = _enable_preprogram(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002177 } else {
Paul Walmsley2577a4a2012-10-29 20:57:55 -06002178 if (soc_ops.disable_module)
2179 soc_ops.disable_module(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002180 _disable_clocks(oh);
2181 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
2182 oh->name, r);
2183
2184 if (oh->clkdm)
2185 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002186 }
2187
Paul Walmsley63c85232009-09-03 20:14:03 +03002188 return r;
2189}
2190
2191/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002192 * _idle - idle an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002193 * @oh: struct omap_hwmod *
2194 *
2195 * Idles an omap_hwmod @oh. This should be called once the hwmod has
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002196 * no further work. Returns -EINVAL if the hwmod is in the wrong
2197 * state or returns 0.
Paul Walmsley63c85232009-09-03 20:14:03 +03002198 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002199static int _idle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002200{
Benoit Cousson34617e22011-07-01 22:54:07 +02002201 pr_debug("omap_hwmod: %s: idling\n", oh->name);
2202
Paul Walmsley63c85232009-09-03 20:14:03 +03002203 if (oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002204 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2205 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002206 return -EINVAL;
2207 }
2208
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002209 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002210 return 0;
2211
Paul Walmsley43b40992010-02-22 22:09:34 -07002212 if (oh->class->sysc)
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002213 _idle_sysc(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002214 _del_initiator_dep(oh, mpu_oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002215
Paul Walmsleyfa200222013-01-26 00:48:56 -07002216 if (oh->flags & HWMOD_BLOCK_WFI)
2217 enable_hlt();
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002218 if (soc_ops.disable_module)
2219 soc_ops.disable_module(oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002220
Benoit Cousson45c38252011-07-10 05:56:33 -06002221 /*
2222 * The module must be in idle mode before disabling any parents
2223 * clocks. Otherwise, the parent clock might be disabled before
2224 * the module transition is done, and thus will prevent the
2225 * transition to complete properly.
2226 */
2227 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002228 if (oh->clkdm)
2229 clkdm_hwmod_disable(oh->clkdm, oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002230
Tony Lindgren8d9af882010-12-22 18:42:35 -08002231 /* Mux pins for device idle if populated */
Vishwanath BS51658822012-06-22 08:40:04 -06002232 if (oh->mux && oh->mux->pads_dynamic) {
Tony Lindgren8d9af882010-12-22 18:42:35 -08002233 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
Vishwanath BS51658822012-06-22 08:40:04 -06002234 _reconfigure_io_chain();
2235 }
Tony Lindgren8d9af882010-12-22 18:42:35 -08002236
Paul Walmsley63c85232009-09-03 20:14:03 +03002237 oh->_state = _HWMOD_STATE_IDLE;
2238
2239 return 0;
2240}
2241
2242/**
Kishon Vijay Abraham I95992172011-03-10 03:50:08 -07002243 * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit
2244 * @oh: struct omap_hwmod *
2245 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
2246 *
2247 * Sets the IP block's OCP autoidle bit in hardware, and updates our
2248 * local copy. Intended to be used by drivers that require
2249 * direct manipulation of the AUTOIDLE bits.
2250 * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes
2251 * along the return value from _set_module_autoidle().
2252 *
2253 * Any users of this function should be scrutinized carefully.
2254 */
2255int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle)
2256{
2257 u32 v;
2258 int retval = 0;
2259 unsigned long flags;
2260
2261 if (!oh || oh->_state != _HWMOD_STATE_ENABLED)
2262 return -EINVAL;
2263
2264 spin_lock_irqsave(&oh->_lock, flags);
2265
2266 v = oh->_sysc_cache;
2267
2268 retval = _set_module_autoidle(oh, autoidle, &v);
2269
2270 if (!retval)
2271 _write_sysconfig(v, oh);
2272
2273 spin_unlock_irqrestore(&oh->_lock, flags);
2274
2275 return retval;
2276}
2277
2278/**
Paul Walmsley63c85232009-09-03 20:14:03 +03002279 * _shutdown - shutdown an omap_hwmod
2280 * @oh: struct omap_hwmod *
2281 *
2282 * Shut down an omap_hwmod @oh. This should be called when the driver
2283 * used for the hwmod is removed or unloaded or if the driver is not
2284 * used by the system. Returns -EINVAL if the hwmod is in the wrong
2285 * state or returns 0.
2286 */
2287static int _shutdown(struct omap_hwmod *oh)
2288{
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002289 int ret, i;
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002290 u8 prev_state;
2291
Paul Walmsley63c85232009-09-03 20:14:03 +03002292 if (oh->_state != _HWMOD_STATE_IDLE &&
2293 oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002294 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2295 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002296 return -EINVAL;
2297 }
2298
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002299 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002300 return 0;
2301
Paul Walmsley63c85232009-09-03 20:14:03 +03002302 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2303
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002304 if (oh->class->pre_shutdown) {
2305 prev_state = oh->_state;
2306 if (oh->_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002307 _enable(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002308 ret = oh->class->pre_shutdown(oh);
2309 if (ret) {
2310 if (prev_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002311 _idle(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002312 return ret;
2313 }
2314 }
2315
Miguel Vadillo6481c732011-07-01 22:54:02 +02002316 if (oh->class->sysc) {
2317 if (oh->_state == _HWMOD_STATE_IDLE)
2318 _enable(oh);
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002319 _shutdown_sysc(oh);
Miguel Vadillo6481c732011-07-01 22:54:02 +02002320 }
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06002321
Benoit Cousson3827f942010-09-21 10:34:08 -06002322 /* clocks and deps are already disabled in idle */
2323 if (oh->_state == _HWMOD_STATE_ENABLED) {
2324 _del_initiator_dep(oh, mpu_oh);
2325 /* XXX what about the other system initiators here? dma, dsp */
Paul Walmsleyfa200222013-01-26 00:48:56 -07002326 if (oh->flags & HWMOD_BLOCK_WFI)
2327 enable_hlt();
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002328 if (soc_ops.disable_module)
2329 soc_ops.disable_module(oh);
Benoit Cousson45c38252011-07-10 05:56:33 -06002330 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002331 if (oh->clkdm)
2332 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson3827f942010-09-21 10:34:08 -06002333 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002334 /* XXX Should this code also force-disable the optional clocks? */
2335
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002336 for (i = 0; i < oh->rst_lines_cnt; i++)
2337 _assert_hardreset(oh, oh->rst_lines[i].name);
Benoit Cousson31f62862011-07-01 22:54:05 +02002338
Tony Lindgren8d9af882010-12-22 18:42:35 -08002339 /* Mux pins to safe mode or use populated off mode values */
2340 if (oh->mux)
2341 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
Paul Walmsley63c85232009-09-03 20:14:03 +03002342
2343 oh->_state = _HWMOD_STATE_DISABLED;
2344
2345 return 0;
2346}
2347
2348/**
Paul Walmsley381d0332012-04-19 00:58:22 -06002349 * _init_mpu_rt_base - populate the virtual address for a hwmod
2350 * @oh: struct omap_hwmod * to locate the virtual address
2351 *
2352 * Cache the virtual address used by the MPU to access this IP block's
2353 * registers. This address is needed early so the OCP registers that
2354 * are part of the device's address space can be ioremapped properly.
2355 * No return value.
2356 */
2357static void __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data)
2358{
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002359 struct omap_hwmod_addr_space *mem;
2360 void __iomem *va_start;
2361
2362 if (!oh)
2363 return;
2364
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002365 _save_mpu_port_index(oh);
2366
Paul Walmsley381d0332012-04-19 00:58:22 -06002367 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2368 return;
2369
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002370 mem = _find_mpu_rt_addr_space(oh);
2371 if (!mem) {
2372 pr_debug("omap_hwmod: %s: no MPU register target found\n",
2373 oh->name);
2374 return;
2375 }
2376
2377 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
2378 if (!va_start) {
2379 pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
2380 return;
2381 }
2382
2383 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2384 oh->name, va_start);
2385
2386 oh->_mpu_rt_va = va_start;
Paul Walmsley381d0332012-04-19 00:58:22 -06002387}
2388
2389/**
2390 * _init - initialize internal data for the hwmod @oh
2391 * @oh: struct omap_hwmod *
2392 * @n: (unused)
2393 *
2394 * Look up the clocks and the address space used by the MPU to access
2395 * registers belonging to the hwmod @oh. @oh must already be
2396 * registered at this point. This is the first of two phases for
2397 * hwmod initialization. Code called here does not touch any hardware
2398 * registers, it simply prepares internal data structures. Returns 0
2399 * upon success or if the hwmod isn't registered, or -EINVAL upon
2400 * failure.
2401 */
2402static int __init _init(struct omap_hwmod *oh, void *data)
2403{
2404 int r;
2405
2406 if (oh->_state != _HWMOD_STATE_REGISTERED)
2407 return 0;
2408
2409 _init_mpu_rt_base(oh, NULL);
2410
2411 r = _init_clocks(oh, NULL);
2412 if (IS_ERR_VALUE(r)) {
2413 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2414 return -EINVAL;
2415 }
2416
2417 oh->_state = _HWMOD_STATE_INITIALIZED;
2418
2419 return 0;
2420}
2421
2422/**
Paul Walmsley64813c32012-04-18 19:10:03 -06002423 * _setup_iclk_autoidle - configure an IP block's interface clocks
Paul Walmsley63c85232009-09-03 20:14:03 +03002424 * @oh: struct omap_hwmod *
2425 *
Paul Walmsley64813c32012-04-18 19:10:03 -06002426 * Set up the module's interface clocks. XXX This function is still mostly
2427 * a stub; implementing this properly requires iclk autoidle usecounting in
2428 * the clock code. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03002429 */
Paul Walmsley64813c32012-04-18 19:10:03 -06002430static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002431{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002432 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002433 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002434 int i = 0;
Paul Walmsley381d0332012-04-19 00:58:22 -06002435 if (oh->_state != _HWMOD_STATE_INITIALIZED)
Paul Walmsley64813c32012-04-18 19:10:03 -06002436 return;
Paul Walmsley48d54f32011-02-23 00:14:07 -07002437
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002438 p = oh->slave_ports.next;
Paul Walmsley63c85232009-09-03 20:14:03 +03002439
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002440 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002441 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002442 if (!os->_clk)
Paul Walmsley64813c32012-04-18 19:10:03 -06002443 continue;
Paul Walmsley63c85232009-09-03 20:14:03 +03002444
Paul Walmsley64813c32012-04-18 19:10:03 -06002445 if (os->flags & OCPIF_SWSUP_IDLE) {
2446 /* XXX omap_iclk_deny_idle(c); */
2447 } else {
2448 /* XXX omap_iclk_allow_idle(c); */
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002449 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +03002450 }
2451 }
2452
Paul Walmsley64813c32012-04-18 19:10:03 -06002453 return;
2454}
2455
2456/**
2457 * _setup_reset - reset an IP block during the setup process
2458 * @oh: struct omap_hwmod *
2459 *
2460 * Reset the IP block corresponding to the hwmod @oh during the setup
2461 * process. The IP block is first enabled so it can be successfully
2462 * reset. Returns 0 upon success or a negative error code upon
2463 * failure.
2464 */
2465static int __init _setup_reset(struct omap_hwmod *oh)
2466{
2467 int r;
2468
2469 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2470 return -EINVAL;
Paul Walmsley63c85232009-09-03 20:14:03 +03002471
Paul Walmsley5fb3d522012-10-29 22:11:50 -06002472 if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
2473 return -EPERM;
2474
Paul Walmsley747834a2012-04-18 19:10:04 -06002475 if (oh->rst_lines_cnt == 0) {
2476 r = _enable(oh);
2477 if (r) {
2478 pr_warning("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2479 oh->name, oh->_state);
2480 return -EINVAL;
2481 }
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002482 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002483
Rajendra Nayak28008522012-03-13 22:55:23 +05302484 if (!(oh->flags & HWMOD_INIT_NO_RESET))
Paul Walmsley64813c32012-04-18 19:10:03 -06002485 r = _reset(oh);
2486
2487 return r;
2488}
2489
2490/**
2491 * _setup_postsetup - transition to the appropriate state after _setup
2492 * @oh: struct omap_hwmod *
2493 *
2494 * Place an IP block represented by @oh into a "post-setup" state --
2495 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
2496 * this function is called at the end of _setup().) The postsetup
2497 * state for an IP block can be changed by calling
2498 * omap_hwmod_enter_postsetup_state() early in the boot process,
2499 * before one of the omap_hwmod_setup*() functions are called for the
2500 * IP block.
2501 *
2502 * The IP block stays in this state until a PM runtime-based driver is
2503 * loaded for that IP block. A post-setup state of IDLE is
2504 * appropriate for almost all IP blocks with runtime PM-enabled
2505 * drivers, since those drivers are able to enable the IP block. A
2506 * post-setup state of ENABLED is appropriate for kernels with PM
2507 * runtime disabled. The DISABLED state is appropriate for unusual IP
2508 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2509 * included, since the WDTIMER starts running on reset and will reset
2510 * the MPU if left active.
2511 *
2512 * This post-setup mechanism is deprecated. Once all of the OMAP
2513 * drivers have been converted to use PM runtime, and all of the IP
2514 * block data and interconnect data is available to the hwmod code, it
2515 * should be possible to replace this mechanism with a "lazy reset"
2516 * arrangement. In a "lazy reset" setup, each IP block is enabled
2517 * when the driver first probes, then all remaining IP blocks without
2518 * drivers are either shut down or enabled after the drivers have
2519 * loaded. However, this cannot take place until the above
2520 * preconditions have been met, since otherwise the late reset code
2521 * has no way of knowing which IP blocks are in use by drivers, and
2522 * which ones are unused.
2523 *
2524 * No return value.
2525 */
2526static void __init _setup_postsetup(struct omap_hwmod *oh)
2527{
2528 u8 postsetup_state;
2529
2530 if (oh->rst_lines_cnt > 0)
2531 return;
Benoit Cousson76e55892010-09-21 10:34:11 -06002532
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002533 postsetup_state = oh->_postsetup_state;
2534 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2535 postsetup_state = _HWMOD_STATE_ENABLED;
2536
2537 /*
2538 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2539 * it should be set by the core code as a runtime flag during startup
2540 */
2541 if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002542 (postsetup_state == _HWMOD_STATE_IDLE)) {
2543 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002544 postsetup_state = _HWMOD_STATE_ENABLED;
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002545 }
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002546
2547 if (postsetup_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002548 _idle(oh);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002549 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2550 _shutdown(oh);
2551 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2552 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2553 oh->name, postsetup_state);
Paul Walmsley63c85232009-09-03 20:14:03 +03002554
Paul Walmsley64813c32012-04-18 19:10:03 -06002555 return;
2556}
2557
2558/**
2559 * _setup - prepare IP block hardware for use
2560 * @oh: struct omap_hwmod *
2561 * @n: (unused, pass NULL)
2562 *
2563 * Configure the IP block represented by @oh. This may include
2564 * enabling the IP block, resetting it, and placing it into a
2565 * post-setup state, depending on the type of IP block and applicable
2566 * flags. IP blocks are reset to prevent any previous configuration
2567 * by the bootloader or previous operating system from interfering
2568 * with power management or other parts of the system. The reset can
2569 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2570 * two phases for hwmod initialization. Code called here generally
2571 * affects the IP block hardware, or system integration hardware
2572 * associated with the IP block. Returns 0.
2573 */
2574static int __init _setup(struct omap_hwmod *oh, void *data)
2575{
2576 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2577 return 0;
2578
2579 _setup_iclk_autoidle(oh);
2580
2581 if (!_setup_reset(oh))
2582 _setup_postsetup(oh);
2583
Paul Walmsley63c85232009-09-03 20:14:03 +03002584 return 0;
2585}
2586
Benoit Cousson0102b622010-12-21 21:31:27 -07002587/**
2588 * _register - register a struct omap_hwmod
2589 * @oh: struct omap_hwmod *
2590 *
2591 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2592 * already has been registered by the same name; -EINVAL if the
2593 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2594 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2595 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2596 * success.
2597 *
2598 * XXX The data should be copied into bootmem, so the original data
2599 * should be marked __initdata and freed after init. This would allow
2600 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2601 * that the copy process would be relatively complex due to the large number
2602 * of substructures.
2603 */
Benoit Cousson01592df2010-12-21 21:31:28 -07002604static int __init _register(struct omap_hwmod *oh)
Benoit Cousson0102b622010-12-21 21:31:27 -07002605{
Benoit Cousson0102b622010-12-21 21:31:27 -07002606 if (!oh || !oh->name || !oh->class || !oh->class->name ||
2607 (oh->_state != _HWMOD_STATE_UNKNOWN))
2608 return -EINVAL;
2609
Benoit Cousson0102b622010-12-21 21:31:27 -07002610 pr_debug("omap_hwmod: %s: registering\n", oh->name);
2611
Benoit Coussonce35b242010-12-21 21:31:28 -07002612 if (_lookup(oh->name))
2613 return -EEXIST;
Benoit Cousson0102b622010-12-21 21:31:27 -07002614
Benoit Cousson0102b622010-12-21 21:31:27 -07002615 list_add_tail(&oh->node, &omap_hwmod_list);
2616
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002617 INIT_LIST_HEAD(&oh->master_ports);
2618 INIT_LIST_HEAD(&oh->slave_ports);
Benoit Cousson0102b622010-12-21 21:31:27 -07002619 spin_lock_init(&oh->_lock);
2620
2621 oh->_state = _HWMOD_STATE_REGISTERED;
2622
Paul Walmsley569edd702011-02-23 00:14:06 -07002623 /*
2624 * XXX Rather than doing a strcmp(), this should test a flag
2625 * set in the hwmod data, inserted by the autogenerator code.
2626 */
2627 if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2628 mpu_oh = oh;
Benoit Cousson0102b622010-12-21 21:31:27 -07002629
Paul Walmsley569edd702011-02-23 00:14:06 -07002630 return 0;
Benoit Cousson0102b622010-12-21 21:31:27 -07002631}
Paul Walmsley63c85232009-09-03 20:14:03 +03002632
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002633/**
2634 * _alloc_links - return allocated memory for hwmod links
2635 * @ml: pointer to a struct omap_hwmod_link * for the master link
2636 * @sl: pointer to a struct omap_hwmod_link * for the slave link
2637 *
2638 * Return pointers to two struct omap_hwmod_link records, via the
2639 * addresses pointed to by @ml and @sl. Will first attempt to return
2640 * memory allocated as part of a large initial block, but if that has
2641 * been exhausted, will allocate memory itself. Since ideally this
2642 * second allocation path will never occur, the number of these
2643 * 'supplemental' allocations will be logged when debugging is
2644 * enabled. Returns 0.
2645 */
2646static int __init _alloc_links(struct omap_hwmod_link **ml,
2647 struct omap_hwmod_link **sl)
2648{
2649 unsigned int sz;
2650
2651 if ((free_ls + LINKS_PER_OCP_IF) <= max_ls) {
2652 *ml = &linkspace[free_ls++];
2653 *sl = &linkspace[free_ls++];
2654 return 0;
2655 }
2656
2657 sz = sizeof(struct omap_hwmod_link) * LINKS_PER_OCP_IF;
2658
2659 *sl = NULL;
2660 *ml = alloc_bootmem(sz);
2661
2662 memset(*ml, 0, sz);
2663
2664 *sl = (void *)(*ml) + sizeof(struct omap_hwmod_link);
2665
2666 ls_supp++;
2667 pr_debug("omap_hwmod: supplemental link allocations needed: %d\n",
2668 ls_supp * LINKS_PER_OCP_IF);
2669
2670 return 0;
2671};
2672
2673/**
2674 * _add_link - add an interconnect between two IP blocks
2675 * @oi: pointer to a struct omap_hwmod_ocp_if record
2676 *
2677 * Add struct omap_hwmod_link records connecting the master IP block
2678 * specified in @oi->master to @oi, and connecting the slave IP block
2679 * specified in @oi->slave to @oi. This code is assumed to run before
2680 * preemption or SMP has been enabled, thus avoiding the need for
2681 * locking in this code. Changes to this assumption will require
2682 * additional locking. Returns 0.
2683 */
2684static int __init _add_link(struct omap_hwmod_ocp_if *oi)
2685{
2686 struct omap_hwmod_link *ml, *sl;
2687
2688 pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2689 oi->slave->name);
2690
2691 _alloc_links(&ml, &sl);
2692
2693 ml->ocp_if = oi;
2694 INIT_LIST_HEAD(&ml->node);
2695 list_add(&ml->node, &oi->master->master_ports);
2696 oi->master->masters_cnt++;
2697
2698 sl->ocp_if = oi;
2699 INIT_LIST_HEAD(&sl->node);
2700 list_add(&sl->node, &oi->slave->slave_ports);
2701 oi->slave->slaves_cnt++;
2702
2703 return 0;
2704}
2705
2706/**
2707 * _register_link - register a struct omap_hwmod_ocp_if
2708 * @oi: struct omap_hwmod_ocp_if *
2709 *
2710 * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
2711 * has already been registered; -EINVAL if @oi is NULL or if the
2712 * record pointed to by @oi is missing required fields; or 0 upon
2713 * success.
2714 *
2715 * XXX The data should be copied into bootmem, so the original data
2716 * should be marked __initdata and freed after init. This would allow
2717 * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2718 */
2719static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2720{
2721 if (!oi || !oi->master || !oi->slave || !oi->user)
2722 return -EINVAL;
2723
2724 if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2725 return -EEXIST;
2726
2727 pr_debug("omap_hwmod: registering link from %s to %s\n",
2728 oi->master->name, oi->slave->name);
2729
2730 /*
2731 * Register the connected hwmods, if they haven't been
2732 * registered already
2733 */
2734 if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2735 _register(oi->master);
2736
2737 if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2738 _register(oi->slave);
2739
2740 _add_link(oi);
2741
2742 oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2743
2744 return 0;
2745}
2746
2747/**
2748 * _alloc_linkspace - allocate large block of hwmod links
2749 * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count
2750 *
2751 * Allocate a large block of struct omap_hwmod_link records. This
2752 * improves boot time significantly by avoiding the need to allocate
2753 * individual records one by one. If the number of records to
2754 * allocate in the block hasn't been manually specified, this function
2755 * will count the number of struct omap_hwmod_ocp_if records in @ois
2756 * and use that to determine the allocation size. For SoC families
2757 * that require multiple list registrations, such as OMAP3xxx, this
2758 * estimation process isn't optimal, so manual estimation is advised
2759 * in those cases. Returns -EEXIST if the allocation has already occurred
2760 * or 0 upon success.
2761 */
2762static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois)
2763{
2764 unsigned int i = 0;
2765 unsigned int sz;
2766
2767 if (linkspace) {
2768 WARN(1, "linkspace already allocated\n");
2769 return -EEXIST;
2770 }
2771
2772 if (max_ls == 0)
2773 while (ois[i++])
2774 max_ls += LINKS_PER_OCP_IF;
2775
2776 sz = sizeof(struct omap_hwmod_link) * max_ls;
2777
2778 pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n",
2779 __func__, sz, max_ls);
2780
2781 linkspace = alloc_bootmem(sz);
2782
2783 memset(linkspace, 0, sz);
2784
2785 return 0;
2786}
Paul Walmsley63c85232009-09-03 20:14:03 +03002787
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002788/* Static functions intended only for use in soc_ops field function pointers */
2789
2790/**
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002791 * _omap2xxx_wait_target_ready - wait for a module to leave slave idle
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002792 * @oh: struct omap_hwmod *
2793 *
2794 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2795 * does not have an IDLEST bit or if the module successfully leaves
2796 * slave idle; otherwise, pass along the return value of the
2797 * appropriate *_cm*_wait_module_ready() function.
2798 */
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002799static int _omap2xxx_wait_target_ready(struct omap_hwmod *oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002800{
2801 if (!oh)
2802 return -EINVAL;
2803
2804 if (oh->flags & HWMOD_NO_IDLEST)
2805 return 0;
2806
2807 if (!_find_mpu_rt_port(oh))
2808 return 0;
2809
2810 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2811
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002812 return omap2xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2813 oh->prcm.omap2.idlest_reg_id,
2814 oh->prcm.omap2.idlest_idle_bit);
2815}
2816
2817/**
2818 * _omap3xxx_wait_target_ready - wait for a module to leave slave idle
2819 * @oh: struct omap_hwmod *
2820 *
2821 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2822 * does not have an IDLEST bit or if the module successfully leaves
2823 * slave idle; otherwise, pass along the return value of the
2824 * appropriate *_cm*_wait_module_ready() function.
2825 */
2826static int _omap3xxx_wait_target_ready(struct omap_hwmod *oh)
2827{
2828 if (!oh)
2829 return -EINVAL;
2830
2831 if (oh->flags & HWMOD_NO_IDLEST)
2832 return 0;
2833
2834 if (!_find_mpu_rt_port(oh))
2835 return 0;
2836
2837 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2838
2839 return omap3xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2840 oh->prcm.omap2.idlest_reg_id,
2841 oh->prcm.omap2.idlest_idle_bit);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002842}
2843
2844/**
2845 * _omap4_wait_target_ready - wait for a module to leave slave idle
2846 * @oh: struct omap_hwmod *
2847 *
2848 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2849 * does not have an IDLEST bit or if the module successfully leaves
2850 * slave idle; otherwise, pass along the return value of the
2851 * appropriate *_cm*_wait_module_ready() function.
2852 */
2853static int _omap4_wait_target_ready(struct omap_hwmod *oh)
2854{
Paul Walmsley2b026d12012-09-23 17:28:18 -06002855 if (!oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002856 return -EINVAL;
2857
Paul Walmsley2b026d12012-09-23 17:28:18 -06002858 if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002859 return 0;
2860
2861 if (!_find_mpu_rt_port(oh))
2862 return 0;
2863
2864 /* XXX check module SIDLEMODE, hardreset status */
2865
2866 return omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition,
2867 oh->clkdm->cm_inst,
2868 oh->clkdm->clkdm_offs,
2869 oh->prcm.omap4.clkctrl_offs);
2870}
2871
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002872/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002873 * _am33xx_wait_target_ready - wait for a module to leave slave idle
2874 * @oh: struct omap_hwmod *
2875 *
2876 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2877 * does not have an IDLEST bit or if the module successfully leaves
2878 * slave idle; otherwise, pass along the return value of the
2879 * appropriate *_cm*_wait_module_ready() function.
2880 */
2881static int _am33xx_wait_target_ready(struct omap_hwmod *oh)
2882{
2883 if (!oh || !oh->clkdm)
2884 return -EINVAL;
2885
2886 if (oh->flags & HWMOD_NO_IDLEST)
2887 return 0;
2888
2889 if (!_find_mpu_rt_port(oh))
2890 return 0;
2891
2892 /* XXX check module SIDLEMODE, hardreset status */
2893
2894 return am33xx_cm_wait_module_ready(oh->clkdm->cm_inst,
2895 oh->clkdm->clkdm_offs,
2896 oh->prcm.omap4.clkctrl_offs);
2897}
2898
2899/**
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002900 * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2901 * @oh: struct omap_hwmod * to assert hardreset
2902 * @ohri: hardreset line data
2903 *
2904 * Call omap2_prm_assert_hardreset() with parameters extracted from
2905 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2906 * use as an soc_ops function pointer. Passes along the return value
2907 * from omap2_prm_assert_hardreset(). XXX This function is scheduled
2908 * for removal when the PRM code is moved into drivers/.
2909 */
2910static int _omap2_assert_hardreset(struct omap_hwmod *oh,
2911 struct omap_hwmod_rst_info *ohri)
2912{
2913 return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
2914 ohri->rst_shift);
2915}
2916
2917/**
2918 * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2919 * @oh: struct omap_hwmod * to deassert hardreset
2920 * @ohri: hardreset line data
2921 *
2922 * Call omap2_prm_deassert_hardreset() with parameters extracted from
2923 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2924 * use as an soc_ops function pointer. Passes along the return value
2925 * from omap2_prm_deassert_hardreset(). XXX This function is
2926 * scheduled for removal when the PRM code is moved into drivers/.
2927 */
2928static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
2929 struct omap_hwmod_rst_info *ohri)
2930{
2931 return omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
2932 ohri->rst_shift,
2933 ohri->st_shift);
2934}
2935
2936/**
2937 * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
2938 * @oh: struct omap_hwmod * to test hardreset
2939 * @ohri: hardreset line data
2940 *
2941 * Call omap2_prm_is_hardreset_asserted() with parameters extracted
2942 * from the hwmod @oh and the hardreset line data @ohri. Only
2943 * intended for use as an soc_ops function pointer. Passes along the
2944 * return value from omap2_prm_is_hardreset_asserted(). XXX This
2945 * function is scheduled for removal when the PRM code is moved into
2946 * drivers/.
2947 */
2948static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
2949 struct omap_hwmod_rst_info *ohri)
2950{
2951 return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
2952 ohri->st_shift);
2953}
2954
2955/**
2956 * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2957 * @oh: struct omap_hwmod * to assert hardreset
2958 * @ohri: hardreset line data
2959 *
2960 * Call omap4_prminst_assert_hardreset() with parameters extracted
2961 * from the hwmod @oh and the hardreset line data @ohri. Only
2962 * intended for use as an soc_ops function pointer. Passes along the
2963 * return value from omap4_prminst_assert_hardreset(). XXX This
2964 * function is scheduled for removal when the PRM code is moved into
2965 * drivers/.
2966 */
2967static int _omap4_assert_hardreset(struct omap_hwmod *oh,
2968 struct omap_hwmod_rst_info *ohri)
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002969{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002970 if (!oh->clkdm)
2971 return -EINVAL;
2972
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002973 return omap4_prminst_assert_hardreset(ohri->rst_shift,
2974 oh->clkdm->pwrdm.ptr->prcm_partition,
2975 oh->clkdm->pwrdm.ptr->prcm_offs,
2976 oh->prcm.omap4.rstctrl_offs);
2977}
2978
2979/**
2980 * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2981 * @oh: struct omap_hwmod * to deassert hardreset
2982 * @ohri: hardreset line data
2983 *
2984 * Call omap4_prminst_deassert_hardreset() with parameters extracted
2985 * from the hwmod @oh and the hardreset line data @ohri. Only
2986 * intended for use as an soc_ops function pointer. Passes along the
2987 * return value from omap4_prminst_deassert_hardreset(). XXX This
2988 * function is scheduled for removal when the PRM code is moved into
2989 * drivers/.
2990 */
2991static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
2992 struct omap_hwmod_rst_info *ohri)
2993{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002994 if (!oh->clkdm)
2995 return -EINVAL;
2996
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002997 if (ohri->st_shift)
2998 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
2999 oh->name, ohri->name);
3000 return omap4_prminst_deassert_hardreset(ohri->rst_shift,
3001 oh->clkdm->pwrdm.ptr->prcm_partition,
3002 oh->clkdm->pwrdm.ptr->prcm_offs,
3003 oh->prcm.omap4.rstctrl_offs);
3004}
3005
3006/**
3007 * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
3008 * @oh: struct omap_hwmod * to test hardreset
3009 * @ohri: hardreset line data
3010 *
3011 * Call omap4_prminst_is_hardreset_asserted() with parameters
3012 * extracted from the hwmod @oh and the hardreset line data @ohri.
3013 * Only intended for use as an soc_ops function pointer. Passes along
3014 * the return value from omap4_prminst_is_hardreset_asserted(). XXX
3015 * This function is scheduled for removal when the PRM code is moved
3016 * into drivers/.
3017 */
3018static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
3019 struct omap_hwmod_rst_info *ohri)
3020{
Paul Walmsley07b3a132012-06-20 20:11:36 -06003021 if (!oh->clkdm)
3022 return -EINVAL;
3023
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003024 return omap4_prminst_is_hardreset_asserted(ohri->rst_shift,
3025 oh->clkdm->pwrdm.ptr->prcm_partition,
3026 oh->clkdm->pwrdm.ptr->prcm_offs,
3027 oh->prcm.omap4.rstctrl_offs);
3028}
3029
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003030/**
3031 * _am33xx_assert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3032 * @oh: struct omap_hwmod * to assert hardreset
3033 * @ohri: hardreset line data
3034 *
3035 * Call am33xx_prminst_assert_hardreset() with parameters extracted
3036 * from the hwmod @oh and the hardreset line data @ohri. Only
3037 * intended for use as an soc_ops function pointer. Passes along the
3038 * return value from am33xx_prminst_assert_hardreset(). XXX This
3039 * function is scheduled for removal when the PRM code is moved into
3040 * drivers/.
3041 */
3042static int _am33xx_assert_hardreset(struct omap_hwmod *oh,
3043 struct omap_hwmod_rst_info *ohri)
3044
3045{
3046 return am33xx_prm_assert_hardreset(ohri->rst_shift,
3047 oh->clkdm->pwrdm.ptr->prcm_offs,
3048 oh->prcm.omap4.rstctrl_offs);
3049}
3050
3051/**
3052 * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3053 * @oh: struct omap_hwmod * to deassert hardreset
3054 * @ohri: hardreset line data
3055 *
3056 * Call am33xx_prminst_deassert_hardreset() with parameters extracted
3057 * from the hwmod @oh and the hardreset line data @ohri. Only
3058 * intended for use as an soc_ops function pointer. Passes along the
3059 * return value from am33xx_prminst_deassert_hardreset(). XXX This
3060 * function is scheduled for removal when the PRM code is moved into
3061 * drivers/.
3062 */
3063static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
3064 struct omap_hwmod_rst_info *ohri)
3065{
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003066 return am33xx_prm_deassert_hardreset(ohri->rst_shift,
Vaibhav Bedia3c06f1b2013-01-29 16:45:06 +05303067 ohri->st_shift,
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003068 oh->clkdm->pwrdm.ptr->prcm_offs,
3069 oh->prcm.omap4.rstctrl_offs,
3070 oh->prcm.omap4.rstst_offs);
3071}
3072
3073/**
3074 * _am33xx_is_hardreset_asserted - call AM33XX PRM hardreset fn with hwmod args
3075 * @oh: struct omap_hwmod * to test hardreset
3076 * @ohri: hardreset line data
3077 *
3078 * Call am33xx_prminst_is_hardreset_asserted() with parameters
3079 * extracted from the hwmod @oh and the hardreset line data @ohri.
3080 * Only intended for use as an soc_ops function pointer. Passes along
3081 * the return value from am33xx_prminst_is_hardreset_asserted(). XXX
3082 * This function is scheduled for removal when the PRM code is moved
3083 * into drivers/.
3084 */
3085static int _am33xx_is_hardreset_asserted(struct omap_hwmod *oh,
3086 struct omap_hwmod_rst_info *ohri)
3087{
3088 return am33xx_prm_is_hardreset_asserted(ohri->rst_shift,
3089 oh->clkdm->pwrdm.ptr->prcm_offs,
3090 oh->prcm.omap4.rstctrl_offs);
3091}
3092
Paul Walmsley63c85232009-09-03 20:14:03 +03003093/* Public functions */
3094
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003095u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03003096{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003097 if (oh->flags & HWMOD_16BIT_REG)
3098 return __raw_readw(oh->_mpu_rt_va + reg_offs);
3099 else
3100 return __raw_readl(oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003101}
3102
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003103void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03003104{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003105 if (oh->flags & HWMOD_16BIT_REG)
3106 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
3107 else
3108 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003109}
3110
Paul Walmsley887adea2010-07-26 16:34:33 -06003111/**
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003112 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
3113 * @oh: struct omap_hwmod *
3114 *
3115 * This is a public function exposed to drivers. Some drivers may need to do
3116 * some settings before and after resetting the device. Those drivers after
3117 * doing the necessary settings could use this function to start a reset by
3118 * setting the SYSCONFIG.SOFTRESET bit.
3119 */
3120int omap_hwmod_softreset(struct omap_hwmod *oh)
3121{
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003122 u32 v;
3123 int ret;
3124
3125 if (!oh || !(oh->_sysc_cache))
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003126 return -EINVAL;
3127
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003128 v = oh->_sysc_cache;
3129 ret = _set_softreset(oh, &v);
3130 if (ret)
3131 goto error;
3132 _write_sysconfig(v, oh);
3133
3134error:
3135 return ret;
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003136}
3137
3138/**
Paul Walmsley887adea2010-07-26 16:34:33 -06003139 * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode
3140 * @oh: struct omap_hwmod *
3141 * @idlemode: SIDLEMODE field bits (shifted to bit 0)
3142 *
3143 * Sets the IP block's OCP slave idlemode in hardware, and updates our
3144 * local copy. Intended to be used by drivers that have some erratum
3145 * that requires direct manipulation of the SIDLEMODE bits. Returns
3146 * -EINVAL if @oh is null, or passes along the return value from
3147 * _set_slave_idlemode().
3148 *
3149 * XXX Does this function have any current users? If not, we should
3150 * remove it; it is better to let the rest of the hwmod code handle this.
3151 * Any users of this function should be scrutinized carefully.
3152 */
Kevin Hilman46273e62010-01-26 20:13:03 -07003153int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode)
3154{
3155 u32 v;
3156 int retval = 0;
3157
3158 if (!oh)
3159 return -EINVAL;
3160
3161 v = oh->_sysc_cache;
3162
3163 retval = _set_slave_idlemode(oh, idlemode, &v);
3164 if (!retval)
3165 _write_sysconfig(v, oh);
3166
3167 return retval;
3168}
3169
Paul Walmsley63c85232009-09-03 20:14:03 +03003170/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003171 * omap_hwmod_lookup - look up a registered omap_hwmod by name
3172 * @name: name of the omap_hwmod to look up
3173 *
3174 * Given a @name of an omap_hwmod, return a pointer to the registered
3175 * struct omap_hwmod *, or NULL upon error.
3176 */
3177struct omap_hwmod *omap_hwmod_lookup(const char *name)
3178{
3179 struct omap_hwmod *oh;
3180
3181 if (!name)
3182 return NULL;
3183
Paul Walmsley63c85232009-09-03 20:14:03 +03003184 oh = _lookup(name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003185
3186 return oh;
3187}
3188
3189/**
3190 * omap_hwmod_for_each - call function for each registered omap_hwmod
3191 * @fn: pointer to a callback function
Paul Walmsley97d60162010-07-26 16:34:30 -06003192 * @data: void * data to pass to callback function
Paul Walmsley63c85232009-09-03 20:14:03 +03003193 *
3194 * Call @fn for each registered omap_hwmod, passing @data to each
3195 * function. @fn must return 0 for success or any other value for
3196 * failure. If @fn returns non-zero, the iteration across omap_hwmods
3197 * will stop and the non-zero return value will be passed to the
3198 * caller of omap_hwmod_for_each(). @fn is called with
3199 * omap_hwmod_for_each() held.
3200 */
Paul Walmsley97d60162010-07-26 16:34:30 -06003201int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
3202 void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03003203{
3204 struct omap_hwmod *temp_oh;
Govindraj.R30ebad92011-06-01 11:28:56 +05303205 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003206
3207 if (!fn)
3208 return -EINVAL;
3209
Paul Walmsley63c85232009-09-03 20:14:03 +03003210 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
Paul Walmsley97d60162010-07-26 16:34:30 -06003211 ret = (*fn)(temp_oh, data);
Paul Walmsley63c85232009-09-03 20:14:03 +03003212 if (ret)
3213 break;
3214 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003215
3216 return ret;
3217}
3218
Paul Walmsley63c85232009-09-03 20:14:03 +03003219/**
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003220 * omap_hwmod_register_links - register an array of hwmod links
3221 * @ois: pointer to an array of omap_hwmod_ocp_if to register
3222 *
3223 * Intended to be called early in boot before the clock framework is
3224 * initialized. If @ois is not null, will register all omap_hwmods
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003225 * listed in @ois that are valid for this chip. Returns -EINVAL if
3226 * omap_hwmod_init() hasn't been called before calling this function,
3227 * -ENOMEM if the link memory area can't be allocated, or 0 upon
3228 * success.
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003229 */
3230int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
3231{
3232 int r, i;
3233
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003234 if (!inited)
3235 return -EINVAL;
3236
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003237 if (!ois)
3238 return 0;
3239
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003240 if (!linkspace) {
3241 if (_alloc_linkspace(ois)) {
3242 pr_err("omap_hwmod: could not allocate link space\n");
3243 return -ENOMEM;
3244 }
3245 }
3246
3247 i = 0;
3248 do {
3249 r = _register_link(ois[i]);
3250 WARN(r && r != -EEXIST,
3251 "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3252 ois[i]->master->name, ois[i]->slave->name, r);
3253 } while (ois[++i]);
3254
3255 return 0;
3256}
3257
3258/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003259 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3260 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003261 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003262 * If the hwmod data corresponding to the MPU subsystem IP block
3263 * hasn't been initialized and set up yet, do so now. This must be
3264 * done first since sleep dependencies may be added from other hwmods
3265 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
3266 * return value.
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003267 */
Paul Walmsley381d0332012-04-19 00:58:22 -06003268static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003269{
Paul Walmsley381d0332012-04-19 00:58:22 -06003270 if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3271 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3272 __func__, MPU_INITIATOR_NAME);
3273 else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3274 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
Paul Walmsley63c85232009-09-03 20:14:03 +03003275}
3276
3277/**
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003278 * omap_hwmod_setup_one - set up a single hwmod
3279 * @oh_name: const char * name of the already-registered hwmod to set up
3280 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003281 * Initialize and set up a single hwmod. Intended to be used for a
3282 * small number of early devices, such as the timer IP blocks used for
3283 * the scheduler clock. Must be called after omap2_clk_init().
3284 * Resolves the struct clk names to struct clk pointers for each
3285 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
3286 * -EINVAL upon error or 0 upon success.
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003287 */
3288int __init omap_hwmod_setup_one(const char *oh_name)
3289{
3290 struct omap_hwmod *oh;
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003291
3292 pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3293
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003294 oh = _lookup(oh_name);
3295 if (!oh) {
3296 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3297 return -EINVAL;
3298 }
3299
Paul Walmsley381d0332012-04-19 00:58:22 -06003300 _ensure_mpu_hwmod_is_setup(oh);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003301
Paul Walmsley381d0332012-04-19 00:58:22 -06003302 _init(oh, NULL);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003303 _setup(oh, NULL);
3304
3305 return 0;
3306}
3307
3308/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003309 * omap_hwmod_setup_all - set up all registered IP blocks
Paul Walmsley63c85232009-09-03 20:14:03 +03003310 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003311 * Initialize and set up all IP blocks registered with the hwmod code.
3312 * Must be called after omap2_clk_init(). Resolves the struct clk
3313 * names to struct clk pointers for each registered omap_hwmod. Also
3314 * calls _setup() on each hwmod. Returns 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003315 */
Paul Walmsley550c8092011-02-28 11:58:14 -07003316static int __init omap_hwmod_setup_all(void)
Paul Walmsley63c85232009-09-03 20:14:03 +03003317{
Paul Walmsley381d0332012-04-19 00:58:22 -06003318 _ensure_mpu_hwmod_is_setup(NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003319
Paul Walmsley381d0332012-04-19 00:58:22 -06003320 omap_hwmod_for_each(_init, NULL);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003321 omap_hwmod_for_each(_setup, NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003322
3323 return 0;
3324}
Tony Lindgrenb76c8b12013-01-11 11:24:18 -08003325omap_core_initcall(omap_hwmod_setup_all);
Paul Walmsley63c85232009-09-03 20:14:03 +03003326
3327/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003328 * omap_hwmod_enable - enable an omap_hwmod
3329 * @oh: struct omap_hwmod *
3330 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003331 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
Paul Walmsley63c85232009-09-03 20:14:03 +03003332 * Returns -EINVAL on error or passes along the return value from _enable().
3333 */
3334int omap_hwmod_enable(struct omap_hwmod *oh)
3335{
3336 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003337 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003338
3339 if (!oh)
3340 return -EINVAL;
3341
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003342 spin_lock_irqsave(&oh->_lock, flags);
3343 r = _enable(oh);
3344 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003345
3346 return r;
3347}
3348
3349/**
3350 * omap_hwmod_idle - idle an omap_hwmod
3351 * @oh: struct omap_hwmod *
3352 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003353 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
Paul Walmsley63c85232009-09-03 20:14:03 +03003354 * Returns -EINVAL on error or passes along the return value from _idle().
3355 */
3356int omap_hwmod_idle(struct omap_hwmod *oh)
3357{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003358 unsigned long flags;
3359
Paul Walmsley63c85232009-09-03 20:14:03 +03003360 if (!oh)
3361 return -EINVAL;
3362
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003363 spin_lock_irqsave(&oh->_lock, flags);
3364 _idle(oh);
3365 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003366
3367 return 0;
3368}
3369
3370/**
3371 * omap_hwmod_shutdown - shutdown an omap_hwmod
3372 * @oh: struct omap_hwmod *
3373 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003374 * Shutdown an omap_hwmod @oh. Intended to be called by
Paul Walmsley63c85232009-09-03 20:14:03 +03003375 * omap_device_shutdown(). Returns -EINVAL on error or passes along
3376 * the return value from _shutdown().
3377 */
3378int omap_hwmod_shutdown(struct omap_hwmod *oh)
3379{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003380 unsigned long flags;
3381
Paul Walmsley63c85232009-09-03 20:14:03 +03003382 if (!oh)
3383 return -EINVAL;
3384
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003385 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003386 _shutdown(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003387 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003388
3389 return 0;
3390}
3391
3392/**
3393 * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
3394 * @oh: struct omap_hwmod *oh
3395 *
3396 * Intended to be called by the omap_device code.
3397 */
3398int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
3399{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003400 unsigned long flags;
3401
3402 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003403 _enable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003404 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003405
3406 return 0;
3407}
3408
3409/**
3410 * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
3411 * @oh: struct omap_hwmod *oh
3412 *
3413 * Intended to be called by the omap_device code.
3414 */
3415int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
3416{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003417 unsigned long flags;
3418
3419 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003420 _disable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003421 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003422
3423 return 0;
3424}
3425
3426/**
3427 * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
3428 * @oh: struct omap_hwmod *oh
3429 *
3430 * Intended to be called by drivers and core code when all posted
3431 * writes to a device must complete before continuing further
3432 * execution (for example, after clearing some device IRQSTATUS
3433 * register bits)
3434 *
3435 * XXX what about targets with multiple OCP threads?
3436 */
3437void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
3438{
3439 BUG_ON(!oh);
3440
Paul Walmsley43b40992010-02-22 22:09:34 -07003441 if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
Russell King4f8a4282012-02-07 10:59:37 +00003442 WARN(1, "omap_device: %s: OCP barrier impossible due to device configuration\n",
3443 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003444 return;
3445 }
3446
3447 /*
3448 * Forces posted writes to complete on the OCP thread handling
3449 * register writes
3450 */
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003451 omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003452}
3453
3454/**
3455 * omap_hwmod_reset - reset the hwmod
3456 * @oh: struct omap_hwmod *
3457 *
3458 * Under some conditions, a driver may wish to reset the entire device.
3459 * Called from omap_device code. Returns -EINVAL on error or passes along
Liam Girdwood9b579112010-09-21 10:34:09 -06003460 * the return value from _reset().
Paul Walmsley63c85232009-09-03 20:14:03 +03003461 */
3462int omap_hwmod_reset(struct omap_hwmod *oh)
3463{
3464 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003465 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003466
Liam Girdwood9b579112010-09-21 10:34:09 -06003467 if (!oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03003468 return -EINVAL;
3469
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003470 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003471 r = _reset(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003472 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003473
3474 return r;
3475}
3476
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003477/*
3478 * IP block data retrieval functions
3479 */
3480
Paul Walmsley63c85232009-09-03 20:14:03 +03003481/**
3482 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
3483 * @oh: struct omap_hwmod *
Peter Ujfalusidad41912012-11-21 16:15:17 -07003484 * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
Paul Walmsley63c85232009-09-03 20:14:03 +03003485 *
3486 * Count the number of struct resource array elements necessary to
3487 * contain omap_hwmod @oh resources. Intended to be called by code
3488 * that registers omap_devices. Intended to be used to determine the
3489 * size of a dynamically-allocated struct resource array, before
3490 * calling omap_hwmod_fill_resources(). Returns the number of struct
3491 * resource array elements needed.
3492 *
3493 * XXX This code is not optimized. It could attempt to merge adjacent
3494 * resource IDs.
3495 *
3496 */
Peter Ujfalusidad41912012-11-21 16:15:17 -07003497int omap_hwmod_count_resources(struct omap_hwmod *oh, unsigned long flags)
Paul Walmsley63c85232009-09-03 20:14:03 +03003498{
Peter Ujfalusidad41912012-11-21 16:15:17 -07003499 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003500
Peter Ujfalusidad41912012-11-21 16:15:17 -07003501 if (flags & IORESOURCE_IRQ)
3502 ret += _count_mpu_irqs(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03003503
Peter Ujfalusidad41912012-11-21 16:15:17 -07003504 if (flags & IORESOURCE_DMA)
3505 ret += _count_sdma_reqs(oh);
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003506
Peter Ujfalusidad41912012-11-21 16:15:17 -07003507 if (flags & IORESOURCE_MEM) {
3508 int i = 0;
3509 struct omap_hwmod_ocp_if *os;
3510 struct list_head *p = oh->slave_ports.next;
3511
3512 while (i < oh->slaves_cnt) {
3513 os = _fetch_next_ocp_if(&p, &i);
3514 ret += _count_ocp_if_addr_spaces(os);
3515 }
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003516 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003517
3518 return ret;
3519}
3520
3521/**
3522 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
3523 * @oh: struct omap_hwmod *
3524 * @res: pointer to the first element of an array of struct resource to fill
3525 *
3526 * Fill the struct resource array @res with resource data from the
3527 * omap_hwmod @oh. Intended to be called by code that registers
3528 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3529 * number of array elements filled.
3530 */
3531int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
3532{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003533 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003534 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003535 int i, j, mpu_irqs_cnt, sdma_reqs_cnt, addr_cnt;
Paul Walmsley63c85232009-09-03 20:14:03 +03003536 int r = 0;
3537
3538 /* For each IRQ, DMA, memory area, fill in array.*/
3539
Paul Walmsley212738a2011-07-09 19:14:06 -06003540 mpu_irqs_cnt = _count_mpu_irqs(oh);
3541 for (i = 0; i < mpu_irqs_cnt; i++) {
Paul Walmsley718bfd72009-12-08 16:34:16 -07003542 (res + r)->name = (oh->mpu_irqs + i)->name;
3543 (res + r)->start = (oh->mpu_irqs + i)->irq;
3544 (res + r)->end = (oh->mpu_irqs + i)->irq;
Paul Walmsley63c85232009-09-03 20:14:03 +03003545 (res + r)->flags = IORESOURCE_IRQ;
3546 r++;
3547 }
3548
Paul Walmsleybc614952011-07-09 19:14:07 -06003549 sdma_reqs_cnt = _count_sdma_reqs(oh);
3550 for (i = 0; i < sdma_reqs_cnt; i++) {
Benoit Cousson9ee9fff2010-09-21 10:34:08 -06003551 (res + r)->name = (oh->sdma_reqs + i)->name;
3552 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3553 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
Paul Walmsley63c85232009-09-03 20:14:03 +03003554 (res + r)->flags = IORESOURCE_DMA;
3555 r++;
3556 }
3557
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003558 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003559
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003560 i = 0;
3561 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003562 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley78183f32011-07-09 19:14:05 -06003563 addr_cnt = _count_ocp_if_addr_spaces(os);
Paul Walmsley63c85232009-09-03 20:14:03 +03003564
Paul Walmsley78183f32011-07-09 19:14:05 -06003565 for (j = 0; j < addr_cnt; j++) {
Kishon Vijay Abraham Icd503802011-02-24 12:51:45 -08003566 (res + r)->name = (os->addr + j)->name;
Paul Walmsley63c85232009-09-03 20:14:03 +03003567 (res + r)->start = (os->addr + j)->pa_start;
3568 (res + r)->end = (os->addr + j)->pa_end;
3569 (res + r)->flags = IORESOURCE_MEM;
3570 r++;
3571 }
3572 }
3573
3574 return r;
3575}
3576
3577/**
Vaibhav Hiremathb82b04e2012-08-29 15:18:11 +05303578 * omap_hwmod_fill_dma_resources - fill struct resource array with dma data
3579 * @oh: struct omap_hwmod *
3580 * @res: pointer to the array of struct resource to fill
3581 *
3582 * Fill the struct resource array @res with dma resource data from the
3583 * omap_hwmod @oh. Intended to be called by code that registers
3584 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3585 * number of array elements filled.
3586 */
3587int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res)
3588{
3589 int i, sdma_reqs_cnt;
3590 int r = 0;
3591
3592 sdma_reqs_cnt = _count_sdma_reqs(oh);
3593 for (i = 0; i < sdma_reqs_cnt; i++) {
3594 (res + r)->name = (oh->sdma_reqs + i)->name;
3595 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3596 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3597 (res + r)->flags = IORESOURCE_DMA;
3598 r++;
3599 }
3600
3601 return r;
3602}
3603
3604/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003605 * omap_hwmod_get_resource_byname - fetch IP block integration data by name
3606 * @oh: struct omap_hwmod * to operate on
3607 * @type: one of the IORESOURCE_* constants from include/linux/ioport.h
3608 * @name: pointer to the name of the data to fetch (optional)
3609 * @rsrc: pointer to a struct resource, allocated by the caller
3610 *
3611 * Retrieve MPU IRQ, SDMA request line, or address space start/end
3612 * data for the IP block pointed to by @oh. The data will be filled
3613 * into a struct resource record pointed to by @rsrc. The struct
3614 * resource must be allocated by the caller. When @name is non-null,
3615 * the data associated with the matching entry in the IRQ/SDMA/address
3616 * space hwmod data arrays will be returned. If @name is null, the
3617 * first array entry will be returned. Data order is not meaningful
3618 * in hwmod data, so callers are strongly encouraged to use a non-null
3619 * @name whenever possible to avoid unpredictable effects if hwmod
3620 * data is later added that causes data ordering to change. This
3621 * function is only intended for use by OMAP core code. Device
3622 * drivers should not call this function - the appropriate bus-related
3623 * data accessor functions should be used instead. Returns 0 upon
3624 * success or a negative error code upon error.
3625 */
3626int omap_hwmod_get_resource_byname(struct omap_hwmod *oh, unsigned int type,
3627 const char *name, struct resource *rsrc)
3628{
3629 int r;
3630 unsigned int irq, dma;
3631 u32 pa_start, pa_end;
3632
3633 if (!oh || !rsrc)
3634 return -EINVAL;
3635
3636 if (type == IORESOURCE_IRQ) {
3637 r = _get_mpu_irq_by_name(oh, name, &irq);
3638 if (r)
3639 return r;
3640
3641 rsrc->start = irq;
3642 rsrc->end = irq;
3643 } else if (type == IORESOURCE_DMA) {
3644 r = _get_sdma_req_by_name(oh, name, &dma);
3645 if (r)
3646 return r;
3647
3648 rsrc->start = dma;
3649 rsrc->end = dma;
3650 } else if (type == IORESOURCE_MEM) {
3651 r = _get_addr_space_by_name(oh, name, &pa_start, &pa_end);
3652 if (r)
3653 return r;
3654
3655 rsrc->start = pa_start;
3656 rsrc->end = pa_end;
3657 } else {
3658 return -EINVAL;
3659 }
3660
3661 rsrc->flags = type;
3662 rsrc->name = name;
3663
3664 return 0;
3665}
3666
3667/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003668 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3669 * @oh: struct omap_hwmod *
3670 *
3671 * Return the powerdomain pointer associated with the OMAP module
3672 * @oh's main clock. If @oh does not have a main clk, return the
3673 * powerdomain associated with the interface clock associated with the
3674 * module's MPU port. (XXX Perhaps this should use the SDMA port
3675 * instead?) Returns NULL on error, or a struct powerdomain * on
3676 * success.
3677 */
3678struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3679{
3680 struct clk *c;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003681 struct omap_hwmod_ocp_if *oi;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003682 struct clockdomain *clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003683 struct clk_hw_omap *clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003684
3685 if (!oh)
3686 return NULL;
3687
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003688 if (oh->clkdm)
3689 return oh->clkdm->pwrdm.ptr;
3690
Paul Walmsley63c85232009-09-03 20:14:03 +03003691 if (oh->_clk) {
3692 c = oh->_clk;
3693 } else {
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003694 oi = _find_mpu_rt_port(oh);
3695 if (!oi)
Paul Walmsley63c85232009-09-03 20:14:03 +03003696 return NULL;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003697 c = oi->_clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003698 }
3699
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003700 clk = to_clk_hw_omap(__clk_get_hw(c));
3701 clkdm = clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003702 if (!clkdm)
Thara Gopinathd5647c12010-03-31 04:16:29 -06003703 return NULL;
3704
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003705 return clkdm->pwrdm.ptr;
Paul Walmsley63c85232009-09-03 20:14:03 +03003706}
3707
3708/**
Paul Walmsleydb2a60b2010-07-26 16:34:33 -06003709 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3710 * @oh: struct omap_hwmod *
3711 *
3712 * Returns the virtual address corresponding to the beginning of the
3713 * module's register target, in the address range that is intended to
3714 * be used by the MPU. Returns the virtual address upon success or NULL
3715 * upon error.
3716 */
3717void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3718{
3719 if (!oh)
3720 return NULL;
3721
3722 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3723 return NULL;
3724
3725 if (oh->_state == _HWMOD_STATE_UNKNOWN)
3726 return NULL;
3727
3728 return oh->_mpu_rt_va;
3729}
3730
3731/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003732 * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
3733 * @oh: struct omap_hwmod *
3734 * @init_oh: struct omap_hwmod * (initiator)
3735 *
3736 * Add a sleep dependency between the initiator @init_oh and @oh.
3737 * Intended to be called by DSP/Bridge code via platform_data for the
3738 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3739 * code needs to add/del initiator dependencies dynamically
3740 * before/after accessing a device. Returns the return value from
3741 * _add_initiator_dep().
3742 *
3743 * XXX Keep a usecount in the clockdomain code
3744 */
3745int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
3746 struct omap_hwmod *init_oh)
3747{
3748 return _add_initiator_dep(oh, init_oh);
3749}
3750
3751/*
3752 * XXX what about functions for drivers to save/restore ocp_sysconfig
3753 * for context save/restore operations?
3754 */
3755
3756/**
3757 * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
3758 * @oh: struct omap_hwmod *
3759 * @init_oh: struct omap_hwmod * (initiator)
3760 *
3761 * Remove a sleep dependency between the initiator @init_oh and @oh.
3762 * Intended to be called by DSP/Bridge code via platform_data for the
3763 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3764 * code needs to add/del initiator dependencies dynamically
3765 * before/after accessing a device. Returns the return value from
3766 * _del_initiator_dep().
3767 *
3768 * XXX Keep a usecount in the clockdomain code
3769 */
3770int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
3771 struct omap_hwmod *init_oh)
3772{
3773 return _del_initiator_dep(oh, init_oh);
3774}
3775
3776/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003777 * omap_hwmod_enable_wakeup - allow device to wake up the system
3778 * @oh: struct omap_hwmod *
3779 *
3780 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
Govindraj.R2a1cc142012-04-05 02:59:32 -06003781 * send wakeups to the PRCM, and enable I/O ring wakeup events for
3782 * this IP block if it has dynamic mux entries. Eventually this
3783 * should set PRCM wakeup registers to cause the PRCM to receive
3784 * wakeup events from the module. Does not set any wakeup routing
3785 * registers beyond this point - if the module is to wake up any other
3786 * module or subsystem, that must be set separately. Called by
3787 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003788 */
3789int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
3790{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003791 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003792 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003793
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003794 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003795
3796 if (oh->class->sysc &&
3797 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3798 v = oh->_sysc_cache;
3799 _enable_wakeup(oh, &v);
3800 _write_sysconfig(v, oh);
3801 }
3802
Govindraj Receec002011-12-16 14:36:58 -07003803 _set_idle_ioring_wakeup(oh, true);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003804 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003805
3806 return 0;
3807}
3808
3809/**
3810 * omap_hwmod_disable_wakeup - prevent device from waking the system
3811 * @oh: struct omap_hwmod *
3812 *
3813 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
Govindraj.R2a1cc142012-04-05 02:59:32 -06003814 * from sending wakeups to the PRCM, and disable I/O ring wakeup
3815 * events for this IP block if it has dynamic mux entries. Eventually
3816 * this should clear PRCM wakeup registers to cause the PRCM to ignore
3817 * wakeup events from the module. Does not set any wakeup routing
3818 * registers beyond this point - if the module is to wake up any other
3819 * module or subsystem, that must be set separately. Called by
3820 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003821 */
3822int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
3823{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003824 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003825 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003826
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003827 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003828
3829 if (oh->class->sysc &&
3830 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3831 v = oh->_sysc_cache;
3832 _disable_wakeup(oh, &v);
3833 _write_sysconfig(v, oh);
3834 }
3835
Govindraj Receec002011-12-16 14:36:58 -07003836 _set_idle_ioring_wakeup(oh, false);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003837 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003838
3839 return 0;
3840}
Paul Walmsley43b40992010-02-22 22:09:34 -07003841
3842/**
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003843 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3844 * contained in the hwmod module.
3845 * @oh: struct omap_hwmod *
3846 * @name: name of the reset line to lookup and assert
3847 *
3848 * Some IP like dsp, ipu or iva contain processor that require
3849 * an HW reset line to be assert / deassert in order to enable fully
3850 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3851 * yet supported on this OMAP; otherwise, passes along the return value
3852 * from _assert_hardreset().
3853 */
3854int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
3855{
3856 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003857 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003858
3859 if (!oh)
3860 return -EINVAL;
3861
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003862 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003863 ret = _assert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003864 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003865
3866 return ret;
3867}
3868
3869/**
3870 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3871 * contained in the hwmod module.
3872 * @oh: struct omap_hwmod *
3873 * @name: name of the reset line to look up and deassert
3874 *
3875 * Some IP like dsp, ipu or iva contain processor that require
3876 * an HW reset line to be assert / deassert in order to enable fully
3877 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3878 * yet supported on this OMAP; otherwise, passes along the return value
3879 * from _deassert_hardreset().
3880 */
3881int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
3882{
3883 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003884 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003885
3886 if (!oh)
3887 return -EINVAL;
3888
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003889 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003890 ret = _deassert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003891 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003892
3893 return ret;
3894}
3895
3896/**
3897 * omap_hwmod_read_hardreset - read the HW reset line state of submodules
3898 * contained in the hwmod module
3899 * @oh: struct omap_hwmod *
3900 * @name: name of the reset line to look up and read
3901 *
3902 * Return the current state of the hwmod @oh's reset line named @name:
3903 * returns -EINVAL upon parameter error or if this operation
3904 * is unsupported on the current OMAP; otherwise, passes along the return
3905 * value from _read_hardreset().
3906 */
3907int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
3908{
3909 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003910 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003911
3912 if (!oh)
3913 return -EINVAL;
3914
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003915 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003916 ret = _read_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003917 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003918
3919 return ret;
3920}
3921
3922
3923/**
Paul Walmsley43b40992010-02-22 22:09:34 -07003924 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
3925 * @classname: struct omap_hwmod_class name to search for
3926 * @fn: callback function pointer to call for each hwmod in class @classname
3927 * @user: arbitrary context data to pass to the callback function
3928 *
Benoit Coussonce35b242010-12-21 21:31:28 -07003929 * For each omap_hwmod of class @classname, call @fn.
3930 * If the callback function returns something other than
Paul Walmsley43b40992010-02-22 22:09:34 -07003931 * zero, the iterator is terminated, and the callback function's return
3932 * value is passed back to the caller. Returns 0 upon success, -EINVAL
3933 * if @classname or @fn are NULL, or passes back the error code from @fn.
3934 */
3935int omap_hwmod_for_each_by_class(const char *classname,
3936 int (*fn)(struct omap_hwmod *oh,
3937 void *user),
3938 void *user)
3939{
3940 struct omap_hwmod *temp_oh;
3941 int ret = 0;
3942
3943 if (!classname || !fn)
3944 return -EINVAL;
3945
3946 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
3947 __func__, classname);
3948
Paul Walmsley43b40992010-02-22 22:09:34 -07003949 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3950 if (!strcmp(temp_oh->class->name, classname)) {
3951 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
3952 __func__, temp_oh->name);
3953 ret = (*fn)(temp_oh, user);
3954 if (ret)
3955 break;
3956 }
3957 }
3958
Paul Walmsley43b40992010-02-22 22:09:34 -07003959 if (ret)
3960 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
3961 __func__, ret);
3962
3963 return ret;
3964}
3965
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003966/**
3967 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
3968 * @oh: struct omap_hwmod *
3969 * @state: state that _setup() should leave the hwmod in
3970 *
Paul Walmsley550c8092011-02-28 11:58:14 -07003971 * Sets the hwmod state that @oh will enter at the end of _setup()
Paul Walmsley64813c32012-04-18 19:10:03 -06003972 * (called by omap_hwmod_setup_*()). See also the documentation
3973 * for _setup_postsetup(), above. Returns 0 upon success or
3974 * -EINVAL if there is a problem with the arguments or if the hwmod is
3975 * in the wrong state.
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003976 */
3977int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
3978{
3979 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003980 unsigned long flags;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003981
3982 if (!oh)
3983 return -EINVAL;
3984
3985 if (state != _HWMOD_STATE_DISABLED &&
3986 state != _HWMOD_STATE_ENABLED &&
3987 state != _HWMOD_STATE_IDLE)
3988 return -EINVAL;
3989
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003990 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003991
3992 if (oh->_state != _HWMOD_STATE_REGISTERED) {
3993 ret = -EINVAL;
3994 goto ohsps_unlock;
3995 }
3996
3997 oh->_postsetup_state = state;
3998 ret = 0;
3999
4000ohsps_unlock:
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07004001 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07004002
4003 return ret;
4004}
Kevin Hilmanc80705aa2010-12-21 21:31:55 -07004005
4006/**
4007 * omap_hwmod_get_context_loss_count - get lost context count
4008 * @oh: struct omap_hwmod *
4009 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004010 * Returns the context loss count of associated @oh
4011 * upon success, or zero if no context loss data is available.
Kevin Hilmanc80705aa2010-12-21 21:31:55 -07004012 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004013 * On OMAP4, this queries the per-hwmod context loss register,
4014 * assuming one exists. If not, or on OMAP2/3, this queries the
4015 * enclosing powerdomain context loss count.
Kevin Hilmanc80705aa2010-12-21 21:31:55 -07004016 */
Tomi Valkeinenfc013872011-06-09 16:56:23 +03004017int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
Kevin Hilmanc80705aa2010-12-21 21:31:55 -07004018{
4019 struct powerdomain *pwrdm;
4020 int ret = 0;
4021
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004022 if (soc_ops.get_context_lost)
4023 return soc_ops.get_context_lost(oh);
4024
Kevin Hilmanc80705aa2010-12-21 21:31:55 -07004025 pwrdm = omap_hwmod_get_pwrdm(oh);
4026 if (pwrdm)
4027 ret = pwrdm_get_context_loss_count(pwrdm);
4028
4029 return ret;
4030}
Paul Walmsley43b01642011-03-10 03:50:07 -07004031
4032/**
4033 * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
4034 * @oh: struct omap_hwmod *
4035 *
4036 * Prevent the hwmod @oh from being reset during the setup process.
4037 * Intended for use by board-*.c files on boards with devices that
4038 * cannot tolerate being reset. Must be called before the hwmod has
4039 * been set up. Returns 0 upon success or negative error code upon
4040 * failure.
4041 */
4042int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
4043{
4044 if (!oh)
4045 return -EINVAL;
4046
4047 if (oh->_state != _HWMOD_STATE_REGISTERED) {
4048 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
4049 oh->name);
4050 return -EINVAL;
4051 }
4052
4053 oh->flags |= HWMOD_INIT_NO_RESET;
4054
4055 return 0;
4056}
Tero Kristoabc2d542011-12-16 14:36:59 -07004057
4058/**
4059 * omap_hwmod_pad_route_irq - route an I/O pad wakeup to a particular MPU IRQ
4060 * @oh: struct omap_hwmod * containing hwmod mux entries
4061 * @pad_idx: array index in oh->mux of the hwmod mux entry to route wakeup
4062 * @irq_idx: the hwmod mpu_irqs array index of the IRQ to trigger on wakeup
4063 *
4064 * When an I/O pad wakeup arrives for the dynamic or wakeup hwmod mux
4065 * entry number @pad_idx for the hwmod @oh, trigger the interrupt
4066 * service routine for the hwmod's mpu_irqs array index @irq_idx. If
4067 * this function is not called for a given pad_idx, then the ISR
4068 * associated with @oh's first MPU IRQ will be triggered when an I/O
4069 * pad wakeup occurs on that pad. Note that @pad_idx is the index of
4070 * the _dynamic or wakeup_ entry: if there are other entries not
4071 * marked with OMAP_DEVICE_PAD_WAKEUP or OMAP_DEVICE_PAD_REMUX, these
4072 * entries are NOT COUNTED in the dynamic pad index. This function
4073 * must be called separately for each pad that requires its interrupt
4074 * to be re-routed this way. Returns -EINVAL if there is an argument
4075 * problem or if @oh does not have hwmod mux entries or MPU IRQs;
4076 * returns -ENOMEM if memory cannot be allocated; or 0 upon success.
4077 *
4078 * XXX This function interface is fragile. Rather than using array
4079 * indexes, which are subject to unpredictable change, it should be
4080 * using hwmod IRQ names, and some other stable key for the hwmod mux
4081 * pad records.
4082 */
4083int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx)
4084{
4085 int nr_irqs;
4086
4087 might_sleep();
4088
4089 if (!oh || !oh->mux || !oh->mpu_irqs || pad_idx < 0 ||
4090 pad_idx >= oh->mux->nr_pads_dynamic)
4091 return -EINVAL;
4092
4093 /* Check the number of available mpu_irqs */
4094 for (nr_irqs = 0; oh->mpu_irqs[nr_irqs].irq >= 0; nr_irqs++)
4095 ;
4096
4097 if (irq_idx >= nr_irqs)
4098 return -EINVAL;
4099
4100 if (!oh->mux->irqs) {
4101 /* XXX What frees this? */
4102 oh->mux->irqs = kzalloc(sizeof(int) * oh->mux->nr_pads_dynamic,
4103 GFP_KERNEL);
4104 if (!oh->mux->irqs)
4105 return -ENOMEM;
4106 }
4107 oh->mux->irqs[pad_idx] = irq_idx;
4108
4109 return 0;
4110}
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004111
4112/**
4113 * omap_hwmod_init - initialize the hwmod code
4114 *
4115 * Sets up some function pointers needed by the hwmod code to operate on the
4116 * currently-booted SoC. Intended to be called once during kernel init
4117 * before any hwmods are registered. No return value.
4118 */
4119void __init omap_hwmod_init(void)
4120{
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06004121 if (cpu_is_omap24xx()) {
4122 soc_ops.wait_target_ready = _omap2xxx_wait_target_ready;
4123 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4124 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4125 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
4126 } else if (cpu_is_omap34xx()) {
4127 soc_ops.wait_target_ready = _omap3xxx_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06004128 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4129 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4130 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
R Sricharan05e152c2012-06-05 16:21:32 +05304131 } else if (cpu_is_omap44xx() || soc_is_omap54xx()) {
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004132 soc_ops.enable_module = _omap4_enable_module;
4133 soc_ops.disable_module = _omap4_disable_module;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004134 soc_ops.wait_target_ready = _omap4_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06004135 soc_ops.assert_hardreset = _omap4_assert_hardreset;
4136 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
4137 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
Kevin Hilman0a179ea2012-06-18 12:12:25 -06004138 soc_ops.init_clkdm = _init_clkdm;
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004139 soc_ops.update_context_lost = _omap4_update_context_lost;
4140 soc_ops.get_context_lost = _omap4_get_context_lost;
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06004141 } else if (soc_is_am33xx()) {
4142 soc_ops.enable_module = _am33xx_enable_module;
4143 soc_ops.disable_module = _am33xx_disable_module;
4144 soc_ops.wait_target_ready = _am33xx_wait_target_ready;
4145 soc_ops.assert_hardreset = _am33xx_assert_hardreset;
4146 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
4147 soc_ops.is_hardreset_asserted = _am33xx_is_hardreset_asserted;
4148 soc_ops.init_clkdm = _init_clkdm;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004149 } else {
4150 WARN(1, "omap_hwmod: unknown SoC type\n");
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004151 }
4152
4153 inited = true;
4154}
Tony Lindgren68c9a952012-07-06 00:58:43 -07004155
4156/**
4157 * omap_hwmod_get_main_clk - get pointer to main clock name
4158 * @oh: struct omap_hwmod *
4159 *
4160 * Returns the main clock name assocated with @oh upon success,
4161 * or NULL if @oh is NULL.
4162 */
4163const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
4164{
4165 if (!oh)
4166 return NULL;
4167
4168 return oh->main_clk;
4169}