blob: 139adca3bda1941621bcf89d7d38f8df98b35502 [file] [log] [blame]
Paul Walmsley63c85232009-09-03 20:14:03 +03001/*
2 * omap_hwmod implementation for OMAP2/3/4
3 *
Paul Walmsley550c8092011-02-28 11:58:14 -07004 * Copyright (C) 2009-2011 Nokia Corporation
Paul Walmsley30e105c2012-04-19 00:49:09 -06005 * Copyright (C) 2011-2012 Texas Instruments, Inc.
Paul Walmsley63c85232009-09-03 20:14:03 +03006 *
Paul Walmsley4788da22010-05-18 20:24:05 -06007 * Paul Walmsley, BenoƮt Cousson, Kevin Hilman
8 *
9 * Created in collaboration with (alphabetical order): Thara Gopinath,
10 * Tony Lindgren, Rajendra Nayak, Vikram Pandita, Sakari Poussa, Anand
11 * Sawant, Santosh Shilimkar, Richard Woodruff
Paul Walmsley63c85232009-09-03 20:14:03 +030012 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -060017 * Introduction
18 * ------------
19 * One way to view an OMAP SoC is as a collection of largely unrelated
20 * IP blocks connected by interconnects. The IP blocks include
21 * devices such as ARM processors, audio serial interfaces, UARTs,
22 * etc. Some of these devices, like the DSP, are created by TI;
23 * others, like the SGX, largely originate from external vendors. In
24 * TI's documentation, on-chip devices are referred to as "OMAP
25 * modules." Some of these IP blocks are identical across several
26 * OMAP versions. Others are revised frequently.
Paul Walmsley63c85232009-09-03 20:14:03 +030027 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -060028 * These OMAP modules are tied together by various interconnects.
29 * Most of the address and data flow between modules is via OCP-based
30 * interconnects such as the L3 and L4 buses; but there are other
31 * interconnects that distribute the hardware clock tree, handle idle
32 * and reset signaling, supply power, and connect the modules to
33 * various pads or balls on the OMAP package.
34 *
35 * OMAP hwmod provides a consistent way to describe the on-chip
36 * hardware blocks and their integration into the rest of the chip.
37 * This description can be automatically generated from the TI
38 * hardware database. OMAP hwmod provides a standard, consistent API
39 * to reset, enable, idle, and disable these hardware blocks. And
40 * hwmod provides a way for other core code, such as the Linux device
41 * code or the OMAP power management and address space mapping code,
42 * to query the hardware database.
43 *
44 * Using hwmod
45 * -----------
46 * Drivers won't call hwmod functions directly. That is done by the
47 * omap_device code, and in rare occasions, by custom integration code
48 * in arch/arm/ *omap*. The omap_device code includes functions to
49 * build a struct platform_device using omap_hwmod data, and that is
50 * currently how hwmod data is communicated to drivers and to the
51 * Linux driver model. Most drivers will call omap_hwmod functions only
52 * indirectly, via pm_runtime*() functions.
53 *
54 * From a layering perspective, here is where the OMAP hwmod code
55 * fits into the kernel software stack:
56 *
57 * +-------------------------------+
58 * | Device driver code |
59 * | (e.g., drivers/) |
60 * +-------------------------------+
61 * | Linux driver model |
62 * | (platform_device / |
63 * | platform_driver data/code) |
64 * +-------------------------------+
65 * | OMAP core-driver integration |
66 * |(arch/arm/mach-omap2/devices.c)|
67 * +-------------------------------+
68 * | omap_device code |
69 * | (../plat-omap/omap_device.c) |
70 * +-------------------------------+
71 * ----> | omap_hwmod code/data | <-----
72 * | (../mach-omap2/omap_hwmod*) |
73 * +-------------------------------+
74 * | OMAP clock/PRCM/register fns |
75 * | (__raw_{read,write}l, clk*) |
76 * +-------------------------------+
77 *
78 * Device drivers should not contain any OMAP-specific code or data in
79 * them. They should only contain code to operate the IP block that
80 * the driver is responsible for. This is because these IP blocks can
81 * also appear in other SoCs, either from TI (such as DaVinci) or from
82 * other manufacturers; and drivers should be reusable across other
83 * platforms.
84 *
85 * The OMAP hwmod code also will attempt to reset and idle all on-chip
86 * devices upon boot. The goal here is for the kernel to be
87 * completely self-reliant and independent from bootloaders. This is
88 * to ensure a repeatable configuration, both to ensure consistent
89 * runtime behavior, and to make it easier for others to reproduce
90 * bugs.
91 *
92 * OMAP module activity states
93 * ---------------------------
94 * The hwmod code considers modules to be in one of several activity
95 * states. IP blocks start out in an UNKNOWN state, then once they
96 * are registered via the hwmod code, proceed to the REGISTERED state.
97 * Once their clock names are resolved to clock pointers, the module
98 * enters the CLKS_INITED state; and finally, once the module has been
99 * reset and the integration registers programmed, the INITIALIZED state
100 * is entered. The hwmod code will then place the module into either
101 * the IDLE state to save power, or in the case of a critical system
102 * module, the ENABLED state.
103 *
104 * OMAP core integration code can then call omap_hwmod*() functions
105 * directly to move the module between the IDLE, ENABLED, and DISABLED
106 * states, as needed. This is done during both the PM idle loop, and
107 * in the OMAP core integration code's implementation of the PM runtime
108 * functions.
109 *
110 * References
111 * ----------
112 * This is a partial list.
Paul Walmsley63c85232009-09-03 20:14:03 +0300113 * - OMAP2420 Multimedia Processor Silicon Revision 2.1.1, 2.2 (SWPU064)
114 * - OMAP2430 Multimedia Device POP Silicon Revision 2.1 (SWPU090)
115 * - OMAP34xx Multimedia Device Silicon Revision 3.1 (SWPU108)
116 * - OMAP4430 Multimedia Device Silicon Revision 1.0 (SWPU140)
117 * - Open Core Protocol Specification 2.2
118 *
119 * To do:
Paul Walmsley63c85232009-09-03 20:14:03 +0300120 * - handle IO mapping
121 * - bus throughput & module latency measurement code
122 *
123 * XXX add tests at the beginning of each function to ensure the hwmod is
124 * in the appropriate state
125 * XXX error return values should be checked to ensure that they are
126 * appropriate
127 */
128#undef DEBUG
129
130#include <linux/kernel.h>
131#include <linux/errno.h>
132#include <linux/io.h>
133#include <linux/clk.h>
134#include <linux/delay.h>
135#include <linux/err.h>
136#include <linux/list.h>
137#include <linux/mutex.h>
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -0700138#include <linux/spinlock.h>
Tero Kristoabc2d542011-12-16 14:36:59 -0700139#include <linux/slab.h>
Paul 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);
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600190};
191
192/* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
193static struct omap_hwmod_soc_ops soc_ops;
194
Paul Walmsley63c85232009-09-03 20:14:03 +0300195/* omap_hwmod_list contains all registered struct omap_hwmods */
196static LIST_HEAD(omap_hwmod_list);
197
Paul Walmsley63c85232009-09-03 20:14:03 +0300198/* mpu_oh: used to add/remove MPU initiator from sleepdep list */
199static struct omap_hwmod *mpu_oh;
200
Vishwanath BS51658822012-06-22 08:40:04 -0600201/* io_chain_lock: used to serialize reconfigurations of the I/O chain */
202static DEFINE_SPINLOCK(io_chain_lock);
203
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600204/*
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600205 * linkspace: ptr to a buffer that struct omap_hwmod_link records are
206 * allocated from - used to reduce the number of small memory
207 * allocations, which has a significant impact on performance
208 */
209static struct omap_hwmod_link *linkspace;
210
211/*
212 * free_ls, max_ls: array indexes into linkspace; representing the
213 * next free struct omap_hwmod_link index, and the maximum number of
214 * struct omap_hwmod_link records allocated (respectively)
215 */
216static unsigned short free_ls, max_ls, ls_supp;
Paul Walmsley63c85232009-09-03 20:14:03 +0300217
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600218/* inited: set to true once the hwmod code is initialized */
219static bool inited;
220
Paul Walmsley63c85232009-09-03 20:14:03 +0300221/* Private functions */
222
223/**
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600224 * _fetch_next_ocp_if - return the next OCP interface in a list
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600225 * @p: ptr to a ptr to the list_head inside the ocp_if to return
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600226 * @i: pointer to the index of the element pointed to by @p in the list
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600227 *
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600228 * Return a pointer to the struct omap_hwmod_ocp_if record
229 * containing the struct list_head pointed to by @p, and increment
230 * @p such that a future call to this routine will return the next
231 * record.
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600232 */
233static struct omap_hwmod_ocp_if *_fetch_next_ocp_if(struct list_head **p,
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600234 int *i)
235{
236 struct omap_hwmod_ocp_if *oi;
237
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600238 oi = list_entry(*p, struct omap_hwmod_link, node)->ocp_if;
239 *p = (*p)->next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600240
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600241 *i = *i + 1;
242
243 return oi;
244}
245
246/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300247 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
248 * @oh: struct omap_hwmod *
249 *
250 * Load the current value of the hwmod OCP_SYSCONFIG register into the
251 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
252 * OCP_SYSCONFIG register or 0 upon success.
253 */
254static int _update_sysc_cache(struct omap_hwmod *oh)
255{
Paul Walmsley43b40992010-02-22 22:09:34 -0700256 if (!oh->class->sysc) {
257 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 +0300258 return -EINVAL;
259 }
260
261 /* XXX ensure module interface clock is up */
262
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -0700263 oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +0300264
Paul Walmsley43b40992010-02-22 22:09:34 -0700265 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
Thara Gopinath883edfd2010-01-19 17:30:51 -0700266 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
Paul Walmsley63c85232009-09-03 20:14:03 +0300267
268 return 0;
269}
270
271/**
272 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
273 * @v: OCP_SYSCONFIG value to write
274 * @oh: struct omap_hwmod *
275 *
Paul Walmsley43b40992010-02-22 22:09:34 -0700276 * Write @v into the module class' OCP_SYSCONFIG register, if it has
277 * one. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +0300278 */
279static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
280{
Paul Walmsley43b40992010-02-22 22:09:34 -0700281 if (!oh->class->sysc) {
282 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 +0300283 return;
284 }
285
286 /* XXX ensure module interface clock is up */
287
Rajendra Nayak233cbe52010-12-14 12:42:36 -0700288 /* Module might have lost context, always update cache and register */
289 oh->_sysc_cache = v;
290 omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +0300291}
292
293/**
294 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
295 * @oh: struct omap_hwmod *
296 * @standbymode: MIDLEMODE field bits
297 * @v: pointer to register contents to modify
298 *
299 * Update the master standby mode bits in @v to be @standbymode for
300 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
301 * upon error or 0 upon success.
302 */
303static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
304 u32 *v)
305{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700306 u32 mstandby_mask;
307 u8 mstandby_shift;
308
Paul Walmsley43b40992010-02-22 22:09:34 -0700309 if (!oh->class->sysc ||
310 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300311 return -EINVAL;
312
Paul Walmsley43b40992010-02-22 22:09:34 -0700313 if (!oh->class->sysc->sysc_fields) {
314 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700315 return -EINVAL;
316 }
317
Paul Walmsley43b40992010-02-22 22:09:34 -0700318 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700319 mstandby_mask = (0x3 << mstandby_shift);
320
321 *v &= ~mstandby_mask;
322 *v |= __ffs(standbymode) << mstandby_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300323
324 return 0;
325}
326
327/**
328 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
329 * @oh: struct omap_hwmod *
330 * @idlemode: SIDLEMODE field bits
331 * @v: pointer to register contents to modify
332 *
333 * Update the slave idle mode bits in @v to be @idlemode for the @oh
334 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
335 * or 0 upon success.
336 */
337static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
338{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700339 u32 sidle_mask;
340 u8 sidle_shift;
341
Paul Walmsley43b40992010-02-22 22:09:34 -0700342 if (!oh->class->sysc ||
343 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300344 return -EINVAL;
345
Paul Walmsley43b40992010-02-22 22:09:34 -0700346 if (!oh->class->sysc->sysc_fields) {
347 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700348 return -EINVAL;
349 }
350
Paul Walmsley43b40992010-02-22 22:09:34 -0700351 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700352 sidle_mask = (0x3 << sidle_shift);
353
354 *v &= ~sidle_mask;
355 *v |= __ffs(idlemode) << sidle_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300356
357 return 0;
358}
359
360/**
361 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
362 * @oh: struct omap_hwmod *
363 * @clockact: CLOCKACTIVITY field bits
364 * @v: pointer to register contents to modify
365 *
366 * Update the clockactivity mode bits in @v to be @clockact for the
367 * @oh hwmod. Used for additional powersaving on some modules. Does
368 * not write to the hardware. Returns -EINVAL upon error or 0 upon
369 * success.
370 */
371static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
372{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700373 u32 clkact_mask;
374 u8 clkact_shift;
375
Paul Walmsley43b40992010-02-22 22:09:34 -0700376 if (!oh->class->sysc ||
377 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
Paul Walmsley63c85232009-09-03 20:14:03 +0300378 return -EINVAL;
379
Paul Walmsley43b40992010-02-22 22:09:34 -0700380 if (!oh->class->sysc->sysc_fields) {
381 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700382 return -EINVAL;
383 }
384
Paul Walmsley43b40992010-02-22 22:09:34 -0700385 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700386 clkact_mask = (0x3 << clkact_shift);
387
388 *v &= ~clkact_mask;
389 *v |= clockact << clkact_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300390
391 return 0;
392}
393
394/**
395 * _set_softreset: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
396 * @oh: struct omap_hwmod *
397 * @v: pointer to register contents to modify
398 *
399 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
400 * error or 0 upon success.
401 */
402static int _set_softreset(struct omap_hwmod *oh, u32 *v)
403{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700404 u32 softrst_mask;
405
Paul Walmsley43b40992010-02-22 22:09:34 -0700406 if (!oh->class->sysc ||
407 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley63c85232009-09-03 20:14:03 +0300408 return -EINVAL;
409
Paul Walmsley43b40992010-02-22 22:09:34 -0700410 if (!oh->class->sysc->sysc_fields) {
411 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700412 return -EINVAL;
413 }
414
Paul Walmsley43b40992010-02-22 22:09:34 -0700415 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700416
417 *v |= softrst_mask;
Paul Walmsley63c85232009-09-03 20:14:03 +0300418
419 return 0;
420}
421
422/**
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -0600423 * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
424 * @oh: struct omap_hwmod *
425 *
426 * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
427 * of some modules. When the DMA must perform read/write accesses, the
428 * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
429 * for power management, software must set the DMADISABLE bit back to 1.
430 *
431 * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon
432 * error or 0 upon success.
433 */
434static int _set_dmadisable(struct omap_hwmod *oh)
435{
436 u32 v;
437 u32 dmadisable_mask;
438
439 if (!oh->class->sysc ||
440 !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
441 return -EINVAL;
442
443 if (!oh->class->sysc->sysc_fields) {
444 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
445 return -EINVAL;
446 }
447
448 /* clocks must be on for this operation */
449 if (oh->_state != _HWMOD_STATE_ENABLED) {
450 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
451 return -EINVAL;
452 }
453
454 pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
455
456 v = oh->_sysc_cache;
457 dmadisable_mask =
458 (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
459 v |= dmadisable_mask;
460 _write_sysconfig(v, oh);
461
462 return 0;
463}
464
465/**
Paul Walmsley726072e2009-12-08 16:34:15 -0700466 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
467 * @oh: struct omap_hwmod *
468 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
469 * @v: pointer to register contents to modify
470 *
471 * Update the module autoidle bit in @v to be @autoidle for the @oh
472 * hwmod. The autoidle bit controls whether the module can gate
473 * internal clocks automatically when it isn't doing anything; the
474 * exact function of this bit varies on a per-module basis. This
475 * function does not write to the hardware. Returns -EINVAL upon
476 * error or 0 upon success.
477 */
478static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
479 u32 *v)
480{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700481 u32 autoidle_mask;
482 u8 autoidle_shift;
483
Paul Walmsley43b40992010-02-22 22:09:34 -0700484 if (!oh->class->sysc ||
485 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
Paul Walmsley726072e2009-12-08 16:34:15 -0700486 return -EINVAL;
487
Paul Walmsley43b40992010-02-22 22:09:34 -0700488 if (!oh->class->sysc->sysc_fields) {
489 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700490 return -EINVAL;
491 }
492
Paul Walmsley43b40992010-02-22 22:09:34 -0700493 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
Tarun Kanti DebBarma8985b632011-03-03 14:22:46 -0700494 autoidle_mask = (0x1 << autoidle_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700495
496 *v &= ~autoidle_mask;
497 *v |= autoidle << autoidle_shift;
Paul Walmsley726072e2009-12-08 16:34:15 -0700498
499 return 0;
500}
501
502/**
Govindraj Receec002011-12-16 14:36:58 -0700503 * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux
504 * @oh: struct omap_hwmod *
505 * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable
506 *
507 * Set or clear the I/O pad wakeup flag in the mux entries for the
508 * hwmod @oh. This function changes the @oh->mux->pads_dynamic array
509 * in memory. If the hwmod is currently idled, and the new idle
510 * values don't match the previous ones, this function will also
511 * update the SCM PADCTRL registers. Otherwise, if the hwmod is not
512 * currently idled, this function won't touch the hardware: the new
513 * mux settings are written to the SCM PADCTRL registers when the
514 * hwmod is idled. No return value.
515 */
516static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake)
517{
518 struct omap_device_pad *pad;
519 bool change = false;
520 u16 prev_idle;
521 int j;
522
523 if (!oh->mux || !oh->mux->enabled)
524 return;
525
526 for (j = 0; j < oh->mux->nr_pads_dynamic; j++) {
527 pad = oh->mux->pads_dynamic[j];
528
529 if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP))
530 continue;
531
532 prev_idle = pad->idle;
533
534 if (set_wake)
535 pad->idle |= OMAP_WAKEUP_EN;
536 else
537 pad->idle &= ~OMAP_WAKEUP_EN;
538
539 if (prev_idle != pad->idle)
540 change = true;
541 }
542
543 if (change && oh->_state == _HWMOD_STATE_IDLE)
544 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
545}
546
547/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300548 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
549 * @oh: struct omap_hwmod *
550 *
551 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
552 * upon error or 0 upon success.
553 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700554static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300555{
Paul Walmsley43b40992010-02-22 22:09:34 -0700556 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700557 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200558 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
559 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300560 return -EINVAL;
561
Paul Walmsley43b40992010-02-22 22:09:34 -0700562 if (!oh->class->sysc->sysc_fields) {
563 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700564 return -EINVAL;
565 }
566
Benoit Cousson1fe74112011-07-01 22:54:03 +0200567 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
568 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300569
Benoit Cousson86009eb2010-12-21 21:31:28 -0700570 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
571 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200572 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
573 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700574
Paul Walmsley63c85232009-09-03 20:14:03 +0300575 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
576
577 oh->_int_flags |= _HWMOD_WAKEUP_ENABLED;
578
579 return 0;
580}
581
582/**
583 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
584 * @oh: struct omap_hwmod *
585 *
586 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
587 * upon error or 0 upon success.
588 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700589static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300590{
Paul Walmsley43b40992010-02-22 22:09:34 -0700591 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700592 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200593 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
594 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300595 return -EINVAL;
596
Paul Walmsley43b40992010-02-22 22:09:34 -0700597 if (!oh->class->sysc->sysc_fields) {
598 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700599 return -EINVAL;
600 }
601
Benoit Cousson1fe74112011-07-01 22:54:03 +0200602 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
603 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
Paul Walmsley63c85232009-09-03 20:14:03 +0300604
Benoit Cousson86009eb2010-12-21 21:31:28 -0700605 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
606 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200607 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
Djamil Elaidi561038f2012-06-17 11:57:51 -0600608 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700609
Paul Walmsley63c85232009-09-03 20:14:03 +0300610 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
611
612 oh->_int_flags &= ~_HWMOD_WAKEUP_ENABLED;
613
614 return 0;
615}
616
617/**
618 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
619 * @oh: struct omap_hwmod *
620 *
621 * Prevent the hardware module @oh from entering idle while the
622 * hardare module initiator @init_oh is active. Useful when a module
623 * will be accessed by a particular initiator (e.g., if a module will
624 * be accessed by the IVA, there should be a sleepdep between the IVA
625 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700626 * mode. If the clockdomain is marked as not needing autodeps, return
627 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
628 * passes along clkdm_add_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300629 */
630static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
631{
632 if (!oh->_clk)
633 return -EINVAL;
634
Paul Walmsley570b54c2011-03-10 03:50:09 -0700635 if (oh->_clk->clkdm && oh->_clk->clkdm->flags & CLKDM_NO_AUTODEPS)
636 return 0;
637
Paul Walmsley55ed9692010-01-26 20:12:59 -0700638 return clkdm_add_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300639}
640
641/**
642 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
643 * @oh: struct omap_hwmod *
644 *
645 * Allow the hardware module @oh to enter idle while the hardare
646 * module initiator @init_oh is active. Useful when a module will not
647 * be accessed by a particular initiator (e.g., if a module will not
648 * be accessed by the IVA, there should be no sleepdep between the IVA
649 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700650 * mode. If the clockdomain is marked as not needing autodeps, return
651 * 0 without doing anything. Returns -EINVAL upon error or passes
652 * along clkdm_del_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300653 */
654static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
655{
656 if (!oh->_clk)
657 return -EINVAL;
658
Paul Walmsley570b54c2011-03-10 03:50:09 -0700659 if (oh->_clk->clkdm && oh->_clk->clkdm->flags & CLKDM_NO_AUTODEPS)
660 return 0;
661
Paul Walmsley55ed9692010-01-26 20:12:59 -0700662 return clkdm_del_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300663}
664
665/**
666 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
667 * @oh: struct omap_hwmod *
668 *
669 * Called from _init_clocks(). Populates the @oh _clk (main
670 * functional clock pointer) if a main_clk is present. Returns 0 on
671 * success or -EINVAL on error.
672 */
673static int _init_main_clk(struct omap_hwmod *oh)
674{
Paul Walmsley63c85232009-09-03 20:14:03 +0300675 int ret = 0;
676
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700677 if (!oh->main_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300678 return 0;
679
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600680 oh->_clk = clk_get(NULL, oh->main_clk);
681 if (IS_ERR(oh->_clk)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600682 pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n",
683 oh->name, oh->main_clk);
Benoit Cousson63403382010-05-20 12:31:10 -0600684 return -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600685 }
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600686 /*
687 * HACK: This needs a re-visit once clk_prepare() is implemented
688 * to do something meaningful. Today its just a no-op.
689 * If clk_prepare() is used at some point to do things like
690 * voltage scaling etc, then this would have to be moved to
691 * some point where subsystems like i2c and pmic become
692 * available.
693 */
694 clk_prepare(oh->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300695
Benoit Cousson63403382010-05-20 12:31:10 -0600696 if (!oh->_clk->clkdm)
Paul Walmsley3bb05db2012-09-23 17:28:18 -0600697 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600698 oh->name, oh->main_clk);
Kevin Hilman81d7c6f2009-12-08 16:34:24 -0700699
Paul Walmsley63c85232009-09-03 20:14:03 +0300700 return ret;
701}
702
703/**
Paul Walmsley887adea2010-07-26 16:34:33 -0600704 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
Paul Walmsley63c85232009-09-03 20:14:03 +0300705 * @oh: struct omap_hwmod *
706 *
707 * Called from _init_clocks(). Populates the @oh OCP slave interface
708 * clock pointers. Returns 0 on success or -EINVAL on error.
709 */
710static int _init_interface_clks(struct omap_hwmod *oh)
711{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600712 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600713 struct list_head *p;
Paul Walmsley63c85232009-09-03 20:14:03 +0300714 struct clk *c;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600715 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300716 int ret = 0;
717
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600718 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600719
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600720 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600721 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700722 if (!os->clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300723 continue;
724
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600725 c = clk_get(NULL, os->clk);
726 if (IS_ERR(c)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600727 pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
728 oh->name, os->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300729 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600730 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300731 os->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600732 /*
733 * HACK: This needs a re-visit once clk_prepare() is implemented
734 * to do something meaningful. Today its just a no-op.
735 * If clk_prepare() is used at some point to do things like
736 * voltage scaling etc, then this would have to be moved to
737 * some point where subsystems like i2c and pmic become
738 * available.
739 */
740 clk_prepare(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300741 }
742
743 return ret;
744}
745
746/**
747 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
748 * @oh: struct omap_hwmod *
749 *
750 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
751 * clock pointers. Returns 0 on success or -EINVAL on error.
752 */
753static int _init_opt_clks(struct omap_hwmod *oh)
754{
755 struct omap_hwmod_opt_clk *oc;
756 struct clk *c;
757 int i;
758 int ret = 0;
759
760 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600761 c = clk_get(NULL, oc->clk);
762 if (IS_ERR(c)) {
Benoit Cousson20383d82010-05-20 12:31:09 -0600763 pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
764 oh->name, oc->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300765 ret = -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600766 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300767 oc->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600768 /*
769 * HACK: This needs a re-visit once clk_prepare() is implemented
770 * to do something meaningful. Today its just a no-op.
771 * If clk_prepare() is used at some point to do things like
772 * voltage scaling etc, then this would have to be moved to
773 * some point where subsystems like i2c and pmic become
774 * available.
775 */
776 clk_prepare(oc->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300777 }
778
779 return ret;
780}
781
782/**
783 * _enable_clocks - enable hwmod main clock and interface clocks
784 * @oh: struct omap_hwmod *
785 *
786 * Enables all clocks necessary for register reads and writes to succeed
787 * on the hwmod @oh. Returns 0.
788 */
789static int _enable_clocks(struct omap_hwmod *oh)
790{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600791 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600792 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600793 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300794
795 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
796
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600797 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300798 clk_enable(oh->_clk);
799
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600800 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600801
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600802 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600803 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300804
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600805 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
806 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300807 }
808
809 /* The opt clocks are controlled by the device driver. */
810
811 return 0;
812}
813
814/**
815 * _disable_clocks - disable hwmod main clock and interface clocks
816 * @oh: struct omap_hwmod *
817 *
818 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
819 */
820static int _disable_clocks(struct omap_hwmod *oh)
821{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600822 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600823 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600824 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300825
826 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
827
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600828 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300829 clk_disable(oh->_clk);
830
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600831 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600832
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600833 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600834 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300835
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600836 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
837 clk_disable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300838 }
839
840 /* The opt clocks are controlled by the device driver. */
841
842 return 0;
843}
844
Benoit Cousson96835af2010-09-21 18:57:58 +0200845static void _enable_optional_clocks(struct omap_hwmod *oh)
846{
847 struct omap_hwmod_opt_clk *oc;
848 int i;
849
850 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
851
852 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
853 if (oc->_clk) {
854 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600855 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200856 clk_enable(oc->_clk);
857 }
858}
859
860static void _disable_optional_clocks(struct omap_hwmod *oh)
861{
862 struct omap_hwmod_opt_clk *oc;
863 int i;
864
865 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
866
867 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
868 if (oc->_clk) {
869 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600870 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200871 clk_disable(oc->_clk);
872 }
873}
874
Paul Walmsley63c85232009-09-03 20:14:03 +0300875/**
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600876 * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
Benoit Cousson45c38252011-07-10 05:56:33 -0600877 * @oh: struct omap_hwmod *
878 *
879 * Enables the PRCM module mode related to the hwmod @oh.
880 * No return value.
881 */
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600882static void _omap4_enable_module(struct omap_hwmod *oh)
Benoit Cousson45c38252011-07-10 05:56:33 -0600883{
Benoit Cousson45c38252011-07-10 05:56:33 -0600884 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
885 return;
886
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600887 pr_debug("omap_hwmod: %s: %s: %d\n",
888 oh->name, __func__, oh->prcm.omap4.modulemode);
Benoit Cousson45c38252011-07-10 05:56:33 -0600889
890 omap4_cminst_module_enable(oh->prcm.omap4.modulemode,
891 oh->clkdm->prcm_partition,
892 oh->clkdm->cm_inst,
893 oh->clkdm->clkdm_offs,
894 oh->prcm.omap4.clkctrl_offs);
895}
896
897/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600898 * _am33xx_enable_module - enable CLKCTRL modulemode on AM33XX
899 * @oh: struct omap_hwmod *
900 *
901 * Enables the PRCM module mode related to the hwmod @oh.
902 * No return value.
903 */
904static void _am33xx_enable_module(struct omap_hwmod *oh)
905{
906 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
907 return;
908
909 pr_debug("omap_hwmod: %s: %s: %d\n",
910 oh->name, __func__, oh->prcm.omap4.modulemode);
911
912 am33xx_cm_module_enable(oh->prcm.omap4.modulemode, oh->clkdm->cm_inst,
913 oh->clkdm->clkdm_offs,
914 oh->prcm.omap4.clkctrl_offs);
915}
916
917/**
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800918 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
919 * @oh: struct omap_hwmod *
920 *
921 * Wait for a module @oh to enter slave idle. Returns 0 if the module
922 * does not have an IDLEST bit or if the module successfully enters
923 * slave idle; otherwise, pass along the return value of the
924 * appropriate *_cm*_wait_module_idle() function.
925 */
926static int _omap4_wait_target_disable(struct omap_hwmod *oh)
927{
Paul Walmsley2b026d12012-09-23 17:28:18 -0600928 if (!oh)
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800929 return -EINVAL;
930
Paul Walmsley2b026d12012-09-23 17:28:18 -0600931 if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
Benoit Coussonbfc141e2011-12-16 16:09:11 -0800932 return 0;
933
934 if (oh->flags & HWMOD_NO_IDLEST)
935 return 0;
936
937 return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition,
938 oh->clkdm->cm_inst,
939 oh->clkdm->clkdm_offs,
940 oh->prcm.omap4.clkctrl_offs);
941}
942
943/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600944 * _am33xx_wait_target_disable - wait for a module to be disabled on AM33XX
945 * @oh: struct omap_hwmod *
946 *
947 * Wait for a module @oh to enter slave idle. Returns 0 if the module
948 * does not have an IDLEST bit or if the module successfully enters
949 * slave idle; otherwise, pass along the return value of the
950 * appropriate *_cm*_wait_module_idle() function.
951 */
952static int _am33xx_wait_target_disable(struct omap_hwmod *oh)
953{
954 if (!oh)
955 return -EINVAL;
956
957 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
958 return 0;
959
960 if (oh->flags & HWMOD_NO_IDLEST)
961 return 0;
962
963 return am33xx_cm_wait_module_idle(oh->clkdm->cm_inst,
964 oh->clkdm->clkdm_offs,
965 oh->prcm.omap4.clkctrl_offs);
966}
967
968/**
Paul Walmsley212738a2011-07-09 19:14:06 -0600969 * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
970 * @oh: struct omap_hwmod *oh
971 *
972 * Count and return the number of MPU IRQs associated with the hwmod
973 * @oh. Used to allocate struct resource data. Returns 0 if @oh is
974 * NULL.
975 */
976static int _count_mpu_irqs(struct omap_hwmod *oh)
977{
978 struct omap_hwmod_irq_info *ohii;
979 int i = 0;
980
981 if (!oh || !oh->mpu_irqs)
982 return 0;
983
984 do {
985 ohii = &oh->mpu_irqs[i++];
986 } while (ohii->irq != -1);
987
sricharancc1b0762011-11-23 14:35:07 -0800988 return i-1;
Paul Walmsley212738a2011-07-09 19:14:06 -0600989}
990
991/**
Paul Walmsleybc614952011-07-09 19:14:07 -0600992 * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
993 * @oh: struct omap_hwmod *oh
994 *
995 * Count and return the number of SDMA request lines associated with
996 * the hwmod @oh. Used to allocate struct resource data. Returns 0
997 * if @oh is NULL.
998 */
999static int _count_sdma_reqs(struct omap_hwmod *oh)
1000{
1001 struct omap_hwmod_dma_info *ohdi;
1002 int i = 0;
1003
1004 if (!oh || !oh->sdma_reqs)
1005 return 0;
1006
1007 do {
1008 ohdi = &oh->sdma_reqs[i++];
1009 } while (ohdi->dma_req != -1);
1010
sricharancc1b0762011-11-23 14:35:07 -08001011 return i-1;
Paul Walmsleybc614952011-07-09 19:14:07 -06001012}
1013
1014/**
Paul Walmsley78183f32011-07-09 19:14:05 -06001015 * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
1016 * @oh: struct omap_hwmod *oh
1017 *
1018 * Count and return the number of address space ranges associated with
1019 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1020 * if @oh is NULL.
1021 */
1022static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
1023{
1024 struct omap_hwmod_addr_space *mem;
1025 int i = 0;
1026
1027 if (!os || !os->addr)
1028 return 0;
1029
1030 do {
1031 mem = &os->addr[i++];
1032 } while (mem->pa_start != mem->pa_end);
1033
sricharancc1b0762011-11-23 14:35:07 -08001034 return i-1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001035}
1036
1037/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001038 * _get_mpu_irq_by_name - fetch MPU interrupt line number by name
1039 * @oh: struct omap_hwmod * to operate on
1040 * @name: pointer to the name of the MPU interrupt number to fetch (optional)
1041 * @irq: pointer to an unsigned int to store the MPU IRQ number to
1042 *
1043 * Retrieve a MPU hardware IRQ line number named by @name associated
1044 * with the IP block pointed to by @oh. The IRQ number will be filled
1045 * into the address pointed to by @dma. When @name is non-null, the
1046 * IRQ line number associated with the named entry will be returned.
1047 * If @name is null, the first matching entry will be returned. Data
1048 * order is not meaningful in hwmod data, so callers are strongly
1049 * encouraged to use a non-null @name whenever possible to avoid
1050 * unpredictable effects if hwmod data is later added that causes data
1051 * ordering to change. Returns 0 upon success or a negative error
1052 * code upon error.
1053 */
1054static int _get_mpu_irq_by_name(struct omap_hwmod *oh, const char *name,
1055 unsigned int *irq)
1056{
1057 int i;
1058 bool found = false;
1059
1060 if (!oh->mpu_irqs)
1061 return -ENOENT;
1062
1063 i = 0;
1064 while (oh->mpu_irqs[i].irq != -1) {
1065 if (name == oh->mpu_irqs[i].name ||
1066 !strcmp(name, oh->mpu_irqs[i].name)) {
1067 found = true;
1068 break;
1069 }
1070 i++;
1071 }
1072
1073 if (!found)
1074 return -ENOENT;
1075
1076 *irq = oh->mpu_irqs[i].irq;
1077
1078 return 0;
1079}
1080
1081/**
1082 * _get_sdma_req_by_name - fetch SDMA request line ID by name
1083 * @oh: struct omap_hwmod * to operate on
1084 * @name: pointer to the name of the SDMA request line to fetch (optional)
1085 * @dma: pointer to an unsigned int to store the request line ID to
1086 *
1087 * Retrieve an SDMA request line ID named by @name on the IP block
1088 * pointed to by @oh. The ID will be filled into the address pointed
1089 * to by @dma. When @name is non-null, the request line ID associated
1090 * with the named entry will be returned. If @name is null, the first
1091 * matching entry will be returned. Data order is not meaningful in
1092 * hwmod data, so callers are strongly encouraged to use a non-null
1093 * @name whenever possible to avoid unpredictable effects if hwmod
1094 * data is later added that causes data ordering to change. Returns 0
1095 * upon success or a negative error code upon error.
1096 */
1097static int _get_sdma_req_by_name(struct omap_hwmod *oh, const char *name,
1098 unsigned int *dma)
1099{
1100 int i;
1101 bool found = false;
1102
1103 if (!oh->sdma_reqs)
1104 return -ENOENT;
1105
1106 i = 0;
1107 while (oh->sdma_reqs[i].dma_req != -1) {
1108 if (name == oh->sdma_reqs[i].name ||
1109 !strcmp(name, oh->sdma_reqs[i].name)) {
1110 found = true;
1111 break;
1112 }
1113 i++;
1114 }
1115
1116 if (!found)
1117 return -ENOENT;
1118
1119 *dma = oh->sdma_reqs[i].dma_req;
1120
1121 return 0;
1122}
1123
1124/**
1125 * _get_addr_space_by_name - fetch address space start & end by name
1126 * @oh: struct omap_hwmod * to operate on
1127 * @name: pointer to the name of the address space to fetch (optional)
1128 * @pa_start: pointer to a u32 to store the starting address to
1129 * @pa_end: pointer to a u32 to store the ending address to
1130 *
1131 * Retrieve address space start and end addresses for the IP block
1132 * pointed to by @oh. The data will be filled into the addresses
1133 * pointed to by @pa_start and @pa_end. When @name is non-null, the
1134 * address space data associated with the named entry will be
1135 * returned. If @name is null, the first matching entry will be
1136 * returned. Data order is not meaningful in hwmod data, so callers
1137 * are strongly encouraged to use a non-null @name whenever possible
1138 * to avoid unpredictable effects if hwmod data is later added that
1139 * causes data ordering to change. Returns 0 upon success or a
1140 * negative error code upon error.
1141 */
1142static int _get_addr_space_by_name(struct omap_hwmod *oh, const char *name,
1143 u32 *pa_start, u32 *pa_end)
1144{
1145 int i, j;
1146 struct omap_hwmod_ocp_if *os;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001147 struct list_head *p = NULL;
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001148 bool found = false;
1149
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001150 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001151
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001152 i = 0;
1153 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001154 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001155
1156 if (!os->addr)
1157 return -ENOENT;
1158
1159 j = 0;
1160 while (os->addr[j].pa_start != os->addr[j].pa_end) {
1161 if (name == os->addr[j].name ||
1162 !strcmp(name, os->addr[j].name)) {
1163 found = true;
1164 break;
1165 }
1166 j++;
1167 }
1168
1169 if (found)
1170 break;
1171 }
1172
1173 if (!found)
1174 return -ENOENT;
1175
1176 *pa_start = os->addr[j].pa_start;
1177 *pa_end = os->addr[j].pa_end;
1178
1179 return 0;
1180}
1181
1182/**
Paul Walmsley24dbc212012-04-19 04:04:29 -06001183 * _save_mpu_port_index - find and save the index to @oh's MPU port
Paul Walmsley63c85232009-09-03 20:14:03 +03001184 * @oh: struct omap_hwmod *
1185 *
Paul Walmsley24dbc212012-04-19 04:04:29 -06001186 * Determines the array index of the OCP slave port that the MPU uses
1187 * to address the device, and saves it into the struct omap_hwmod.
1188 * Intended to be called during hwmod registration only. No return
1189 * value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001190 */
Paul Walmsley24dbc212012-04-19 04:04:29 -06001191static void __init _save_mpu_port_index(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001192{
Paul Walmsley24dbc212012-04-19 04:04:29 -06001193 struct omap_hwmod_ocp_if *os = NULL;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001194 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001195 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001196
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001197 if (!oh)
Paul Walmsley24dbc212012-04-19 04:04:29 -06001198 return;
1199
1200 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001201
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001202 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001203
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001204 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001205 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +03001206 if (os->user & OCP_USER_MPU) {
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001207 oh->_mpu_port = os;
Paul Walmsley24dbc212012-04-19 04:04:29 -06001208 oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001209 break;
1210 }
1211 }
1212
Paul Walmsley24dbc212012-04-19 04:04:29 -06001213 return;
Paul Walmsley63c85232009-09-03 20:14:03 +03001214}
1215
1216/**
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001217 * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1218 * @oh: struct omap_hwmod *
1219 *
1220 * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1221 * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1222 * communicate with the IP block. This interface need not be directly
1223 * connected to the MPU (and almost certainly is not), but is directly
1224 * connected to the IP block represented by @oh. Returns a pointer
1225 * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1226 * error or if there does not appear to be a path from the MPU to this
1227 * IP block.
1228 */
1229static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1230{
1231 if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1232 return NULL;
1233
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001234 return oh->_mpu_port;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001235};
1236
1237/**
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001238 * _find_mpu_rt_addr_space - return MPU register target address space for @oh
Paul Walmsley63c85232009-09-03 20:14:03 +03001239 * @oh: struct omap_hwmod *
1240 *
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001241 * Returns a pointer to the struct omap_hwmod_addr_space record representing
1242 * the register target MPU address space; or returns NULL upon error.
Paul Walmsley63c85232009-09-03 20:14:03 +03001243 */
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001244static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001245{
1246 struct omap_hwmod_ocp_if *os;
1247 struct omap_hwmod_addr_space *mem;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001248 int found = 0, i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001249
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001250 os = _find_mpu_rt_port(oh);
Paul Walmsley24dbc212012-04-19 04:04:29 -06001251 if (!os || !os->addr)
Paul Walmsley78183f32011-07-09 19:14:05 -06001252 return NULL;
1253
1254 do {
1255 mem = &os->addr[i++];
1256 if (mem->flags & ADDR_TYPE_RT)
Paul Walmsley63c85232009-09-03 20:14:03 +03001257 found = 1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001258 } while (!found && mem->pa_start != mem->pa_end);
Paul Walmsley63c85232009-09-03 20:14:03 +03001259
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001260 return (found) ? mem : NULL;
Paul Walmsley63c85232009-09-03 20:14:03 +03001261}
1262
1263/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001264 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001265 * @oh: struct omap_hwmod *
1266 *
Paul Walmsley006c7f12012-07-04 05:22:53 -06001267 * Ensure that the OCP_SYSCONFIG register for the IP block represented
1268 * by @oh is set to indicate to the PRCM that the IP block is active.
1269 * Usually this means placing the module into smart-idle mode and
1270 * smart-standby, but if there is a bug in the automatic idle handling
1271 * for the IP block, it may need to be placed into the force-idle or
1272 * no-idle variants of these modes. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001273 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001274static void _enable_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001275{
Paul Walmsley43b40992010-02-22 22:09:34 -07001276 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001277 u32 v;
Paul Walmsley006c7f12012-07-04 05:22:53 -06001278 bool clkdm_act;
Paul Walmsley63c85232009-09-03 20:14:03 +03001279
Paul Walmsley43b40992010-02-22 22:09:34 -07001280 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001281 return;
1282
1283 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001284 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001285
Paul Walmsley43b40992010-02-22 22:09:34 -07001286 if (sf & SYSC_HAS_SIDLEMODE) {
Paul Walmsley006c7f12012-07-04 05:22:53 -06001287 clkdm_act = ((oh->clkdm &&
1288 oh->clkdm->flags & CLKDM_ACTIVE_WITH_MPU) ||
1289 (oh->_clk && oh->_clk->clkdm &&
1290 oh->_clk->clkdm->flags & CLKDM_ACTIVE_WITH_MPU));
1291 if (clkdm_act && !(oh->class->sysc->idlemodes &
1292 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1293 idlemode = HWMOD_IDLEMODE_FORCE;
1294 else
1295 idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ?
1296 HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART;
Paul Walmsley63c85232009-09-03 20:14:03 +03001297 _set_slave_idlemode(oh, idlemode, &v);
1298 }
1299
Paul Walmsley43b40992010-02-22 22:09:34 -07001300 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001301 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1302 idlemode = HWMOD_IDLEMODE_NO;
1303 } else {
1304 if (sf & SYSC_HAS_ENAWAKEUP)
1305 _enable_wakeup(oh, &v);
1306 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1307 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1308 else
1309 idlemode = HWMOD_IDLEMODE_SMART;
1310 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001311 _set_master_standbymode(oh, idlemode, &v);
1312 }
1313
Paul Walmsleya16b1f72009-12-08 16:34:17 -07001314 /*
1315 * XXX The clock framework should handle this, by
1316 * calling into this code. But this must wait until the
1317 * clock structures are tagged with omap_hwmod entries
1318 */
Paul Walmsley43b40992010-02-22 22:09:34 -07001319 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1320 (sf & SYSC_HAS_CLOCKACTIVITY))
1321 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001322
Rajendra Nayak9980ce52010-09-21 19:58:30 +05301323 /* If slave is in SMARTIDLE, also enable wakeup */
1324 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07001325 _enable_wakeup(oh, &v);
1326
1327 _write_sysconfig(v, oh);
Hema HK78f26e82010-09-24 10:23:19 -06001328
1329 /*
1330 * Set the autoidle bit only after setting the smartidle bit
1331 * Setting this will not have any impact on the other modules.
1332 */
1333 if (sf & SYSC_HAS_AUTOIDLE) {
1334 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1335 0 : 1;
1336 _set_module_autoidle(oh, idlemode, &v);
1337 _write_sysconfig(v, oh);
1338 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001339}
1340
1341/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001342 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001343 * @oh: struct omap_hwmod *
1344 *
1345 * If module is marked as SWSUP_SIDLE, force the module into slave
1346 * idle; otherwise, configure it for smart-idle. If module is marked
1347 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1348 * configure it for smart-standby. No return value.
1349 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001350static void _idle_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001351{
Paul Walmsley43b40992010-02-22 22:09:34 -07001352 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001353 u32 v;
1354
Paul Walmsley43b40992010-02-22 22:09:34 -07001355 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001356 return;
1357
1358 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001359 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001360
Paul Walmsley43b40992010-02-22 22:09:34 -07001361 if (sf & SYSC_HAS_SIDLEMODE) {
Paul Walmsley006c7f12012-07-04 05:22:53 -06001362 /* XXX What about HWMOD_IDLEMODE_SMART_WKUP? */
1363 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1364 !(oh->class->sysc->idlemodes &
1365 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1366 idlemode = HWMOD_IDLEMODE_FORCE;
1367 else
1368 idlemode = HWMOD_IDLEMODE_SMART;
Paul Walmsley63c85232009-09-03 20:14:03 +03001369 _set_slave_idlemode(oh, idlemode, &v);
1370 }
1371
Paul Walmsley43b40992010-02-22 22:09:34 -07001372 if (sf & SYSC_HAS_MIDLEMODE) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001373 if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
1374 idlemode = HWMOD_IDLEMODE_FORCE;
1375 } else {
1376 if (sf & SYSC_HAS_ENAWAKEUP)
1377 _enable_wakeup(oh, &v);
1378 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1379 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1380 else
1381 idlemode = HWMOD_IDLEMODE_SMART;
1382 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001383 _set_master_standbymode(oh, idlemode, &v);
1384 }
1385
Benoit Cousson86009eb2010-12-21 21:31:28 -07001386 /* If slave is in SMARTIDLE, also enable wakeup */
1387 if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE))
1388 _enable_wakeup(oh, &v);
1389
Paul Walmsley63c85232009-09-03 20:14:03 +03001390 _write_sysconfig(v, oh);
1391}
1392
1393/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001394 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001395 * @oh: struct omap_hwmod *
1396 *
1397 * Force the module into slave idle and master suspend. No return
1398 * value.
1399 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001400static void _shutdown_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001401{
1402 u32 v;
Paul Walmsley43b40992010-02-22 22:09:34 -07001403 u8 sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001404
Paul Walmsley43b40992010-02-22 22:09:34 -07001405 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001406 return;
1407
1408 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001409 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001410
Paul Walmsley43b40992010-02-22 22:09:34 -07001411 if (sf & SYSC_HAS_SIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001412 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1413
Paul Walmsley43b40992010-02-22 22:09:34 -07001414 if (sf & SYSC_HAS_MIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001415 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1416
Paul Walmsley43b40992010-02-22 22:09:34 -07001417 if (sf & SYSC_HAS_AUTOIDLE)
Paul Walmsley726072e2009-12-08 16:34:15 -07001418 _set_module_autoidle(oh, 1, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001419
1420 _write_sysconfig(v, oh);
1421}
1422
1423/**
1424 * _lookup - find an omap_hwmod by name
1425 * @name: find an omap_hwmod by name
1426 *
1427 * Return a pointer to an omap_hwmod by name, or NULL if not found.
Paul Walmsley63c85232009-09-03 20:14:03 +03001428 */
1429static struct omap_hwmod *_lookup(const char *name)
1430{
1431 struct omap_hwmod *oh, *temp_oh;
1432
1433 oh = NULL;
1434
1435 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1436 if (!strcmp(name, temp_oh->name)) {
1437 oh = temp_oh;
1438 break;
1439 }
1440 }
1441
1442 return oh;
1443}
Paul Walmsley868c1572012-06-19 15:01:02 -06001444
Benoit Cousson6ae76992011-07-10 05:56:30 -06001445/**
1446 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1447 * @oh: struct omap_hwmod *
1448 *
1449 * Convert a clockdomain name stored in a struct omap_hwmod into a
1450 * clockdomain pointer, and save it into the struct omap_hwmod.
Paul Walmsley868c1572012-06-19 15:01:02 -06001451 * Return -EINVAL if the clkdm_name lookup failed.
Benoit Cousson6ae76992011-07-10 05:56:30 -06001452 */
1453static int _init_clkdm(struct omap_hwmod *oh)
1454{
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001455 if (!oh->clkdm_name) {
1456 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
Benoit Cousson6ae76992011-07-10 05:56:30 -06001457 return 0;
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001458 }
Benoit Cousson6ae76992011-07-10 05:56:30 -06001459
Benoit Cousson6ae76992011-07-10 05:56:30 -06001460 oh->clkdm = clkdm_lookup(oh->clkdm_name);
1461 if (!oh->clkdm) {
1462 pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n",
1463 oh->name, oh->clkdm_name);
1464 return -EINVAL;
1465 }
1466
1467 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1468 oh->name, oh->clkdm_name);
1469
1470 return 0;
1471}
Paul Walmsley63c85232009-09-03 20:14:03 +03001472
1473/**
Benoit Cousson6ae76992011-07-10 05:56:30 -06001474 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1475 * well the clockdomain.
Paul Walmsley63c85232009-09-03 20:14:03 +03001476 * @oh: struct omap_hwmod *
Paul Walmsley97d60162010-07-26 16:34:30 -06001477 * @data: not used; pass NULL
Paul Walmsley63c85232009-09-03 20:14:03 +03001478 *
Paul Walmsleya2debdb2011-02-23 00:14:07 -07001479 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
Paul Walmsley48d54f32011-02-23 00:14:07 -07001480 * Resolves all clock names embedded in the hwmod. Returns 0 on
1481 * success, or a negative error code on failure.
Paul Walmsley63c85232009-09-03 20:14:03 +03001482 */
Paul Walmsley97d60162010-07-26 16:34:30 -06001483static int _init_clocks(struct omap_hwmod *oh, void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03001484{
1485 int ret = 0;
1486
Paul Walmsley48d54f32011-02-23 00:14:07 -07001487 if (oh->_state != _HWMOD_STATE_REGISTERED)
1488 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001489
1490 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1491
1492 ret |= _init_main_clk(oh);
1493 ret |= _init_interface_clks(oh);
1494 ret |= _init_opt_clks(oh);
Kevin Hilman0a179ea2012-06-18 12:12:25 -06001495 if (soc_ops.init_clkdm)
1496 ret |= soc_ops.init_clkdm(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03001497
Benoit Coussonf5c1f842010-05-20 12:31:10 -06001498 if (!ret)
1499 oh->_state = _HWMOD_STATE_CLKS_INITED;
Benoit Cousson66522712011-07-01 22:54:06 +02001500 else
1501 pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001502
Rajendra Nayak09c35f22011-02-16 12:11:24 +00001503 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001504}
1505
1506/**
omar ramirezcc1226e2011-03-04 13:32:44 -07001507 * _lookup_hardreset - fill register bit info for this hwmod/reset line
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001508 * @oh: struct omap_hwmod *
1509 * @name: name of the reset line in the context of this hwmod
omar ramirezcc1226e2011-03-04 13:32:44 -07001510 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001511 *
1512 * Return the bit position of the reset line that match the
1513 * input name. Return -ENOENT if not found.
1514 */
Paul Walmsleya032d332012-08-03 09:21:10 -06001515static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1516 struct omap_hwmod_rst_info *ohri)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001517{
1518 int i;
1519
1520 for (i = 0; i < oh->rst_lines_cnt; i++) {
1521 const char *rst_line = oh->rst_lines[i].name;
1522 if (!strcmp(rst_line, name)) {
omar ramirezcc1226e2011-03-04 13:32:44 -07001523 ohri->rst_shift = oh->rst_lines[i].rst_shift;
1524 ohri->st_shift = oh->rst_lines[i].st_shift;
1525 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1526 oh->name, __func__, rst_line, ohri->rst_shift,
1527 ohri->st_shift);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001528
omar ramirezcc1226e2011-03-04 13:32:44 -07001529 return 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001530 }
1531 }
1532
1533 return -ENOENT;
1534}
1535
1536/**
1537 * _assert_hardreset - assert the HW reset line of submodules
1538 * contained in the hwmod module.
1539 * @oh: struct omap_hwmod *
1540 * @name: name of the reset line to lookup and assert
1541 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001542 * Some IP like dsp, ipu or iva contain processor that require an HW
1543 * reset line to be assert / deassert in order to enable fully the IP.
1544 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1545 * asserting the hardreset line on the currently-booted SoC, or passes
1546 * along the return value from _lookup_hardreset() or the SoC's
1547 * assert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001548 */
1549static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1550{
omar ramirezcc1226e2011-03-04 13:32:44 -07001551 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001552 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001553
1554 if (!oh)
1555 return -EINVAL;
1556
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001557 if (!soc_ops.assert_hardreset)
1558 return -ENOSYS;
1559
omar ramirezcc1226e2011-03-04 13:32:44 -07001560 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001561 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001562 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001563
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001564 ret = soc_ops.assert_hardreset(oh, &ohri);
1565
1566 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001567}
1568
1569/**
1570 * _deassert_hardreset - deassert the HW reset line of submodules contained
1571 * in the hwmod module.
1572 * @oh: struct omap_hwmod *
1573 * @name: name of the reset line to look up and deassert
1574 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001575 * Some IP like dsp, ipu or iva contain processor that require an HW
1576 * reset line to be assert / deassert in order to enable fully the IP.
1577 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1578 * deasserting the hardreset line on the currently-booted SoC, or passes
1579 * along the return value from _lookup_hardreset() or the SoC's
1580 * deassert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001581 */
1582static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1583{
omar ramirezcc1226e2011-03-04 13:32:44 -07001584 struct omap_hwmod_rst_info ohri;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001585 int ret = -EINVAL;
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001586 int hwsup = 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001587
1588 if (!oh)
1589 return -EINVAL;
1590
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001591 if (!soc_ops.deassert_hardreset)
1592 return -ENOSYS;
1593
omar ramirezcc1226e2011-03-04 13:32:44 -07001594 ret = _lookup_hardreset(oh, name, &ohri);
1595 if (IS_ERR_VALUE(ret))
1596 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001597
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001598 if (oh->clkdm) {
1599 /*
1600 * A clockdomain must be in SW_SUP otherwise reset
1601 * might not be completed. The clockdomain can be set
1602 * in HW_AUTO only when the module become ready.
1603 */
1604 hwsup = clkdm_in_hwsup(oh->clkdm);
1605 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1606 if (ret) {
1607 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1608 oh->name, oh->clkdm->name, ret);
1609 return ret;
1610 }
1611 }
1612
1613 _enable_clocks(oh);
1614 if (soc_ops.enable_module)
1615 soc_ops.enable_module(oh);
1616
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001617 ret = soc_ops.deassert_hardreset(oh, &ohri);
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001618
1619 if (soc_ops.disable_module)
1620 soc_ops.disable_module(oh);
1621 _disable_clocks(oh);
1622
omar ramirezcc1226e2011-03-04 13:32:44 -07001623 if (ret == -EBUSY)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001624 pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name);
1625
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001626 if (!ret) {
1627 /*
1628 * Set the clockdomain to HW_AUTO, assuming that the
1629 * previous state was HW_AUTO.
1630 */
1631 if (oh->clkdm && hwsup)
1632 clkdm_allow_idle(oh->clkdm);
1633 } else {
1634 if (oh->clkdm)
1635 clkdm_hwmod_disable(oh->clkdm, oh);
1636 }
1637
omar ramirezcc1226e2011-03-04 13:32:44 -07001638 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001639}
1640
1641/**
1642 * _read_hardreset - read the HW reset line state of submodules
1643 * contained in the hwmod module
1644 * @oh: struct omap_hwmod *
1645 * @name: name of the reset line to look up and read
1646 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001647 * Return the state of the reset line. Returns -EINVAL if @oh is
1648 * null, -ENOSYS if we have no way of reading the hardreset line
1649 * status on the currently-booted SoC, or passes along the return
1650 * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1651 * code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001652 */
1653static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1654{
omar ramirezcc1226e2011-03-04 13:32:44 -07001655 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001656 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001657
1658 if (!oh)
1659 return -EINVAL;
1660
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001661 if (!soc_ops.is_hardreset_asserted)
1662 return -ENOSYS;
1663
omar ramirezcc1226e2011-03-04 13:32:44 -07001664 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001665 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001666 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001667
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001668 return soc_ops.is_hardreset_asserted(oh, &ohri);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001669}
1670
1671/**
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001672 * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
Paul Walmsley747834a2012-04-18 19:10:04 -06001673 * @oh: struct omap_hwmod *
1674 *
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001675 * If all hardreset lines associated with @oh are asserted, then return true.
1676 * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1677 * associated with @oh are asserted, then return false.
Paul Walmsley747834a2012-04-18 19:10:04 -06001678 * This function is used to avoid executing some parts of the IP block
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001679 * enable/disable sequence if its hardreset line is set.
Paul Walmsley747834a2012-04-18 19:10:04 -06001680 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001681static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
Paul Walmsley747834a2012-04-18 19:10:04 -06001682{
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001683 int i, rst_cnt = 0;
Paul Walmsley747834a2012-04-18 19:10:04 -06001684
1685 if (oh->rst_lines_cnt == 0)
1686 return false;
1687
1688 for (i = 0; i < oh->rst_lines_cnt; i++)
1689 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001690 rst_cnt++;
1691
1692 if (oh->rst_lines_cnt == rst_cnt)
1693 return true;
Paul Walmsley747834a2012-04-18 19:10:04 -06001694
1695 return false;
1696}
1697
1698/**
Paul Walmsleye9332b62012-10-08 23:08:15 -06001699 * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1700 * hard-reset
1701 * @oh: struct omap_hwmod *
1702 *
1703 * If any hardreset lines associated with @oh are asserted, then
1704 * return true. Otherwise, if no hardreset lines associated with @oh
1705 * are asserted, or if @oh has no hardreset lines, then return false.
1706 * This function is used to avoid executing some parts of the IP block
1707 * enable/disable sequence if any hardreset line is set.
1708 */
1709static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1710{
1711 int rst_cnt = 0;
1712 int i;
1713
1714 for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1715 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1716 rst_cnt++;
1717
1718 return (rst_cnt) ? true : false;
1719}
1720
1721/**
Paul Walmsley747834a2012-04-18 19:10:04 -06001722 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1723 * @oh: struct omap_hwmod *
1724 *
1725 * Disable the PRCM module mode related to the hwmod @oh.
1726 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1727 */
1728static int _omap4_disable_module(struct omap_hwmod *oh)
1729{
1730 int v;
1731
Paul Walmsley747834a2012-04-18 19:10:04 -06001732 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1733 return -EINVAL;
1734
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001735 /*
1736 * Since integration code might still be doing something, only
1737 * disable if all lines are under hardreset.
1738 */
Paul Walmsleye9332b62012-10-08 23:08:15 -06001739 if (_are_any_hardreset_lines_asserted(oh))
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001740 return 0;
1741
Paul Walmsley747834a2012-04-18 19:10:04 -06001742 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1743
1744 omap4_cminst_module_disable(oh->clkdm->prcm_partition,
1745 oh->clkdm->cm_inst,
1746 oh->clkdm->clkdm_offs,
1747 oh->prcm.omap4.clkctrl_offs);
1748
Paul Walmsley747834a2012-04-18 19:10:04 -06001749 v = _omap4_wait_target_disable(oh);
1750 if (v)
1751 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1752 oh->name);
1753
1754 return 0;
1755}
1756
1757/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001758 * _am33xx_disable_module - enable CLKCTRL modulemode on AM33XX
1759 * @oh: struct omap_hwmod *
1760 *
1761 * Disable the PRCM module mode related to the hwmod @oh.
1762 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1763 */
1764static int _am33xx_disable_module(struct omap_hwmod *oh)
1765{
1766 int v;
1767
1768 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1769 return -EINVAL;
1770
1771 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1772
Paul Walmsleye9332b62012-10-08 23:08:15 -06001773 if (_are_any_hardreset_lines_asserted(oh))
1774 return 0;
1775
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001776 am33xx_cm_module_disable(oh->clkdm->cm_inst, oh->clkdm->clkdm_offs,
1777 oh->prcm.omap4.clkctrl_offs);
1778
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001779 v = _am33xx_wait_target_disable(oh);
1780 if (v)
1781 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1782 oh->name);
1783
1784 return 0;
1785}
1786
1787/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001788 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
Paul Walmsley63c85232009-09-03 20:14:03 +03001789 * @oh: struct omap_hwmod *
1790 *
1791 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
Paul Walmsley30e105c2012-04-19 00:49:09 -06001792 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1793 * reset this way, -EINVAL if the hwmod is in the wrong state,
1794 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Benoit Cousson2cb06812010-09-21 18:57:59 +02001795 *
1796 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
Paul Walmsleybd361792010-12-14 12:42:35 -07001797 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
Benoit Cousson2cb06812010-09-21 18:57:59 +02001798 * use the SYSCONFIG softreset bit to provide the status.
1799 *
Paul Walmsleybd361792010-12-14 12:42:35 -07001800 * Note that some IP like McBSP do have reset control but don't have
1801 * reset status.
Paul Walmsley63c85232009-09-03 20:14:03 +03001802 */
Paul Walmsleybd361792010-12-14 12:42:35 -07001803static int _ocp_softreset(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001804{
Rajendra Nayak387ca5b2012-03-12 04:29:58 -06001805 u32 v, softrst_mask;
Paul Walmsley6f8b7ff2009-12-08 16:33:16 -07001806 int c = 0;
Benoit Cousson96835af2010-09-21 18:57:58 +02001807 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001808
Paul Walmsley43b40992010-02-22 22:09:34 -07001809 if (!oh->class->sysc ||
Benoit Cousson2cb06812010-09-21 18:57:59 +02001810 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley30e105c2012-04-19 00:49:09 -06001811 return -ENOENT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001812
1813 /* clocks must be on for this operation */
1814 if (oh->_state != _HWMOD_STATE_ENABLED) {
Paul Walmsley7852ec02012-07-26 00:54:26 -06001815 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1816 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001817 return -EINVAL;
1818 }
1819
Benoit Cousson96835af2010-09-21 18:57:58 +02001820 /* For some modules, all optionnal clocks need to be enabled as well */
1821 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1822 _enable_optional_clocks(oh);
1823
Paul Walmsleybd361792010-12-14 12:42:35 -07001824 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001825
1826 v = oh->_sysc_cache;
Benoit Cousson96835af2010-09-21 18:57:58 +02001827 ret = _set_softreset(oh, &v);
1828 if (ret)
1829 goto dis_opt_clks;
Paul Walmsley63c85232009-09-03 20:14:03 +03001830 _write_sysconfig(v, oh);
1831
Fernando Guzman Lugod99de7f2012-04-13 05:08:03 -06001832 if (oh->class->sysc->srst_udelay)
1833 udelay(oh->class->sysc->srst_udelay);
1834
Benoit Cousson2cb06812010-09-21 18:57:59 +02001835 if (oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07001836 omap_test_timeout((omap_hwmod_read(oh,
Benoit Cousson2cb06812010-09-21 18:57:59 +02001837 oh->class->sysc->syss_offs)
1838 & SYSS_RESETDONE_MASK),
1839 MAX_MODULE_SOFTRESET_WAIT, c);
Rajendra Nayak387ca5b2012-03-12 04:29:58 -06001840 else if (oh->class->sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
1841 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07001842 omap_test_timeout(!(omap_hwmod_read(oh,
Benoit Cousson2cb06812010-09-21 18:57:59 +02001843 oh->class->sysc->sysc_offs)
Rajendra Nayak387ca5b2012-03-12 04:29:58 -06001844 & softrst_mask),
Benoit Cousson2cb06812010-09-21 18:57:59 +02001845 MAX_MODULE_SOFTRESET_WAIT, c);
Rajendra Nayak387ca5b2012-03-12 04:29:58 -06001846 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001847
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001848 if (c == MAX_MODULE_SOFTRESET_WAIT)
Benoit Cousson76e55892010-09-21 10:34:11 -06001849 pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1850 oh->name, MAX_MODULE_SOFTRESET_WAIT);
Paul Walmsley63c85232009-09-03 20:14:03 +03001851 else
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001852 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
Paul Walmsley63c85232009-09-03 20:14:03 +03001853
1854 /*
1855 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1856 * _wait_target_ready() or _reset()
1857 */
1858
Benoit Cousson96835af2010-09-21 18:57:58 +02001859 ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0;
1860
1861dis_opt_clks:
1862 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1863 _disable_optional_clocks(oh);
1864
1865 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001866}
1867
1868/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001869 * _reset - reset an omap_hwmod
1870 * @oh: struct omap_hwmod *
1871 *
Paul Walmsley30e105c2012-04-19 00:49:09 -06001872 * Resets an omap_hwmod @oh. If the module has a custom reset
1873 * function pointer defined, then call it to reset the IP block, and
1874 * pass along its return value to the caller. Otherwise, if the IP
1875 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1876 * associated with it, call a function to reset the IP block via that
1877 * method, and pass along the return value to the caller. Finally, if
1878 * the IP block has some hardreset lines associated with it, assert
1879 * all of those, but do _not_ deassert them. (This is because driver
1880 * authors have expressed an apparent requirement to control the
1881 * deassertion of the hardreset lines themselves.)
1882 *
1883 * The default software reset mechanism for most OMAP IP blocks is
1884 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1885 * hwmods cannot be reset via this method. Some are not targets and
1886 * therefore have no OCP header registers to access. Others (like the
1887 * IVA) have idiosyncratic reset sequences. So for these relatively
1888 * rare cases, custom reset code can be supplied in the struct
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001889 * omap_hwmod_class .reset function pointer.
1890 *
1891 * _set_dmadisable() is called to set the DMADISABLE bit so that it
1892 * does not prevent idling of the system. This is necessary for cases
1893 * where ROMCODE/BOOTLOADER uses dma and transfers control to the
1894 * kernel without disabling dma.
1895 *
1896 * Passes along the return value from either _ocp_softreset() or the
1897 * custom reset function - these must return -EINVAL if the hwmod
1898 * cannot be reset this way or if the hwmod is in the wrong state,
1899 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Paul Walmsleybd361792010-12-14 12:42:35 -07001900 */
1901static int _reset(struct omap_hwmod *oh)
1902{
Paul Walmsley30e105c2012-04-19 00:49:09 -06001903 int i, r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001904
1905 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1906
Paul Walmsley30e105c2012-04-19 00:49:09 -06001907 if (oh->class->reset) {
1908 r = oh->class->reset(oh);
1909 } else {
1910 if (oh->rst_lines_cnt > 0) {
1911 for (i = 0; i < oh->rst_lines_cnt; i++)
1912 _assert_hardreset(oh, oh->rst_lines[i].name);
1913 return 0;
1914 } else {
1915 r = _ocp_softreset(oh);
1916 if (r == -ENOENT)
1917 r = 0;
1918 }
1919 }
Paul Walmsleybd361792010-12-14 12:42:35 -07001920
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001921 _set_dmadisable(oh);
1922
Paul Walmsley30e105c2012-04-19 00:49:09 -06001923 /*
1924 * OCP_SYSCONFIG bits need to be reprogrammed after a
1925 * softreset. The _enable() function should be split to avoid
1926 * the rewrite of the OCP_SYSCONFIG register.
1927 */
Rajendra Nayak28008522012-03-13 22:55:23 +05301928 if (oh->class->sysc) {
1929 _update_sysc_cache(oh);
1930 _enable_sysc(oh);
1931 }
1932
Paul Walmsley30e105c2012-04-19 00:49:09 -06001933 return r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001934}
1935
1936/**
Vishwanath BS51658822012-06-22 08:40:04 -06001937 * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain
1938 *
1939 * Call the appropriate PRM function to clear any logged I/O chain
1940 * wakeups and to reconfigure the chain. This apparently needs to be
1941 * done upon every mux change. Since hwmods can be concurrently
1942 * enabled and idled, hold a spinlock around the I/O chain
1943 * reconfiguration sequence. No return value.
1944 *
1945 * XXX When the PRM code is moved to drivers, this function can be removed,
1946 * as the PRM infrastructure should abstract this.
1947 */
1948static void _reconfigure_io_chain(void)
1949{
1950 unsigned long flags;
1951
1952 spin_lock_irqsave(&io_chain_lock, flags);
1953
1954 if (cpu_is_omap34xx() && omap3_has_io_chain_ctrl())
1955 omap3xxx_prm_reconfigure_io_chain();
1956 else if (cpu_is_omap44xx())
1957 omap44xx_prm_reconfigure_io_chain();
1958
1959 spin_unlock_irqrestore(&io_chain_lock, flags);
1960}
1961
1962/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001963 * _enable - enable an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03001964 * @oh: struct omap_hwmod *
1965 *
1966 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001967 * register target. Returns -EINVAL if the hwmod is in the wrong
1968 * state or passes along the return value of _wait_target_ready().
Paul Walmsley63c85232009-09-03 20:14:03 +03001969 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001970static int _enable(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001971{
Paul Walmsley747834a2012-04-18 19:10:04 -06001972 int r;
Rajendra Nayak665d0012011-07-10 05:57:07 -06001973 int hwsup = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001974
Benoit Cousson34617e22011-07-01 22:54:07 +02001975 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
1976
Rajendra Nayakaacf0942011-12-16 05:50:12 -07001977 /*
Paul Walmsley64813c32012-04-18 19:10:03 -06001978 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
1979 * state at init. Now that someone is really trying to enable
1980 * them, just ensure that the hwmod mux is set.
Rajendra Nayakaacf0942011-12-16 05:50:12 -07001981 */
1982 if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
1983 /*
1984 * If the caller has mux data populated, do the mux'ing
1985 * which wouldn't have been done as part of the _enable()
1986 * done during setup.
1987 */
1988 if (oh->mux)
1989 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
1990
1991 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
1992 return 0;
1993 }
1994
Paul Walmsley63c85232009-09-03 20:14:03 +03001995 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
1996 oh->_state != _HWMOD_STATE_IDLE &&
1997 oh->_state != _HWMOD_STATE_DISABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00001998 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
1999 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002000 return -EINVAL;
2001 }
2002
Benoit Cousson31f62862011-07-01 22:54:05 +02002003 /*
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002004 * If an IP block contains HW reset lines and all of them are
Paul Walmsley747834a2012-04-18 19:10:04 -06002005 * asserted, we let integration code associated with that
2006 * block handle the enable. We've received very little
2007 * information on what those driver authors need, and until
2008 * detailed information is provided and the driver code is
2009 * posted to the public lists, this is probably the best we
2010 * can do.
Benoit Cousson31f62862011-07-01 22:54:05 +02002011 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002012 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002013 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002014
Rajendra Nayak665d0012011-07-10 05:57:07 -06002015 /* Mux pins for device runtime if populated */
2016 if (oh->mux && (!oh->mux->enabled ||
2017 ((oh->_state == _HWMOD_STATE_IDLE) &&
Vishwanath BS51658822012-06-22 08:40:04 -06002018 oh->mux->pads_dynamic))) {
Rajendra Nayak665d0012011-07-10 05:57:07 -06002019 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
Vishwanath BS51658822012-06-22 08:40:04 -06002020 _reconfigure_io_chain();
2021 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002022
Rajendra Nayak665d0012011-07-10 05:57:07 -06002023 _add_initiator_dep(oh, mpu_oh);
2024
2025 if (oh->clkdm) {
2026 /*
2027 * A clockdomain must be in SW_SUP before enabling
2028 * completely the module. The clockdomain can be set
2029 * in HW_AUTO only when the module become ready.
2030 */
Paul Walmsleyb71c7212012-09-23 17:28:28 -06002031 hwsup = clkdm_in_hwsup(oh->clkdm) &&
2032 !clkdm_missing_idle_reporting(oh->clkdm);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002033 r = clkdm_hwmod_enable(oh->clkdm, oh);
2034 if (r) {
2035 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
2036 oh->name, oh->clkdm->name, r);
2037 return r;
2038 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002039 }
Rajendra Nayak665d0012011-07-10 05:57:07 -06002040
2041 _enable_clocks(oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002042 if (soc_ops.enable_module)
2043 soc_ops.enable_module(oh);
Benoit Cousson34617e22011-07-01 22:54:07 +02002044
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002045 r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
2046 -EINVAL;
Rajendra Nayak665d0012011-07-10 05:57:07 -06002047 if (!r) {
2048 /*
2049 * Set the clockdomain to HW_AUTO only if the target is ready,
2050 * assuming that the previous state was HW_AUTO
2051 */
2052 if (oh->clkdm && hwsup)
2053 clkdm_allow_idle(oh->clkdm);
Benoit Cousson34617e22011-07-01 22:54:07 +02002054
Rajendra Nayak665d0012011-07-10 05:57:07 -06002055 oh->_state = _HWMOD_STATE_ENABLED;
2056
2057 /* Access the sysconfig only if the target is ready */
2058 if (oh->class->sysc) {
2059 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
2060 _update_sysc_cache(oh);
2061 _enable_sysc(oh);
2062 }
2063 } else {
Paul Walmsley2577a4a2012-10-29 20:57:55 -06002064 if (soc_ops.disable_module)
2065 soc_ops.disable_module(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002066 _disable_clocks(oh);
2067 pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n",
2068 oh->name, r);
2069
2070 if (oh->clkdm)
2071 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002072 }
2073
Paul Walmsley63c85232009-09-03 20:14:03 +03002074 return r;
2075}
2076
2077/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002078 * _idle - idle an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002079 * @oh: struct omap_hwmod *
2080 *
2081 * Idles an omap_hwmod @oh. This should be called once the hwmod has
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002082 * no further work. Returns -EINVAL if the hwmod is in the wrong
2083 * state or returns 0.
Paul Walmsley63c85232009-09-03 20:14:03 +03002084 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002085static int _idle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002086{
Benoit Cousson34617e22011-07-01 22:54:07 +02002087 pr_debug("omap_hwmod: %s: idling\n", oh->name);
2088
Paul Walmsley63c85232009-09-03 20:14:03 +03002089 if (oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002090 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2091 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002092 return -EINVAL;
2093 }
2094
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002095 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002096 return 0;
2097
Paul Walmsley43b40992010-02-22 22:09:34 -07002098 if (oh->class->sysc)
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002099 _idle_sysc(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002100 _del_initiator_dep(oh, mpu_oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002101
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002102 if (soc_ops.disable_module)
2103 soc_ops.disable_module(oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002104
Benoit Cousson45c38252011-07-10 05:56:33 -06002105 /*
2106 * The module must be in idle mode before disabling any parents
2107 * clocks. Otherwise, the parent clock might be disabled before
2108 * the module transition is done, and thus will prevent the
2109 * transition to complete properly.
2110 */
2111 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002112 if (oh->clkdm)
2113 clkdm_hwmod_disable(oh->clkdm, oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002114
Tony Lindgren8d9af882010-12-22 18:42:35 -08002115 /* Mux pins for device idle if populated */
Vishwanath BS51658822012-06-22 08:40:04 -06002116 if (oh->mux && oh->mux->pads_dynamic) {
Tony Lindgren8d9af882010-12-22 18:42:35 -08002117 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
Vishwanath BS51658822012-06-22 08:40:04 -06002118 _reconfigure_io_chain();
2119 }
Tony Lindgren8d9af882010-12-22 18:42:35 -08002120
Paul Walmsley63c85232009-09-03 20:14:03 +03002121 oh->_state = _HWMOD_STATE_IDLE;
2122
2123 return 0;
2124}
2125
2126/**
Kishon Vijay Abraham I95992172011-03-10 03:50:08 -07002127 * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit
2128 * @oh: struct omap_hwmod *
2129 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
2130 *
2131 * Sets the IP block's OCP autoidle bit in hardware, and updates our
2132 * local copy. Intended to be used by drivers that require
2133 * direct manipulation of the AUTOIDLE bits.
2134 * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes
2135 * along the return value from _set_module_autoidle().
2136 *
2137 * Any users of this function should be scrutinized carefully.
2138 */
2139int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle)
2140{
2141 u32 v;
2142 int retval = 0;
2143 unsigned long flags;
2144
2145 if (!oh || oh->_state != _HWMOD_STATE_ENABLED)
2146 return -EINVAL;
2147
2148 spin_lock_irqsave(&oh->_lock, flags);
2149
2150 v = oh->_sysc_cache;
2151
2152 retval = _set_module_autoidle(oh, autoidle, &v);
2153
2154 if (!retval)
2155 _write_sysconfig(v, oh);
2156
2157 spin_unlock_irqrestore(&oh->_lock, flags);
2158
2159 return retval;
2160}
2161
2162/**
Paul Walmsley63c85232009-09-03 20:14:03 +03002163 * _shutdown - shutdown an omap_hwmod
2164 * @oh: struct omap_hwmod *
2165 *
2166 * Shut down an omap_hwmod @oh. This should be called when the driver
2167 * used for the hwmod is removed or unloaded or if the driver is not
2168 * used by the system. Returns -EINVAL if the hwmod is in the wrong
2169 * state or returns 0.
2170 */
2171static int _shutdown(struct omap_hwmod *oh)
2172{
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002173 int ret, i;
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002174 u8 prev_state;
2175
Paul Walmsley63c85232009-09-03 20:14:03 +03002176 if (oh->_state != _HWMOD_STATE_IDLE &&
2177 oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002178 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2179 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002180 return -EINVAL;
2181 }
2182
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002183 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002184 return 0;
2185
Paul Walmsley63c85232009-09-03 20:14:03 +03002186 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2187
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002188 if (oh->class->pre_shutdown) {
2189 prev_state = oh->_state;
2190 if (oh->_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002191 _enable(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002192 ret = oh->class->pre_shutdown(oh);
2193 if (ret) {
2194 if (prev_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002195 _idle(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002196 return ret;
2197 }
2198 }
2199
Miguel Vadillo6481c732011-07-01 22:54:02 +02002200 if (oh->class->sysc) {
2201 if (oh->_state == _HWMOD_STATE_IDLE)
2202 _enable(oh);
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002203 _shutdown_sysc(oh);
Miguel Vadillo6481c732011-07-01 22:54:02 +02002204 }
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06002205
Benoit Cousson3827f942010-09-21 10:34:08 -06002206 /* clocks and deps are already disabled in idle */
2207 if (oh->_state == _HWMOD_STATE_ENABLED) {
2208 _del_initiator_dep(oh, mpu_oh);
2209 /* XXX what about the other system initiators here? dma, dsp */
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002210 if (soc_ops.disable_module)
2211 soc_ops.disable_module(oh);
Benoit Cousson45c38252011-07-10 05:56:33 -06002212 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002213 if (oh->clkdm)
2214 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson3827f942010-09-21 10:34:08 -06002215 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002216 /* XXX Should this code also force-disable the optional clocks? */
2217
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002218 for (i = 0; i < oh->rst_lines_cnt; i++)
2219 _assert_hardreset(oh, oh->rst_lines[i].name);
Benoit Cousson31f62862011-07-01 22:54:05 +02002220
Tony Lindgren8d9af882010-12-22 18:42:35 -08002221 /* Mux pins to safe mode or use populated off mode values */
2222 if (oh->mux)
2223 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
Paul Walmsley63c85232009-09-03 20:14:03 +03002224
2225 oh->_state = _HWMOD_STATE_DISABLED;
2226
2227 return 0;
2228}
2229
2230/**
Paul Walmsley381d0332012-04-19 00:58:22 -06002231 * _init_mpu_rt_base - populate the virtual address for a hwmod
2232 * @oh: struct omap_hwmod * to locate the virtual address
2233 *
2234 * Cache the virtual address used by the MPU to access this IP block's
2235 * registers. This address is needed early so the OCP registers that
2236 * are part of the device's address space can be ioremapped properly.
2237 * No return value.
2238 */
2239static void __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data)
2240{
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002241 struct omap_hwmod_addr_space *mem;
2242 void __iomem *va_start;
2243
2244 if (!oh)
2245 return;
2246
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002247 _save_mpu_port_index(oh);
2248
Paul Walmsley381d0332012-04-19 00:58:22 -06002249 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
2250 return;
2251
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002252 mem = _find_mpu_rt_addr_space(oh);
2253 if (!mem) {
2254 pr_debug("omap_hwmod: %s: no MPU register target found\n",
2255 oh->name);
2256 return;
2257 }
2258
2259 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
2260 if (!va_start) {
2261 pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
2262 return;
2263 }
2264
2265 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2266 oh->name, va_start);
2267
2268 oh->_mpu_rt_va = va_start;
Paul Walmsley381d0332012-04-19 00:58:22 -06002269}
2270
2271/**
2272 * _init - initialize internal data for the hwmod @oh
2273 * @oh: struct omap_hwmod *
2274 * @n: (unused)
2275 *
2276 * Look up the clocks and the address space used by the MPU to access
2277 * registers belonging to the hwmod @oh. @oh must already be
2278 * registered at this point. This is the first of two phases for
2279 * hwmod initialization. Code called here does not touch any hardware
2280 * registers, it simply prepares internal data structures. Returns 0
2281 * upon success or if the hwmod isn't registered, or -EINVAL upon
2282 * failure.
2283 */
2284static int __init _init(struct omap_hwmod *oh, void *data)
2285{
2286 int r;
2287
2288 if (oh->_state != _HWMOD_STATE_REGISTERED)
2289 return 0;
2290
2291 _init_mpu_rt_base(oh, NULL);
2292
2293 r = _init_clocks(oh, NULL);
2294 if (IS_ERR_VALUE(r)) {
2295 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2296 return -EINVAL;
2297 }
2298
2299 oh->_state = _HWMOD_STATE_INITIALIZED;
2300
2301 return 0;
2302}
2303
2304/**
Paul Walmsley64813c32012-04-18 19:10:03 -06002305 * _setup_iclk_autoidle - configure an IP block's interface clocks
Paul Walmsley63c85232009-09-03 20:14:03 +03002306 * @oh: struct omap_hwmod *
2307 *
Paul Walmsley64813c32012-04-18 19:10:03 -06002308 * Set up the module's interface clocks. XXX This function is still mostly
2309 * a stub; implementing this properly requires iclk autoidle usecounting in
2310 * the clock code. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03002311 */
Paul Walmsley64813c32012-04-18 19:10:03 -06002312static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002313{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002314 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002315 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002316 int i = 0;
Paul Walmsley381d0332012-04-19 00:58:22 -06002317 if (oh->_state != _HWMOD_STATE_INITIALIZED)
Paul Walmsley64813c32012-04-18 19:10:03 -06002318 return;
Paul Walmsley48d54f32011-02-23 00:14:07 -07002319
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002320 p = oh->slave_ports.next;
Paul Walmsley63c85232009-09-03 20:14:03 +03002321
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002322 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002323 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002324 if (!os->_clk)
Paul Walmsley64813c32012-04-18 19:10:03 -06002325 continue;
Paul Walmsley63c85232009-09-03 20:14:03 +03002326
Paul Walmsley64813c32012-04-18 19:10:03 -06002327 if (os->flags & OCPIF_SWSUP_IDLE) {
2328 /* XXX omap_iclk_deny_idle(c); */
2329 } else {
2330 /* XXX omap_iclk_allow_idle(c); */
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002331 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +03002332 }
2333 }
2334
Paul Walmsley64813c32012-04-18 19:10:03 -06002335 return;
2336}
2337
2338/**
2339 * _setup_reset - reset an IP block during the setup process
2340 * @oh: struct omap_hwmod *
2341 *
2342 * Reset the IP block corresponding to the hwmod @oh during the setup
2343 * process. The IP block is first enabled so it can be successfully
2344 * reset. Returns 0 upon success or a negative error code upon
2345 * failure.
2346 */
2347static int __init _setup_reset(struct omap_hwmod *oh)
2348{
2349 int r;
2350
2351 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2352 return -EINVAL;
Paul Walmsley63c85232009-09-03 20:14:03 +03002353
Paul Walmsley747834a2012-04-18 19:10:04 -06002354 if (oh->rst_lines_cnt == 0) {
2355 r = _enable(oh);
2356 if (r) {
2357 pr_warning("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2358 oh->name, oh->_state);
2359 return -EINVAL;
2360 }
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002361 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002362
Rajendra Nayak28008522012-03-13 22:55:23 +05302363 if (!(oh->flags & HWMOD_INIT_NO_RESET))
Paul Walmsley64813c32012-04-18 19:10:03 -06002364 r = _reset(oh);
2365
2366 return r;
2367}
2368
2369/**
2370 * _setup_postsetup - transition to the appropriate state after _setup
2371 * @oh: struct omap_hwmod *
2372 *
2373 * Place an IP block represented by @oh into a "post-setup" state --
2374 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
2375 * this function is called at the end of _setup().) The postsetup
2376 * state for an IP block can be changed by calling
2377 * omap_hwmod_enter_postsetup_state() early in the boot process,
2378 * before one of the omap_hwmod_setup*() functions are called for the
2379 * IP block.
2380 *
2381 * The IP block stays in this state until a PM runtime-based driver is
2382 * loaded for that IP block. A post-setup state of IDLE is
2383 * appropriate for almost all IP blocks with runtime PM-enabled
2384 * drivers, since those drivers are able to enable the IP block. A
2385 * post-setup state of ENABLED is appropriate for kernels with PM
2386 * runtime disabled. The DISABLED state is appropriate for unusual IP
2387 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2388 * included, since the WDTIMER starts running on reset and will reset
2389 * the MPU if left active.
2390 *
2391 * This post-setup mechanism is deprecated. Once all of the OMAP
2392 * drivers have been converted to use PM runtime, and all of the IP
2393 * block data and interconnect data is available to the hwmod code, it
2394 * should be possible to replace this mechanism with a "lazy reset"
2395 * arrangement. In a "lazy reset" setup, each IP block is enabled
2396 * when the driver first probes, then all remaining IP blocks without
2397 * drivers are either shut down or enabled after the drivers have
2398 * loaded. However, this cannot take place until the above
2399 * preconditions have been met, since otherwise the late reset code
2400 * has no way of knowing which IP blocks are in use by drivers, and
2401 * which ones are unused.
2402 *
2403 * No return value.
2404 */
2405static void __init _setup_postsetup(struct omap_hwmod *oh)
2406{
2407 u8 postsetup_state;
2408
2409 if (oh->rst_lines_cnt > 0)
2410 return;
Benoit Cousson76e55892010-09-21 10:34:11 -06002411
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002412 postsetup_state = oh->_postsetup_state;
2413 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2414 postsetup_state = _HWMOD_STATE_ENABLED;
2415
2416 /*
2417 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2418 * it should be set by the core code as a runtime flag during startup
2419 */
2420 if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002421 (postsetup_state == _HWMOD_STATE_IDLE)) {
2422 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002423 postsetup_state = _HWMOD_STATE_ENABLED;
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002424 }
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002425
2426 if (postsetup_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002427 _idle(oh);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002428 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2429 _shutdown(oh);
2430 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2431 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2432 oh->name, postsetup_state);
Paul Walmsley63c85232009-09-03 20:14:03 +03002433
Paul Walmsley64813c32012-04-18 19:10:03 -06002434 return;
2435}
2436
2437/**
2438 * _setup - prepare IP block hardware for use
2439 * @oh: struct omap_hwmod *
2440 * @n: (unused, pass NULL)
2441 *
2442 * Configure the IP block represented by @oh. This may include
2443 * enabling the IP block, resetting it, and placing it into a
2444 * post-setup state, depending on the type of IP block and applicable
2445 * flags. IP blocks are reset to prevent any previous configuration
2446 * by the bootloader or previous operating system from interfering
2447 * with power management or other parts of the system. The reset can
2448 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2449 * two phases for hwmod initialization. Code called here generally
2450 * affects the IP block hardware, or system integration hardware
2451 * associated with the IP block. Returns 0.
2452 */
2453static int __init _setup(struct omap_hwmod *oh, void *data)
2454{
2455 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2456 return 0;
2457
2458 _setup_iclk_autoidle(oh);
2459
2460 if (!_setup_reset(oh))
2461 _setup_postsetup(oh);
2462
Paul Walmsley63c85232009-09-03 20:14:03 +03002463 return 0;
2464}
2465
Benoit Cousson0102b622010-12-21 21:31:27 -07002466/**
2467 * _register - register a struct omap_hwmod
2468 * @oh: struct omap_hwmod *
2469 *
2470 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2471 * already has been registered by the same name; -EINVAL if the
2472 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2473 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2474 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2475 * success.
2476 *
2477 * XXX The data should be copied into bootmem, so the original data
2478 * should be marked __initdata and freed after init. This would allow
2479 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2480 * that the copy process would be relatively complex due to the large number
2481 * of substructures.
2482 */
Benoit Cousson01592df92010-12-21 21:31:28 -07002483static int __init _register(struct omap_hwmod *oh)
Benoit Cousson0102b622010-12-21 21:31:27 -07002484{
Benoit Cousson0102b622010-12-21 21:31:27 -07002485 if (!oh || !oh->name || !oh->class || !oh->class->name ||
2486 (oh->_state != _HWMOD_STATE_UNKNOWN))
2487 return -EINVAL;
2488
Benoit Cousson0102b622010-12-21 21:31:27 -07002489 pr_debug("omap_hwmod: %s: registering\n", oh->name);
2490
Benoit Coussonce35b242010-12-21 21:31:28 -07002491 if (_lookup(oh->name))
2492 return -EEXIST;
Benoit Cousson0102b622010-12-21 21:31:27 -07002493
Benoit Cousson0102b622010-12-21 21:31:27 -07002494 list_add_tail(&oh->node, &omap_hwmod_list);
2495
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002496 INIT_LIST_HEAD(&oh->master_ports);
2497 INIT_LIST_HEAD(&oh->slave_ports);
Benoit Cousson0102b622010-12-21 21:31:27 -07002498 spin_lock_init(&oh->_lock);
2499
2500 oh->_state = _HWMOD_STATE_REGISTERED;
2501
Paul Walmsley569edd702011-02-23 00:14:06 -07002502 /*
2503 * XXX Rather than doing a strcmp(), this should test a flag
2504 * set in the hwmod data, inserted by the autogenerator code.
2505 */
2506 if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2507 mpu_oh = oh;
Benoit Cousson0102b622010-12-21 21:31:27 -07002508
Paul Walmsley569edd702011-02-23 00:14:06 -07002509 return 0;
Benoit Cousson0102b622010-12-21 21:31:27 -07002510}
Paul Walmsley63c85232009-09-03 20:14:03 +03002511
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002512/**
2513 * _alloc_links - return allocated memory for hwmod links
2514 * @ml: pointer to a struct omap_hwmod_link * for the master link
2515 * @sl: pointer to a struct omap_hwmod_link * for the slave link
2516 *
2517 * Return pointers to two struct omap_hwmod_link records, via the
2518 * addresses pointed to by @ml and @sl. Will first attempt to return
2519 * memory allocated as part of a large initial block, but if that has
2520 * been exhausted, will allocate memory itself. Since ideally this
2521 * second allocation path will never occur, the number of these
2522 * 'supplemental' allocations will be logged when debugging is
2523 * enabled. Returns 0.
2524 */
2525static int __init _alloc_links(struct omap_hwmod_link **ml,
2526 struct omap_hwmod_link **sl)
2527{
2528 unsigned int sz;
2529
2530 if ((free_ls + LINKS_PER_OCP_IF) <= max_ls) {
2531 *ml = &linkspace[free_ls++];
2532 *sl = &linkspace[free_ls++];
2533 return 0;
2534 }
2535
2536 sz = sizeof(struct omap_hwmod_link) * LINKS_PER_OCP_IF;
2537
2538 *sl = NULL;
2539 *ml = alloc_bootmem(sz);
2540
2541 memset(*ml, 0, sz);
2542
2543 *sl = (void *)(*ml) + sizeof(struct omap_hwmod_link);
2544
2545 ls_supp++;
2546 pr_debug("omap_hwmod: supplemental link allocations needed: %d\n",
2547 ls_supp * LINKS_PER_OCP_IF);
2548
2549 return 0;
2550};
2551
2552/**
2553 * _add_link - add an interconnect between two IP blocks
2554 * @oi: pointer to a struct omap_hwmod_ocp_if record
2555 *
2556 * Add struct omap_hwmod_link records connecting the master IP block
2557 * specified in @oi->master to @oi, and connecting the slave IP block
2558 * specified in @oi->slave to @oi. This code is assumed to run before
2559 * preemption or SMP has been enabled, thus avoiding the need for
2560 * locking in this code. Changes to this assumption will require
2561 * additional locking. Returns 0.
2562 */
2563static int __init _add_link(struct omap_hwmod_ocp_if *oi)
2564{
2565 struct omap_hwmod_link *ml, *sl;
2566
2567 pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2568 oi->slave->name);
2569
2570 _alloc_links(&ml, &sl);
2571
2572 ml->ocp_if = oi;
2573 INIT_LIST_HEAD(&ml->node);
2574 list_add(&ml->node, &oi->master->master_ports);
2575 oi->master->masters_cnt++;
2576
2577 sl->ocp_if = oi;
2578 INIT_LIST_HEAD(&sl->node);
2579 list_add(&sl->node, &oi->slave->slave_ports);
2580 oi->slave->slaves_cnt++;
2581
2582 return 0;
2583}
2584
2585/**
2586 * _register_link - register a struct omap_hwmod_ocp_if
2587 * @oi: struct omap_hwmod_ocp_if *
2588 *
2589 * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
2590 * has already been registered; -EINVAL if @oi is NULL or if the
2591 * record pointed to by @oi is missing required fields; 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.
2597 */
2598static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2599{
2600 if (!oi || !oi->master || !oi->slave || !oi->user)
2601 return -EINVAL;
2602
2603 if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2604 return -EEXIST;
2605
2606 pr_debug("omap_hwmod: registering link from %s to %s\n",
2607 oi->master->name, oi->slave->name);
2608
2609 /*
2610 * Register the connected hwmods, if they haven't been
2611 * registered already
2612 */
2613 if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2614 _register(oi->master);
2615
2616 if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2617 _register(oi->slave);
2618
2619 _add_link(oi);
2620
2621 oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2622
2623 return 0;
2624}
2625
2626/**
2627 * _alloc_linkspace - allocate large block of hwmod links
2628 * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count
2629 *
2630 * Allocate a large block of struct omap_hwmod_link records. This
2631 * improves boot time significantly by avoiding the need to allocate
2632 * individual records one by one. If the number of records to
2633 * allocate in the block hasn't been manually specified, this function
2634 * will count the number of struct omap_hwmod_ocp_if records in @ois
2635 * and use that to determine the allocation size. For SoC families
2636 * that require multiple list registrations, such as OMAP3xxx, this
2637 * estimation process isn't optimal, so manual estimation is advised
2638 * in those cases. Returns -EEXIST if the allocation has already occurred
2639 * or 0 upon success.
2640 */
2641static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois)
2642{
2643 unsigned int i = 0;
2644 unsigned int sz;
2645
2646 if (linkspace) {
2647 WARN(1, "linkspace already allocated\n");
2648 return -EEXIST;
2649 }
2650
2651 if (max_ls == 0)
2652 while (ois[i++])
2653 max_ls += LINKS_PER_OCP_IF;
2654
2655 sz = sizeof(struct omap_hwmod_link) * max_ls;
2656
2657 pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n",
2658 __func__, sz, max_ls);
2659
2660 linkspace = alloc_bootmem(sz);
2661
2662 memset(linkspace, 0, sz);
2663
2664 return 0;
2665}
Paul Walmsley63c85232009-09-03 20:14:03 +03002666
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002667/* Static functions intended only for use in soc_ops field function pointers */
2668
2669/**
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002670 * _omap2xxx_wait_target_ready - wait for a module to leave slave idle
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002671 * @oh: struct omap_hwmod *
2672 *
2673 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2674 * does not have an IDLEST bit or if the module successfully leaves
2675 * slave idle; otherwise, pass along the return value of the
2676 * appropriate *_cm*_wait_module_ready() function.
2677 */
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002678static int _omap2xxx_wait_target_ready(struct omap_hwmod *oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002679{
2680 if (!oh)
2681 return -EINVAL;
2682
2683 if (oh->flags & HWMOD_NO_IDLEST)
2684 return 0;
2685
2686 if (!_find_mpu_rt_port(oh))
2687 return 0;
2688
2689 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2690
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06002691 return omap2xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2692 oh->prcm.omap2.idlest_reg_id,
2693 oh->prcm.omap2.idlest_idle_bit);
2694}
2695
2696/**
2697 * _omap3xxx_wait_target_ready - wait for a module to leave slave idle
2698 * @oh: struct omap_hwmod *
2699 *
2700 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2701 * does not have an IDLEST bit or if the module successfully leaves
2702 * slave idle; otherwise, pass along the return value of the
2703 * appropriate *_cm*_wait_module_ready() function.
2704 */
2705static int _omap3xxx_wait_target_ready(struct omap_hwmod *oh)
2706{
2707 if (!oh)
2708 return -EINVAL;
2709
2710 if (oh->flags & HWMOD_NO_IDLEST)
2711 return 0;
2712
2713 if (!_find_mpu_rt_port(oh))
2714 return 0;
2715
2716 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2717
2718 return omap3xxx_cm_wait_module_ready(oh->prcm.omap2.module_offs,
2719 oh->prcm.omap2.idlest_reg_id,
2720 oh->prcm.omap2.idlest_idle_bit);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002721}
2722
2723/**
2724 * _omap4_wait_target_ready - wait for a module to leave slave idle
2725 * @oh: struct omap_hwmod *
2726 *
2727 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2728 * does not have an IDLEST bit or if the module successfully leaves
2729 * slave idle; otherwise, pass along the return value of the
2730 * appropriate *_cm*_wait_module_ready() function.
2731 */
2732static int _omap4_wait_target_ready(struct omap_hwmod *oh)
2733{
Paul Walmsley2b026d12012-09-23 17:28:18 -06002734 if (!oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002735 return -EINVAL;
2736
Paul Walmsley2b026d12012-09-23 17:28:18 -06002737 if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002738 return 0;
2739
2740 if (!_find_mpu_rt_port(oh))
2741 return 0;
2742
2743 /* XXX check module SIDLEMODE, hardreset status */
2744
2745 return omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition,
2746 oh->clkdm->cm_inst,
2747 oh->clkdm->clkdm_offs,
2748 oh->prcm.omap4.clkctrl_offs);
2749}
2750
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002751/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002752 * _am33xx_wait_target_ready - wait for a module to leave slave idle
2753 * @oh: struct omap_hwmod *
2754 *
2755 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2756 * does not have an IDLEST bit or if the module successfully leaves
2757 * slave idle; otherwise, pass along the return value of the
2758 * appropriate *_cm*_wait_module_ready() function.
2759 */
2760static int _am33xx_wait_target_ready(struct omap_hwmod *oh)
2761{
2762 if (!oh || !oh->clkdm)
2763 return -EINVAL;
2764
2765 if (oh->flags & HWMOD_NO_IDLEST)
2766 return 0;
2767
2768 if (!_find_mpu_rt_port(oh))
2769 return 0;
2770
2771 /* XXX check module SIDLEMODE, hardreset status */
2772
2773 return am33xx_cm_wait_module_ready(oh->clkdm->cm_inst,
2774 oh->clkdm->clkdm_offs,
2775 oh->prcm.omap4.clkctrl_offs);
2776}
2777
2778/**
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002779 * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2780 * @oh: struct omap_hwmod * to assert hardreset
2781 * @ohri: hardreset line data
2782 *
2783 * Call omap2_prm_assert_hardreset() with parameters extracted from
2784 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2785 * use as an soc_ops function pointer. Passes along the return value
2786 * from omap2_prm_assert_hardreset(). XXX This function is scheduled
2787 * for removal when the PRM code is moved into drivers/.
2788 */
2789static int _omap2_assert_hardreset(struct omap_hwmod *oh,
2790 struct omap_hwmod_rst_info *ohri)
2791{
2792 return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs,
2793 ohri->rst_shift);
2794}
2795
2796/**
2797 * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2798 * @oh: struct omap_hwmod * to deassert hardreset
2799 * @ohri: hardreset line data
2800 *
2801 * Call omap2_prm_deassert_hardreset() with parameters extracted from
2802 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2803 * use as an soc_ops function pointer. Passes along the return value
2804 * from omap2_prm_deassert_hardreset(). XXX This function is
2805 * scheduled for removal when the PRM code is moved into drivers/.
2806 */
2807static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
2808 struct omap_hwmod_rst_info *ohri)
2809{
2810 return omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs,
2811 ohri->rst_shift,
2812 ohri->st_shift);
2813}
2814
2815/**
2816 * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
2817 * @oh: struct omap_hwmod * to test hardreset
2818 * @ohri: hardreset line data
2819 *
2820 * Call omap2_prm_is_hardreset_asserted() with parameters extracted
2821 * from the hwmod @oh and the hardreset line data @ohri. Only
2822 * intended for use as an soc_ops function pointer. Passes along the
2823 * return value from omap2_prm_is_hardreset_asserted(). XXX This
2824 * function is scheduled for removal when the PRM code is moved into
2825 * drivers/.
2826 */
2827static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
2828 struct omap_hwmod_rst_info *ohri)
2829{
2830 return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs,
2831 ohri->st_shift);
2832}
2833
2834/**
2835 * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2836 * @oh: struct omap_hwmod * to assert hardreset
2837 * @ohri: hardreset line data
2838 *
2839 * Call omap4_prminst_assert_hardreset() with parameters extracted
2840 * from the hwmod @oh and the hardreset line data @ohri. Only
2841 * intended for use as an soc_ops function pointer. Passes along the
2842 * return value from omap4_prminst_assert_hardreset(). XXX This
2843 * function is scheduled for removal when the PRM code is moved into
2844 * drivers/.
2845 */
2846static int _omap4_assert_hardreset(struct omap_hwmod *oh,
2847 struct omap_hwmod_rst_info *ohri)
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002848{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002849 if (!oh->clkdm)
2850 return -EINVAL;
2851
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002852 return omap4_prminst_assert_hardreset(ohri->rst_shift,
2853 oh->clkdm->pwrdm.ptr->prcm_partition,
2854 oh->clkdm->pwrdm.ptr->prcm_offs,
2855 oh->prcm.omap4.rstctrl_offs);
2856}
2857
2858/**
2859 * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2860 * @oh: struct omap_hwmod * to deassert hardreset
2861 * @ohri: hardreset line data
2862 *
2863 * Call omap4_prminst_deassert_hardreset() with parameters extracted
2864 * from the hwmod @oh and the hardreset line data @ohri. Only
2865 * intended for use as an soc_ops function pointer. Passes along the
2866 * return value from omap4_prminst_deassert_hardreset(). XXX This
2867 * function is scheduled for removal when the PRM code is moved into
2868 * drivers/.
2869 */
2870static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
2871 struct omap_hwmod_rst_info *ohri)
2872{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002873 if (!oh->clkdm)
2874 return -EINVAL;
2875
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002876 if (ohri->st_shift)
2877 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
2878 oh->name, ohri->name);
2879 return omap4_prminst_deassert_hardreset(ohri->rst_shift,
2880 oh->clkdm->pwrdm.ptr->prcm_partition,
2881 oh->clkdm->pwrdm.ptr->prcm_offs,
2882 oh->prcm.omap4.rstctrl_offs);
2883}
2884
2885/**
2886 * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
2887 * @oh: struct omap_hwmod * to test hardreset
2888 * @ohri: hardreset line data
2889 *
2890 * Call omap4_prminst_is_hardreset_asserted() with parameters
2891 * extracted from the hwmod @oh and the hardreset line data @ohri.
2892 * Only intended for use as an soc_ops function pointer. Passes along
2893 * the return value from omap4_prminst_is_hardreset_asserted(). XXX
2894 * This function is scheduled for removal when the PRM code is moved
2895 * into drivers/.
2896 */
2897static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
2898 struct omap_hwmod_rst_info *ohri)
2899{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002900 if (!oh->clkdm)
2901 return -EINVAL;
2902
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002903 return omap4_prminst_is_hardreset_asserted(ohri->rst_shift,
2904 oh->clkdm->pwrdm.ptr->prcm_partition,
2905 oh->clkdm->pwrdm.ptr->prcm_offs,
2906 oh->prcm.omap4.rstctrl_offs);
2907}
2908
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002909/**
2910 * _am33xx_assert_hardreset - call AM33XX PRM hardreset fn with hwmod args
2911 * @oh: struct omap_hwmod * to assert hardreset
2912 * @ohri: hardreset line data
2913 *
2914 * Call am33xx_prminst_assert_hardreset() with parameters extracted
2915 * from the hwmod @oh and the hardreset line data @ohri. Only
2916 * intended for use as an soc_ops function pointer. Passes along the
2917 * return value from am33xx_prminst_assert_hardreset(). XXX This
2918 * function is scheduled for removal when the PRM code is moved into
2919 * drivers/.
2920 */
2921static int _am33xx_assert_hardreset(struct omap_hwmod *oh,
2922 struct omap_hwmod_rst_info *ohri)
2923
2924{
2925 return am33xx_prm_assert_hardreset(ohri->rst_shift,
2926 oh->clkdm->pwrdm.ptr->prcm_offs,
2927 oh->prcm.omap4.rstctrl_offs);
2928}
2929
2930/**
2931 * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
2932 * @oh: struct omap_hwmod * to deassert hardreset
2933 * @ohri: hardreset line data
2934 *
2935 * Call am33xx_prminst_deassert_hardreset() with parameters extracted
2936 * from the hwmod @oh and the hardreset line data @ohri. Only
2937 * intended for use as an soc_ops function pointer. Passes along the
2938 * return value from am33xx_prminst_deassert_hardreset(). XXX This
2939 * function is scheduled for removal when the PRM code is moved into
2940 * drivers/.
2941 */
2942static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
2943 struct omap_hwmod_rst_info *ohri)
2944{
2945 if (ohri->st_shift)
2946 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
2947 oh->name, ohri->name);
2948
2949 return am33xx_prm_deassert_hardreset(ohri->rst_shift,
2950 oh->clkdm->pwrdm.ptr->prcm_offs,
2951 oh->prcm.omap4.rstctrl_offs,
2952 oh->prcm.omap4.rstst_offs);
2953}
2954
2955/**
2956 * _am33xx_is_hardreset_asserted - call AM33XX PRM hardreset fn with hwmod args
2957 * @oh: struct omap_hwmod * to test hardreset
2958 * @ohri: hardreset line data
2959 *
2960 * Call am33xx_prminst_is_hardreset_asserted() with parameters
2961 * extracted from the hwmod @oh and the hardreset line data @ohri.
2962 * Only intended for use as an soc_ops function pointer. Passes along
2963 * the return value from am33xx_prminst_is_hardreset_asserted(). XXX
2964 * This function is scheduled for removal when the PRM code is moved
2965 * into drivers/.
2966 */
2967static int _am33xx_is_hardreset_asserted(struct omap_hwmod *oh,
2968 struct omap_hwmod_rst_info *ohri)
2969{
2970 return am33xx_prm_is_hardreset_asserted(ohri->rst_shift,
2971 oh->clkdm->pwrdm.ptr->prcm_offs,
2972 oh->prcm.omap4.rstctrl_offs);
2973}
2974
Paul Walmsley63c85232009-09-03 20:14:03 +03002975/* Public functions */
2976
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002977u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03002978{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002979 if (oh->flags & HWMOD_16BIT_REG)
2980 return __raw_readw(oh->_mpu_rt_va + reg_offs);
2981 else
2982 return __raw_readl(oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03002983}
2984
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002985void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03002986{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002987 if (oh->flags & HWMOD_16BIT_REG)
2988 __raw_writew(v, oh->_mpu_rt_va + reg_offs);
2989 else
2990 __raw_writel(v, oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03002991}
2992
Paul Walmsley887adea2010-07-26 16:34:33 -06002993/**
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06002994 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
2995 * @oh: struct omap_hwmod *
2996 *
2997 * This is a public function exposed to drivers. Some drivers may need to do
2998 * some settings before and after resetting the device. Those drivers after
2999 * doing the necessary settings could use this function to start a reset by
3000 * setting the SYSCONFIG.SOFTRESET bit.
3001 */
3002int omap_hwmod_softreset(struct omap_hwmod *oh)
3003{
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003004 u32 v;
3005 int ret;
3006
3007 if (!oh || !(oh->_sysc_cache))
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003008 return -EINVAL;
3009
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003010 v = oh->_sysc_cache;
3011 ret = _set_softreset(oh, &v);
3012 if (ret)
3013 goto error;
3014 _write_sysconfig(v, oh);
3015
3016error:
3017 return ret;
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003018}
3019
3020/**
Paul Walmsley887adea2010-07-26 16:34:33 -06003021 * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode
3022 * @oh: struct omap_hwmod *
3023 * @idlemode: SIDLEMODE field bits (shifted to bit 0)
3024 *
3025 * Sets the IP block's OCP slave idlemode in hardware, and updates our
3026 * local copy. Intended to be used by drivers that have some erratum
3027 * that requires direct manipulation of the SIDLEMODE bits. Returns
3028 * -EINVAL if @oh is null, or passes along the return value from
3029 * _set_slave_idlemode().
3030 *
3031 * XXX Does this function have any current users? If not, we should
3032 * remove it; it is better to let the rest of the hwmod code handle this.
3033 * Any users of this function should be scrutinized carefully.
3034 */
Kevin Hilman46273e62010-01-26 20:13:03 -07003035int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode)
3036{
3037 u32 v;
3038 int retval = 0;
3039
3040 if (!oh)
3041 return -EINVAL;
3042
3043 v = oh->_sysc_cache;
3044
3045 retval = _set_slave_idlemode(oh, idlemode, &v);
3046 if (!retval)
3047 _write_sysconfig(v, oh);
3048
3049 return retval;
3050}
3051
Paul Walmsley63c85232009-09-03 20:14:03 +03003052/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003053 * omap_hwmod_lookup - look up a registered omap_hwmod by name
3054 * @name: name of the omap_hwmod to look up
3055 *
3056 * Given a @name of an omap_hwmod, return a pointer to the registered
3057 * struct omap_hwmod *, or NULL upon error.
3058 */
3059struct omap_hwmod *omap_hwmod_lookup(const char *name)
3060{
3061 struct omap_hwmod *oh;
3062
3063 if (!name)
3064 return NULL;
3065
Paul Walmsley63c85232009-09-03 20:14:03 +03003066 oh = _lookup(name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003067
3068 return oh;
3069}
3070
3071/**
3072 * omap_hwmod_for_each - call function for each registered omap_hwmod
3073 * @fn: pointer to a callback function
Paul Walmsley97d60162010-07-26 16:34:30 -06003074 * @data: void * data to pass to callback function
Paul Walmsley63c85232009-09-03 20:14:03 +03003075 *
3076 * Call @fn for each registered omap_hwmod, passing @data to each
3077 * function. @fn must return 0 for success or any other value for
3078 * failure. If @fn returns non-zero, the iteration across omap_hwmods
3079 * will stop and the non-zero return value will be passed to the
3080 * caller of omap_hwmod_for_each(). @fn is called with
3081 * omap_hwmod_for_each() held.
3082 */
Paul Walmsley97d60162010-07-26 16:34:30 -06003083int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
3084 void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03003085{
3086 struct omap_hwmod *temp_oh;
Govindraj.R30ebad92011-06-01 11:28:56 +05303087 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003088
3089 if (!fn)
3090 return -EINVAL;
3091
Paul Walmsley63c85232009-09-03 20:14:03 +03003092 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
Paul Walmsley97d60162010-07-26 16:34:30 -06003093 ret = (*fn)(temp_oh, data);
Paul Walmsley63c85232009-09-03 20:14:03 +03003094 if (ret)
3095 break;
3096 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003097
3098 return ret;
3099}
3100
Paul Walmsley63c85232009-09-03 20:14:03 +03003101/**
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003102 * omap_hwmod_register_links - register an array of hwmod links
3103 * @ois: pointer to an array of omap_hwmod_ocp_if to register
3104 *
3105 * Intended to be called early in boot before the clock framework is
3106 * initialized. If @ois is not null, will register all omap_hwmods
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003107 * listed in @ois that are valid for this chip. Returns -EINVAL if
3108 * omap_hwmod_init() hasn't been called before calling this function,
3109 * -ENOMEM if the link memory area can't be allocated, or 0 upon
3110 * success.
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003111 */
3112int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
3113{
3114 int r, i;
3115
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003116 if (!inited)
3117 return -EINVAL;
3118
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003119 if (!ois)
3120 return 0;
3121
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003122 if (!linkspace) {
3123 if (_alloc_linkspace(ois)) {
3124 pr_err("omap_hwmod: could not allocate link space\n");
3125 return -ENOMEM;
3126 }
3127 }
3128
3129 i = 0;
3130 do {
3131 r = _register_link(ois[i]);
3132 WARN(r && r != -EEXIST,
3133 "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3134 ois[i]->master->name, ois[i]->slave->name, r);
3135 } while (ois[++i]);
3136
3137 return 0;
3138}
3139
3140/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003141 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3142 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003143 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003144 * If the hwmod data corresponding to the MPU subsystem IP block
3145 * hasn't been initialized and set up yet, do so now. This must be
3146 * done first since sleep dependencies may be added from other hwmods
3147 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
3148 * return value.
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003149 */
Paul Walmsley381d0332012-04-19 00:58:22 -06003150static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003151{
Paul Walmsley381d0332012-04-19 00:58:22 -06003152 if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3153 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3154 __func__, MPU_INITIATOR_NAME);
3155 else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3156 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
Paul Walmsley63c85232009-09-03 20:14:03 +03003157}
3158
3159/**
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003160 * omap_hwmod_setup_one - set up a single hwmod
3161 * @oh_name: const char * name of the already-registered hwmod to set up
3162 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003163 * Initialize and set up a single hwmod. Intended to be used for a
3164 * small number of early devices, such as the timer IP blocks used for
3165 * the scheduler clock. Must be called after omap2_clk_init().
3166 * Resolves the struct clk names to struct clk pointers for each
3167 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
3168 * -EINVAL upon error or 0 upon success.
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003169 */
3170int __init omap_hwmod_setup_one(const char *oh_name)
3171{
3172 struct omap_hwmod *oh;
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003173
3174 pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3175
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003176 oh = _lookup(oh_name);
3177 if (!oh) {
3178 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3179 return -EINVAL;
3180 }
3181
Paul Walmsley381d0332012-04-19 00:58:22 -06003182 _ensure_mpu_hwmod_is_setup(oh);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003183
Paul Walmsley381d0332012-04-19 00:58:22 -06003184 _init(oh, NULL);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003185 _setup(oh, NULL);
3186
3187 return 0;
3188}
3189
3190/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003191 * omap_hwmod_setup_all - set up all registered IP blocks
Paul Walmsley63c85232009-09-03 20:14:03 +03003192 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003193 * Initialize and set up all IP blocks registered with the hwmod code.
3194 * Must be called after omap2_clk_init(). Resolves the struct clk
3195 * names to struct clk pointers for each registered omap_hwmod. Also
3196 * calls _setup() on each hwmod. Returns 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003197 */
Paul Walmsley550c8092011-02-28 11:58:14 -07003198static int __init omap_hwmod_setup_all(void)
Paul Walmsley63c85232009-09-03 20:14:03 +03003199{
Paul Walmsley381d0332012-04-19 00:58:22 -06003200 _ensure_mpu_hwmod_is_setup(NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003201
Paul Walmsley381d0332012-04-19 00:58:22 -06003202 omap_hwmod_for_each(_init, NULL);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003203 omap_hwmod_for_each(_setup, NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003204
3205 return 0;
3206}
Paul Walmsley550c8092011-02-28 11:58:14 -07003207core_initcall(omap_hwmod_setup_all);
Paul Walmsley63c85232009-09-03 20:14:03 +03003208
3209/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003210 * omap_hwmod_enable - enable an omap_hwmod
3211 * @oh: struct omap_hwmod *
3212 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003213 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
Paul Walmsley63c85232009-09-03 20:14:03 +03003214 * Returns -EINVAL on error or passes along the return value from _enable().
3215 */
3216int omap_hwmod_enable(struct omap_hwmod *oh)
3217{
3218 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003219 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003220
3221 if (!oh)
3222 return -EINVAL;
3223
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003224 spin_lock_irqsave(&oh->_lock, flags);
3225 r = _enable(oh);
3226 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003227
3228 return r;
3229}
3230
3231/**
3232 * omap_hwmod_idle - idle an omap_hwmod
3233 * @oh: struct omap_hwmod *
3234 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003235 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
Paul Walmsley63c85232009-09-03 20:14:03 +03003236 * Returns -EINVAL on error or passes along the return value from _idle().
3237 */
3238int omap_hwmod_idle(struct omap_hwmod *oh)
3239{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003240 unsigned long flags;
3241
Paul Walmsley63c85232009-09-03 20:14:03 +03003242 if (!oh)
3243 return -EINVAL;
3244
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003245 spin_lock_irqsave(&oh->_lock, flags);
3246 _idle(oh);
3247 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003248
3249 return 0;
3250}
3251
3252/**
3253 * omap_hwmod_shutdown - shutdown an omap_hwmod
3254 * @oh: struct omap_hwmod *
3255 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003256 * Shutdown an omap_hwmod @oh. Intended to be called by
Paul Walmsley63c85232009-09-03 20:14:03 +03003257 * omap_device_shutdown(). Returns -EINVAL on error or passes along
3258 * the return value from _shutdown().
3259 */
3260int omap_hwmod_shutdown(struct omap_hwmod *oh)
3261{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003262 unsigned long flags;
3263
Paul Walmsley63c85232009-09-03 20:14:03 +03003264 if (!oh)
3265 return -EINVAL;
3266
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003267 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003268 _shutdown(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003269 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003270
3271 return 0;
3272}
3273
3274/**
3275 * omap_hwmod_enable_clocks - enable main_clk, all interface clocks
3276 * @oh: struct omap_hwmod *oh
3277 *
3278 * Intended to be called by the omap_device code.
3279 */
3280int omap_hwmod_enable_clocks(struct omap_hwmod *oh)
3281{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003282 unsigned long flags;
3283
3284 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003285 _enable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003286 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003287
3288 return 0;
3289}
3290
3291/**
3292 * omap_hwmod_disable_clocks - disable main_clk, all interface clocks
3293 * @oh: struct omap_hwmod *oh
3294 *
3295 * Intended to be called by the omap_device code.
3296 */
3297int omap_hwmod_disable_clocks(struct omap_hwmod *oh)
3298{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003299 unsigned long flags;
3300
3301 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003302 _disable_clocks(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003303 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003304
3305 return 0;
3306}
3307
3308/**
3309 * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete
3310 * @oh: struct omap_hwmod *oh
3311 *
3312 * Intended to be called by drivers and core code when all posted
3313 * writes to a device must complete before continuing further
3314 * execution (for example, after clearing some device IRQSTATUS
3315 * register bits)
3316 *
3317 * XXX what about targets with multiple OCP threads?
3318 */
3319void omap_hwmod_ocp_barrier(struct omap_hwmod *oh)
3320{
3321 BUG_ON(!oh);
3322
Paul Walmsley43b40992010-02-22 22:09:34 -07003323 if (!oh->class->sysc || !oh->class->sysc->sysc_flags) {
Russell King4f8a4282012-02-07 10:59:37 +00003324 WARN(1, "omap_device: %s: OCP barrier impossible due to device configuration\n",
3325 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003326 return;
3327 }
3328
3329 /*
3330 * Forces posted writes to complete on the OCP thread handling
3331 * register writes
3332 */
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003333 omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003334}
3335
3336/**
3337 * omap_hwmod_reset - reset the hwmod
3338 * @oh: struct omap_hwmod *
3339 *
3340 * Under some conditions, a driver may wish to reset the entire device.
3341 * Called from omap_device code. Returns -EINVAL on error or passes along
Liam Girdwood9b579112010-09-21 10:34:09 -06003342 * the return value from _reset().
Paul Walmsley63c85232009-09-03 20:14:03 +03003343 */
3344int omap_hwmod_reset(struct omap_hwmod *oh)
3345{
3346 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003347 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003348
Liam Girdwood9b579112010-09-21 10:34:09 -06003349 if (!oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03003350 return -EINVAL;
3351
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003352 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003353 r = _reset(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003354 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003355
3356 return r;
3357}
3358
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003359/*
3360 * IP block data retrieval functions
3361 */
3362
Paul Walmsley63c85232009-09-03 20:14:03 +03003363/**
3364 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
3365 * @oh: struct omap_hwmod *
3366 * @res: pointer to the first element of an array of struct resource to fill
3367 *
3368 * Count the number of struct resource array elements necessary to
3369 * contain omap_hwmod @oh resources. Intended to be called by code
3370 * that registers omap_devices. Intended to be used to determine the
3371 * size of a dynamically-allocated struct resource array, before
3372 * calling omap_hwmod_fill_resources(). Returns the number of struct
3373 * resource array elements needed.
3374 *
3375 * XXX This code is not optimized. It could attempt to merge adjacent
3376 * resource IDs.
3377 *
3378 */
3379int omap_hwmod_count_resources(struct omap_hwmod *oh)
3380{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003381 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003382 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003383 int ret;
3384 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003385
Paul Walmsleybc614952011-07-09 19:14:07 -06003386 ret = _count_mpu_irqs(oh) + _count_sdma_reqs(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03003387
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003388 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003389
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003390 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003391 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003392 ret += _count_ocp_if_addr_spaces(os);
3393 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003394
3395 return ret;
3396}
3397
3398/**
3399 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
3400 * @oh: struct omap_hwmod *
3401 * @res: pointer to the first element of an array of struct resource to fill
3402 *
3403 * Fill the struct resource array @res with resource data from the
3404 * omap_hwmod @oh. Intended to be called by code that registers
3405 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3406 * number of array elements filled.
3407 */
3408int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
3409{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003410 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003411 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003412 int i, j, mpu_irqs_cnt, sdma_reqs_cnt, addr_cnt;
Paul Walmsley63c85232009-09-03 20:14:03 +03003413 int r = 0;
3414
3415 /* For each IRQ, DMA, memory area, fill in array.*/
3416
Paul Walmsley212738a2011-07-09 19:14:06 -06003417 mpu_irqs_cnt = _count_mpu_irqs(oh);
3418 for (i = 0; i < mpu_irqs_cnt; i++) {
Paul Walmsley718bfd72009-12-08 16:34:16 -07003419 (res + r)->name = (oh->mpu_irqs + i)->name;
3420 (res + r)->start = (oh->mpu_irqs + i)->irq;
3421 (res + r)->end = (oh->mpu_irqs + i)->irq;
Paul Walmsley63c85232009-09-03 20:14:03 +03003422 (res + r)->flags = IORESOURCE_IRQ;
3423 r++;
3424 }
3425
Paul Walmsleybc614952011-07-09 19:14:07 -06003426 sdma_reqs_cnt = _count_sdma_reqs(oh);
3427 for (i = 0; i < sdma_reqs_cnt; i++) {
Benoit Cousson9ee9fff2010-09-21 10:34:08 -06003428 (res + r)->name = (oh->sdma_reqs + i)->name;
3429 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3430 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
Paul Walmsley63c85232009-09-03 20:14:03 +03003431 (res + r)->flags = IORESOURCE_DMA;
3432 r++;
3433 }
3434
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003435 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003436
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003437 i = 0;
3438 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003439 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley78183f32011-07-09 19:14:05 -06003440 addr_cnt = _count_ocp_if_addr_spaces(os);
Paul Walmsley63c85232009-09-03 20:14:03 +03003441
Paul Walmsley78183f32011-07-09 19:14:05 -06003442 for (j = 0; j < addr_cnt; j++) {
Kishon Vijay Abraham Icd503802011-02-24 12:51:45 -08003443 (res + r)->name = (os->addr + j)->name;
Paul Walmsley63c85232009-09-03 20:14:03 +03003444 (res + r)->start = (os->addr + j)->pa_start;
3445 (res + r)->end = (os->addr + j)->pa_end;
3446 (res + r)->flags = IORESOURCE_MEM;
3447 r++;
3448 }
3449 }
3450
3451 return r;
3452}
3453
3454/**
Vaibhav Hiremathb82b04e2012-08-29 15:18:11 +05303455 * omap_hwmod_fill_dma_resources - fill struct resource array with dma data
3456 * @oh: struct omap_hwmod *
3457 * @res: pointer to the array of struct resource to fill
3458 *
3459 * Fill the struct resource array @res with dma resource data from the
3460 * omap_hwmod @oh. Intended to be called by code that registers
3461 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3462 * number of array elements filled.
3463 */
3464int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res)
3465{
3466 int i, sdma_reqs_cnt;
3467 int r = 0;
3468
3469 sdma_reqs_cnt = _count_sdma_reqs(oh);
3470 for (i = 0; i < sdma_reqs_cnt; i++) {
3471 (res + r)->name = (oh->sdma_reqs + i)->name;
3472 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3473 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3474 (res + r)->flags = IORESOURCE_DMA;
3475 r++;
3476 }
3477
3478 return r;
3479}
3480
3481/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003482 * omap_hwmod_get_resource_byname - fetch IP block integration data by name
3483 * @oh: struct omap_hwmod * to operate on
3484 * @type: one of the IORESOURCE_* constants from include/linux/ioport.h
3485 * @name: pointer to the name of the data to fetch (optional)
3486 * @rsrc: pointer to a struct resource, allocated by the caller
3487 *
3488 * Retrieve MPU IRQ, SDMA request line, or address space start/end
3489 * data for the IP block pointed to by @oh. The data will be filled
3490 * into a struct resource record pointed to by @rsrc. The struct
3491 * resource must be allocated by the caller. When @name is non-null,
3492 * the data associated with the matching entry in the IRQ/SDMA/address
3493 * space hwmod data arrays will be returned. If @name is null, the
3494 * first array entry will be returned. Data order is not meaningful
3495 * in hwmod data, so callers are strongly encouraged to use a non-null
3496 * @name whenever possible to avoid unpredictable effects if hwmod
3497 * data is later added that causes data ordering to change. This
3498 * function is only intended for use by OMAP core code. Device
3499 * drivers should not call this function - the appropriate bus-related
3500 * data accessor functions should be used instead. Returns 0 upon
3501 * success or a negative error code upon error.
3502 */
3503int omap_hwmod_get_resource_byname(struct omap_hwmod *oh, unsigned int type,
3504 const char *name, struct resource *rsrc)
3505{
3506 int r;
3507 unsigned int irq, dma;
3508 u32 pa_start, pa_end;
3509
3510 if (!oh || !rsrc)
3511 return -EINVAL;
3512
3513 if (type == IORESOURCE_IRQ) {
3514 r = _get_mpu_irq_by_name(oh, name, &irq);
3515 if (r)
3516 return r;
3517
3518 rsrc->start = irq;
3519 rsrc->end = irq;
3520 } else if (type == IORESOURCE_DMA) {
3521 r = _get_sdma_req_by_name(oh, name, &dma);
3522 if (r)
3523 return r;
3524
3525 rsrc->start = dma;
3526 rsrc->end = dma;
3527 } else if (type == IORESOURCE_MEM) {
3528 r = _get_addr_space_by_name(oh, name, &pa_start, &pa_end);
3529 if (r)
3530 return r;
3531
3532 rsrc->start = pa_start;
3533 rsrc->end = pa_end;
3534 } else {
3535 return -EINVAL;
3536 }
3537
3538 rsrc->flags = type;
3539 rsrc->name = name;
3540
3541 return 0;
3542}
3543
3544/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003545 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3546 * @oh: struct omap_hwmod *
3547 *
3548 * Return the powerdomain pointer associated with the OMAP module
3549 * @oh's main clock. If @oh does not have a main clk, return the
3550 * powerdomain associated with the interface clock associated with the
3551 * module's MPU port. (XXX Perhaps this should use the SDMA port
3552 * instead?) Returns NULL on error, or a struct powerdomain * on
3553 * success.
3554 */
3555struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3556{
3557 struct clk *c;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003558 struct omap_hwmod_ocp_if *oi;
Paul Walmsley63c85232009-09-03 20:14:03 +03003559
3560 if (!oh)
3561 return NULL;
3562
3563 if (oh->_clk) {
3564 c = oh->_clk;
3565 } else {
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003566 oi = _find_mpu_rt_port(oh);
3567 if (!oi)
Paul Walmsley63c85232009-09-03 20:14:03 +03003568 return NULL;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003569 c = oi->_clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003570 }
3571
Thara Gopinathd5647c12010-03-31 04:16:29 -06003572 if (!c->clkdm)
3573 return NULL;
3574
Paul Walmsley63c85232009-09-03 20:14:03 +03003575 return c->clkdm->pwrdm.ptr;
3576
3577}
3578
3579/**
Paul Walmsleydb2a60b2010-07-26 16:34:33 -06003580 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3581 * @oh: struct omap_hwmod *
3582 *
3583 * Returns the virtual address corresponding to the beginning of the
3584 * module's register target, in the address range that is intended to
3585 * be used by the MPU. Returns the virtual address upon success or NULL
3586 * upon error.
3587 */
3588void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3589{
3590 if (!oh)
3591 return NULL;
3592
3593 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3594 return NULL;
3595
3596 if (oh->_state == _HWMOD_STATE_UNKNOWN)
3597 return NULL;
3598
3599 return oh->_mpu_rt_va;
3600}
3601
3602/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003603 * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh
3604 * @oh: struct omap_hwmod *
3605 * @init_oh: struct omap_hwmod * (initiator)
3606 *
3607 * Add a sleep dependency between the initiator @init_oh and @oh.
3608 * Intended to be called by DSP/Bridge code via platform_data for the
3609 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3610 * code needs to add/del initiator dependencies dynamically
3611 * before/after accessing a device. Returns the return value from
3612 * _add_initiator_dep().
3613 *
3614 * XXX Keep a usecount in the clockdomain code
3615 */
3616int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh,
3617 struct omap_hwmod *init_oh)
3618{
3619 return _add_initiator_dep(oh, init_oh);
3620}
3621
3622/*
3623 * XXX what about functions for drivers to save/restore ocp_sysconfig
3624 * for context save/restore operations?
3625 */
3626
3627/**
3628 * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh
3629 * @oh: struct omap_hwmod *
3630 * @init_oh: struct omap_hwmod * (initiator)
3631 *
3632 * Remove a sleep dependency between the initiator @init_oh and @oh.
3633 * Intended to be called by DSP/Bridge code via platform_data for the
3634 * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge
3635 * code needs to add/del initiator dependencies dynamically
3636 * before/after accessing a device. Returns the return value from
3637 * _del_initiator_dep().
3638 *
3639 * XXX Keep a usecount in the clockdomain code
3640 */
3641int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh,
3642 struct omap_hwmod *init_oh)
3643{
3644 return _del_initiator_dep(oh, init_oh);
3645}
3646
3647/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003648 * omap_hwmod_enable_wakeup - allow device to wake up the system
3649 * @oh: struct omap_hwmod *
3650 *
3651 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
Govindraj.R2a1cc142012-04-05 02:59:32 -06003652 * send wakeups to the PRCM, and enable I/O ring wakeup events for
3653 * this IP block if it has dynamic mux entries. Eventually this
3654 * should set PRCM wakeup registers to cause the PRCM to receive
3655 * wakeup events from the module. Does not set any wakeup routing
3656 * registers beyond this point - if the module is to wake up any other
3657 * module or subsystem, that must be set separately. Called by
3658 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003659 */
3660int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
3661{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003662 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003663 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003664
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003665 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003666
3667 if (oh->class->sysc &&
3668 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3669 v = oh->_sysc_cache;
3670 _enable_wakeup(oh, &v);
3671 _write_sysconfig(v, oh);
3672 }
3673
Govindraj Receec002011-12-16 14:36:58 -07003674 _set_idle_ioring_wakeup(oh, true);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003675 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003676
3677 return 0;
3678}
3679
3680/**
3681 * omap_hwmod_disable_wakeup - prevent device from waking the system
3682 * @oh: struct omap_hwmod *
3683 *
3684 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
Govindraj.R2a1cc142012-04-05 02:59:32 -06003685 * from sending wakeups to the PRCM, and disable I/O ring wakeup
3686 * events for this IP block if it has dynamic mux entries. Eventually
3687 * this should clear PRCM wakeup registers to cause the PRCM to ignore
3688 * wakeup events from the module. Does not set any wakeup routing
3689 * registers beyond this point - if the module is to wake up any other
3690 * module or subsystem, that must be set separately. Called by
3691 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003692 */
3693int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
3694{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003695 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003696 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003697
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003698 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003699
3700 if (oh->class->sysc &&
3701 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3702 v = oh->_sysc_cache;
3703 _disable_wakeup(oh, &v);
3704 _write_sysconfig(v, oh);
3705 }
3706
Govindraj Receec002011-12-16 14:36:58 -07003707 _set_idle_ioring_wakeup(oh, false);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003708 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003709
3710 return 0;
3711}
Paul Walmsley43b40992010-02-22 22:09:34 -07003712
3713/**
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003714 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3715 * contained in the hwmod module.
3716 * @oh: struct omap_hwmod *
3717 * @name: name of the reset line to lookup and assert
3718 *
3719 * Some IP like dsp, ipu or iva contain processor that require
3720 * an HW reset line to be assert / deassert in order to enable fully
3721 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3722 * yet supported on this OMAP; otherwise, passes along the return value
3723 * from _assert_hardreset().
3724 */
3725int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
3726{
3727 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003728 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003729
3730 if (!oh)
3731 return -EINVAL;
3732
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003733 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003734 ret = _assert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003735 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003736
3737 return ret;
3738}
3739
3740/**
3741 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3742 * contained in the hwmod module.
3743 * @oh: struct omap_hwmod *
3744 * @name: name of the reset line to look up and deassert
3745 *
3746 * Some IP like dsp, ipu or iva contain processor that require
3747 * an HW reset line to be assert / deassert in order to enable fully
3748 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3749 * yet supported on this OMAP; otherwise, passes along the return value
3750 * from _deassert_hardreset().
3751 */
3752int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
3753{
3754 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003755 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003756
3757 if (!oh)
3758 return -EINVAL;
3759
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003760 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003761 ret = _deassert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003762 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003763
3764 return ret;
3765}
3766
3767/**
3768 * omap_hwmod_read_hardreset - read the HW reset line state of submodules
3769 * contained in the hwmod module
3770 * @oh: struct omap_hwmod *
3771 * @name: name of the reset line to look up and read
3772 *
3773 * Return the current state of the hwmod @oh's reset line named @name:
3774 * returns -EINVAL upon parameter error or if this operation
3775 * is unsupported on the current OMAP; otherwise, passes along the return
3776 * value from _read_hardreset().
3777 */
3778int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name)
3779{
3780 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003781 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003782
3783 if (!oh)
3784 return -EINVAL;
3785
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003786 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003787 ret = _read_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003788 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003789
3790 return ret;
3791}
3792
3793
3794/**
Paul Walmsley43b40992010-02-22 22:09:34 -07003795 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
3796 * @classname: struct omap_hwmod_class name to search for
3797 * @fn: callback function pointer to call for each hwmod in class @classname
3798 * @user: arbitrary context data to pass to the callback function
3799 *
Benoit Coussonce35b242010-12-21 21:31:28 -07003800 * For each omap_hwmod of class @classname, call @fn.
3801 * If the callback function returns something other than
Paul Walmsley43b40992010-02-22 22:09:34 -07003802 * zero, the iterator is terminated, and the callback function's return
3803 * value is passed back to the caller. Returns 0 upon success, -EINVAL
3804 * if @classname or @fn are NULL, or passes back the error code from @fn.
3805 */
3806int omap_hwmod_for_each_by_class(const char *classname,
3807 int (*fn)(struct omap_hwmod *oh,
3808 void *user),
3809 void *user)
3810{
3811 struct omap_hwmod *temp_oh;
3812 int ret = 0;
3813
3814 if (!classname || !fn)
3815 return -EINVAL;
3816
3817 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
3818 __func__, classname);
3819
Paul Walmsley43b40992010-02-22 22:09:34 -07003820 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3821 if (!strcmp(temp_oh->class->name, classname)) {
3822 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
3823 __func__, temp_oh->name);
3824 ret = (*fn)(temp_oh, user);
3825 if (ret)
3826 break;
3827 }
3828 }
3829
Paul Walmsley43b40992010-02-22 22:09:34 -07003830 if (ret)
3831 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
3832 __func__, ret);
3833
3834 return ret;
3835}
3836
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003837/**
3838 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
3839 * @oh: struct omap_hwmod *
3840 * @state: state that _setup() should leave the hwmod in
3841 *
Paul Walmsley550c8092011-02-28 11:58:14 -07003842 * Sets the hwmod state that @oh will enter at the end of _setup()
Paul Walmsley64813c32012-04-18 19:10:03 -06003843 * (called by omap_hwmod_setup_*()). See also the documentation
3844 * for _setup_postsetup(), above. Returns 0 upon success or
3845 * -EINVAL if there is a problem with the arguments or if the hwmod is
3846 * in the wrong state.
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003847 */
3848int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
3849{
3850 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003851 unsigned long flags;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003852
3853 if (!oh)
3854 return -EINVAL;
3855
3856 if (state != _HWMOD_STATE_DISABLED &&
3857 state != _HWMOD_STATE_ENABLED &&
3858 state != _HWMOD_STATE_IDLE)
3859 return -EINVAL;
3860
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003861 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003862
3863 if (oh->_state != _HWMOD_STATE_REGISTERED) {
3864 ret = -EINVAL;
3865 goto ohsps_unlock;
3866 }
3867
3868 oh->_postsetup_state = state;
3869 ret = 0;
3870
3871ohsps_unlock:
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003872 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003873
3874 return ret;
3875}
Kevin Hilmanc80705a2010-12-21 21:31:55 -07003876
3877/**
3878 * omap_hwmod_get_context_loss_count - get lost context count
3879 * @oh: struct omap_hwmod *
3880 *
3881 * Query the powerdomain of of @oh to get the context loss
3882 * count for this device.
3883 *
3884 * Returns the context loss count of the powerdomain assocated with @oh
3885 * upon success, or zero if no powerdomain exists for @oh.
3886 */
Tomi Valkeinenfc013872011-06-09 16:56:23 +03003887int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
Kevin Hilmanc80705a2010-12-21 21:31:55 -07003888{
3889 struct powerdomain *pwrdm;
3890 int ret = 0;
3891
3892 pwrdm = omap_hwmod_get_pwrdm(oh);
3893 if (pwrdm)
3894 ret = pwrdm_get_context_loss_count(pwrdm);
3895
3896 return ret;
3897}
Paul Walmsley43b01642011-03-10 03:50:07 -07003898
3899/**
3900 * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup
3901 * @oh: struct omap_hwmod *
3902 *
3903 * Prevent the hwmod @oh from being reset during the setup process.
3904 * Intended for use by board-*.c files on boards with devices that
3905 * cannot tolerate being reset. Must be called before the hwmod has
3906 * been set up. Returns 0 upon success or negative error code upon
3907 * failure.
3908 */
3909int omap_hwmod_no_setup_reset(struct omap_hwmod *oh)
3910{
3911 if (!oh)
3912 return -EINVAL;
3913
3914 if (oh->_state != _HWMOD_STATE_REGISTERED) {
3915 pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n",
3916 oh->name);
3917 return -EINVAL;
3918 }
3919
3920 oh->flags |= HWMOD_INIT_NO_RESET;
3921
3922 return 0;
3923}
Tero Kristoabc2d542011-12-16 14:36:59 -07003924
3925/**
3926 * omap_hwmod_pad_route_irq - route an I/O pad wakeup to a particular MPU IRQ
3927 * @oh: struct omap_hwmod * containing hwmod mux entries
3928 * @pad_idx: array index in oh->mux of the hwmod mux entry to route wakeup
3929 * @irq_idx: the hwmod mpu_irqs array index of the IRQ to trigger on wakeup
3930 *
3931 * When an I/O pad wakeup arrives for the dynamic or wakeup hwmod mux
3932 * entry number @pad_idx for the hwmod @oh, trigger the interrupt
3933 * service routine for the hwmod's mpu_irqs array index @irq_idx. If
3934 * this function is not called for a given pad_idx, then the ISR
3935 * associated with @oh's first MPU IRQ will be triggered when an I/O
3936 * pad wakeup occurs on that pad. Note that @pad_idx is the index of
3937 * the _dynamic or wakeup_ entry: if there are other entries not
3938 * marked with OMAP_DEVICE_PAD_WAKEUP or OMAP_DEVICE_PAD_REMUX, these
3939 * entries are NOT COUNTED in the dynamic pad index. This function
3940 * must be called separately for each pad that requires its interrupt
3941 * to be re-routed this way. Returns -EINVAL if there is an argument
3942 * problem or if @oh does not have hwmod mux entries or MPU IRQs;
3943 * returns -ENOMEM if memory cannot be allocated; or 0 upon success.
3944 *
3945 * XXX This function interface is fragile. Rather than using array
3946 * indexes, which are subject to unpredictable change, it should be
3947 * using hwmod IRQ names, and some other stable key for the hwmod mux
3948 * pad records.
3949 */
3950int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx)
3951{
3952 int nr_irqs;
3953
3954 might_sleep();
3955
3956 if (!oh || !oh->mux || !oh->mpu_irqs || pad_idx < 0 ||
3957 pad_idx >= oh->mux->nr_pads_dynamic)
3958 return -EINVAL;
3959
3960 /* Check the number of available mpu_irqs */
3961 for (nr_irqs = 0; oh->mpu_irqs[nr_irqs].irq >= 0; nr_irqs++)
3962 ;
3963
3964 if (irq_idx >= nr_irqs)
3965 return -EINVAL;
3966
3967 if (!oh->mux->irqs) {
3968 /* XXX What frees this? */
3969 oh->mux->irqs = kzalloc(sizeof(int) * oh->mux->nr_pads_dynamic,
3970 GFP_KERNEL);
3971 if (!oh->mux->irqs)
3972 return -ENOMEM;
3973 }
3974 oh->mux->irqs[pad_idx] = irq_idx;
3975
3976 return 0;
3977}
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003978
3979/**
3980 * omap_hwmod_init - initialize the hwmod code
3981 *
3982 * Sets up some function pointers needed by the hwmod code to operate on the
3983 * currently-booted SoC. Intended to be called once during kernel init
3984 * before any hwmods are registered. No return value.
3985 */
3986void __init omap_hwmod_init(void)
3987{
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06003988 if (cpu_is_omap24xx()) {
3989 soc_ops.wait_target_ready = _omap2xxx_wait_target_ready;
3990 soc_ops.assert_hardreset = _omap2_assert_hardreset;
3991 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
3992 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
3993 } else if (cpu_is_omap34xx()) {
3994 soc_ops.wait_target_ready = _omap3xxx_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003995 soc_ops.assert_hardreset = _omap2_assert_hardreset;
3996 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
3997 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
R Sricharan05e152c2012-06-05 16:21:32 +05303998 } else if (cpu_is_omap44xx() || soc_is_omap54xx()) {
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003999 soc_ops.enable_module = _omap4_enable_module;
4000 soc_ops.disable_module = _omap4_disable_module;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004001 soc_ops.wait_target_ready = _omap4_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06004002 soc_ops.assert_hardreset = _omap4_assert_hardreset;
4003 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
4004 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
Kevin Hilman0a179ea2012-06-18 12:12:25 -06004005 soc_ops.init_clkdm = _init_clkdm;
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06004006 } else if (soc_is_am33xx()) {
4007 soc_ops.enable_module = _am33xx_enable_module;
4008 soc_ops.disable_module = _am33xx_disable_module;
4009 soc_ops.wait_target_ready = _am33xx_wait_target_ready;
4010 soc_ops.assert_hardreset = _am33xx_assert_hardreset;
4011 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
4012 soc_ops.is_hardreset_asserted = _am33xx_is_hardreset_asserted;
4013 soc_ops.init_clkdm = _init_clkdm;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004014 } else {
4015 WARN(1, "omap_hwmod: unknown SoC type\n");
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004016 }
4017
4018 inited = true;
4019}
Tony Lindgren68c9a952012-07-06 00:58:43 -07004020
4021/**
4022 * omap_hwmod_get_main_clk - get pointer to main clock name
4023 * @oh: struct omap_hwmod *
4024 *
4025 * Returns the main clock name assocated with @oh upon success,
4026 * or NULL if @oh is NULL.
4027 */
4028const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
4029{
4030 if (!oh)
4031 return NULL;
4032
4033 return oh->main_clk;
4034}