blob: cc8a987149e2737db4bf255075d5baf3bc2b2bb0 [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 |
Victor Kamenskyedfaf052014-04-15 20:37:46 +030075 * | ({read,write}l_relaxed, clk*) |
Paul Walmsley74ff3a62010-09-21 15:02:23 -060076 * +-------------------------------+
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>
Stephen Boydf5b00f62015-06-22 17:05:21 -0700133#include <linux/clk.h>
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700134#include <linux/clk-provider.h>
Paul Walmsley63c85232009-09-03 20:14:03 +0300135#include <linux/delay.h>
136#include <linux/err.h>
137#include <linux/list.h>
138#include <linux/mutex.h>
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -0700139#include <linux/spinlock.h>
Tero Kristoabc2d542011-12-16 14:36:59 -0700140#include <linux/slab.h>
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600141#include <linux/bootmem.h>
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +0100142#include <linux/cpu.h>
Santosh Shilimkar079abad2013-01-21 18:40:57 +0530143#include <linux/of.h>
144#include <linux/of_address.h>
Paul Walmsley63c85232009-09-03 20:14:03 +0300145
Paul Walmsleyfa200222013-01-26 00:48:56 -0700146#include <asm/system_misc.h>
147
Paul Walmsleya135eaa2012-09-27 10:33:34 -0600148#include "clock.h"
Tony Lindgren2a296c82012-10-02 17:41:35 -0700149#include "omap_hwmod.h"
Paul Walmsley63c85232009-09-03 20:14:03 +0300150
Tony Lindgrendbc04162012-08-31 10:59:07 -0700151#include "soc.h"
152#include "common.h"
153#include "clockdomain.h"
154#include "powerdomain.h"
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -0600155#include "cm2xxx.h"
156#include "cm3xxx.h"
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600157#include "cm33xx.h"
Paul Walmsleyb13159a2012-10-29 20:57:44 -0600158#include "prm.h"
Paul Walmsley139563a2012-10-21 01:01:10 -0600159#include "prm3xxx.h"
Paul Walmsleyd198b512010-12-21 15:30:54 -0700160#include "prm44xx.h"
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600161#include "prm33xx.h"
Benoit Coussoneaac3292011-07-10 05:56:31 -0600162#include "prminst44xx.h"
Tony Lindgren8d9af882010-12-22 18:42:35 -0800163#include "mux.h"
Vishwanath BS51658822012-06-22 08:40:04 -0600164#include "pm.h"
Paul Walmsley63c85232009-09-03 20:14:03 +0300165
Paul Walmsley63c85232009-09-03 20:14:03 +0300166/* Name of the OMAP hwmod for the MPU */
Benoit Cousson5c2c0292010-05-20 12:31:10 -0600167#define MPU_INITIATOR_NAME "mpu"
Paul Walmsley63c85232009-09-03 20:14:03 +0300168
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600169/*
170 * Number of struct omap_hwmod_link records per struct
171 * omap_hwmod_ocp_if record (master->slave and slave->master)
172 */
173#define LINKS_PER_OCP_IF 2
174
Tero Kristo4ebf5b22015-05-05 16:33:04 +0300175/*
176 * Address offset (in bytes) between the reset control and the reset
177 * status registers: 4 bytes on OMAP4
178 */
179#define OMAP4_RST_CTRL_ST_OFFSET 4
180
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600181/**
182 * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
183 * @enable_module: function to enable a module (via MODULEMODE)
184 * @disable_module: function to disable a module (via MODULEMODE)
185 *
186 * XXX Eventually this functionality will be hidden inside the PRM/CM
187 * device drivers. Until then, this should avoid huge blocks of cpu_is_*()
188 * conditionals in this code.
189 */
190struct omap_hwmod_soc_ops {
191 void (*enable_module)(struct omap_hwmod *oh);
192 int (*disable_module)(struct omap_hwmod *oh);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -0600193 int (*wait_target_ready)(struct omap_hwmod *oh);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -0600194 int (*assert_hardreset)(struct omap_hwmod *oh,
195 struct omap_hwmod_rst_info *ohri);
196 int (*deassert_hardreset)(struct omap_hwmod *oh,
197 struct omap_hwmod_rst_info *ohri);
198 int (*is_hardreset_asserted)(struct omap_hwmod *oh,
199 struct omap_hwmod_rst_info *ohri);
Kevin Hilman0a179ea2012-06-18 12:12:25 -0600200 int (*init_clkdm)(struct omap_hwmod *oh);
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -0700201 void (*update_context_lost)(struct omap_hwmod *oh);
202 int (*get_context_lost)(struct omap_hwmod *oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600203};
204
205/* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
206static struct omap_hwmod_soc_ops soc_ops;
207
Paul Walmsley63c85232009-09-03 20:14:03 +0300208/* omap_hwmod_list contains all registered struct omap_hwmods */
209static LIST_HEAD(omap_hwmod_list);
210
Paul Walmsley63c85232009-09-03 20:14:03 +0300211/* mpu_oh: used to add/remove MPU initiator from sleepdep list */
212static struct omap_hwmod *mpu_oh;
213
Vishwanath BS51658822012-06-22 08:40:04 -0600214/* io_chain_lock: used to serialize reconfigurations of the I/O chain */
215static DEFINE_SPINLOCK(io_chain_lock);
216
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600217/*
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600218 * linkspace: ptr to a buffer that struct omap_hwmod_link records are
219 * allocated from - used to reduce the number of small memory
220 * allocations, which has a significant impact on performance
221 */
222static struct omap_hwmod_link *linkspace;
223
224/*
225 * free_ls, max_ls: array indexes into linkspace; representing the
226 * next free struct omap_hwmod_link index, and the maximum number of
227 * struct omap_hwmod_link records allocated (respectively)
228 */
229static unsigned short free_ls, max_ls, ls_supp;
Paul Walmsley63c85232009-09-03 20:14:03 +0300230
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600231/* inited: set to true once the hwmod code is initialized */
232static bool inited;
233
Paul Walmsley63c85232009-09-03 20:14:03 +0300234/* Private functions */
235
236/**
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600237 * _fetch_next_ocp_if - return the next OCP interface in a list
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600238 * @p: ptr to a ptr to the list_head inside the ocp_if to return
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600239 * @i: pointer to the index of the element pointed to by @p in the list
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600240 *
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600241 * Return a pointer to the struct omap_hwmod_ocp_if record
242 * containing the struct list_head pointed to by @p, and increment
243 * @p such that a future call to this routine will return the next
244 * record.
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600245 */
246static struct omap_hwmod_ocp_if *_fetch_next_ocp_if(struct list_head **p,
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600247 int *i)
248{
249 struct omap_hwmod_ocp_if *oi;
250
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600251 oi = list_entry(*p, struct omap_hwmod_link, node)->ocp_if;
252 *p = (*p)->next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600253
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600254 *i = *i + 1;
255
256 return oi;
257}
258
259/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300260 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
261 * @oh: struct omap_hwmod *
262 *
263 * Load the current value of the hwmod OCP_SYSCONFIG register into the
264 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
265 * OCP_SYSCONFIG register or 0 upon success.
266 */
267static int _update_sysc_cache(struct omap_hwmod *oh)
268{
Paul Walmsley43b40992010-02-22 22:09:34 -0700269 if (!oh->class->sysc) {
270 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 +0300271 return -EINVAL;
272 }
273
274 /* XXX ensure module interface clock is up */
275
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -0700276 oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +0300277
Paul Walmsley43b40992010-02-22 22:09:34 -0700278 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
Thara Gopinath883edfd2010-01-19 17:30:51 -0700279 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
Paul Walmsley63c85232009-09-03 20:14:03 +0300280
281 return 0;
282}
283
284/**
285 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
286 * @v: OCP_SYSCONFIG value to write
287 * @oh: struct omap_hwmod *
288 *
Paul Walmsley43b40992010-02-22 22:09:34 -0700289 * Write @v into the module class' OCP_SYSCONFIG register, if it has
290 * one. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +0300291 */
292static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
293{
Paul Walmsley43b40992010-02-22 22:09:34 -0700294 if (!oh->class->sysc) {
295 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 +0300296 return;
297 }
298
299 /* XXX ensure module interface clock is up */
300
Rajendra Nayak233cbe52010-12-14 12:42:36 -0700301 /* Module might have lost context, always update cache and register */
302 oh->_sysc_cache = v;
Lokesh Vutlaaaf2c0f2015-06-10 14:56:24 +0530303
304 /*
305 * Some IP blocks (such as RTC) require unlocking of IP before
306 * accessing its registers. If a function pointer is present
307 * to unlock, then call it before accessing sysconfig and
308 * call lock after writing sysconfig.
309 */
310 if (oh->class->unlock)
311 oh->class->unlock(oh);
312
Rajendra Nayak233cbe52010-12-14 12:42:36 -0700313 omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
Lokesh Vutlaaaf2c0f2015-06-10 14:56:24 +0530314
315 if (oh->class->lock)
316 oh->class->lock(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +0300317}
318
319/**
320 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
321 * @oh: struct omap_hwmod *
322 * @standbymode: MIDLEMODE field bits
323 * @v: pointer to register contents to modify
324 *
325 * Update the master standby mode bits in @v to be @standbymode for
326 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
327 * upon error or 0 upon success.
328 */
329static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
330 u32 *v)
331{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700332 u32 mstandby_mask;
333 u8 mstandby_shift;
334
Paul Walmsley43b40992010-02-22 22:09:34 -0700335 if (!oh->class->sysc ||
336 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300337 return -EINVAL;
338
Paul Walmsley43b40992010-02-22 22:09:34 -0700339 if (!oh->class->sysc->sysc_fields) {
340 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700341 return -EINVAL;
342 }
343
Paul Walmsley43b40992010-02-22 22:09:34 -0700344 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700345 mstandby_mask = (0x3 << mstandby_shift);
346
347 *v &= ~mstandby_mask;
348 *v |= __ffs(standbymode) << mstandby_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300349
350 return 0;
351}
352
353/**
354 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
355 * @oh: struct omap_hwmod *
356 * @idlemode: SIDLEMODE field bits
357 * @v: pointer to register contents to modify
358 *
359 * Update the slave idle mode bits in @v to be @idlemode for the @oh
360 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
361 * or 0 upon success.
362 */
363static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
364{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700365 u32 sidle_mask;
366 u8 sidle_shift;
367
Paul Walmsley43b40992010-02-22 22:09:34 -0700368 if (!oh->class->sysc ||
369 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300370 return -EINVAL;
371
Paul Walmsley43b40992010-02-22 22:09:34 -0700372 if (!oh->class->sysc->sysc_fields) {
373 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700374 return -EINVAL;
375 }
376
Paul Walmsley43b40992010-02-22 22:09:34 -0700377 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700378 sidle_mask = (0x3 << sidle_shift);
379
380 *v &= ~sidle_mask;
381 *v |= __ffs(idlemode) << sidle_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300382
383 return 0;
384}
385
386/**
387 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
388 * @oh: struct omap_hwmod *
389 * @clockact: CLOCKACTIVITY field bits
390 * @v: pointer to register contents to modify
391 *
392 * Update the clockactivity mode bits in @v to be @clockact for the
393 * @oh hwmod. Used for additional powersaving on some modules. Does
394 * not write to the hardware. Returns -EINVAL upon error or 0 upon
395 * success.
396 */
397static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
398{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700399 u32 clkact_mask;
400 u8 clkact_shift;
401
Paul Walmsley43b40992010-02-22 22:09:34 -0700402 if (!oh->class->sysc ||
403 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
Paul Walmsley63c85232009-09-03 20:14:03 +0300404 return -EINVAL;
405
Paul Walmsley43b40992010-02-22 22:09:34 -0700406 if (!oh->class->sysc->sysc_fields) {
407 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700408 return -EINVAL;
409 }
410
Paul Walmsley43b40992010-02-22 22:09:34 -0700411 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700412 clkact_mask = (0x3 << clkact_shift);
413
414 *v &= ~clkact_mask;
415 *v |= clockact << clkact_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300416
417 return 0;
418}
419
420/**
Roger Quadros313a76e2013-12-08 18:39:02 -0700421 * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v
Paul Walmsley63c85232009-09-03 20:14:03 +0300422 * @oh: struct omap_hwmod *
423 * @v: pointer to register contents to modify
424 *
425 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
426 * error or 0 upon success.
427 */
428static int _set_softreset(struct omap_hwmod *oh, u32 *v)
429{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700430 u32 softrst_mask;
431
Paul Walmsley43b40992010-02-22 22:09:34 -0700432 if (!oh->class->sysc ||
433 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley63c85232009-09-03 20:14:03 +0300434 return -EINVAL;
435
Paul Walmsley43b40992010-02-22 22:09:34 -0700436 if (!oh->class->sysc->sysc_fields) {
437 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700438 return -EINVAL;
439 }
440
Paul Walmsley43b40992010-02-22 22:09:34 -0700441 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700442
443 *v |= softrst_mask;
Paul Walmsley63c85232009-09-03 20:14:03 +0300444
445 return 0;
446}
447
448/**
Roger Quadros313a76e2013-12-08 18:39:02 -0700449 * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v
450 * @oh: struct omap_hwmod *
451 * @v: pointer to register contents to modify
452 *
453 * Clear the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
454 * error or 0 upon success.
455 */
456static int _clear_softreset(struct omap_hwmod *oh, u32 *v)
457{
458 u32 softrst_mask;
459
460 if (!oh->class->sysc ||
461 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
462 return -EINVAL;
463
464 if (!oh->class->sysc->sysc_fields) {
465 WARN(1,
466 "omap_hwmod: %s: sysc_fields absent for sysconfig class\n",
467 oh->name);
468 return -EINVAL;
469 }
470
471 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
472
473 *v &= ~softrst_mask;
474
475 return 0;
476}
477
478/**
Tero Kristo613ad0e2012-10-29 22:02:13 -0600479 * _wait_softreset_complete - wait for an OCP softreset to complete
480 * @oh: struct omap_hwmod * to wait on
481 *
482 * Wait until the IP block represented by @oh reports that its OCP
483 * softreset is complete. This can be triggered by software (see
484 * _ocp_softreset()) or by hardware upon returning from off-mode (one
485 * example is HSMMC). Waits for up to MAX_MODULE_SOFTRESET_WAIT
486 * microseconds. Returns the number of microseconds waited.
487 */
488static int _wait_softreset_complete(struct omap_hwmod *oh)
489{
490 struct omap_hwmod_class_sysconfig *sysc;
491 u32 softrst_mask;
492 int c = 0;
493
494 sysc = oh->class->sysc;
495
496 if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
497 omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs)
498 & SYSS_RESETDONE_MASK),
499 MAX_MODULE_SOFTRESET_WAIT, c);
500 else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
501 softrst_mask = (0x1 << sysc->sysc_fields->srst_shift);
502 omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs)
503 & softrst_mask),
504 MAX_MODULE_SOFTRESET_WAIT, c);
505 }
506
507 return c;
508}
509
510/**
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -0600511 * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
512 * @oh: struct omap_hwmod *
513 *
514 * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
515 * of some modules. When the DMA must perform read/write accesses, the
516 * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
517 * for power management, software must set the DMADISABLE bit back to 1.
518 *
519 * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon
520 * error or 0 upon success.
521 */
522static int _set_dmadisable(struct omap_hwmod *oh)
523{
524 u32 v;
525 u32 dmadisable_mask;
526
527 if (!oh->class->sysc ||
528 !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
529 return -EINVAL;
530
531 if (!oh->class->sysc->sysc_fields) {
532 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
533 return -EINVAL;
534 }
535
536 /* clocks must be on for this operation */
537 if (oh->_state != _HWMOD_STATE_ENABLED) {
538 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
539 return -EINVAL;
540 }
541
542 pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
543
544 v = oh->_sysc_cache;
545 dmadisable_mask =
546 (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
547 v |= dmadisable_mask;
548 _write_sysconfig(v, oh);
549
550 return 0;
551}
552
553/**
Paul Walmsley726072e2009-12-08 16:34:15 -0700554 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
555 * @oh: struct omap_hwmod *
556 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
557 * @v: pointer to register contents to modify
558 *
559 * Update the module autoidle bit in @v to be @autoidle for the @oh
560 * hwmod. The autoidle bit controls whether the module can gate
561 * internal clocks automatically when it isn't doing anything; the
562 * exact function of this bit varies on a per-module basis. This
563 * function does not write to the hardware. Returns -EINVAL upon
564 * error or 0 upon success.
565 */
566static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
567 u32 *v)
568{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700569 u32 autoidle_mask;
570 u8 autoidle_shift;
571
Paul Walmsley43b40992010-02-22 22:09:34 -0700572 if (!oh->class->sysc ||
573 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
Paul Walmsley726072e2009-12-08 16:34:15 -0700574 return -EINVAL;
575
Paul Walmsley43b40992010-02-22 22:09:34 -0700576 if (!oh->class->sysc->sysc_fields) {
577 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700578 return -EINVAL;
579 }
580
Paul Walmsley43b40992010-02-22 22:09:34 -0700581 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
Tarun Kanti DebBarma8985b632011-03-03 14:22:46 -0700582 autoidle_mask = (0x1 << autoidle_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700583
584 *v &= ~autoidle_mask;
585 *v |= autoidle << autoidle_shift;
Paul Walmsley726072e2009-12-08 16:34:15 -0700586
587 return 0;
588}
589
590/**
Govindraj Receec002011-12-16 14:36:58 -0700591 * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux
592 * @oh: struct omap_hwmod *
593 * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable
594 *
595 * Set or clear the I/O pad wakeup flag in the mux entries for the
596 * hwmod @oh. This function changes the @oh->mux->pads_dynamic array
597 * in memory. If the hwmod is currently idled, and the new idle
598 * values don't match the previous ones, this function will also
599 * update the SCM PADCTRL registers. Otherwise, if the hwmod is not
600 * currently idled, this function won't touch the hardware: the new
601 * mux settings are written to the SCM PADCTRL registers when the
602 * hwmod is idled. No return value.
603 */
604static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake)
605{
606 struct omap_device_pad *pad;
607 bool change = false;
608 u16 prev_idle;
609 int j;
610
611 if (!oh->mux || !oh->mux->enabled)
612 return;
613
614 for (j = 0; j < oh->mux->nr_pads_dynamic; j++) {
615 pad = oh->mux->pads_dynamic[j];
616
617 if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP))
618 continue;
619
620 prev_idle = pad->idle;
621
622 if (set_wake)
623 pad->idle |= OMAP_WAKEUP_EN;
624 else
625 pad->idle &= ~OMAP_WAKEUP_EN;
626
627 if (prev_idle != pad->idle)
628 change = true;
629 }
630
631 if (change && oh->_state == _HWMOD_STATE_IDLE)
632 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
633}
634
635/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300636 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
637 * @oh: struct omap_hwmod *
638 *
639 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
640 * upon error or 0 upon success.
641 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700642static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300643{
Paul Walmsley43b40992010-02-22 22:09:34 -0700644 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700645 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200646 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
647 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300648 return -EINVAL;
649
Paul Walmsley43b40992010-02-22 22:09:34 -0700650 if (!oh->class->sysc->sysc_fields) {
651 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700652 return -EINVAL;
653 }
654
Benoit Cousson1fe74112011-07-01 22:54:03 +0200655 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
656 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300657
Benoit Cousson86009eb2010-12-21 21:31:28 -0700658 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
659 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200660 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
661 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700662
Paul Walmsley63c85232009-09-03 20:14:03 +0300663 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
664
Paul Walmsley63c85232009-09-03 20:14:03 +0300665 return 0;
666}
667
668/**
669 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
670 * @oh: struct omap_hwmod *
671 *
672 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
673 * upon error or 0 upon success.
674 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700675static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300676{
Paul Walmsley43b40992010-02-22 22:09:34 -0700677 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700678 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200679 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
680 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300681 return -EINVAL;
682
Paul Walmsley43b40992010-02-22 22:09:34 -0700683 if (!oh->class->sysc->sysc_fields) {
684 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700685 return -EINVAL;
686 }
687
Benoit Cousson1fe74112011-07-01 22:54:03 +0200688 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
689 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
Paul Walmsley63c85232009-09-03 20:14:03 +0300690
Benoit Cousson86009eb2010-12-21 21:31:28 -0700691 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
692 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200693 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
Djamil Elaidi561038f2012-06-17 11:57:51 -0600694 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700695
Paul Walmsley63c85232009-09-03 20:14:03 +0300696 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
697
Paul Walmsley63c85232009-09-03 20:14:03 +0300698 return 0;
699}
700
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700701static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
702{
Rajendra Nayakc4a1ea22012-04-27 16:32:53 +0530703 struct clk_hw_omap *clk;
704
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700705 if (oh->clkdm) {
706 return oh->clkdm;
707 } else if (oh->_clk) {
Tero Kristo924f9492013-07-12 12:26:41 +0300708 if (__clk_get_flags(oh->_clk) & CLK_IS_BASIC)
709 return NULL;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700710 clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
711 return clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700712 }
713 return NULL;
714}
715
Paul Walmsley63c85232009-09-03 20:14:03 +0300716/**
717 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
718 * @oh: struct omap_hwmod *
719 *
720 * Prevent the hardware module @oh from entering idle while the
721 * hardare module initiator @init_oh is active. Useful when a module
722 * will be accessed by a particular initiator (e.g., if a module will
723 * be accessed by the IVA, there should be a sleepdep between the IVA
724 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700725 * mode. If the clockdomain is marked as not needing autodeps, return
726 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
727 * passes along clkdm_add_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300728 */
729static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
730{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700731 struct clockdomain *clkdm, *init_clkdm;
732
733 clkdm = _get_clkdm(oh);
734 init_clkdm = _get_clkdm(init_oh);
735
736 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300737 return -EINVAL;
738
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700739 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700740 return 0;
741
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700742 return clkdm_add_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300743}
744
745/**
746 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
747 * @oh: struct omap_hwmod *
748 *
749 * Allow the hardware module @oh to enter idle while the hardare
750 * module initiator @init_oh is active. Useful when a module will not
751 * be accessed by a particular initiator (e.g., if a module will not
752 * be accessed by the IVA, there should be no sleepdep between the IVA
753 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700754 * mode. If the clockdomain is marked as not needing autodeps, return
755 * 0 without doing anything. Returns -EINVAL upon error or passes
756 * along clkdm_del_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300757 */
758static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
759{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700760 struct clockdomain *clkdm, *init_clkdm;
761
762 clkdm = _get_clkdm(oh);
763 init_clkdm = _get_clkdm(init_oh);
764
765 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300766 return -EINVAL;
767
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700768 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700769 return 0;
770
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700771 return clkdm_del_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300772}
773
774/**
775 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
776 * @oh: struct omap_hwmod *
777 *
778 * Called from _init_clocks(). Populates the @oh _clk (main
779 * functional clock pointer) if a main_clk is present. Returns 0 on
780 * success or -EINVAL on error.
781 */
782static int _init_main_clk(struct omap_hwmod *oh)
783{
Paul Walmsley63c85232009-09-03 20:14:03 +0300784 int ret = 0;
785
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700786 if (!oh->main_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300787 return 0;
788
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600789 oh->_clk = clk_get(NULL, oh->main_clk);
790 if (IS_ERR(oh->_clk)) {
Joe Perches3d0cb732014-09-13 11:31:16 -0700791 pr_warn("omap_hwmod: %s: cannot clk_get main_clk %s\n",
792 oh->name, oh->main_clk);
Benoit Cousson63403382010-05-20 12:31:10 -0600793 return -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600794 }
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600795 /*
796 * HACK: This needs a re-visit once clk_prepare() is implemented
797 * to do something meaningful. Today its just a no-op.
798 * If clk_prepare() is used at some point to do things like
799 * voltage scaling etc, then this would have to be moved to
800 * some point where subsystems like i2c and pmic become
801 * available.
802 */
803 clk_prepare(oh->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300804
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700805 if (!_get_clkdm(oh))
Paul Walmsley3bb05db2012-09-23 17:28:18 -0600806 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600807 oh->name, oh->main_clk);
Kevin Hilman81d7c6f2009-12-08 16:34:24 -0700808
Paul Walmsley63c85232009-09-03 20:14:03 +0300809 return ret;
810}
811
812/**
Paul Walmsley887adea2010-07-26 16:34:33 -0600813 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
Paul Walmsley63c85232009-09-03 20:14:03 +0300814 * @oh: struct omap_hwmod *
815 *
816 * Called from _init_clocks(). Populates the @oh OCP slave interface
817 * clock pointers. Returns 0 on success or -EINVAL on error.
818 */
819static int _init_interface_clks(struct omap_hwmod *oh)
820{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600821 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600822 struct list_head *p;
Paul Walmsley63c85232009-09-03 20:14:03 +0300823 struct clk *c;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600824 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300825 int ret = 0;
826
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600827 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600828
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600829 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600830 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700831 if (!os->clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300832 continue;
833
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600834 c = clk_get(NULL, os->clk);
835 if (IS_ERR(c)) {
Joe Perches3d0cb732014-09-13 11:31:16 -0700836 pr_warn("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
837 oh->name, os->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300838 ret = -EINVAL;
Nishanth Menon0e7dc862013-12-08 18:39:03 -0700839 continue;
Benoit Coussondc759252010-06-23 18:15:12 -0600840 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300841 os->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600842 /*
843 * HACK: This needs a re-visit once clk_prepare() is implemented
844 * to do something meaningful. Today its just a no-op.
845 * If clk_prepare() is used at some point to do things like
846 * voltage scaling etc, then this would have to be moved to
847 * some point where subsystems like i2c and pmic become
848 * available.
849 */
850 clk_prepare(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300851 }
852
853 return ret;
854}
855
856/**
857 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
858 * @oh: struct omap_hwmod *
859 *
860 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
861 * clock pointers. Returns 0 on success or -EINVAL on error.
862 */
863static int _init_opt_clks(struct omap_hwmod *oh)
864{
865 struct omap_hwmod_opt_clk *oc;
866 struct clk *c;
867 int i;
868 int ret = 0;
869
870 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600871 c = clk_get(NULL, oc->clk);
872 if (IS_ERR(c)) {
Joe Perches3d0cb732014-09-13 11:31:16 -0700873 pr_warn("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
874 oh->name, oc->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300875 ret = -EINVAL;
Nishanth Menon0e7dc862013-12-08 18:39:03 -0700876 continue;
Benoit Coussondc759252010-06-23 18:15:12 -0600877 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300878 oc->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600879 /*
880 * HACK: This needs a re-visit once clk_prepare() is implemented
881 * to do something meaningful. Today its just a no-op.
882 * If clk_prepare() is used at some point to do things like
883 * voltage scaling etc, then this would have to be moved to
884 * some point where subsystems like i2c and pmic become
885 * available.
886 */
887 clk_prepare(oc->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300888 }
889
890 return ret;
891}
892
893/**
894 * _enable_clocks - enable hwmod main clock and interface clocks
895 * @oh: struct omap_hwmod *
896 *
897 * Enables all clocks necessary for register reads and writes to succeed
898 * on the hwmod @oh. Returns 0.
899 */
900static int _enable_clocks(struct omap_hwmod *oh)
901{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600902 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600903 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600904 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300905
906 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
907
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600908 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300909 clk_enable(oh->_clk);
910
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600911 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600912
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600913 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600914 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300915
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600916 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
917 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300918 }
919
920 /* The opt clocks are controlled by the device driver. */
921
922 return 0;
923}
924
925/**
926 * _disable_clocks - disable hwmod main clock and interface clocks
927 * @oh: struct omap_hwmod *
928 *
929 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
930 */
931static int _disable_clocks(struct omap_hwmod *oh)
932{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600933 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600934 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600935 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +0300936
937 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
938
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -0600939 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300940 clk_disable(oh->_clk);
941
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600942 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600943
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600944 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -0600945 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +0300946
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600947 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
948 clk_disable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300949 }
950
951 /* The opt clocks are controlled by the device driver. */
952
953 return 0;
954}
955
Benoit Cousson96835af2010-09-21 18:57:58 +0200956static void _enable_optional_clocks(struct omap_hwmod *oh)
957{
958 struct omap_hwmod_opt_clk *oc;
959 int i;
960
961 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
962
963 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
964 if (oc->_clk) {
965 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600966 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200967 clk_enable(oc->_clk);
968 }
969}
970
971static void _disable_optional_clocks(struct omap_hwmod *oh)
972{
973 struct omap_hwmod_opt_clk *oc;
974 int i;
975
976 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
977
978 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
979 if (oc->_clk) {
980 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600981 __clk_get_name(oc->_clk));
Benoit Cousson96835af2010-09-21 18:57:58 +0200982 clk_disable(oc->_clk);
983 }
984}
985
Paul Walmsley63c85232009-09-03 20:14:03 +0300986/**
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600987 * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
Benoit Cousson45c38252011-07-10 05:56:33 -0600988 * @oh: struct omap_hwmod *
989 *
990 * Enables the PRCM module mode related to the hwmod @oh.
991 * No return value.
992 */
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600993static void _omap4_enable_module(struct omap_hwmod *oh)
Benoit Cousson45c38252011-07-10 05:56:33 -0600994{
Benoit Cousson45c38252011-07-10 05:56:33 -0600995 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
996 return;
997
Kevin Hilman3d9f0322012-06-18 12:12:23 -0600998 pr_debug("omap_hwmod: %s: %s: %d\n",
999 oh->name, __func__, oh->prcm.omap4.modulemode);
Benoit Cousson45c38252011-07-10 05:56:33 -06001000
Tero Kristo128603f2014-10-27 08:39:24 -07001001 omap_cm_module_enable(oh->prcm.omap4.modulemode,
1002 oh->clkdm->prcm_partition,
1003 oh->clkdm->cm_inst, oh->prcm.omap4.clkctrl_offs);
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001004}
1005
1006/**
Benoit Coussonbfc141e2011-12-16 16:09:11 -08001007 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
1008 * @oh: struct omap_hwmod *
1009 *
1010 * Wait for a module @oh to enter slave idle. Returns 0 if the module
1011 * does not have an IDLEST bit or if the module successfully enters
1012 * slave idle; otherwise, pass along the return value of the
1013 * appropriate *_cm*_wait_module_idle() function.
1014 */
1015static int _omap4_wait_target_disable(struct omap_hwmod *oh)
1016{
Paul Walmsley2b026d12012-09-23 17:28:18 -06001017 if (!oh)
Benoit Coussonbfc141e2011-12-16 16:09:11 -08001018 return -EINVAL;
1019
Paul Walmsley2b026d12012-09-23 17:28:18 -06001020 if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
Benoit Coussonbfc141e2011-12-16 16:09:11 -08001021 return 0;
1022
1023 if (oh->flags & HWMOD_NO_IDLEST)
1024 return 0;
1025
Tero Kristoa8ae5af2014-10-27 08:39:23 -07001026 return omap_cm_wait_module_idle(oh->clkdm->prcm_partition,
1027 oh->clkdm->cm_inst,
1028 oh->prcm.omap4.clkctrl_offs, 0);
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001029}
1030
1031/**
Paul Walmsley212738a2011-07-09 19:14:06 -06001032 * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh
1033 * @oh: struct omap_hwmod *oh
1034 *
1035 * Count and return the number of MPU IRQs associated with the hwmod
1036 * @oh. Used to allocate struct resource data. Returns 0 if @oh is
1037 * NULL.
1038 */
1039static int _count_mpu_irqs(struct omap_hwmod *oh)
1040{
1041 struct omap_hwmod_irq_info *ohii;
1042 int i = 0;
1043
1044 if (!oh || !oh->mpu_irqs)
1045 return 0;
1046
1047 do {
1048 ohii = &oh->mpu_irqs[i++];
1049 } while (ohii->irq != -1);
1050
sricharancc1b07652011-11-23 14:35:07 -08001051 return i-1;
Paul Walmsley212738a2011-07-09 19:14:06 -06001052}
1053
1054/**
Paul Walmsleybc614952011-07-09 19:14:07 -06001055 * _count_sdma_reqs - count the number of SDMA request lines associated with @oh
1056 * @oh: struct omap_hwmod *oh
1057 *
1058 * Count and return the number of SDMA request lines associated with
1059 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1060 * if @oh is NULL.
1061 */
1062static int _count_sdma_reqs(struct omap_hwmod *oh)
1063{
1064 struct omap_hwmod_dma_info *ohdi;
1065 int i = 0;
1066
1067 if (!oh || !oh->sdma_reqs)
1068 return 0;
1069
1070 do {
1071 ohdi = &oh->sdma_reqs[i++];
1072 } while (ohdi->dma_req != -1);
1073
sricharancc1b07652011-11-23 14:35:07 -08001074 return i-1;
Paul Walmsleybc614952011-07-09 19:14:07 -06001075}
1076
1077/**
Paul Walmsley78183f32011-07-09 19:14:05 -06001078 * _count_ocp_if_addr_spaces - count the number of address space entries for @oh
1079 * @oh: struct omap_hwmod *oh
1080 *
1081 * Count and return the number of address space ranges associated with
1082 * the hwmod @oh. Used to allocate struct resource data. Returns 0
1083 * if @oh is NULL.
1084 */
1085static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os)
1086{
1087 struct omap_hwmod_addr_space *mem;
1088 int i = 0;
1089
1090 if (!os || !os->addr)
1091 return 0;
1092
1093 do {
1094 mem = &os->addr[i++];
1095 } while (mem->pa_start != mem->pa_end);
1096
sricharancc1b07652011-11-23 14:35:07 -08001097 return i-1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001098}
1099
1100/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001101 * _get_mpu_irq_by_name - fetch MPU interrupt line number by name
1102 * @oh: struct omap_hwmod * to operate on
1103 * @name: pointer to the name of the MPU interrupt number to fetch (optional)
1104 * @irq: pointer to an unsigned int to store the MPU IRQ number to
1105 *
1106 * Retrieve a MPU hardware IRQ line number named by @name associated
1107 * with the IP block pointed to by @oh. The IRQ number will be filled
1108 * into the address pointed to by @dma. When @name is non-null, the
1109 * IRQ line number associated with the named entry will be returned.
1110 * If @name is null, the first matching entry will be returned. Data
1111 * order is not meaningful in hwmod data, so callers are strongly
1112 * encouraged to use a non-null @name whenever possible to avoid
1113 * unpredictable effects if hwmod data is later added that causes data
1114 * ordering to change. Returns 0 upon success or a negative error
1115 * code upon error.
1116 */
1117static int _get_mpu_irq_by_name(struct omap_hwmod *oh, const char *name,
1118 unsigned int *irq)
1119{
1120 int i;
1121 bool found = false;
1122
1123 if (!oh->mpu_irqs)
1124 return -ENOENT;
1125
1126 i = 0;
1127 while (oh->mpu_irqs[i].irq != -1) {
1128 if (name == oh->mpu_irqs[i].name ||
1129 !strcmp(name, oh->mpu_irqs[i].name)) {
1130 found = true;
1131 break;
1132 }
1133 i++;
1134 }
1135
1136 if (!found)
1137 return -ENOENT;
1138
1139 *irq = oh->mpu_irqs[i].irq;
1140
1141 return 0;
1142}
1143
1144/**
1145 * _get_sdma_req_by_name - fetch SDMA request line ID by name
1146 * @oh: struct omap_hwmod * to operate on
1147 * @name: pointer to the name of the SDMA request line to fetch (optional)
1148 * @dma: pointer to an unsigned int to store the request line ID to
1149 *
1150 * Retrieve an SDMA request line ID named by @name on the IP block
1151 * pointed to by @oh. The ID will be filled into the address pointed
1152 * to by @dma. When @name is non-null, the request line ID associated
1153 * with the named entry will be returned. If @name is null, the first
1154 * matching entry will be returned. Data order is not meaningful in
1155 * hwmod data, so callers are strongly encouraged to use a non-null
1156 * @name whenever possible to avoid unpredictable effects if hwmod
1157 * data is later added that causes data ordering to change. Returns 0
1158 * upon success or a negative error code upon error.
1159 */
1160static int _get_sdma_req_by_name(struct omap_hwmod *oh, const char *name,
1161 unsigned int *dma)
1162{
1163 int i;
1164 bool found = false;
1165
1166 if (!oh->sdma_reqs)
1167 return -ENOENT;
1168
1169 i = 0;
1170 while (oh->sdma_reqs[i].dma_req != -1) {
1171 if (name == oh->sdma_reqs[i].name ||
1172 !strcmp(name, oh->sdma_reqs[i].name)) {
1173 found = true;
1174 break;
1175 }
1176 i++;
1177 }
1178
1179 if (!found)
1180 return -ENOENT;
1181
1182 *dma = oh->sdma_reqs[i].dma_req;
1183
1184 return 0;
1185}
1186
1187/**
1188 * _get_addr_space_by_name - fetch address space start & end by name
1189 * @oh: struct omap_hwmod * to operate on
1190 * @name: pointer to the name of the address space to fetch (optional)
1191 * @pa_start: pointer to a u32 to store the starting address to
1192 * @pa_end: pointer to a u32 to store the ending address to
1193 *
1194 * Retrieve address space start and end addresses for the IP block
1195 * pointed to by @oh. The data will be filled into the addresses
1196 * pointed to by @pa_start and @pa_end. When @name is non-null, the
1197 * address space data associated with the named entry will be
1198 * returned. If @name is null, the first matching entry will be
1199 * returned. Data order is not meaningful in hwmod data, so callers
1200 * are strongly encouraged to use a non-null @name whenever possible
1201 * to avoid unpredictable effects if hwmod data is later added that
1202 * causes data ordering to change. Returns 0 upon success or a
1203 * negative error code upon error.
1204 */
1205static int _get_addr_space_by_name(struct omap_hwmod *oh, const char *name,
1206 u32 *pa_start, u32 *pa_end)
1207{
1208 int i, j;
1209 struct omap_hwmod_ocp_if *os;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001210 struct list_head *p = NULL;
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001211 bool found = false;
1212
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001213 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001214
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001215 i = 0;
1216 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001217 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5e8370f2012-04-18 19:10:06 -06001218
1219 if (!os->addr)
1220 return -ENOENT;
1221
1222 j = 0;
1223 while (os->addr[j].pa_start != os->addr[j].pa_end) {
1224 if (name == os->addr[j].name ||
1225 !strcmp(name, os->addr[j].name)) {
1226 found = true;
1227 break;
1228 }
1229 j++;
1230 }
1231
1232 if (found)
1233 break;
1234 }
1235
1236 if (!found)
1237 return -ENOENT;
1238
1239 *pa_start = os->addr[j].pa_start;
1240 *pa_end = os->addr[j].pa_end;
1241
1242 return 0;
1243}
1244
1245/**
Paul Walmsley24dbc212012-04-19 04:04:29 -06001246 * _save_mpu_port_index - find and save the index to @oh's MPU port
Paul Walmsley63c85232009-09-03 20:14:03 +03001247 * @oh: struct omap_hwmod *
1248 *
Paul Walmsley24dbc212012-04-19 04:04:29 -06001249 * Determines the array index of the OCP slave port that the MPU uses
1250 * to address the device, and saves it into the struct omap_hwmod.
1251 * Intended to be called during hwmod registration only. No return
1252 * value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001253 */
Paul Walmsley24dbc212012-04-19 04:04:29 -06001254static void __init _save_mpu_port_index(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001255{
Paul Walmsley24dbc212012-04-19 04:04:29 -06001256 struct omap_hwmod_ocp_if *os = NULL;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001257 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001258 int i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001259
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001260 if (!oh)
Paul Walmsley24dbc212012-04-19 04:04:29 -06001261 return;
1262
1263 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001264
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001265 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001266
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001267 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001268 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley63c85232009-09-03 20:14:03 +03001269 if (os->user & OCP_USER_MPU) {
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001270 oh->_mpu_port = os;
Paul Walmsley24dbc212012-04-19 04:04:29 -06001271 oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001272 break;
1273 }
1274 }
1275
Paul Walmsley24dbc212012-04-19 04:04:29 -06001276 return;
Paul Walmsley63c85232009-09-03 20:14:03 +03001277}
1278
1279/**
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001280 * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1281 * @oh: struct omap_hwmod *
1282 *
1283 * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1284 * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1285 * communicate with the IP block. This interface need not be directly
1286 * connected to the MPU (and almost certainly is not), but is directly
1287 * connected to the IP block represented by @oh. Returns a pointer
1288 * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1289 * error or if there does not appear to be a path from the MPU to this
1290 * IP block.
1291 */
1292static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1293{
1294 if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1295 return NULL;
1296
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001297 return oh->_mpu_port;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001298};
1299
1300/**
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001301 * _find_mpu_rt_addr_space - return MPU register target address space for @oh
Paul Walmsley63c85232009-09-03 20:14:03 +03001302 * @oh: struct omap_hwmod *
1303 *
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001304 * Returns a pointer to the struct omap_hwmod_addr_space record representing
1305 * the register target MPU address space; or returns NULL upon error.
Paul Walmsley63c85232009-09-03 20:14:03 +03001306 */
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001307static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001308{
1309 struct omap_hwmod_ocp_if *os;
1310 struct omap_hwmod_addr_space *mem;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001311 int found = 0, i = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001312
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001313 os = _find_mpu_rt_port(oh);
Paul Walmsley24dbc212012-04-19 04:04:29 -06001314 if (!os || !os->addr)
Paul Walmsley78183f32011-07-09 19:14:05 -06001315 return NULL;
1316
1317 do {
1318 mem = &os->addr[i++];
1319 if (mem->flags & ADDR_TYPE_RT)
Paul Walmsley63c85232009-09-03 20:14:03 +03001320 found = 1;
Paul Walmsley78183f32011-07-09 19:14:05 -06001321 } while (!found && mem->pa_start != mem->pa_end);
Paul Walmsley63c85232009-09-03 20:14:03 +03001322
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06001323 return (found) ? mem : NULL;
Paul Walmsley63c85232009-09-03 20:14:03 +03001324}
1325
1326/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001327 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001328 * @oh: struct omap_hwmod *
1329 *
Paul Walmsley006c7f12012-07-04 05:22:53 -06001330 * Ensure that the OCP_SYSCONFIG register for the IP block represented
1331 * by @oh is set to indicate to the PRCM that the IP block is active.
1332 * Usually this means placing the module into smart-idle mode and
1333 * smart-standby, but if there is a bug in the automatic idle handling
1334 * for the IP block, it may need to be placed into the force-idle or
1335 * no-idle variants of these modes. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001336 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001337static void _enable_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001338{
Paul Walmsley43b40992010-02-22 22:09:34 -07001339 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001340 u32 v;
Paul Walmsley006c7f12012-07-04 05:22:53 -06001341 bool clkdm_act;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001342 struct clockdomain *clkdm;
Paul Walmsley63c85232009-09-03 20:14:03 +03001343
Paul Walmsley43b40992010-02-22 22:09:34 -07001344 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001345 return;
1346
Tero Kristo613ad0e2012-10-29 22:02:13 -06001347 /*
1348 * Wait until reset has completed, this is needed as the IP
1349 * block is reset automatically by hardware in some cases
1350 * (off-mode for example), and the drivers require the
1351 * IP to be ready when they access it
1352 */
1353 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1354 _enable_optional_clocks(oh);
1355 _wait_softreset_complete(oh);
1356 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1357 _disable_optional_clocks(oh);
1358
Paul Walmsley63c85232009-09-03 20:14:03 +03001359 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001360 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001361
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001362 clkdm = _get_clkdm(oh);
Paul Walmsley43b40992010-02-22 22:09:34 -07001363 if (sf & SYSC_HAS_SIDLEMODE) {
Rajendra Nayakca43ea32013-05-15 20:18:38 +05301364 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1365 oh->flags & HWMOD_SWSUP_SIDLE_ACT) {
Rajendra Nayak35513172013-05-15 20:18:37 +05301366 idlemode = HWMOD_IDLEMODE_NO;
1367 } else {
1368 if (sf & SYSC_HAS_ENAWAKEUP)
1369 _enable_wakeup(oh, &v);
1370 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1371 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1372 else
1373 idlemode = HWMOD_IDLEMODE_SMART;
1374 }
1375
1376 /*
1377 * This is special handling for some IPs like
1378 * 32k sync timer. Force them to idle!
1379 */
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001380 clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
Paul Walmsley006c7f12012-07-04 05:22:53 -06001381 if (clkdm_act && !(oh->class->sysc->idlemodes &
1382 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1383 idlemode = HWMOD_IDLEMODE_FORCE;
Rajendra Nayak35513172013-05-15 20:18:37 +05301384
Paul Walmsley63c85232009-09-03 20:14:03 +03001385 _set_slave_idlemode(oh, idlemode, &v);
1386 }
1387
Paul Walmsley43b40992010-02-22 22:09:34 -07001388 if (sf & SYSC_HAS_MIDLEMODE) {
Grazvydas Ignotas092bc082013-03-11 21:49:00 +02001389 if (oh->flags & HWMOD_FORCE_MSTANDBY) {
1390 idlemode = HWMOD_IDLEMODE_FORCE;
1391 } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001392 idlemode = HWMOD_IDLEMODE_NO;
1393 } else {
1394 if (sf & SYSC_HAS_ENAWAKEUP)
1395 _enable_wakeup(oh, &v);
1396 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1397 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1398 else
1399 idlemode = HWMOD_IDLEMODE_SMART;
1400 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001401 _set_master_standbymode(oh, idlemode, &v);
1402 }
1403
Paul Walmsleya16b1f72009-12-08 16:34:17 -07001404 /*
1405 * XXX The clock framework should handle this, by
1406 * calling into this code. But this must wait until the
1407 * clock structures are tagged with omap_hwmod entries
1408 */
Paul Walmsley43b40992010-02-22 22:09:34 -07001409 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1410 (sf & SYSC_HAS_CLOCKACTIVITY))
1411 _set_clockactivity(oh, oh->class->sysc->clockact, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001412
Jon Hunter127500c2013-08-23 04:40:23 -06001413 /* If the cached value is the same as the new value, skip the write */
1414 if (oh->_sysc_cache != v)
1415 _write_sysconfig(v, oh);
Hema HK78f26e82010-09-24 10:23:19 -06001416
1417 /*
1418 * Set the autoidle bit only after setting the smartidle bit
1419 * Setting this will not have any impact on the other modules.
1420 */
1421 if (sf & SYSC_HAS_AUTOIDLE) {
1422 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1423 0 : 1;
1424 _set_module_autoidle(oh, idlemode, &v);
1425 _write_sysconfig(v, oh);
1426 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001427}
1428
1429/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001430 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001431 * @oh: struct omap_hwmod *
1432 *
1433 * If module is marked as SWSUP_SIDLE, force the module into slave
1434 * idle; otherwise, configure it for smart-idle. If module is marked
1435 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1436 * configure it for smart-standby. No return value.
1437 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001438static void _idle_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001439{
Paul Walmsley43b40992010-02-22 22:09:34 -07001440 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001441 u32 v;
1442
Paul Walmsley43b40992010-02-22 22:09:34 -07001443 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001444 return;
1445
1446 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001447 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001448
Paul Walmsley43b40992010-02-22 22:09:34 -07001449 if (sf & SYSC_HAS_SIDLEMODE) {
Rajendra Nayak35513172013-05-15 20:18:37 +05301450 if (oh->flags & HWMOD_SWSUP_SIDLE) {
Paul Walmsley006c7f12012-07-04 05:22:53 -06001451 idlemode = HWMOD_IDLEMODE_FORCE;
Rajendra Nayak35513172013-05-15 20:18:37 +05301452 } else {
1453 if (sf & SYSC_HAS_ENAWAKEUP)
1454 _enable_wakeup(oh, &v);
1455 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1456 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1457 else
1458 idlemode = HWMOD_IDLEMODE_SMART;
1459 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001460 _set_slave_idlemode(oh, idlemode, &v);
1461 }
1462
Paul Walmsley43b40992010-02-22 22:09:34 -07001463 if (sf & SYSC_HAS_MIDLEMODE) {
Grazvydas Ignotas092bc082013-03-11 21:49:00 +02001464 if ((oh->flags & HWMOD_SWSUP_MSTANDBY) ||
1465 (oh->flags & HWMOD_FORCE_MSTANDBY)) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001466 idlemode = HWMOD_IDLEMODE_FORCE;
1467 } else {
1468 if (sf & SYSC_HAS_ENAWAKEUP)
1469 _enable_wakeup(oh, &v);
1470 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1471 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1472 else
1473 idlemode = HWMOD_IDLEMODE_SMART;
1474 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001475 _set_master_standbymode(oh, idlemode, &v);
1476 }
1477
1478 _write_sysconfig(v, oh);
1479}
1480
1481/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001482 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001483 * @oh: struct omap_hwmod *
1484 *
1485 * Force the module into slave idle and master suspend. No return
1486 * value.
1487 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001488static void _shutdown_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001489{
1490 u32 v;
Paul Walmsley43b40992010-02-22 22:09:34 -07001491 u8 sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001492
Paul Walmsley43b40992010-02-22 22:09:34 -07001493 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001494 return;
1495
1496 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001497 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001498
Paul Walmsley43b40992010-02-22 22:09:34 -07001499 if (sf & SYSC_HAS_SIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001500 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1501
Paul Walmsley43b40992010-02-22 22:09:34 -07001502 if (sf & SYSC_HAS_MIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001503 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1504
Paul Walmsley43b40992010-02-22 22:09:34 -07001505 if (sf & SYSC_HAS_AUTOIDLE)
Paul Walmsley726072e2009-12-08 16:34:15 -07001506 _set_module_autoidle(oh, 1, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001507
1508 _write_sysconfig(v, oh);
1509}
1510
1511/**
1512 * _lookup - find an omap_hwmod by name
1513 * @name: find an omap_hwmod by name
1514 *
1515 * Return a pointer to an omap_hwmod by name, or NULL if not found.
Paul Walmsley63c85232009-09-03 20:14:03 +03001516 */
1517static struct omap_hwmod *_lookup(const char *name)
1518{
1519 struct omap_hwmod *oh, *temp_oh;
1520
1521 oh = NULL;
1522
1523 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1524 if (!strcmp(name, temp_oh->name)) {
1525 oh = temp_oh;
1526 break;
1527 }
1528 }
1529
1530 return oh;
1531}
Paul Walmsley868c1572012-06-19 15:01:02 -06001532
Benoit Cousson6ae76992011-07-10 05:56:30 -06001533/**
1534 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1535 * @oh: struct omap_hwmod *
1536 *
1537 * Convert a clockdomain name stored in a struct omap_hwmod into a
1538 * clockdomain pointer, and save it into the struct omap_hwmod.
Paul Walmsley868c1572012-06-19 15:01:02 -06001539 * Return -EINVAL if the clkdm_name lookup failed.
Benoit Cousson6ae76992011-07-10 05:56:30 -06001540 */
1541static int _init_clkdm(struct omap_hwmod *oh)
1542{
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001543 if (!oh->clkdm_name) {
1544 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
Benoit Cousson6ae76992011-07-10 05:56:30 -06001545 return 0;
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001546 }
Benoit Cousson6ae76992011-07-10 05:56:30 -06001547
Benoit Cousson6ae76992011-07-10 05:56:30 -06001548 oh->clkdm = clkdm_lookup(oh->clkdm_name);
1549 if (!oh->clkdm) {
Joe Perches3d0cb732014-09-13 11:31:16 -07001550 pr_warn("omap_hwmod: %s: could not associate to clkdm %s\n",
Benoit Cousson6ae76992011-07-10 05:56:30 -06001551 oh->name, oh->clkdm_name);
Tero Kristo0385c582013-07-17 18:03:25 +03001552 return 0;
Benoit Cousson6ae76992011-07-10 05:56:30 -06001553 }
1554
1555 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1556 oh->name, oh->clkdm_name);
1557
1558 return 0;
1559}
Paul Walmsley63c85232009-09-03 20:14:03 +03001560
1561/**
Benoit Cousson6ae76992011-07-10 05:56:30 -06001562 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1563 * well the clockdomain.
Paul Walmsley63c85232009-09-03 20:14:03 +03001564 * @oh: struct omap_hwmod *
Paul Walmsley97d60162010-07-26 16:34:30 -06001565 * @data: not used; pass NULL
Paul Walmsley63c85232009-09-03 20:14:03 +03001566 *
Paul Walmsleya2debdb2011-02-23 00:14:07 -07001567 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
Paul Walmsley48d54f32011-02-23 00:14:07 -07001568 * Resolves all clock names embedded in the hwmod. Returns 0 on
1569 * success, or a negative error code on failure.
Paul Walmsley63c85232009-09-03 20:14:03 +03001570 */
Paul Walmsley97d60162010-07-26 16:34:30 -06001571static int _init_clocks(struct omap_hwmod *oh, void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03001572{
1573 int ret = 0;
1574
Paul Walmsley48d54f32011-02-23 00:14:07 -07001575 if (oh->_state != _HWMOD_STATE_REGISTERED)
1576 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001577
1578 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1579
Vaibhav Hiremathb797be12012-07-09 18:24:30 +05301580 if (soc_ops.init_clkdm)
1581 ret |= soc_ops.init_clkdm(oh);
1582
Paul Walmsley63c85232009-09-03 20:14:03 +03001583 ret |= _init_main_clk(oh);
1584 ret |= _init_interface_clks(oh);
1585 ret |= _init_opt_clks(oh);
1586
Benoit Coussonf5c1f842010-05-20 12:31:10 -06001587 if (!ret)
1588 oh->_state = _HWMOD_STATE_CLKS_INITED;
Benoit Cousson66522712011-07-01 22:54:06 +02001589 else
Joe Perches3d0cb732014-09-13 11:31:16 -07001590 pr_warn("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001591
Rajendra Nayak09c35f22011-02-16 12:11:24 +00001592 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001593}
1594
1595/**
omar ramirezcc1226e2011-03-04 13:32:44 -07001596 * _lookup_hardreset - fill register bit info for this hwmod/reset line
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001597 * @oh: struct omap_hwmod *
1598 * @name: name of the reset line in the context of this hwmod
omar ramirezcc1226e2011-03-04 13:32:44 -07001599 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001600 *
1601 * Return the bit position of the reset line that match the
1602 * input name. Return -ENOENT if not found.
1603 */
Paul Walmsleya032d332012-08-03 09:21:10 -06001604static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1605 struct omap_hwmod_rst_info *ohri)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001606{
1607 int i;
1608
1609 for (i = 0; i < oh->rst_lines_cnt; i++) {
1610 const char *rst_line = oh->rst_lines[i].name;
1611 if (!strcmp(rst_line, name)) {
omar ramirezcc1226e2011-03-04 13:32:44 -07001612 ohri->rst_shift = oh->rst_lines[i].rst_shift;
1613 ohri->st_shift = oh->rst_lines[i].st_shift;
1614 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1615 oh->name, __func__, rst_line, ohri->rst_shift,
1616 ohri->st_shift);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001617
omar ramirezcc1226e2011-03-04 13:32:44 -07001618 return 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001619 }
1620 }
1621
1622 return -ENOENT;
1623}
1624
1625/**
1626 * _assert_hardreset - assert the HW reset line of submodules
1627 * contained in the hwmod module.
1628 * @oh: struct omap_hwmod *
1629 * @name: name of the reset line to lookup and assert
1630 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001631 * Some IP like dsp, ipu or iva contain processor that require an HW
1632 * reset line to be assert / deassert in order to enable fully the IP.
1633 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1634 * asserting the hardreset line on the currently-booted SoC, or passes
1635 * along the return value from _lookup_hardreset() or the SoC's
1636 * assert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001637 */
1638static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1639{
omar ramirezcc1226e2011-03-04 13:32:44 -07001640 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001641 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001642
1643 if (!oh)
1644 return -EINVAL;
1645
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001646 if (!soc_ops.assert_hardreset)
1647 return -ENOSYS;
1648
omar ramirezcc1226e2011-03-04 13:32:44 -07001649 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001650 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001651 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001652
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001653 ret = soc_ops.assert_hardreset(oh, &ohri);
1654
1655 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001656}
1657
1658/**
1659 * _deassert_hardreset - deassert the HW reset line of submodules contained
1660 * in the hwmod module.
1661 * @oh: struct omap_hwmod *
1662 * @name: name of the reset line to look up and deassert
1663 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001664 * Some IP like dsp, ipu or iva contain processor that require an HW
1665 * reset line to be assert / deassert in order to enable fully the IP.
1666 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1667 * deasserting the hardreset line on the currently-booted SoC, or passes
1668 * along the return value from _lookup_hardreset() or the SoC's
1669 * deassert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001670 */
1671static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1672{
omar ramirezcc1226e2011-03-04 13:32:44 -07001673 struct omap_hwmod_rst_info ohri;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001674 int ret = -EINVAL;
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001675 int hwsup = 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001676
1677 if (!oh)
1678 return -EINVAL;
1679
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001680 if (!soc_ops.deassert_hardreset)
1681 return -ENOSYS;
1682
omar ramirezcc1226e2011-03-04 13:32:44 -07001683 ret = _lookup_hardreset(oh, name, &ohri);
Russell Kingc48cd652013-03-13 20:44:21 +00001684 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001685 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001686
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001687 if (oh->clkdm) {
1688 /*
1689 * A clockdomain must be in SW_SUP otherwise reset
1690 * might not be completed. The clockdomain can be set
1691 * in HW_AUTO only when the module become ready.
1692 */
1693 hwsup = clkdm_in_hwsup(oh->clkdm);
1694 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1695 if (ret) {
1696 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1697 oh->name, oh->clkdm->name, ret);
1698 return ret;
1699 }
1700 }
1701
1702 _enable_clocks(oh);
1703 if (soc_ops.enable_module)
1704 soc_ops.enable_module(oh);
1705
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001706 ret = soc_ops.deassert_hardreset(oh, &ohri);
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001707
1708 if (soc_ops.disable_module)
1709 soc_ops.disable_module(oh);
1710 _disable_clocks(oh);
1711
omar ramirezcc1226e2011-03-04 13:32:44 -07001712 if (ret == -EBUSY)
Joe Perches3d0cb732014-09-13 11:31:16 -07001713 pr_warn("omap_hwmod: %s: failed to hardreset\n", oh->name);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001714
Tero Kristo80d25182015-02-26 18:06:00 +02001715 if (oh->clkdm) {
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001716 /*
1717 * Set the clockdomain to HW_AUTO, assuming that the
1718 * previous state was HW_AUTO.
1719 */
Tero Kristo80d25182015-02-26 18:06:00 +02001720 if (hwsup)
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001721 clkdm_allow_idle(oh->clkdm);
Tero Kristo80d25182015-02-26 18:06:00 +02001722
1723 clkdm_hwmod_disable(oh->clkdm, oh);
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001724 }
1725
omar ramirezcc1226e2011-03-04 13:32:44 -07001726 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001727}
1728
1729/**
1730 * _read_hardreset - read the HW reset line state of submodules
1731 * contained in the hwmod module
1732 * @oh: struct omap_hwmod *
1733 * @name: name of the reset line to look up and read
1734 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001735 * Return the state of the reset line. Returns -EINVAL if @oh is
1736 * null, -ENOSYS if we have no way of reading the hardreset line
1737 * status on the currently-booted SoC, or passes along the return
1738 * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1739 * code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001740 */
1741static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1742{
omar ramirezcc1226e2011-03-04 13:32:44 -07001743 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001744 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001745
1746 if (!oh)
1747 return -EINVAL;
1748
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001749 if (!soc_ops.is_hardreset_asserted)
1750 return -ENOSYS;
1751
omar ramirezcc1226e2011-03-04 13:32:44 -07001752 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001753 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001754 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001755
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001756 return soc_ops.is_hardreset_asserted(oh, &ohri);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001757}
1758
1759/**
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001760 * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
Paul Walmsley747834a2012-04-18 19:10:04 -06001761 * @oh: struct omap_hwmod *
1762 *
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001763 * If all hardreset lines associated with @oh are asserted, then return true.
1764 * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1765 * associated with @oh are asserted, then return false.
Paul Walmsley747834a2012-04-18 19:10:04 -06001766 * This function is used to avoid executing some parts of the IP block
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001767 * enable/disable sequence if its hardreset line is set.
Paul Walmsley747834a2012-04-18 19:10:04 -06001768 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001769static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
Paul Walmsley747834a2012-04-18 19:10:04 -06001770{
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001771 int i, rst_cnt = 0;
Paul Walmsley747834a2012-04-18 19:10:04 -06001772
1773 if (oh->rst_lines_cnt == 0)
1774 return false;
1775
1776 for (i = 0; i < oh->rst_lines_cnt; i++)
1777 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001778 rst_cnt++;
1779
1780 if (oh->rst_lines_cnt == rst_cnt)
1781 return true;
Paul Walmsley747834a2012-04-18 19:10:04 -06001782
1783 return false;
1784}
1785
1786/**
Paul Walmsleye9332b62012-10-08 23:08:15 -06001787 * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1788 * hard-reset
1789 * @oh: struct omap_hwmod *
1790 *
1791 * If any hardreset lines associated with @oh are asserted, then
1792 * return true. Otherwise, if no hardreset lines associated with @oh
1793 * are asserted, or if @oh has no hardreset lines, then return false.
1794 * This function is used to avoid executing some parts of the IP block
1795 * enable/disable sequence if any hardreset line is set.
1796 */
1797static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1798{
1799 int rst_cnt = 0;
1800 int i;
1801
1802 for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1803 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1804 rst_cnt++;
1805
1806 return (rst_cnt) ? true : false;
1807}
1808
1809/**
Paul Walmsley747834a2012-04-18 19:10:04 -06001810 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1811 * @oh: struct omap_hwmod *
1812 *
1813 * Disable the PRCM module mode related to the hwmod @oh.
1814 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1815 */
1816static int _omap4_disable_module(struct omap_hwmod *oh)
1817{
1818 int v;
1819
Paul Walmsley747834a2012-04-18 19:10:04 -06001820 if (!oh->clkdm || !oh->prcm.omap4.modulemode)
1821 return -EINVAL;
1822
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001823 /*
1824 * Since integration code might still be doing something, only
1825 * disable if all lines are under hardreset.
1826 */
Paul Walmsleye9332b62012-10-08 23:08:15 -06001827 if (_are_any_hardreset_lines_asserted(oh))
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001828 return 0;
1829
Paul Walmsley747834a2012-04-18 19:10:04 -06001830 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1831
Tero Kristo128603f2014-10-27 08:39:24 -07001832 omap_cm_module_disable(oh->clkdm->prcm_partition, oh->clkdm->cm_inst,
1833 oh->prcm.omap4.clkctrl_offs);
Paul Walmsley747834a2012-04-18 19:10:04 -06001834
Paul Walmsley747834a2012-04-18 19:10:04 -06001835 v = _omap4_wait_target_disable(oh);
1836 if (v)
1837 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1838 oh->name);
1839
1840 return 0;
1841}
1842
1843/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001844 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
Paul Walmsley63c85232009-09-03 20:14:03 +03001845 * @oh: struct omap_hwmod *
1846 *
1847 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
Paul Walmsley30e105c2012-04-19 00:49:09 -06001848 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1849 * reset this way, -EINVAL if the hwmod is in the wrong state,
1850 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Benoit Cousson2cb06812010-09-21 18:57:59 +02001851 *
1852 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
Paul Walmsleybd361792010-12-14 12:42:35 -07001853 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
Benoit Cousson2cb06812010-09-21 18:57:59 +02001854 * use the SYSCONFIG softreset bit to provide the status.
1855 *
Paul Walmsleybd361792010-12-14 12:42:35 -07001856 * Note that some IP like McBSP do have reset control but don't have
1857 * reset status.
Paul Walmsley63c85232009-09-03 20:14:03 +03001858 */
Paul Walmsleybd361792010-12-14 12:42:35 -07001859static int _ocp_softreset(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001860{
Tero Kristo613ad0e2012-10-29 22:02:13 -06001861 u32 v;
Paul Walmsley6f8b7ff2009-12-08 16:33:16 -07001862 int c = 0;
Benoit Cousson96835af2010-09-21 18:57:58 +02001863 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001864
Paul Walmsley43b40992010-02-22 22:09:34 -07001865 if (!oh->class->sysc ||
Benoit Cousson2cb06812010-09-21 18:57:59 +02001866 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley30e105c2012-04-19 00:49:09 -06001867 return -ENOENT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001868
1869 /* clocks must be on for this operation */
1870 if (oh->_state != _HWMOD_STATE_ENABLED) {
Paul Walmsley7852ec02012-07-26 00:54:26 -06001871 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1872 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001873 return -EINVAL;
1874 }
1875
Benoit Cousson96835af2010-09-21 18:57:58 +02001876 /* For some modules, all optionnal clocks need to be enabled as well */
1877 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1878 _enable_optional_clocks(oh);
1879
Paul Walmsleybd361792010-12-14 12:42:35 -07001880 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001881
1882 v = oh->_sysc_cache;
Benoit Cousson96835af2010-09-21 18:57:58 +02001883 ret = _set_softreset(oh, &v);
1884 if (ret)
1885 goto dis_opt_clks;
Roger Quadros313a76e2013-12-08 18:39:02 -07001886
1887 _write_sysconfig(v, oh);
Illia Smyrnov01142512014-02-05 17:06:09 +02001888
1889 if (oh->class->sysc->srst_udelay)
1890 udelay(oh->class->sysc->srst_udelay);
1891
1892 c = _wait_softreset_complete(oh);
1893 if (c == MAX_MODULE_SOFTRESET_WAIT) {
Joe Perches3d0cb732014-09-13 11:31:16 -07001894 pr_warn("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1895 oh->name, MAX_MODULE_SOFTRESET_WAIT);
Illia Smyrnov01142512014-02-05 17:06:09 +02001896 ret = -ETIMEDOUT;
1897 goto dis_opt_clks;
1898 } else {
1899 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
1900 }
1901
Roger Quadros313a76e2013-12-08 18:39:02 -07001902 ret = _clear_softreset(oh, &v);
1903 if (ret)
1904 goto dis_opt_clks;
1905
Paul Walmsley63c85232009-09-03 20:14:03 +03001906 _write_sysconfig(v, oh);
1907
Paul Walmsley63c85232009-09-03 20:14:03 +03001908 /*
1909 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1910 * _wait_target_ready() or _reset()
1911 */
1912
Benoit Cousson96835af2010-09-21 18:57:58 +02001913dis_opt_clks:
1914 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1915 _disable_optional_clocks(oh);
1916
1917 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001918}
1919
1920/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001921 * _reset - reset an omap_hwmod
1922 * @oh: struct omap_hwmod *
1923 *
Paul Walmsley30e105c2012-04-19 00:49:09 -06001924 * Resets an omap_hwmod @oh. If the module has a custom reset
1925 * function pointer defined, then call it to reset the IP block, and
1926 * pass along its return value to the caller. Otherwise, if the IP
1927 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1928 * associated with it, call a function to reset the IP block via that
1929 * method, and pass along the return value to the caller. Finally, if
1930 * the IP block has some hardreset lines associated with it, assert
1931 * all of those, but do _not_ deassert them. (This is because driver
1932 * authors have expressed an apparent requirement to control the
1933 * deassertion of the hardreset lines themselves.)
1934 *
1935 * The default software reset mechanism for most OMAP IP blocks is
1936 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1937 * hwmods cannot be reset via this method. Some are not targets and
1938 * therefore have no OCP header registers to access. Others (like the
1939 * IVA) have idiosyncratic reset sequences. So for these relatively
1940 * rare cases, custom reset code can be supplied in the struct
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001941 * omap_hwmod_class .reset function pointer.
1942 *
1943 * _set_dmadisable() is called to set the DMADISABLE bit so that it
1944 * does not prevent idling of the system. This is necessary for cases
1945 * where ROMCODE/BOOTLOADER uses dma and transfers control to the
1946 * kernel without disabling dma.
1947 *
1948 * Passes along the return value from either _ocp_softreset() or the
1949 * custom reset function - these must return -EINVAL if the hwmod
1950 * cannot be reset this way or if the hwmod is in the wrong state,
1951 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Paul Walmsleybd361792010-12-14 12:42:35 -07001952 */
1953static int _reset(struct omap_hwmod *oh)
1954{
Paul Walmsley30e105c2012-04-19 00:49:09 -06001955 int i, r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001956
1957 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1958
Paul Walmsley30e105c2012-04-19 00:49:09 -06001959 if (oh->class->reset) {
1960 r = oh->class->reset(oh);
1961 } else {
1962 if (oh->rst_lines_cnt > 0) {
1963 for (i = 0; i < oh->rst_lines_cnt; i++)
1964 _assert_hardreset(oh, oh->rst_lines[i].name);
1965 return 0;
1966 } else {
1967 r = _ocp_softreset(oh);
1968 if (r == -ENOENT)
1969 r = 0;
1970 }
1971 }
Paul Walmsleybd361792010-12-14 12:42:35 -07001972
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001973 _set_dmadisable(oh);
1974
Paul Walmsley30e105c2012-04-19 00:49:09 -06001975 /*
1976 * OCP_SYSCONFIG bits need to be reprogrammed after a
1977 * softreset. The _enable() function should be split to avoid
1978 * the rewrite of the OCP_SYSCONFIG register.
1979 */
Rajendra Nayak28008522012-03-13 22:55:23 +05301980 if (oh->class->sysc) {
1981 _update_sysc_cache(oh);
1982 _enable_sysc(oh);
1983 }
1984
Paul Walmsley30e105c2012-04-19 00:49:09 -06001985 return r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001986}
1987
1988/**
Vishwanath BS51658822012-06-22 08:40:04 -06001989 * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain
1990 *
1991 * Call the appropriate PRM function to clear any logged I/O chain
1992 * wakeups and to reconfigure the chain. This apparently needs to be
1993 * done upon every mux change. Since hwmods can be concurrently
1994 * enabled and idled, hold a spinlock around the I/O chain
1995 * reconfiguration sequence. No return value.
1996 *
1997 * XXX When the PRM code is moved to drivers, this function can be removed,
1998 * as the PRM infrastructure should abstract this.
1999 */
2000static void _reconfigure_io_chain(void)
2001{
2002 unsigned long flags;
2003
2004 spin_lock_irqsave(&io_chain_lock, flags);
2005
Tero Kristo4984eea2014-10-27 08:39:26 -07002006 omap_prm_reconfigure_io_chain();
Vishwanath BS51658822012-06-22 08:40:04 -06002007
2008 spin_unlock_irqrestore(&io_chain_lock, flags);
2009}
2010
2011/**
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07002012 * _omap4_update_context_lost - increment hwmod context loss counter if
2013 * hwmod context was lost, and clear hardware context loss reg
2014 * @oh: hwmod to check for context loss
2015 *
2016 * If the PRCM indicates that the hwmod @oh lost context, increment
2017 * our in-memory context loss counter, and clear the RM_*_CONTEXT
2018 * bits. No return value.
2019 */
2020static void _omap4_update_context_lost(struct omap_hwmod *oh)
2021{
2022 if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
2023 return;
2024
2025 if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2026 oh->clkdm->pwrdm.ptr->prcm_offs,
2027 oh->prcm.omap4.context_offs))
2028 return;
2029
2030 oh->prcm.omap4.context_lost_counter++;
2031 prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
2032 oh->clkdm->pwrdm.ptr->prcm_offs,
2033 oh->prcm.omap4.context_offs);
2034}
2035
2036/**
2037 * _omap4_get_context_lost - get context loss counter for a hwmod
2038 * @oh: hwmod to get context loss counter for
2039 *
2040 * Returns the in-memory context loss counter for a hwmod.
2041 */
2042static int _omap4_get_context_lost(struct omap_hwmod *oh)
2043{
2044 return oh->prcm.omap4.context_lost_counter;
2045}
2046
2047/**
Paul Walmsley6d266f62013-02-10 11:22:22 -07002048 * _enable_preprogram - Pre-program an IP block during the _enable() process
2049 * @oh: struct omap_hwmod *
2050 *
2051 * Some IP blocks (such as AESS) require some additional programming
2052 * after enable before they can enter idle. If a function pointer to
2053 * do so is present in the hwmod data, then call it and pass along the
2054 * return value; otherwise, return 0.
2055 */
jean-philippe francois0f497032013-05-16 11:25:07 -07002056static int _enable_preprogram(struct omap_hwmod *oh)
Paul Walmsley6d266f62013-02-10 11:22:22 -07002057{
2058 if (!oh->class->enable_preprogram)
2059 return 0;
2060
2061 return oh->class->enable_preprogram(oh);
2062}
2063
2064/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002065 * _enable - enable an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002066 * @oh: struct omap_hwmod *
2067 *
2068 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002069 * register target. Returns -EINVAL if the hwmod is in the wrong
2070 * state or passes along the return value of _wait_target_ready().
Paul Walmsley63c85232009-09-03 20:14:03 +03002071 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002072static int _enable(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002073{
Paul Walmsley747834a2012-04-18 19:10:04 -06002074 int r;
Rajendra Nayak665d0012011-07-10 05:57:07 -06002075 int hwsup = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002076
Benoit Cousson34617e22011-07-01 22:54:07 +02002077 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
2078
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002079 /*
Paul Walmsley64813c32012-04-18 19:10:03 -06002080 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
2081 * state at init. Now that someone is really trying to enable
2082 * them, just ensure that the hwmod mux is set.
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002083 */
2084 if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
2085 /*
2086 * If the caller has mux data populated, do the mux'ing
2087 * which wouldn't have been done as part of the _enable()
2088 * done during setup.
2089 */
2090 if (oh->mux)
2091 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
2092
2093 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
2094 return 0;
2095 }
2096
Paul Walmsley63c85232009-09-03 20:14:03 +03002097 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
2098 oh->_state != _HWMOD_STATE_IDLE &&
2099 oh->_state != _HWMOD_STATE_DISABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002100 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
2101 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002102 return -EINVAL;
2103 }
2104
Benoit Cousson31f62862011-07-01 22:54:05 +02002105 /*
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002106 * If an IP block contains HW reset lines and all of them are
Paul Walmsley747834a2012-04-18 19:10:04 -06002107 * asserted, we let integration code associated with that
2108 * block handle the enable. We've received very little
2109 * information on what those driver authors need, and until
2110 * detailed information is provided and the driver code is
2111 * posted to the public lists, this is probably the best we
2112 * can do.
Benoit Cousson31f62862011-07-01 22:54:05 +02002113 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002114 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002115 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03002116
Rajendra Nayak665d0012011-07-10 05:57:07 -06002117 /* Mux pins for device runtime if populated */
2118 if (oh->mux && (!oh->mux->enabled ||
2119 ((oh->_state == _HWMOD_STATE_IDLE) &&
Vishwanath BS51658822012-06-22 08:40:04 -06002120 oh->mux->pads_dynamic))) {
Rajendra Nayak665d0012011-07-10 05:57:07 -06002121 omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED);
Vishwanath BS51658822012-06-22 08:40:04 -06002122 _reconfigure_io_chain();
Tony Lindgren6a08b112014-09-18 08:58:28 -07002123 } else if (oh->flags & HWMOD_RECONFIG_IO_CHAIN) {
Tony Lindgrencc824532014-08-25 16:15:35 -07002124 _reconfigure_io_chain();
Vishwanath BS51658822012-06-22 08:40:04 -06002125 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002126
Rajendra Nayak665d0012011-07-10 05:57:07 -06002127 _add_initiator_dep(oh, mpu_oh);
2128
2129 if (oh->clkdm) {
2130 /*
2131 * A clockdomain must be in SW_SUP before enabling
2132 * completely the module. The clockdomain can be set
2133 * in HW_AUTO only when the module become ready.
2134 */
Paul Walmsleyb71c7212012-09-23 17:28:28 -06002135 hwsup = clkdm_in_hwsup(oh->clkdm) &&
2136 !clkdm_missing_idle_reporting(oh->clkdm);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002137 r = clkdm_hwmod_enable(oh->clkdm, oh);
2138 if (r) {
2139 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
2140 oh->name, oh->clkdm->name, r);
2141 return r;
2142 }
Benoit Cousson34617e22011-07-01 22:54:07 +02002143 }
Rajendra Nayak665d0012011-07-10 05:57:07 -06002144
2145 _enable_clocks(oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002146 if (soc_ops.enable_module)
2147 soc_ops.enable_module(oh);
Paul Walmsleyfa200222013-01-26 00:48:56 -07002148 if (oh->flags & HWMOD_BLOCK_WFI)
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +01002149 cpu_idle_poll_ctrl(true);
Benoit Cousson34617e22011-07-01 22:54:07 +02002150
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07002151 if (soc_ops.update_context_lost)
2152 soc_ops.update_context_lost(oh);
2153
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002154 r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
2155 -EINVAL;
Rajendra Nayak665d0012011-07-10 05:57:07 -06002156 if (!r) {
2157 /*
2158 * Set the clockdomain to HW_AUTO only if the target is ready,
2159 * assuming that the previous state was HW_AUTO
2160 */
2161 if (oh->clkdm && hwsup)
2162 clkdm_allow_idle(oh->clkdm);
Benoit Cousson34617e22011-07-01 22:54:07 +02002163
Rajendra Nayak665d0012011-07-10 05:57:07 -06002164 oh->_state = _HWMOD_STATE_ENABLED;
2165
2166 /* Access the sysconfig only if the target is ready */
2167 if (oh->class->sysc) {
2168 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
2169 _update_sysc_cache(oh);
2170 _enable_sysc(oh);
2171 }
Paul Walmsley6d266f62013-02-10 11:22:22 -07002172 r = _enable_preprogram(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002173 } else {
Paul Walmsley2577a4a2012-10-29 20:57:55 -06002174 if (soc_ops.disable_module)
2175 soc_ops.disable_module(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002176 _disable_clocks(oh);
Lokesh Vutla812ce9d2014-12-19 18:04:50 +05302177 pr_err("omap_hwmod: %s: _wait_target_ready failed: %d\n",
2178 oh->name, r);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002179
2180 if (oh->clkdm)
2181 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002182 }
2183
Paul Walmsley63c85232009-09-03 20:14:03 +03002184 return r;
2185}
2186
2187/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002188 * _idle - idle an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002189 * @oh: struct omap_hwmod *
2190 *
2191 * Idles an omap_hwmod @oh. This should be called once the hwmod has
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002192 * no further work. Returns -EINVAL if the hwmod is in the wrong
2193 * state or returns 0.
Paul Walmsley63c85232009-09-03 20:14:03 +03002194 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002195static int _idle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002196{
Benoit Cousson34617e22011-07-01 22:54:07 +02002197 pr_debug("omap_hwmod: %s: idling\n", oh->name);
2198
Paul Walmsley63c85232009-09-03 20:14:03 +03002199 if (oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002200 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2201 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002202 return -EINVAL;
2203 }
2204
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002205 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002206 return 0;
2207
Paul Walmsley43b40992010-02-22 22:09:34 -07002208 if (oh->class->sysc)
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002209 _idle_sysc(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002210 _del_initiator_dep(oh, mpu_oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002211
Paul Walmsleyfa200222013-01-26 00:48:56 -07002212 if (oh->flags & HWMOD_BLOCK_WFI)
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +01002213 cpu_idle_poll_ctrl(false);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002214 if (soc_ops.disable_module)
2215 soc_ops.disable_module(oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002216
Benoit Cousson45c38252011-07-10 05:56:33 -06002217 /*
2218 * The module must be in idle mode before disabling any parents
2219 * clocks. Otherwise, the parent clock might be disabled before
2220 * the module transition is done, and thus will prevent the
2221 * transition to complete properly.
2222 */
2223 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002224 if (oh->clkdm)
2225 clkdm_hwmod_disable(oh->clkdm, oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002226
Tony Lindgren8d9af882010-12-22 18:42:35 -08002227 /* Mux pins for device idle if populated */
Vishwanath BS51658822012-06-22 08:40:04 -06002228 if (oh->mux && oh->mux->pads_dynamic) {
Tony Lindgren8d9af882010-12-22 18:42:35 -08002229 omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE);
Vishwanath BS51658822012-06-22 08:40:04 -06002230 _reconfigure_io_chain();
Tony Lindgren6a08b112014-09-18 08:58:28 -07002231 } else if (oh->flags & HWMOD_RECONFIG_IO_CHAIN) {
Tony Lindgrencc824532014-08-25 16:15:35 -07002232 _reconfigure_io_chain();
Vishwanath BS51658822012-06-22 08:40:04 -06002233 }
Tony Lindgren8d9af882010-12-22 18:42:35 -08002234
Paul Walmsley63c85232009-09-03 20:14:03 +03002235 oh->_state = _HWMOD_STATE_IDLE;
2236
2237 return 0;
2238}
2239
2240/**
2241 * _shutdown - shutdown an omap_hwmod
2242 * @oh: struct omap_hwmod *
2243 *
2244 * Shut down an omap_hwmod @oh. This should be called when the driver
2245 * used for the hwmod is removed or unloaded or if the driver is not
2246 * used by the system. Returns -EINVAL if the hwmod is in the wrong
2247 * state or returns 0.
2248 */
2249static int _shutdown(struct omap_hwmod *oh)
2250{
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002251 int ret, i;
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002252 u8 prev_state;
2253
Paul Walmsley63c85232009-09-03 20:14:03 +03002254 if (oh->_state != _HWMOD_STATE_IDLE &&
2255 oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002256 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2257 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002258 return -EINVAL;
2259 }
2260
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06002261 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06002262 return 0;
2263
Paul Walmsley63c85232009-09-03 20:14:03 +03002264 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2265
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002266 if (oh->class->pre_shutdown) {
2267 prev_state = oh->_state;
2268 if (oh->_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002269 _enable(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002270 ret = oh->class->pre_shutdown(oh);
2271 if (ret) {
2272 if (prev_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002273 _idle(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002274 return ret;
2275 }
2276 }
2277
Miguel Vadillo6481c732011-07-01 22:54:02 +02002278 if (oh->class->sysc) {
2279 if (oh->_state == _HWMOD_STATE_IDLE)
2280 _enable(oh);
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002281 _shutdown_sysc(oh);
Miguel Vadillo6481c732011-07-01 22:54:02 +02002282 }
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06002283
Benoit Cousson3827f942010-09-21 10:34:08 -06002284 /* clocks and deps are already disabled in idle */
2285 if (oh->_state == _HWMOD_STATE_ENABLED) {
2286 _del_initiator_dep(oh, mpu_oh);
2287 /* XXX what about the other system initiators here? dma, dsp */
Paul Walmsleyfa200222013-01-26 00:48:56 -07002288 if (oh->flags & HWMOD_BLOCK_WFI)
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +01002289 cpu_idle_poll_ctrl(false);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002290 if (soc_ops.disable_module)
2291 soc_ops.disable_module(oh);
Benoit Cousson45c38252011-07-10 05:56:33 -06002292 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002293 if (oh->clkdm)
2294 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson3827f942010-09-21 10:34:08 -06002295 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002296 /* XXX Should this code also force-disable the optional clocks? */
2297
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002298 for (i = 0; i < oh->rst_lines_cnt; i++)
2299 _assert_hardreset(oh, oh->rst_lines[i].name);
Benoit Cousson31f62862011-07-01 22:54:05 +02002300
Tony Lindgren8d9af882010-12-22 18:42:35 -08002301 /* Mux pins to safe mode or use populated off mode values */
2302 if (oh->mux)
2303 omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED);
Paul Walmsley63c85232009-09-03 20:14:03 +03002304
2305 oh->_state = _HWMOD_STATE_DISABLED;
2306
2307 return 0;
2308}
2309
Tony Lindgren5e863c52013-12-06 14:20:16 -08002310static int of_dev_find_hwmod(struct device_node *np,
2311 struct omap_hwmod *oh)
2312{
2313 int count, i, res;
2314 const char *p;
2315
2316 count = of_property_count_strings(np, "ti,hwmods");
2317 if (count < 1)
2318 return -ENODEV;
2319
2320 for (i = 0; i < count; i++) {
2321 res = of_property_read_string_index(np, "ti,hwmods",
2322 i, &p);
2323 if (res)
2324 continue;
2325 if (!strcmp(p, oh->name)) {
2326 pr_debug("omap_hwmod: dt %s[%i] uses hwmod %s\n",
2327 np->name, i, oh->name);
2328 return i;
2329 }
2330 }
2331
2332 return -ENODEV;
2333}
2334
Paul Walmsley63c85232009-09-03 20:14:03 +03002335/**
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302336 * of_dev_hwmod_lookup - look up needed hwmod from dt blob
2337 * @np: struct device_node *
2338 * @oh: struct omap_hwmod *
Tony Lindgren5e863c52013-12-06 14:20:16 -08002339 * @index: index of the entry found
2340 * @found: struct device_node * found or NULL
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302341 *
2342 * Parse the dt blob and find out needed hwmod. Recursive function is
2343 * implemented to take care hierarchical dt blob parsing.
Tony Lindgren5e863c52013-12-06 14:20:16 -08002344 * Return: Returns 0 on success, -ENODEV when not found.
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302345 */
Tony Lindgren5e863c52013-12-06 14:20:16 -08002346static int of_dev_hwmod_lookup(struct device_node *np,
2347 struct omap_hwmod *oh,
2348 int *index,
2349 struct device_node **found)
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302350{
Tony Lindgren5e863c52013-12-06 14:20:16 -08002351 struct device_node *np0 = NULL;
2352 int res;
2353
2354 res = of_dev_find_hwmod(np, oh);
2355 if (res >= 0) {
2356 *found = np;
2357 *index = res;
2358 return 0;
2359 }
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302360
2361 for_each_child_of_node(np, np0) {
Tony Lindgren5e863c52013-12-06 14:20:16 -08002362 struct device_node *fc;
2363 int i;
2364
2365 res = of_dev_hwmod_lookup(np0, oh, &i, &fc);
2366 if (res == 0) {
2367 *found = fc;
2368 *index = i;
2369 return 0;
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302370 }
2371 }
Tony Lindgren5e863c52013-12-06 14:20:16 -08002372
2373 *found = NULL;
2374 *index = 0;
2375
2376 return -ENODEV;
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302377}
2378
2379/**
Paul Walmsley381d0332012-04-19 00:58:22 -06002380 * _init_mpu_rt_base - populate the virtual address for a hwmod
2381 * @oh: struct omap_hwmod * to locate the virtual address
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002382 * @data: (unused, caller should pass NULL)
Tony Lindgren5e863c52013-12-06 14:20:16 -08002383 * @index: index of the reg entry iospace in device tree
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002384 * @np: struct device_node * of the IP block's device node in the DT data
Paul Walmsley381d0332012-04-19 00:58:22 -06002385 *
2386 * Cache the virtual address used by the MPU to access this IP block's
2387 * registers. This address is needed early so the OCP registers that
2388 * are part of the device's address space can be ioremapped properly.
Suman Anna6423d6d2013-10-08 23:46:49 -06002389 *
Roger Quadros9a258af2015-07-16 16:16:44 +03002390 * If SYSC access is not needed, the registers will not be remapped
2391 * and non-availability of MPU access is not treated as an error.
2392 *
Suman Anna6423d6d2013-10-08 23:46:49 -06002393 * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and
2394 * -ENXIO on absent or invalid register target address space.
Paul Walmsley381d0332012-04-19 00:58:22 -06002395 */
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002396static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data,
Tony Lindgren5e863c52013-12-06 14:20:16 -08002397 int index, struct device_node *np)
Paul Walmsley381d0332012-04-19 00:58:22 -06002398{
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002399 struct omap_hwmod_addr_space *mem;
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302400 void __iomem *va_start = NULL;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002401
2402 if (!oh)
Suman Anna6423d6d2013-10-08 23:46:49 -06002403 return -EINVAL;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002404
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002405 _save_mpu_port_index(oh);
2406
Roger Quadros9a258af2015-07-16 16:16:44 +03002407 /* if we don't need sysc access we don't need to ioremap */
2408 if (!oh->class->sysc)
2409 return 0;
2410
2411 /* we can't continue without MPU PORT if we need sysc access */
Paul Walmsley381d0332012-04-19 00:58:22 -06002412 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
Suman Anna6423d6d2013-10-08 23:46:49 -06002413 return -ENXIO;
Paul Walmsley381d0332012-04-19 00:58:22 -06002414
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002415 mem = _find_mpu_rt_addr_space(oh);
2416 if (!mem) {
2417 pr_debug("omap_hwmod: %s: no MPU register target found\n",
2418 oh->name);
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302419
2420 /* Extract the IO space from device tree blob */
Roger Quadros9a258af2015-07-16 16:16:44 +03002421 if (!np) {
2422 pr_err("omap_hwmod: %s: no dt node\n", oh->name);
Suman Anna6423d6d2013-10-08 23:46:49 -06002423 return -ENXIO;
Roger Quadros9a258af2015-07-16 16:16:44 +03002424 }
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302425
Tony Lindgren5e863c52013-12-06 14:20:16 -08002426 va_start = of_iomap(np, index + oh->mpu_rt_idx);
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302427 } else {
2428 va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start);
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002429 }
2430
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002431 if (!va_start) {
Tony Lindgren5e863c52013-12-06 14:20:16 -08002432 if (mem)
2433 pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
2434 else
2435 pr_err("omap_hwmod: %s: Missing dt reg%i for %s\n",
2436 oh->name, index, np->full_name);
Suman Anna6423d6d2013-10-08 23:46:49 -06002437 return -ENXIO;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002438 }
2439
2440 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2441 oh->name, va_start);
2442
2443 oh->_mpu_rt_va = va_start;
Suman Anna6423d6d2013-10-08 23:46:49 -06002444 return 0;
Paul Walmsley381d0332012-04-19 00:58:22 -06002445}
2446
2447/**
2448 * _init - initialize internal data for the hwmod @oh
2449 * @oh: struct omap_hwmod *
2450 * @n: (unused)
2451 *
2452 * Look up the clocks and the address space used by the MPU to access
2453 * registers belonging to the hwmod @oh. @oh must already be
2454 * registered at this point. This is the first of two phases for
2455 * hwmod initialization. Code called here does not touch any hardware
2456 * registers, it simply prepares internal data structures. Returns 0
Suman Anna6423d6d2013-10-08 23:46:49 -06002457 * upon success or if the hwmod isn't registered or if the hwmod's
2458 * address space is not defined, or -EINVAL upon failure.
Paul Walmsley381d0332012-04-19 00:58:22 -06002459 */
2460static int __init _init(struct omap_hwmod *oh, void *data)
2461{
Tony Lindgren5e863c52013-12-06 14:20:16 -08002462 int r, index;
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002463 struct device_node *np = NULL;
Paul Walmsley381d0332012-04-19 00:58:22 -06002464
2465 if (oh->_state != _HWMOD_STATE_REGISTERED)
2466 return 0;
2467
Tony Lindgren5e863c52013-12-06 14:20:16 -08002468 if (of_have_populated_dt()) {
2469 struct device_node *bus;
2470
2471 bus = of_find_node_by_name(NULL, "ocp");
2472 if (!bus)
2473 return -ENODEV;
2474
2475 r = of_dev_hwmod_lookup(bus, oh, &index, &np);
2476 if (r)
2477 pr_debug("omap_hwmod: %s missing dt data\n", oh->name);
2478 else if (np && index)
2479 pr_warn("omap_hwmod: %s using broken dt data from %s\n",
2480 oh->name, np->name);
2481 }
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002482
Roger Quadros9a258af2015-07-16 16:16:44 +03002483 r = _init_mpu_rt_base(oh, NULL, index, np);
2484 if (r < 0) {
2485 WARN(1, "omap_hwmod: %s: doesn't have mpu register target base\n",
2486 oh->name);
2487 return 0;
Suman Anna6423d6d2013-10-08 23:46:49 -06002488 }
Paul Walmsley381d0332012-04-19 00:58:22 -06002489
2490 r = _init_clocks(oh, NULL);
Russell Kingc48cd652013-03-13 20:44:21 +00002491 if (r < 0) {
Paul Walmsley381d0332012-04-19 00:58:22 -06002492 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2493 return -EINVAL;
2494 }
2495
Suman Anna3d36ad72014-03-14 14:45:17 +05302496 if (np) {
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002497 if (of_find_property(np, "ti,no-reset-on-init", NULL))
2498 oh->flags |= HWMOD_INIT_NO_RESET;
2499 if (of_find_property(np, "ti,no-idle-on-init", NULL))
2500 oh->flags |= HWMOD_INIT_NO_IDLE;
Suman Anna3d36ad72014-03-14 14:45:17 +05302501 }
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002502
Paul Walmsley381d0332012-04-19 00:58:22 -06002503 oh->_state = _HWMOD_STATE_INITIALIZED;
2504
2505 return 0;
2506}
2507
2508/**
Paul Walmsley64813c32012-04-18 19:10:03 -06002509 * _setup_iclk_autoidle - configure an IP block's interface clocks
Paul Walmsley63c85232009-09-03 20:14:03 +03002510 * @oh: struct omap_hwmod *
2511 *
Paul Walmsley64813c32012-04-18 19:10:03 -06002512 * Set up the module's interface clocks. XXX This function is still mostly
2513 * a stub; implementing this properly requires iclk autoidle usecounting in
2514 * the clock code. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03002515 */
Paul Walmsley64813c32012-04-18 19:10:03 -06002516static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002517{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002518 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002519 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002520 int i = 0;
Paul Walmsley381d0332012-04-19 00:58:22 -06002521 if (oh->_state != _HWMOD_STATE_INITIALIZED)
Paul Walmsley64813c32012-04-18 19:10:03 -06002522 return;
Paul Walmsley48d54f32011-02-23 00:14:07 -07002523
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002524 p = oh->slave_ports.next;
Paul Walmsley63c85232009-09-03 20:14:03 +03002525
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002526 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06002527 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002528 if (!os->_clk)
Paul Walmsley64813c32012-04-18 19:10:03 -06002529 continue;
Paul Walmsley63c85232009-09-03 20:14:03 +03002530
Paul Walmsley64813c32012-04-18 19:10:03 -06002531 if (os->flags & OCPIF_SWSUP_IDLE) {
2532 /* XXX omap_iclk_deny_idle(c); */
2533 } else {
2534 /* XXX omap_iclk_allow_idle(c); */
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002535 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +03002536 }
2537 }
2538
Paul Walmsley64813c32012-04-18 19:10:03 -06002539 return;
2540}
2541
2542/**
2543 * _setup_reset - reset an IP block during the setup process
2544 * @oh: struct omap_hwmod *
2545 *
2546 * Reset the IP block corresponding to the hwmod @oh during the setup
2547 * process. The IP block is first enabled so it can be successfully
2548 * reset. Returns 0 upon success or a negative error code upon
2549 * failure.
2550 */
2551static int __init _setup_reset(struct omap_hwmod *oh)
2552{
2553 int r;
2554
2555 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2556 return -EINVAL;
Paul Walmsley63c85232009-09-03 20:14:03 +03002557
Paul Walmsley5fb3d522012-10-29 22:11:50 -06002558 if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
2559 return -EPERM;
2560
Paul Walmsley747834a2012-04-18 19:10:04 -06002561 if (oh->rst_lines_cnt == 0) {
2562 r = _enable(oh);
2563 if (r) {
Joe Perches3d0cb732014-09-13 11:31:16 -07002564 pr_warn("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2565 oh->name, oh->_state);
Paul Walmsley747834a2012-04-18 19:10:04 -06002566 return -EINVAL;
2567 }
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002568 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002569
Rajendra Nayak28008522012-03-13 22:55:23 +05302570 if (!(oh->flags & HWMOD_INIT_NO_RESET))
Paul Walmsley64813c32012-04-18 19:10:03 -06002571 r = _reset(oh);
2572
2573 return r;
2574}
2575
2576/**
2577 * _setup_postsetup - transition to the appropriate state after _setup
2578 * @oh: struct omap_hwmod *
2579 *
2580 * Place an IP block represented by @oh into a "post-setup" state --
2581 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
2582 * this function is called at the end of _setup().) The postsetup
2583 * state for an IP block can be changed by calling
2584 * omap_hwmod_enter_postsetup_state() early in the boot process,
2585 * before one of the omap_hwmod_setup*() functions are called for the
2586 * IP block.
2587 *
2588 * The IP block stays in this state until a PM runtime-based driver is
2589 * loaded for that IP block. A post-setup state of IDLE is
2590 * appropriate for almost all IP blocks with runtime PM-enabled
2591 * drivers, since those drivers are able to enable the IP block. A
2592 * post-setup state of ENABLED is appropriate for kernels with PM
2593 * runtime disabled. The DISABLED state is appropriate for unusual IP
2594 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2595 * included, since the WDTIMER starts running on reset and will reset
2596 * the MPU if left active.
2597 *
2598 * This post-setup mechanism is deprecated. Once all of the OMAP
2599 * drivers have been converted to use PM runtime, and all of the IP
2600 * block data and interconnect data is available to the hwmod code, it
2601 * should be possible to replace this mechanism with a "lazy reset"
2602 * arrangement. In a "lazy reset" setup, each IP block is enabled
2603 * when the driver first probes, then all remaining IP blocks without
2604 * drivers are either shut down or enabled after the drivers have
2605 * loaded. However, this cannot take place until the above
2606 * preconditions have been met, since otherwise the late reset code
2607 * has no way of knowing which IP blocks are in use by drivers, and
2608 * which ones are unused.
2609 *
2610 * No return value.
2611 */
2612static void __init _setup_postsetup(struct omap_hwmod *oh)
2613{
2614 u8 postsetup_state;
2615
2616 if (oh->rst_lines_cnt > 0)
2617 return;
Benoit Cousson76e55892010-09-21 10:34:11 -06002618
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002619 postsetup_state = oh->_postsetup_state;
2620 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2621 postsetup_state = _HWMOD_STATE_ENABLED;
2622
2623 /*
2624 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2625 * it should be set by the core code as a runtime flag during startup
2626 */
2627 if ((oh->flags & HWMOD_INIT_NO_IDLE) &&
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002628 (postsetup_state == _HWMOD_STATE_IDLE)) {
2629 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002630 postsetup_state = _HWMOD_STATE_ENABLED;
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002631 }
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002632
2633 if (postsetup_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002634 _idle(oh);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002635 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2636 _shutdown(oh);
2637 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2638 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2639 oh->name, postsetup_state);
Paul Walmsley63c85232009-09-03 20:14:03 +03002640
Paul Walmsley64813c32012-04-18 19:10:03 -06002641 return;
2642}
2643
2644/**
2645 * _setup - prepare IP block hardware for use
2646 * @oh: struct omap_hwmod *
2647 * @n: (unused, pass NULL)
2648 *
2649 * Configure the IP block represented by @oh. This may include
2650 * enabling the IP block, resetting it, and placing it into a
2651 * post-setup state, depending on the type of IP block and applicable
2652 * flags. IP blocks are reset to prevent any previous configuration
2653 * by the bootloader or previous operating system from interfering
2654 * with power management or other parts of the system. The reset can
2655 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2656 * two phases for hwmod initialization. Code called here generally
2657 * affects the IP block hardware, or system integration hardware
2658 * associated with the IP block. Returns 0.
2659 */
2660static int __init _setup(struct omap_hwmod *oh, void *data)
2661{
2662 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2663 return 0;
2664
Tomi Valkeinenf22d2542014-10-09 17:03:14 +03002665 if (oh->parent_hwmod) {
2666 int r;
2667
2668 r = _enable(oh->parent_hwmod);
2669 WARN(r, "hwmod: %s: setup: failed to enable parent hwmod %s\n",
2670 oh->name, oh->parent_hwmod->name);
2671 }
2672
Paul Walmsley64813c32012-04-18 19:10:03 -06002673 _setup_iclk_autoidle(oh);
2674
2675 if (!_setup_reset(oh))
2676 _setup_postsetup(oh);
2677
Tomi Valkeinenf22d2542014-10-09 17:03:14 +03002678 if (oh->parent_hwmod) {
2679 u8 postsetup_state;
2680
2681 postsetup_state = oh->parent_hwmod->_postsetup_state;
2682
2683 if (postsetup_state == _HWMOD_STATE_IDLE)
2684 _idle(oh->parent_hwmod);
2685 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2686 _shutdown(oh->parent_hwmod);
2687 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2688 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2689 oh->parent_hwmod->name, postsetup_state);
2690 }
2691
Paul Walmsley63c85232009-09-03 20:14:03 +03002692 return 0;
2693}
2694
Benoit Cousson0102b622010-12-21 21:31:27 -07002695/**
2696 * _register - register a struct omap_hwmod
2697 * @oh: struct omap_hwmod *
2698 *
2699 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2700 * already has been registered by the same name; -EINVAL if the
2701 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2702 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2703 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2704 * success.
2705 *
2706 * XXX The data should be copied into bootmem, so the original data
2707 * should be marked __initdata and freed after init. This would allow
2708 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2709 * that the copy process would be relatively complex due to the large number
2710 * of substructures.
2711 */
Benoit Cousson01592df2010-12-21 21:31:28 -07002712static int __init _register(struct omap_hwmod *oh)
Benoit Cousson0102b622010-12-21 21:31:27 -07002713{
Benoit Cousson0102b622010-12-21 21:31:27 -07002714 if (!oh || !oh->name || !oh->class || !oh->class->name ||
2715 (oh->_state != _HWMOD_STATE_UNKNOWN))
2716 return -EINVAL;
2717
Benoit Cousson0102b622010-12-21 21:31:27 -07002718 pr_debug("omap_hwmod: %s: registering\n", oh->name);
2719
Benoit Coussonce35b242010-12-21 21:31:28 -07002720 if (_lookup(oh->name))
2721 return -EEXIST;
Benoit Cousson0102b622010-12-21 21:31:27 -07002722
Benoit Cousson0102b622010-12-21 21:31:27 -07002723 list_add_tail(&oh->node, &omap_hwmod_list);
2724
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002725 INIT_LIST_HEAD(&oh->master_ports);
2726 INIT_LIST_HEAD(&oh->slave_ports);
Benoit Cousson0102b622010-12-21 21:31:27 -07002727 spin_lock_init(&oh->_lock);
Peter Ujfalusi69317952015-02-26 00:00:51 -07002728 lockdep_set_class(&oh->_lock, &oh->hwmod_key);
Benoit Cousson0102b622010-12-21 21:31:27 -07002729
2730 oh->_state = _HWMOD_STATE_REGISTERED;
2731
Paul Walmsley569edd702011-02-23 00:14:06 -07002732 /*
2733 * XXX Rather than doing a strcmp(), this should test a flag
2734 * set in the hwmod data, inserted by the autogenerator code.
2735 */
2736 if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2737 mpu_oh = oh;
Benoit Cousson0102b622010-12-21 21:31:27 -07002738
Paul Walmsley569edd702011-02-23 00:14:06 -07002739 return 0;
Benoit Cousson0102b622010-12-21 21:31:27 -07002740}
Paul Walmsley63c85232009-09-03 20:14:03 +03002741
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002742/**
2743 * _alloc_links - return allocated memory for hwmod links
2744 * @ml: pointer to a struct omap_hwmod_link * for the master link
2745 * @sl: pointer to a struct omap_hwmod_link * for the slave link
2746 *
2747 * Return pointers to two struct omap_hwmod_link records, via the
2748 * addresses pointed to by @ml and @sl. Will first attempt to return
2749 * memory allocated as part of a large initial block, but if that has
2750 * been exhausted, will allocate memory itself. Since ideally this
2751 * second allocation path will never occur, the number of these
2752 * 'supplemental' allocations will be logged when debugging is
2753 * enabled. Returns 0.
2754 */
2755static int __init _alloc_links(struct omap_hwmod_link **ml,
2756 struct omap_hwmod_link **sl)
2757{
2758 unsigned int sz;
2759
2760 if ((free_ls + LINKS_PER_OCP_IF) <= max_ls) {
2761 *ml = &linkspace[free_ls++];
2762 *sl = &linkspace[free_ls++];
2763 return 0;
2764 }
2765
2766 sz = sizeof(struct omap_hwmod_link) * LINKS_PER_OCP_IF;
2767
2768 *sl = NULL;
Santosh Shilimkarb6cb5ba2014-01-21 15:50:51 -08002769 *ml = memblock_virt_alloc(sz, 0);
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002770
2771 *sl = (void *)(*ml) + sizeof(struct omap_hwmod_link);
2772
2773 ls_supp++;
2774 pr_debug("omap_hwmod: supplemental link allocations needed: %d\n",
2775 ls_supp * LINKS_PER_OCP_IF);
2776
2777 return 0;
2778};
2779
2780/**
2781 * _add_link - add an interconnect between two IP blocks
2782 * @oi: pointer to a struct omap_hwmod_ocp_if record
2783 *
2784 * Add struct omap_hwmod_link records connecting the master IP block
2785 * specified in @oi->master to @oi, and connecting the slave IP block
2786 * specified in @oi->slave to @oi. This code is assumed to run before
2787 * preemption or SMP has been enabled, thus avoiding the need for
2788 * locking in this code. Changes to this assumption will require
2789 * additional locking. Returns 0.
2790 */
2791static int __init _add_link(struct omap_hwmod_ocp_if *oi)
2792{
2793 struct omap_hwmod_link *ml, *sl;
2794
2795 pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2796 oi->slave->name);
2797
2798 _alloc_links(&ml, &sl);
2799
2800 ml->ocp_if = oi;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002801 list_add(&ml->node, &oi->master->master_ports);
2802 oi->master->masters_cnt++;
2803
2804 sl->ocp_if = oi;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002805 list_add(&sl->node, &oi->slave->slave_ports);
2806 oi->slave->slaves_cnt++;
2807
2808 return 0;
2809}
2810
2811/**
2812 * _register_link - register a struct omap_hwmod_ocp_if
2813 * @oi: struct omap_hwmod_ocp_if *
2814 *
2815 * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
2816 * has already been registered; -EINVAL if @oi is NULL or if the
2817 * record pointed to by @oi is missing required fields; or 0 upon
2818 * success.
2819 *
2820 * XXX The data should be copied into bootmem, so the original data
2821 * should be marked __initdata and freed after init. This would allow
2822 * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2823 */
2824static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2825{
2826 if (!oi || !oi->master || !oi->slave || !oi->user)
2827 return -EINVAL;
2828
2829 if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2830 return -EEXIST;
2831
2832 pr_debug("omap_hwmod: registering link from %s to %s\n",
2833 oi->master->name, oi->slave->name);
2834
2835 /*
2836 * Register the connected hwmods, if they haven't been
2837 * registered already
2838 */
2839 if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2840 _register(oi->master);
2841
2842 if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2843 _register(oi->slave);
2844
2845 _add_link(oi);
2846
2847 oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2848
2849 return 0;
2850}
2851
2852/**
2853 * _alloc_linkspace - allocate large block of hwmod links
2854 * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count
2855 *
2856 * Allocate a large block of struct omap_hwmod_link records. This
2857 * improves boot time significantly by avoiding the need to allocate
2858 * individual records one by one. If the number of records to
2859 * allocate in the block hasn't been manually specified, this function
2860 * will count the number of struct omap_hwmod_ocp_if records in @ois
2861 * and use that to determine the allocation size. For SoC families
2862 * that require multiple list registrations, such as OMAP3xxx, this
2863 * estimation process isn't optimal, so manual estimation is advised
2864 * in those cases. Returns -EEXIST if the allocation has already occurred
2865 * or 0 upon success.
2866 */
2867static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois)
2868{
2869 unsigned int i = 0;
2870 unsigned int sz;
2871
2872 if (linkspace) {
2873 WARN(1, "linkspace already allocated\n");
2874 return -EEXIST;
2875 }
2876
2877 if (max_ls == 0)
2878 while (ois[i++])
2879 max_ls += LINKS_PER_OCP_IF;
2880
2881 sz = sizeof(struct omap_hwmod_link) * max_ls;
2882
2883 pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n",
2884 __func__, sz, max_ls);
2885
Santosh Shilimkarb6cb5ba2014-01-21 15:50:51 -08002886 linkspace = memblock_virt_alloc(sz, 0);
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002887
2888 return 0;
2889}
Paul Walmsley63c85232009-09-03 20:14:03 +03002890
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002891/* Static functions intended only for use in soc_ops field function pointers */
2892
2893/**
Tero Kristo9002e9212014-10-27 08:39:23 -07002894 * _omap2xxx_3xxx_wait_target_ready - wait for a module to leave slave idle
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002895 * @oh: struct omap_hwmod *
2896 *
2897 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2898 * does not have an IDLEST bit or if the module successfully leaves
2899 * slave idle; otherwise, pass along the return value of the
2900 * appropriate *_cm*_wait_module_ready() function.
2901 */
Tero Kristo9002e9212014-10-27 08:39:23 -07002902static int _omap2xxx_3xxx_wait_target_ready(struct omap_hwmod *oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002903{
2904 if (!oh)
2905 return -EINVAL;
2906
2907 if (oh->flags & HWMOD_NO_IDLEST)
2908 return 0;
2909
2910 if (!_find_mpu_rt_port(oh))
2911 return 0;
2912
2913 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2914
Tero Kristo021b6ff2014-10-27 08:39:23 -07002915 return omap_cm_wait_module_ready(0, oh->prcm.omap2.module_offs,
2916 oh->prcm.omap2.idlest_reg_id,
2917 oh->prcm.omap2.idlest_idle_bit);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002918}
2919
2920/**
2921 * _omap4_wait_target_ready - wait for a module to leave slave idle
2922 * @oh: struct omap_hwmod *
2923 *
2924 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2925 * does not have an IDLEST bit or if the module successfully leaves
2926 * slave idle; otherwise, pass along the return value of the
2927 * appropriate *_cm*_wait_module_ready() function.
2928 */
2929static int _omap4_wait_target_ready(struct omap_hwmod *oh)
2930{
Paul Walmsley2b026d12012-09-23 17:28:18 -06002931 if (!oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002932 return -EINVAL;
2933
Paul Walmsley2b026d12012-09-23 17:28:18 -06002934 if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002935 return 0;
2936
2937 if (!_find_mpu_rt_port(oh))
2938 return 0;
2939
2940 /* XXX check module SIDLEMODE, hardreset status */
2941
Tero Kristo021b6ff2014-10-27 08:39:23 -07002942 return omap_cm_wait_module_ready(oh->clkdm->prcm_partition,
2943 oh->clkdm->cm_inst,
2944 oh->prcm.omap4.clkctrl_offs, 0);
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002945}
2946
2947/**
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002948 * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2949 * @oh: struct omap_hwmod * to assert hardreset
2950 * @ohri: hardreset line data
2951 *
2952 * Call omap2_prm_assert_hardreset() with parameters extracted from
2953 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2954 * use as an soc_ops function pointer. Passes along the return value
2955 * from omap2_prm_assert_hardreset(). XXX This function is scheduled
2956 * for removal when the PRM code is moved into drivers/.
2957 */
2958static int _omap2_assert_hardreset(struct omap_hwmod *oh,
2959 struct omap_hwmod_rst_info *ohri)
2960{
Tero Kristoefd44dc2014-10-27 08:39:24 -07002961 return omap_prm_assert_hardreset(ohri->rst_shift, 0,
2962 oh->prcm.omap2.module_offs, 0);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002963}
2964
2965/**
2966 * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2967 * @oh: struct omap_hwmod * to deassert hardreset
2968 * @ohri: hardreset line data
2969 *
2970 * Call omap2_prm_deassert_hardreset() with parameters extracted from
2971 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2972 * use as an soc_ops function pointer. Passes along the return value
2973 * from omap2_prm_deassert_hardreset(). XXX This function is
2974 * scheduled for removal when the PRM code is moved into drivers/.
2975 */
2976static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
2977 struct omap_hwmod_rst_info *ohri)
2978{
Tero Kristo37fb59d2014-10-27 08:39:25 -07002979 return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift, 0,
2980 oh->prcm.omap2.module_offs, 0, 0);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002981}
2982
2983/**
2984 * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
2985 * @oh: struct omap_hwmod * to test hardreset
2986 * @ohri: hardreset line data
2987 *
2988 * Call omap2_prm_is_hardreset_asserted() with parameters extracted
2989 * from the hwmod @oh and the hardreset line data @ohri. Only
2990 * intended for use as an soc_ops function pointer. Passes along the
2991 * return value from omap2_prm_is_hardreset_asserted(). XXX This
2992 * function is scheduled for removal when the PRM code is moved into
2993 * drivers/.
2994 */
2995static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
2996 struct omap_hwmod_rst_info *ohri)
2997{
Tero Kristo1bc28b32014-10-27 08:39:25 -07002998 return omap_prm_is_hardreset_asserted(ohri->st_shift, 0,
2999 oh->prcm.omap2.module_offs, 0);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003000}
3001
3002/**
3003 * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
3004 * @oh: struct omap_hwmod * to assert hardreset
3005 * @ohri: hardreset line data
3006 *
3007 * Call omap4_prminst_assert_hardreset() with parameters extracted
3008 * from the hwmod @oh and the hardreset line data @ohri. Only
3009 * intended for use as an soc_ops function pointer. Passes along the
3010 * return value from omap4_prminst_assert_hardreset(). XXX This
3011 * function is scheduled for removal when the PRM code is moved into
3012 * drivers/.
3013 */
3014static int _omap4_assert_hardreset(struct omap_hwmod *oh,
3015 struct omap_hwmod_rst_info *ohri)
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003016{
Paul Walmsley07b3a132012-06-20 20:11:36 -06003017 if (!oh->clkdm)
3018 return -EINVAL;
3019
Tero Kristoefd44dc2014-10-27 08:39:24 -07003020 return omap_prm_assert_hardreset(ohri->rst_shift,
3021 oh->clkdm->pwrdm.ptr->prcm_partition,
3022 oh->clkdm->pwrdm.ptr->prcm_offs,
3023 oh->prcm.omap4.rstctrl_offs);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003024}
3025
3026/**
3027 * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
3028 * @oh: struct omap_hwmod * to deassert hardreset
3029 * @ohri: hardreset line data
3030 *
3031 * Call omap4_prminst_deassert_hardreset() with parameters extracted
3032 * from the hwmod @oh and the hardreset line data @ohri. Only
3033 * intended for use as an soc_ops function pointer. Passes along the
3034 * return value from omap4_prminst_deassert_hardreset(). XXX This
3035 * function is scheduled for removal when the PRM code is moved into
3036 * drivers/.
3037 */
3038static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
3039 struct omap_hwmod_rst_info *ohri)
3040{
Paul Walmsley07b3a132012-06-20 20:11:36 -06003041 if (!oh->clkdm)
3042 return -EINVAL;
3043
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003044 if (ohri->st_shift)
3045 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
3046 oh->name, ohri->name);
Tero Kristo4ebf5b22015-05-05 16:33:04 +03003047 return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->rst_shift,
Tero Kristo37fb59d2014-10-27 08:39:25 -07003048 oh->clkdm->pwrdm.ptr->prcm_partition,
3049 oh->clkdm->pwrdm.ptr->prcm_offs,
Tero Kristo4ebf5b22015-05-05 16:33:04 +03003050 oh->prcm.omap4.rstctrl_offs,
3051 oh->prcm.omap4.rstctrl_offs +
3052 OMAP4_RST_CTRL_ST_OFFSET);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003053}
3054
3055/**
3056 * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
3057 * @oh: struct omap_hwmod * to test hardreset
3058 * @ohri: hardreset line data
3059 *
3060 * Call omap4_prminst_is_hardreset_asserted() with parameters
3061 * extracted from the hwmod @oh and the hardreset line data @ohri.
3062 * Only intended for use as an soc_ops function pointer. Passes along
3063 * the return value from omap4_prminst_is_hardreset_asserted(). XXX
3064 * This function is scheduled for removal when the PRM code is moved
3065 * into drivers/.
3066 */
3067static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
3068 struct omap_hwmod_rst_info *ohri)
3069{
Paul Walmsley07b3a132012-06-20 20:11:36 -06003070 if (!oh->clkdm)
3071 return -EINVAL;
3072
Tero Kristo1bc28b32014-10-27 08:39:25 -07003073 return omap_prm_is_hardreset_asserted(ohri->rst_shift,
3074 oh->clkdm->pwrdm.ptr->
3075 prcm_partition,
3076 oh->clkdm->pwrdm.ptr->prcm_offs,
3077 oh->prcm.omap4.rstctrl_offs);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003078}
3079
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003080/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003081 * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
3082 * @oh: struct omap_hwmod * to deassert hardreset
3083 * @ohri: hardreset line data
3084 *
3085 * Call am33xx_prminst_deassert_hardreset() with parameters extracted
3086 * from the hwmod @oh and the hardreset line data @ohri. Only
3087 * intended for use as an soc_ops function pointer. Passes along the
3088 * return value from am33xx_prminst_deassert_hardreset(). XXX This
3089 * function is scheduled for removal when the PRM code is moved into
3090 * drivers/.
3091 */
3092static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
3093 struct omap_hwmod_rst_info *ohri)
3094{
Tero Kristoa5bf00c2015-05-05 16:33:05 +03003095 return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift,
3096 oh->clkdm->pwrdm.ptr->prcm_partition,
Tero Kristo37fb59d2014-10-27 08:39:25 -07003097 oh->clkdm->pwrdm.ptr->prcm_offs,
3098 oh->prcm.omap4.rstctrl_offs,
3099 oh->prcm.omap4.rstst_offs);
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003100}
3101
Paul Walmsley63c85232009-09-03 20:14:03 +03003102/* Public functions */
3103
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003104u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03003105{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003106 if (oh->flags & HWMOD_16BIT_REG)
Victor Kamenskyedfaf052014-04-15 20:37:46 +03003107 return readw_relaxed(oh->_mpu_rt_va + reg_offs);
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003108 else
Victor Kamenskyedfaf052014-04-15 20:37:46 +03003109 return readl_relaxed(oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003110}
3111
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003112void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03003113{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003114 if (oh->flags & HWMOD_16BIT_REG)
Victor Kamenskyedfaf052014-04-15 20:37:46 +03003115 writew_relaxed(v, oh->_mpu_rt_va + reg_offs);
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07003116 else
Victor Kamenskyedfaf052014-04-15 20:37:46 +03003117 writel_relaxed(v, oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03003118}
3119
Paul Walmsley887adea2010-07-26 16:34:33 -06003120/**
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003121 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
3122 * @oh: struct omap_hwmod *
3123 *
3124 * This is a public function exposed to drivers. Some drivers may need to do
3125 * some settings before and after resetting the device. Those drivers after
3126 * doing the necessary settings could use this function to start a reset by
3127 * setting the SYSCONFIG.SOFTRESET bit.
3128 */
3129int omap_hwmod_softreset(struct omap_hwmod *oh)
3130{
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003131 u32 v;
3132 int ret;
3133
3134 if (!oh || !(oh->_sysc_cache))
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003135 return -EINVAL;
3136
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003137 v = oh->_sysc_cache;
3138 ret = _set_softreset(oh, &v);
3139 if (ret)
3140 goto error;
3141 _write_sysconfig(v, oh);
3142
Roger Quadros313a76e2013-12-08 18:39:02 -07003143 ret = _clear_softreset(oh, &v);
3144 if (ret)
3145 goto error;
3146 _write_sysconfig(v, oh);
3147
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003148error:
3149 return ret;
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003150}
3151
3152/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003153 * omap_hwmod_lookup - look up a registered omap_hwmod by name
3154 * @name: name of the omap_hwmod to look up
3155 *
3156 * Given a @name of an omap_hwmod, return a pointer to the registered
3157 * struct omap_hwmod *, or NULL upon error.
3158 */
3159struct omap_hwmod *omap_hwmod_lookup(const char *name)
3160{
3161 struct omap_hwmod *oh;
3162
3163 if (!name)
3164 return NULL;
3165
Paul Walmsley63c85232009-09-03 20:14:03 +03003166 oh = _lookup(name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003167
3168 return oh;
3169}
3170
3171/**
3172 * omap_hwmod_for_each - call function for each registered omap_hwmod
3173 * @fn: pointer to a callback function
Paul Walmsley97d60162010-07-26 16:34:30 -06003174 * @data: void * data to pass to callback function
Paul Walmsley63c85232009-09-03 20:14:03 +03003175 *
3176 * Call @fn for each registered omap_hwmod, passing @data to each
3177 * function. @fn must return 0 for success or any other value for
3178 * failure. If @fn returns non-zero, the iteration across omap_hwmods
3179 * will stop and the non-zero return value will be passed to the
3180 * caller of omap_hwmod_for_each(). @fn is called with
3181 * omap_hwmod_for_each() held.
3182 */
Paul Walmsley97d60162010-07-26 16:34:30 -06003183int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
3184 void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03003185{
3186 struct omap_hwmod *temp_oh;
Govindraj.R30ebad92011-06-01 11:28:56 +05303187 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003188
3189 if (!fn)
3190 return -EINVAL;
3191
Paul Walmsley63c85232009-09-03 20:14:03 +03003192 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
Paul Walmsley97d60162010-07-26 16:34:30 -06003193 ret = (*fn)(temp_oh, data);
Paul Walmsley63c85232009-09-03 20:14:03 +03003194 if (ret)
3195 break;
3196 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003197
3198 return ret;
3199}
3200
Paul Walmsley63c85232009-09-03 20:14:03 +03003201/**
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003202 * omap_hwmod_register_links - register an array of hwmod links
3203 * @ois: pointer to an array of omap_hwmod_ocp_if to register
3204 *
3205 * Intended to be called early in boot before the clock framework is
3206 * initialized. If @ois is not null, will register all omap_hwmods
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003207 * listed in @ois that are valid for this chip. Returns -EINVAL if
3208 * omap_hwmod_init() hasn't been called before calling this function,
3209 * -ENOMEM if the link memory area can't be allocated, or 0 upon
3210 * success.
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003211 */
3212int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
3213{
3214 int r, i;
3215
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003216 if (!inited)
3217 return -EINVAL;
3218
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003219 if (!ois)
3220 return 0;
3221
Rajendra Nayakf7f7a292014-08-27 19:38:23 -06003222 if (ois[0] == NULL) /* Empty list */
3223 return 0;
3224
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003225 if (!linkspace) {
3226 if (_alloc_linkspace(ois)) {
3227 pr_err("omap_hwmod: could not allocate link space\n");
3228 return -ENOMEM;
3229 }
3230 }
3231
3232 i = 0;
3233 do {
3234 r = _register_link(ois[i]);
3235 WARN(r && r != -EEXIST,
3236 "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3237 ois[i]->master->name, ois[i]->slave->name, r);
3238 } while (ois[++i]);
3239
3240 return 0;
3241}
3242
3243/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003244 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3245 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003246 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003247 * If the hwmod data corresponding to the MPU subsystem IP block
3248 * hasn't been initialized and set up yet, do so now. This must be
3249 * done first since sleep dependencies may be added from other hwmods
3250 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
3251 * return value.
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003252 */
Paul Walmsley381d0332012-04-19 00:58:22 -06003253static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003254{
Paul Walmsley381d0332012-04-19 00:58:22 -06003255 if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3256 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3257 __func__, MPU_INITIATOR_NAME);
3258 else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3259 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
Paul Walmsley63c85232009-09-03 20:14:03 +03003260}
3261
3262/**
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003263 * omap_hwmod_setup_one - set up a single hwmod
3264 * @oh_name: const char * name of the already-registered hwmod to set up
3265 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003266 * Initialize and set up a single hwmod. Intended to be used for a
3267 * small number of early devices, such as the timer IP blocks used for
3268 * the scheduler clock. Must be called after omap2_clk_init().
3269 * Resolves the struct clk names to struct clk pointers for each
3270 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
3271 * -EINVAL upon error or 0 upon success.
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003272 */
3273int __init omap_hwmod_setup_one(const char *oh_name)
3274{
3275 struct omap_hwmod *oh;
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003276
3277 pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3278
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003279 oh = _lookup(oh_name);
3280 if (!oh) {
3281 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3282 return -EINVAL;
3283 }
3284
Paul Walmsley381d0332012-04-19 00:58:22 -06003285 _ensure_mpu_hwmod_is_setup(oh);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003286
Paul Walmsley381d0332012-04-19 00:58:22 -06003287 _init(oh, NULL);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003288 _setup(oh, NULL);
3289
3290 return 0;
3291}
3292
3293/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003294 * omap_hwmod_setup_all - set up all registered IP blocks
Paul Walmsley63c85232009-09-03 20:14:03 +03003295 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003296 * Initialize and set up all IP blocks registered with the hwmod code.
3297 * Must be called after omap2_clk_init(). Resolves the struct clk
3298 * names to struct clk pointers for each registered omap_hwmod. Also
3299 * calls _setup() on each hwmod. Returns 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003300 */
Paul Walmsley550c8092011-02-28 11:58:14 -07003301static int __init omap_hwmod_setup_all(void)
Paul Walmsley63c85232009-09-03 20:14:03 +03003302{
Paul Walmsley381d0332012-04-19 00:58:22 -06003303 _ensure_mpu_hwmod_is_setup(NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003304
Paul Walmsley381d0332012-04-19 00:58:22 -06003305 omap_hwmod_for_each(_init, NULL);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003306 omap_hwmod_for_each(_setup, NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003307
3308 return 0;
3309}
Tony Lindgrenb76c8b12013-01-11 11:24:18 -08003310omap_core_initcall(omap_hwmod_setup_all);
Paul Walmsley63c85232009-09-03 20:14:03 +03003311
3312/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003313 * omap_hwmod_enable - enable an omap_hwmod
3314 * @oh: struct omap_hwmod *
3315 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003316 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
Paul Walmsley63c85232009-09-03 20:14:03 +03003317 * Returns -EINVAL on error or passes along the return value from _enable().
3318 */
3319int omap_hwmod_enable(struct omap_hwmod *oh)
3320{
3321 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003322 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003323
3324 if (!oh)
3325 return -EINVAL;
3326
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003327 spin_lock_irqsave(&oh->_lock, flags);
3328 r = _enable(oh);
3329 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003330
3331 return r;
3332}
3333
3334/**
3335 * omap_hwmod_idle - idle an omap_hwmod
3336 * @oh: struct omap_hwmod *
3337 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003338 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
Paul Walmsley63c85232009-09-03 20:14:03 +03003339 * Returns -EINVAL on error or passes along the return value from _idle().
3340 */
3341int omap_hwmod_idle(struct omap_hwmod *oh)
3342{
Pali RohƔr6da23352015-02-26 14:49:51 +01003343 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003344 unsigned long flags;
3345
Paul Walmsley63c85232009-09-03 20:14:03 +03003346 if (!oh)
3347 return -EINVAL;
3348
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003349 spin_lock_irqsave(&oh->_lock, flags);
Pali RohƔr6da23352015-02-26 14:49:51 +01003350 r = _idle(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003351 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003352
Pali RohƔr6da23352015-02-26 14:49:51 +01003353 return r;
Paul Walmsley63c85232009-09-03 20:14:03 +03003354}
3355
3356/**
3357 * omap_hwmod_shutdown - shutdown an omap_hwmod
3358 * @oh: struct omap_hwmod *
3359 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003360 * Shutdown an omap_hwmod @oh. Intended to be called by
Paul Walmsley63c85232009-09-03 20:14:03 +03003361 * omap_device_shutdown(). Returns -EINVAL on error or passes along
3362 * the return value from _shutdown().
3363 */
3364int omap_hwmod_shutdown(struct omap_hwmod *oh)
3365{
Pali RohƔr6da23352015-02-26 14:49:51 +01003366 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003367 unsigned long flags;
3368
Paul Walmsley63c85232009-09-03 20:14:03 +03003369 if (!oh)
3370 return -EINVAL;
3371
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003372 spin_lock_irqsave(&oh->_lock, flags);
Pali RohƔr6da23352015-02-26 14:49:51 +01003373 r = _shutdown(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003374 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003375
Pali RohƔr6da23352015-02-26 14:49:51 +01003376 return r;
Paul Walmsley63c85232009-09-03 20:14:03 +03003377}
3378
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003379/*
3380 * IP block data retrieval functions
3381 */
3382
Paul Walmsley63c85232009-09-03 20:14:03 +03003383/**
3384 * omap_hwmod_count_resources - count number of struct resources needed by hwmod
3385 * @oh: struct omap_hwmod *
Peter Ujfalusidad41912012-11-21 16:15:17 -07003386 * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
Paul Walmsley63c85232009-09-03 20:14:03 +03003387 *
3388 * Count the number of struct resource array elements necessary to
3389 * contain omap_hwmod @oh resources. Intended to be called by code
3390 * that registers omap_devices. Intended to be used to determine the
3391 * size of a dynamically-allocated struct resource array, before
3392 * calling omap_hwmod_fill_resources(). Returns the number of struct
3393 * resource array elements needed.
3394 *
3395 * XXX This code is not optimized. It could attempt to merge adjacent
3396 * resource IDs.
3397 *
3398 */
Peter Ujfalusidad41912012-11-21 16:15:17 -07003399int omap_hwmod_count_resources(struct omap_hwmod *oh, unsigned long flags)
Paul Walmsley63c85232009-09-03 20:14:03 +03003400{
Peter Ujfalusidad41912012-11-21 16:15:17 -07003401 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003402
Peter Ujfalusidad41912012-11-21 16:15:17 -07003403 if (flags & IORESOURCE_IRQ)
3404 ret += _count_mpu_irqs(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03003405
Peter Ujfalusidad41912012-11-21 16:15:17 -07003406 if (flags & IORESOURCE_DMA)
3407 ret += _count_sdma_reqs(oh);
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003408
Peter Ujfalusidad41912012-11-21 16:15:17 -07003409 if (flags & IORESOURCE_MEM) {
3410 int i = 0;
3411 struct omap_hwmod_ocp_if *os;
3412 struct list_head *p = oh->slave_ports.next;
3413
3414 while (i < oh->slaves_cnt) {
3415 os = _fetch_next_ocp_if(&p, &i);
3416 ret += _count_ocp_if_addr_spaces(os);
3417 }
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003418 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003419
3420 return ret;
3421}
3422
3423/**
3424 * omap_hwmod_fill_resources - fill struct resource array with hwmod data
3425 * @oh: struct omap_hwmod *
3426 * @res: pointer to the first element of an array of struct resource to fill
3427 *
3428 * Fill the struct resource array @res with resource data from the
3429 * omap_hwmod @oh. Intended to be called by code that registers
3430 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3431 * number of array elements filled.
3432 */
3433int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
3434{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003435 struct omap_hwmod_ocp_if *os;
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003436 struct list_head *p;
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003437 int i, j, mpu_irqs_cnt, sdma_reqs_cnt, addr_cnt;
Paul Walmsley63c85232009-09-03 20:14:03 +03003438 int r = 0;
3439
3440 /* For each IRQ, DMA, memory area, fill in array.*/
3441
Paul Walmsley212738a2011-07-09 19:14:06 -06003442 mpu_irqs_cnt = _count_mpu_irqs(oh);
3443 for (i = 0; i < mpu_irqs_cnt; i++) {
Marc Zyngier0fb22a82015-01-17 10:21:08 +00003444 unsigned int irq;
3445
3446 if (oh->xlate_irq)
3447 irq = oh->xlate_irq((oh->mpu_irqs + i)->irq);
3448 else
3449 irq = (oh->mpu_irqs + i)->irq;
Paul Walmsley718bfd72009-12-08 16:34:16 -07003450 (res + r)->name = (oh->mpu_irqs + i)->name;
Marc Zyngier0fb22a82015-01-17 10:21:08 +00003451 (res + r)->start = irq;
3452 (res + r)->end = irq;
Paul Walmsley63c85232009-09-03 20:14:03 +03003453 (res + r)->flags = IORESOURCE_IRQ;
3454 r++;
3455 }
3456
Paul Walmsleybc614952011-07-09 19:14:07 -06003457 sdma_reqs_cnt = _count_sdma_reqs(oh);
3458 for (i = 0; i < sdma_reqs_cnt; i++) {
Benoit Cousson9ee9fff2010-09-21 10:34:08 -06003459 (res + r)->name = (oh->sdma_reqs + i)->name;
3460 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3461 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
Paul Walmsley63c85232009-09-03 20:14:03 +03003462 (res + r)->flags = IORESOURCE_DMA;
3463 r++;
3464 }
3465
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003466 p = oh->slave_ports.next;
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003467
Paul Walmsley5d95dde2012-04-19 04:04:28 -06003468 i = 0;
3469 while (i < oh->slaves_cnt) {
Paul Walmsley11cd4b92012-04-19 04:04:32 -06003470 os = _fetch_next_ocp_if(&p, &i);
Paul Walmsley78183f32011-07-09 19:14:05 -06003471 addr_cnt = _count_ocp_if_addr_spaces(os);
Paul Walmsley63c85232009-09-03 20:14:03 +03003472
Paul Walmsley78183f32011-07-09 19:14:05 -06003473 for (j = 0; j < addr_cnt; j++) {
Kishon Vijay Abraham Icd503802011-02-24 12:51:45 -08003474 (res + r)->name = (os->addr + j)->name;
Paul Walmsley63c85232009-09-03 20:14:03 +03003475 (res + r)->start = (os->addr + j)->pa_start;
3476 (res + r)->end = (os->addr + j)->pa_end;
3477 (res + r)->flags = IORESOURCE_MEM;
3478 r++;
3479 }
3480 }
3481
3482 return r;
3483}
3484
3485/**
Vaibhav Hiremathb82b04e2012-08-29 15:18:11 +05303486 * omap_hwmod_fill_dma_resources - fill struct resource array with dma data
3487 * @oh: struct omap_hwmod *
3488 * @res: pointer to the array of struct resource to fill
3489 *
3490 * Fill the struct resource array @res with dma resource data from the
3491 * omap_hwmod @oh. Intended to be called by code that registers
3492 * omap_devices. See also omap_hwmod_count_resources(). Returns the
3493 * number of array elements filled.
3494 */
3495int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res)
3496{
3497 int i, sdma_reqs_cnt;
3498 int r = 0;
3499
3500 sdma_reqs_cnt = _count_sdma_reqs(oh);
3501 for (i = 0; i < sdma_reqs_cnt; i++) {
3502 (res + r)->name = (oh->sdma_reqs + i)->name;
3503 (res + r)->start = (oh->sdma_reqs + i)->dma_req;
3504 (res + r)->end = (oh->sdma_reqs + i)->dma_req;
3505 (res + r)->flags = IORESOURCE_DMA;
3506 r++;
3507 }
3508
3509 return r;
3510}
3511
3512/**
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003513 * omap_hwmod_get_resource_byname - fetch IP block integration data by name
3514 * @oh: struct omap_hwmod * to operate on
3515 * @type: one of the IORESOURCE_* constants from include/linux/ioport.h
3516 * @name: pointer to the name of the data to fetch (optional)
3517 * @rsrc: pointer to a struct resource, allocated by the caller
3518 *
3519 * Retrieve MPU IRQ, SDMA request line, or address space start/end
3520 * data for the IP block pointed to by @oh. The data will be filled
3521 * into a struct resource record pointed to by @rsrc. The struct
3522 * resource must be allocated by the caller. When @name is non-null,
3523 * the data associated with the matching entry in the IRQ/SDMA/address
3524 * space hwmod data arrays will be returned. If @name is null, the
3525 * first array entry will be returned. Data order is not meaningful
3526 * in hwmod data, so callers are strongly encouraged to use a non-null
3527 * @name whenever possible to avoid unpredictable effects if hwmod
3528 * data is later added that causes data ordering to change. This
3529 * function is only intended for use by OMAP core code. Device
3530 * drivers should not call this function - the appropriate bus-related
3531 * data accessor functions should be used instead. Returns 0 upon
3532 * success or a negative error code upon error.
3533 */
3534int omap_hwmod_get_resource_byname(struct omap_hwmod *oh, unsigned int type,
3535 const char *name, struct resource *rsrc)
3536{
3537 int r;
3538 unsigned int irq, dma;
3539 u32 pa_start, pa_end;
3540
3541 if (!oh || !rsrc)
3542 return -EINVAL;
3543
3544 if (type == IORESOURCE_IRQ) {
3545 r = _get_mpu_irq_by_name(oh, name, &irq);
3546 if (r)
3547 return r;
3548
3549 rsrc->start = irq;
3550 rsrc->end = irq;
3551 } else if (type == IORESOURCE_DMA) {
3552 r = _get_sdma_req_by_name(oh, name, &dma);
3553 if (r)
3554 return r;
3555
3556 rsrc->start = dma;
3557 rsrc->end = dma;
3558 } else if (type == IORESOURCE_MEM) {
3559 r = _get_addr_space_by_name(oh, name, &pa_start, &pa_end);
3560 if (r)
3561 return r;
3562
3563 rsrc->start = pa_start;
3564 rsrc->end = pa_end;
3565 } else {
3566 return -EINVAL;
3567 }
3568
3569 rsrc->flags = type;
3570 rsrc->name = name;
3571
3572 return 0;
3573}
3574
3575/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003576 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3577 * @oh: struct omap_hwmod *
3578 *
3579 * Return the powerdomain pointer associated with the OMAP module
3580 * @oh's main clock. If @oh does not have a main clk, return the
3581 * powerdomain associated with the interface clock associated with the
3582 * module's MPU port. (XXX Perhaps this should use the SDMA port
3583 * instead?) Returns NULL on error, or a struct powerdomain * on
3584 * success.
3585 */
3586struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3587{
3588 struct clk *c;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003589 struct omap_hwmod_ocp_if *oi;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003590 struct clockdomain *clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003591 struct clk_hw_omap *clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003592
3593 if (!oh)
3594 return NULL;
3595
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003596 if (oh->clkdm)
3597 return oh->clkdm->pwrdm.ptr;
3598
Paul Walmsley63c85232009-09-03 20:14:03 +03003599 if (oh->_clk) {
3600 c = oh->_clk;
3601 } else {
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003602 oi = _find_mpu_rt_port(oh);
3603 if (!oi)
Paul Walmsley63c85232009-09-03 20:14:03 +03003604 return NULL;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003605 c = oi->_clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003606 }
3607
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003608 clk = to_clk_hw_omap(__clk_get_hw(c));
3609 clkdm = clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003610 if (!clkdm)
Thara Gopinathd5647c12010-03-31 04:16:29 -06003611 return NULL;
3612
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003613 return clkdm->pwrdm.ptr;
Paul Walmsley63c85232009-09-03 20:14:03 +03003614}
3615
3616/**
Paul Walmsleydb2a60b2010-07-26 16:34:33 -06003617 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3618 * @oh: struct omap_hwmod *
3619 *
3620 * Returns the virtual address corresponding to the beginning of the
3621 * module's register target, in the address range that is intended to
3622 * be used by the MPU. Returns the virtual address upon success or NULL
3623 * upon error.
3624 */
3625void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3626{
3627 if (!oh)
3628 return NULL;
3629
3630 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3631 return NULL;
3632
3633 if (oh->_state == _HWMOD_STATE_UNKNOWN)
3634 return NULL;
3635
3636 return oh->_mpu_rt_va;
3637}
3638
Paul Walmsley63c85232009-09-03 20:14:03 +03003639/*
3640 * XXX what about functions for drivers to save/restore ocp_sysconfig
3641 * for context save/restore operations?
3642 */
3643
3644/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003645 * omap_hwmod_enable_wakeup - allow device to wake up the system
3646 * @oh: struct omap_hwmod *
3647 *
3648 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
Govindraj.R2a1cc142012-04-05 02:59:32 -06003649 * send wakeups to the PRCM, and enable I/O ring wakeup events for
3650 * this IP block if it has dynamic mux entries. Eventually this
3651 * should set PRCM wakeup registers to cause the PRCM to receive
3652 * wakeup events from the module. Does not set any wakeup routing
3653 * registers beyond this point - if the module is to wake up any other
3654 * module or subsystem, that must be set separately. Called by
3655 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003656 */
3657int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
3658{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003659 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003660 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003661
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003662 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003663
3664 if (oh->class->sysc &&
3665 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3666 v = oh->_sysc_cache;
3667 _enable_wakeup(oh, &v);
3668 _write_sysconfig(v, oh);
3669 }
3670
Govindraj Receec002011-12-16 14:36:58 -07003671 _set_idle_ioring_wakeup(oh, true);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003672 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003673
3674 return 0;
3675}
3676
3677/**
3678 * omap_hwmod_disable_wakeup - prevent device from waking the system
3679 * @oh: struct omap_hwmod *
3680 *
3681 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
Govindraj.R2a1cc142012-04-05 02:59:32 -06003682 * from sending wakeups to the PRCM, and disable I/O ring wakeup
3683 * events for this IP block if it has dynamic mux entries. Eventually
3684 * this should clear PRCM wakeup registers to cause the PRCM to ignore
3685 * wakeup events from the module. Does not set any wakeup routing
3686 * registers beyond this point - if the module is to wake up any other
3687 * module or subsystem, that must be set separately. Called by
3688 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003689 */
3690int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
3691{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003692 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003693 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003694
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003695 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003696
3697 if (oh->class->sysc &&
3698 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3699 v = oh->_sysc_cache;
3700 _disable_wakeup(oh, &v);
3701 _write_sysconfig(v, oh);
3702 }
3703
Govindraj Receec002011-12-16 14:36:58 -07003704 _set_idle_ioring_wakeup(oh, false);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003705 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003706
3707 return 0;
3708}
Paul Walmsley43b40992010-02-22 22:09:34 -07003709
3710/**
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003711 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3712 * contained in the hwmod module.
3713 * @oh: struct omap_hwmod *
3714 * @name: name of the reset line to lookup and assert
3715 *
3716 * Some IP like dsp, ipu or iva contain processor that require
3717 * an HW reset line to be assert / deassert in order to enable fully
3718 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3719 * yet supported on this OMAP; otherwise, passes along the return value
3720 * from _assert_hardreset().
3721 */
3722int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
3723{
3724 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003725 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003726
3727 if (!oh)
3728 return -EINVAL;
3729
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003730 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003731 ret = _assert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003732 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003733
3734 return ret;
3735}
3736
3737/**
3738 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3739 * contained in the hwmod module.
3740 * @oh: struct omap_hwmod *
3741 * @name: name of the reset line to look up and deassert
3742 *
3743 * Some IP like dsp, ipu or iva contain processor that require
3744 * an HW reset line to be assert / deassert in order to enable fully
3745 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3746 * yet supported on this OMAP; otherwise, passes along the return value
3747 * from _deassert_hardreset().
3748 */
3749int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
3750{
3751 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003752 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003753
3754 if (!oh)
3755 return -EINVAL;
3756
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003757 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003758 ret = _deassert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003759 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003760
3761 return ret;
3762}
3763
3764/**
Paul Walmsley43b40992010-02-22 22:09:34 -07003765 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
3766 * @classname: struct omap_hwmod_class name to search for
3767 * @fn: callback function pointer to call for each hwmod in class @classname
3768 * @user: arbitrary context data to pass to the callback function
3769 *
Benoit Coussonce35b242010-12-21 21:31:28 -07003770 * For each omap_hwmod of class @classname, call @fn.
3771 * If the callback function returns something other than
Paul Walmsley43b40992010-02-22 22:09:34 -07003772 * zero, the iterator is terminated, and the callback function's return
3773 * value is passed back to the caller. Returns 0 upon success, -EINVAL
3774 * if @classname or @fn are NULL, or passes back the error code from @fn.
3775 */
3776int omap_hwmod_for_each_by_class(const char *classname,
3777 int (*fn)(struct omap_hwmod *oh,
3778 void *user),
3779 void *user)
3780{
3781 struct omap_hwmod *temp_oh;
3782 int ret = 0;
3783
3784 if (!classname || !fn)
3785 return -EINVAL;
3786
3787 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
3788 __func__, classname);
3789
Paul Walmsley43b40992010-02-22 22:09:34 -07003790 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
3791 if (!strcmp(temp_oh->class->name, classname)) {
3792 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
3793 __func__, temp_oh->name);
3794 ret = (*fn)(temp_oh, user);
3795 if (ret)
3796 break;
3797 }
3798 }
3799
Paul Walmsley43b40992010-02-22 22:09:34 -07003800 if (ret)
3801 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
3802 __func__, ret);
3803
3804 return ret;
3805}
3806
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003807/**
3808 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
3809 * @oh: struct omap_hwmod *
3810 * @state: state that _setup() should leave the hwmod in
3811 *
Paul Walmsley550c8092011-02-28 11:58:14 -07003812 * Sets the hwmod state that @oh will enter at the end of _setup()
Paul Walmsley64813c32012-04-18 19:10:03 -06003813 * (called by omap_hwmod_setup_*()). See also the documentation
3814 * for _setup_postsetup(), above. Returns 0 upon success or
3815 * -EINVAL if there is a problem with the arguments or if the hwmod is
3816 * in the wrong state.
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003817 */
3818int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
3819{
3820 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003821 unsigned long flags;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003822
3823 if (!oh)
3824 return -EINVAL;
3825
3826 if (state != _HWMOD_STATE_DISABLED &&
3827 state != _HWMOD_STATE_ENABLED &&
3828 state != _HWMOD_STATE_IDLE)
3829 return -EINVAL;
3830
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003831 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003832
3833 if (oh->_state != _HWMOD_STATE_REGISTERED) {
3834 ret = -EINVAL;
3835 goto ohsps_unlock;
3836 }
3837
3838 oh->_postsetup_state = state;
3839 ret = 0;
3840
3841ohsps_unlock:
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003842 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003843
3844 return ret;
3845}
Kevin Hilmanc80705a2010-12-21 21:31:55 -07003846
3847/**
3848 * omap_hwmod_get_context_loss_count - get lost context count
3849 * @oh: struct omap_hwmod *
3850 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07003851 * Returns the context loss count of associated @oh
3852 * upon success, or zero if no context loss data is available.
Kevin Hilmanc80705a2010-12-21 21:31:55 -07003853 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07003854 * On OMAP4, this queries the per-hwmod context loss register,
3855 * assuming one exists. If not, or on OMAP2/3, this queries the
3856 * enclosing powerdomain context loss count.
Kevin Hilmanc80705a2010-12-21 21:31:55 -07003857 */
Tomi Valkeinenfc013872011-06-09 16:56:23 +03003858int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
Kevin Hilmanc80705a2010-12-21 21:31:55 -07003859{
3860 struct powerdomain *pwrdm;
3861 int ret = 0;
3862
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07003863 if (soc_ops.get_context_lost)
3864 return soc_ops.get_context_lost(oh);
3865
Kevin Hilmanc80705a2010-12-21 21:31:55 -07003866 pwrdm = omap_hwmod_get_pwrdm(oh);
3867 if (pwrdm)
3868 ret = pwrdm_get_context_loss_count(pwrdm);
3869
3870 return ret;
3871}
Paul Walmsley43b01642011-03-10 03:50:07 -07003872
3873/**
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003874 * omap_hwmod_init - initialize the hwmod code
3875 *
3876 * Sets up some function pointers needed by the hwmod code to operate on the
3877 * currently-booted SoC. Intended to be called once during kernel init
3878 * before any hwmods are registered. No return value.
3879 */
3880void __init omap_hwmod_init(void)
3881{
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06003882 if (cpu_is_omap24xx()) {
Tero Kristo9002e9212014-10-27 08:39:23 -07003883 soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06003884 soc_ops.assert_hardreset = _omap2_assert_hardreset;
3885 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
3886 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
3887 } else if (cpu_is_omap34xx()) {
Tero Kristo9002e9212014-10-27 08:39:23 -07003888 soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003889 soc_ops.assert_hardreset = _omap2_assert_hardreset;
3890 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
3891 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
Tero Kristo0385c582013-07-17 18:03:25 +03003892 soc_ops.init_clkdm = _init_clkdm;
Rajendra Nayakdebcd1f2013-07-02 18:20:08 +05303893 } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003894 soc_ops.enable_module = _omap4_enable_module;
3895 soc_ops.disable_module = _omap4_disable_module;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06003896 soc_ops.wait_target_ready = _omap4_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06003897 soc_ops.assert_hardreset = _omap4_assert_hardreset;
3898 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
3899 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
Kevin Hilman0a179ea2012-06-18 12:12:25 -06003900 soc_ops.init_clkdm = _init_clkdm;
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07003901 soc_ops.update_context_lost = _omap4_update_context_lost;
3902 soc_ops.get_context_lost = _omap4_get_context_lost;
Tony Lindgren0f3ccb22015-07-16 01:55:58 -07003903 } else if (cpu_is_ti814x() || cpu_is_ti816x() || soc_is_am33xx() ||
3904 soc_is_am43xx()) {
Afzal Mohammedc8b428a2013-10-12 15:46:20 +05303905 soc_ops.enable_module = _omap4_enable_module;
3906 soc_ops.disable_module = _omap4_disable_module;
3907 soc_ops.wait_target_ready = _omap4_wait_target_ready;
Tero Kristo409d7062014-10-27 08:39:24 -07003908 soc_ops.assert_hardreset = _omap4_assert_hardreset;
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003909 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
Tero Kristoa5bf00c2015-05-05 16:33:05 +03003910 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06003911 soc_ops.init_clkdm = _init_clkdm;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06003912 } else {
3913 WARN(1, "omap_hwmod: unknown SoC type\n");
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003914 }
3915
3916 inited = true;
3917}
Tony Lindgren68c9a952012-07-06 00:58:43 -07003918
3919/**
3920 * omap_hwmod_get_main_clk - get pointer to main clock name
3921 * @oh: struct omap_hwmod *
3922 *
3923 * Returns the main clock name assocated with @oh upon success,
3924 * or NULL if @oh is NULL.
3925 */
3926const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
3927{
3928 if (!oh)
3929 return NULL;
3930
3931 return oh->main_clk;
3932}