blob: 6804d474a47da8492cf6a2e82bc65194acf505cf [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
613 oh->_int_flags |= _HWMOD_WAKEUP_ENABLED;
614
615 return 0;
616}
617
618/**
619 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
620 * @oh: struct omap_hwmod *
621 *
622 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
623 * upon error or 0 upon success.
624 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700625static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300626{
Paul Walmsley43b40992010-02-22 22:09:34 -0700627 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700628 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200629 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
630 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300631 return -EINVAL;
632
Paul Walmsley43b40992010-02-22 22:09:34 -0700633 if (!oh->class->sysc->sysc_fields) {
634 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700635 return -EINVAL;
636 }
637
Benoit Cousson1fe74112011-07-01 22:54:03 +0200638 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
639 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
Paul Walmsley63c85232009-09-03 20:14:03 +0300640
Benoit Cousson86009eb2010-12-21 21:31:28 -0700641 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
642 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200643 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
Djamil Elaidi561038f2012-06-17 11:57:51 -0600644 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700645
Paul Walmsley63c85232009-09-03 20:14:03 +0300646 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
647
648 oh->_int_flags &= ~_HWMOD_WAKEUP_ENABLED;
649
650 return 0;
651}
652
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700653static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
654{
Rajendra Nayakc4a1ea22012-04-27 16:32:53 +0530655 struct clk_hw_omap *clk;
656
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700657 if (oh->clkdm) {
658 return oh->clkdm;
659 } else if (oh->_clk) {
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700660 clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
661 return clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700662 }
663 return NULL;
664}
665
Paul Walmsley63c85232009-09-03 20:14:03 +0300666/**
667 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
668 * @oh: struct omap_hwmod *
669 *
670 * Prevent the hardware module @oh from entering idle while the
671 * hardare module initiator @init_oh is active. Useful when a module
672 * will be accessed by a particular initiator (e.g., if a module will
673 * be accessed by the IVA, there should be a sleepdep between the IVA
674 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700675 * mode. If the clockdomain is marked as not needing autodeps, return
676 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
677 * passes along clkdm_add_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300678 */
679static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
680{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700681 struct clockdomain *clkdm, *init_clkdm;
682
683 clkdm = _get_clkdm(oh);
684 init_clkdm = _get_clkdm(init_oh);
685
686 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300687 return -EINVAL;
688
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700689 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700690 return 0;
691
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700692 return clkdm_add_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300693}
694
695/**
696 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
697 * @oh: struct omap_hwmod *
698 *
699 * Allow the hardware module @oh to enter idle while the hardare
700 * module initiator @init_oh is active. Useful when a module will not
701 * be accessed by a particular initiator (e.g., if a module will not
702 * be accessed by the IVA, there should be no sleepdep between the IVA
703 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700704 * mode. If the clockdomain is marked as not needing autodeps, return
705 * 0 without doing anything. Returns -EINVAL upon error or passes
706 * along clkdm_del_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300707 */
708static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
709{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700710 struct clockdomain *clkdm, *init_clkdm;
711
712 clkdm = _get_clkdm(oh);
713 init_clkdm = _get_clkdm(init_oh);
714
715 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300716 return -EINVAL;
717
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700718 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700719 return 0;
720
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700721 return clkdm_del_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300722}
723
724/**
725 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
726 * @oh: struct omap_hwmod *
727 *
728 * Called from _init_clocks(). Populates the @oh _clk (main
729 * functional clock pointer) if a main_clk is present. Returns 0 on
730 * success or -EINVAL on error.
731 */
732static int _init_main_clk(struct omap_hwmod *oh)
733{
Paul Walmsley63c85232009-09-03 20:14:03 +0300734 int ret = 0;
735
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700736 if (!oh->main_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300737 return 0;
738
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600739 oh->_clk = clk_get(NULL, oh->main_clk);
740 if (IS_ERR(oh->_clk)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600741 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
742 oh->name, oh->main_clk);
Benoit Cousson63403382010-05-20 12:31:10 -0600743 return -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600744 }
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600745 /*
746 * HACK: This needs a re-visit once clk_prepare() is implemented
747 * to do something meaningful. Today its just a no-op.
748 * If clk_prepare() is used at some point to do things like
749 * voltage scaling etc, then this would have to be moved to
750 * some point where subsystems like i2c and pmic become
751 * available.
752 */
753 clk_prepare(oh->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300754
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700755 if (!_get_clkdm(oh))
Paul Walmsley3bb05db2012-09-23 17:28:18 -0600756 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600757 oh->name, oh->main_clk);
Kevin Hilman81d7c6f2009-12-08 16:34:24 -0700758
Paul Walmsley63c85232009-09-03 20:14:03 +0300759 return ret;
760}
761
762/**
Paul Walmsley887adea2010-07-26 16:34:33 -0600763 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
Paul Walmsley63c85232009-09-03 20:14:03 +0300764 * @oh: struct omap_hwmod *
765 *
766 * Called from _init_clocks(). Populates the @oh OCP slave interface
767 * clock pointers. Returns 0 on success or -EINVAL on error.
768 */
769static int _init_interface_clks(struct omap_hwmod *oh)
770{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600771 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600772 struct list_head *p;
Paul Walmsley63c85232009-09-03 20:14:03 +0300773 struct clk *c;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600774 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300775 int ret = 0;
776
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600777 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600778
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600779 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600780 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700781 if (!os->clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300782 continue;
783
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600784 c = clk_get(NULL, os->clk);
785 if (IS_ERR(c)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600786 pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
787 oh->name, os->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300788 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600789 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300790 os->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600791 /*
792 * HACK: This needs a re-visit once clk_prepare() is implemented
793 * to do something meaningful. Today its just a no-op.
794 * If clk_prepare() is used at some point to do things like
795 * voltage scaling etc, then this would have to be moved to
796 * some point where subsystems like i2c and pmic become
797 * available.
798 */
799 clk_prepare(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300800 }
801
802 return ret;
803}
804
805/**
806 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
807 * @oh: struct omap_hwmod *
808 *
809 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
810 * clock pointers. Returns 0 on success or -EINVAL on error.
811 */
812static int _init_opt_clks(struct omap_hwmod *oh)
813{
814 struct omap_hwmod_opt_clk *oc;
815 struct clk *c;
816 int i;
817 int ret = 0;
818
819 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600820 c = clk_get(NULL, oc->clk);
821 if (IS_ERR(c)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600822 pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
823 oh->name, oc->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300824 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600825 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300826 oc->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600827 /*
828 * HACK: This needs a re-visit once clk_prepare() is implemented
829 * to do something meaningful. Today its just a no-op.
830 * If clk_prepare() is used at some point to do things like
831 * voltage scaling etc, then this would have to be moved to
832 * some point where subsystems like i2c and pmic become
833 * available.
834 */
835 clk_prepare(oc->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300836 }
837
838 return ret;
839}
840
841/**
842 * _enable_clocks - enable hwmod main clock and interface clocks
843 * @oh: struct omap_hwmod *
844 *
845 * Enables all clocks necessary for register reads and writes to succeed
846 * on the hwmod @oh. Returns 0.
847 */
848static int _enable_clocks(struct omap_hwmod *oh)
849{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600850 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600851 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600852 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300853
854 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
855
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600856 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300857 clk_enable(oh->_clk);
858
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600859 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600860
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600861 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600862 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300863
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600864 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
865 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300866 }
867
868 /* The opt clocks are controlled by the device driver. */
869
870 return 0;
871}
872
873/**
874 * _disable_clocks - disable hwmod main clock and interface clocks
875 * @oh: struct omap_hwmod *
876 *
877 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
878 */
879static int _disable_clocks(struct omap_hwmod *oh)
880{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600881 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600882 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600883 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300884
885 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
886
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600887 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300888 clk_disable(oh->_clk);
889
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600890 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600891
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600892 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600893 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300894
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600895 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
896 clk_disable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300897 }
898
899 /* The opt clocks are controlled by the device driver. */
900
901 return 0;
902}
903
Benoit Cousson96835af2010-09-21 18:57:58 +0200904static void _enable_optional_clocks(struct omap_hwmod *oh)
905{
906 struct omap_hwmod_opt_clk *oc;
907 int i;
908
909 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
910
911 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
912 if (oc->_clk) {
913 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600914 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200915 clk_enable(oc->_clk);
916 }
917}
918
919static void _disable_optional_clocks(struct omap_hwmod *oh)
920{
921 struct omap_hwmod_opt_clk *oc;
922 int i;
923
924 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
925
926 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
927 if (oc->_clk) {
928 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600929 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200930 clk_disable(oc->_clk);
931 }
932}
933
Paul Walmsley63c85232009-09-03 20:14:03 +0300934/**
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600935 * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
Benoit Cousson45c38252011-07-10 05:56:33 -0600936 * @oh: struct omap_hwmod *
937 *
938 * Enables the PRCM module mode related to the hwmod @oh.
939 * No return value.
940 */
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600941static void _omap4_enable_module(struct omap_hwmod *oh)
Benoit Cousson45c38252011-07-10 05:56:33 -0600942{
Benoit Cousson45c38252011-07-10 05:56:33 -0600943 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
944 return;
945
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600946 pr_debug("omap_hwmod: %s: %s: %d\n",
947 oh->name, __func__, oh->prcm.omap4.modulemode);
Benoit Cousson45c38252011-07-10 05:56:33 -0600948
949 omap4_cminst_module_enable(oh->prcm.omap4.modulemode,
950 oh->clkdm->prcm_partition,
951 oh->clkdm->cm_inst,
952 oh->clkdm->clkdm_offs,
953 oh->prcm.omap4.clkctrl_offs);
954}
955
956/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600957 * _am33xx_enable_module - enable CLKCTRL modulemode on AM33XX
958 * @oh: struct omap_hwmod *
959 *
960 * Enables the PRCM module mode related to the hwmod @oh.
961 * No return value.
962 */
963static void _am33xx_enable_module(struct omap_hwmod *oh)
964{
965 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
966 return;
967
968 pr_debug("omap_hwmod: %s: %s: %d\n",
969 oh->name, __func__, oh->prcm.omap4.modulemode);
970
971 am33xx_cm_module_enable(oh->prcm.omap4.modulemode, oh->clkdm->cm_inst,
972 oh->clkdm->clkdm_offs,
973 oh->prcm.omap4.clkctrl_offs);
974}
975
976/**
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800977 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
978 * @oh: struct omap_hwmod *
979 *
980 * Wait for a module @oh to enter slave idle. Returns 0 if the module
981 * does not have an IDLEST bit or if the module successfully enters
982 * slave idle; otherwise, pass along the return value of the
983 * appropriate *_cm*_wait_module_idle() function.
984 */
985static int _omap4_wait_target_disable(struct omap_hwmod *oh)
986{
Paul Walmsley2b026d12012-09-23 17:28:18 -0600987 if (!oh)
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800988 return -EINVAL;
989
Paul Walmsley2b026d12012-09-23 17:28:18 -0600990 if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800991 return 0;
992
993 if (oh->flags & HWMOD_NO_IDLEST)
994 return 0;
995
996 return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition,
997 oh->clkdm->cm_inst,
998 oh->clkdm->clkdm_offs,
999 oh->prcm.omap4.clkctrl_offs);
1000}
1001
1002/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001003 * _am33xx_wait_target_disable - wait for a module to be disabled on AM33XX
1004 * @oh: struct omap_hwmod *
1005 *
1006 * Wait for a module @oh to enter slave idle. Returns 0 if the module
1007 * does not have an IDLEST bit or if the module successfully enters
1008 * slave idle; otherwise, pass along the return value of the
1009 * appropriate *_cm*_wait_module_idle() function.
1010 */
1011static int _am33xx_wait_target_disable(struct omap_hwmod *oh)
1012{
1013 if (!oh)
1014 return -EINVAL;
1015
1016 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1017 return 0;
1018
1019 if (oh->flags & HWMOD_NO_IDLEST)
1020 return 0;
1021
1022 return am33xx_cm_wait_module_idle(oh->clkdm->cm_inst,
1023 oh->clkdm->clkdm_offs,
1024 oh->prcm.omap4.clkctrl_offs);
1025}
1026
1027/**
Paul Walmsley212738a2011-07-09 19:14:06 -06001028 * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
1029 * @oh: struct omap_hwmod *oh
1030 *
1031 * Count and return the number of MPU IRQs associated with the hwmod
1032 * @oh. Used to allocate struct resource data. Returns 0 if @oh is
1033 * NULL.
1034 */
1035static int _count_mpu_irqs(struct omap_hwmod *oh)
1036{
1037 struct omap_hwmod_irq_info *ohii;
1038 int i = 0;
1039
1040 if (!oh || !oh->mpu_irqs)
1041 return 0;
1042
1043 do {
1044 ohii = &oh->mpu_irqs[i++];
1045 } while (ohii->irq != -1);
1046
sricharancc1b0762011-11-23 14:35:07 -08001047 return i-1;
Paul Walmsley212738a2011-07-09 19:14:06 -06001048}
1049
1050/**
Paul Walmsleybc614952011-07-09 19:14:07 -06001051 * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
1052 * @oh: struct omap_hwmod *oh
1053 *
1054 * Count and return the number of SDMA request lines associated with
1055 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1056 * if @oh is NULL.
1057 */
1058static int _count_sdma_reqs(struct omap_hwmod *oh)
1059{
1060 struct omap_hwmod_dma_info *ohdi;
1061 int i = 0;
1062
1063 if (!oh || !oh->sdma_reqs)
1064 return 0;
1065
1066 do {
1067 ohdi = &oh->sdma_reqs[i++];
1068 } while (ohdi->dma_req != -1);
1069
sricharancc1b0762011-11-23 14:35:07 -08001070 return i-1;
Paul Walmsleybc614952011-07-09 19:14:07 -06001071}
1072
1073/**
Paul Walmsley78183f32011-07-09 19:14:05 -06001074 * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
1075 * @oh: struct omap_hwmod *oh
1076 *
1077 * Count and return the number of address space ranges associated with
1078 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1079 * if @oh is NULL.
1080 */
1081static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
1082{
1083 struct omap_hwmod_addr_space *mem;
1084 int i = 0;
1085
1086 if (!os || !os->addr)
1087 return 0;
1088
1089 do {
1090 mem = &os->addr[i++];
1091 } while (mem->pa_start != mem->pa_end);
1092
sricharancc1b0762011-11-23 14:35:07 -08001093 return i-1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001094}
1095
1096/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001097 * _get_mpu_irq_by_name - fetch MPU interrupt line number by name
1098 * @oh: struct omap_hwmod * to operate on
1099 * @name: pointer to the name of the MPU interrupt number to fetch (optional)
1100 * @irq: pointer to an unsigned int to store the MPU IRQ number to
1101 *
1102 * Retrieve a MPU hardware IRQ line number named by @name associated
1103 * with the IP block pointed to by @oh. The IRQ number will be filled
1104 * into the address pointed to by @dma. When @name is non-null, the
1105 * IRQ line number associated with the named entry will be returned.
1106 * If @name is null, the first matching entry will be returned. Data
1107 * order is not meaningful in hwmod data, so callers are strongly
1108 * encouraged to use a non-null @name whenever possible to avoid
1109 * unpredictable effects if hwmod data is later added that causes data
1110 * ordering to change. Returns 0 upon success or a negative error
1111 * code upon error.
1112 */
1113static int _get_mpu_irq_by_name(struct omap_hwmod *oh, const char *name,
1114 unsigned int *irq)
1115{
1116 int i;
1117 bool found = false;
1118
1119 if (!oh->mpu_irqs)
1120 return -ENOENT;
1121
1122 i = 0;
1123 while (oh->mpu_irqs[i].irq != -1) {
1124 if (name == oh->mpu_irqs[i].name ||
1125 !strcmp(name, oh->mpu_irqs[i].name)) {
1126 found = true;
1127 break;
1128 }
1129 i++;
1130 }
1131
1132 if (!found)
1133 return -ENOENT;
1134
1135 *irq = oh->mpu_irqs[i].irq;
1136
1137 return 0;
1138}
1139
1140/**
1141 * _get_sdma_req_by_name - fetch SDMA request line ID by name
1142 * @oh: struct omap_hwmod * to operate on
1143 * @name: pointer to the name of the SDMA request line to fetch (optional)
1144 * @dma: pointer to an unsigned int to store the request line ID to
1145 *
1146 * Retrieve an SDMA request line ID named by @name on the IP block
1147 * pointed to by @oh. The ID will be filled into the address pointed
1148 * to by @dma. When @name is non-null, the request line ID associated
1149 * with the named entry will be returned. If @name is null, the first
1150 * matching entry will be returned. Data order is not meaningful in
1151 * hwmod data, so callers are strongly encouraged to use a non-null
1152 * @name whenever possible to avoid unpredictable effects if hwmod
1153 * data is later added that causes data ordering to change. Returns 0
1154 * upon success or a negative error code upon error.
1155 */
1156static int _get_sdma_req_by_name(struct omap_hwmod *oh, const char *name,
1157 unsigned int *dma)
1158{
1159 int i;
1160 bool found = false;
1161
1162 if (!oh->sdma_reqs)
1163 return -ENOENT;
1164
1165 i = 0;
1166 while (oh->sdma_reqs[i].dma_req != -1) {
1167 if (name == oh->sdma_reqs[i].name ||
1168 !strcmp(name, oh->sdma_reqs[i].name)) {
1169 found = true;
1170 break;
1171 }
1172 i++;
1173 }
1174
1175 if (!found)
1176 return -ENOENT;
1177
1178 *dma = oh->sdma_reqs[i].dma_req;
1179
1180 return 0;
1181}
1182
1183/**
1184 * _get_addr_space_by_name - fetch address space start & end by name
1185 * @oh: struct omap_hwmod * to operate on
1186 * @name: pointer to the name of the address space to fetch (optional)
1187 * @pa_start: pointer to a u32 to store the starting address to
1188 * @pa_end: pointer to a u32 to store the ending address to
1189 *
1190 * Retrieve address space start and end addresses for the IP block
1191 * pointed to by @oh. The data will be filled into the addresses
1192 * pointed to by @pa_start and @pa_end. When @name is non-null, the
1193 * address space data associated with the named entry will be
1194 * returned. If @name is null, the first matching entry will be
1195 * returned. Data order is not meaningful in hwmod data, so callers
1196 * are strongly encouraged to use a non-null @name whenever possible
1197 * to avoid unpredictable effects if hwmod data is later added that
1198 * causes data ordering to change. Returns 0 upon success or a
1199 * negative error code upon error.
1200 */
1201static int _get_addr_space_by_name(struct omap_hwmod *oh, const char *name,
1202 u32 *pa_start, u32 *pa_end)
1203{
1204 int i, j;
1205 struct omap_hwmod_ocp_if *os;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001206 struct list_head *p = NULL;
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001207 bool found = false;
1208
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001209 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001210
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001211 i = 0;
1212 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001213 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001214
1215 if (!os->addr)
1216 return -ENOENT;
1217
1218 j = 0;
1219 while (os->addr[j].pa_start != os->addr[j].pa_end) {
1220 if (name == os->addr[j].name ||
1221 !strcmp(name, os->addr[j].name)) {
1222 found = true;
1223 break;
1224 }
1225 j++;
1226 }
1227
1228 if (found)
1229 break;
1230 }
1231
1232 if (!found)
1233 return -ENOENT;
1234
1235 *pa_start = os->addr[j].pa_start;
1236 *pa_end = os->addr[j].pa_end;
1237
1238 return 0;
1239}
1240
1241/**
Paul Walmsley24dbc212012-04-19 04:04:29 -06001242 * _save_mpu_port_index - find and save the index to @oh's MPU port
Paul Walmsley63c85232009-09-03 20:14:03 +03001243 * @oh: struct omap_hwmod *
1244 *
Paul Walmsley24dbc212012-04-19 04:04:29 -06001245 * Determines the array index of the OCP slave port that the MPU uses
1246 * to address the device, and saves it into the struct omap_hwmod.
1247 * Intended to be called during hwmod registration only. No return
1248 * value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001249 */
Paul Walmsley24dbc212012-04-19 04:04:29 -06001250static void __init _save_mpu_port_index(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001251{
Paul Walmsley24dbc212012-04-19 04:04:29 -06001252 struct omap_hwmod_ocp_if *os = NULL;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001253 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001254 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001255
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001256 if (!oh)
Paul Walmsley24dbc212012-04-19 04:04:29 -06001257 return;
1258
1259 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001260
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001261 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001262
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001263 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001264 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +03001265 if (os->user & OCP_USER_MPU) {
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001266 oh->_mpu_port = os;
Paul Walmsley24dbc212012-04-19 04:04:29 -06001267 oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001268 break;
1269 }
1270 }
1271
Paul Walmsley24dbc212012-04-19 04:04:29 -06001272 return;
Paul Walmsley63c85232009-09-03 20:14:03 +03001273}
1274
1275/**
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001276 * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1277 * @oh: struct omap_hwmod *
1278 *
1279 * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1280 * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1281 * communicate with the IP block. This interface need not be directly
1282 * connected to the MPU (and almost certainly is not), but is directly
1283 * connected to the IP block represented by @oh. Returns a pointer
1284 * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1285 * error or if there does not appear to be a path from the MPU to this
1286 * IP block.
1287 */
1288static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1289{
1290 if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1291 return NULL;
1292
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001293 return oh->_mpu_port;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001294};
1295
1296/**
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001297 * _find_mpu_rt_addr_space - return MPU register target address space for @oh
Paul Walmsley63c85232009-09-03 20:14:03 +03001298 * @oh: struct omap_hwmod *
1299 *
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001300 * Returns a pointer to the struct omap_hwmod_addr_space record representing
1301 * the register target MPU address space; or returns NULL upon error.
Paul Walmsley63c85232009-09-03 20:14:03 +03001302 */
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001303static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001304{
1305 struct omap_hwmod_ocp_if *os;
1306 struct omap_hwmod_addr_space *mem;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001307 int found = 0, i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001308
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001309 os = _find_mpu_rt_port(oh);
Paul Walmsley24dbc212012-04-19 04:04:29 -06001310 if (!os || !os->addr)
Paul Walmsley78183f32011-07-09 19:14:05 -06001311 return NULL;
1312
1313 do {
1314 mem = &os->addr[i++];
1315 if (mem->flags & ADDR_TYPE_RT)
Paul Walmsley63c85232009-09-03 20:14:03 +03001316 found = 1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001317 } while (!found && mem->pa_start != mem->pa_end);
Paul Walmsley63c85232009-09-03 20:14:03 +03001318
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001319 return (found) ? mem : NULL;
Paul Walmsley63c85232009-09-03 20:14:03 +03001320}
1321
1322/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001323 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001324 * @oh: struct omap_hwmod *
1325 *
Paul Walmsley006c7f12012-07-04 05:22:53 -06001326 * Ensure that the OCP_SYSCONFIG register for the IP block represented
1327 * by @oh is set to indicate to the PRCM that the IP block is active.
1328 * Usually this means placing the module into smart-idle mode and
1329 * smart-standby, but if there is a bug in the automatic idle handling
1330 * for the IP block, it may need to be placed into the force-idle or
1331 * no-idle variants of these modes. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001332 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001333static void _enable_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001334{
Paul Walmsley43b40992010-02-22 22:09:34 -07001335 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001336 u32 v;
Paul Walmsley006c7f12012-07-04 05:22:53 -06001337 bool clkdm_act;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001338 struct clockdomain *clkdm;
Paul Walmsley63c85232009-09-03 20:14:03 +03001339
Paul Walmsley43b40992010-02-22 22:09:34 -07001340 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001341 return;
1342
Tero Kristo613ad0e2012-10-29 22:02:13 -06001343 /*
1344 * Wait until reset has completed, this is needed as the IP
1345 * block is reset automatically by hardware in some cases
1346 * (off-mode for example), and the drivers require the
1347 * IP to be ready when they access it
1348 */
1349 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1350 _enable_optional_clocks(oh);
1351 _wait_softreset_complete(oh);
1352 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1353 _disable_optional_clocks(oh);
1354
Paul Walmsley63c85232009-09-03 20:14:03 +03001355 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001356 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001357
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001358 clkdm = _get_clkdm(oh);
Paul Walmsley43b40992010-02-22 22:09:34 -07001359 if (sf & SYSC_HAS_SIDLEMODE) {
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001360 clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
Paul Walmsley006c7f12012-07-04 05:22:53 -06001361 if (clkdm_act && !(oh->class->sysc->idlemodes &
1362 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1363 idlemode = HWMOD_IDLEMODE_FORCE;
1364 else
1365 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
1366 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
Paul Walmsley63c85232009-09-03 20:14:03 +03001367 _set_slave_idlemode(oh, idlemode, &v);
1368 }
1369
Paul Walmsley43b40992010-02-22 22:09:34 -07001370 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001371 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1372 idlemode = HWMOD_IDLEMODE_NO;
1373 } else {
1374 if (sf & SYSC_HAS_ENAWAKEUP)
1375 _enable_wakeup(oh, &v);
1376 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1377 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1378 else
1379 idlemode = HWMOD_IDLEMODE_SMART;
1380 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001381 _set_master_standbymode(oh, idlemode, &v);
1382 }
1383
Paul Walmsleya16b1f72009-12-08 16:34:17 -07001384 /*
1385 * XXX The clock framework should handle this, by
1386 * calling into this code. But this must wait until the
1387 * clock structures are tagged with omap_hwmod entries
1388 */
Paul Walmsley43b40992010-02-22 22:09:34 -07001389 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1390 (sf & SYSC_HAS_CLOCKACTIVITY))
1391 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001392
Rajendra Nayak9980ce52010-09-21 19:58:30 +05301393 /* If slave is in SMARTIDLE, also enable wakeup */
1394 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07001395 _enable_wakeup(oh, &v);
1396
1397 _write_sysconfig(v, oh);
Hema HK78f26e82010-09-24 10:23:19 -06001398
1399 /*
1400 * Set the autoidle bit only after setting the smartidle bit
1401 * Setting this will not have any impact on the other modules.
1402 */
1403 if (sf & SYSC_HAS_AUTOIDLE) {
1404 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1405 0 : 1;
1406 _set_module_autoidle(oh, idlemode, &v);
1407 _write_sysconfig(v, oh);
1408 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001409}
1410
1411/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001412 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001413 * @oh: struct omap_hwmod *
1414 *
1415 * If module is marked as SWSUP_SIDLE, force the module into slave
1416 * idle; otherwise, configure it for smart-idle. If module is marked
1417 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1418 * configure it for smart-standby. No return value.
1419 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001420static void _idle_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001421{
Paul Walmsley43b40992010-02-22 22:09:34 -07001422 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001423 u32 v;
1424
Paul Walmsley43b40992010-02-22 22:09:34 -07001425 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001426 return;
1427
1428 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001429 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001430
Paul Walmsley43b40992010-02-22 22:09:34 -07001431 if (sf & SYSC_HAS_SIDLEMODE) {
Paul Walmsley006c7f12012-07-04 05:22:53 -06001432 /* XXX What about HWMOD_IDLEMODE_SMART_WKUP? */
1433 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1434 !(oh->class->sysc->idlemodes &
1435 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1436 idlemode = HWMOD_IDLEMODE_FORCE;
1437 else
1438 idlemode = HWMOD_IDLEMODE_SMART;
Paul Walmsley63c85232009-09-03 20:14:03 +03001439 _set_slave_idlemode(oh, idlemode, &v);
1440 }
1441
Paul Walmsley43b40992010-02-22 22:09:34 -07001442 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001443 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1444 idlemode = HWMOD_IDLEMODE_FORCE;
1445 } else {
1446 if (sf & SYSC_HAS_ENAWAKEUP)
1447 _enable_wakeup(oh, &v);
1448 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1449 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1450 else
1451 idlemode = HWMOD_IDLEMODE_SMART;
1452 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001453 _set_master_standbymode(oh, idlemode, &v);
1454 }
1455
Benoit Cousson86009eb2010-12-21 21:31:28 -07001456 /* If slave is in SMARTIDLE, also enable wakeup */
1457 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
1458 _enable_wakeup(oh, &v);
1459
Paul Walmsley63c85232009-09-03 20:14:03 +03001460 _write_sysconfig(v, oh);
1461}
1462
1463/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001464 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001465 * @oh: struct omap_hwmod *
1466 *
1467 * Force the module into slave idle and master suspend. No return
1468 * value.
1469 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001470static void _shutdown_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001471{
1472 u32 v;
Paul Walmsley43b40992010-02-22 22:09:34 -07001473 u8 sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001474
Paul Walmsley43b40992010-02-22 22:09:34 -07001475 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001476 return;
1477
1478 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001479 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001480
Paul Walmsley43b40992010-02-22 22:09:34 -07001481 if (sf & SYSC_HAS_SIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001482 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1483
Paul Walmsley43b40992010-02-22 22:09:34 -07001484 if (sf & SYSC_HAS_MIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001485 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1486
Paul Walmsley43b40992010-02-22 22:09:34 -07001487 if (sf & SYSC_HAS_AUTOIDLE)
Paul Walmsley726072e2009-12-08 16:34:15 -07001488 _set_module_autoidle(oh, 1, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001489
1490 _write_sysconfig(v, oh);
1491}
1492
1493/**
1494 * _lookup - find an omap_hwmod by name
1495 * @name: find an omap_hwmod by name
1496 *
1497 * Return a pointer to an omap_hwmod by name, or NULL if not found.
Paul Walmsley63c85232009-09-03 20:14:03 +03001498 */
1499static struct omap_hwmod *_lookup(const char *name)
1500{
1501 struct omap_hwmod *oh, *temp_oh;
1502
1503 oh = NULL;
1504
1505 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1506 if (!strcmp(name, temp_oh->name)) {
1507 oh = temp_oh;
1508 break;
1509 }
1510 }
1511
1512 return oh;
1513}
Paul Walmsley868c1572012-06-19 15:01:02 -06001514
Benoit Cousson6ae76992011-07-10 05:56:30 -06001515/**
1516 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1517 * @oh: struct omap_hwmod *
1518 *
1519 * Convert a clockdomain name stored in a struct omap_hwmod into a
1520 * clockdomain pointer, and save it into the struct omap_hwmod.
Paul Walmsley868c1572012-06-19 15:01:02 -06001521 * Return -EINVAL if the clkdm_name lookup failed.
Benoit Cousson6ae76992011-07-10 05:56:30 -06001522 */
1523static int _init_clkdm(struct omap_hwmod *oh)
1524{
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001525 if (!oh->clkdm_name) {
1526 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
Benoit Cousson6ae76992011-07-10 05:56:30 -06001527 return 0;
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001528 }
Benoit Cousson6ae76992011-07-10 05:56:30 -06001529
Benoit Cousson6ae76992011-07-10 05:56:30 -06001530 oh->clkdm = clkdm_lookup(oh->clkdm_name);
1531 if (!oh->clkdm) {
1532 pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n",
1533 oh->name, oh->clkdm_name);
1534 return -EINVAL;
1535 }
1536
1537 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1538 oh->name, oh->clkdm_name);
1539
1540 return 0;
1541}
Paul Walmsley63c85232009-09-03 20:14:03 +03001542
1543/**
Benoit Cousson6ae76992011-07-10 05:56:30 -06001544 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1545 * well the clockdomain.
Paul Walmsley63c85232009-09-03 20:14:03 +03001546 * @oh: struct omap_hwmod *
Paul Walmsley97d601622010-07-26 16:34:30 -06001547 * @data: not used; pass NULL
Paul Walmsley63c85232009-09-03 20:14:03 +03001548 *
Paul Walmsleya2debdb2011-02-23 00:14:07 -07001549 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
Paul Walmsley48d54f32011-02-23 00:14:07 -07001550 * Resolves all clock names embedded in the hwmod. Returns 0 on
1551 * success, or a negative error code on failure.
Paul Walmsley63c85232009-09-03 20:14:03 +03001552 */
Paul Walmsley97d601622010-07-26 16:34:30 -06001553static int _init_clocks(struct omap_hwmod *oh, void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03001554{
1555 int ret = 0;
1556
Paul Walmsley48d54f32011-02-23 00:14:07 -07001557 if (oh->_state != _HWMOD_STATE_REGISTERED)
1558 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001559
1560 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1561
Vaibhav Hiremathb797be1d2012-07-09 18:24:30 +05301562 if (soc_ops.init_clkdm)
1563 ret |= soc_ops.init_clkdm(oh);
1564
Paul Walmsley63c85232009-09-03 20:14:03 +03001565 ret |= _init_main_clk(oh);
1566 ret |= _init_interface_clks(oh);
1567 ret |= _init_opt_clks(oh);
1568
Benoit Coussonf5c1f842010-05-20 12:31:10 -06001569 if (!ret)
1570 oh->_state = _HWMOD_STATE_CLKS_INITED;
Benoit Cousson66522712011-07-01 22:54:06 +02001571 else
1572 pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001573
Rajendra Nayak09c35f22011-02-16 12:11:24 +00001574 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001575}
1576
1577/**
omar ramirezcc1226e2011-03-04 13:32:44 -07001578 * _lookup_hardreset - fill register bit info for this hwmod/reset line
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001579 * @oh: struct omap_hwmod *
1580 * @name: name of the reset line in the context of this hwmod
omar ramirezcc1226e2011-03-04 13:32:44 -07001581 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001582 *
1583 * Return the bit position of the reset line that match the
1584 * input name. Return -ENOENT if not found.
1585 */
Paul Walmsleya032d332012-08-03 09:21:10 -06001586static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1587 struct omap_hwmod_rst_info *ohri)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001588{
1589 int i;
1590
1591 for (i = 0; i < oh->rst_lines_cnt; i++) {
1592 const char *rst_line = oh->rst_lines[i].name;
1593 if (!strcmp(rst_line, name)) {
omar ramirezcc1226e2011-03-04 13:32:44 -07001594 ohri->rst_shift = oh->rst_lines[i].rst_shift;
1595 ohri->st_shift = oh->rst_lines[i].st_shift;
1596 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1597 oh->name, __func__, rst_line, ohri->rst_shift,
1598 ohri->st_shift);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001599
omar ramirezcc1226e2011-03-04 13:32:44 -07001600 return 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001601 }
1602 }
1603
1604 return -ENOENT;
1605}
1606
1607/**
1608 * _assert_hardreset - assert the HW reset line of submodules
1609 * contained in the hwmod module.
1610 * @oh: struct omap_hwmod *
1611 * @name: name of the reset line to lookup and assert
1612 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001613 * Some IP like dsp, ipu or iva contain processor that require an HW
1614 * reset line to be assert / deassert in order to enable fully the IP.
1615 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1616 * asserting the hardreset line on the currently-booted SoC, or passes
1617 * along the return value from _lookup_hardreset() or the SoC's
1618 * assert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001619 */
1620static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1621{
omar ramirezcc1226e2011-03-04 13:32:44 -07001622 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001623 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001624
1625 if (!oh)
1626 return -EINVAL;
1627
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001628 if (!soc_ops.assert_hardreset)
1629 return -ENOSYS;
1630
omar ramirezcc1226e2011-03-04 13:32:44 -07001631 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001632 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001633 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001634
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001635 ret = soc_ops.assert_hardreset(oh, &ohri);
1636
1637 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001638}
1639
1640/**
1641 * _deassert_hardreset - deassert the HW reset line of submodules contained
1642 * in the hwmod module.
1643 * @oh: struct omap_hwmod *
1644 * @name: name of the reset line to look up and deassert
1645 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001646 * Some IP like dsp, ipu or iva contain processor that require an HW
1647 * reset line to be assert / deassert in order to enable fully the IP.
1648 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1649 * deasserting the hardreset line on the currently-booted SoC, or passes
1650 * along the return value from _lookup_hardreset() or the SoC's
1651 * deassert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001652 */
1653static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1654{
omar ramirezcc1226e2011-03-04 13:32:44 -07001655 struct omap_hwmod_rst_info ohri;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001656 int ret = -EINVAL;
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001657 int hwsup = 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001658
1659 if (!oh)
1660 return -EINVAL;
1661
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001662 if (!soc_ops.deassert_hardreset)
1663 return -ENOSYS;
1664
omar ramirezcc1226e2011-03-04 13:32:44 -07001665 ret = _lookup_hardreset(oh, name, &ohri);
1666 if (IS_ERR_VALUE(ret))
1667 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001668
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001669 if (oh->clkdm) {
1670 /*
1671 * A clockdomain must be in SW_SUP otherwise reset
1672 * might not be completed. The clockdomain can be set
1673 * in HW_AUTO only when the module become ready.
1674 */
1675 hwsup = clkdm_in_hwsup(oh->clkdm);
1676 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1677 if (ret) {
1678 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1679 oh->name, oh->clkdm->name, ret);
1680 return ret;
1681 }
1682 }
1683
1684 _enable_clocks(oh);
1685 if (soc_ops.enable_module)
1686 soc_ops.enable_module(oh);
1687
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001688 ret = soc_ops.deassert_hardreset(oh, &ohri);
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001689
1690 if (soc_ops.disable_module)
1691 soc_ops.disable_module(oh);
1692 _disable_clocks(oh);
1693
omar ramirezcc1226e2011-03-04 13:32:44 -07001694 if (ret == -EBUSY)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001695 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1696
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001697 if (!ret) {
1698 /*
1699 * Set the clockdomain to HW_AUTO, assuming that the
1700 * previous state was HW_AUTO.
1701 */
1702 if (oh->clkdm && hwsup)
1703 clkdm_allow_idle(oh->clkdm);
1704 } else {
1705 if (oh->clkdm)
1706 clkdm_hwmod_disable(oh->clkdm, oh);
1707 }
1708
omar ramirezcc1226e2011-03-04 13:32:44 -07001709 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001710}
1711
1712/**
1713 * _read_hardreset - read the HW reset line state of submodules
1714 * contained in the hwmod module
1715 * @oh: struct omap_hwmod *
1716 * @name: name of the reset line to look up and read
1717 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001718 * Return the state of the reset line. Returns -EINVAL if @oh is
1719 * null, -ENOSYS if we have no way of reading the hardreset line
1720 * status on the currently-booted SoC, or passes along the return
1721 * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1722 * code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001723 */
1724static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1725{
omar ramirezcc1226e2011-03-04 13:32:44 -07001726 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001727 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001728
1729 if (!oh)
1730 return -EINVAL;
1731
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001732 if (!soc_ops.is_hardreset_asserted)
1733 return -ENOSYS;
1734
omar ramirezcc1226e2011-03-04 13:32:44 -07001735 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001736 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001737 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001738
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001739 return soc_ops.is_hardreset_asserted(oh, &ohri);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001740}
1741
1742/**
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001743 * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
Paul Walmsley747834a2012-04-18 19:10:04 -06001744 * @oh: struct omap_hwmod *
1745 *
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001746 * If all hardreset lines associated with @oh are asserted, then return true.
1747 * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1748 * associated with @oh are asserted, then return false.
Paul Walmsley747834a2012-04-18 19:10:04 -06001749 * This function is used to avoid executing some parts of the IP block
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001750 * enable/disable sequence if its hardreset line is set.
Paul Walmsley747834a2012-04-18 19:10:04 -06001751 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001752static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
Paul Walmsley747834a2012-04-18 19:10:04 -06001753{
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001754 int i, rst_cnt = 0;
Paul Walmsley747834a2012-04-18 19:10:04 -06001755
1756 if (oh->rst_lines_cnt == 0)
1757 return false;
1758
1759 for (i = 0; i < oh->rst_lines_cnt; i++)
1760 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001761 rst_cnt++;
1762
1763 if (oh->rst_lines_cnt == rst_cnt)
1764 return true;
Paul Walmsley747834a2012-04-18 19:10:04 -06001765
1766 return false;
1767}
1768
1769/**
Paul Walmsleye9332b62012-10-08 23:08:15 -06001770 * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1771 * hard-reset
1772 * @oh: struct omap_hwmod *
1773 *
1774 * If any hardreset lines associated with @oh are asserted, then
1775 * return true. Otherwise, if no hardreset lines associated with @oh
1776 * are asserted, or if @oh has no hardreset lines, then return false.
1777 * This function is used to avoid executing some parts of the IP block
1778 * enable/disable sequence if any hardreset line is set.
1779 */
1780static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1781{
1782 int rst_cnt = 0;
1783 int i;
1784
1785 for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1786 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1787 rst_cnt++;
1788
1789 return (rst_cnt) ? true : false;
1790}
1791
1792/**
Paul Walmsley747834a2012-04-18 19:10:04 -06001793 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1794 * @oh: struct omap_hwmod *
1795 *
1796 * Disable the PRCM module mode related to the hwmod @oh.
1797 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1798 */
1799static int _omap4_disable_module(struct omap_hwmod *oh)
1800{
1801 int v;
1802
Paul Walmsley747834a2012-04-18 19:10:04 -06001803 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1804 return -EINVAL;
1805
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001806 /*
1807 * Since integration code might still be doing something, only
1808 * disable if all lines are under hardreset.
1809 */
Paul Walmsleye9332b62012-10-08 23:08:15 -06001810 if (_are_any_hardreset_lines_asserted(oh))
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001811 return 0;
1812
Paul Walmsley747834a2012-04-18 19:10:04 -06001813 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1814
1815 omap4_cminst_module_disable(oh->clkdm->prcm_partition,
1816 oh->clkdm->cm_inst,
1817 oh->clkdm->clkdm_offs,
1818 oh->prcm.omap4.clkctrl_offs);
1819
Paul Walmsley747834a2012-04-18 19:10:04 -06001820 v = _omap4_wait_target_disable(oh);
1821 if (v)
1822 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1823 oh->name);
1824
1825 return 0;
1826}
1827
1828/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001829 * _am33xx_disable_module - enable CLKCTRL modulemode on AM33XX
1830 * @oh: struct omap_hwmod *
1831 *
1832 * Disable the PRCM module mode related to the hwmod @oh.
1833 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1834 */
1835static int _am33xx_disable_module(struct omap_hwmod *oh)
1836{
1837 int v;
1838
1839 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1840 return -EINVAL;
1841
1842 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1843
Paul Walmsleye9332b62012-10-08 23:08:15 -06001844 if (_are_any_hardreset_lines_asserted(oh))
1845 return 0;
1846
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001847 am33xx_cm_module_disable(oh->clkdm->cm_inst, oh->clkdm->clkdm_offs,
1848 oh->prcm.omap4.clkctrl_offs);
1849
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001850 v = _am33xx_wait_target_disable(oh);
1851 if (v)
1852 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1853 oh->name);
1854
1855 return 0;
1856}
1857
1858/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001859 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
Paul Walmsley63c85232009-09-03 20:14:03 +03001860 * @oh: struct omap_hwmod *
1861 *
1862 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
Paul Walmsley30e105c2012-04-19 00:49:09 -06001863 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1864 * reset this way, -EINVAL if the hwmod is in the wrong state,
1865 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Benoit Cousson2cb06812010-09-21 18:57:59 +02001866 *
1867 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
Paul Walmsleybd361792010-12-14 12:42:35 -07001868 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
Benoit Cousson2cb06812010-09-21 18:57:59 +02001869 * use the SYSCONFIG softreset bit to provide the status.
1870 *
Paul Walmsleybd361792010-12-14 12:42:35 -07001871 * Note that some IP like McBSP do have reset control but don't have
1872 * reset status.
Paul Walmsley63c85232009-09-03 20:14:03 +03001873 */
Paul Walmsleybd361792010-12-14 12:42:35 -07001874static int _ocp_softreset(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001875{
Tero Kristo613ad0e2012-10-29 22:02:13 -06001876 u32 v;
Paul Walmsley6f8b7ff2009-12-08 16:33:16 -07001877 int c = 0;
Benoit Cousson96835af2010-09-21 18:57:58 +02001878 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001879
Paul Walmsley43b40992010-02-22 22:09:34 -07001880 if (!oh->class->sysc ||
Benoit Cousson2cb06812010-09-21 18:57:59 +02001881 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley30e105c2012-04-19 00:49:09 -06001882 return -ENOENT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001883
1884 /* clocks must be on for this operation */
1885 if (oh->_state != _HWMOD_STATE_ENABLED) {
Paul Walmsley7852ec02012-07-26 00:54:26 -06001886 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1887 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001888 return -EINVAL;
1889 }
1890
Benoit Cousson96835af2010-09-21 18:57:58 +02001891 /* For some modules, all optionnal clocks need to be enabled as well */
1892 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1893 _enable_optional_clocks(oh);
1894
Paul Walmsleybd361792010-12-14 12:42:35 -07001895 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001896
1897 v = oh->_sysc_cache;
Benoit Cousson96835af2010-09-21 18:57:58 +02001898 ret = _set_softreset(oh, &v);
1899 if (ret)
1900 goto dis_opt_clks;
Paul Walmsley63c85232009-09-03 20:14:03 +03001901 _write_sysconfig(v, oh);
1902
Fernando Guzman Lugod99de7f2012-04-13 05:08:03 -06001903 if (oh->class->sysc->srst_udelay)
1904 udelay(oh->class->sysc->srst_udelay);
1905
Tero Kristo613ad0e2012-10-29 22:02:13 -06001906 c = _wait_softreset_complete(oh);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001907 if (c == MAX_MODULE_SOFTRESET_WAIT)
Benoit Cousson76e55892010-09-21 10:34:11 -06001908 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1909 oh->name, MAX_MODULE_SOFTRESET_WAIT);
Paul Walmsley63c85232009-09-03 20:14:03 +03001910 else
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001911 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
Paul Walmsley63c85232009-09-03 20:14:03 +03001912
1913 /*
1914 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1915 * _wait_target_ready() or _reset()
1916 */
1917
Benoit Cousson96835af2010-09-21 18:57:58 +02001918 ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
1919
1920dis_opt_clks:
1921 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1922 _disable_optional_clocks(oh);
1923
1924 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001925}
1926
1927/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001928 * _reset - reset an omap_hwmod
1929 * @oh: struct omap_hwmod *
1930 *
Paul Walmsley30e105c2012-04-19 00:49:09 -06001931 * Resets an omap_hwmod @oh. If the module has a custom reset
1932 * function pointer defined, then call it to reset the IP block, and
1933 * pass along its return value to the caller. Otherwise, if the IP
1934 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1935 * associated with it, call a function to reset the IP block via that
1936 * method, and pass along the return value to the caller. Finally, if
1937 * the IP block has some hardreset lines associated with it, assert
1938 * all of those, but do _not_ deassert them. (This is because driver
1939 * authors have expressed an apparent requirement to control the
1940 * deassertion of the hardreset lines themselves.)
1941 *
1942 * The default software reset mechanism for most OMAP IP blocks is
1943 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1944 * hwmods cannot be reset via this method. Some are not targets and
1945 * therefore have no OCP header registers to access. Others (like the
1946 * IVA) have idiosyncratic reset sequences. So for these relatively
1947 * rare cases, custom reset code can be supplied in the struct
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001948 * omap_hwmod_class .reset function pointer.
1949 *
1950 * _set_dmadisable() is called to set the DMADISABLE bit so that it
1951 * does not prevent idling of the system. This is necessary for cases
1952 * where ROMCODE/BOOTLOADER uses dma and transfers control to the
1953 * kernel without disabling dma.
1954 *
1955 * Passes along the return value from either _ocp_softreset() or the
1956 * custom reset function - these must return -EINVAL if the hwmod
1957 * cannot be reset this way or if the hwmod is in the wrong state,
1958 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Paul Walmsleybd361792010-12-14 12:42:35 -07001959 */
1960static int _reset(struct omap_hwmod *oh)
1961{
Paul Walmsley30e105c2012-04-19 00:49:09 -06001962 int i, r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001963
1964 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1965
Paul Walmsley30e105c2012-04-19 00:49:09 -06001966 if (oh->class->reset) {
1967 r = oh->class->reset(oh);
1968 } else {
1969 if (oh->rst_lines_cnt > 0) {
1970 for (i = 0; i < oh->rst_lines_cnt; i++)
1971 _assert_hardreset(oh, oh->rst_lines[i].name);
1972 return 0;
1973 } else {
1974 r = _ocp_softreset(oh);
1975 if (r == -ENOENT)
1976 r = 0;
1977 }
1978 }
Paul Walmsleybd361792010-12-14 12:42:35 -07001979
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001980 _set_dmadisable(oh);
1981
Paul Walmsley30e105c2012-04-19 00:49:09 -06001982 /*
1983 * OCP_SYSCONFIG bits need to be reprogrammed after a
1984 * softreset. The _enable() function should be split to avoid
1985 * the rewrite of the OCP_SYSCONFIG register.
1986 */
Rajendra Nayak28008522012-03-13 22:55:23 +05301987 if (oh->class->sysc) {
1988 _update_sysc_cache(oh);
1989 _enable_sysc(oh);
1990 }
1991
Paul Walmsley30e105c2012-04-19 00:49:09 -06001992 return r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001993}
1994
1995/**
Vishwanath BS51658822012-06-22 08:40:04 -06001996 * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain
1997 *
1998 * Call the appropriate PRM function to clear any logged I/O chain
1999 * wakeups and to reconfigure the chain. This apparently needs to be
2000 * done upon every mux change. Since hwmods can be concurrently
2001 * enabled and idled, hold a spinlock around the I/O chain
2002 * reconfiguration sequence. No return value.
2003 *
2004 * XXX When the PRM code is moved to drivers, this function can be removed,
2005 * as the PRM infrastructure should abstract this.
2006 */
2007static void _reconfigure_io_chain(void)
2008{
2009 unsigned long flags;
2010
2011 spin_lock_irqsave(&io_chain_lock, flags);
2012
2013 if (cpu_is_omap34xx() && omap3_has_io_chain_ctrl())
2014 omap3xxx_prm_reconfigure_io_chain();
2015 else if (cpu_is_omap44xx())
2016 omap44xx_prm_reconfigure_io_chain();
2017
2018 spin_unlock_irqrestore(&io_chain_lock, flags);
2019}
2020
2021/**
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07002022 * _omap4_update_context_lost - increment hwmod context loss counter if
2023 * hwmod context was lost, and clear hardware context loss reg
2024 * @oh: hwmod to check for context loss
2025 *
2026 * If the PRCM indicates that the hwmod @oh lost context, increment
2027 * our in-memory context loss counter, and clear the RM_*_CONTEXT
2028 * bits. No return value.
2029 */
2030static void _omap4_update_context_lost(struct omap_hwmod *oh)
2031{
2032 if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
2033 return;
2034
2035 if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2036 oh->clkdm->pwrdm.ptr->prcm_offs,
2037 oh->prcm.omap4.context_offs))
2038 return;
2039
2040 oh->prcm.omap4.context_lost_counter++;
2041 prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2042 oh->clkdm->pwrdm.ptr->prcm_offs,
2043 oh->prcm.omap4.context_offs);
2044}
2045
2046/**
2047 * _omap4_get_context_lost - get context loss counter for a hwmod
2048 * @oh: hwmod to get context loss counter for
2049 *
2050 * Returns the in-memory context loss counter for a hwmod.
2051 */
2052static int _omap4_get_context_lost(struct omap_hwmod *oh)
2053{
2054 return oh->prcm.omap4.context_lost_counter;
2055}
2056
2057/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002058 * _enable - enable an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002059 * @oh: struct omap_hwmod *
2060 *
2061 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002062 * register target. Returns -EINVAL if the hwmod is in the wrong
2063 * state or passes along the return value of _wait_target_ready().
Paul Walmsley63c85232009-09-03 20:14:03 +03002064 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002065static int _enable(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002066{
Paul Walmsley747834a2012-04-18 19:10:04 -06002067 int r;
Rajendra Nayak665d0012011-07-10 05:57:07 -06002068 int hwsup = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002069
Benoit Cousson34617e22011-07-01 22:54:07 +02002070 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
2071
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002072 /*
Paul Walmsley64813c32012-04-18 19:10:03 -06002073 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
2074 * state at init. Now that someone is really trying to enable
2075 * them, just ensure that the hwmod mux is set.
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002076 */
2077 if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
2078 /*
2079 * If the caller has mux data populated, do the mux'ing
2080 * which wouldn't have been done as part of the _enable()
2081 * done during setup.
2082 */
2083 if (oh->mux)
2084 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2085
2086 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
2087 return 0;
2088 }
2089
Paul Walmsley63c85232009-09-03 20:14:03 +03002090 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
2091 oh->_state != _HWMOD_STATE_IDLE &&
2092 oh->_state != _HWMOD_STATE_DISABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002093 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
2094 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002095 return -EINVAL;
2096 }
2097
Benoit Cousson31f62862011-07-01 22:54:05 +02002098 /*
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002099 * If an IP block contains HW reset lines and all of them are
Paul Walmsley747834a2012-04-18 19:10:04 -06002100 * asserted, we let integration code associated with that
2101 * block handle the enable. We've received very little
2102 * information on what those driver authors need, and until
2103 * detailed information is provided and the driver code is
2104 * posted to the public lists, this is probably the best we
2105 * can do.
Benoit Cousson31f62862011-07-01 22:54:05 +02002106 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002107 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002108 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002109
Rajendra Nayak665d0012011-07-10 05:57:07 -06002110 /* Mux pins for device runtime if populated */
2111 if (oh->mux && (!oh->mux->enabled ||
2112 ((oh->_state == _HWMOD_STATE_IDLE) &&
Vishwanath BS51658822012-06-22 08:40:04 -06002113 oh->mux->pads_dynamic))) {
Rajendra Nayak665d0012011-07-10 05:57:07 -06002114 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
Vishwanath BS51658822012-06-22 08:40:04 -06002115 _reconfigure_io_chain();
2116 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002117
Rajendra Nayak665d0012011-07-10 05:57:07 -06002118 _add_initiator_dep(oh, mpu_oh);
2119
2120 if (oh->clkdm) {
2121 /*
2122 * A clockdomain must be in SW_SUP before enabling
2123 * completely the module. The clockdomain can be set
2124 * in HW_AUTO only when the module become ready.
2125 */
Paul Walmsleyb71c7212012-09-23 17:28:28 -06002126 hwsup = clkdm_in_hwsup(oh->clkdm) &&
2127 !clkdm_missing_idle_reporting(oh->clkdm);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002128 r = clkdm_hwmod_enable(oh->clkdm, oh);
2129 if (r) {
2130 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
2131 oh->name, oh->clkdm->name, r);
2132 return r;
2133 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002134 }
Rajendra Nayak665d0012011-07-10 05:57:07 -06002135
2136 _enable_clocks(oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002137 if (soc_ops.enable_module)
2138 soc_ops.enable_module(oh);
Paul Walmsleyfa200222013-01-26 00:48:56 -07002139 if (oh->flags & HWMOD_BLOCK_WFI)
2140 disable_hlt();
Benoit Cousson34617e22011-07-01 22:54:07 +02002141
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07002142 if (soc_ops.update_context_lost)
2143 soc_ops.update_context_lost(oh);
2144
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002145 r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
2146 -EINVAL;
Rajendra Nayak665d0012011-07-10 05:57:07 -06002147 if (!r) {
2148 /*
2149 * Set the clockdomain to HW_AUTO only if the target is ready,
2150 * assuming that the previous state was HW_AUTO
2151 */
2152 if (oh->clkdm && hwsup)
2153 clkdm_allow_idle(oh->clkdm);
Benoit Cousson34617e22011-07-01 22:54:07 +02002154
Rajendra Nayak665d0012011-07-10 05:57:07 -06002155 oh->_state = _HWMOD_STATE_ENABLED;
2156
2157 /* Access the sysconfig only if the target is ready */
2158 if (oh->class->sysc) {
2159 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
2160 _update_sysc_cache(oh);
2161 _enable_sysc(oh);
2162 }
2163 } else {
Paul Walmsley2577a4a2012-10-29 20:57:55 -06002164 if (soc_ops.disable_module)
2165 soc_ops.disable_module(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002166 _disable_clocks(oh);
2167 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
2168 oh->name, r);
2169
2170 if (oh->clkdm)
2171 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002172 }
2173
Paul Walmsley63c85232009-09-03 20:14:03 +03002174 return r;
2175}
2176
2177/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002178 * _idle - idle an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002179 * @oh: struct omap_hwmod *
2180 *
2181 * Idles an omap_hwmod @oh. This should be called once the hwmod has
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002182 * no further work. Returns -EINVAL if the hwmod is in the wrong
2183 * state or returns 0.
Paul Walmsley63c85232009-09-03 20:14:03 +03002184 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002185static int _idle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002186{
Benoit Cousson34617e22011-07-01 22:54:07 +02002187 pr_debug("omap_hwmod: %s: idling\n", oh->name);
2188
Paul Walmsley63c85232009-09-03 20:14:03 +03002189 if (oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002190 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2191 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002192 return -EINVAL;
2193 }
2194
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002195 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002196 return 0;
2197
Paul Walmsley43b40992010-02-22 22:09:34 -07002198 if (oh->class->sysc)
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002199 _idle_sysc(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002200 _del_initiator_dep(oh, mpu_oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002201
Paul Walmsleyfa200222013-01-26 00:48:56 -07002202 if (oh->flags & HWMOD_BLOCK_WFI)
2203 enable_hlt();
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002204 if (soc_ops.disable_module)
2205 soc_ops.disable_module(oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002206
Benoit Cousson45c38252011-07-10 05:56:33 -06002207 /*
2208 * The module must be in idle mode before disabling any parents
2209 * clocks. Otherwise, the parent clock might be disabled before
2210 * the module transition is done, and thus will prevent the
2211 * transition to complete properly.
2212 */
2213 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002214 if (oh->clkdm)
2215 clkdm_hwmod_disable(oh->clkdm, oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002216
Tony Lindgren8d9af882010-12-22 18:42:35 -08002217 /* Mux pins for device idle if populated */
Vishwanath BS51658822012-06-22 08:40:04 -06002218 if (oh->mux && oh->mux->pads_dynamic) {
Tony Lindgren8d9af882010-12-22 18:42:35 -08002219 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
Vishwanath BS51658822012-06-22 08:40:04 -06002220 _reconfigure_io_chain();
2221 }
Tony Lindgren8d9af882010-12-22 18:42:35 -08002222
Paul Walmsley63c85232009-09-03 20:14:03 +03002223 oh->_state = _HWMOD_STATE_IDLE;
2224
2225 return 0;
2226}
2227
2228/**
Kishon Vijay Abraham I95992172011-03-10 03:50:08 -07002229 * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit
2230 * @oh: struct omap_hwmod *
2231 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
2232 *
2233 * Sets the IP block's OCP autoidle bit in hardware, and updates our
2234 * local copy. Intended to be used by drivers that require
2235 * direct manipulation of the AUTOIDLE bits.
2236 * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes
2237 * along the return value from _set_module_autoidle().
2238 *
2239 * Any users of this function should be scrutinized carefully.
2240 */
2241int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle)
2242{
2243 u32 v;
2244 int retval = 0;
2245 unsigned long flags;
2246
2247 if (!oh || oh->_state != _HWMOD_STATE_ENABLED)
2248 return -EINVAL;
2249
2250 spin_lock_irqsave(&oh->_lock, flags);
2251
2252 v = oh->_sysc_cache;
2253
2254 retval = _set_module_autoidle(oh, autoidle, &v);
2255
2256 if (!retval)
2257 _write_sysconfig(v, oh);
2258
2259 spin_unlock_irqrestore(&oh->_lock, flags);
2260
2261 return retval;
2262}
2263
2264/**
Paul Walmsley63c85232009-09-03 20:14:03 +03002265 * _shutdown - shutdown an omap_hwmod
2266 * @oh: struct omap_hwmod *
2267 *
2268 * Shut down an omap_hwmod @oh. This should be called when the driver
2269 * used for the hwmod is removed or unloaded or if the driver is not
2270 * used by the system. Returns -EINVAL if the hwmod is in the wrong
2271 * state or returns 0.
2272 */
2273static int _shutdown(struct omap_hwmod *oh)
2274{
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002275 int ret, i;
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002276 u8 prev_state;
2277
Paul Walmsley63c85232009-09-03 20:14:03 +03002278 if (oh->_state != _HWMOD_STATE_IDLE &&
2279 oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002280 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2281 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002282 return -EINVAL;
2283 }
2284
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002285 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002286 return 0;
2287
Paul Walmsley63c85232009-09-03 20:14:03 +03002288 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2289
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002290 if (oh->class->pre_shutdown) {
2291 prev_state = oh->_state;
2292 if (oh->_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002293 _enable(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002294 ret = oh->class->pre_shutdown(oh);
2295 if (ret) {
2296 if (prev_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002297 _idle(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002298 return ret;
2299 }
2300 }
2301
Miguel Vadillo6481c732011-07-01 22:54:02 +02002302 if (oh->class->sysc) {
2303 if (oh->_state == _HWMOD_STATE_IDLE)
2304 _enable(oh);
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002305 _shutdown_sysc(oh);
Miguel Vadillo6481c732011-07-01 22:54:02 +02002306 }
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06002307
Benoit Cousson3827f942010-09-21 10:34:08 -06002308 /* clocks and deps are already disabled in idle */
2309 if (oh->_state == _HWMOD_STATE_ENABLED) {
2310 _del_initiator_dep(oh, mpu_oh);
2311 /* XXX what about the other system initiators here? dma, dsp */
Paul Walmsleyfa200222013-01-26 00:48:56 -07002312 if (oh->flags & HWMOD_BLOCK_WFI)
2313 enable_hlt();
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002314 if (soc_ops.disable_module)
2315 soc_ops.disable_module(oh);
Benoit Cousson45c38252011-07-10 05:56:33 -06002316 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002317 if (oh->clkdm)
2318 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson3827f942010-09-21 10:34:08 -06002319 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002320 /* XXX Should this code also force-disable the optional clocks? */
2321
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002322 for (i = 0; i < oh->rst_lines_cnt; i++)
2323 _assert_hardreset(oh, oh->rst_lines[i].name);
Benoit Cousson31f62862011-07-01 22:54:05 +02002324
Tony Lindgren8d9af882010-12-22 18:42:35 -08002325 /* Mux pins to safe mode or use populated off mode values */
2326 if (oh->mux)
2327 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
Paul Walmsley63c85232009-09-03 20:14:03 +03002328
2329 oh->_state = _HWMOD_STATE_DISABLED;
2330
2331 return 0;
2332}
2333
2334/**
Paul Walmsley381d0332012-04-19 00:58:22 -06002335 * _init_mpu_rt_base - populate the virtual address for a hwmod
2336 * @oh: struct omap_hwmod * to locate the virtual address
2337 *
2338 * Cache the virtual address used by the MPU to access this IP block's
2339 * registers. This address is needed early so the OCP registers that
2340 * are part of the device's address space can be ioremapped properly.
2341 * No return value.
2342 */
2343static void __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data)
2344{
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002345 struct omap_hwmod_addr_space *mem;
2346 void __iomem *va_start;
2347
2348 if (!oh)
2349 return;
2350
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002351 _save_mpu_port_index(oh);
2352
Paul Walmsley381d0332012-04-19 00:58:22 -06002353 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2354 return;
2355
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002356 mem = _find_mpu_rt_addr_space(oh);
2357 if (!mem) {
2358 pr_debug("omap_hwmod: %s: no MPU register target found\n",
2359 oh->name);
2360 return;
2361 }
2362
2363 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
2364 if (!va_start) {
2365 pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
2366 return;
2367 }
2368
2369 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2370 oh->name, va_start);
2371
2372 oh->_mpu_rt_va = va_start;
Paul Walmsley381d0332012-04-19 00:58:22 -06002373}
2374
2375/**
2376 * _init - initialize internal data for the hwmod @oh
2377 * @oh: struct omap_hwmod *
2378 * @n: (unused)
2379 *
2380 * Look up the clocks and the address space used by the MPU to access
2381 * registers belonging to the hwmod @oh. @oh must already be
2382 * registered at this point. This is the first of two phases for
2383 * hwmod initialization. Code called here does not touch any hardware
2384 * registers, it simply prepares internal data structures. Returns 0
2385 * upon success or if the hwmod isn't registered, or -EINVAL upon
2386 * failure.
2387 */
2388static int __init _init(struct omap_hwmod *oh, void *data)
2389{
2390 int r;
2391
2392 if (oh->_state != _HWMOD_STATE_REGISTERED)
2393 return 0;
2394
2395 _init_mpu_rt_base(oh, NULL);
2396
2397 r = _init_clocks(oh, NULL);
2398 if (IS_ERR_VALUE(r)) {
2399 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2400 return -EINVAL;
2401 }
2402
2403 oh->_state = _HWMOD_STATE_INITIALIZED;
2404
2405 return 0;
2406}
2407
2408/**
Paul Walmsley64813c32012-04-18 19:10:03 -06002409 * _setup_iclk_autoidle - configure an IP block's interface clocks
Paul Walmsley63c85232009-09-03 20:14:03 +03002410 * @oh: struct omap_hwmod *
2411 *
Paul Walmsley64813c32012-04-18 19:10:03 -06002412 * Set up the module's interface clocks. XXX This function is still mostly
2413 * a stub; implementing this properly requires iclk autoidle usecounting in
2414 * the clock code. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03002415 */
Paul Walmsley64813c32012-04-18 19:10:03 -06002416static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002417{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002418 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002419 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002420 int i = 0;
Paul Walmsley381d0332012-04-19 00:58:22 -06002421 if (oh->_state != _HWMOD_STATE_INITIALIZED)
Paul Walmsley64813c32012-04-18 19:10:03 -06002422 return;
Paul Walmsley48d54f32011-02-23 00:14:07 -07002423
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002424 p = oh->slave_ports.next;
Paul Walmsley63c85232009-09-03 20:14:03 +03002425
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002426 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002427 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002428 if (!os->_clk)
Paul Walmsley64813c32012-04-18 19:10:03 -06002429 continue;
Paul Walmsley63c85232009-09-03 20:14:03 +03002430
Paul Walmsley64813c32012-04-18 19:10:03 -06002431 if (os->flags & OCPIF_SWSUP_IDLE) {
2432 /* XXX omap_iclk_deny_idle(c); */
2433 } else {
2434 /* XXX omap_iclk_allow_idle(c); */
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002435 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +03002436 }
2437 }
2438
Paul Walmsley64813c32012-04-18 19:10:03 -06002439 return;
2440}
2441
2442/**
2443 * _setup_reset - reset an IP block during the setup process
2444 * @oh: struct omap_hwmod *
2445 *
2446 * Reset the IP block corresponding to the hwmod @oh during the setup
2447 * process. The IP block is first enabled so it can be successfully
2448 * reset. Returns 0 upon success or a negative error code upon
2449 * failure.
2450 */
2451static int __init _setup_reset(struct omap_hwmod *oh)
2452{
2453 int r;
2454
2455 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2456 return -EINVAL;
Paul Walmsley63c85232009-09-03 20:14:03 +03002457
Paul Walmsley5fb3d522012-10-29 22:11:50 -06002458 if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
2459 return -EPERM;
2460
Paul Walmsley747834a2012-04-18 19:10:04 -06002461 if (oh->rst_lines_cnt == 0) {
2462 r = _enable(oh);
2463 if (r) {
2464 pr_warning("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2465 oh->name, oh->_state);
2466 return -EINVAL;
2467 }
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002468 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002469
Rajendra Nayak28008522012-03-13 22:55:23 +05302470 if (!(oh->flags & HWMOD_INIT_NO_RESET))
Paul Walmsley64813c32012-04-18 19:10:03 -06002471 r = _reset(oh);
2472
2473 return r;
2474}
2475
2476/**
2477 * _setup_postsetup - transition to the appropriate state after _setup
2478 * @oh: struct omap_hwmod *
2479 *
2480 * Place an IP block represented by @oh into a "post-setup" state --
2481 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
2482 * this function is called at the end of _setup().) The postsetup
2483 * state for an IP block can be changed by calling
2484 * omap_hwmod_enter_postsetup_state() early in the boot process,
2485 * before one of the omap_hwmod_setup*() functions are called for the
2486 * IP block.
2487 *
2488 * The IP block stays in this state until a PM runtime-based driver is
2489 * loaded for that IP block. A post-setup state of IDLE is
2490 * appropriate for almost all IP blocks with runtime PM-enabled
2491 * drivers, since those drivers are able to enable the IP block. A
2492 * post-setup state of ENABLED is appropriate for kernels with PM
2493 * runtime disabled. The DISABLED state is appropriate for unusual IP
2494 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2495 * included, since the WDTIMER starts running on reset and will reset
2496 * the MPU if left active.
2497 *
2498 * This post-setup mechanism is deprecated. Once all of the OMAP
2499 * drivers have been converted to use PM runtime, and all of the IP
2500 * block data and interconnect data is available to the hwmod code, it
2501 * should be possible to replace this mechanism with a "lazy reset"
2502 * arrangement. In a "lazy reset" setup, each IP block is enabled
2503 * when the driver first probes, then all remaining IP blocks without
2504 * drivers are either shut down or enabled after the drivers have
2505 * loaded. However, this cannot take place until the above
2506 * preconditions have been met, since otherwise the late reset code
2507 * has no way of knowing which IP blocks are in use by drivers, and
2508 * which ones are unused.
2509 *
2510 * No return value.
2511 */
2512static void __init _setup_postsetup(struct omap_hwmod *oh)
2513{
2514 u8 postsetup_state;
2515
2516 if (oh->rst_lines_cnt > 0)
2517 return;
Benoit Cousson76e55892010-09-21 10:34:11 -06002518
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002519 postsetup_state = oh->_postsetup_state;
2520 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2521 postsetup_state = _HWMOD_STATE_ENABLED;
2522
2523 /*
2524 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2525 * it should be set by the core code as a runtime flag during startup
2526 */
2527 if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002528 (postsetup_state == _HWMOD_STATE_IDLE)) {
2529 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002530 postsetup_state = _HWMOD_STATE_ENABLED;
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002531 }
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002532
2533 if (postsetup_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002534 _idle(oh);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002535 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2536 _shutdown(oh);
2537 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2538 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2539 oh->name, postsetup_state);
Paul Walmsley63c85232009-09-03 20:14:03 +03002540
Paul Walmsley64813c32012-04-18 19:10:03 -06002541 return;
2542}
2543
2544/**
2545 * _setup - prepare IP block hardware for use
2546 * @oh: struct omap_hwmod *
2547 * @n: (unused, pass NULL)
2548 *
2549 * Configure the IP block represented by @oh. This may include
2550 * enabling the IP block, resetting it, and placing it into a
2551 * post-setup state, depending on the type of IP block and applicable
2552 * flags. IP blocks are reset to prevent any previous configuration
2553 * by the bootloader or previous operating system from interfering
2554 * with power management or other parts of the system. The reset can
2555 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2556 * two phases for hwmod initialization. Code called here generally
2557 * affects the IP block hardware, or system integration hardware
2558 * associated with the IP block. Returns 0.
2559 */
2560static int __init _setup(struct omap_hwmod *oh, void *data)
2561{
2562 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2563 return 0;
2564
2565 _setup_iclk_autoidle(oh);
2566
2567 if (!_setup_reset(oh))
2568 _setup_postsetup(oh);
2569
Paul Walmsley63c85232009-09-03 20:14:03 +03002570 return 0;
2571}
2572
Benoit Cousson0102b622010-12-21 21:31:27 -07002573/**
2574 * _register - register a struct omap_hwmod
2575 * @oh: struct omap_hwmod *
2576 *
2577 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2578 * already has been registered by the same name; -EINVAL if the
2579 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2580 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2581 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2582 * success.
2583 *
2584 * XXX The data should be copied into bootmem, so the original data
2585 * should be marked __initdata and freed after init. This would allow
2586 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2587 * that the copy process would be relatively complex due to the large number
2588 * of substructures.
2589 */
Benoit Cousson01592df2010-12-21 21:31:28 -07002590static int __init _register(struct omap_hwmod *oh)
Benoit Cousson0102b622010-12-21 21:31:27 -07002591{
Benoit Cousson0102b622010-12-21 21:31:27 -07002592 if (!oh || !oh->name || !oh->class || !oh->class->name ||
2593 (oh->_state != _HWMOD_STATE_UNKNOWN))
2594 return -EINVAL;
2595
Benoit Cousson0102b622010-12-21 21:31:27 -07002596 pr_debug("omap_hwmod: %s: registering\n", oh->name);
2597
Benoit Coussonce35b242010-12-21 21:31:28 -07002598 if (_lookup(oh->name))
2599 return -EEXIST;
Benoit Cousson0102b622010-12-21 21:31:27 -07002600
Benoit Cousson0102b622010-12-21 21:31:27 -07002601 list_add_tail(&oh->node, &omap_hwmod_list);
2602
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002603 INIT_LIST_HEAD(&oh->master_ports);
2604 INIT_LIST_HEAD(&oh->slave_ports);
Benoit Cousson0102b622010-12-21 21:31:27 -07002605 spin_lock_init(&oh->_lock);
2606
2607 oh->_state = _HWMOD_STATE_REGISTERED;
2608
Paul Walmsley569edd702011-02-23 00:14:06 -07002609 /*
2610 * XXX Rather than doing a strcmp(), this should test a flag
2611 * set in the hwmod data, inserted by the autogenerator code.
2612 */
2613 if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2614 mpu_oh = oh;
Benoit Cousson0102b622010-12-21 21:31:27 -07002615
Paul Walmsley569edd702011-02-23 00:14:06 -07002616 return 0;
Benoit Cousson0102b622010-12-21 21:31:27 -07002617}
Paul Walmsley63c85232009-09-03 20:14:03 +03002618
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002619/**
2620 * _alloc_links - return allocated memory for hwmod links
2621 * @ml: pointer to a struct omap_hwmod_link * for the master link
2622 * @sl: pointer to a struct omap_hwmod_link * for the slave link
2623 *
2624 * Return pointers to two struct omap_hwmod_link records, via the
2625 * addresses pointed to by @ml and @sl. Will first attempt to return
2626 * memory allocated as part of a large initial block, but if that has
2627 * been exhausted, will allocate memory itself. Since ideally this
2628 * second allocation path will never occur, the number of these
2629 * 'supplemental' allocations will be logged when debugging is
2630 * enabled. Returns 0.
2631 */
2632static int __init _alloc_links(struct omap_hwmod_link **ml,
2633 struct omap_hwmod_link **sl)
2634{
2635 unsigned int sz;
2636
2637 if ((free_ls + LINKS_PER_OCP_IF) <= max_ls) {
2638 *ml = &linkspace[free_ls++];
2639 *sl = &linkspace[free_ls++];
2640 return 0;
2641 }
2642
2643 sz = sizeof(struct omap_hwmod_link) * LINKS_PER_OCP_IF;
2644
2645 *sl = NULL;
2646 *ml = alloc_bootmem(sz);
2647
2648 memset(*ml, 0, sz);
2649
2650 *sl = (void *)(*ml) + sizeof(struct omap_hwmod_link);
2651
2652 ls_supp++;
2653 pr_debug("omap_hwmod: supplemental link allocations needed: %d\n",
2654 ls_supp * LINKS_PER_OCP_IF);
2655
2656 return 0;
2657};
2658
2659/**
2660 * _add_link - add an interconnect between two IP blocks
2661 * @oi: pointer to a struct omap_hwmod_ocp_if record
2662 *
2663 * Add struct omap_hwmod_link records connecting the master IP block
2664 * specified in @oi->master to @oi, and connecting the slave IP block
2665 * specified in @oi->slave to @oi. This code is assumed to run before
2666 * preemption or SMP has been enabled, thus avoiding the need for
2667 * locking in this code. Changes to this assumption will require
2668 * additional locking. Returns 0.
2669 */
2670static int __init _add_link(struct omap_hwmod_ocp_if *oi)
2671{
2672 struct omap_hwmod_link *ml, *sl;
2673
2674 pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2675 oi->slave->name);
2676
2677 _alloc_links(&ml, &sl);
2678
2679 ml->ocp_if = oi;
2680 INIT_LIST_HEAD(&ml->node);
2681 list_add(&ml->node, &oi->master->master_ports);
2682 oi->master->masters_cnt++;
2683
2684 sl->ocp_if = oi;
2685 INIT_LIST_HEAD(&sl->node);
2686 list_add(&sl->node, &oi->slave->slave_ports);
2687 oi->slave->slaves_cnt++;
2688
2689 return 0;
2690}
2691
2692/**
2693 * _register_link - register a struct omap_hwmod_ocp_if
2694 * @oi: struct omap_hwmod_ocp_if *
2695 *
2696 * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
2697 * has already been registered; -EINVAL if @oi is NULL or if the
2698 * record pointed to by @oi is missing required fields; or 0 upon
2699 * success.
2700 *
2701 * XXX The data should be copied into bootmem, so the original data
2702 * should be marked __initdata and freed after init. This would allow
2703 * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2704 */
2705static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2706{
2707 if (!oi || !oi->master || !oi->slave || !oi->user)
2708 return -EINVAL;
2709
2710 if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2711 return -EEXIST;
2712
2713 pr_debug("omap_hwmod: registering link from %s to %s\n",
2714 oi->master->name, oi->slave->name);
2715
2716 /*
2717 * Register the connected hwmods, if they haven't been
2718 * registered already
2719 */
2720 if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2721 _register(oi->master);
2722
2723 if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2724 _register(oi->slave);
2725
2726 _add_link(oi);
2727
2728 oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2729
2730 return 0;
2731}
2732
2733/**
2734 * _alloc_linkspace - allocate large block of hwmod links
2735 * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count
2736 *
2737 * Allocate a large block of struct omap_hwmod_link records. This
2738 * improves boot time significantly by avoiding the need to allocate
2739 * individual records one by one. If the number of records to
2740 * allocate in the block hasn't been manually specified, this function
2741 * will count the number of struct omap_hwmod_ocp_if records in @ois
2742 * and use that to determine the allocation size. For SoC families
2743 * that require multiple list registrations, such as OMAP3xxx, this
2744 * estimation process isn't optimal, so manual estimation is advised
2745 * in those cases. Returns -EEXIST if the allocation has already occurred
2746 * or 0 upon success.
2747 */
2748static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois)
2749{
2750 unsigned int i = 0;
2751 unsigned int sz;
2752
2753 if (linkspace) {
2754 WARN(1, "linkspace already allocated\n");
2755 return -EEXIST;
2756 }
2757
2758 if (max_ls == 0)
2759 while (ois[i++])
2760 max_ls += LINKS_PER_OCP_IF;
2761
2762 sz = sizeof(struct omap_hwmod_link) * max_ls;
2763
2764 pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n",
2765 __func__, sz, max_ls);
2766
2767 linkspace = alloc_bootmem(sz);
2768
2769 memset(linkspace, 0, sz);
2770
2771 return 0;
2772}
Paul Walmsley63c85232009-09-03 20:14:03 +03002773
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002774/* Static functions intended only for use in soc_ops field function pointers */
2775
2776/**
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002777 * _omap2xxx_wait_target_ready - wait for a module to leave slave idle
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002778 * @oh: struct omap_hwmod *
2779 *
2780 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2781 * does not have an IDLEST bit or if the module successfully leaves
2782 * slave idle; otherwise, pass along the return value of the
2783 * appropriate *_cm*_wait_module_ready() function.
2784 */
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002785static int _omap2xxx_wait_target_ready(struct omap_hwmod *oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002786{
2787 if (!oh)
2788 return -EINVAL;
2789
2790 if (oh->flags & HWMOD_NO_IDLEST)
2791 return 0;
2792
2793 if (!_find_mpu_rt_port(oh))
2794 return 0;
2795
2796 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2797
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002798 return omap2xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2799 oh->prcm.omap2.idlest_reg_id,
2800 oh->prcm.omap2.idlest_idle_bit);
2801}
2802
2803/**
2804 * _omap3xxx_wait_target_ready - wait for a module to leave slave idle
2805 * @oh: struct omap_hwmod *
2806 *
2807 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2808 * does not have an IDLEST bit or if the module successfully leaves
2809 * slave idle; otherwise, pass along the return value of the
2810 * appropriate *_cm*_wait_module_ready() function.
2811 */
2812static int _omap3xxx_wait_target_ready(struct omap_hwmod *oh)
2813{
2814 if (!oh)
2815 return -EINVAL;
2816
2817 if (oh->flags & HWMOD_NO_IDLEST)
2818 return 0;
2819
2820 if (!_find_mpu_rt_port(oh))
2821 return 0;
2822
2823 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2824
2825 return omap3xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2826 oh->prcm.omap2.idlest_reg_id,
2827 oh->prcm.omap2.idlest_idle_bit);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002828}
2829
2830/**
2831 * _omap4_wait_target_ready - wait for a module to leave slave idle
2832 * @oh: struct omap_hwmod *
2833 *
2834 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2835 * does not have an IDLEST bit or if the module successfully leaves
2836 * slave idle; otherwise, pass along the return value of the
2837 * appropriate *_cm*_wait_module_ready() function.
2838 */
2839static int _omap4_wait_target_ready(struct omap_hwmod *oh)
2840{
Paul Walmsley2b026d12012-09-23 17:28:18 -06002841 if (!oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002842 return -EINVAL;
2843
Paul Walmsley2b026d12012-09-23 17:28:18 -06002844 if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002845 return 0;
2846
2847 if (!_find_mpu_rt_port(oh))
2848 return 0;
2849
2850 /* XXX check module SIDLEMODE, hardreset status */
2851
2852 return omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition,
2853 oh->clkdm->cm_inst,
2854 oh->clkdm->clkdm_offs,
2855 oh->prcm.omap4.clkctrl_offs);
2856}
2857
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002858/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002859 * _am33xx_wait_target_ready - wait for a module to leave slave idle
2860 * @oh: struct omap_hwmod *
2861 *
2862 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2863 * does not have an IDLEST bit or if the module successfully leaves
2864 * slave idle; otherwise, pass along the return value of the
2865 * appropriate *_cm*_wait_module_ready() function.
2866 */
2867static int _am33xx_wait_target_ready(struct omap_hwmod *oh)
2868{
2869 if (!oh || !oh->clkdm)
2870 return -EINVAL;
2871
2872 if (oh->flags & HWMOD_NO_IDLEST)
2873 return 0;
2874
2875 if (!_find_mpu_rt_port(oh))
2876 return 0;
2877
2878 /* XXX check module SIDLEMODE, hardreset status */
2879
2880 return am33xx_cm_wait_module_ready(oh->clkdm->cm_inst,
2881 oh->clkdm->clkdm_offs,
2882 oh->prcm.omap4.clkctrl_offs);
2883}
2884
2885/**
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002886 * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2887 * @oh: struct omap_hwmod * to assert hardreset
2888 * @ohri: hardreset line data
2889 *
2890 * Call omap2_prm_assert_hardreset() with parameters extracted from
2891 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2892 * use as an soc_ops function pointer. Passes along the return value
2893 * from omap2_prm_assert_hardreset(). XXX This function is scheduled
2894 * for removal when the PRM code is moved into drivers/.
2895 */
2896static int _omap2_assert_hardreset(struct omap_hwmod *oh,
2897 struct omap_hwmod_rst_info *ohri)
2898{
2899 return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
2900 ohri->rst_shift);
2901}
2902
2903/**
2904 * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2905 * @oh: struct omap_hwmod * to deassert hardreset
2906 * @ohri: hardreset line data
2907 *
2908 * Call omap2_prm_deassert_hardreset() with parameters extracted from
2909 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2910 * use as an soc_ops function pointer. Passes along the return value
2911 * from omap2_prm_deassert_hardreset(). XXX This function is
2912 * scheduled for removal when the PRM code is moved into drivers/.
2913 */
2914static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
2915 struct omap_hwmod_rst_info *ohri)
2916{
2917 return omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
2918 ohri->rst_shift,
2919 ohri->st_shift);
2920}
2921
2922/**
2923 * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
2924 * @oh: struct omap_hwmod * to test hardreset
2925 * @ohri: hardreset line data
2926 *
2927 * Call omap2_prm_is_hardreset_asserted() with parameters extracted
2928 * from the hwmod @oh and the hardreset line data @ohri. Only
2929 * intended for use as an soc_ops function pointer. Passes along the
2930 * return value from omap2_prm_is_hardreset_asserted(). XXX This
2931 * function is scheduled for removal when the PRM code is moved into
2932 * drivers/.
2933 */
2934static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
2935 struct omap_hwmod_rst_info *ohri)
2936{
2937 return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
2938 ohri->st_shift);
2939}
2940
2941/**
2942 * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2943 * @oh: struct omap_hwmod * to assert hardreset
2944 * @ohri: hardreset line data
2945 *
2946 * Call omap4_prminst_assert_hardreset() with parameters extracted
2947 * from the hwmod @oh and the hardreset line data @ohri. Only
2948 * intended for use as an soc_ops function pointer. Passes along the
2949 * return value from omap4_prminst_assert_hardreset(). XXX This
2950 * function is scheduled for removal when the PRM code is moved into
2951 * drivers/.
2952 */
2953static int _omap4_assert_hardreset(struct omap_hwmod *oh,
2954 struct omap_hwmod_rst_info *ohri)
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002955{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002956 if (!oh->clkdm)
2957 return -EINVAL;
2958
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002959 return omap4_prminst_assert_hardreset(ohri->rst_shift,
2960 oh->clkdm->pwrdm.ptr->prcm_partition,
2961 oh->clkdm->pwrdm.ptr->prcm_offs,
2962 oh->prcm.omap4.rstctrl_offs);
2963}
2964
2965/**
2966 * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2967 * @oh: struct omap_hwmod * to deassert hardreset
2968 * @ohri: hardreset line data
2969 *
2970 * Call omap4_prminst_deassert_hardreset() with parameters extracted
2971 * from the hwmod @oh and the hardreset line data @ohri. Only
2972 * intended for use as an soc_ops function pointer. Passes along the
2973 * return value from omap4_prminst_deassert_hardreset(). XXX This
2974 * function is scheduled for removal when the PRM code is moved into
2975 * drivers/.
2976 */
2977static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
2978 struct omap_hwmod_rst_info *ohri)
2979{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002980 if (!oh->clkdm)
2981 return -EINVAL;
2982
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002983 if (ohri->st_shift)
2984 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
2985 oh->name, ohri->name);
2986 return omap4_prminst_deassert_hardreset(ohri->rst_shift,
2987 oh->clkdm->pwrdm.ptr->prcm_partition,
2988 oh->clkdm->pwrdm.ptr->prcm_offs,
2989 oh->prcm.omap4.rstctrl_offs);
2990}
2991
2992/**
2993 * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
2994 * @oh: struct omap_hwmod * to test hardreset
2995 * @ohri: hardreset line data
2996 *
2997 * Call omap4_prminst_is_hardreset_asserted() with parameters
2998 * extracted from the hwmod @oh and the hardreset line data @ohri.
2999 * Only intended for use as an soc_ops function pointer. Passes along
3000 * the return value from omap4_prminst_is_hardreset_asserted(). XXX
3001 * This function is scheduled for removal when the PRM code is moved
3002 * into drivers/.
3003 */
3004static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
3005 struct omap_hwmod_rst_info *ohri)
3006{
Paul Walmsley07b3a132012-06-20 20:11:36 -06003007 if (!oh->clkdm)
3008 return -EINVAL;
3009
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003010 return omap4_prminst_is_hardreset_asserted(ohri->rst_shift,
3011 oh->clkdm->pwrdm.ptr->prcm_partition,
3012 oh->clkdm->pwrdm.ptr->prcm_offs,
3013 oh->prcm.omap4.rstctrl_offs);
3014}
3015
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003016/**
3017 * _am33xx_assert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3018 * @oh: struct omap_hwmod * to assert hardreset
3019 * @ohri: hardreset line data
3020 *
3021 * Call am33xx_prminst_assert_hardreset() with parameters extracted
3022 * from the hwmod @oh and the hardreset line data @ohri. Only
3023 * intended for use as an soc_ops function pointer. Passes along the
3024 * return value from am33xx_prminst_assert_hardreset(). XXX This
3025 * function is scheduled for removal when the PRM code is moved into
3026 * drivers/.
3027 */
3028static int _am33xx_assert_hardreset(struct omap_hwmod *oh,
3029 struct omap_hwmod_rst_info *ohri)
3030
3031{
3032 return am33xx_prm_assert_hardreset(ohri->rst_shift,
3033 oh->clkdm->pwrdm.ptr->prcm_offs,
3034 oh->prcm.omap4.rstctrl_offs);
3035}
3036
3037/**
3038 * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3039 * @oh: struct omap_hwmod * to deassert hardreset
3040 * @ohri: hardreset line data
3041 *
3042 * Call am33xx_prminst_deassert_hardreset() with parameters extracted
3043 * from the hwmod @oh and the hardreset line data @ohri. Only
3044 * intended for use as an soc_ops function pointer. Passes along the
3045 * return value from am33xx_prminst_deassert_hardreset(). XXX This
3046 * function is scheduled for removal when the PRM code is moved into
3047 * drivers/.
3048 */
3049static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
3050 struct omap_hwmod_rst_info *ohri)
3051{
3052 if (ohri->st_shift)
3053 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
3054 oh->name, ohri->name);
3055
3056 return am33xx_prm_deassert_hardreset(ohri->rst_shift,
3057 oh->clkdm->pwrdm.ptr->prcm_offs,
3058 oh->prcm.omap4.rstctrl_offs,
3059 oh->prcm.omap4.rstst_offs);
3060}
3061
3062/**
3063 * _am33xx_is_hardreset_asserted - call AM33XX PRM hardreset fn with hwmod args
3064 * @oh: struct omap_hwmod * to test hardreset
3065 * @ohri: hardreset line data
3066 *
3067 * Call am33xx_prminst_is_hardreset_asserted() with parameters
3068 * extracted from the hwmod @oh and the hardreset line data @ohri.
3069 * Only intended for use as an soc_ops function pointer. Passes along
3070 * the return value from am33xx_prminst_is_hardreset_asserted(). XXX
3071 * This function is scheduled for removal when the PRM code is moved
3072 * into drivers/.
3073 */
3074static int _am33xx_is_hardreset_asserted(struct omap_hwmod *oh,
3075 struct omap_hwmod_rst_info *ohri)
3076{
3077 return am33xx_prm_is_hardreset_asserted(ohri->rst_shift,
3078 oh->clkdm->pwrdm.ptr->prcm_offs,
3079 oh->prcm.omap4.rstctrl_offs);
3080}
3081
Paul Walmsley63c85232009-09-03 20:14:03 +03003082/* Public functions */
3083
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003084u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03003085{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003086 if (oh->flags & HWMOD_16BIT_REG)
3087 return __raw_readw(oh->_mpu_rt_va + reg_offs);
3088 else
3089 return __raw_readl(oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003090}
3091
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003092void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03003093{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003094 if (oh->flags & HWMOD_16BIT_REG)
3095 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
3096 else
3097 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003098}
3099
Paul Walmsley887adea2010-07-26 16:34:33 -06003100/**
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003101 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
3102 * @oh: struct omap_hwmod *
3103 *
3104 * This is a public function exposed to drivers. Some drivers may need to do
3105 * some settings before and after resetting the device. Those drivers after
3106 * doing the necessary settings could use this function to start a reset by
3107 * setting the SYSCONFIG.SOFTRESET bit.
3108 */
3109int omap_hwmod_softreset(struct omap_hwmod *oh)
3110{
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003111 u32 v;
3112 int ret;
3113
3114 if (!oh || !(oh->_sysc_cache))
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003115 return -EINVAL;
3116
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003117 v = oh->_sysc_cache;
3118 ret = _set_softreset(oh, &v);
3119 if (ret)
3120 goto error;
3121 _write_sysconfig(v, oh);
3122
3123error:
3124 return ret;
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003125}
3126
3127/**
Paul Walmsley887adea2010-07-26 16:34:33 -06003128 * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode
3129 * @oh: struct omap_hwmod *
3130 * @idlemode: SIDLEMODE field bits (shifted to bit 0)
3131 *
3132 * Sets the IP block's OCP slave idlemode in hardware, and updates our
3133 * local copy. Intended to be used by drivers that have some erratum
3134 * that requires direct manipulation of the SIDLEMODE bits. Returns
3135 * -EINVAL if @oh is null, or passes along the return value from
3136 * _set_slave_idlemode().
3137 *
3138 * XXX Does this function have any current users? If not, we should
3139 * remove it; it is better to let the rest of the hwmod code handle this.
3140 * Any users of this function should be scrutinized carefully.
3141 */
Kevin Hilman46273e62010-01-26 20:13:03 -07003142int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode)
3143{
3144 u32 v;
3145 int retval = 0;
3146
3147 if (!oh)
3148 return -EINVAL;
3149
3150 v = oh->_sysc_cache;
3151
3152 retval = _set_slave_idlemode(oh, idlemode, &v);
3153 if (!retval)
3154 _write_sysconfig(v, oh);
3155
3156 return retval;
3157}
3158
Paul Walmsley63c85232009-09-03 20:14:03 +03003159/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003160 * omap_hwmod_lookup - look up a registered omap_hwmod by name
3161 * @name: name of the omap_hwmod to look up
3162 *
3163 * Given a @name of an omap_hwmod, return a pointer to the registered
3164 * struct omap_hwmod *, or NULL upon error.
3165 */
3166struct omap_hwmod *omap_hwmod_lookup(const char *name)
3167{
3168 struct omap_hwmod *oh;
3169
3170 if (!name)
3171 return NULL;
3172
Paul Walmsley63c85232009-09-03 20:14:03 +03003173 oh = _lookup(name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003174
3175 return oh;
3176}
3177
3178/**
3179 * omap_hwmod_for_each - call function for each registered omap_hwmod
3180 * @fn: pointer to a callback function
Paul Walmsley97d601622010-07-26 16:34:30 -06003181 * @data: void * data to pass to callback function
Paul Walmsley63c85232009-09-03 20:14:03 +03003182 *
3183 * Call @fn for each registered omap_hwmod, passing @data to each
3184 * function. @fn must return 0 for success or any other value for
3185 * failure. If @fn returns non-zero, the iteration across omap_hwmods
3186 * will stop and the non-zero return value will be passed to the
3187 * caller of omap_hwmod_for_each(). @fn is called with
3188 * omap_hwmod_for_each() held.
3189 */
Paul Walmsley97d601622010-07-26 16:34:30 -06003190int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
3191 void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03003192{
3193 struct omap_hwmod *temp_oh;
Govindraj.R30ebad92011-06-01 11:28:56 +05303194 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003195
3196 if (!fn)
3197 return -EINVAL;
3198
Paul Walmsley63c85232009-09-03 20:14:03 +03003199 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
Paul Walmsley97d601622010-07-26 16:34:30 -06003200 ret = (*fn)(temp_oh, data);
Paul Walmsley63c85232009-09-03 20:14:03 +03003201 if (ret)
3202 break;
3203 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003204
3205 return ret;
3206}
3207
Paul Walmsley63c85232009-09-03 20:14:03 +03003208/**
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003209 * omap_hwmod_register_links - register an array of hwmod links
3210 * @ois: pointer to an array of omap_hwmod_ocp_if to register
3211 *
3212 * Intended to be called early in boot before the clock framework is
3213 * initialized. If @ois is not null, will register all omap_hwmods
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003214 * listed in @ois that are valid for this chip. Returns -EINVAL if
3215 * omap_hwmod_init() hasn't been called before calling this function,
3216 * -ENOMEM if the link memory area can't be allocated, or 0 upon
3217 * success.
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003218 */
3219int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
3220{
3221 int r, i;
3222
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003223 if (!inited)
3224 return -EINVAL;
3225
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003226 if (!ois)
3227 return 0;
3228
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003229 if (!linkspace) {
3230 if (_alloc_linkspace(ois)) {
3231 pr_err("omap_hwmod: could not allocate link space\n");
3232 return -ENOMEM;
3233 }
3234 }
3235
3236 i = 0;
3237 do {
3238 r = _register_link(ois[i]);
3239 WARN(r && r != -EEXIST,
3240 "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3241 ois[i]->master->name, ois[i]->slave->name, r);
3242 } while (ois[++i]);
3243
3244 return 0;
3245}
3246
3247/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003248 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3249 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003250 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003251 * If the hwmod data corresponding to the MPU subsystem IP block
3252 * hasn't been initialized and set up yet, do so now. This must be
3253 * done first since sleep dependencies may be added from other hwmods
3254 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
3255 * return value.
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003256 */
Paul Walmsley381d0332012-04-19 00:58:22 -06003257static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003258{
Paul Walmsley381d0332012-04-19 00:58:22 -06003259 if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3260 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3261 __func__, MPU_INITIATOR_NAME);
3262 else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3263 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
Paul Walmsley63c85232009-09-03 20:14:03 +03003264}
3265
3266/**
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003267 * omap_hwmod_setup_one - set up a single hwmod
3268 * @oh_name: const char * name of the already-registered hwmod to set up
3269 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003270 * Initialize and set up a single hwmod. Intended to be used for a
3271 * small number of early devices, such as the timer IP blocks used for
3272 * the scheduler clock. Must be called after omap2_clk_init().
3273 * Resolves the struct clk names to struct clk pointers for each
3274 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
3275 * -EINVAL upon error or 0 upon success.
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003276 */
3277int __init omap_hwmod_setup_one(const char *oh_name)
3278{
3279 struct omap_hwmod *oh;
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003280
3281 pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3282
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003283 oh = _lookup(oh_name);
3284 if (!oh) {
3285 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3286 return -EINVAL;
3287 }
3288
Paul Walmsley381d0332012-04-19 00:58:22 -06003289 _ensure_mpu_hwmod_is_setup(oh);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003290
Paul Walmsley381d0332012-04-19 00:58:22 -06003291 _init(oh, NULL);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003292 _setup(oh, NULL);
3293
3294 return 0;
3295}
3296
3297/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003298 * omap_hwmod_setup_all - set up all registered IP blocks
Paul Walmsley63c85232009-09-03 20:14:03 +03003299 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003300 * Initialize and set up all IP blocks registered with the hwmod code.
3301 * Must be called after omap2_clk_init(). Resolves the struct clk
3302 * names to struct clk pointers for each registered omap_hwmod. Also
3303 * calls _setup() on each hwmod. Returns 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003304 */
Paul Walmsley550c8092011-02-28 11:58:14 -07003305static int __init omap_hwmod_setup_all(void)
Paul Walmsley63c85232009-09-03 20:14:03 +03003306{
Paul Walmsley381d0332012-04-19 00:58:22 -06003307 _ensure_mpu_hwmod_is_setup(NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003308
Paul Walmsley381d0332012-04-19 00:58:22 -06003309 omap_hwmod_for_each(_init, NULL);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003310 omap_hwmod_for_each(_setup, NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003311
3312 return 0;
3313}
Paul Walmsley550c8092011-02-28 11:58:14 -07003314core_initcall(omap_hwmod_setup_all);
Paul Walmsley63c85232009-09-03 20:14:03 +03003315
3316/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003317 * omap_hwmod_enable - enable an omap_hwmod
3318 * @oh: struct omap_hwmod *
3319 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003320 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
Paul Walmsley63c85232009-09-03 20:14:03 +03003321 * Returns -EINVAL on error or passes along the return value from _enable().
3322 */
3323int omap_hwmod_enable(struct omap_hwmod *oh)
3324{
3325 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003326 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003327
3328 if (!oh)
3329 return -EINVAL;
3330
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003331 spin_lock_irqsave(&oh->_lock, flags);
3332 r = _enable(oh);
3333 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003334
3335 return r;
3336}
3337
3338/**
3339 * omap_hwmod_idle - idle an omap_hwmod
3340 * @oh: struct omap_hwmod *
3341 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003342 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
Paul Walmsley63c85232009-09-03 20:14:03 +03003343 * Returns -EINVAL on error or passes along the return value from _idle().
3344 */
3345int omap_hwmod_idle(struct omap_hwmod *oh)
3346{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003347 unsigned long flags;
3348
Paul Walmsley63c85232009-09-03 20:14:03 +03003349 if (!oh)
3350 return -EINVAL;
3351
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003352 spin_lock_irqsave(&oh->_lock, flags);
3353 _idle(oh);
3354 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003355
3356 return 0;
3357}
3358
3359/**
3360 * omap_hwmod_shutdown - shutdown an omap_hwmod
3361 * @oh: struct omap_hwmod *
3362 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003363 * Shutdown an omap_hwmod @oh. Intended to be called by
Paul Walmsley63c85232009-09-03 20:14:03 +03003364 * omap_device_shutdown(). Returns -EINVAL on error or passes along
3365 * the return value from _shutdown().
3366 */
3367int omap_hwmod_shutdown(struct omap_hwmod *oh)
3368{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003369 unsigned long flags;
3370
Paul Walmsley63c85232009-09-03 20:14:03 +03003371 if (!oh)
3372 return -EINVAL;
3373
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003374 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003375 _shutdown(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003376 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003377
3378 return 0;
3379}
3380
3381/**
3382 * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
3383 * @oh: struct omap_hwmod *oh
3384 *
3385 * Intended to be called by the omap_device code.
3386 */
3387int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
3388{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003389 unsigned long flags;
3390
3391 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003392 _enable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003393 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003394
3395 return 0;
3396}
3397
3398/**
3399 * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
3400 * @oh: struct omap_hwmod *oh
3401 *
3402 * Intended to be called by the omap_device code.
3403 */
3404int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
3405{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003406 unsigned long flags;
3407
3408 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003409 _disable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003410 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003411
3412 return 0;
3413}
3414
3415/**
3416 * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
3417 * @oh: struct omap_hwmod *oh
3418 *
3419 * Intended to be called by drivers and core code when all posted
3420 * writes to a device must complete before continuing further
3421 * execution (for example, after clearing some device IRQSTATUS
3422 * register bits)
3423 *
3424 * XXX what about targets with multiple OCP threads?
3425 */
3426void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
3427{
3428 BUG_ON(!oh);
3429
Paul Walmsley43b40992010-02-22 22:09:34 -07003430 if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
Russell King4f8a4282012-02-07 10:59:37 +00003431 WARN(1, "omap_device: %s: OCP barrier impossible due to device configuration\n",
3432 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003433 return;
3434 }
3435
3436 /*
3437 * Forces posted writes to complete on the OCP thread handling
3438 * register writes
3439 */
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003440 omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003441}
3442
3443/**
3444 * omap_hwmod_reset - reset the hwmod
3445 * @oh: struct omap_hwmod *
3446 *
3447 * Under some conditions, a driver may wish to reset the entire device.
3448 * Called from omap_device code. Returns -EINVAL on error or passes along
Liam Girdwood9b579112010-09-21 10:34:09 -06003449 * the return value from _reset().
Paul Walmsley63c85232009-09-03 20:14:03 +03003450 */
3451int omap_hwmod_reset(struct omap_hwmod *oh)
3452{
3453 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003454 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003455
Liam Girdwood9b579112010-09-21 10:34:09 -06003456 if (!oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03003457 return -EINVAL;
3458
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003459 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003460 r = _reset(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003461 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003462
3463 return r;
3464}
3465
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003466/*
3467 * IP block data retrieval functions
3468 */
3469
Paul Walmsley63c85232009-09-03 20:14:03 +03003470/**
3471 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
3472 * @oh: struct omap_hwmod *
Peter Ujfalusidad41912012-11-21 16:15:17 -07003473 * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
Paul Walmsley63c85232009-09-03 20:14:03 +03003474 *
3475 * Count the number of struct resource array elements necessary to
3476 * contain omap_hwmod @oh resources. Intended to be called by code
3477 * that registers omap_devices. Intended to be used to determine the
3478 * size of a dynamically-allocated struct resource array, before
3479 * calling omap_hwmod_fill_resources(). Returns the number of struct
3480 * resource array elements needed.
3481 *
3482 * XXX This code is not optimized. It could attempt to merge adjacent
3483 * resource IDs.
3484 *
3485 */
Peter Ujfalusidad41912012-11-21 16:15:17 -07003486int omap_hwmod_count_resources(struct omap_hwmod *oh, unsigned long flags)
Paul Walmsley63c85232009-09-03 20:14:03 +03003487{
Peter Ujfalusidad41912012-11-21 16:15:17 -07003488 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003489
Peter Ujfalusidad41912012-11-21 16:15:17 -07003490 if (flags & IORESOURCE_IRQ)
3491 ret += _count_mpu_irqs(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03003492
Peter Ujfalusidad41912012-11-21 16:15:17 -07003493 if (flags & IORESOURCE_DMA)
3494 ret += _count_sdma_reqs(oh);
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003495
Peter Ujfalusidad41912012-11-21 16:15:17 -07003496 if (flags & IORESOURCE_MEM) {
3497 int i = 0;
3498 struct omap_hwmod_ocp_if *os;
3499 struct list_head *p = oh->slave_ports.next;
3500
3501 while (i < oh->slaves_cnt) {
3502 os = _fetch_next_ocp_if(&p, &i);
3503 ret += _count_ocp_if_addr_spaces(os);
3504 }
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003505 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003506
3507 return ret;
3508}
3509
3510/**
3511 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
3512 * @oh: struct omap_hwmod *
3513 * @res: pointer to the first element of an array of struct resource to fill
3514 *
3515 * Fill the struct resource array @res with resource data from the
3516 * omap_hwmod @oh. Intended to be called by code that registers
3517 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3518 * number of array elements filled.
3519 */
3520int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
3521{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003522 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003523 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003524 int i, j, mpu_irqs_cnt, sdma_reqs_cnt, addr_cnt;
Paul Walmsley63c85232009-09-03 20:14:03 +03003525 int r = 0;
3526
3527 /* For each IRQ, DMA, memory area, fill in array.*/
3528
Paul Walmsley212738a2011-07-09 19:14:06 -06003529 mpu_irqs_cnt = _count_mpu_irqs(oh);
3530 for (i = 0; i < mpu_irqs_cnt; i++) {
Paul Walmsley718bfd72009-12-08 16:34:16 -07003531 (res + r)->name = (oh->mpu_irqs + i)->name;
3532 (res + r)->start = (oh->mpu_irqs + i)->irq;
3533 (res + r)->end = (oh->mpu_irqs + i)->irq;
Paul Walmsley63c85232009-09-03 20:14:03 +03003534 (res + r)->flags = IORESOURCE_IRQ;
3535 r++;
3536 }
3537
Paul Walmsleybc614952011-07-09 19:14:07 -06003538 sdma_reqs_cnt = _count_sdma_reqs(oh);
3539 for (i = 0; i < sdma_reqs_cnt; i++) {
Benoit Cousson9ee9fff2010-09-21 10:34:08 -06003540 (res + r)->name = (oh->sdma_reqs + i)->name;
3541 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3542 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
Paul Walmsley63c85232009-09-03 20:14:03 +03003543 (res + r)->flags = IORESOURCE_DMA;
3544 r++;
3545 }
3546
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003547 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003548
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003549 i = 0;
3550 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003551 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley78183f32011-07-09 19:14:05 -06003552 addr_cnt = _count_ocp_if_addr_spaces(os);
Paul Walmsley63c85232009-09-03 20:14:03 +03003553
Paul Walmsley78183f32011-07-09 19:14:05 -06003554 for (j = 0; j < addr_cnt; j++) {
Kishon Vijay Abraham Icd503802011-02-24 12:51:45 -08003555 (res + r)->name = (os->addr + j)->name;
Paul Walmsley63c85232009-09-03 20:14:03 +03003556 (res + r)->start = (os->addr + j)->pa_start;
3557 (res + r)->end = (os->addr + j)->pa_end;
3558 (res + r)->flags = IORESOURCE_MEM;
3559 r++;
3560 }
3561 }
3562
3563 return r;
3564}
3565
3566/**
Vaibhav Hiremathb82b04e2012-08-29 15:18:11 +05303567 * omap_hwmod_fill_dma_resources - fill struct resource array with dma data
3568 * @oh: struct omap_hwmod *
3569 * @res: pointer to the array of struct resource to fill
3570 *
3571 * Fill the struct resource array @res with dma resource data from the
3572 * omap_hwmod @oh. Intended to be called by code that registers
3573 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3574 * number of array elements filled.
3575 */
3576int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res)
3577{
3578 int i, sdma_reqs_cnt;
3579 int r = 0;
3580
3581 sdma_reqs_cnt = _count_sdma_reqs(oh);
3582 for (i = 0; i < sdma_reqs_cnt; i++) {
3583 (res + r)->name = (oh->sdma_reqs + i)->name;
3584 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3585 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3586 (res + r)->flags = IORESOURCE_DMA;
3587 r++;
3588 }
3589
3590 return r;
3591}
3592
3593/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003594 * omap_hwmod_get_resource_byname - fetch IP block integration data by name
3595 * @oh: struct omap_hwmod * to operate on
3596 * @type: one of the IORESOURCE_* constants from include/linux/ioport.h
3597 * @name: pointer to the name of the data to fetch (optional)
3598 * @rsrc: pointer to a struct resource, allocated by the caller
3599 *
3600 * Retrieve MPU IRQ, SDMA request line, or address space start/end
3601 * data for the IP block pointed to by @oh. The data will be filled
3602 * into a struct resource record pointed to by @rsrc. The struct
3603 * resource must be allocated by the caller. When @name is non-null,
3604 * the data associated with the matching entry in the IRQ/SDMA/address
3605 * space hwmod data arrays will be returned. If @name is null, the
3606 * first array entry will be returned. Data order is not meaningful
3607 * in hwmod data, so callers are strongly encouraged to use a non-null
3608 * @name whenever possible to avoid unpredictable effects if hwmod
3609 * data is later added that causes data ordering to change. This
3610 * function is only intended for use by OMAP core code. Device
3611 * drivers should not call this function - the appropriate bus-related
3612 * data accessor functions should be used instead. Returns 0 upon
3613 * success or a negative error code upon error.
3614 */
3615int omap_hwmod_get_resource_byname(struct omap_hwmod *oh, unsigned int type,
3616 const char *name, struct resource *rsrc)
3617{
3618 int r;
3619 unsigned int irq, dma;
3620 u32 pa_start, pa_end;
3621
3622 if (!oh || !rsrc)
3623 return -EINVAL;
3624
3625 if (type == IORESOURCE_IRQ) {
3626 r = _get_mpu_irq_by_name(oh, name, &irq);
3627 if (r)
3628 return r;
3629
3630 rsrc->start = irq;
3631 rsrc->end = irq;
3632 } else if (type == IORESOURCE_DMA) {
3633 r = _get_sdma_req_by_name(oh, name, &dma);
3634 if (r)
3635 return r;
3636
3637 rsrc->start = dma;
3638 rsrc->end = dma;
3639 } else if (type == IORESOURCE_MEM) {
3640 r = _get_addr_space_by_name(oh, name, &pa_start, &pa_end);
3641 if (r)
3642 return r;
3643
3644 rsrc->start = pa_start;
3645 rsrc->end = pa_end;
3646 } else {
3647 return -EINVAL;
3648 }
3649
3650 rsrc->flags = type;
3651 rsrc->name = name;
3652
3653 return 0;
3654}
3655
3656/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003657 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3658 * @oh: struct omap_hwmod *
3659 *
3660 * Return the powerdomain pointer associated with the OMAP module
3661 * @oh's main clock. If @oh does not have a main clk, return the
3662 * powerdomain associated with the interface clock associated with the
3663 * module's MPU port. (XXX Perhaps this should use the SDMA port
3664 * instead?) Returns NULL on error, or a struct powerdomain * on
3665 * success.
3666 */
3667struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3668{
3669 struct clk *c;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003670 struct omap_hwmod_ocp_if *oi;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003671 struct clockdomain *clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003672 struct clk_hw_omap *clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003673
3674 if (!oh)
3675 return NULL;
3676
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003677 if (oh->clkdm)
3678 return oh->clkdm->pwrdm.ptr;
3679
Paul Walmsley63c85232009-09-03 20:14:03 +03003680 if (oh->_clk) {
3681 c = oh->_clk;
3682 } else {
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003683 oi = _find_mpu_rt_port(oh);
3684 if (!oi)
Paul Walmsley63c85232009-09-03 20:14:03 +03003685 return NULL;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003686 c = oi->_clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003687 }
3688
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003689 clk = to_clk_hw_omap(__clk_get_hw(c));
3690 clkdm = clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003691 if (!clkdm)
Thara Gopinathd5647c12010-03-31 04:16:29 -06003692 return NULL;
3693
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003694 return clkdm->pwrdm.ptr;
Paul Walmsley63c85232009-09-03 20:14:03 +03003695}
3696
3697/**
Paul Walmsleydb2a60b2010-07-26 16:34:33 -06003698 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3699 * @oh: struct omap_hwmod *
3700 *
3701 * Returns the virtual address corresponding to the beginning of the
3702 * module's register target, in the address range that is intended to
3703 * be used by the MPU. Returns the virtual address upon success or NULL
3704 * upon error.
3705 */
3706void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3707{
3708 if (!oh)
3709 return NULL;
3710
3711 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3712 return NULL;
3713
3714 if (oh->_state == _HWMOD_STATE_UNKNOWN)
3715 return NULL;
3716
3717 return oh->_mpu_rt_va;
3718}
3719
3720/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003721 * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
3722 * @oh: struct omap_hwmod *
3723 * @init_oh: struct omap_hwmod * (initiator)
3724 *
3725 * Add a sleep dependency between the initiator @init_oh and @oh.
3726 * Intended to be called by DSP/Bridge code via platform_data for the
3727 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3728 * code needs to add/del initiator dependencies dynamically
3729 * before/after accessing a device. Returns the return value from
3730 * _add_initiator_dep().
3731 *
3732 * XXX Keep a usecount in the clockdomain code
3733 */
3734int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
3735 struct omap_hwmod *init_oh)
3736{
3737 return _add_initiator_dep(oh, init_oh);
3738}
3739
3740/*
3741 * XXX what about functions for drivers to save/restore ocp_sysconfig
3742 * for context save/restore operations?
3743 */
3744
3745/**
3746 * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
3747 * @oh: struct omap_hwmod *
3748 * @init_oh: struct omap_hwmod * (initiator)
3749 *
3750 * Remove a sleep dependency between the initiator @init_oh and @oh.
3751 * Intended to be called by DSP/Bridge code via platform_data for the
3752 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3753 * code needs to add/del initiator dependencies dynamically
3754 * before/after accessing a device. Returns the return value from
3755 * _del_initiator_dep().
3756 *
3757 * XXX Keep a usecount in the clockdomain code
3758 */
3759int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
3760 struct omap_hwmod *init_oh)
3761{
3762 return _del_initiator_dep(oh, init_oh);
3763}
3764
3765/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003766 * omap_hwmod_enable_wakeup - allow device to wake up the system
3767 * @oh: struct omap_hwmod *
3768 *
3769 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
Govindraj.R2a1cc142012-04-05 02:59:32 -06003770 * send wakeups to the PRCM, and enable I/O ring wakeup events for
3771 * this IP block if it has dynamic mux entries. Eventually this
3772 * should set PRCM wakeup registers to cause the PRCM to receive
3773 * wakeup events from the module. Does not set any wakeup routing
3774 * registers beyond this point - if the module is to wake up any other
3775 * module or subsystem, that must be set separately. Called by
3776 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003777 */
3778int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
3779{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003780 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003781 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003782
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003783 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003784
3785 if (oh->class->sysc &&
3786 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3787 v = oh->_sysc_cache;
3788 _enable_wakeup(oh, &v);
3789 _write_sysconfig(v, oh);
3790 }
3791
Govindraj Receec002011-12-16 14:36:58 -07003792 _set_idle_ioring_wakeup(oh, true);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003793 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003794
3795 return 0;
3796}
3797
3798/**
3799 * omap_hwmod_disable_wakeup - prevent device from waking the system
3800 * @oh: struct omap_hwmod *
3801 *
3802 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
Govindraj.R2a1cc142012-04-05 02:59:32 -06003803 * from sending wakeups to the PRCM, and disable I/O ring wakeup
3804 * events for this IP block if it has dynamic mux entries. Eventually
3805 * this should clear PRCM wakeup registers to cause the PRCM to ignore
3806 * wakeup events from the module. Does not set any wakeup routing
3807 * registers beyond this point - if the module is to wake up any other
3808 * module or subsystem, that must be set separately. Called by
3809 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003810 */
3811int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
3812{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003813 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003814 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003815
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003816 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003817
3818 if (oh->class->sysc &&
3819 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3820 v = oh->_sysc_cache;
3821 _disable_wakeup(oh, &v);
3822 _write_sysconfig(v, oh);
3823 }
3824
Govindraj Receec002011-12-16 14:36:58 -07003825 _set_idle_ioring_wakeup(oh, false);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003826 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003827
3828 return 0;
3829}
Paul Walmsley43b40992010-02-22 22:09:34 -07003830
3831/**
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003832 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3833 * contained in the hwmod module.
3834 * @oh: struct omap_hwmod *
3835 * @name: name of the reset line to lookup and assert
3836 *
3837 * Some IP like dsp, ipu or iva contain processor that require
3838 * an HW reset line to be assert / deassert in order to enable fully
3839 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3840 * yet supported on this OMAP; otherwise, passes along the return value
3841 * from _assert_hardreset().
3842 */
3843int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
3844{
3845 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003846 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003847
3848 if (!oh)
3849 return -EINVAL;
3850
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003851 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003852 ret = _assert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003853 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003854
3855 return ret;
3856}
3857
3858/**
3859 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3860 * contained in the hwmod module.
3861 * @oh: struct omap_hwmod *
3862 * @name: name of the reset line to look up and deassert
3863 *
3864 * Some IP like dsp, ipu or iva contain processor that require
3865 * an HW reset line to be assert / deassert in order to enable fully
3866 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3867 * yet supported on this OMAP; otherwise, passes along the return value
3868 * from _deassert_hardreset().
3869 */
3870int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
3871{
3872 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003873 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003874
3875 if (!oh)
3876 return -EINVAL;
3877
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003878 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003879 ret = _deassert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003880 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003881
3882 return ret;
3883}
3884
3885/**
3886 * omap_hwmod_read_hardreset - read the HW reset line state of submodules
3887 * contained in the hwmod module
3888 * @oh: struct omap_hwmod *
3889 * @name: name of the reset line to look up and read
3890 *
3891 * Return the current state of the hwmod @oh's reset line named @name:
3892 * returns -EINVAL upon parameter error or if this operation
3893 * is unsupported on the current OMAP; otherwise, passes along the return
3894 * value from _read_hardreset().
3895 */
3896int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
3897{
3898 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003899 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003900
3901 if (!oh)
3902 return -EINVAL;
3903
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003904 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003905 ret = _read_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003906 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003907
3908 return ret;
3909}
3910
3911
3912/**
Paul Walmsley43b40992010-02-22 22:09:34 -07003913 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
3914 * @classname: struct omap_hwmod_class name to search for
3915 * @fn: callback function pointer to call for each hwmod in class @classname
3916 * @user: arbitrary context data to pass to the callback function
3917 *
Benoit Coussonce35b242010-12-21 21:31:28 -07003918 * For each omap_hwmod of class @classname, call @fn.
3919 * If the callback function returns something other than
Paul Walmsley43b40992010-02-22 22:09:34 -07003920 * zero, the iterator is terminated, and the callback function's return
3921 * value is passed back to the caller. Returns 0 upon success, -EINVAL
3922 * if @classname or @fn are NULL, or passes back the error code from @fn.
3923 */
3924int omap_hwmod_for_each_by_class(const char *classname,
3925 int (*fn)(struct omap_hwmod *oh,
3926 void *user),
3927 void *user)
3928{
3929 struct omap_hwmod *temp_oh;
3930 int ret = 0;
3931
3932 if (!classname || !fn)
3933 return -EINVAL;
3934
3935 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
3936 __func__, classname);
3937
Paul Walmsley43b40992010-02-22 22:09:34 -07003938 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3939 if (!strcmp(temp_oh->class->name, classname)) {
3940 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
3941 __func__, temp_oh->name);
3942 ret = (*fn)(temp_oh, user);
3943 if (ret)
3944 break;
3945 }
3946 }
3947
Paul Walmsley43b40992010-02-22 22:09:34 -07003948 if (ret)
3949 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
3950 __func__, ret);
3951
3952 return ret;
3953}
3954
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003955/**
3956 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
3957 * @oh: struct omap_hwmod *
3958 * @state: state that _setup() should leave the hwmod in
3959 *
Paul Walmsley550c8092011-02-28 11:58:14 -07003960 * Sets the hwmod state that @oh will enter at the end of _setup()
Paul Walmsley64813c32012-04-18 19:10:03 -06003961 * (called by omap_hwmod_setup_*()). See also the documentation
3962 * for _setup_postsetup(), above. Returns 0 upon success or
3963 * -EINVAL if there is a problem with the arguments or if the hwmod is
3964 * in the wrong state.
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003965 */
3966int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
3967{
3968 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003969 unsigned long flags;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003970
3971 if (!oh)
3972 return -EINVAL;
3973
3974 if (state != _HWMOD_STATE_DISABLED &&
3975 state != _HWMOD_STATE_ENABLED &&
3976 state != _HWMOD_STATE_IDLE)
3977 return -EINVAL;
3978
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003979 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003980
3981 if (oh->_state != _HWMOD_STATE_REGISTERED) {
3982 ret = -EINVAL;
3983 goto ohsps_unlock;
3984 }
3985
3986 oh->_postsetup_state = state;
3987 ret = 0;
3988
3989ohsps_unlock:
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003990 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003991
3992 return ret;
3993}
Kevin Hilmanc80705a2010-12-21 21:31:55 -07003994
3995/**
3996 * omap_hwmod_get_context_loss_count - get lost context count
3997 * @oh: struct omap_hwmod *
3998 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07003999 * Returns the context loss count of associated @oh
4000 * upon success, or zero if no context loss data is available.
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004001 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004002 * On OMAP4, this queries the per-hwmod context loss register,
4003 * assuming one exists. If not, or on OMAP2/3, this queries the
4004 * enclosing powerdomain context loss count.
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004005 */
Tomi Valkeinenfc013872011-06-09 16:56:23 +03004006int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004007{
4008 struct powerdomain *pwrdm;
4009 int ret = 0;
4010
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004011 if (soc_ops.get_context_lost)
4012 return soc_ops.get_context_lost(oh);
4013
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004014 pwrdm = omap_hwmod_get_pwrdm(oh);
4015 if (pwrdm)
4016 ret = pwrdm_get_context_loss_count(pwrdm);
4017
4018 return ret;
4019}
Paul Walmsley43b01642011-03-10 03:50:07 -07004020
4021/**
4022 * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
4023 * @oh: struct omap_hwmod *
4024 *
4025 * Prevent the hwmod @oh from being reset during the setup process.
4026 * Intended for use by board-*.c files on boards with devices that
4027 * cannot tolerate being reset. Must be called before the hwmod has
4028 * been set up. Returns 0 upon success or negative error code upon
4029 * failure.
4030 */
4031int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
4032{
4033 if (!oh)
4034 return -EINVAL;
4035
4036 if (oh->_state != _HWMOD_STATE_REGISTERED) {
4037 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
4038 oh->name);
4039 return -EINVAL;
4040 }
4041
4042 oh->flags |= HWMOD_INIT_NO_RESET;
4043
4044 return 0;
4045}
Tero Kristoabc2d542011-12-16 14:36:59 -07004046
4047/**
4048 * omap_hwmod_pad_route_irq - route an I/O pad wakeup to a particular MPU IRQ
4049 * @oh: struct omap_hwmod * containing hwmod mux entries
4050 * @pad_idx: array index in oh->mux of the hwmod mux entry to route wakeup
4051 * @irq_idx: the hwmod mpu_irqs array index of the IRQ to trigger on wakeup
4052 *
4053 * When an I/O pad wakeup arrives for the dynamic or wakeup hwmod mux
4054 * entry number @pad_idx for the hwmod @oh, trigger the interrupt
4055 * service routine for the hwmod's mpu_irqs array index @irq_idx. If
4056 * this function is not called for a given pad_idx, then the ISR
4057 * associated with @oh's first MPU IRQ will be triggered when an I/O
4058 * pad wakeup occurs on that pad. Note that @pad_idx is the index of
4059 * the _dynamic or wakeup_ entry: if there are other entries not
4060 * marked with OMAP_DEVICE_PAD_WAKEUP or OMAP_DEVICE_PAD_REMUX, these
4061 * entries are NOT COUNTED in the dynamic pad index. This function
4062 * must be called separately for each pad that requires its interrupt
4063 * to be re-routed this way. Returns -EINVAL if there is an argument
4064 * problem or if @oh does not have hwmod mux entries or MPU IRQs;
4065 * returns -ENOMEM if memory cannot be allocated; or 0 upon success.
4066 *
4067 * XXX This function interface is fragile. Rather than using array
4068 * indexes, which are subject to unpredictable change, it should be
4069 * using hwmod IRQ names, and some other stable key for the hwmod mux
4070 * pad records.
4071 */
4072int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx)
4073{
4074 int nr_irqs;
4075
4076 might_sleep();
4077
4078 if (!oh || !oh->mux || !oh->mpu_irqs || pad_idx < 0 ||
4079 pad_idx >= oh->mux->nr_pads_dynamic)
4080 return -EINVAL;
4081
4082 /* Check the number of available mpu_irqs */
4083 for (nr_irqs = 0; oh->mpu_irqs[nr_irqs].irq >= 0; nr_irqs++)
4084 ;
4085
4086 if (irq_idx >= nr_irqs)
4087 return -EINVAL;
4088
4089 if (!oh->mux->irqs) {
4090 /* XXX What frees this? */
4091 oh->mux->irqs = kzalloc(sizeof(int) * oh->mux->nr_pads_dynamic,
4092 GFP_KERNEL);
4093 if (!oh->mux->irqs)
4094 return -ENOMEM;
4095 }
4096 oh->mux->irqs[pad_idx] = irq_idx;
4097
4098 return 0;
4099}
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004100
4101/**
4102 * omap_hwmod_init - initialize the hwmod code
4103 *
4104 * Sets up some function pointers needed by the hwmod code to operate on the
4105 * currently-booted SoC. Intended to be called once during kernel init
4106 * before any hwmods are registered. No return value.
4107 */
4108void __init omap_hwmod_init(void)
4109{
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06004110 if (cpu_is_omap24xx()) {
4111 soc_ops.wait_target_ready = _omap2xxx_wait_target_ready;
4112 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4113 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4114 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
4115 } else if (cpu_is_omap34xx()) {
4116 soc_ops.wait_target_ready = _omap3xxx_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06004117 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4118 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4119 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
R Sricharan05e152c2012-06-05 16:21:32 +05304120 } else if (cpu_is_omap44xx() || soc_is_omap54xx()) {
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004121 soc_ops.enable_module = _omap4_enable_module;
4122 soc_ops.disable_module = _omap4_disable_module;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004123 soc_ops.wait_target_ready = _omap4_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06004124 soc_ops.assert_hardreset = _omap4_assert_hardreset;
4125 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
4126 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
Kevin Hilman0a179ea2012-06-18 12:12:25 -06004127 soc_ops.init_clkdm = _init_clkdm;
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004128 soc_ops.update_context_lost = _omap4_update_context_lost;
4129 soc_ops.get_context_lost = _omap4_get_context_lost;
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06004130 } else if (soc_is_am33xx()) {
4131 soc_ops.enable_module = _am33xx_enable_module;
4132 soc_ops.disable_module = _am33xx_disable_module;
4133 soc_ops.wait_target_ready = _am33xx_wait_target_ready;
4134 soc_ops.assert_hardreset = _am33xx_assert_hardreset;
4135 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
4136 soc_ops.is_hardreset_asserted = _am33xx_is_hardreset_asserted;
4137 soc_ops.init_clkdm = _init_clkdm;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004138 } else {
4139 WARN(1, "omap_hwmod: unknown SoC type\n");
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004140 }
4141
4142 inited = true;
4143}
Tony Lindgren68c9a952012-07-06 00:58:43 -07004144
4145/**
4146 * omap_hwmod_get_main_clk - get pointer to main clock name
4147 * @oh: struct omap_hwmod *
4148 *
4149 * Returns the main clock name assocated with @oh upon success,
4150 * or NULL if @oh is NULL.
4151 */
4152const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
4153{
4154 if (!oh)
4155 return NULL;
4156
4157 return oh->main_clk;
4158}