blob: f37d22c597f9cda770fb8529cc30c1b13b1bcd91 [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 Walmsleya135eaa2012-09-27 10:33:34 -0600142#include "clock.h"
Tony Lindgren2a296c82012-10-02 17:41:35 -0700143#include "omap_hwmod.h"
Paul Walmsley63c85232009-09-03 20:14:03 +0300144
Tony Lindgrendbc04162012-08-31 10:59:07 -0700145#include "soc.h"
146#include "common.h"
147#include "clockdomain.h"
148#include "powerdomain.h"
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -0600149#include "cm2xxx.h"
150#include "cm3xxx.h"
Benoit Coussond0f06312011-07-10 05:56:30 -0600151#include "cminst44xx.h"
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600152#include "cm33xx.h"
Paul Walmsleyb13159a2012-10-29 20:57:44 -0600153#include "prm.h"
Paul Walmsley139563a2012-10-21 01:01:10 -0600154#include "prm3xxx.h"
Paul Walmsleyd198b512010-12-21 15:30:54 -0700155#include "prm44xx.h"
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600156#include "prm33xx.h"
Benoit Coussoneaac3292011-07-10 05:56:31 -0600157#include "prminst44xx.h"
Tony Lindgren8d9af882010-12-22 18:42:35 -0800158#include "mux.h"
Vishwanath BS51658822012-06-22 08:40:04 -0600159#include "pm.h"
Paul Walmsley63c85232009-09-03 20:14:03 +0300160
Paul Walmsley63c85232009-09-03 20:14:03 +0300161/* Name of the OMAP hwmod for the MPU */
Benoit Cousson5c2c0292010-05-20 12:31:10 -0600162#define MPU_INITIATOR_NAME "mpu"
Paul Walmsley63c85232009-09-03 20:14:03 +0300163
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600164/*
165 * Number of struct omap_hwmod_link records per struct
166 * omap_hwmod_ocp_if record (master->slave and slave->master)
167 */
168#define LINKS_PER_OCP_IF 2
169
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600170/**
171 * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
172 * @enable_module: function to enable a module (via MODULEMODE)
173 * @disable_module: function to disable a module (via MODULEMODE)
174 *
175 * XXX Eventually this functionality will be hidden inside the PRM/CM
176 * device drivers. Until then, this should avoid huge blocks of cpu_is_*()
177 * conditionals in this code.
178 */
179struct omap_hwmod_soc_ops {
180 void (*enable_module)(struct omap_hwmod *oh);
181 int (*disable_module)(struct omap_hwmod *oh);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -0600182 int (*wait_target_ready)(struct omap_hwmod *oh);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -0600183 int (*assert_hardreset)(struct omap_hwmod *oh,
184 struct omap_hwmod_rst_info *ohri);
185 int (*deassert_hardreset)(struct omap_hwmod *oh,
186 struct omap_hwmod_rst_info *ohri);
187 int (*is_hardreset_asserted)(struct omap_hwmod *oh,
188 struct omap_hwmod_rst_info *ohri);
Kevin Hilman0a179ea2012-06-18 12:12:25 -0600189 int (*init_clkdm)(struct omap_hwmod *oh);
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -0700190 void (*update_context_lost)(struct omap_hwmod *oh);
191 int (*get_context_lost)(struct omap_hwmod *oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600192};
193
194/* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
195static struct omap_hwmod_soc_ops soc_ops;
196
Paul Walmsley63c85232009-09-03 20:14:03 +0300197/* omap_hwmod_list contains all registered struct omap_hwmods */
198static LIST_HEAD(omap_hwmod_list);
199
Paul Walmsley63c85232009-09-03 20:14:03 +0300200/* mpu_oh: used to add/remove MPU initiator from sleepdep list */
201static struct omap_hwmod *mpu_oh;
202
Vishwanath BS51658822012-06-22 08:40:04 -0600203/* io_chain_lock: used to serialize reconfigurations of the I/O chain */
204static DEFINE_SPINLOCK(io_chain_lock);
205
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600206/*
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600207 * linkspace: ptr to a buffer that struct omap_hwmod_link records are
208 * allocated from - used to reduce the number of small memory
209 * allocations, which has a significant impact on performance
210 */
211static struct omap_hwmod_link *linkspace;
212
213/*
214 * free_ls, max_ls: array indexes into linkspace; representing the
215 * next free struct omap_hwmod_link index, and the maximum number of
216 * struct omap_hwmod_link records allocated (respectively)
217 */
218static unsigned short free_ls, max_ls, ls_supp;
Paul Walmsley63c85232009-09-03 20:14:03 +0300219
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600220/* inited: set to true once the hwmod code is initialized */
221static bool inited;
222
Paul Walmsley63c85232009-09-03 20:14:03 +0300223/* Private functions */
224
225/**
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600226 * _fetch_next_ocp_if - return the next OCP interface in a list
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600227 * @p: ptr to a ptr to the list_head inside the ocp_if to return
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600228 * @i: pointer to the index of the element pointed to by @p in the list
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600229 *
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600230 * Return a pointer to the struct omap_hwmod_ocp_if record
231 * containing the struct list_head pointed to by @p, and increment
232 * @p such that a future call to this routine will return the next
233 * record.
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600234 */
235static struct omap_hwmod_ocp_if *_fetch_next_ocp_if(struct list_head **p,
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600236 int *i)
237{
238 struct omap_hwmod_ocp_if *oi;
239
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600240 oi = list_entry(*p, struct omap_hwmod_link, node)->ocp_if;
241 *p = (*p)->next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600242
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600243 *i = *i + 1;
244
245 return oi;
246}
247
248/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300249 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
250 * @oh: struct omap_hwmod *
251 *
252 * Load the current value of the hwmod OCP_SYSCONFIG register into the
253 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
254 * OCP_SYSCONFIG register or 0 upon success.
255 */
256static int _update_sysc_cache(struct omap_hwmod *oh)
257{
Paul Walmsley43b40992010-02-22 22:09:34 -0700258 if (!oh->class->sysc) {
259 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 +0300260 return -EINVAL;
261 }
262
263 /* XXX ensure module interface clock is up */
264
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -0700265 oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +0300266
Paul Walmsley43b40992010-02-22 22:09:34 -0700267 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
Thara Gopinath883edfd2010-01-19 17:30:51 -0700268 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
Paul Walmsley63c85232009-09-03 20:14:03 +0300269
270 return 0;
271}
272
273/**
274 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
275 * @v: OCP_SYSCONFIG value to write
276 * @oh: struct omap_hwmod *
277 *
Paul Walmsley43b40992010-02-22 22:09:34 -0700278 * Write @v into the module class' OCP_SYSCONFIG register, if it has
279 * one. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +0300280 */
281static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
282{
Paul Walmsley43b40992010-02-22 22:09:34 -0700283 if (!oh->class->sysc) {
284 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 +0300285 return;
286 }
287
288 /* XXX ensure module interface clock is up */
289
Rajendra Nayak233cbe52010-12-14 12:42:36 -0700290 /* Module might have lost context, always update cache and register */
291 oh->_sysc_cache = v;
292 omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +0300293}
294
295/**
296 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
297 * @oh: struct omap_hwmod *
298 * @standbymode: MIDLEMODE field bits
299 * @v: pointer to register contents to modify
300 *
301 * Update the master standby mode bits in @v to be @standbymode for
302 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
303 * upon error or 0 upon success.
304 */
305static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
306 u32 *v)
307{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700308 u32 mstandby_mask;
309 u8 mstandby_shift;
310
Paul Walmsley43b40992010-02-22 22:09:34 -0700311 if (!oh->class->sysc ||
312 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300313 return -EINVAL;
314
Paul Walmsley43b40992010-02-22 22:09:34 -0700315 if (!oh->class->sysc->sysc_fields) {
316 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700317 return -EINVAL;
318 }
319
Paul Walmsley43b40992010-02-22 22:09:34 -0700320 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700321 mstandby_mask = (0x3 << mstandby_shift);
322
323 *v &= ~mstandby_mask;
324 *v |= __ffs(standbymode) << mstandby_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300325
326 return 0;
327}
328
329/**
330 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
331 * @oh: struct omap_hwmod *
332 * @idlemode: SIDLEMODE field bits
333 * @v: pointer to register contents to modify
334 *
335 * Update the slave idle mode bits in @v to be @idlemode for the @oh
336 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
337 * or 0 upon success.
338 */
339static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
340{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700341 u32 sidle_mask;
342 u8 sidle_shift;
343
Paul Walmsley43b40992010-02-22 22:09:34 -0700344 if (!oh->class->sysc ||
345 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300346 return -EINVAL;
347
Paul Walmsley43b40992010-02-22 22:09:34 -0700348 if (!oh->class->sysc->sysc_fields) {
349 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700350 return -EINVAL;
351 }
352
Paul Walmsley43b40992010-02-22 22:09:34 -0700353 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700354 sidle_mask = (0x3 << sidle_shift);
355
356 *v &= ~sidle_mask;
357 *v |= __ffs(idlemode) << sidle_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300358
359 return 0;
360}
361
362/**
363 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
364 * @oh: struct omap_hwmod *
365 * @clockact: CLOCKACTIVITY field bits
366 * @v: pointer to register contents to modify
367 *
368 * Update the clockactivity mode bits in @v to be @clockact for the
369 * @oh hwmod. Used for additional powersaving on some modules. Does
370 * not write to the hardware. Returns -EINVAL upon error or 0 upon
371 * success.
372 */
373static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
374{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700375 u32 clkact_mask;
376 u8 clkact_shift;
377
Paul Walmsley43b40992010-02-22 22:09:34 -0700378 if (!oh->class->sysc ||
379 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
Paul Walmsley63c85232009-09-03 20:14:03 +0300380 return -EINVAL;
381
Paul Walmsley43b40992010-02-22 22:09:34 -0700382 if (!oh->class->sysc->sysc_fields) {
383 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700384 return -EINVAL;
385 }
386
Paul Walmsley43b40992010-02-22 22:09:34 -0700387 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700388 clkact_mask = (0x3 << clkact_shift);
389
390 *v &= ~clkact_mask;
391 *v |= clockact << clkact_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300392
393 return 0;
394}
395
396/**
397 * _set_softreset: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
398 * @oh: struct omap_hwmod *
399 * @v: pointer to register contents to modify
400 *
401 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
402 * error or 0 upon success.
403 */
404static int _set_softreset(struct omap_hwmod *oh, u32 *v)
405{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700406 u32 softrst_mask;
407
Paul Walmsley43b40992010-02-22 22:09:34 -0700408 if (!oh->class->sysc ||
409 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley63c85232009-09-03 20:14:03 +0300410 return -EINVAL;
411
Paul Walmsley43b40992010-02-22 22:09:34 -0700412 if (!oh->class->sysc->sysc_fields) {
413 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700414 return -EINVAL;
415 }
416
Paul Walmsley43b40992010-02-22 22:09:34 -0700417 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700418
419 *v |= softrst_mask;
Paul Walmsley63c85232009-09-03 20:14:03 +0300420
421 return 0;
422}
423
424/**
Tero Kristo613ad0e2012-10-29 22:02:13 -0600425 * _wait_softreset_complete - wait for an OCP softreset to complete
426 * @oh: struct omap_hwmod * to wait on
427 *
428 * Wait until the IP block represented by @oh reports that its OCP
429 * softreset is complete. This can be triggered by software (see
430 * _ocp_softreset()) or by hardware upon returning from off-mode (one
431 * example is HSMMC). Waits for up to MAX_MODULE_SOFTRESET_WAIT
432 * microseconds. Returns the number of microseconds waited.
433 */
434static int _wait_softreset_complete(struct omap_hwmod *oh)
435{
436 struct omap_hwmod_class_sysconfig *sysc;
437 u32 softrst_mask;
438 int c = 0;
439
440 sysc = oh->class->sysc;
441
442 if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
443 omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs)
444 & SYSS_RESETDONE_MASK),
445 MAX_MODULE_SOFTRESET_WAIT, c);
446 else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
447 softrst_mask = (0x1 << sysc->sysc_fields->srst_shift);
448 omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs)
449 & softrst_mask),
450 MAX_MODULE_SOFTRESET_WAIT, c);
451 }
452
453 return c;
454}
455
456/**
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -0600457 * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
458 * @oh: struct omap_hwmod *
459 *
460 * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
461 * of some modules. When the DMA must perform read/write accesses, the
462 * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
463 * for power management, software must set the DMADISABLE bit back to 1.
464 *
465 * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon
466 * error or 0 upon success.
467 */
468static int _set_dmadisable(struct omap_hwmod *oh)
469{
470 u32 v;
471 u32 dmadisable_mask;
472
473 if (!oh->class->sysc ||
474 !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
475 return -EINVAL;
476
477 if (!oh->class->sysc->sysc_fields) {
478 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
479 return -EINVAL;
480 }
481
482 /* clocks must be on for this operation */
483 if (oh->_state != _HWMOD_STATE_ENABLED) {
484 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
485 return -EINVAL;
486 }
487
488 pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
489
490 v = oh->_sysc_cache;
491 dmadisable_mask =
492 (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
493 v |= dmadisable_mask;
494 _write_sysconfig(v, oh);
495
496 return 0;
497}
498
499/**
Paul Walmsley726072e2009-12-08 16:34:15 -0700500 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
501 * @oh: struct omap_hwmod *
502 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
503 * @v: pointer to register contents to modify
504 *
505 * Update the module autoidle bit in @v to be @autoidle for the @oh
506 * hwmod. The autoidle bit controls whether the module can gate
507 * internal clocks automatically when it isn't doing anything; the
508 * exact function of this bit varies on a per-module basis. This
509 * function does not write to the hardware. Returns -EINVAL upon
510 * error or 0 upon success.
511 */
512static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
513 u32 *v)
514{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700515 u32 autoidle_mask;
516 u8 autoidle_shift;
517
Paul Walmsley43b40992010-02-22 22:09:34 -0700518 if (!oh->class->sysc ||
519 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
Paul Walmsley726072e2009-12-08 16:34:15 -0700520 return -EINVAL;
521
Paul Walmsley43b40992010-02-22 22:09:34 -0700522 if (!oh->class->sysc->sysc_fields) {
523 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700524 return -EINVAL;
525 }
526
Paul Walmsley43b40992010-02-22 22:09:34 -0700527 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
Tarun Kanti DebBarma8985b632011-03-03 14:22:46 -0700528 autoidle_mask = (0x1 << autoidle_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700529
530 *v &= ~autoidle_mask;
531 *v |= autoidle << autoidle_shift;
Paul Walmsley726072e2009-12-08 16:34:15 -0700532
533 return 0;
534}
535
536/**
Govindraj Receec002011-12-16 14:36:58 -0700537 * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux
538 * @oh: struct omap_hwmod *
539 * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable
540 *
541 * Set or clear the I/O pad wakeup flag in the mux entries for the
542 * hwmod @oh. This function changes the @oh->mux->pads_dynamic array
543 * in memory. If the hwmod is currently idled, and the new idle
544 * values don't match the previous ones, this function will also
545 * update the SCM PADCTRL registers. Otherwise, if the hwmod is not
546 * currently idled, this function won't touch the hardware: the new
547 * mux settings are written to the SCM PADCTRL registers when the
548 * hwmod is idled. No return value.
549 */
550static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake)
551{
552 struct omap_device_pad *pad;
553 bool change = false;
554 u16 prev_idle;
555 int j;
556
557 if (!oh->mux || !oh->mux->enabled)
558 return;
559
560 for (j = 0; j < oh->mux->nr_pads_dynamic; j++) {
561 pad = oh->mux->pads_dynamic[j];
562
563 if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP))
564 continue;
565
566 prev_idle = pad->idle;
567
568 if (set_wake)
569 pad->idle |= OMAP_WAKEUP_EN;
570 else
571 pad->idle &= ~OMAP_WAKEUP_EN;
572
573 if (prev_idle != pad->idle)
574 change = true;
575 }
576
577 if (change && oh->_state == _HWMOD_STATE_IDLE)
578 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
579}
580
581/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300582 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
583 * @oh: struct omap_hwmod *
584 *
585 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
586 * upon error or 0 upon success.
587 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700588static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300589{
Paul Walmsley43b40992010-02-22 22:09:34 -0700590 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700591 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200592 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
593 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300594 return -EINVAL;
595
Paul Walmsley43b40992010-02-22 22:09:34 -0700596 if (!oh->class->sysc->sysc_fields) {
597 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700598 return -EINVAL;
599 }
600
Benoit Cousson1fe74112011-07-01 22:54:03 +0200601 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
602 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300603
Benoit Cousson86009eb2010-12-21 21:31:28 -0700604 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
605 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200606 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
607 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700608
Paul Walmsley63c85232009-09-03 20:14:03 +0300609 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
610
611 oh->_int_flags |= _HWMOD_WAKEUP_ENABLED;
612
613 return 0;
614}
615
616/**
617 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
618 * @oh: struct omap_hwmod *
619 *
620 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
621 * upon error or 0 upon success.
622 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700623static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300624{
Paul Walmsley43b40992010-02-22 22:09:34 -0700625 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700626 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200627 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
628 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300629 return -EINVAL;
630
Paul Walmsley43b40992010-02-22 22:09:34 -0700631 if (!oh->class->sysc->sysc_fields) {
632 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700633 return -EINVAL;
634 }
635
Benoit Cousson1fe74112011-07-01 22:54:03 +0200636 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
637 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
Paul Walmsley63c85232009-09-03 20:14:03 +0300638
Benoit Cousson86009eb2010-12-21 21:31:28 -0700639 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
640 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200641 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
Djamil Elaidi561038f2012-06-17 11:57:51 -0600642 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700643
Paul Walmsley63c85232009-09-03 20:14:03 +0300644 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
645
646 oh->_int_flags &= ~_HWMOD_WAKEUP_ENABLED;
647
648 return 0;
649}
650
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700651static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
652{
Rajendra Nayakc4a1ea22012-04-27 16:32:53 +0530653 struct clk_hw_omap *clk;
654
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700655 if (oh->clkdm) {
656 return oh->clkdm;
657 } else if (oh->_clk) {
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700658 clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
659 return clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700660 }
661 return NULL;
662}
663
Paul Walmsley63c85232009-09-03 20:14:03 +0300664/**
665 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
666 * @oh: struct omap_hwmod *
667 *
668 * Prevent the hardware module @oh from entering idle while the
669 * hardare module initiator @init_oh is active. Useful when a module
670 * will be accessed by a particular initiator (e.g., if a module will
671 * be accessed by the IVA, there should be a sleepdep between the IVA
672 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700673 * mode. If the clockdomain is marked as not needing autodeps, return
674 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
675 * passes along clkdm_add_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300676 */
677static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
678{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700679 struct clockdomain *clkdm, *init_clkdm;
680
681 clkdm = _get_clkdm(oh);
682 init_clkdm = _get_clkdm(init_oh);
683
684 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300685 return -EINVAL;
686
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700687 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700688 return 0;
689
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700690 return clkdm_add_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300691}
692
693/**
694 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
695 * @oh: struct omap_hwmod *
696 *
697 * Allow the hardware module @oh to enter idle while the hardare
698 * module initiator @init_oh is active. Useful when a module will not
699 * be accessed by a particular initiator (e.g., if a module will not
700 * be accessed by the IVA, there should be no sleepdep between the IVA
701 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700702 * mode. If the clockdomain is marked as not needing autodeps, return
703 * 0 without doing anything. Returns -EINVAL upon error or passes
704 * along clkdm_del_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300705 */
706static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
707{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700708 struct clockdomain *clkdm, *init_clkdm;
709
710 clkdm = _get_clkdm(oh);
711 init_clkdm = _get_clkdm(init_oh);
712
713 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300714 return -EINVAL;
715
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700716 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700717 return 0;
718
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700719 return clkdm_del_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300720}
721
722/**
723 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
724 * @oh: struct omap_hwmod *
725 *
726 * Called from _init_clocks(). Populates the @oh _clk (main
727 * functional clock pointer) if a main_clk is present. Returns 0 on
728 * success or -EINVAL on error.
729 */
730static int _init_main_clk(struct omap_hwmod *oh)
731{
Paul Walmsley63c85232009-09-03 20:14:03 +0300732 int ret = 0;
733
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700734 if (!oh->main_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300735 return 0;
736
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600737 oh->_clk = clk_get(NULL, oh->main_clk);
738 if (IS_ERR(oh->_clk)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600739 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
740 oh->name, oh->main_clk);
Benoit Cousson63403382010-05-20 12:31:10 -0600741 return -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600742 }
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600743 /*
744 * HACK: This needs a re-visit once clk_prepare() is implemented
745 * to do something meaningful. Today its just a no-op.
746 * If clk_prepare() is used at some point to do things like
747 * voltage scaling etc, then this would have to be moved to
748 * some point where subsystems like i2c and pmic become
749 * available.
750 */
751 clk_prepare(oh->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300752
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700753 if (!_get_clkdm(oh))
Paul Walmsley3bb05db2012-09-23 17:28:18 -0600754 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600755 oh->name, oh->main_clk);
Kevin Hilman81d7c6f2009-12-08 16:34:24 -0700756
Paul Walmsley63c85232009-09-03 20:14:03 +0300757 return ret;
758}
759
760/**
Paul Walmsley887adea2010-07-26 16:34:33 -0600761 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
Paul Walmsley63c85232009-09-03 20:14:03 +0300762 * @oh: struct omap_hwmod *
763 *
764 * Called from _init_clocks(). Populates the @oh OCP slave interface
765 * clock pointers. Returns 0 on success or -EINVAL on error.
766 */
767static int _init_interface_clks(struct omap_hwmod *oh)
768{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600769 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600770 struct list_head *p;
Paul Walmsley63c85232009-09-03 20:14:03 +0300771 struct clk *c;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600772 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300773 int ret = 0;
774
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600775 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600776
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600777 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600778 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700779 if (!os->clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300780 continue;
781
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600782 c = clk_get(NULL, os->clk);
783 if (IS_ERR(c)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600784 pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
785 oh->name, os->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300786 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600787 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300788 os->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600789 /*
790 * HACK: This needs a re-visit once clk_prepare() is implemented
791 * to do something meaningful. Today its just a no-op.
792 * If clk_prepare() is used at some point to do things like
793 * voltage scaling etc, then this would have to be moved to
794 * some point where subsystems like i2c and pmic become
795 * available.
796 */
797 clk_prepare(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300798 }
799
800 return ret;
801}
802
803/**
804 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
805 * @oh: struct omap_hwmod *
806 *
807 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
808 * clock pointers. Returns 0 on success or -EINVAL on error.
809 */
810static int _init_opt_clks(struct omap_hwmod *oh)
811{
812 struct omap_hwmod_opt_clk *oc;
813 struct clk *c;
814 int i;
815 int ret = 0;
816
817 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600818 c = clk_get(NULL, oc->clk);
819 if (IS_ERR(c)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600820 pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
821 oh->name, oc->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300822 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600823 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300824 oc->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600825 /*
826 * HACK: This needs a re-visit once clk_prepare() is implemented
827 * to do something meaningful. Today its just a no-op.
828 * If clk_prepare() is used at some point to do things like
829 * voltage scaling etc, then this would have to be moved to
830 * some point where subsystems like i2c and pmic become
831 * available.
832 */
833 clk_prepare(oc->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300834 }
835
836 return ret;
837}
838
839/**
840 * _enable_clocks - enable hwmod main clock and interface clocks
841 * @oh: struct omap_hwmod *
842 *
843 * Enables all clocks necessary for register reads and writes to succeed
844 * on the hwmod @oh. Returns 0.
845 */
846static int _enable_clocks(struct omap_hwmod *oh)
847{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600848 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600849 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600850 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300851
852 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
853
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600854 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300855 clk_enable(oh->_clk);
856
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600857 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600858
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600859 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600860 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300861
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600862 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
863 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300864 }
865
866 /* The opt clocks are controlled by the device driver. */
867
868 return 0;
869}
870
871/**
872 * _disable_clocks - disable hwmod main clock and interface clocks
873 * @oh: struct omap_hwmod *
874 *
875 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
876 */
877static int _disable_clocks(struct omap_hwmod *oh)
878{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600879 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600880 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600881 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300882
883 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
884
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600885 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300886 clk_disable(oh->_clk);
887
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600888 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600889
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600890 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600891 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300892
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600893 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
894 clk_disable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300895 }
896
897 /* The opt clocks are controlled by the device driver. */
898
899 return 0;
900}
901
Benoit Cousson96835af2010-09-21 18:57:58 +0200902static void _enable_optional_clocks(struct omap_hwmod *oh)
903{
904 struct omap_hwmod_opt_clk *oc;
905 int i;
906
907 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
908
909 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
910 if (oc->_clk) {
911 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600912 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200913 clk_enable(oc->_clk);
914 }
915}
916
917static void _disable_optional_clocks(struct omap_hwmod *oh)
918{
919 struct omap_hwmod_opt_clk *oc;
920 int i;
921
922 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
923
924 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
925 if (oc->_clk) {
926 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600927 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200928 clk_disable(oc->_clk);
929 }
930}
931
Paul Walmsley63c85232009-09-03 20:14:03 +0300932/**
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600933 * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
Benoit Cousson45c38252011-07-10 05:56:33 -0600934 * @oh: struct omap_hwmod *
935 *
936 * Enables the PRCM module mode related to the hwmod @oh.
937 * No return value.
938 */
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600939static void _omap4_enable_module(struct omap_hwmod *oh)
Benoit Cousson45c38252011-07-10 05:56:33 -0600940{
Benoit Cousson45c38252011-07-10 05:56:33 -0600941 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
942 return;
943
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600944 pr_debug("omap_hwmod: %s: %s: %d\n",
945 oh->name, __func__, oh->prcm.omap4.modulemode);
Benoit Cousson45c38252011-07-10 05:56:33 -0600946
947 omap4_cminst_module_enable(oh->prcm.omap4.modulemode,
948 oh->clkdm->prcm_partition,
949 oh->clkdm->cm_inst,
950 oh->clkdm->clkdm_offs,
951 oh->prcm.omap4.clkctrl_offs);
952}
953
954/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600955 * _am33xx_enable_module - enable CLKCTRL modulemode on AM33XX
956 * @oh: struct omap_hwmod *
957 *
958 * Enables the PRCM module mode related to the hwmod @oh.
959 * No return value.
960 */
961static void _am33xx_enable_module(struct omap_hwmod *oh)
962{
963 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
964 return;
965
966 pr_debug("omap_hwmod: %s: %s: %d\n",
967 oh->name, __func__, oh->prcm.omap4.modulemode);
968
969 am33xx_cm_module_enable(oh->prcm.omap4.modulemode, oh->clkdm->cm_inst,
970 oh->clkdm->clkdm_offs,
971 oh->prcm.omap4.clkctrl_offs);
972}
973
974/**
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800975 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
976 * @oh: struct omap_hwmod *
977 *
978 * Wait for a module @oh to enter slave idle. Returns 0 if the module
979 * does not have an IDLEST bit or if the module successfully enters
980 * slave idle; otherwise, pass along the return value of the
981 * appropriate *_cm*_wait_module_idle() function.
982 */
983static int _omap4_wait_target_disable(struct omap_hwmod *oh)
984{
Paul Walmsley2b026d12012-09-23 17:28:18 -0600985 if (!oh)
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800986 return -EINVAL;
987
Paul Walmsley2b026d12012-09-23 17:28:18 -0600988 if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800989 return 0;
990
991 if (oh->flags & HWMOD_NO_IDLEST)
992 return 0;
993
994 return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition,
995 oh->clkdm->cm_inst,
996 oh->clkdm->clkdm_offs,
997 oh->prcm.omap4.clkctrl_offs);
998}
999
1000/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001001 * _am33xx_wait_target_disable - wait for a module to be disabled on AM33XX
1002 * @oh: struct omap_hwmod *
1003 *
1004 * Wait for a module @oh to enter slave idle. Returns 0 if the module
1005 * does not have an IDLEST bit or if the module successfully enters
1006 * slave idle; otherwise, pass along the return value of the
1007 * appropriate *_cm*_wait_module_idle() function.
1008 */
1009static int _am33xx_wait_target_disable(struct omap_hwmod *oh)
1010{
1011 if (!oh)
1012 return -EINVAL;
1013
1014 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
1015 return 0;
1016
1017 if (oh->flags & HWMOD_NO_IDLEST)
1018 return 0;
1019
1020 return am33xx_cm_wait_module_idle(oh->clkdm->cm_inst,
1021 oh->clkdm->clkdm_offs,
1022 oh->prcm.omap4.clkctrl_offs);
1023}
1024
1025/**
Paul Walmsley212738a2011-07-09 19:14:06 -06001026 * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
1027 * @oh: struct omap_hwmod *oh
1028 *
1029 * Count and return the number of MPU IRQs associated with the hwmod
1030 * @oh. Used to allocate struct resource data. Returns 0 if @oh is
1031 * NULL.
1032 */
1033static int _count_mpu_irqs(struct omap_hwmod *oh)
1034{
1035 struct omap_hwmod_irq_info *ohii;
1036 int i = 0;
1037
1038 if (!oh || !oh->mpu_irqs)
1039 return 0;
1040
1041 do {
1042 ohii = &oh->mpu_irqs[i++];
1043 } while (ohii->irq != -1);
1044
sricharancc1b0762011-11-23 14:35:07 -08001045 return i-1;
Paul Walmsley212738a2011-07-09 19:14:06 -06001046}
1047
1048/**
Paul Walmsleybc614952011-07-09 19:14:07 -06001049 * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
1050 * @oh: struct omap_hwmod *oh
1051 *
1052 * Count and return the number of SDMA request lines associated with
1053 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1054 * if @oh is NULL.
1055 */
1056static int _count_sdma_reqs(struct omap_hwmod *oh)
1057{
1058 struct omap_hwmod_dma_info *ohdi;
1059 int i = 0;
1060
1061 if (!oh || !oh->sdma_reqs)
1062 return 0;
1063
1064 do {
1065 ohdi = &oh->sdma_reqs[i++];
1066 } while (ohdi->dma_req != -1);
1067
sricharancc1b0762011-11-23 14:35:07 -08001068 return i-1;
Paul Walmsleybc614952011-07-09 19:14:07 -06001069}
1070
1071/**
Paul Walmsley78183f32011-07-09 19:14:05 -06001072 * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
1073 * @oh: struct omap_hwmod *oh
1074 *
1075 * Count and return the number of address space ranges associated with
1076 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1077 * if @oh is NULL.
1078 */
1079static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
1080{
1081 struct omap_hwmod_addr_space *mem;
1082 int i = 0;
1083
1084 if (!os || !os->addr)
1085 return 0;
1086
1087 do {
1088 mem = &os->addr[i++];
1089 } while (mem->pa_start != mem->pa_end);
1090
sricharancc1b0762011-11-23 14:35:07 -08001091 return i-1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001092}
1093
1094/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001095 * _get_mpu_irq_by_name - fetch MPU interrupt line number by name
1096 * @oh: struct omap_hwmod * to operate on
1097 * @name: pointer to the name of the MPU interrupt number to fetch (optional)
1098 * @irq: pointer to an unsigned int to store the MPU IRQ number to
1099 *
1100 * Retrieve a MPU hardware IRQ line number named by @name associated
1101 * with the IP block pointed to by @oh. The IRQ number will be filled
1102 * into the address pointed to by @dma. When @name is non-null, the
1103 * IRQ line number associated with the named entry will be returned.
1104 * If @name is null, the first matching entry will be returned. Data
1105 * order is not meaningful in hwmod data, so callers are strongly
1106 * encouraged to use a non-null @name whenever possible to avoid
1107 * unpredictable effects if hwmod data is later added that causes data
1108 * ordering to change. Returns 0 upon success or a negative error
1109 * code upon error.
1110 */
1111static int _get_mpu_irq_by_name(struct omap_hwmod *oh, const char *name,
1112 unsigned int *irq)
1113{
1114 int i;
1115 bool found = false;
1116
1117 if (!oh->mpu_irqs)
1118 return -ENOENT;
1119
1120 i = 0;
1121 while (oh->mpu_irqs[i].irq != -1) {
1122 if (name == oh->mpu_irqs[i].name ||
1123 !strcmp(name, oh->mpu_irqs[i].name)) {
1124 found = true;
1125 break;
1126 }
1127 i++;
1128 }
1129
1130 if (!found)
1131 return -ENOENT;
1132
1133 *irq = oh->mpu_irqs[i].irq;
1134
1135 return 0;
1136}
1137
1138/**
1139 * _get_sdma_req_by_name - fetch SDMA request line ID by name
1140 * @oh: struct omap_hwmod * to operate on
1141 * @name: pointer to the name of the SDMA request line to fetch (optional)
1142 * @dma: pointer to an unsigned int to store the request line ID to
1143 *
1144 * Retrieve an SDMA request line ID named by @name on the IP block
1145 * pointed to by @oh. The ID will be filled into the address pointed
1146 * to by @dma. When @name is non-null, the request line ID associated
1147 * with the named entry will be returned. If @name is null, the first
1148 * matching entry will be returned. Data order is not meaningful in
1149 * hwmod data, so callers are strongly encouraged to use a non-null
1150 * @name whenever possible to avoid unpredictable effects if hwmod
1151 * data is later added that causes data ordering to change. Returns 0
1152 * upon success or a negative error code upon error.
1153 */
1154static int _get_sdma_req_by_name(struct omap_hwmod *oh, const char *name,
1155 unsigned int *dma)
1156{
1157 int i;
1158 bool found = false;
1159
1160 if (!oh->sdma_reqs)
1161 return -ENOENT;
1162
1163 i = 0;
1164 while (oh->sdma_reqs[i].dma_req != -1) {
1165 if (name == oh->sdma_reqs[i].name ||
1166 !strcmp(name, oh->sdma_reqs[i].name)) {
1167 found = true;
1168 break;
1169 }
1170 i++;
1171 }
1172
1173 if (!found)
1174 return -ENOENT;
1175
1176 *dma = oh->sdma_reqs[i].dma_req;
1177
1178 return 0;
1179}
1180
1181/**
1182 * _get_addr_space_by_name - fetch address space start & end by name
1183 * @oh: struct omap_hwmod * to operate on
1184 * @name: pointer to the name of the address space to fetch (optional)
1185 * @pa_start: pointer to a u32 to store the starting address to
1186 * @pa_end: pointer to a u32 to store the ending address to
1187 *
1188 * Retrieve address space start and end addresses for the IP block
1189 * pointed to by @oh. The data will be filled into the addresses
1190 * pointed to by @pa_start and @pa_end. When @name is non-null, the
1191 * address space data associated with the named entry will be
1192 * returned. If @name is null, the first matching entry will be
1193 * returned. Data order is not meaningful in hwmod data, so callers
1194 * are strongly encouraged to use a non-null @name whenever possible
1195 * to avoid unpredictable effects if hwmod data is later added that
1196 * causes data ordering to change. Returns 0 upon success or a
1197 * negative error code upon error.
1198 */
1199static int _get_addr_space_by_name(struct omap_hwmod *oh, const char *name,
1200 u32 *pa_start, u32 *pa_end)
1201{
1202 int i, j;
1203 struct omap_hwmod_ocp_if *os;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001204 struct list_head *p = NULL;
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001205 bool found = false;
1206
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001207 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001208
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001209 i = 0;
1210 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001211 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001212
1213 if (!os->addr)
1214 return -ENOENT;
1215
1216 j = 0;
1217 while (os->addr[j].pa_start != os->addr[j].pa_end) {
1218 if (name == os->addr[j].name ||
1219 !strcmp(name, os->addr[j].name)) {
1220 found = true;
1221 break;
1222 }
1223 j++;
1224 }
1225
1226 if (found)
1227 break;
1228 }
1229
1230 if (!found)
1231 return -ENOENT;
1232
1233 *pa_start = os->addr[j].pa_start;
1234 *pa_end = os->addr[j].pa_end;
1235
1236 return 0;
1237}
1238
1239/**
Paul Walmsley24dbc212012-04-19 04:04:29 -06001240 * _save_mpu_port_index - find and save the index to @oh's MPU port
Paul Walmsley63c85232009-09-03 20:14:03 +03001241 * @oh: struct omap_hwmod *
1242 *
Paul Walmsley24dbc212012-04-19 04:04:29 -06001243 * Determines the array index of the OCP slave port that the MPU uses
1244 * to address the device, and saves it into the struct omap_hwmod.
1245 * Intended to be called during hwmod registration only. No return
1246 * value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001247 */
Paul Walmsley24dbc212012-04-19 04:04:29 -06001248static void __init _save_mpu_port_index(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001249{
Paul Walmsley24dbc212012-04-19 04:04:29 -06001250 struct omap_hwmod_ocp_if *os = NULL;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001251 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001252 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001253
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001254 if (!oh)
Paul Walmsley24dbc212012-04-19 04:04:29 -06001255 return;
1256
1257 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001258
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001259 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001260
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001261 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001262 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +03001263 if (os->user & OCP_USER_MPU) {
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001264 oh->_mpu_port = os;
Paul Walmsley24dbc212012-04-19 04:04:29 -06001265 oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001266 break;
1267 }
1268 }
1269
Paul Walmsley24dbc212012-04-19 04:04:29 -06001270 return;
Paul Walmsley63c85232009-09-03 20:14:03 +03001271}
1272
1273/**
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001274 * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1275 * @oh: struct omap_hwmod *
1276 *
1277 * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1278 * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1279 * communicate with the IP block. This interface need not be directly
1280 * connected to the MPU (and almost certainly is not), but is directly
1281 * connected to the IP block represented by @oh. Returns a pointer
1282 * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1283 * error or if there does not appear to be a path from the MPU to this
1284 * IP block.
1285 */
1286static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1287{
1288 if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1289 return NULL;
1290
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001291 return oh->_mpu_port;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001292};
1293
1294/**
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001295 * _find_mpu_rt_addr_space - return MPU register target address space for @oh
Paul Walmsley63c85232009-09-03 20:14:03 +03001296 * @oh: struct omap_hwmod *
1297 *
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001298 * Returns a pointer to the struct omap_hwmod_addr_space record representing
1299 * the register target MPU address space; or returns NULL upon error.
Paul Walmsley63c85232009-09-03 20:14:03 +03001300 */
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001301static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001302{
1303 struct omap_hwmod_ocp_if *os;
1304 struct omap_hwmod_addr_space *mem;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001305 int found = 0, i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001306
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001307 os = _find_mpu_rt_port(oh);
Paul Walmsley24dbc212012-04-19 04:04:29 -06001308 if (!os || !os->addr)
Paul Walmsley78183f32011-07-09 19:14:05 -06001309 return NULL;
1310
1311 do {
1312 mem = &os->addr[i++];
1313 if (mem->flags & ADDR_TYPE_RT)
Paul Walmsley63c85232009-09-03 20:14:03 +03001314 found = 1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001315 } while (!found && mem->pa_start != mem->pa_end);
Paul Walmsley63c85232009-09-03 20:14:03 +03001316
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001317 return (found) ? mem : NULL;
Paul Walmsley63c85232009-09-03 20:14:03 +03001318}
1319
1320/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001321 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001322 * @oh: struct omap_hwmod *
1323 *
Paul Walmsley006c7f12012-07-04 05:22:53 -06001324 * Ensure that the OCP_SYSCONFIG register for the IP block represented
1325 * by @oh is set to indicate to the PRCM that the IP block is active.
1326 * Usually this means placing the module into smart-idle mode and
1327 * smart-standby, but if there is a bug in the automatic idle handling
1328 * for the IP block, it may need to be placed into the force-idle or
1329 * no-idle variants of these modes. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001330 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001331static void _enable_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001332{
Paul Walmsley43b40992010-02-22 22:09:34 -07001333 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001334 u32 v;
Paul Walmsley006c7f12012-07-04 05:22:53 -06001335 bool clkdm_act;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001336 struct clockdomain *clkdm;
Paul Walmsley63c85232009-09-03 20:14:03 +03001337
Paul Walmsley43b40992010-02-22 22:09:34 -07001338 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001339 return;
1340
Tero Kristo613ad0e2012-10-29 22:02:13 -06001341 /*
1342 * Wait until reset has completed, this is needed as the IP
1343 * block is reset automatically by hardware in some cases
1344 * (off-mode for example), and the drivers require the
1345 * IP to be ready when they access it
1346 */
1347 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1348 _enable_optional_clocks(oh);
1349 _wait_softreset_complete(oh);
1350 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1351 _disable_optional_clocks(oh);
1352
Paul Walmsley63c85232009-09-03 20:14:03 +03001353 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001354 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001355
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001356 clkdm = _get_clkdm(oh);
Paul Walmsley43b40992010-02-22 22:09:34 -07001357 if (sf & SYSC_HAS_SIDLEMODE) {
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001358 clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
Paul Walmsley006c7f12012-07-04 05:22:53 -06001359 if (clkdm_act && !(oh->class->sysc->idlemodes &
1360 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1361 idlemode = HWMOD_IDLEMODE_FORCE;
1362 else
1363 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
1364 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
Paul Walmsley63c85232009-09-03 20:14:03 +03001365 _set_slave_idlemode(oh, idlemode, &v);
1366 }
1367
Paul Walmsley43b40992010-02-22 22:09:34 -07001368 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001369 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1370 idlemode = HWMOD_IDLEMODE_NO;
1371 } else {
1372 if (sf & SYSC_HAS_ENAWAKEUP)
1373 _enable_wakeup(oh, &v);
1374 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1375 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1376 else
1377 idlemode = HWMOD_IDLEMODE_SMART;
1378 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001379 _set_master_standbymode(oh, idlemode, &v);
1380 }
1381
Paul Walmsleya16b1f72009-12-08 16:34:17 -07001382 /*
1383 * XXX The clock framework should handle this, by
1384 * calling into this code. But this must wait until the
1385 * clock structures are tagged with omap_hwmod entries
1386 */
Paul Walmsley43b40992010-02-22 22:09:34 -07001387 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1388 (sf & SYSC_HAS_CLOCKACTIVITY))
1389 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001390
Rajendra Nayak9980ce52010-09-21 19:58:30 +05301391 /* If slave is in SMARTIDLE, also enable wakeup */
1392 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07001393 _enable_wakeup(oh, &v);
1394
1395 _write_sysconfig(v, oh);
Hema HK78f26e82010-09-24 10:23:19 -06001396
1397 /*
1398 * Set the autoidle bit only after setting the smartidle bit
1399 * Setting this will not have any impact on the other modules.
1400 */
1401 if (sf & SYSC_HAS_AUTOIDLE) {
1402 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1403 0 : 1;
1404 _set_module_autoidle(oh, idlemode, &v);
1405 _write_sysconfig(v, oh);
1406 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001407}
1408
1409/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001410 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001411 * @oh: struct omap_hwmod *
1412 *
1413 * If module is marked as SWSUP_SIDLE, force the module into slave
1414 * idle; otherwise, configure it for smart-idle. If module is marked
1415 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1416 * configure it for smart-standby. No return value.
1417 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001418static void _idle_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001419{
Paul Walmsley43b40992010-02-22 22:09:34 -07001420 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001421 u32 v;
1422
Paul Walmsley43b40992010-02-22 22:09:34 -07001423 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001424 return;
1425
1426 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001427 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001428
Paul Walmsley43b40992010-02-22 22:09:34 -07001429 if (sf & SYSC_HAS_SIDLEMODE) {
Paul Walmsley006c7f12012-07-04 05:22:53 -06001430 /* XXX What about HWMOD_IDLEMODE_SMART_WKUP? */
1431 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1432 !(oh->class->sysc->idlemodes &
1433 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1434 idlemode = HWMOD_IDLEMODE_FORCE;
1435 else
1436 idlemode = HWMOD_IDLEMODE_SMART;
Paul Walmsley63c85232009-09-03 20:14:03 +03001437 _set_slave_idlemode(oh, idlemode, &v);
1438 }
1439
Paul Walmsley43b40992010-02-22 22:09:34 -07001440 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001441 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1442 idlemode = HWMOD_IDLEMODE_FORCE;
1443 } else {
1444 if (sf & SYSC_HAS_ENAWAKEUP)
1445 _enable_wakeup(oh, &v);
1446 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1447 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1448 else
1449 idlemode = HWMOD_IDLEMODE_SMART;
1450 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001451 _set_master_standbymode(oh, idlemode, &v);
1452 }
1453
Benoit Cousson86009eb2010-12-21 21:31:28 -07001454 /* If slave is in SMARTIDLE, also enable wakeup */
1455 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
1456 _enable_wakeup(oh, &v);
1457
Paul Walmsley63c85232009-09-03 20:14:03 +03001458 _write_sysconfig(v, oh);
1459}
1460
1461/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001462 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001463 * @oh: struct omap_hwmod *
1464 *
1465 * Force the module into slave idle and master suspend. No return
1466 * value.
1467 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001468static void _shutdown_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001469{
1470 u32 v;
Paul Walmsley43b40992010-02-22 22:09:34 -07001471 u8 sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001472
Paul Walmsley43b40992010-02-22 22:09:34 -07001473 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001474 return;
1475
1476 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001477 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001478
Paul Walmsley43b40992010-02-22 22:09:34 -07001479 if (sf & SYSC_HAS_SIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001480 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1481
Paul Walmsley43b40992010-02-22 22:09:34 -07001482 if (sf & SYSC_HAS_MIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001483 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1484
Paul Walmsley43b40992010-02-22 22:09:34 -07001485 if (sf & SYSC_HAS_AUTOIDLE)
Paul Walmsley726072e2009-12-08 16:34:15 -07001486 _set_module_autoidle(oh, 1, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001487
1488 _write_sysconfig(v, oh);
1489}
1490
1491/**
1492 * _lookup - find an omap_hwmod by name
1493 * @name: find an omap_hwmod by name
1494 *
1495 * Return a pointer to an omap_hwmod by name, or NULL if not found.
Paul Walmsley63c85232009-09-03 20:14:03 +03001496 */
1497static struct omap_hwmod *_lookup(const char *name)
1498{
1499 struct omap_hwmod *oh, *temp_oh;
1500
1501 oh = NULL;
1502
1503 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1504 if (!strcmp(name, temp_oh->name)) {
1505 oh = temp_oh;
1506 break;
1507 }
1508 }
1509
1510 return oh;
1511}
Paul Walmsley868c1572012-06-19 15:01:02 -06001512
Benoit Cousson6ae76992011-07-10 05:56:30 -06001513/**
1514 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1515 * @oh: struct omap_hwmod *
1516 *
1517 * Convert a clockdomain name stored in a struct omap_hwmod into a
1518 * clockdomain pointer, and save it into the struct omap_hwmod.
Paul Walmsley868c1572012-06-19 15:01:02 -06001519 * Return -EINVAL if the clkdm_name lookup failed.
Benoit Cousson6ae76992011-07-10 05:56:30 -06001520 */
1521static int _init_clkdm(struct omap_hwmod *oh)
1522{
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001523 if (!oh->clkdm_name) {
1524 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
Benoit Cousson6ae76992011-07-10 05:56:30 -06001525 return 0;
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001526 }
Benoit Cousson6ae76992011-07-10 05:56:30 -06001527
Benoit Cousson6ae76992011-07-10 05:56:30 -06001528 oh->clkdm = clkdm_lookup(oh->clkdm_name);
1529 if (!oh->clkdm) {
1530 pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n",
1531 oh->name, oh->clkdm_name);
1532 return -EINVAL;
1533 }
1534
1535 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1536 oh->name, oh->clkdm_name);
1537
1538 return 0;
1539}
Paul Walmsley63c85232009-09-03 20:14:03 +03001540
1541/**
Benoit Cousson6ae76992011-07-10 05:56:30 -06001542 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1543 * well the clockdomain.
Paul Walmsley63c85232009-09-03 20:14:03 +03001544 * @oh: struct omap_hwmod *
Paul Walmsley97d601622010-07-26 16:34:30 -06001545 * @data: not used; pass NULL
Paul Walmsley63c85232009-09-03 20:14:03 +03001546 *
Paul Walmsleya2debdb2011-02-23 00:14:07 -07001547 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
Paul Walmsley48d54f32011-02-23 00:14:07 -07001548 * Resolves all clock names embedded in the hwmod. Returns 0 on
1549 * success, or a negative error code on failure.
Paul Walmsley63c85232009-09-03 20:14:03 +03001550 */
Paul Walmsley97d601622010-07-26 16:34:30 -06001551static int _init_clocks(struct omap_hwmod *oh, void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03001552{
1553 int ret = 0;
1554
Paul Walmsley48d54f32011-02-23 00:14:07 -07001555 if (oh->_state != _HWMOD_STATE_REGISTERED)
1556 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001557
1558 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1559
Vaibhav Hiremathb797be1d2012-07-09 18:24:30 +05301560 if (soc_ops.init_clkdm)
1561 ret |= soc_ops.init_clkdm(oh);
1562
Paul Walmsley63c85232009-09-03 20:14:03 +03001563 ret |= _init_main_clk(oh);
1564 ret |= _init_interface_clks(oh);
1565 ret |= _init_opt_clks(oh);
1566
Benoit Coussonf5c1f842010-05-20 12:31:10 -06001567 if (!ret)
1568 oh->_state = _HWMOD_STATE_CLKS_INITED;
Benoit Cousson66522712011-07-01 22:54:06 +02001569 else
1570 pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001571
Rajendra Nayak09c35f22011-02-16 12:11:24 +00001572 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001573}
1574
1575/**
omar ramirezcc1226e2011-03-04 13:32:44 -07001576 * _lookup_hardreset - fill register bit info for this hwmod/reset line
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001577 * @oh: struct omap_hwmod *
1578 * @name: name of the reset line in the context of this hwmod
omar ramirezcc1226e2011-03-04 13:32:44 -07001579 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001580 *
1581 * Return the bit position of the reset line that match the
1582 * input name. Return -ENOENT if not found.
1583 */
Paul Walmsleya032d332012-08-03 09:21:10 -06001584static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1585 struct omap_hwmod_rst_info *ohri)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001586{
1587 int i;
1588
1589 for (i = 0; i < oh->rst_lines_cnt; i++) {
1590 const char *rst_line = oh->rst_lines[i].name;
1591 if (!strcmp(rst_line, name)) {
omar ramirezcc1226e2011-03-04 13:32:44 -07001592 ohri->rst_shift = oh->rst_lines[i].rst_shift;
1593 ohri->st_shift = oh->rst_lines[i].st_shift;
1594 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1595 oh->name, __func__, rst_line, ohri->rst_shift,
1596 ohri->st_shift);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001597
omar ramirezcc1226e2011-03-04 13:32:44 -07001598 return 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001599 }
1600 }
1601
1602 return -ENOENT;
1603}
1604
1605/**
1606 * _assert_hardreset - assert the HW reset line of submodules
1607 * contained in the hwmod module.
1608 * @oh: struct omap_hwmod *
1609 * @name: name of the reset line to lookup and assert
1610 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001611 * Some IP like dsp, ipu or iva contain processor that require an HW
1612 * reset line to be assert / deassert in order to enable fully the IP.
1613 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1614 * asserting the hardreset line on the currently-booted SoC, or passes
1615 * along the return value from _lookup_hardreset() or the SoC's
1616 * assert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001617 */
1618static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1619{
omar ramirezcc1226e2011-03-04 13:32:44 -07001620 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001621 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001622
1623 if (!oh)
1624 return -EINVAL;
1625
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001626 if (!soc_ops.assert_hardreset)
1627 return -ENOSYS;
1628
omar ramirezcc1226e2011-03-04 13:32:44 -07001629 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001630 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001631 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001632
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001633 ret = soc_ops.assert_hardreset(oh, &ohri);
1634
1635 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001636}
1637
1638/**
1639 * _deassert_hardreset - deassert the HW reset line of submodules contained
1640 * in the hwmod module.
1641 * @oh: struct omap_hwmod *
1642 * @name: name of the reset line to look up and deassert
1643 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001644 * Some IP like dsp, ipu or iva contain processor that require an HW
1645 * reset line to be assert / deassert in order to enable fully the IP.
1646 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1647 * deasserting the hardreset line on the currently-booted SoC, or passes
1648 * along the return value from _lookup_hardreset() or the SoC's
1649 * deassert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001650 */
1651static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1652{
omar ramirezcc1226e2011-03-04 13:32:44 -07001653 struct omap_hwmod_rst_info ohri;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001654 int ret = -EINVAL;
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001655 int hwsup = 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001656
1657 if (!oh)
1658 return -EINVAL;
1659
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001660 if (!soc_ops.deassert_hardreset)
1661 return -ENOSYS;
1662
omar ramirezcc1226e2011-03-04 13:32:44 -07001663 ret = _lookup_hardreset(oh, name, &ohri);
1664 if (IS_ERR_VALUE(ret))
1665 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001666
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001667 if (oh->clkdm) {
1668 /*
1669 * A clockdomain must be in SW_SUP otherwise reset
1670 * might not be completed. The clockdomain can be set
1671 * in HW_AUTO only when the module become ready.
1672 */
1673 hwsup = clkdm_in_hwsup(oh->clkdm);
1674 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1675 if (ret) {
1676 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1677 oh->name, oh->clkdm->name, ret);
1678 return ret;
1679 }
1680 }
1681
1682 _enable_clocks(oh);
1683 if (soc_ops.enable_module)
1684 soc_ops.enable_module(oh);
1685
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001686 ret = soc_ops.deassert_hardreset(oh, &ohri);
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001687
1688 if (soc_ops.disable_module)
1689 soc_ops.disable_module(oh);
1690 _disable_clocks(oh);
1691
omar ramirezcc1226e2011-03-04 13:32:44 -07001692 if (ret == -EBUSY)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001693 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1694
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001695 if (!ret) {
1696 /*
1697 * Set the clockdomain to HW_AUTO, assuming that the
1698 * previous state was HW_AUTO.
1699 */
1700 if (oh->clkdm && hwsup)
1701 clkdm_allow_idle(oh->clkdm);
1702 } else {
1703 if (oh->clkdm)
1704 clkdm_hwmod_disable(oh->clkdm, oh);
1705 }
1706
omar ramirezcc1226e2011-03-04 13:32:44 -07001707 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001708}
1709
1710/**
1711 * _read_hardreset - read the HW reset line state of submodules
1712 * contained in the hwmod module
1713 * @oh: struct omap_hwmod *
1714 * @name: name of the reset line to look up and read
1715 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001716 * Return the state of the reset line. Returns -EINVAL if @oh is
1717 * null, -ENOSYS if we have no way of reading the hardreset line
1718 * status on the currently-booted SoC, or passes along the return
1719 * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1720 * code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001721 */
1722static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1723{
omar ramirezcc1226e2011-03-04 13:32:44 -07001724 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001725 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001726
1727 if (!oh)
1728 return -EINVAL;
1729
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001730 if (!soc_ops.is_hardreset_asserted)
1731 return -ENOSYS;
1732
omar ramirezcc1226e2011-03-04 13:32:44 -07001733 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001734 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001735 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001736
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001737 return soc_ops.is_hardreset_asserted(oh, &ohri);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001738}
1739
1740/**
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001741 * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
Paul Walmsley747834a2012-04-18 19:10:04 -06001742 * @oh: struct omap_hwmod *
1743 *
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001744 * If all hardreset lines associated with @oh are asserted, then return true.
1745 * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1746 * associated with @oh are asserted, then return false.
Paul Walmsley747834a2012-04-18 19:10:04 -06001747 * This function is used to avoid executing some parts of the IP block
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001748 * enable/disable sequence if its hardreset line is set.
Paul Walmsley747834a2012-04-18 19:10:04 -06001749 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001750static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
Paul Walmsley747834a2012-04-18 19:10:04 -06001751{
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001752 int i, rst_cnt = 0;
Paul Walmsley747834a2012-04-18 19:10:04 -06001753
1754 if (oh->rst_lines_cnt == 0)
1755 return false;
1756
1757 for (i = 0; i < oh->rst_lines_cnt; i++)
1758 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001759 rst_cnt++;
1760
1761 if (oh->rst_lines_cnt == rst_cnt)
1762 return true;
Paul Walmsley747834a2012-04-18 19:10:04 -06001763
1764 return false;
1765}
1766
1767/**
Paul Walmsleye9332b62012-10-08 23:08:15 -06001768 * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1769 * hard-reset
1770 * @oh: struct omap_hwmod *
1771 *
1772 * If any hardreset lines associated with @oh are asserted, then
1773 * return true. Otherwise, if no hardreset lines associated with @oh
1774 * are asserted, or if @oh has no hardreset lines, then return false.
1775 * This function is used to avoid executing some parts of the IP block
1776 * enable/disable sequence if any hardreset line is set.
1777 */
1778static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1779{
1780 int rst_cnt = 0;
1781 int i;
1782
1783 for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1784 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1785 rst_cnt++;
1786
1787 return (rst_cnt) ? true : false;
1788}
1789
1790/**
Paul Walmsley747834a2012-04-18 19:10:04 -06001791 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1792 * @oh: struct omap_hwmod *
1793 *
1794 * Disable the PRCM module mode related to the hwmod @oh.
1795 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1796 */
1797static int _omap4_disable_module(struct omap_hwmod *oh)
1798{
1799 int v;
1800
Paul Walmsley747834a2012-04-18 19:10:04 -06001801 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1802 return -EINVAL;
1803
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001804 /*
1805 * Since integration code might still be doing something, only
1806 * disable if all lines are under hardreset.
1807 */
Paul Walmsleye9332b62012-10-08 23:08:15 -06001808 if (_are_any_hardreset_lines_asserted(oh))
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001809 return 0;
1810
Paul Walmsley747834a2012-04-18 19:10:04 -06001811 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1812
1813 omap4_cminst_module_disable(oh->clkdm->prcm_partition,
1814 oh->clkdm->cm_inst,
1815 oh->clkdm->clkdm_offs,
1816 oh->prcm.omap4.clkctrl_offs);
1817
Paul Walmsley747834a2012-04-18 19:10:04 -06001818 v = _omap4_wait_target_disable(oh);
1819 if (v)
1820 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1821 oh->name);
1822
1823 return 0;
1824}
1825
1826/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001827 * _am33xx_disable_module - enable CLKCTRL modulemode on AM33XX
1828 * @oh: struct omap_hwmod *
1829 *
1830 * Disable the PRCM module mode related to the hwmod @oh.
1831 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1832 */
1833static int _am33xx_disable_module(struct omap_hwmod *oh)
1834{
1835 int v;
1836
1837 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1838 return -EINVAL;
1839
1840 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1841
Paul Walmsleye9332b62012-10-08 23:08:15 -06001842 if (_are_any_hardreset_lines_asserted(oh))
1843 return 0;
1844
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001845 am33xx_cm_module_disable(oh->clkdm->cm_inst, oh->clkdm->clkdm_offs,
1846 oh->prcm.omap4.clkctrl_offs);
1847
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001848 v = _am33xx_wait_target_disable(oh);
1849 if (v)
1850 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1851 oh->name);
1852
1853 return 0;
1854}
1855
1856/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001857 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
Paul Walmsley63c85232009-09-03 20:14:03 +03001858 * @oh: struct omap_hwmod *
1859 *
1860 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
Paul Walmsley30e105c2012-04-19 00:49:09 -06001861 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1862 * reset this way, -EINVAL if the hwmod is in the wrong state,
1863 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Benoit Cousson2cb06812010-09-21 18:57:59 +02001864 *
1865 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
Paul Walmsleybd361792010-12-14 12:42:35 -07001866 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
Benoit Cousson2cb06812010-09-21 18:57:59 +02001867 * use the SYSCONFIG softreset bit to provide the status.
1868 *
Paul Walmsleybd361792010-12-14 12:42:35 -07001869 * Note that some IP like McBSP do have reset control but don't have
1870 * reset status.
Paul Walmsley63c85232009-09-03 20:14:03 +03001871 */
Paul Walmsleybd361792010-12-14 12:42:35 -07001872static int _ocp_softreset(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001873{
Tero Kristo613ad0e2012-10-29 22:02:13 -06001874 u32 v;
Paul Walmsley6f8b7ff2009-12-08 16:33:16 -07001875 int c = 0;
Benoit Cousson96835af2010-09-21 18:57:58 +02001876 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001877
Paul Walmsley43b40992010-02-22 22:09:34 -07001878 if (!oh->class->sysc ||
Benoit Cousson2cb06812010-09-21 18:57:59 +02001879 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley30e105c2012-04-19 00:49:09 -06001880 return -ENOENT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001881
1882 /* clocks must be on for this operation */
1883 if (oh->_state != _HWMOD_STATE_ENABLED) {
Paul Walmsley7852ec02012-07-26 00:54:26 -06001884 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1885 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001886 return -EINVAL;
1887 }
1888
Benoit Cousson96835af2010-09-21 18:57:58 +02001889 /* For some modules, all optionnal clocks need to be enabled as well */
1890 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1891 _enable_optional_clocks(oh);
1892
Paul Walmsleybd361792010-12-14 12:42:35 -07001893 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001894
1895 v = oh->_sysc_cache;
Benoit Cousson96835af2010-09-21 18:57:58 +02001896 ret = _set_softreset(oh, &v);
1897 if (ret)
1898 goto dis_opt_clks;
Paul Walmsley63c85232009-09-03 20:14:03 +03001899 _write_sysconfig(v, oh);
1900
Fernando Guzman Lugod99de7f2012-04-13 05:08:03 -06001901 if (oh->class->sysc->srst_udelay)
1902 udelay(oh->class->sysc->srst_udelay);
1903
Tero Kristo613ad0e2012-10-29 22:02:13 -06001904 c = _wait_softreset_complete(oh);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001905 if (c == MAX_MODULE_SOFTRESET_WAIT)
Benoit Cousson76e55892010-09-21 10:34:11 -06001906 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1907 oh->name, MAX_MODULE_SOFTRESET_WAIT);
Paul Walmsley63c85232009-09-03 20:14:03 +03001908 else
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001909 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
Paul Walmsley63c85232009-09-03 20:14:03 +03001910
1911 /*
1912 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1913 * _wait_target_ready() or _reset()
1914 */
1915
Benoit Cousson96835af2010-09-21 18:57:58 +02001916 ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
1917
1918dis_opt_clks:
1919 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1920 _disable_optional_clocks(oh);
1921
1922 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001923}
1924
1925/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001926 * _reset - reset an omap_hwmod
1927 * @oh: struct omap_hwmod *
1928 *
Paul Walmsley30e105c2012-04-19 00:49:09 -06001929 * Resets an omap_hwmod @oh. If the module has a custom reset
1930 * function pointer defined, then call it to reset the IP block, and
1931 * pass along its return value to the caller. Otherwise, if the IP
1932 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1933 * associated with it, call a function to reset the IP block via that
1934 * method, and pass along the return value to the caller. Finally, if
1935 * the IP block has some hardreset lines associated with it, assert
1936 * all of those, but do _not_ deassert them. (This is because driver
1937 * authors have expressed an apparent requirement to control the
1938 * deassertion of the hardreset lines themselves.)
1939 *
1940 * The default software reset mechanism for most OMAP IP blocks is
1941 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1942 * hwmods cannot be reset via this method. Some are not targets and
1943 * therefore have no OCP header registers to access. Others (like the
1944 * IVA) have idiosyncratic reset sequences. So for these relatively
1945 * rare cases, custom reset code can be supplied in the struct
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001946 * omap_hwmod_class .reset function pointer.
1947 *
1948 * _set_dmadisable() is called to set the DMADISABLE bit so that it
1949 * does not prevent idling of the system. This is necessary for cases
1950 * where ROMCODE/BOOTLOADER uses dma and transfers control to the
1951 * kernel without disabling dma.
1952 *
1953 * Passes along the return value from either _ocp_softreset() or the
1954 * custom reset function - these must return -EINVAL if the hwmod
1955 * cannot be reset this way or if the hwmod is in the wrong state,
1956 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Paul Walmsleybd361792010-12-14 12:42:35 -07001957 */
1958static int _reset(struct omap_hwmod *oh)
1959{
Paul Walmsley30e105c2012-04-19 00:49:09 -06001960 int i, r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001961
1962 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1963
Paul Walmsley30e105c2012-04-19 00:49:09 -06001964 if (oh->class->reset) {
1965 r = oh->class->reset(oh);
1966 } else {
1967 if (oh->rst_lines_cnt > 0) {
1968 for (i = 0; i < oh->rst_lines_cnt; i++)
1969 _assert_hardreset(oh, oh->rst_lines[i].name);
1970 return 0;
1971 } else {
1972 r = _ocp_softreset(oh);
1973 if (r == -ENOENT)
1974 r = 0;
1975 }
1976 }
Paul Walmsleybd361792010-12-14 12:42:35 -07001977
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001978 _set_dmadisable(oh);
1979
Paul Walmsley30e105c2012-04-19 00:49:09 -06001980 /*
1981 * OCP_SYSCONFIG bits need to be reprogrammed after a
1982 * softreset. The _enable() function should be split to avoid
1983 * the rewrite of the OCP_SYSCONFIG register.
1984 */
Rajendra Nayak28008522012-03-13 22:55:23 +05301985 if (oh->class->sysc) {
1986 _update_sysc_cache(oh);
1987 _enable_sysc(oh);
1988 }
1989
Paul Walmsley30e105c2012-04-19 00:49:09 -06001990 return r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001991}
1992
1993/**
Vishwanath BS51658822012-06-22 08:40:04 -06001994 * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain
1995 *
1996 * Call the appropriate PRM function to clear any logged I/O chain
1997 * wakeups and to reconfigure the chain. This apparently needs to be
1998 * done upon every mux change. Since hwmods can be concurrently
1999 * enabled and idled, hold a spinlock around the I/O chain
2000 * reconfiguration sequence. No return value.
2001 *
2002 * XXX When the PRM code is moved to drivers, this function can be removed,
2003 * as the PRM infrastructure should abstract this.
2004 */
2005static void _reconfigure_io_chain(void)
2006{
2007 unsigned long flags;
2008
2009 spin_lock_irqsave(&io_chain_lock, flags);
2010
2011 if (cpu_is_omap34xx() && omap3_has_io_chain_ctrl())
2012 omap3xxx_prm_reconfigure_io_chain();
2013 else if (cpu_is_omap44xx())
2014 omap44xx_prm_reconfigure_io_chain();
2015
2016 spin_unlock_irqrestore(&io_chain_lock, flags);
2017}
2018
2019/**
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07002020 * _omap4_update_context_lost - increment hwmod context loss counter if
2021 * hwmod context was lost, and clear hardware context loss reg
2022 * @oh: hwmod to check for context loss
2023 *
2024 * If the PRCM indicates that the hwmod @oh lost context, increment
2025 * our in-memory context loss counter, and clear the RM_*_CONTEXT
2026 * bits. No return value.
2027 */
2028static void _omap4_update_context_lost(struct omap_hwmod *oh)
2029{
2030 if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
2031 return;
2032
2033 if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2034 oh->clkdm->pwrdm.ptr->prcm_offs,
2035 oh->prcm.omap4.context_offs))
2036 return;
2037
2038 oh->prcm.omap4.context_lost_counter++;
2039 prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2040 oh->clkdm->pwrdm.ptr->prcm_offs,
2041 oh->prcm.omap4.context_offs);
2042}
2043
2044/**
2045 * _omap4_get_context_lost - get context loss counter for a hwmod
2046 * @oh: hwmod to get context loss counter for
2047 *
2048 * Returns the in-memory context loss counter for a hwmod.
2049 */
2050static int _omap4_get_context_lost(struct omap_hwmod *oh)
2051{
2052 return oh->prcm.omap4.context_lost_counter;
2053}
2054
2055/**
Paul Walmsley6d266f62013-02-10 11:22:22 -07002056 * _enable_preprogram - Pre-program an IP block during the _enable() process
2057 * @oh: struct omap_hwmod *
2058 *
2059 * Some IP blocks (such as AESS) require some additional programming
2060 * after enable before they can enter idle. If a function pointer to
2061 * do so is present in the hwmod data, then call it and pass along the
2062 * return value; otherwise, return 0.
2063 */
2064static int __init _enable_preprogram(struct omap_hwmod *oh)
2065{
2066 if (!oh->class->enable_preprogram)
2067 return 0;
2068
2069 return oh->class->enable_preprogram(oh);
2070}
2071
2072/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002073 * _enable - enable an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002074 * @oh: struct omap_hwmod *
2075 *
2076 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002077 * register target. Returns -EINVAL if the hwmod is in the wrong
2078 * state or passes along the return value of _wait_target_ready().
Paul Walmsley63c85232009-09-03 20:14:03 +03002079 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002080static int _enable(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002081{
Paul Walmsley747834a2012-04-18 19:10:04 -06002082 int r;
Rajendra Nayak665d0012011-07-10 05:57:07 -06002083 int hwsup = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002084
Benoit Cousson34617e22011-07-01 22:54:07 +02002085 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
2086
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002087 /*
Paul Walmsley64813c32012-04-18 19:10:03 -06002088 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
2089 * state at init. Now that someone is really trying to enable
2090 * them, just ensure that the hwmod mux is set.
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002091 */
2092 if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
2093 /*
2094 * If the caller has mux data populated, do the mux'ing
2095 * which wouldn't have been done as part of the _enable()
2096 * done during setup.
2097 */
2098 if (oh->mux)
2099 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2100
2101 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
2102 return 0;
2103 }
2104
Paul Walmsley63c85232009-09-03 20:14:03 +03002105 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
2106 oh->_state != _HWMOD_STATE_IDLE &&
2107 oh->_state != _HWMOD_STATE_DISABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002108 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
2109 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002110 return -EINVAL;
2111 }
2112
Benoit Cousson31f62862011-07-01 22:54:05 +02002113 /*
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002114 * If an IP block contains HW reset lines and all of them are
Paul Walmsley747834a2012-04-18 19:10:04 -06002115 * asserted, we let integration code associated with that
2116 * block handle the enable. We've received very little
2117 * information on what those driver authors need, and until
2118 * detailed information is provided and the driver code is
2119 * posted to the public lists, this is probably the best we
2120 * can do.
Benoit Cousson31f62862011-07-01 22:54:05 +02002121 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002122 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002123 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002124
Rajendra Nayak665d0012011-07-10 05:57:07 -06002125 /* Mux pins for device runtime if populated */
2126 if (oh->mux && (!oh->mux->enabled ||
2127 ((oh->_state == _HWMOD_STATE_IDLE) &&
Vishwanath BS51658822012-06-22 08:40:04 -06002128 oh->mux->pads_dynamic))) {
Rajendra Nayak665d0012011-07-10 05:57:07 -06002129 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
Vishwanath BS51658822012-06-22 08:40:04 -06002130 _reconfigure_io_chain();
2131 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002132
Rajendra Nayak665d0012011-07-10 05:57:07 -06002133 _add_initiator_dep(oh, mpu_oh);
2134
2135 if (oh->clkdm) {
2136 /*
2137 * A clockdomain must be in SW_SUP before enabling
2138 * completely the module. The clockdomain can be set
2139 * in HW_AUTO only when the module become ready.
2140 */
Paul Walmsleyb71c7212012-09-23 17:28:28 -06002141 hwsup = clkdm_in_hwsup(oh->clkdm) &&
2142 !clkdm_missing_idle_reporting(oh->clkdm);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002143 r = clkdm_hwmod_enable(oh->clkdm, oh);
2144 if (r) {
2145 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
2146 oh->name, oh->clkdm->name, r);
2147 return r;
2148 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002149 }
Rajendra Nayak665d0012011-07-10 05:57:07 -06002150
2151 _enable_clocks(oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002152 if (soc_ops.enable_module)
2153 soc_ops.enable_module(oh);
Benoit Cousson34617e22011-07-01 22:54:07 +02002154
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07002155 if (soc_ops.update_context_lost)
2156 soc_ops.update_context_lost(oh);
2157
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002158 r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
2159 -EINVAL;
Rajendra Nayak665d0012011-07-10 05:57:07 -06002160 if (!r) {
2161 /*
2162 * Set the clockdomain to HW_AUTO only if the target is ready,
2163 * assuming that the previous state was HW_AUTO
2164 */
2165 if (oh->clkdm && hwsup)
2166 clkdm_allow_idle(oh->clkdm);
Benoit Cousson34617e22011-07-01 22:54:07 +02002167
Rajendra Nayak665d0012011-07-10 05:57:07 -06002168 oh->_state = _HWMOD_STATE_ENABLED;
2169
2170 /* Access the sysconfig only if the target is ready */
2171 if (oh->class->sysc) {
2172 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
2173 _update_sysc_cache(oh);
2174 _enable_sysc(oh);
2175 }
Paul Walmsley6d266f62013-02-10 11:22:22 -07002176 r = _enable_preprogram(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002177 } else {
Paul Walmsley2577a4a2012-10-29 20:57:55 -06002178 if (soc_ops.disable_module)
2179 soc_ops.disable_module(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002180 _disable_clocks(oh);
2181 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
2182 oh->name, r);
2183
2184 if (oh->clkdm)
2185 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002186 }
2187
Paul Walmsley63c85232009-09-03 20:14:03 +03002188 return r;
2189}
2190
2191/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002192 * _idle - idle an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002193 * @oh: struct omap_hwmod *
2194 *
2195 * Idles an omap_hwmod @oh. This should be called once the hwmod has
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002196 * no further work. Returns -EINVAL if the hwmod is in the wrong
2197 * state or returns 0.
Paul Walmsley63c85232009-09-03 20:14:03 +03002198 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002199static int _idle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002200{
Benoit Cousson34617e22011-07-01 22:54:07 +02002201 pr_debug("omap_hwmod: %s: idling\n", oh->name);
2202
Paul Walmsley63c85232009-09-03 20:14:03 +03002203 if (oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002204 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2205 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002206 return -EINVAL;
2207 }
2208
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002209 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002210 return 0;
2211
Paul Walmsley43b40992010-02-22 22:09:34 -07002212 if (oh->class->sysc)
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002213 _idle_sysc(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002214 _del_initiator_dep(oh, mpu_oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002215
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002216 if (soc_ops.disable_module)
2217 soc_ops.disable_module(oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002218
Benoit Cousson45c38252011-07-10 05:56:33 -06002219 /*
2220 * The module must be in idle mode before disabling any parents
2221 * clocks. Otherwise, the parent clock might be disabled before
2222 * the module transition is done, and thus will prevent the
2223 * transition to complete properly.
2224 */
2225 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002226 if (oh->clkdm)
2227 clkdm_hwmod_disable(oh->clkdm, oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002228
Tony Lindgren8d9af882010-12-22 18:42:35 -08002229 /* Mux pins for device idle if populated */
Vishwanath BS51658822012-06-22 08:40:04 -06002230 if (oh->mux && oh->mux->pads_dynamic) {
Tony Lindgren8d9af882010-12-22 18:42:35 -08002231 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
Vishwanath BS51658822012-06-22 08:40:04 -06002232 _reconfigure_io_chain();
2233 }
Tony Lindgren8d9af882010-12-22 18:42:35 -08002234
Paul Walmsley63c85232009-09-03 20:14:03 +03002235 oh->_state = _HWMOD_STATE_IDLE;
2236
2237 return 0;
2238}
2239
2240/**
Kishon Vijay Abraham I95992172011-03-10 03:50:08 -07002241 * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit
2242 * @oh: struct omap_hwmod *
2243 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
2244 *
2245 * Sets the IP block's OCP autoidle bit in hardware, and updates our
2246 * local copy. Intended to be used by drivers that require
2247 * direct manipulation of the AUTOIDLE bits.
2248 * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes
2249 * along the return value from _set_module_autoidle().
2250 *
2251 * Any users of this function should be scrutinized carefully.
2252 */
2253int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle)
2254{
2255 u32 v;
2256 int retval = 0;
2257 unsigned long flags;
2258
2259 if (!oh || oh->_state != _HWMOD_STATE_ENABLED)
2260 return -EINVAL;
2261
2262 spin_lock_irqsave(&oh->_lock, flags);
2263
2264 v = oh->_sysc_cache;
2265
2266 retval = _set_module_autoidle(oh, autoidle, &v);
2267
2268 if (!retval)
2269 _write_sysconfig(v, oh);
2270
2271 spin_unlock_irqrestore(&oh->_lock, flags);
2272
2273 return retval;
2274}
2275
2276/**
Paul Walmsley63c85232009-09-03 20:14:03 +03002277 * _shutdown - shutdown an omap_hwmod
2278 * @oh: struct omap_hwmod *
2279 *
2280 * Shut down an omap_hwmod @oh. This should be called when the driver
2281 * used for the hwmod is removed or unloaded or if the driver is not
2282 * used by the system. Returns -EINVAL if the hwmod is in the wrong
2283 * state or returns 0.
2284 */
2285static int _shutdown(struct omap_hwmod *oh)
2286{
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002287 int ret, i;
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002288 u8 prev_state;
2289
Paul Walmsley63c85232009-09-03 20:14:03 +03002290 if (oh->_state != _HWMOD_STATE_IDLE &&
2291 oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002292 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2293 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002294 return -EINVAL;
2295 }
2296
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002297 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002298 return 0;
2299
Paul Walmsley63c85232009-09-03 20:14:03 +03002300 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2301
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002302 if (oh->class->pre_shutdown) {
2303 prev_state = oh->_state;
2304 if (oh->_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002305 _enable(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002306 ret = oh->class->pre_shutdown(oh);
2307 if (ret) {
2308 if (prev_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002309 _idle(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002310 return ret;
2311 }
2312 }
2313
Miguel Vadillo6481c732011-07-01 22:54:02 +02002314 if (oh->class->sysc) {
2315 if (oh->_state == _HWMOD_STATE_IDLE)
2316 _enable(oh);
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002317 _shutdown_sysc(oh);
Miguel Vadillo6481c732011-07-01 22:54:02 +02002318 }
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06002319
Benoit Cousson3827f942010-09-21 10:34:08 -06002320 /* clocks and deps are already disabled in idle */
2321 if (oh->_state == _HWMOD_STATE_ENABLED) {
2322 _del_initiator_dep(oh, mpu_oh);
2323 /* XXX what about the other system initiators here? dma, dsp */
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002324 if (soc_ops.disable_module)
2325 soc_ops.disable_module(oh);
Benoit Cousson45c38252011-07-10 05:56:33 -06002326 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002327 if (oh->clkdm)
2328 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson3827f942010-09-21 10:34:08 -06002329 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002330 /* XXX Should this code also force-disable the optional clocks? */
2331
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002332 for (i = 0; i < oh->rst_lines_cnt; i++)
2333 _assert_hardreset(oh, oh->rst_lines[i].name);
Benoit Cousson31f62862011-07-01 22:54:05 +02002334
Tony Lindgren8d9af882010-12-22 18:42:35 -08002335 /* Mux pins to safe mode or use populated off mode values */
2336 if (oh->mux)
2337 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
Paul Walmsley63c85232009-09-03 20:14:03 +03002338
2339 oh->_state = _HWMOD_STATE_DISABLED;
2340
2341 return 0;
2342}
2343
2344/**
Paul Walmsley381d0332012-04-19 00:58:22 -06002345 * _init_mpu_rt_base - populate the virtual address for a hwmod
2346 * @oh: struct omap_hwmod * to locate the virtual address
2347 *
2348 * Cache the virtual address used by the MPU to access this IP block's
2349 * registers. This address is needed early so the OCP registers that
2350 * are part of the device's address space can be ioremapped properly.
2351 * No return value.
2352 */
2353static void __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data)
2354{
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002355 struct omap_hwmod_addr_space *mem;
2356 void __iomem *va_start;
2357
2358 if (!oh)
2359 return;
2360
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002361 _save_mpu_port_index(oh);
2362
Paul Walmsley381d0332012-04-19 00:58:22 -06002363 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2364 return;
2365
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002366 mem = _find_mpu_rt_addr_space(oh);
2367 if (!mem) {
2368 pr_debug("omap_hwmod: %s: no MPU register target found\n",
2369 oh->name);
2370 return;
2371 }
2372
2373 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
2374 if (!va_start) {
2375 pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
2376 return;
2377 }
2378
2379 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2380 oh->name, va_start);
2381
2382 oh->_mpu_rt_va = va_start;
Paul Walmsley381d0332012-04-19 00:58:22 -06002383}
2384
2385/**
2386 * _init - initialize internal data for the hwmod @oh
2387 * @oh: struct omap_hwmod *
2388 * @n: (unused)
2389 *
2390 * Look up the clocks and the address space used by the MPU to access
2391 * registers belonging to the hwmod @oh. @oh must already be
2392 * registered at this point. This is the first of two phases for
2393 * hwmod initialization. Code called here does not touch any hardware
2394 * registers, it simply prepares internal data structures. Returns 0
2395 * upon success or if the hwmod isn't registered, or -EINVAL upon
2396 * failure.
2397 */
2398static int __init _init(struct omap_hwmod *oh, void *data)
2399{
2400 int r;
2401
2402 if (oh->_state != _HWMOD_STATE_REGISTERED)
2403 return 0;
2404
2405 _init_mpu_rt_base(oh, NULL);
2406
2407 r = _init_clocks(oh, NULL);
2408 if (IS_ERR_VALUE(r)) {
2409 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2410 return -EINVAL;
2411 }
2412
2413 oh->_state = _HWMOD_STATE_INITIALIZED;
2414
2415 return 0;
2416}
2417
2418/**
Paul Walmsley64813c32012-04-18 19:10:03 -06002419 * _setup_iclk_autoidle - configure an IP block's interface clocks
Paul Walmsley63c85232009-09-03 20:14:03 +03002420 * @oh: struct omap_hwmod *
2421 *
Paul Walmsley64813c32012-04-18 19:10:03 -06002422 * Set up the module's interface clocks. XXX This function is still mostly
2423 * a stub; implementing this properly requires iclk autoidle usecounting in
2424 * the clock code. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03002425 */
Paul Walmsley64813c32012-04-18 19:10:03 -06002426static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002427{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002428 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002429 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002430 int i = 0;
Paul Walmsley381d0332012-04-19 00:58:22 -06002431 if (oh->_state != _HWMOD_STATE_INITIALIZED)
Paul Walmsley64813c32012-04-18 19:10:03 -06002432 return;
Paul Walmsley48d54f32011-02-23 00:14:07 -07002433
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002434 p = oh->slave_ports.next;
Paul Walmsley63c85232009-09-03 20:14:03 +03002435
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002436 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002437 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002438 if (!os->_clk)
Paul Walmsley64813c32012-04-18 19:10:03 -06002439 continue;
Paul Walmsley63c85232009-09-03 20:14:03 +03002440
Paul Walmsley64813c32012-04-18 19:10:03 -06002441 if (os->flags & OCPIF_SWSUP_IDLE) {
2442 /* XXX omap_iclk_deny_idle(c); */
2443 } else {
2444 /* XXX omap_iclk_allow_idle(c); */
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002445 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +03002446 }
2447 }
2448
Paul Walmsley64813c32012-04-18 19:10:03 -06002449 return;
2450}
2451
2452/**
2453 * _setup_reset - reset an IP block during the setup process
2454 * @oh: struct omap_hwmod *
2455 *
2456 * Reset the IP block corresponding to the hwmod @oh during the setup
2457 * process. The IP block is first enabled so it can be successfully
2458 * reset. Returns 0 upon success or a negative error code upon
2459 * failure.
2460 */
2461static int __init _setup_reset(struct omap_hwmod *oh)
2462{
2463 int r;
2464
2465 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2466 return -EINVAL;
Paul Walmsley63c85232009-09-03 20:14:03 +03002467
Paul Walmsley5fb3d522012-10-29 22:11:50 -06002468 if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
2469 return -EPERM;
2470
Paul Walmsley747834a2012-04-18 19:10:04 -06002471 if (oh->rst_lines_cnt == 0) {
2472 r = _enable(oh);
2473 if (r) {
2474 pr_warning("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2475 oh->name, oh->_state);
2476 return -EINVAL;
2477 }
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002478 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002479
Rajendra Nayak28008522012-03-13 22:55:23 +05302480 if (!(oh->flags & HWMOD_INIT_NO_RESET))
Paul Walmsley64813c32012-04-18 19:10:03 -06002481 r = _reset(oh);
2482
2483 return r;
2484}
2485
2486/**
2487 * _setup_postsetup - transition to the appropriate state after _setup
2488 * @oh: struct omap_hwmod *
2489 *
2490 * Place an IP block represented by @oh into a "post-setup" state --
2491 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
2492 * this function is called at the end of _setup().) The postsetup
2493 * state for an IP block can be changed by calling
2494 * omap_hwmod_enter_postsetup_state() early in the boot process,
2495 * before one of the omap_hwmod_setup*() functions are called for the
2496 * IP block.
2497 *
2498 * The IP block stays in this state until a PM runtime-based driver is
2499 * loaded for that IP block. A post-setup state of IDLE is
2500 * appropriate for almost all IP blocks with runtime PM-enabled
2501 * drivers, since those drivers are able to enable the IP block. A
2502 * post-setup state of ENABLED is appropriate for kernels with PM
2503 * runtime disabled. The DISABLED state is appropriate for unusual IP
2504 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2505 * included, since the WDTIMER starts running on reset and will reset
2506 * the MPU if left active.
2507 *
2508 * This post-setup mechanism is deprecated. Once all of the OMAP
2509 * drivers have been converted to use PM runtime, and all of the IP
2510 * block data and interconnect data is available to the hwmod code, it
2511 * should be possible to replace this mechanism with a "lazy reset"
2512 * arrangement. In a "lazy reset" setup, each IP block is enabled
2513 * when the driver first probes, then all remaining IP blocks without
2514 * drivers are either shut down or enabled after the drivers have
2515 * loaded. However, this cannot take place until the above
2516 * preconditions have been met, since otherwise the late reset code
2517 * has no way of knowing which IP blocks are in use by drivers, and
2518 * which ones are unused.
2519 *
2520 * No return value.
2521 */
2522static void __init _setup_postsetup(struct omap_hwmod *oh)
2523{
2524 u8 postsetup_state;
2525
2526 if (oh->rst_lines_cnt > 0)
2527 return;
Benoit Cousson76e55892010-09-21 10:34:11 -06002528
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002529 postsetup_state = oh->_postsetup_state;
2530 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2531 postsetup_state = _HWMOD_STATE_ENABLED;
2532
2533 /*
2534 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2535 * it should be set by the core code as a runtime flag during startup
2536 */
2537 if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002538 (postsetup_state == _HWMOD_STATE_IDLE)) {
2539 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002540 postsetup_state = _HWMOD_STATE_ENABLED;
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002541 }
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002542
2543 if (postsetup_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002544 _idle(oh);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002545 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2546 _shutdown(oh);
2547 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2548 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2549 oh->name, postsetup_state);
Paul Walmsley63c85232009-09-03 20:14:03 +03002550
Paul Walmsley64813c32012-04-18 19:10:03 -06002551 return;
2552}
2553
2554/**
2555 * _setup - prepare IP block hardware for use
2556 * @oh: struct omap_hwmod *
2557 * @n: (unused, pass NULL)
2558 *
2559 * Configure the IP block represented by @oh. This may include
2560 * enabling the IP block, resetting it, and placing it into a
2561 * post-setup state, depending on the type of IP block and applicable
2562 * flags. IP blocks are reset to prevent any previous configuration
2563 * by the bootloader or previous operating system from interfering
2564 * with power management or other parts of the system. The reset can
2565 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2566 * two phases for hwmod initialization. Code called here generally
2567 * affects the IP block hardware, or system integration hardware
2568 * associated with the IP block. Returns 0.
2569 */
2570static int __init _setup(struct omap_hwmod *oh, void *data)
2571{
2572 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2573 return 0;
2574
2575 _setup_iclk_autoidle(oh);
2576
2577 if (!_setup_reset(oh))
2578 _setup_postsetup(oh);
2579
Paul Walmsley63c85232009-09-03 20:14:03 +03002580 return 0;
2581}
2582
Benoit Cousson0102b622010-12-21 21:31:27 -07002583/**
2584 * _register - register a struct omap_hwmod
2585 * @oh: struct omap_hwmod *
2586 *
2587 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2588 * already has been registered by the same name; -EINVAL if the
2589 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2590 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2591 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2592 * success.
2593 *
2594 * XXX The data should be copied into bootmem, so the original data
2595 * should be marked __initdata and freed after init. This would allow
2596 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2597 * that the copy process would be relatively complex due to the large number
2598 * of substructures.
2599 */
Benoit Cousson01592df2010-12-21 21:31:28 -07002600static int __init _register(struct omap_hwmod *oh)
Benoit Cousson0102b622010-12-21 21:31:27 -07002601{
Benoit Cousson0102b622010-12-21 21:31:27 -07002602 if (!oh || !oh->name || !oh->class || !oh->class->name ||
2603 (oh->_state != _HWMOD_STATE_UNKNOWN))
2604 return -EINVAL;
2605
Benoit Cousson0102b622010-12-21 21:31:27 -07002606 pr_debug("omap_hwmod: %s: registering\n", oh->name);
2607
Benoit Coussonce35b242010-12-21 21:31:28 -07002608 if (_lookup(oh->name))
2609 return -EEXIST;
Benoit Cousson0102b622010-12-21 21:31:27 -07002610
Benoit Cousson0102b622010-12-21 21:31:27 -07002611 list_add_tail(&oh->node, &omap_hwmod_list);
2612
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002613 INIT_LIST_HEAD(&oh->master_ports);
2614 INIT_LIST_HEAD(&oh->slave_ports);
Benoit Cousson0102b622010-12-21 21:31:27 -07002615 spin_lock_init(&oh->_lock);
2616
2617 oh->_state = _HWMOD_STATE_REGISTERED;
2618
Paul Walmsley569edd702011-02-23 00:14:06 -07002619 /*
2620 * XXX Rather than doing a strcmp(), this should test a flag
2621 * set in the hwmod data, inserted by the autogenerator code.
2622 */
2623 if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2624 mpu_oh = oh;
Benoit Cousson0102b622010-12-21 21:31:27 -07002625
Paul Walmsley569edd702011-02-23 00:14:06 -07002626 return 0;
Benoit Cousson0102b622010-12-21 21:31:27 -07002627}
Paul Walmsley63c85232009-09-03 20:14:03 +03002628
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002629/**
2630 * _alloc_links - return allocated memory for hwmod links
2631 * @ml: pointer to a struct omap_hwmod_link * for the master link
2632 * @sl: pointer to a struct omap_hwmod_link * for the slave link
2633 *
2634 * Return pointers to two struct omap_hwmod_link records, via the
2635 * addresses pointed to by @ml and @sl. Will first attempt to return
2636 * memory allocated as part of a large initial block, but if that has
2637 * been exhausted, will allocate memory itself. Since ideally this
2638 * second allocation path will never occur, the number of these
2639 * 'supplemental' allocations will be logged when debugging is
2640 * enabled. Returns 0.
2641 */
2642static int __init _alloc_links(struct omap_hwmod_link **ml,
2643 struct omap_hwmod_link **sl)
2644{
2645 unsigned int sz;
2646
2647 if ((free_ls + LINKS_PER_OCP_IF) <= max_ls) {
2648 *ml = &linkspace[free_ls++];
2649 *sl = &linkspace[free_ls++];
2650 return 0;
2651 }
2652
2653 sz = sizeof(struct omap_hwmod_link) * LINKS_PER_OCP_IF;
2654
2655 *sl = NULL;
2656 *ml = alloc_bootmem(sz);
2657
2658 memset(*ml, 0, sz);
2659
2660 *sl = (void *)(*ml) + sizeof(struct omap_hwmod_link);
2661
2662 ls_supp++;
2663 pr_debug("omap_hwmod: supplemental link allocations needed: %d\n",
2664 ls_supp * LINKS_PER_OCP_IF);
2665
2666 return 0;
2667};
2668
2669/**
2670 * _add_link - add an interconnect between two IP blocks
2671 * @oi: pointer to a struct omap_hwmod_ocp_if record
2672 *
2673 * Add struct omap_hwmod_link records connecting the master IP block
2674 * specified in @oi->master to @oi, and connecting the slave IP block
2675 * specified in @oi->slave to @oi. This code is assumed to run before
2676 * preemption or SMP has been enabled, thus avoiding the need for
2677 * locking in this code. Changes to this assumption will require
2678 * additional locking. Returns 0.
2679 */
2680static int __init _add_link(struct omap_hwmod_ocp_if *oi)
2681{
2682 struct omap_hwmod_link *ml, *sl;
2683
2684 pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2685 oi->slave->name);
2686
2687 _alloc_links(&ml, &sl);
2688
2689 ml->ocp_if = oi;
2690 INIT_LIST_HEAD(&ml->node);
2691 list_add(&ml->node, &oi->master->master_ports);
2692 oi->master->masters_cnt++;
2693
2694 sl->ocp_if = oi;
2695 INIT_LIST_HEAD(&sl->node);
2696 list_add(&sl->node, &oi->slave->slave_ports);
2697 oi->slave->slaves_cnt++;
2698
2699 return 0;
2700}
2701
2702/**
2703 * _register_link - register a struct omap_hwmod_ocp_if
2704 * @oi: struct omap_hwmod_ocp_if *
2705 *
2706 * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
2707 * has already been registered; -EINVAL if @oi is NULL or if the
2708 * record pointed to by @oi is missing required fields; or 0 upon
2709 * success.
2710 *
2711 * XXX The data should be copied into bootmem, so the original data
2712 * should be marked __initdata and freed after init. This would allow
2713 * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2714 */
2715static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2716{
2717 if (!oi || !oi->master || !oi->slave || !oi->user)
2718 return -EINVAL;
2719
2720 if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2721 return -EEXIST;
2722
2723 pr_debug("omap_hwmod: registering link from %s to %s\n",
2724 oi->master->name, oi->slave->name);
2725
2726 /*
2727 * Register the connected hwmods, if they haven't been
2728 * registered already
2729 */
2730 if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2731 _register(oi->master);
2732
2733 if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2734 _register(oi->slave);
2735
2736 _add_link(oi);
2737
2738 oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2739
2740 return 0;
2741}
2742
2743/**
2744 * _alloc_linkspace - allocate large block of hwmod links
2745 * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count
2746 *
2747 * Allocate a large block of struct omap_hwmod_link records. This
2748 * improves boot time significantly by avoiding the need to allocate
2749 * individual records one by one. If the number of records to
2750 * allocate in the block hasn't been manually specified, this function
2751 * will count the number of struct omap_hwmod_ocp_if records in @ois
2752 * and use that to determine the allocation size. For SoC families
2753 * that require multiple list registrations, such as OMAP3xxx, this
2754 * estimation process isn't optimal, so manual estimation is advised
2755 * in those cases. Returns -EEXIST if the allocation has already occurred
2756 * or 0 upon success.
2757 */
2758static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois)
2759{
2760 unsigned int i = 0;
2761 unsigned int sz;
2762
2763 if (linkspace) {
2764 WARN(1, "linkspace already allocated\n");
2765 return -EEXIST;
2766 }
2767
2768 if (max_ls == 0)
2769 while (ois[i++])
2770 max_ls += LINKS_PER_OCP_IF;
2771
2772 sz = sizeof(struct omap_hwmod_link) * max_ls;
2773
2774 pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n",
2775 __func__, sz, max_ls);
2776
2777 linkspace = alloc_bootmem(sz);
2778
2779 memset(linkspace, 0, sz);
2780
2781 return 0;
2782}
Paul Walmsley63c85232009-09-03 20:14:03 +03002783
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002784/* Static functions intended only for use in soc_ops field function pointers */
2785
2786/**
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002787 * _omap2xxx_wait_target_ready - wait for a module to leave slave idle
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002788 * @oh: struct omap_hwmod *
2789 *
2790 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2791 * does not have an IDLEST bit or if the module successfully leaves
2792 * slave idle; otherwise, pass along the return value of the
2793 * appropriate *_cm*_wait_module_ready() function.
2794 */
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002795static int _omap2xxx_wait_target_ready(struct omap_hwmod *oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002796{
2797 if (!oh)
2798 return -EINVAL;
2799
2800 if (oh->flags & HWMOD_NO_IDLEST)
2801 return 0;
2802
2803 if (!_find_mpu_rt_port(oh))
2804 return 0;
2805
2806 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2807
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002808 return omap2xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2809 oh->prcm.omap2.idlest_reg_id,
2810 oh->prcm.omap2.idlest_idle_bit);
2811}
2812
2813/**
2814 * _omap3xxx_wait_target_ready - wait for a module to leave slave idle
2815 * @oh: struct omap_hwmod *
2816 *
2817 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2818 * does not have an IDLEST bit or if the module successfully leaves
2819 * slave idle; otherwise, pass along the return value of the
2820 * appropriate *_cm*_wait_module_ready() function.
2821 */
2822static int _omap3xxx_wait_target_ready(struct omap_hwmod *oh)
2823{
2824 if (!oh)
2825 return -EINVAL;
2826
2827 if (oh->flags & HWMOD_NO_IDLEST)
2828 return 0;
2829
2830 if (!_find_mpu_rt_port(oh))
2831 return 0;
2832
2833 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2834
2835 return omap3xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2836 oh->prcm.omap2.idlest_reg_id,
2837 oh->prcm.omap2.idlest_idle_bit);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002838}
2839
2840/**
2841 * _omap4_wait_target_ready - wait for a module to leave slave idle
2842 * @oh: struct omap_hwmod *
2843 *
2844 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2845 * does not have an IDLEST bit or if the module successfully leaves
2846 * slave idle; otherwise, pass along the return value of the
2847 * appropriate *_cm*_wait_module_ready() function.
2848 */
2849static int _omap4_wait_target_ready(struct omap_hwmod *oh)
2850{
Paul Walmsley2b026d12012-09-23 17:28:18 -06002851 if (!oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002852 return -EINVAL;
2853
Paul Walmsley2b026d12012-09-23 17:28:18 -06002854 if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002855 return 0;
2856
2857 if (!_find_mpu_rt_port(oh))
2858 return 0;
2859
2860 /* XXX check module SIDLEMODE, hardreset status */
2861
2862 return omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition,
2863 oh->clkdm->cm_inst,
2864 oh->clkdm->clkdm_offs,
2865 oh->prcm.omap4.clkctrl_offs);
2866}
2867
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002868/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002869 * _am33xx_wait_target_ready - wait for a module to leave slave idle
2870 * @oh: struct omap_hwmod *
2871 *
2872 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2873 * does not have an IDLEST bit or if the module successfully leaves
2874 * slave idle; otherwise, pass along the return value of the
2875 * appropriate *_cm*_wait_module_ready() function.
2876 */
2877static int _am33xx_wait_target_ready(struct omap_hwmod *oh)
2878{
2879 if (!oh || !oh->clkdm)
2880 return -EINVAL;
2881
2882 if (oh->flags & HWMOD_NO_IDLEST)
2883 return 0;
2884
2885 if (!_find_mpu_rt_port(oh))
2886 return 0;
2887
2888 /* XXX check module SIDLEMODE, hardreset status */
2889
2890 return am33xx_cm_wait_module_ready(oh->clkdm->cm_inst,
2891 oh->clkdm->clkdm_offs,
2892 oh->prcm.omap4.clkctrl_offs);
2893}
2894
2895/**
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002896 * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2897 * @oh: struct omap_hwmod * to assert hardreset
2898 * @ohri: hardreset line data
2899 *
2900 * Call omap2_prm_assert_hardreset() with parameters extracted from
2901 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2902 * use as an soc_ops function pointer. Passes along the return value
2903 * from omap2_prm_assert_hardreset(). XXX This function is scheduled
2904 * for removal when the PRM code is moved into drivers/.
2905 */
2906static int _omap2_assert_hardreset(struct omap_hwmod *oh,
2907 struct omap_hwmod_rst_info *ohri)
2908{
2909 return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
2910 ohri->rst_shift);
2911}
2912
2913/**
2914 * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2915 * @oh: struct omap_hwmod * to deassert hardreset
2916 * @ohri: hardreset line data
2917 *
2918 * Call omap2_prm_deassert_hardreset() with parameters extracted from
2919 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2920 * use as an soc_ops function pointer. Passes along the return value
2921 * from omap2_prm_deassert_hardreset(). XXX This function is
2922 * scheduled for removal when the PRM code is moved into drivers/.
2923 */
2924static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
2925 struct omap_hwmod_rst_info *ohri)
2926{
2927 return omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
2928 ohri->rst_shift,
2929 ohri->st_shift);
2930}
2931
2932/**
2933 * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
2934 * @oh: struct omap_hwmod * to test hardreset
2935 * @ohri: hardreset line data
2936 *
2937 * Call omap2_prm_is_hardreset_asserted() with parameters extracted
2938 * from the hwmod @oh and the hardreset line data @ohri. Only
2939 * intended for use as an soc_ops function pointer. Passes along the
2940 * return value from omap2_prm_is_hardreset_asserted(). XXX This
2941 * function is scheduled for removal when the PRM code is moved into
2942 * drivers/.
2943 */
2944static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
2945 struct omap_hwmod_rst_info *ohri)
2946{
2947 return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
2948 ohri->st_shift);
2949}
2950
2951/**
2952 * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2953 * @oh: struct omap_hwmod * to assert hardreset
2954 * @ohri: hardreset line data
2955 *
2956 * Call omap4_prminst_assert_hardreset() with parameters extracted
2957 * from the hwmod @oh and the hardreset line data @ohri. Only
2958 * intended for use as an soc_ops function pointer. Passes along the
2959 * return value from omap4_prminst_assert_hardreset(). XXX This
2960 * function is scheduled for removal when the PRM code is moved into
2961 * drivers/.
2962 */
2963static int _omap4_assert_hardreset(struct omap_hwmod *oh,
2964 struct omap_hwmod_rst_info *ohri)
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002965{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002966 if (!oh->clkdm)
2967 return -EINVAL;
2968
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002969 return omap4_prminst_assert_hardreset(ohri->rst_shift,
2970 oh->clkdm->pwrdm.ptr->prcm_partition,
2971 oh->clkdm->pwrdm.ptr->prcm_offs,
2972 oh->prcm.omap4.rstctrl_offs);
2973}
2974
2975/**
2976 * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2977 * @oh: struct omap_hwmod * to deassert hardreset
2978 * @ohri: hardreset line data
2979 *
2980 * Call omap4_prminst_deassert_hardreset() with parameters extracted
2981 * from the hwmod @oh and the hardreset line data @ohri. Only
2982 * intended for use as an soc_ops function pointer. Passes along the
2983 * return value from omap4_prminst_deassert_hardreset(). XXX This
2984 * function is scheduled for removal when the PRM code is moved into
2985 * drivers/.
2986 */
2987static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
2988 struct omap_hwmod_rst_info *ohri)
2989{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002990 if (!oh->clkdm)
2991 return -EINVAL;
2992
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002993 if (ohri->st_shift)
2994 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
2995 oh->name, ohri->name);
2996 return omap4_prminst_deassert_hardreset(ohri->rst_shift,
2997 oh->clkdm->pwrdm.ptr->prcm_partition,
2998 oh->clkdm->pwrdm.ptr->prcm_offs,
2999 oh->prcm.omap4.rstctrl_offs);
3000}
3001
3002/**
3003 * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
3004 * @oh: struct omap_hwmod * to test hardreset
3005 * @ohri: hardreset line data
3006 *
3007 * Call omap4_prminst_is_hardreset_asserted() with parameters
3008 * extracted from the hwmod @oh and the hardreset line data @ohri.
3009 * Only intended for use as an soc_ops function pointer. Passes along
3010 * the return value from omap4_prminst_is_hardreset_asserted(). XXX
3011 * This function is scheduled for removal when the PRM code is moved
3012 * into drivers/.
3013 */
3014static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
3015 struct omap_hwmod_rst_info *ohri)
3016{
Paul Walmsley07b3a132012-06-20 20:11:36 -06003017 if (!oh->clkdm)
3018 return -EINVAL;
3019
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003020 return omap4_prminst_is_hardreset_asserted(ohri->rst_shift,
3021 oh->clkdm->pwrdm.ptr->prcm_partition,
3022 oh->clkdm->pwrdm.ptr->prcm_offs,
3023 oh->prcm.omap4.rstctrl_offs);
3024}
3025
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003026/**
3027 * _am33xx_assert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3028 * @oh: struct omap_hwmod * to assert hardreset
3029 * @ohri: hardreset line data
3030 *
3031 * Call am33xx_prminst_assert_hardreset() with parameters extracted
3032 * from the hwmod @oh and the hardreset line data @ohri. Only
3033 * intended for use as an soc_ops function pointer. Passes along the
3034 * return value from am33xx_prminst_assert_hardreset(). XXX This
3035 * function is scheduled for removal when the PRM code is moved into
3036 * drivers/.
3037 */
3038static int _am33xx_assert_hardreset(struct omap_hwmod *oh,
3039 struct omap_hwmod_rst_info *ohri)
3040
3041{
3042 return am33xx_prm_assert_hardreset(ohri->rst_shift,
3043 oh->clkdm->pwrdm.ptr->prcm_offs,
3044 oh->prcm.omap4.rstctrl_offs);
3045}
3046
3047/**
3048 * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3049 * @oh: struct omap_hwmod * to deassert hardreset
3050 * @ohri: hardreset line data
3051 *
3052 * Call am33xx_prminst_deassert_hardreset() with parameters extracted
3053 * from the hwmod @oh and the hardreset line data @ohri. Only
3054 * intended for use as an soc_ops function pointer. Passes along the
3055 * return value from am33xx_prminst_deassert_hardreset(). XXX This
3056 * function is scheduled for removal when the PRM code is moved into
3057 * drivers/.
3058 */
3059static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
3060 struct omap_hwmod_rst_info *ohri)
3061{
3062 if (ohri->st_shift)
3063 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
3064 oh->name, ohri->name);
3065
3066 return am33xx_prm_deassert_hardreset(ohri->rst_shift,
3067 oh->clkdm->pwrdm.ptr->prcm_offs,
3068 oh->prcm.omap4.rstctrl_offs,
3069 oh->prcm.omap4.rstst_offs);
3070}
3071
3072/**
3073 * _am33xx_is_hardreset_asserted - call AM33XX PRM hardreset fn with hwmod args
3074 * @oh: struct omap_hwmod * to test hardreset
3075 * @ohri: hardreset line data
3076 *
3077 * Call am33xx_prminst_is_hardreset_asserted() with parameters
3078 * extracted from the hwmod @oh and the hardreset line data @ohri.
3079 * Only intended for use as an soc_ops function pointer. Passes along
3080 * the return value from am33xx_prminst_is_hardreset_asserted(). XXX
3081 * This function is scheduled for removal when the PRM code is moved
3082 * into drivers/.
3083 */
3084static int _am33xx_is_hardreset_asserted(struct omap_hwmod *oh,
3085 struct omap_hwmod_rst_info *ohri)
3086{
3087 return am33xx_prm_is_hardreset_asserted(ohri->rst_shift,
3088 oh->clkdm->pwrdm.ptr->prcm_offs,
3089 oh->prcm.omap4.rstctrl_offs);
3090}
3091
Paul Walmsley63c85232009-09-03 20:14:03 +03003092/* Public functions */
3093
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003094u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03003095{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003096 if (oh->flags & HWMOD_16BIT_REG)
3097 return __raw_readw(oh->_mpu_rt_va + reg_offs);
3098 else
3099 return __raw_readl(oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003100}
3101
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003102void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03003103{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003104 if (oh->flags & HWMOD_16BIT_REG)
3105 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
3106 else
3107 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003108}
3109
Paul Walmsley887adea2010-07-26 16:34:33 -06003110/**
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003111 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
3112 * @oh: struct omap_hwmod *
3113 *
3114 * This is a public function exposed to drivers. Some drivers may need to do
3115 * some settings before and after resetting the device. Those drivers after
3116 * doing the necessary settings could use this function to start a reset by
3117 * setting the SYSCONFIG.SOFTRESET bit.
3118 */
3119int omap_hwmod_softreset(struct omap_hwmod *oh)
3120{
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003121 u32 v;
3122 int ret;
3123
3124 if (!oh || !(oh->_sysc_cache))
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003125 return -EINVAL;
3126
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003127 v = oh->_sysc_cache;
3128 ret = _set_softreset(oh, &v);
3129 if (ret)
3130 goto error;
3131 _write_sysconfig(v, oh);
3132
3133error:
3134 return ret;
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003135}
3136
3137/**
Paul Walmsley887adea2010-07-26 16:34:33 -06003138 * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode
3139 * @oh: struct omap_hwmod *
3140 * @idlemode: SIDLEMODE field bits (shifted to bit 0)
3141 *
3142 * Sets the IP block's OCP slave idlemode in hardware, and updates our
3143 * local copy. Intended to be used by drivers that have some erratum
3144 * that requires direct manipulation of the SIDLEMODE bits. Returns
3145 * -EINVAL if @oh is null, or passes along the return value from
3146 * _set_slave_idlemode().
3147 *
3148 * XXX Does this function have any current users? If not, we should
3149 * remove it; it is better to let the rest of the hwmod code handle this.
3150 * Any users of this function should be scrutinized carefully.
3151 */
Kevin Hilman46273e62010-01-26 20:13:03 -07003152int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode)
3153{
3154 u32 v;
3155 int retval = 0;
3156
3157 if (!oh)
3158 return -EINVAL;
3159
3160 v = oh->_sysc_cache;
3161
3162 retval = _set_slave_idlemode(oh, idlemode, &v);
3163 if (!retval)
3164 _write_sysconfig(v, oh);
3165
3166 return retval;
3167}
3168
Paul Walmsley63c85232009-09-03 20:14:03 +03003169/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003170 * omap_hwmod_lookup - look up a registered omap_hwmod by name
3171 * @name: name of the omap_hwmod to look up
3172 *
3173 * Given a @name of an omap_hwmod, return a pointer to the registered
3174 * struct omap_hwmod *, or NULL upon error.
3175 */
3176struct omap_hwmod *omap_hwmod_lookup(const char *name)
3177{
3178 struct omap_hwmod *oh;
3179
3180 if (!name)
3181 return NULL;
3182
Paul Walmsley63c85232009-09-03 20:14:03 +03003183 oh = _lookup(name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003184
3185 return oh;
3186}
3187
3188/**
3189 * omap_hwmod_for_each - call function for each registered omap_hwmod
3190 * @fn: pointer to a callback function
Paul Walmsley97d601622010-07-26 16:34:30 -06003191 * @data: void * data to pass to callback function
Paul Walmsley63c85232009-09-03 20:14:03 +03003192 *
3193 * Call @fn for each registered omap_hwmod, passing @data to each
3194 * function. @fn must return 0 for success or any other value for
3195 * failure. If @fn returns non-zero, the iteration across omap_hwmods
3196 * will stop and the non-zero return value will be passed to the
3197 * caller of omap_hwmod_for_each(). @fn is called with
3198 * omap_hwmod_for_each() held.
3199 */
Paul Walmsley97d601622010-07-26 16:34:30 -06003200int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
3201 void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03003202{
3203 struct omap_hwmod *temp_oh;
Govindraj.R30ebad92011-06-01 11:28:56 +05303204 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003205
3206 if (!fn)
3207 return -EINVAL;
3208
Paul Walmsley63c85232009-09-03 20:14:03 +03003209 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
Paul Walmsley97d601622010-07-26 16:34:30 -06003210 ret = (*fn)(temp_oh, data);
Paul Walmsley63c85232009-09-03 20:14:03 +03003211 if (ret)
3212 break;
3213 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003214
3215 return ret;
3216}
3217
Paul Walmsley63c85232009-09-03 20:14:03 +03003218/**
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003219 * omap_hwmod_register_links - register an array of hwmod links
3220 * @ois: pointer to an array of omap_hwmod_ocp_if to register
3221 *
3222 * Intended to be called early in boot before the clock framework is
3223 * initialized. If @ois is not null, will register all omap_hwmods
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003224 * listed in @ois that are valid for this chip. Returns -EINVAL if
3225 * omap_hwmod_init() hasn't been called before calling this function,
3226 * -ENOMEM if the link memory area can't be allocated, or 0 upon
3227 * success.
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003228 */
3229int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
3230{
3231 int r, i;
3232
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003233 if (!inited)
3234 return -EINVAL;
3235
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003236 if (!ois)
3237 return 0;
3238
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003239 if (!linkspace) {
3240 if (_alloc_linkspace(ois)) {
3241 pr_err("omap_hwmod: could not allocate link space\n");
3242 return -ENOMEM;
3243 }
3244 }
3245
3246 i = 0;
3247 do {
3248 r = _register_link(ois[i]);
3249 WARN(r && r != -EEXIST,
3250 "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3251 ois[i]->master->name, ois[i]->slave->name, r);
3252 } while (ois[++i]);
3253
3254 return 0;
3255}
3256
3257/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003258 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3259 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003260 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003261 * If the hwmod data corresponding to the MPU subsystem IP block
3262 * hasn't been initialized and set up yet, do so now. This must be
3263 * done first since sleep dependencies may be added from other hwmods
3264 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
3265 * return value.
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003266 */
Paul Walmsley381d0332012-04-19 00:58:22 -06003267static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003268{
Paul Walmsley381d0332012-04-19 00:58:22 -06003269 if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3270 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3271 __func__, MPU_INITIATOR_NAME);
3272 else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3273 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
Paul Walmsley63c85232009-09-03 20:14:03 +03003274}
3275
3276/**
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003277 * omap_hwmod_setup_one - set up a single hwmod
3278 * @oh_name: const char * name of the already-registered hwmod to set up
3279 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003280 * Initialize and set up a single hwmod. Intended to be used for a
3281 * small number of early devices, such as the timer IP blocks used for
3282 * the scheduler clock. Must be called after omap2_clk_init().
3283 * Resolves the struct clk names to struct clk pointers for each
3284 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
3285 * -EINVAL upon error or 0 upon success.
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003286 */
3287int __init omap_hwmod_setup_one(const char *oh_name)
3288{
3289 struct omap_hwmod *oh;
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003290
3291 pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3292
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003293 oh = _lookup(oh_name);
3294 if (!oh) {
3295 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3296 return -EINVAL;
3297 }
3298
Paul Walmsley381d0332012-04-19 00:58:22 -06003299 _ensure_mpu_hwmod_is_setup(oh);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003300
Paul Walmsley381d0332012-04-19 00:58:22 -06003301 _init(oh, NULL);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003302 _setup(oh, NULL);
3303
3304 return 0;
3305}
3306
3307/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003308 * omap_hwmod_setup_all - set up all registered IP blocks
Paul Walmsley63c85232009-09-03 20:14:03 +03003309 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003310 * Initialize and set up all IP blocks registered with the hwmod code.
3311 * Must be called after omap2_clk_init(). Resolves the struct clk
3312 * names to struct clk pointers for each registered omap_hwmod. Also
3313 * calls _setup() on each hwmod. Returns 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003314 */
Paul Walmsley550c8092011-02-28 11:58:14 -07003315static int __init omap_hwmod_setup_all(void)
Paul Walmsley63c85232009-09-03 20:14:03 +03003316{
Paul Walmsley381d0332012-04-19 00:58:22 -06003317 _ensure_mpu_hwmod_is_setup(NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003318
Paul Walmsley381d0332012-04-19 00:58:22 -06003319 omap_hwmod_for_each(_init, NULL);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003320 omap_hwmod_for_each(_setup, NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003321
3322 return 0;
3323}
Paul Walmsley550c8092011-02-28 11:58:14 -07003324core_initcall(omap_hwmod_setup_all);
Paul Walmsley63c85232009-09-03 20:14:03 +03003325
3326/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003327 * omap_hwmod_enable - enable an omap_hwmod
3328 * @oh: struct omap_hwmod *
3329 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003330 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
Paul Walmsley63c85232009-09-03 20:14:03 +03003331 * Returns -EINVAL on error or passes along the return value from _enable().
3332 */
3333int omap_hwmod_enable(struct omap_hwmod *oh)
3334{
3335 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003336 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003337
3338 if (!oh)
3339 return -EINVAL;
3340
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003341 spin_lock_irqsave(&oh->_lock, flags);
3342 r = _enable(oh);
3343 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003344
3345 return r;
3346}
3347
3348/**
3349 * omap_hwmod_idle - idle an omap_hwmod
3350 * @oh: struct omap_hwmod *
3351 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003352 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
Paul Walmsley63c85232009-09-03 20:14:03 +03003353 * Returns -EINVAL on error or passes along the return value from _idle().
3354 */
3355int omap_hwmod_idle(struct omap_hwmod *oh)
3356{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003357 unsigned long flags;
3358
Paul Walmsley63c85232009-09-03 20:14:03 +03003359 if (!oh)
3360 return -EINVAL;
3361
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003362 spin_lock_irqsave(&oh->_lock, flags);
3363 _idle(oh);
3364 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003365
3366 return 0;
3367}
3368
3369/**
3370 * omap_hwmod_shutdown - shutdown an omap_hwmod
3371 * @oh: struct omap_hwmod *
3372 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003373 * Shutdown an omap_hwmod @oh. Intended to be called by
Paul Walmsley63c85232009-09-03 20:14:03 +03003374 * omap_device_shutdown(). Returns -EINVAL on error or passes along
3375 * the return value from _shutdown().
3376 */
3377int omap_hwmod_shutdown(struct omap_hwmod *oh)
3378{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003379 unsigned long flags;
3380
Paul Walmsley63c85232009-09-03 20:14:03 +03003381 if (!oh)
3382 return -EINVAL;
3383
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003384 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003385 _shutdown(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003386 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003387
3388 return 0;
3389}
3390
3391/**
3392 * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
3393 * @oh: struct omap_hwmod *oh
3394 *
3395 * Intended to be called by the omap_device code.
3396 */
3397int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
3398{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003399 unsigned long flags;
3400
3401 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003402 _enable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003403 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003404
3405 return 0;
3406}
3407
3408/**
3409 * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
3410 * @oh: struct omap_hwmod *oh
3411 *
3412 * Intended to be called by the omap_device code.
3413 */
3414int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
3415{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003416 unsigned long flags;
3417
3418 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003419 _disable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003420 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003421
3422 return 0;
3423}
3424
3425/**
3426 * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
3427 * @oh: struct omap_hwmod *oh
3428 *
3429 * Intended to be called by drivers and core code when all posted
3430 * writes to a device must complete before continuing further
3431 * execution (for example, after clearing some device IRQSTATUS
3432 * register bits)
3433 *
3434 * XXX what about targets with multiple OCP threads?
3435 */
3436void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
3437{
3438 BUG_ON(!oh);
3439
Paul Walmsley43b40992010-02-22 22:09:34 -07003440 if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
Russell King4f8a4282012-02-07 10:59:37 +00003441 WARN(1, "omap_device: %s: OCP barrier impossible due to device configuration\n",
3442 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003443 return;
3444 }
3445
3446 /*
3447 * Forces posted writes to complete on the OCP thread handling
3448 * register writes
3449 */
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003450 omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003451}
3452
3453/**
3454 * omap_hwmod_reset - reset the hwmod
3455 * @oh: struct omap_hwmod *
3456 *
3457 * Under some conditions, a driver may wish to reset the entire device.
3458 * Called from omap_device code. Returns -EINVAL on error or passes along
Liam Girdwood9b579112010-09-21 10:34:09 -06003459 * the return value from _reset().
Paul Walmsley63c85232009-09-03 20:14:03 +03003460 */
3461int omap_hwmod_reset(struct omap_hwmod *oh)
3462{
3463 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003464 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003465
Liam Girdwood9b579112010-09-21 10:34:09 -06003466 if (!oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03003467 return -EINVAL;
3468
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003469 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003470 r = _reset(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003471 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003472
3473 return r;
3474}
3475
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003476/*
3477 * IP block data retrieval functions
3478 */
3479
Paul Walmsley63c85232009-09-03 20:14:03 +03003480/**
3481 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
3482 * @oh: struct omap_hwmod *
Peter Ujfalusidad41912012-11-21 16:15:17 -07003483 * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
Paul Walmsley63c85232009-09-03 20:14:03 +03003484 *
3485 * Count the number of struct resource array elements necessary to
3486 * contain omap_hwmod @oh resources. Intended to be called by code
3487 * that registers omap_devices. Intended to be used to determine the
3488 * size of a dynamically-allocated struct resource array, before
3489 * calling omap_hwmod_fill_resources(). Returns the number of struct
3490 * resource array elements needed.
3491 *
3492 * XXX This code is not optimized. It could attempt to merge adjacent
3493 * resource IDs.
3494 *
3495 */
Peter Ujfalusidad41912012-11-21 16:15:17 -07003496int omap_hwmod_count_resources(struct omap_hwmod *oh, unsigned long flags)
Paul Walmsley63c85232009-09-03 20:14:03 +03003497{
Peter Ujfalusidad41912012-11-21 16:15:17 -07003498 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003499
Peter Ujfalusidad41912012-11-21 16:15:17 -07003500 if (flags & IORESOURCE_IRQ)
3501 ret += _count_mpu_irqs(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03003502
Peter Ujfalusidad41912012-11-21 16:15:17 -07003503 if (flags & IORESOURCE_DMA)
3504 ret += _count_sdma_reqs(oh);
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003505
Peter Ujfalusidad41912012-11-21 16:15:17 -07003506 if (flags & IORESOURCE_MEM) {
3507 int i = 0;
3508 struct omap_hwmod_ocp_if *os;
3509 struct list_head *p = oh->slave_ports.next;
3510
3511 while (i < oh->slaves_cnt) {
3512 os = _fetch_next_ocp_if(&p, &i);
3513 ret += _count_ocp_if_addr_spaces(os);
3514 }
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003515 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003516
3517 return ret;
3518}
3519
3520/**
3521 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
3522 * @oh: struct omap_hwmod *
3523 * @res: pointer to the first element of an array of struct resource to fill
3524 *
3525 * Fill the struct resource array @res with resource data from the
3526 * omap_hwmod @oh. Intended to be called by code that registers
3527 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3528 * number of array elements filled.
3529 */
3530int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
3531{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003532 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003533 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003534 int i, j, mpu_irqs_cnt, sdma_reqs_cnt, addr_cnt;
Paul Walmsley63c85232009-09-03 20:14:03 +03003535 int r = 0;
3536
3537 /* For each IRQ, DMA, memory area, fill in array.*/
3538
Paul Walmsley212738a2011-07-09 19:14:06 -06003539 mpu_irqs_cnt = _count_mpu_irqs(oh);
3540 for (i = 0; i < mpu_irqs_cnt; i++) {
Paul Walmsley718bfd72009-12-08 16:34:16 -07003541 (res + r)->name = (oh->mpu_irqs + i)->name;
3542 (res + r)->start = (oh->mpu_irqs + i)->irq;
3543 (res + r)->end = (oh->mpu_irqs + i)->irq;
Paul Walmsley63c85232009-09-03 20:14:03 +03003544 (res + r)->flags = IORESOURCE_IRQ;
3545 r++;
3546 }
3547
Paul Walmsleybc614952011-07-09 19:14:07 -06003548 sdma_reqs_cnt = _count_sdma_reqs(oh);
3549 for (i = 0; i < sdma_reqs_cnt; i++) {
Benoit Cousson9ee9fff2010-09-21 10:34:08 -06003550 (res + r)->name = (oh->sdma_reqs + i)->name;
3551 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3552 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
Paul Walmsley63c85232009-09-03 20:14:03 +03003553 (res + r)->flags = IORESOURCE_DMA;
3554 r++;
3555 }
3556
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003557 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003558
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003559 i = 0;
3560 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003561 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley78183f32011-07-09 19:14:05 -06003562 addr_cnt = _count_ocp_if_addr_spaces(os);
Paul Walmsley63c85232009-09-03 20:14:03 +03003563
Paul Walmsley78183f32011-07-09 19:14:05 -06003564 for (j = 0; j < addr_cnt; j++) {
Kishon Vijay Abraham Icd503802011-02-24 12:51:45 -08003565 (res + r)->name = (os->addr + j)->name;
Paul Walmsley63c85232009-09-03 20:14:03 +03003566 (res + r)->start = (os->addr + j)->pa_start;
3567 (res + r)->end = (os->addr + j)->pa_end;
3568 (res + r)->flags = IORESOURCE_MEM;
3569 r++;
3570 }
3571 }
3572
3573 return r;
3574}
3575
3576/**
Vaibhav Hiremathb82b04e2012-08-29 15:18:11 +05303577 * omap_hwmod_fill_dma_resources - fill struct resource array with dma data
3578 * @oh: struct omap_hwmod *
3579 * @res: pointer to the array of struct resource to fill
3580 *
3581 * Fill the struct resource array @res with dma resource data from the
3582 * omap_hwmod @oh. Intended to be called by code that registers
3583 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3584 * number of array elements filled.
3585 */
3586int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res)
3587{
3588 int i, sdma_reqs_cnt;
3589 int r = 0;
3590
3591 sdma_reqs_cnt = _count_sdma_reqs(oh);
3592 for (i = 0; i < sdma_reqs_cnt; i++) {
3593 (res + r)->name = (oh->sdma_reqs + i)->name;
3594 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3595 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3596 (res + r)->flags = IORESOURCE_DMA;
3597 r++;
3598 }
3599
3600 return r;
3601}
3602
3603/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003604 * omap_hwmod_get_resource_byname - fetch IP block integration data by name
3605 * @oh: struct omap_hwmod * to operate on
3606 * @type: one of the IORESOURCE_* constants from include/linux/ioport.h
3607 * @name: pointer to the name of the data to fetch (optional)
3608 * @rsrc: pointer to a struct resource, allocated by the caller
3609 *
3610 * Retrieve MPU IRQ, SDMA request line, or address space start/end
3611 * data for the IP block pointed to by @oh. The data will be filled
3612 * into a struct resource record pointed to by @rsrc. The struct
3613 * resource must be allocated by the caller. When @name is non-null,
3614 * the data associated with the matching entry in the IRQ/SDMA/address
3615 * space hwmod data arrays will be returned. If @name is null, the
3616 * first array entry will be returned. Data order is not meaningful
3617 * in hwmod data, so callers are strongly encouraged to use a non-null
3618 * @name whenever possible to avoid unpredictable effects if hwmod
3619 * data is later added that causes data ordering to change. This
3620 * function is only intended for use by OMAP core code. Device
3621 * drivers should not call this function - the appropriate bus-related
3622 * data accessor functions should be used instead. Returns 0 upon
3623 * success or a negative error code upon error.
3624 */
3625int omap_hwmod_get_resource_byname(struct omap_hwmod *oh, unsigned int type,
3626 const char *name, struct resource *rsrc)
3627{
3628 int r;
3629 unsigned int irq, dma;
3630 u32 pa_start, pa_end;
3631
3632 if (!oh || !rsrc)
3633 return -EINVAL;
3634
3635 if (type == IORESOURCE_IRQ) {
3636 r = _get_mpu_irq_by_name(oh, name, &irq);
3637 if (r)
3638 return r;
3639
3640 rsrc->start = irq;
3641 rsrc->end = irq;
3642 } else if (type == IORESOURCE_DMA) {
3643 r = _get_sdma_req_by_name(oh, name, &dma);
3644 if (r)
3645 return r;
3646
3647 rsrc->start = dma;
3648 rsrc->end = dma;
3649 } else if (type == IORESOURCE_MEM) {
3650 r = _get_addr_space_by_name(oh, name, &pa_start, &pa_end);
3651 if (r)
3652 return r;
3653
3654 rsrc->start = pa_start;
3655 rsrc->end = pa_end;
3656 } else {
3657 return -EINVAL;
3658 }
3659
3660 rsrc->flags = type;
3661 rsrc->name = name;
3662
3663 return 0;
3664}
3665
3666/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003667 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3668 * @oh: struct omap_hwmod *
3669 *
3670 * Return the powerdomain pointer associated with the OMAP module
3671 * @oh's main clock. If @oh does not have a main clk, return the
3672 * powerdomain associated with the interface clock associated with the
3673 * module's MPU port. (XXX Perhaps this should use the SDMA port
3674 * instead?) Returns NULL on error, or a struct powerdomain * on
3675 * success.
3676 */
3677struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3678{
3679 struct clk *c;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003680 struct omap_hwmod_ocp_if *oi;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003681 struct clockdomain *clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003682 struct clk_hw_omap *clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003683
3684 if (!oh)
3685 return NULL;
3686
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003687 if (oh->clkdm)
3688 return oh->clkdm->pwrdm.ptr;
3689
Paul Walmsley63c85232009-09-03 20:14:03 +03003690 if (oh->_clk) {
3691 c = oh->_clk;
3692 } else {
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003693 oi = _find_mpu_rt_port(oh);
3694 if (!oi)
Paul Walmsley63c85232009-09-03 20:14:03 +03003695 return NULL;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003696 c = oi->_clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003697 }
3698
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003699 clk = to_clk_hw_omap(__clk_get_hw(c));
3700 clkdm = clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003701 if (!clkdm)
Thara Gopinathd5647c12010-03-31 04:16:29 -06003702 return NULL;
3703
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003704 return clkdm->pwrdm.ptr;
Paul Walmsley63c85232009-09-03 20:14:03 +03003705}
3706
3707/**
Paul Walmsleydb2a60b2010-07-26 16:34:33 -06003708 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3709 * @oh: struct omap_hwmod *
3710 *
3711 * Returns the virtual address corresponding to the beginning of the
3712 * module's register target, in the address range that is intended to
3713 * be used by the MPU. Returns the virtual address upon success or NULL
3714 * upon error.
3715 */
3716void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3717{
3718 if (!oh)
3719 return NULL;
3720
3721 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3722 return NULL;
3723
3724 if (oh->_state == _HWMOD_STATE_UNKNOWN)
3725 return NULL;
3726
3727 return oh->_mpu_rt_va;
3728}
3729
3730/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003731 * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
3732 * @oh: struct omap_hwmod *
3733 * @init_oh: struct omap_hwmod * (initiator)
3734 *
3735 * Add a sleep dependency between the initiator @init_oh and @oh.
3736 * Intended to be called by DSP/Bridge code via platform_data for the
3737 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3738 * code needs to add/del initiator dependencies dynamically
3739 * before/after accessing a device. Returns the return value from
3740 * _add_initiator_dep().
3741 *
3742 * XXX Keep a usecount in the clockdomain code
3743 */
3744int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
3745 struct omap_hwmod *init_oh)
3746{
3747 return _add_initiator_dep(oh, init_oh);
3748}
3749
3750/*
3751 * XXX what about functions for drivers to save/restore ocp_sysconfig
3752 * for context save/restore operations?
3753 */
3754
3755/**
3756 * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
3757 * @oh: struct omap_hwmod *
3758 * @init_oh: struct omap_hwmod * (initiator)
3759 *
3760 * Remove a sleep dependency between the initiator @init_oh and @oh.
3761 * Intended to be called by DSP/Bridge code via platform_data for the
3762 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3763 * code needs to add/del initiator dependencies dynamically
3764 * before/after accessing a device. Returns the return value from
3765 * _del_initiator_dep().
3766 *
3767 * XXX Keep a usecount in the clockdomain code
3768 */
3769int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
3770 struct omap_hwmod *init_oh)
3771{
3772 return _del_initiator_dep(oh, init_oh);
3773}
3774
3775/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003776 * omap_hwmod_enable_wakeup - allow device to wake up the system
3777 * @oh: struct omap_hwmod *
3778 *
3779 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
Govindraj.R2a1cc142012-04-05 02:59:32 -06003780 * send wakeups to the PRCM, and enable I/O ring wakeup events for
3781 * this IP block if it has dynamic mux entries. Eventually this
3782 * should set PRCM wakeup registers to cause the PRCM to receive
3783 * wakeup events from the module. Does not set any wakeup routing
3784 * registers beyond this point - if the module is to wake up any other
3785 * module or subsystem, that must be set separately. Called by
3786 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003787 */
3788int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
3789{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003790 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003791 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003792
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003793 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003794
3795 if (oh->class->sysc &&
3796 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3797 v = oh->_sysc_cache;
3798 _enable_wakeup(oh, &v);
3799 _write_sysconfig(v, oh);
3800 }
3801
Govindraj Receec002011-12-16 14:36:58 -07003802 _set_idle_ioring_wakeup(oh, true);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003803 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003804
3805 return 0;
3806}
3807
3808/**
3809 * omap_hwmod_disable_wakeup - prevent device from waking the system
3810 * @oh: struct omap_hwmod *
3811 *
3812 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
Govindraj.R2a1cc142012-04-05 02:59:32 -06003813 * from sending wakeups to the PRCM, and disable I/O ring wakeup
3814 * events for this IP block if it has dynamic mux entries. Eventually
3815 * this should clear PRCM wakeup registers to cause the PRCM to ignore
3816 * wakeup events from the module. Does not set any wakeup routing
3817 * registers beyond this point - if the module is to wake up any other
3818 * module or subsystem, that must be set separately. Called by
3819 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003820 */
3821int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
3822{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003823 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003824 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003825
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003826 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003827
3828 if (oh->class->sysc &&
3829 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3830 v = oh->_sysc_cache;
3831 _disable_wakeup(oh, &v);
3832 _write_sysconfig(v, oh);
3833 }
3834
Govindraj Receec002011-12-16 14:36:58 -07003835 _set_idle_ioring_wakeup(oh, false);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003836 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003837
3838 return 0;
3839}
Paul Walmsley43b40992010-02-22 22:09:34 -07003840
3841/**
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003842 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3843 * contained in the hwmod module.
3844 * @oh: struct omap_hwmod *
3845 * @name: name of the reset line to lookup and assert
3846 *
3847 * Some IP like dsp, ipu or iva contain processor that require
3848 * an HW reset line to be assert / deassert in order to enable fully
3849 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3850 * yet supported on this OMAP; otherwise, passes along the return value
3851 * from _assert_hardreset().
3852 */
3853int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
3854{
3855 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003856 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003857
3858 if (!oh)
3859 return -EINVAL;
3860
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003861 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003862 ret = _assert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003863 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003864
3865 return ret;
3866}
3867
3868/**
3869 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3870 * contained in the hwmod module.
3871 * @oh: struct omap_hwmod *
3872 * @name: name of the reset line to look up and deassert
3873 *
3874 * Some IP like dsp, ipu or iva contain processor that require
3875 * an HW reset line to be assert / deassert in order to enable fully
3876 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3877 * yet supported on this OMAP; otherwise, passes along the return value
3878 * from _deassert_hardreset().
3879 */
3880int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
3881{
3882 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003883 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003884
3885 if (!oh)
3886 return -EINVAL;
3887
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003888 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003889 ret = _deassert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003890 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003891
3892 return ret;
3893}
3894
3895/**
3896 * omap_hwmod_read_hardreset - read the HW reset line state of submodules
3897 * contained in the hwmod module
3898 * @oh: struct omap_hwmod *
3899 * @name: name of the reset line to look up and read
3900 *
3901 * Return the current state of the hwmod @oh's reset line named @name:
3902 * returns -EINVAL upon parameter error or if this operation
3903 * is unsupported on the current OMAP; otherwise, passes along the return
3904 * value from _read_hardreset().
3905 */
3906int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
3907{
3908 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003909 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003910
3911 if (!oh)
3912 return -EINVAL;
3913
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003914 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003915 ret = _read_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003916 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003917
3918 return ret;
3919}
3920
3921
3922/**
Paul Walmsley43b40992010-02-22 22:09:34 -07003923 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
3924 * @classname: struct omap_hwmod_class name to search for
3925 * @fn: callback function pointer to call for each hwmod in class @classname
3926 * @user: arbitrary context data to pass to the callback function
3927 *
Benoit Coussonce35b242010-12-21 21:31:28 -07003928 * For each omap_hwmod of class @classname, call @fn.
3929 * If the callback function returns something other than
Paul Walmsley43b40992010-02-22 22:09:34 -07003930 * zero, the iterator is terminated, and the callback function's return
3931 * value is passed back to the caller. Returns 0 upon success, -EINVAL
3932 * if @classname or @fn are NULL, or passes back the error code from @fn.
3933 */
3934int omap_hwmod_for_each_by_class(const char *classname,
3935 int (*fn)(struct omap_hwmod *oh,
3936 void *user),
3937 void *user)
3938{
3939 struct omap_hwmod *temp_oh;
3940 int ret = 0;
3941
3942 if (!classname || !fn)
3943 return -EINVAL;
3944
3945 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
3946 __func__, classname);
3947
Paul Walmsley43b40992010-02-22 22:09:34 -07003948 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3949 if (!strcmp(temp_oh->class->name, classname)) {
3950 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
3951 __func__, temp_oh->name);
3952 ret = (*fn)(temp_oh, user);
3953 if (ret)
3954 break;
3955 }
3956 }
3957
Paul Walmsley43b40992010-02-22 22:09:34 -07003958 if (ret)
3959 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
3960 __func__, ret);
3961
3962 return ret;
3963}
3964
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003965/**
3966 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
3967 * @oh: struct omap_hwmod *
3968 * @state: state that _setup() should leave the hwmod in
3969 *
Paul Walmsley550c8092011-02-28 11:58:14 -07003970 * Sets the hwmod state that @oh will enter at the end of _setup()
Paul Walmsley64813c32012-04-18 19:10:03 -06003971 * (called by omap_hwmod_setup_*()). See also the documentation
3972 * for _setup_postsetup(), above. Returns 0 upon success or
3973 * -EINVAL if there is a problem with the arguments or if the hwmod is
3974 * in the wrong state.
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003975 */
3976int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
3977{
3978 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003979 unsigned long flags;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003980
3981 if (!oh)
3982 return -EINVAL;
3983
3984 if (state != _HWMOD_STATE_DISABLED &&
3985 state != _HWMOD_STATE_ENABLED &&
3986 state != _HWMOD_STATE_IDLE)
3987 return -EINVAL;
3988
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003989 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003990
3991 if (oh->_state != _HWMOD_STATE_REGISTERED) {
3992 ret = -EINVAL;
3993 goto ohsps_unlock;
3994 }
3995
3996 oh->_postsetup_state = state;
3997 ret = 0;
3998
3999ohsps_unlock:
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07004000 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07004001
4002 return ret;
4003}
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004004
4005/**
4006 * omap_hwmod_get_context_loss_count - get lost context count
4007 * @oh: struct omap_hwmod *
4008 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004009 * Returns the context loss count of associated @oh
4010 * upon success, or zero if no context loss data is available.
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004011 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004012 * On OMAP4, this queries the per-hwmod context loss register,
4013 * assuming one exists. If not, or on OMAP2/3, this queries the
4014 * enclosing powerdomain context loss count.
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004015 */
Tomi Valkeinenfc013872011-06-09 16:56:23 +03004016int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004017{
4018 struct powerdomain *pwrdm;
4019 int ret = 0;
4020
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004021 if (soc_ops.get_context_lost)
4022 return soc_ops.get_context_lost(oh);
4023
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004024 pwrdm = omap_hwmod_get_pwrdm(oh);
4025 if (pwrdm)
4026 ret = pwrdm_get_context_loss_count(pwrdm);
4027
4028 return ret;
4029}
Paul Walmsley43b01642011-03-10 03:50:07 -07004030
4031/**
4032 * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
4033 * @oh: struct omap_hwmod *
4034 *
4035 * Prevent the hwmod @oh from being reset during the setup process.
4036 * Intended for use by board-*.c files on boards with devices that
4037 * cannot tolerate being reset. Must be called before the hwmod has
4038 * been set up. Returns 0 upon success or negative error code upon
4039 * failure.
4040 */
4041int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
4042{
4043 if (!oh)
4044 return -EINVAL;
4045
4046 if (oh->_state != _HWMOD_STATE_REGISTERED) {
4047 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
4048 oh->name);
4049 return -EINVAL;
4050 }
4051
4052 oh->flags |= HWMOD_INIT_NO_RESET;
4053
4054 return 0;
4055}
Tero Kristoabc2d542011-12-16 14:36:59 -07004056
4057/**
4058 * omap_hwmod_pad_route_irq - route an I/O pad wakeup to a particular MPU IRQ
4059 * @oh: struct omap_hwmod * containing hwmod mux entries
4060 * @pad_idx: array index in oh->mux of the hwmod mux entry to route wakeup
4061 * @irq_idx: the hwmod mpu_irqs array index of the IRQ to trigger on wakeup
4062 *
4063 * When an I/O pad wakeup arrives for the dynamic or wakeup hwmod mux
4064 * entry number @pad_idx for the hwmod @oh, trigger the interrupt
4065 * service routine for the hwmod's mpu_irqs array index @irq_idx. If
4066 * this function is not called for a given pad_idx, then the ISR
4067 * associated with @oh's first MPU IRQ will be triggered when an I/O
4068 * pad wakeup occurs on that pad. Note that @pad_idx is the index of
4069 * the _dynamic or wakeup_ entry: if there are other entries not
4070 * marked with OMAP_DEVICE_PAD_WAKEUP or OMAP_DEVICE_PAD_REMUX, these
4071 * entries are NOT COUNTED in the dynamic pad index. This function
4072 * must be called separately for each pad that requires its interrupt
4073 * to be re-routed this way. Returns -EINVAL if there is an argument
4074 * problem or if @oh does not have hwmod mux entries or MPU IRQs;
4075 * returns -ENOMEM if memory cannot be allocated; or 0 upon success.
4076 *
4077 * XXX This function interface is fragile. Rather than using array
4078 * indexes, which are subject to unpredictable change, it should be
4079 * using hwmod IRQ names, and some other stable key for the hwmod mux
4080 * pad records.
4081 */
4082int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx)
4083{
4084 int nr_irqs;
4085
4086 might_sleep();
4087
4088 if (!oh || !oh->mux || !oh->mpu_irqs || pad_idx < 0 ||
4089 pad_idx >= oh->mux->nr_pads_dynamic)
4090 return -EINVAL;
4091
4092 /* Check the number of available mpu_irqs */
4093 for (nr_irqs = 0; oh->mpu_irqs[nr_irqs].irq >= 0; nr_irqs++)
4094 ;
4095
4096 if (irq_idx >= nr_irqs)
4097 return -EINVAL;
4098
4099 if (!oh->mux->irqs) {
4100 /* XXX What frees this? */
4101 oh->mux->irqs = kzalloc(sizeof(int) * oh->mux->nr_pads_dynamic,
4102 GFP_KERNEL);
4103 if (!oh->mux->irqs)
4104 return -ENOMEM;
4105 }
4106 oh->mux->irqs[pad_idx] = irq_idx;
4107
4108 return 0;
4109}
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004110
4111/**
4112 * omap_hwmod_init - initialize the hwmod code
4113 *
4114 * Sets up some function pointers needed by the hwmod code to operate on the
4115 * currently-booted SoC. Intended to be called once during kernel init
4116 * before any hwmods are registered. No return value.
4117 */
4118void __init omap_hwmod_init(void)
4119{
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06004120 if (cpu_is_omap24xx()) {
4121 soc_ops.wait_target_ready = _omap2xxx_wait_target_ready;
4122 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4123 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4124 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
4125 } else if (cpu_is_omap34xx()) {
4126 soc_ops.wait_target_ready = _omap3xxx_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06004127 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4128 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4129 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
R Sricharan05e152c2012-06-05 16:21:32 +05304130 } else if (cpu_is_omap44xx() || soc_is_omap54xx()) {
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004131 soc_ops.enable_module = _omap4_enable_module;
4132 soc_ops.disable_module = _omap4_disable_module;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004133 soc_ops.wait_target_ready = _omap4_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06004134 soc_ops.assert_hardreset = _omap4_assert_hardreset;
4135 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
4136 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
Kevin Hilman0a179ea2012-06-18 12:12:25 -06004137 soc_ops.init_clkdm = _init_clkdm;
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004138 soc_ops.update_context_lost = _omap4_update_context_lost;
4139 soc_ops.get_context_lost = _omap4_get_context_lost;
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06004140 } else if (soc_is_am33xx()) {
4141 soc_ops.enable_module = _am33xx_enable_module;
4142 soc_ops.disable_module = _am33xx_disable_module;
4143 soc_ops.wait_target_ready = _am33xx_wait_target_ready;
4144 soc_ops.assert_hardreset = _am33xx_assert_hardreset;
4145 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
4146 soc_ops.is_hardreset_asserted = _am33xx_is_hardreset_asserted;
4147 soc_ops.init_clkdm = _init_clkdm;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004148 } else {
4149 WARN(1, "omap_hwmod: unknown SoC type\n");
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004150 }
4151
4152 inited = true;
4153}
Tony Lindgren68c9a952012-07-06 00:58:43 -07004154
4155/**
4156 * omap_hwmod_get_main_clk - get pointer to main clock name
4157 * @oh: struct omap_hwmod *
4158 *
4159 * Returns the main clock name assocated with @oh upon success,
4160 * or NULL if @oh is NULL.
4161 */
4162const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
4163{
4164 if (!oh)
4165 return NULL;
4166
4167 return oh->main_clk;
4168}