blob: 4af2e9f0966df3ba500ae2875e74b057ca0f0093 [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>
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +0100141#include <linux/cpu.h>
Santosh Shilimkar079abad2013-01-21 18:40:57 +0530142#include <linux/of.h>
143#include <linux/of_address.h>
Mike Rapoport57c8a662018-10-30 15:09:49 -0700144#include <linux/memblock.h>
Paul Walmsley63c85232009-09-03 20:14:03 +0300145
Tony Lindgren49a0a3d2017-12-15 09:41:05 -0800146#include <linux/platform_data/ti-sysc.h>
147
Tony Lindgren8c879702018-02-22 14:04:56 -0800148#include <dt-bindings/bus/ti-sysc.h>
149
Paul Walmsleyfa200222013-01-26 00:48:56 -0700150#include <asm/system_misc.h>
151
Paul Walmsleya135eaa2012-09-27 10:33:34 -0600152#include "clock.h"
Tony Lindgren2a296c82012-10-02 17:41:35 -0700153#include "omap_hwmod.h"
Paul Walmsley63c85232009-09-03 20:14:03 +0300154
Tony Lindgrendbc04162012-08-31 10:59:07 -0700155#include "soc.h"
156#include "common.h"
157#include "clockdomain.h"
Tony Lindgren8b309192019-03-21 11:00:21 -0700158#include "hdq1w.h"
159#include "mmc.h"
Tony Lindgrendbc04162012-08-31 10:59:07 -0700160#include "powerdomain.h"
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -0600161#include "cm2xxx.h"
162#include "cm3xxx.h"
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600163#include "cm33xx.h"
Paul Walmsleyb13159a2012-10-29 20:57:44 -0600164#include "prm.h"
Paul Walmsley139563a2012-10-21 01:01:10 -0600165#include "prm3xxx.h"
Paul Walmsleyd198b512010-12-21 15:30:54 -0700166#include "prm44xx.h"
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -0600167#include "prm33xx.h"
Benoit Coussoneaac3292011-07-10 05:56:31 -0600168#include "prminst44xx.h"
Vishwanath BS51658822012-06-22 08:40:04 -0600169#include "pm.h"
Tony Lindgren8b309192019-03-21 11:00:21 -0700170#include "wd_timer.h"
Paul Walmsley63c85232009-09-03 20:14:03 +0300171
Paul Walmsley63c85232009-09-03 20:14:03 +0300172/* Name of the OMAP hwmod for the MPU */
Benoit Cousson5c2c0292010-05-20 12:31:10 -0600173#define MPU_INITIATOR_NAME "mpu"
Paul Walmsley63c85232009-09-03 20:14:03 +0300174
Paul Walmsley2221b5c2012-04-19 04:04:30 -0600175/*
176 * Number of struct omap_hwmod_link records per struct
177 * omap_hwmod_ocp_if record (master->slave and slave->master)
178 */
179#define LINKS_PER_OCP_IF 2
180
Tero Kristo4ebf5b22015-05-05 16:33:04 +0300181/*
182 * Address offset (in bytes) between the reset control and the reset
183 * status registers: 4 bytes on OMAP4
184 */
185#define OMAP4_RST_CTRL_ST_OFFSET 4
186
Tero Kristo9fabc1a2016-07-04 14:11:48 +0300187/*
188 * Maximum length for module clock handle names
189 */
190#define MOD_CLK_MAX_NAME_LEN 32
191
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600192/**
Tero Kristo70f05be2017-05-31 18:00:03 +0300193 * struct clkctrl_provider - clkctrl provider mapping data
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300194 * @num_addrs: number of base address ranges for the provider
195 * @addr: base address(es) for the provider
196 * @size: size(s) of the provider address space(s)
Tero Kristo70f05be2017-05-31 18:00:03 +0300197 * @node: device node associated with the provider
198 * @link: list link
199 */
200struct clkctrl_provider {
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300201 int num_addrs;
202 u32 *addr;
203 u32 *size;
Tero Kristo70f05be2017-05-31 18:00:03 +0300204 struct device_node *node;
205 struct list_head link;
206};
207
208static LIST_HEAD(clkctrl_providers);
209
210/**
Tony Lindgren8b309192019-03-21 11:00:21 -0700211 * struct omap_hwmod_reset - IP specific reset functions
212 * @match: string to match against the module name
213 * @len: number of characters to match
214 * @reset: IP specific reset function
215 *
216 * Used only in cases where struct omap_hwmod is dynamically allocated.
217 */
218struct omap_hwmod_reset {
219 const char *match;
220 int len;
221 int (*reset)(struct omap_hwmod *oh);
222};
223
224/**
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600225 * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
226 * @enable_module: function to enable a module (via MODULEMODE)
227 * @disable_module: function to disable a module (via MODULEMODE)
228 *
229 * XXX Eventually this functionality will be hidden inside the PRM/CM
230 * device drivers. Until then, this should avoid huge blocks of cpu_is_*()
231 * conditionals in this code.
232 */
233struct omap_hwmod_soc_ops {
234 void (*enable_module)(struct omap_hwmod *oh);
235 int (*disable_module)(struct omap_hwmod *oh);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -0600236 int (*wait_target_ready)(struct omap_hwmod *oh);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -0600237 int (*assert_hardreset)(struct omap_hwmod *oh,
238 struct omap_hwmod_rst_info *ohri);
239 int (*deassert_hardreset)(struct omap_hwmod *oh,
240 struct omap_hwmod_rst_info *ohri);
241 int (*is_hardreset_asserted)(struct omap_hwmod *oh,
242 struct omap_hwmod_rst_info *ohri);
Kevin Hilman0a179ea2012-06-18 12:12:25 -0600243 int (*init_clkdm)(struct omap_hwmod *oh);
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -0700244 void (*update_context_lost)(struct omap_hwmod *oh);
245 int (*get_context_lost)(struct omap_hwmod *oh);
Tero Kristo9fabc1a2016-07-04 14:11:48 +0300246 int (*disable_direct_prcm)(struct omap_hwmod *oh);
Tero Kristo6e83eca2017-08-04 17:41:50 +0300247 u32 (*xlate_clkctrl)(struct omap_hwmod *oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600248};
249
250/* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
251static struct omap_hwmod_soc_ops soc_ops;
252
Paul Walmsley63c85232009-09-03 20:14:03 +0300253/* omap_hwmod_list contains all registered struct omap_hwmods */
254static LIST_HEAD(omap_hwmod_list);
Tony Lindgrenb57250f2019-03-21 11:00:21 -0700255static DEFINE_MUTEX(list_lock);
Paul Walmsley63c85232009-09-03 20:14:03 +0300256
Paul Walmsley63c85232009-09-03 20:14:03 +0300257/* mpu_oh: used to add/remove MPU initiator from sleepdep list */
258static struct omap_hwmod *mpu_oh;
259
Kevin Hilman9ebfd282012-06-18 12:12:23 -0600260/* inited: set to true once the hwmod code is initialized */
261static bool inited;
262
Paul Walmsley63c85232009-09-03 20:14:03 +0300263/* Private functions */
264
265/**
266 * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
267 * @oh: struct omap_hwmod *
268 *
269 * Load the current value of the hwmod OCP_SYSCONFIG register into the
270 * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
271 * OCP_SYSCONFIG register or 0 upon success.
272 */
273static int _update_sysc_cache(struct omap_hwmod *oh)
274{
Paul Walmsley43b40992010-02-22 22:09:34 -0700275 if (!oh->class->sysc) {
276 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 +0300277 return -EINVAL;
278 }
279
280 /* XXX ensure module interface clock is up */
281
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -0700282 oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +0300283
Paul Walmsley43b40992010-02-22 22:09:34 -0700284 if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
Thara Gopinath883edfd2010-01-19 17:30:51 -0700285 oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
Paul Walmsley63c85232009-09-03 20:14:03 +0300286
287 return 0;
288}
289
290/**
291 * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
292 * @v: OCP_SYSCONFIG value to write
293 * @oh: struct omap_hwmod *
294 *
Paul Walmsley43b40992010-02-22 22:09:34 -0700295 * Write @v into the module class' OCP_SYSCONFIG register, if it has
296 * one. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +0300297 */
298static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
299{
Paul Walmsley43b40992010-02-22 22:09:34 -0700300 if (!oh->class->sysc) {
301 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 +0300302 return;
303 }
304
305 /* XXX ensure module interface clock is up */
306
Rajendra Nayak233cbe52010-12-14 12:42:36 -0700307 /* Module might have lost context, always update cache and register */
308 oh->_sysc_cache = v;
Lokesh Vutlaaaf2c0f2015-06-10 14:56:24 +0530309
310 /*
311 * Some IP blocks (such as RTC) require unlocking of IP before
312 * accessing its registers. If a function pointer is present
313 * to unlock, then call it before accessing sysconfig and
314 * call lock after writing sysconfig.
315 */
316 if (oh->class->unlock)
317 oh->class->unlock(oh);
318
Rajendra Nayak233cbe52010-12-14 12:42:36 -0700319 omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
Lokesh Vutlaaaf2c0f2015-06-10 14:56:24 +0530320
321 if (oh->class->lock)
322 oh->class->lock(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +0300323}
324
325/**
326 * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
327 * @oh: struct omap_hwmod *
328 * @standbymode: MIDLEMODE field bits
329 * @v: pointer to register contents to modify
330 *
331 * Update the master standby mode bits in @v to be @standbymode for
332 * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
333 * upon error or 0 upon success.
334 */
335static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
336 u32 *v)
337{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700338 u32 mstandby_mask;
339 u8 mstandby_shift;
340
Paul Walmsley43b40992010-02-22 22:09:34 -0700341 if (!oh->class->sysc ||
342 !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300343 return -EINVAL;
344
Paul Walmsley43b40992010-02-22 22:09:34 -0700345 if (!oh->class->sysc->sysc_fields) {
346 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700347 return -EINVAL;
348 }
349
Paul Walmsley43b40992010-02-22 22:09:34 -0700350 mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700351 mstandby_mask = (0x3 << mstandby_shift);
352
353 *v &= ~mstandby_mask;
354 *v |= __ffs(standbymode) << mstandby_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300355
356 return 0;
357}
358
359/**
360 * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
361 * @oh: struct omap_hwmod *
362 * @idlemode: SIDLEMODE field bits
363 * @v: pointer to register contents to modify
364 *
365 * Update the slave idle mode bits in @v to be @idlemode for the @oh
366 * hwmod. Does not write to the hardware. Returns -EINVAL upon error
367 * or 0 upon success.
368 */
369static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
370{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700371 u32 sidle_mask;
372 u8 sidle_shift;
373
Paul Walmsley43b40992010-02-22 22:09:34 -0700374 if (!oh->class->sysc ||
375 !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
Paul Walmsley63c85232009-09-03 20:14:03 +0300376 return -EINVAL;
377
Paul Walmsley43b40992010-02-22 22:09:34 -0700378 if (!oh->class->sysc->sysc_fields) {
379 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700380 return -EINVAL;
381 }
382
Paul Walmsley43b40992010-02-22 22:09:34 -0700383 sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700384 sidle_mask = (0x3 << sidle_shift);
385
386 *v &= ~sidle_mask;
387 *v |= __ffs(idlemode) << sidle_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300388
389 return 0;
390}
391
392/**
393 * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
394 * @oh: struct omap_hwmod *
395 * @clockact: CLOCKACTIVITY field bits
396 * @v: pointer to register contents to modify
397 *
398 * Update the clockactivity mode bits in @v to be @clockact for the
399 * @oh hwmod. Used for additional powersaving on some modules. Does
400 * not write to the hardware. Returns -EINVAL upon error or 0 upon
401 * success.
402 */
403static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
404{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700405 u32 clkact_mask;
406 u8 clkact_shift;
407
Paul Walmsley43b40992010-02-22 22:09:34 -0700408 if (!oh->class->sysc ||
409 !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
Paul Walmsley63c85232009-09-03 20:14:03 +0300410 return -EINVAL;
411
Paul Walmsley43b40992010-02-22 22:09:34 -0700412 if (!oh->class->sysc->sysc_fields) {
413 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700414 return -EINVAL;
415 }
416
Paul Walmsley43b40992010-02-22 22:09:34 -0700417 clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
Thara Gopinath358f0e62010-02-24 12:05:58 -0700418 clkact_mask = (0x3 << clkact_shift);
419
420 *v &= ~clkact_mask;
421 *v |= clockact << clkact_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300422
423 return 0;
424}
425
426/**
Roger Quadros313a76e2013-12-08 18:39:02 -0700427 * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v
Paul Walmsley63c85232009-09-03 20:14:03 +0300428 * @oh: struct omap_hwmod *
429 * @v: pointer to register contents to modify
430 *
431 * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
432 * error or 0 upon success.
433 */
434static int _set_softreset(struct omap_hwmod *oh, u32 *v)
435{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700436 u32 softrst_mask;
437
Paul Walmsley43b40992010-02-22 22:09:34 -0700438 if (!oh->class->sysc ||
439 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley63c85232009-09-03 20:14:03 +0300440 return -EINVAL;
441
Paul Walmsley43b40992010-02-22 22:09:34 -0700442 if (!oh->class->sysc->sysc_fields) {
443 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700444 return -EINVAL;
445 }
446
Paul Walmsley43b40992010-02-22 22:09:34 -0700447 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700448
449 *v |= softrst_mask;
Paul Walmsley63c85232009-09-03 20:14:03 +0300450
451 return 0;
452}
453
454/**
Roger Quadros313a76e2013-12-08 18:39:02 -0700455 * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v
456 * @oh: struct omap_hwmod *
457 * @v: pointer to register contents to modify
458 *
459 * Clear the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
460 * error or 0 upon success.
461 */
462static int _clear_softreset(struct omap_hwmod *oh, u32 *v)
463{
464 u32 softrst_mask;
465
466 if (!oh->class->sysc ||
467 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
468 return -EINVAL;
469
470 if (!oh->class->sysc->sysc_fields) {
471 WARN(1,
472 "omap_hwmod: %s: sysc_fields absent for sysconfig class\n",
473 oh->name);
474 return -EINVAL;
475 }
476
477 softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
478
479 *v &= ~softrst_mask;
480
481 return 0;
482}
483
484/**
Tero Kristo613ad0e2012-10-29 22:02:13 -0600485 * _wait_softreset_complete - wait for an OCP softreset to complete
486 * @oh: struct omap_hwmod * to wait on
487 *
488 * Wait until the IP block represented by @oh reports that its OCP
489 * softreset is complete. This can be triggered by software (see
490 * _ocp_softreset()) or by hardware upon returning from off-mode (one
491 * example is HSMMC). Waits for up to MAX_MODULE_SOFTRESET_WAIT
492 * microseconds. Returns the number of microseconds waited.
493 */
494static int _wait_softreset_complete(struct omap_hwmod *oh)
495{
496 struct omap_hwmod_class_sysconfig *sysc;
497 u32 softrst_mask;
498 int c = 0;
499
500 sysc = oh->class->sysc;
501
Tony Lindgren103fd8e2018-04-16 10:21:15 -0700502 if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS && sysc->syss_offs > 0)
Tero Kristo613ad0e2012-10-29 22:02:13 -0600503 omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs)
504 & SYSS_RESETDONE_MASK),
505 MAX_MODULE_SOFTRESET_WAIT, c);
506 else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
507 softrst_mask = (0x1 << sysc->sysc_fields->srst_shift);
508 omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs)
509 & softrst_mask),
510 MAX_MODULE_SOFTRESET_WAIT, c);
511 }
512
513 return c;
514}
515
516/**
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -0600517 * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
518 * @oh: struct omap_hwmod *
519 *
520 * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
521 * of some modules. When the DMA must perform read/write accesses, the
522 * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
523 * for power management, software must set the DMADISABLE bit back to 1.
524 *
525 * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon
526 * error or 0 upon success.
527 */
528static int _set_dmadisable(struct omap_hwmod *oh)
529{
530 u32 v;
531 u32 dmadisable_mask;
532
533 if (!oh->class->sysc ||
534 !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
535 return -EINVAL;
536
537 if (!oh->class->sysc->sysc_fields) {
538 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
539 return -EINVAL;
540 }
541
542 /* clocks must be on for this operation */
543 if (oh->_state != _HWMOD_STATE_ENABLED) {
544 pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
545 return -EINVAL;
546 }
547
548 pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
549
550 v = oh->_sysc_cache;
551 dmadisable_mask =
552 (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
553 v |= dmadisable_mask;
554 _write_sysconfig(v, oh);
555
556 return 0;
557}
558
559/**
Paul Walmsley726072e2009-12-08 16:34:15 -0700560 * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
561 * @oh: struct omap_hwmod *
562 * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
563 * @v: pointer to register contents to modify
564 *
565 * Update the module autoidle bit in @v to be @autoidle for the @oh
566 * hwmod. The autoidle bit controls whether the module can gate
567 * internal clocks automatically when it isn't doing anything; the
568 * exact function of this bit varies on a per-module basis. This
569 * function does not write to the hardware. Returns -EINVAL upon
570 * error or 0 upon success.
571 */
572static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
573 u32 *v)
574{
Thara Gopinath358f0e62010-02-24 12:05:58 -0700575 u32 autoidle_mask;
576 u8 autoidle_shift;
577
Paul Walmsley43b40992010-02-22 22:09:34 -0700578 if (!oh->class->sysc ||
579 !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
Paul Walmsley726072e2009-12-08 16:34:15 -0700580 return -EINVAL;
581
Paul Walmsley43b40992010-02-22 22:09:34 -0700582 if (!oh->class->sysc->sysc_fields) {
583 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700584 return -EINVAL;
585 }
586
Paul Walmsley43b40992010-02-22 22:09:34 -0700587 autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
Tarun Kanti DebBarma8985b632011-03-03 14:22:46 -0700588 autoidle_mask = (0x1 << autoidle_shift);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700589
590 *v &= ~autoidle_mask;
591 *v |= autoidle << autoidle_shift;
Paul Walmsley726072e2009-12-08 16:34:15 -0700592
593 return 0;
594}
595
596/**
Paul Walmsley63c85232009-09-03 20:14:03 +0300597 * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
598 * @oh: struct omap_hwmod *
599 *
600 * Allow the hardware module @oh to send wakeups. Returns -EINVAL
601 * upon error or 0 upon success.
602 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700603static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300604{
Paul Walmsley43b40992010-02-22 22:09:34 -0700605 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700606 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200607 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
608 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300609 return -EINVAL;
610
Paul Walmsley43b40992010-02-22 22:09:34 -0700611 if (!oh->class->sysc->sysc_fields) {
612 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700613 return -EINVAL;
614 }
615
Benoit Cousson1fe74112011-07-01 22:54:03 +0200616 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
617 *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
Paul Walmsley63c85232009-09-03 20:14:03 +0300618
Benoit Cousson86009eb2010-12-21 21:31:28 -0700619 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
620 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200621 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
622 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700623
Paul Walmsley63c85232009-09-03 20:14:03 +0300624 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
625
Paul Walmsley63c85232009-09-03 20:14:03 +0300626 return 0;
627}
628
629/**
630 * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
631 * @oh: struct omap_hwmod *
632 *
633 * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
634 * upon error or 0 upon success.
635 */
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -0700636static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
Paul Walmsley63c85232009-09-03 20:14:03 +0300637{
Paul Walmsley43b40992010-02-22 22:09:34 -0700638 if (!oh->class->sysc ||
Benoit Cousson86009eb2010-12-21 21:31:28 -0700639 !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
Benoit Cousson724019b2011-07-01 22:54:00 +0200640 (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
641 (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
Paul Walmsley63c85232009-09-03 20:14:03 +0300642 return -EINVAL;
643
Paul Walmsley43b40992010-02-22 22:09:34 -0700644 if (!oh->class->sysc->sysc_fields) {
645 WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
Thara Gopinath358f0e62010-02-24 12:05:58 -0700646 return -EINVAL;
647 }
648
Benoit Cousson1fe74112011-07-01 22:54:03 +0200649 if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
650 *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
Paul Walmsley63c85232009-09-03 20:14:03 +0300651
Benoit Cousson86009eb2010-12-21 21:31:28 -0700652 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
653 _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson724019b2011-07-01 22:54:00 +0200654 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
Djamil Elaidi561038f2012-06-17 11:57:51 -0600655 _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
Benoit Cousson86009eb2010-12-21 21:31:28 -0700656
Paul Walmsley63c85232009-09-03 20:14:03 +0300657 /* XXX test pwrdm_get_wken for this hwmod's subsystem */
658
Paul Walmsley63c85232009-09-03 20:14:03 +0300659 return 0;
660}
661
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700662static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
663{
Rajendra Nayakc4a1ea22012-04-27 16:32:53 +0530664 struct clk_hw_omap *clk;
665
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700666 if (oh->clkdm) {
667 return oh->clkdm;
668 } else if (oh->_clk) {
Tero Kristo924f9492013-07-12 12:26:41 +0300669 if (__clk_get_flags(oh->_clk) & CLK_IS_BASIC)
670 return NULL;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700671 clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
672 return clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700673 }
674 return NULL;
675}
676
Paul Walmsley63c85232009-09-03 20:14:03 +0300677/**
678 * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
679 * @oh: struct omap_hwmod *
680 *
681 * Prevent the hardware module @oh from entering idle while the
682 * hardare module initiator @init_oh is active. Useful when a module
683 * will be accessed by a particular initiator (e.g., if a module will
684 * be accessed by the IVA, there should be a sleepdep between the IVA
685 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700686 * mode. If the clockdomain is marked as not needing autodeps, return
687 * 0 without doing anything. Otherwise, returns -EINVAL upon error or
688 * passes along clkdm_add_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300689 */
690static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
691{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700692 struct clockdomain *clkdm, *init_clkdm;
693
694 clkdm = _get_clkdm(oh);
695 init_clkdm = _get_clkdm(init_oh);
696
697 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300698 return -EINVAL;
699
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700700 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700701 return 0;
702
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700703 return clkdm_add_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300704}
705
706/**
707 * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
708 * @oh: struct omap_hwmod *
709 *
710 * Allow the hardware module @oh to enter idle while the hardare
711 * module initiator @init_oh is active. Useful when a module will not
712 * be accessed by a particular initiator (e.g., if a module will not
713 * be accessed by the IVA, there should be no sleepdep between the IVA
714 * initiator and the module). Only applies to modules in smart-idle
Paul Walmsley570b54c2011-03-10 03:50:09 -0700715 * mode. If the clockdomain is marked as not needing autodeps, return
716 * 0 without doing anything. Returns -EINVAL upon error or passes
717 * along clkdm_del_sleepdep() value upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +0300718 */
719static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
720{
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700721 struct clockdomain *clkdm, *init_clkdm;
722
723 clkdm = _get_clkdm(oh);
724 init_clkdm = _get_clkdm(init_oh);
725
726 if (!clkdm || !init_clkdm)
Paul Walmsley63c85232009-09-03 20:14:03 +0300727 return -EINVAL;
728
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700729 if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
Paul Walmsley570b54c2011-03-10 03:50:09 -0700730 return 0;
731
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700732 return clkdm_del_sleepdep(clkdm, init_clkdm);
Paul Walmsley63c85232009-09-03 20:14:03 +0300733}
734
Tero Kristo70f05be2017-05-31 18:00:03 +0300735static const struct of_device_id ti_clkctrl_match_table[] __initconst = {
736 { .compatible = "ti,clkctrl" },
737 { }
738};
739
Arnd Bergmann0ca14cd2017-09-14 14:50:58 +0200740static int __init _setup_clkctrl_provider(struct device_node *np)
Tero Kristo70f05be2017-05-31 18:00:03 +0300741{
742 const __be32 *addrp;
743 struct clkctrl_provider *provider;
Tero Kristo6e83eca2017-08-04 17:41:50 +0300744 u64 size;
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300745 int i;
Tero Kristo70f05be2017-05-31 18:00:03 +0300746
Mike Rapoport7e1c4e22018-10-30 15:09:57 -0700747 provider = memblock_alloc(sizeof(*provider), SMP_CACHE_BYTES);
Tero Kristo70f05be2017-05-31 18:00:03 +0300748 if (!provider)
749 return -ENOMEM;
750
Tero Kristo70f05be2017-05-31 18:00:03 +0300751 provider->node = np;
752
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300753 provider->num_addrs =
754 of_property_count_elems_of_size(np, "reg", sizeof(u32)) / 2;
755
756 provider->addr =
Mike Rapoport7e1c4e22018-10-30 15:09:57 -0700757 memblock_alloc(sizeof(void *) * provider->num_addrs,
758 SMP_CACHE_BYTES);
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300759 if (!provider->addr)
760 return -ENOMEM;
761
762 provider->size =
Mike Rapoport7e1c4e22018-10-30 15:09:57 -0700763 memblock_alloc(sizeof(u32) * provider->num_addrs,
764 SMP_CACHE_BYTES);
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300765 if (!provider->size)
766 return -ENOMEM;
767
768 for (i = 0; i < provider->num_addrs; i++) {
769 addrp = of_get_address(np, i, &size, NULL);
770 provider->addr[i] = (u32)of_translate_address(np, addrp);
771 provider->size[i] = size;
772 pr_debug("%s: %pOF: %x...%x\n", __func__, np, provider->addr[i],
773 provider->addr[i] + provider->size[i]);
774 }
Tero Kristo70f05be2017-05-31 18:00:03 +0300775
776 list_add(&provider->link, &clkctrl_providers);
777
778 return 0;
779}
780
Arnd Bergmann0ca14cd2017-09-14 14:50:58 +0200781static int __init _init_clkctrl_providers(void)
Tero Kristo70f05be2017-05-31 18:00:03 +0300782{
783 struct device_node *np;
784 int ret = 0;
785
786 for_each_matching_node(np, ti_clkctrl_match_table) {
787 ret = _setup_clkctrl_provider(np);
788 if (ret)
789 break;
790 }
791
792 return ret;
793}
794
Tero Kristo6e83eca2017-08-04 17:41:50 +0300795static u32 _omap4_xlate_clkctrl(struct omap_hwmod *oh)
Tero Kristo70f05be2017-05-31 18:00:03 +0300796{
Tero Kristo6e83eca2017-08-04 17:41:50 +0300797 if (!oh->prcm.omap4.modulemode)
798 return 0;
799
800 return omap_cm_xlate_clkctrl(oh->clkdm->prcm_partition,
801 oh->clkdm->cm_inst,
802 oh->prcm.omap4.clkctrl_offs);
Tero Kristo70f05be2017-05-31 18:00:03 +0300803}
804
805static struct clk *_lookup_clkctrl_clk(struct omap_hwmod *oh)
806{
807 struct clkctrl_provider *provider;
808 struct clk *clk;
Tero Kristo6e83eca2017-08-04 17:41:50 +0300809 u32 addr;
Tero Kristo70f05be2017-05-31 18:00:03 +0300810
811 if (!soc_ops.xlate_clkctrl)
812 return NULL;
813
Tero Kristo6e83eca2017-08-04 17:41:50 +0300814 addr = soc_ops.xlate_clkctrl(oh);
815 if (!addr)
816 return NULL;
817
818 pr_debug("%s: %s: addr=%x\n", __func__, oh->name, addr);
819
Tero Kristo70f05be2017-05-31 18:00:03 +0300820 list_for_each_entry(provider, &clkctrl_providers, link) {
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300821 int i;
Tero Kristo70f05be2017-05-31 18:00:03 +0300822
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300823 for (i = 0; i < provider->num_addrs; i++) {
824 if (provider->addr[i] <= addr &&
825 provider->addr[i] + provider->size[i] > addr) {
826 struct of_phandle_args clkspec;
Tero Kristo70f05be2017-05-31 18:00:03 +0300827
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300828 clkspec.np = provider->node;
829 clkspec.args_count = 2;
830 clkspec.args[0] = addr - provider->addr[0];
831 clkspec.args[1] = 0;
Tero Kristo70f05be2017-05-31 18:00:03 +0300832
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300833 clk = of_clk_get_from_provider(&clkspec);
Tero Kristo6e83eca2017-08-04 17:41:50 +0300834
Tero Kristo1b9c30f2018-08-31 18:01:23 +0300835 pr_debug("%s: %s got %p (offset=%x, provider=%pOF)\n",
836 __func__, oh->name, clk,
837 clkspec.args[0], provider->node);
838
839 return clk;
840 }
Tero Kristo70f05be2017-05-31 18:00:03 +0300841 }
842 }
843
844 return NULL;
845}
846
Paul Walmsley63c85232009-09-03 20:14:03 +0300847/**
848 * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
849 * @oh: struct omap_hwmod *
850 *
851 * Called from _init_clocks(). Populates the @oh _clk (main
Tero Kristo9fabc1a2016-07-04 14:11:48 +0300852 * functional clock pointer) if a clock matching the hwmod name is found,
853 * or a main_clk is present. Returns 0 on success or -EINVAL on error.
Paul Walmsley63c85232009-09-03 20:14:03 +0300854 */
855static int _init_main_clk(struct omap_hwmod *oh)
856{
Paul Walmsley63c85232009-09-03 20:14:03 +0300857 int ret = 0;
Tero Kristo70f05be2017-05-31 18:00:03 +0300858 struct clk *clk = NULL;
Paul Walmsley63c85232009-09-03 20:14:03 +0300859
Tero Kristo70f05be2017-05-31 18:00:03 +0300860 clk = _lookup_clkctrl_clk(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +0300861
Tero Kristo70f05be2017-05-31 18:00:03 +0300862 if (!IS_ERR_OR_NULL(clk)) {
863 pr_debug("%s: mapped main_clk %s for %s\n", __func__,
864 __clk_get_name(clk), oh->name);
865 oh->main_clk = __clk_get_name(clk);
Tero Kristo9fabc1a2016-07-04 14:11:48 +0300866 oh->_clk = clk;
867 soc_ops.disable_direct_prcm(oh);
Tero Kristo9fabc1a2016-07-04 14:11:48 +0300868 } else {
869 if (!oh->main_clk)
870 return 0;
871
872 oh->_clk = clk_get(NULL, oh->main_clk);
873 }
874
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600875 if (IS_ERR(oh->_clk)) {
Joe Perches3d0cb732014-09-13 11:31:16 -0700876 pr_warn("omap_hwmod: %s: cannot clk_get main_clk %s\n",
877 oh->name, oh->main_clk);
Benoit Cousson63403382010-05-20 12:31:10 -0600878 return -EINVAL;
Benoit Coussondc759252010-06-23 18:15:12 -0600879 }
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600880 /*
881 * HACK: This needs a re-visit once clk_prepare() is implemented
882 * to do something meaningful. Today its just a no-op.
883 * If clk_prepare() is used at some point to do things like
884 * voltage scaling etc, then this would have to be moved to
885 * some point where subsystems like i2c and pmic become
886 * available.
887 */
888 clk_prepare(oh->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300889
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -0700890 if (!_get_clkdm(oh))
Paul Walmsley3bb05db2012-09-23 17:28:18 -0600891 pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600892 oh->name, oh->main_clk);
Kevin Hilman81d7c6f2009-12-08 16:34:24 -0700893
Paul Walmsley63c85232009-09-03 20:14:03 +0300894 return ret;
895}
896
897/**
Paul Walmsley887adea2010-07-26 16:34:33 -0600898 * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
Paul Walmsley63c85232009-09-03 20:14:03 +0300899 * @oh: struct omap_hwmod *
900 *
901 * Called from _init_clocks(). Populates the @oh OCP slave interface
902 * clock pointers. Returns 0 on success or -EINVAL on error.
903 */
904static int _init_interface_clks(struct omap_hwmod *oh)
905{
Paul Walmsley5d95dde2012-04-19 04:04:28 -0600906 struct omap_hwmod_ocp_if *os;
Paul Walmsley63c85232009-09-03 20:14:03 +0300907 struct clk *c;
Paul Walmsley63c85232009-09-03 20:14:03 +0300908 int ret = 0;
909
Tony Lindgrenb8e1bdd2017-03-14 13:13:19 -0700910 list_for_each_entry(os, &oh->slave_ports, node) {
Paul Walmsley50ebdac2010-02-22 22:09:31 -0700911 if (!os->clk)
Paul Walmsley63c85232009-09-03 20:14:03 +0300912 continue;
913
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600914 c = clk_get(NULL, os->clk);
915 if (IS_ERR(c)) {
Joe Perches3d0cb732014-09-13 11:31:16 -0700916 pr_warn("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
917 oh->name, os->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300918 ret = -EINVAL;
Nishanth Menon0e7dc862013-12-08 18:39:03 -0700919 continue;
Benoit Coussondc759252010-06-23 18:15:12 -0600920 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300921 os->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600922 /*
923 * HACK: This needs a re-visit once clk_prepare() is implemented
924 * to do something meaningful. Today its just a no-op.
925 * If clk_prepare() is used at some point to do things like
926 * voltage scaling etc, then this would have to be moved to
927 * some point where subsystems like i2c and pmic become
928 * available.
929 */
930 clk_prepare(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300931 }
932
933 return ret;
934}
935
936/**
937 * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
938 * @oh: struct omap_hwmod *
939 *
940 * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
941 * clock pointers. Returns 0 on success or -EINVAL on error.
942 */
943static int _init_opt_clks(struct omap_hwmod *oh)
944{
945 struct omap_hwmod_opt_clk *oc;
946 struct clk *c;
947 int i;
948 int ret = 0;
949
950 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
Rajendra Nayak6ea74cb2012-09-22 02:24:16 -0600951 c = clk_get(NULL, oc->clk);
952 if (IS_ERR(c)) {
Joe Perches3d0cb732014-09-13 11:31:16 -0700953 pr_warn("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
954 oh->name, oc->clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300955 ret = -EINVAL;
Nishanth Menon0e7dc862013-12-08 18:39:03 -0700956 continue;
Benoit Coussondc759252010-06-23 18:15:12 -0600957 }
Paul Walmsley63c85232009-09-03 20:14:03 +0300958 oc->_clk = c;
Rajendra Nayak4d7cb452012-09-22 02:24:16 -0600959 /*
960 * HACK: This needs a re-visit once clk_prepare() is implemented
961 * to do something meaningful. Today its just a no-op.
962 * If clk_prepare() is used at some point to do things like
963 * voltage scaling etc, then this would have to be moved to
964 * some point where subsystems like i2c and pmic become
965 * available.
966 */
967 clk_prepare(oc->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +0300968 }
969
970 return ret;
971}
972
Peter Ujfalusic12ba8c2015-11-12 09:32:58 +0200973static void _enable_optional_clocks(struct omap_hwmod *oh)
974{
975 struct omap_hwmod_opt_clk *oc;
976 int i;
977
978 pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
979
980 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
981 if (oc->_clk) {
982 pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
983 __clk_get_name(oc->_clk));
984 clk_enable(oc->_clk);
985 }
986}
987
988static void _disable_optional_clocks(struct omap_hwmod *oh)
989{
990 struct omap_hwmod_opt_clk *oc;
991 int i;
992
993 pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
994
995 for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
996 if (oc->_clk) {
997 pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
998 __clk_get_name(oc->_clk));
999 clk_disable(oc->_clk);
1000 }
1001}
1002
Paul Walmsley63c85232009-09-03 20:14:03 +03001003/**
1004 * _enable_clocks - enable hwmod main clock and interface clocks
1005 * @oh: struct omap_hwmod *
1006 *
1007 * Enables all clocks necessary for register reads and writes to succeed
1008 * on the hwmod @oh. Returns 0.
1009 */
1010static int _enable_clocks(struct omap_hwmod *oh)
1011{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001012 struct omap_hwmod_ocp_if *os;
Paul Walmsley63c85232009-09-03 20:14:03 +03001013
1014 pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
1015
Tero Kristo392ea5d2017-12-22 11:26:03 +02001016 if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
1017 _enable_optional_clocks(oh);
1018
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -06001019 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +03001020 clk_enable(oh->_clk);
1021
Tony Lindgrenb8e1bdd2017-03-14 13:13:19 -07001022 list_for_each_entry(os, &oh->slave_ports, node) {
Andreas Kemnade12af39c2019-01-16 23:04:29 +01001023 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE)) {
1024 omap2_clk_deny_idle(os->_clk);
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001025 clk_enable(os->_clk);
Andreas Kemnade12af39c2019-01-16 23:04:29 +01001026 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001027 }
1028
1029 /* The opt clocks are controlled by the device driver. */
1030
1031 return 0;
1032}
1033
1034/**
Tony Lindgren8823ddf2017-08-29 10:03:33 -07001035 * _omap4_clkctrl_managed_by_clkfwk - true if clkctrl managed by clock framework
1036 * @oh: struct omap_hwmod *
1037 */
1038static bool _omap4_clkctrl_managed_by_clkfwk(struct omap_hwmod *oh)
1039{
1040 if (oh->prcm.omap4.flags & HWMOD_OMAP4_CLKFWK_CLKCTR_CLOCK)
1041 return true;
1042
1043 return false;
1044}
1045
1046/**
1047 * _omap4_has_clkctrl_clock - returns true if a module has clkctrl clock
1048 * @oh: struct omap_hwmod *
1049 */
1050static bool _omap4_has_clkctrl_clock(struct omap_hwmod *oh)
1051{
1052 if (oh->prcm.omap4.clkctrl_offs)
1053 return true;
1054
1055 if (!oh->prcm.omap4.clkctrl_offs &&
1056 oh->prcm.omap4.flags & HWMOD_OMAP4_ZERO_CLKCTRL_OFFSET)
1057 return true;
1058
1059 return false;
1060}
1061
1062/**
Paul Walmsley63c85232009-09-03 20:14:03 +03001063 * _disable_clocks - disable hwmod main clock and interface clocks
1064 * @oh: struct omap_hwmod *
1065 *
1066 * Disables the hwmod @oh main functional and interface clocks. Returns 0.
1067 */
1068static int _disable_clocks(struct omap_hwmod *oh)
1069{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001070 struct omap_hwmod_ocp_if *os;
Paul Walmsley63c85232009-09-03 20:14:03 +03001071
1072 pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
1073
Benoit Cousson4d3ae5a2010-05-20 12:31:09 -06001074 if (oh->_clk)
Paul Walmsley63c85232009-09-03 20:14:03 +03001075 clk_disable(oh->_clk);
1076
Tony Lindgrenb8e1bdd2017-03-14 13:13:19 -07001077 list_for_each_entry(os, &oh->slave_ports, node) {
Andreas Kemnade12af39c2019-01-16 23:04:29 +01001078 if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE)) {
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001079 clk_disable(os->_clk);
Andreas Kemnade12af39c2019-01-16 23:04:29 +01001080 omap2_clk_allow_idle(os->_clk);
1081 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001082 }
1083
Peter Ujfalusic12ba8c2015-11-12 09:32:58 +02001084 if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
1085 _disable_optional_clocks(oh);
1086
Paul Walmsley63c85232009-09-03 20:14:03 +03001087 /* The opt clocks are controlled by the device driver. */
1088
1089 return 0;
1090}
1091
1092/**
Kevin Hilman3d9f0322012-06-18 12:12:23 -06001093 * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
Benoit Cousson45c38252011-07-10 05:56:33 -06001094 * @oh: struct omap_hwmod *
1095 *
1096 * Enables the PRCM module mode related to the hwmod @oh.
1097 * No return value.
1098 */
Kevin Hilman3d9f0322012-06-18 12:12:23 -06001099static void _omap4_enable_module(struct omap_hwmod *oh)
Benoit Cousson45c38252011-07-10 05:56:33 -06001100{
Tony Lindgren8823ddf2017-08-29 10:03:33 -07001101 if (!oh->clkdm || !oh->prcm.omap4.modulemode ||
1102 _omap4_clkctrl_managed_by_clkfwk(oh))
Benoit Cousson45c38252011-07-10 05:56:33 -06001103 return;
1104
Kevin Hilman3d9f0322012-06-18 12:12:23 -06001105 pr_debug("omap_hwmod: %s: %s: %d\n",
1106 oh->name, __func__, oh->prcm.omap4.modulemode);
Benoit Cousson45c38252011-07-10 05:56:33 -06001107
Tero Kristo128603f2014-10-27 08:39:24 -07001108 omap_cm_module_enable(oh->prcm.omap4.modulemode,
1109 oh->clkdm->prcm_partition,
1110 oh->clkdm->cm_inst, oh->prcm.omap4.clkctrl_offs);
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001111}
1112
1113/**
Benoit Coussonbfc141e2011-12-16 16:09:11 -08001114 * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
1115 * @oh: struct omap_hwmod *
1116 *
1117 * Wait for a module @oh to enter slave idle. Returns 0 if the module
1118 * does not have an IDLEST bit or if the module successfully enters
1119 * slave idle; otherwise, pass along the return value of the
1120 * appropriate *_cm*_wait_module_idle() function.
1121 */
1122static int _omap4_wait_target_disable(struct omap_hwmod *oh)
1123{
Paul Walmsley2b026d12012-09-23 17:28:18 -06001124 if (!oh)
Benoit Coussonbfc141e2011-12-16 16:09:11 -08001125 return -EINVAL;
1126
Paul Walmsley2b026d12012-09-23 17:28:18 -06001127 if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
Benoit Coussonbfc141e2011-12-16 16:09:11 -08001128 return 0;
1129
1130 if (oh->flags & HWMOD_NO_IDLEST)
1131 return 0;
1132
Tony Lindgren8823ddf2017-08-29 10:03:33 -07001133 if (_omap4_clkctrl_managed_by_clkfwk(oh))
1134 return 0;
1135
1136 if (!_omap4_has_clkctrl_clock(oh))
Dave Gerlach428929c2016-07-12 12:50:33 -05001137 return 0;
1138
Tero Kristoa8ae5af2014-10-27 08:39:23 -07001139 return omap_cm_wait_module_idle(oh->clkdm->prcm_partition,
1140 oh->clkdm->cm_inst,
1141 oh->prcm.omap4.clkctrl_offs, 0);
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06001142}
1143
1144/**
Paul Walmsley24dbc212012-04-19 04:04:29 -06001145 * _save_mpu_port_index - find and save the index to @oh's MPU port
Paul Walmsley63c85232009-09-03 20:14:03 +03001146 * @oh: struct omap_hwmod *
1147 *
Paul Walmsley24dbc212012-04-19 04:04:29 -06001148 * Determines the array index of the OCP slave port that the MPU uses
1149 * to address the device, and saves it into the struct omap_hwmod.
1150 * Intended to be called during hwmod registration only. No return
1151 * value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001152 */
Paul Walmsley24dbc212012-04-19 04:04:29 -06001153static void __init _save_mpu_port_index(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001154{
Paul Walmsley24dbc212012-04-19 04:04:29 -06001155 struct omap_hwmod_ocp_if *os = NULL;
Paul Walmsley63c85232009-09-03 20:14:03 +03001156
Paul Walmsley5d95dde2012-04-19 04:04:28 -06001157 if (!oh)
Paul Walmsley24dbc212012-04-19 04:04:29 -06001158 return;
1159
1160 oh->_int_flags |= _HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001161
Tony Lindgrenb8e1bdd2017-03-14 13:13:19 -07001162 list_for_each_entry(os, &oh->slave_ports, node) {
Paul Walmsley63c85232009-09-03 20:14:03 +03001163 if (os->user & OCP_USER_MPU) {
Paul Walmsley2221b5c2012-04-19 04:04:30 -06001164 oh->_mpu_port = os;
Paul Walmsley24dbc212012-04-19 04:04:29 -06001165 oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001166 break;
1167 }
1168 }
1169
Paul Walmsley24dbc212012-04-19 04:04:29 -06001170 return;
Paul Walmsley63c85232009-09-03 20:14:03 +03001171}
1172
1173/**
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001174 * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
1175 * @oh: struct omap_hwmod *
1176 *
1177 * Given a pointer to a struct omap_hwmod record @oh, return a pointer
1178 * to the struct omap_hwmod_ocp_if record that is used by the MPU to
1179 * communicate with the IP block. This interface need not be directly
1180 * connected to the MPU (and almost certainly is not), but is directly
1181 * connected to the IP block represented by @oh. Returns a pointer
1182 * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
1183 * error or if there does not appear to be a path from the MPU to this
1184 * IP block.
1185 */
1186static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
1187{
1188 if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
1189 return NULL;
1190
Paul Walmsley11cd4b92012-04-19 04:04:32 -06001191 return oh->_mpu_port;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06001192};
1193
1194/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001195 * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001196 * @oh: struct omap_hwmod *
1197 *
Paul Walmsley006c7f12012-07-04 05:22:53 -06001198 * Ensure that the OCP_SYSCONFIG register for the IP block represented
1199 * by @oh is set to indicate to the PRCM that the IP block is active.
1200 * Usually this means placing the module into smart-idle mode and
1201 * smart-standby, but if there is a bug in the automatic idle handling
1202 * for the IP block, it may need to be placed into the force-idle or
1203 * no-idle variants of these modes. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03001204 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001205static void _enable_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001206{
Paul Walmsley43b40992010-02-22 22:09:34 -07001207 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001208 u32 v;
Paul Walmsley006c7f12012-07-04 05:22:53 -06001209 bool clkdm_act;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001210 struct clockdomain *clkdm;
Paul Walmsley63c85232009-09-03 20:14:03 +03001211
Paul Walmsley43b40992010-02-22 22:09:34 -07001212 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001213 return;
1214
Tero Kristo613ad0e2012-10-29 22:02:13 -06001215 /*
1216 * Wait until reset has completed, this is needed as the IP
1217 * block is reset automatically by hardware in some cases
1218 * (off-mode for example), and the drivers require the
1219 * IP to be ready when they access it
1220 */
1221 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1222 _enable_optional_clocks(oh);
1223 _wait_softreset_complete(oh);
1224 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1225 _disable_optional_clocks(oh);
1226
Paul Walmsley63c85232009-09-03 20:14:03 +03001227 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001228 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001229
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001230 clkdm = _get_clkdm(oh);
Paul Walmsley43b40992010-02-22 22:09:34 -07001231 if (sf & SYSC_HAS_SIDLEMODE) {
Rajendra Nayakca43ea32013-05-15 20:18:38 +05301232 if (oh->flags & HWMOD_SWSUP_SIDLE ||
1233 oh->flags & HWMOD_SWSUP_SIDLE_ACT) {
Rajendra Nayak355131712013-05-15 20:18:37 +05301234 idlemode = HWMOD_IDLEMODE_NO;
1235 } else {
1236 if (sf & SYSC_HAS_ENAWAKEUP)
1237 _enable_wakeup(oh, &v);
1238 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1239 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1240 else
1241 idlemode = HWMOD_IDLEMODE_SMART;
1242 }
1243
1244 /*
1245 * This is special handling for some IPs like
1246 * 32k sync timer. Force them to idle!
1247 */
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07001248 clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
Paul Walmsley006c7f12012-07-04 05:22:53 -06001249 if (clkdm_act && !(oh->class->sysc->idlemodes &
1250 (SIDLE_SMART | SIDLE_SMART_WKUP)))
1251 idlemode = HWMOD_IDLEMODE_FORCE;
Rajendra Nayak355131712013-05-15 20:18:37 +05301252
Paul Walmsley63c85232009-09-03 20:14:03 +03001253 _set_slave_idlemode(oh, idlemode, &v);
1254 }
1255
Paul Walmsley43b40992010-02-22 22:09:34 -07001256 if (sf & SYSC_HAS_MIDLEMODE) {
Grazvydas Ignotas092bc082013-03-11 21:49:00 +02001257 if (oh->flags & HWMOD_FORCE_MSTANDBY) {
1258 idlemode = HWMOD_IDLEMODE_FORCE;
1259 } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001260 idlemode = HWMOD_IDLEMODE_NO;
1261 } else {
1262 if (sf & SYSC_HAS_ENAWAKEUP)
1263 _enable_wakeup(oh, &v);
1264 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1265 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1266 else
1267 idlemode = HWMOD_IDLEMODE_SMART;
1268 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001269 _set_master_standbymode(oh, idlemode, &v);
1270 }
1271
Paul Walmsleya16b1f72009-12-08 16:34:17 -07001272 /*
1273 * XXX The clock framework should handle this, by
1274 * calling into this code. But this must wait until the
1275 * clock structures are tagged with omap_hwmod entries
1276 */
Paul Walmsley43b40992010-02-22 22:09:34 -07001277 if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
1278 (sf & SYSC_HAS_CLOCKACTIVITY))
Tony Lindgrenca5339b2017-03-14 13:13:19 -07001279 _set_clockactivity(oh, CLOCKACT_TEST_ICLK, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001280
Lokesh Vutla3ca4a232016-03-26 23:08:55 -06001281 _write_sysconfig(v, oh);
Hema HK78f26e82010-09-24 10:23:19 -06001282
1283 /*
1284 * Set the autoidle bit only after setting the smartidle bit
1285 * Setting this will not have any impact on the other modules.
1286 */
1287 if (sf & SYSC_HAS_AUTOIDLE) {
1288 idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
1289 0 : 1;
1290 _set_module_autoidle(oh, idlemode, &v);
1291 _write_sysconfig(v, oh);
1292 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001293}
1294
1295/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001296 * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001297 * @oh: struct omap_hwmod *
1298 *
1299 * If module is marked as SWSUP_SIDLE, force the module into slave
1300 * idle; otherwise, configure it for smart-idle. If module is marked
1301 * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
1302 * configure it for smart-standby. No return value.
1303 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001304static void _idle_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001305{
Paul Walmsley43b40992010-02-22 22:09:34 -07001306 u8 idlemode, sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001307 u32 v;
1308
Paul Walmsley43b40992010-02-22 22:09:34 -07001309 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001310 return;
1311
1312 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001313 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001314
Paul Walmsley43b40992010-02-22 22:09:34 -07001315 if (sf & SYSC_HAS_SIDLEMODE) {
Rajendra Nayak355131712013-05-15 20:18:37 +05301316 if (oh->flags & HWMOD_SWSUP_SIDLE) {
Paul Walmsley006c7f12012-07-04 05:22:53 -06001317 idlemode = HWMOD_IDLEMODE_FORCE;
Rajendra Nayak355131712013-05-15 20:18:37 +05301318 } else {
1319 if (sf & SYSC_HAS_ENAWAKEUP)
1320 _enable_wakeup(oh, &v);
1321 if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
1322 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1323 else
1324 idlemode = HWMOD_IDLEMODE_SMART;
1325 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001326 _set_slave_idlemode(oh, idlemode, &v);
1327 }
1328
Paul Walmsley43b40992010-02-22 22:09:34 -07001329 if (sf & SYSC_HAS_MIDLEMODE) {
Grazvydas Ignotas092bc082013-03-11 21:49:00 +02001330 if ((oh->flags & HWMOD_SWSUP_MSTANDBY) ||
1331 (oh->flags & HWMOD_FORCE_MSTANDBY)) {
Benoit Cousson724019b2011-07-01 22:54:00 +02001332 idlemode = HWMOD_IDLEMODE_FORCE;
1333 } else {
1334 if (sf & SYSC_HAS_ENAWAKEUP)
1335 _enable_wakeup(oh, &v);
1336 if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
1337 idlemode = HWMOD_IDLEMODE_SMART_WKUP;
1338 else
1339 idlemode = HWMOD_IDLEMODE_SMART;
1340 }
Paul Walmsley63c85232009-09-03 20:14:03 +03001341 _set_master_standbymode(oh, idlemode, &v);
1342 }
1343
Lokesh Vutla3ca4a232016-03-26 23:08:55 -06001344 /* If the cached value is the same as the new value, skip the write */
1345 if (oh->_sysc_cache != v)
1346 _write_sysconfig(v, oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03001347}
1348
1349/**
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001350 * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
Paul Walmsley63c85232009-09-03 20:14:03 +03001351 * @oh: struct omap_hwmod *
1352 *
1353 * Force the module into slave idle and master suspend. No return
1354 * value.
1355 */
Paul Walmsley74ff3a62010-09-21 15:02:23 -06001356static void _shutdown_sysc(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001357{
1358 u32 v;
Paul Walmsley43b40992010-02-22 22:09:34 -07001359 u8 sf;
Paul Walmsley63c85232009-09-03 20:14:03 +03001360
Paul Walmsley43b40992010-02-22 22:09:34 -07001361 if (!oh->class->sysc)
Paul Walmsley63c85232009-09-03 20:14:03 +03001362 return;
1363
1364 v = oh->_sysc_cache;
Paul Walmsley43b40992010-02-22 22:09:34 -07001365 sf = oh->class->sysc->sysc_flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03001366
Paul Walmsley43b40992010-02-22 22:09:34 -07001367 if (sf & SYSC_HAS_SIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001368 _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
1369
Paul Walmsley43b40992010-02-22 22:09:34 -07001370 if (sf & SYSC_HAS_MIDLEMODE)
Paul Walmsley63c85232009-09-03 20:14:03 +03001371 _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
1372
Paul Walmsley43b40992010-02-22 22:09:34 -07001373 if (sf & SYSC_HAS_AUTOIDLE)
Paul Walmsley726072e2009-12-08 16:34:15 -07001374 _set_module_autoidle(oh, 1, &v);
Paul Walmsley63c85232009-09-03 20:14:03 +03001375
1376 _write_sysconfig(v, oh);
1377}
1378
1379/**
1380 * _lookup - find an omap_hwmod by name
1381 * @name: find an omap_hwmod by name
1382 *
1383 * Return a pointer to an omap_hwmod by name, or NULL if not found.
Paul Walmsley63c85232009-09-03 20:14:03 +03001384 */
1385static struct omap_hwmod *_lookup(const char *name)
1386{
1387 struct omap_hwmod *oh, *temp_oh;
1388
1389 oh = NULL;
1390
1391 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
1392 if (!strcmp(name, temp_oh->name)) {
1393 oh = temp_oh;
1394 break;
1395 }
1396 }
1397
1398 return oh;
1399}
Paul Walmsley868c1572012-06-19 15:01:02 -06001400
Benoit Cousson6ae76992011-07-10 05:56:30 -06001401/**
1402 * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
1403 * @oh: struct omap_hwmod *
1404 *
1405 * Convert a clockdomain name stored in a struct omap_hwmod into a
1406 * clockdomain pointer, and save it into the struct omap_hwmod.
Paul Walmsley868c1572012-06-19 15:01:02 -06001407 * Return -EINVAL if the clkdm_name lookup failed.
Benoit Cousson6ae76992011-07-10 05:56:30 -06001408 */
1409static int _init_clkdm(struct omap_hwmod *oh)
1410{
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001411 if (!oh->clkdm_name) {
1412 pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
Benoit Cousson6ae76992011-07-10 05:56:30 -06001413 return 0;
Paul Walmsley3bb05db2012-09-23 17:28:18 -06001414 }
Benoit Cousson6ae76992011-07-10 05:56:30 -06001415
Benoit Cousson6ae76992011-07-10 05:56:30 -06001416 oh->clkdm = clkdm_lookup(oh->clkdm_name);
1417 if (!oh->clkdm) {
Joe Perches3d0cb732014-09-13 11:31:16 -07001418 pr_warn("omap_hwmod: %s: could not associate to clkdm %s\n",
Benoit Cousson6ae76992011-07-10 05:56:30 -06001419 oh->name, oh->clkdm_name);
Tero Kristo0385c582013-07-17 18:03:25 +03001420 return 0;
Benoit Cousson6ae76992011-07-10 05:56:30 -06001421 }
1422
1423 pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
1424 oh->name, oh->clkdm_name);
1425
1426 return 0;
1427}
Paul Walmsley63c85232009-09-03 20:14:03 +03001428
1429/**
Benoit Cousson6ae76992011-07-10 05:56:30 -06001430 * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
1431 * well the clockdomain.
Paul Walmsley63c85232009-09-03 20:14:03 +03001432 * @oh: struct omap_hwmod *
Tero Kristo70f05be2017-05-31 18:00:03 +03001433 * @np: device_node mapped to this hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03001434 *
Paul Walmsleya2debdb2011-02-23 00:14:07 -07001435 * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
Paul Walmsley48d54f32011-02-23 00:14:07 -07001436 * Resolves all clock names embedded in the hwmod. Returns 0 on
1437 * success, or a negative error code on failure.
Paul Walmsley63c85232009-09-03 20:14:03 +03001438 */
Tero Kristo70f05be2017-05-31 18:00:03 +03001439static int _init_clocks(struct omap_hwmod *oh, struct device_node *np)
Paul Walmsley63c85232009-09-03 20:14:03 +03001440{
1441 int ret = 0;
1442
Paul Walmsley48d54f32011-02-23 00:14:07 -07001443 if (oh->_state != _HWMOD_STATE_REGISTERED)
1444 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001445
1446 pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
1447
Vaibhav Hiremathb797be1d2012-07-09 18:24:30 +05301448 if (soc_ops.init_clkdm)
1449 ret |= soc_ops.init_clkdm(oh);
1450
Paul Walmsley63c85232009-09-03 20:14:03 +03001451 ret |= _init_main_clk(oh);
1452 ret |= _init_interface_clks(oh);
1453 ret |= _init_opt_clks(oh);
1454
Benoit Coussonf5c1f842010-05-20 12:31:10 -06001455 if (!ret)
1456 oh->_state = _HWMOD_STATE_CLKS_INITED;
Benoit Cousson66522712011-07-01 22:54:06 +02001457 else
Joe Perches3d0cb732014-09-13 11:31:16 -07001458 pr_warn("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001459
Rajendra Nayak09c35f22011-02-16 12:11:24 +00001460 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001461}
1462
1463/**
omar ramirezcc1226e2011-03-04 13:32:44 -07001464 * _lookup_hardreset - fill register bit info for this hwmod/reset line
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001465 * @oh: struct omap_hwmod *
1466 * @name: name of the reset line in the context of this hwmod
omar ramirezcc1226e2011-03-04 13:32:44 -07001467 * @ohri: struct omap_hwmod_rst_info * that this function will fill in
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001468 *
1469 * Return the bit position of the reset line that match the
1470 * input name. Return -ENOENT if not found.
1471 */
Paul Walmsleya032d332012-08-03 09:21:10 -06001472static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
1473 struct omap_hwmod_rst_info *ohri)
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001474{
1475 int i;
1476
1477 for (i = 0; i < oh->rst_lines_cnt; i++) {
1478 const char *rst_line = oh->rst_lines[i].name;
1479 if (!strcmp(rst_line, name)) {
omar ramirezcc1226e2011-03-04 13:32:44 -07001480 ohri->rst_shift = oh->rst_lines[i].rst_shift;
1481 ohri->st_shift = oh->rst_lines[i].st_shift;
1482 pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
1483 oh->name, __func__, rst_line, ohri->rst_shift,
1484 ohri->st_shift);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001485
omar ramirezcc1226e2011-03-04 13:32:44 -07001486 return 0;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001487 }
1488 }
1489
1490 return -ENOENT;
1491}
1492
1493/**
1494 * _assert_hardreset - assert the HW reset line of submodules
1495 * contained in the hwmod module.
1496 * @oh: struct omap_hwmod *
1497 * @name: name of the reset line to lookup and assert
1498 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001499 * Some IP like dsp, ipu or iva contain processor that require an HW
1500 * reset line to be assert / deassert in order to enable fully the IP.
1501 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1502 * asserting the hardreset line on the currently-booted SoC, or passes
1503 * along the return value from _lookup_hardreset() or the SoC's
1504 * assert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001505 */
1506static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
1507{
omar ramirezcc1226e2011-03-04 13:32:44 -07001508 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001509 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001510
1511 if (!oh)
1512 return -EINVAL;
1513
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001514 if (!soc_ops.assert_hardreset)
1515 return -ENOSYS;
1516
omar ramirezcc1226e2011-03-04 13:32:44 -07001517 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001518 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001519 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001520
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001521 ret = soc_ops.assert_hardreset(oh, &ohri);
1522
1523 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001524}
1525
1526/**
1527 * _deassert_hardreset - deassert the HW reset line of submodules contained
1528 * in the hwmod module.
1529 * @oh: struct omap_hwmod *
1530 * @name: name of the reset line to look up and deassert
1531 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001532 * Some IP like dsp, ipu or iva contain processor that require an HW
1533 * reset line to be assert / deassert in order to enable fully the IP.
1534 * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
1535 * deasserting the hardreset line on the currently-booted SoC, or passes
1536 * along the return value from _lookup_hardreset() or the SoC's
1537 * deassert_hardreset code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001538 */
1539static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
1540{
omar ramirezcc1226e2011-03-04 13:32:44 -07001541 struct omap_hwmod_rst_info ohri;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001542 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001543
1544 if (!oh)
1545 return -EINVAL;
1546
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001547 if (!soc_ops.deassert_hardreset)
1548 return -ENOSYS;
1549
omar ramirezcc1226e2011-03-04 13:32:44 -07001550 ret = _lookup_hardreset(oh, name, &ohri);
Russell Kingc48cd652013-03-13 20:44:21 +00001551 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001552 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001553
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001554 if (oh->clkdm) {
1555 /*
1556 * A clockdomain must be in SW_SUP otherwise reset
1557 * might not be completed. The clockdomain can be set
1558 * in HW_AUTO only when the module become ready.
1559 */
Tero Kristo1d9a5422016-06-30 16:15:02 +03001560 clkdm_deny_idle(oh->clkdm);
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001561 ret = clkdm_hwmod_enable(oh->clkdm, oh);
1562 if (ret) {
1563 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1564 oh->name, oh->clkdm->name, ret);
1565 return ret;
1566 }
1567 }
1568
1569 _enable_clocks(oh);
1570 if (soc_ops.enable_module)
1571 soc_ops.enable_module(oh);
1572
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001573 ret = soc_ops.deassert_hardreset(oh, &ohri);
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001574
1575 if (soc_ops.disable_module)
1576 soc_ops.disable_module(oh);
1577 _disable_clocks(oh);
1578
omar ramirezcc1226e2011-03-04 13:32:44 -07001579 if (ret == -EBUSY)
Joe Perches3d0cb732014-09-13 11:31:16 -07001580 pr_warn("omap_hwmod: %s: failed to hardreset\n", oh->name);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001581
Tero Kristo80d25182015-02-26 18:06:00 +02001582 if (oh->clkdm) {
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001583 /*
1584 * Set the clockdomain to HW_AUTO, assuming that the
1585 * previous state was HW_AUTO.
1586 */
Tero Kristo1d9a5422016-06-30 16:15:02 +03001587 clkdm_allow_idle(oh->clkdm);
Tero Kristo80d25182015-02-26 18:06:00 +02001588
1589 clkdm_hwmod_disable(oh->clkdm, oh);
Omar Ramirez Lunae8e96df2012-09-23 17:28:21 -06001590 }
1591
omar ramirezcc1226e2011-03-04 13:32:44 -07001592 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001593}
1594
1595/**
1596 * _read_hardreset - read the HW reset line state of submodules
1597 * contained in the hwmod module
1598 * @oh: struct omap_hwmod *
1599 * @name: name of the reset line to look up and read
1600 *
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001601 * Return the state of the reset line. Returns -EINVAL if @oh is
1602 * null, -ENOSYS if we have no way of reading the hardreset line
1603 * status on the currently-booted SoC, or passes along the return
1604 * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
1605 * code.
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001606 */
1607static int _read_hardreset(struct omap_hwmod *oh, const char *name)
1608{
omar ramirezcc1226e2011-03-04 13:32:44 -07001609 struct omap_hwmod_rst_info ohri;
Paul Walmsleya032d332012-08-03 09:21:10 -06001610 int ret = -EINVAL;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001611
1612 if (!oh)
1613 return -EINVAL;
1614
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001615 if (!soc_ops.is_hardreset_asserted)
1616 return -ENOSYS;
1617
omar ramirezcc1226e2011-03-04 13:32:44 -07001618 ret = _lookup_hardreset(oh, name, &ohri);
Paul Walmsleya032d332012-08-03 09:21:10 -06001619 if (ret < 0)
omar ramirezcc1226e2011-03-04 13:32:44 -07001620 return ret;
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001621
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06001622 return soc_ops.is_hardreset_asserted(oh, &ohri);
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06001623}
1624
1625/**
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001626 * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
Paul Walmsley747834a2012-04-18 19:10:04 -06001627 * @oh: struct omap_hwmod *
1628 *
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001629 * If all hardreset lines associated with @oh are asserted, then return true.
1630 * Otherwise, if part of @oh is out hardreset or if no hardreset lines
1631 * associated with @oh are asserted, then return false.
Paul Walmsley747834a2012-04-18 19:10:04 -06001632 * This function is used to avoid executing some parts of the IP block
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001633 * enable/disable sequence if its hardreset line is set.
Paul Walmsley747834a2012-04-18 19:10:04 -06001634 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001635static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
Paul Walmsley747834a2012-04-18 19:10:04 -06001636{
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001637 int i, rst_cnt = 0;
Paul Walmsley747834a2012-04-18 19:10:04 -06001638
1639 if (oh->rst_lines_cnt == 0)
1640 return false;
1641
1642 for (i = 0; i < oh->rst_lines_cnt; i++)
1643 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001644 rst_cnt++;
1645
1646 if (oh->rst_lines_cnt == rst_cnt)
1647 return true;
Paul Walmsley747834a2012-04-18 19:10:04 -06001648
1649 return false;
1650}
1651
1652/**
Paul Walmsleye9332b62012-10-08 23:08:15 -06001653 * _are_any_hardreset_lines_asserted - return true if any part of @oh is
1654 * hard-reset
1655 * @oh: struct omap_hwmod *
1656 *
1657 * If any hardreset lines associated with @oh are asserted, then
1658 * return true. Otherwise, if no hardreset lines associated with @oh
1659 * are asserted, or if @oh has no hardreset lines, then return false.
1660 * This function is used to avoid executing some parts of the IP block
1661 * enable/disable sequence if any hardreset line is set.
1662 */
1663static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
1664{
1665 int rst_cnt = 0;
1666 int i;
1667
1668 for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
1669 if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
1670 rst_cnt++;
1671
1672 return (rst_cnt) ? true : false;
1673}
1674
1675/**
Paul Walmsley747834a2012-04-18 19:10:04 -06001676 * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
1677 * @oh: struct omap_hwmod *
1678 *
1679 * Disable the PRCM module mode related to the hwmod @oh.
1680 * Return EINVAL if the modulemode is not supported and 0 in case of success.
1681 */
1682static int _omap4_disable_module(struct omap_hwmod *oh)
1683{
1684 int v;
1685
Tony Lindgren8823ddf2017-08-29 10:03:33 -07001686 if (!oh->clkdm || !oh->prcm.omap4.modulemode ||
1687 _omap4_clkctrl_managed_by_clkfwk(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06001688 return -EINVAL;
1689
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001690 /*
1691 * Since integration code might still be doing something, only
1692 * disable if all lines are under hardreset.
1693 */
Paul Walmsleye9332b62012-10-08 23:08:15 -06001694 if (_are_any_hardreset_lines_asserted(oh))
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001695 return 0;
1696
Paul Walmsley747834a2012-04-18 19:10:04 -06001697 pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
1698
Tero Kristo128603f2014-10-27 08:39:24 -07001699 omap_cm_module_disable(oh->clkdm->prcm_partition, oh->clkdm->cm_inst,
1700 oh->prcm.omap4.clkctrl_offs);
Paul Walmsley747834a2012-04-18 19:10:04 -06001701
Paul Walmsley747834a2012-04-18 19:10:04 -06001702 v = _omap4_wait_target_disable(oh);
1703 if (v)
1704 pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
1705 oh->name);
1706
1707 return 0;
1708}
1709
1710/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001711 * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
Paul Walmsley63c85232009-09-03 20:14:03 +03001712 * @oh: struct omap_hwmod *
1713 *
1714 * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
Paul Walmsley30e105c2012-04-19 00:49:09 -06001715 * enabled for this to work. Returns -ENOENT if the hwmod cannot be
1716 * reset this way, -EINVAL if the hwmod is in the wrong state,
1717 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Benoit Cousson2cb06812010-09-21 18:57:59 +02001718 *
1719 * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
Paul Walmsleybd361792010-12-14 12:42:35 -07001720 * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
Benoit Cousson2cb06812010-09-21 18:57:59 +02001721 * use the SYSCONFIG softreset bit to provide the status.
1722 *
Paul Walmsleybd361792010-12-14 12:42:35 -07001723 * Note that some IP like McBSP do have reset control but don't have
1724 * reset status.
Paul Walmsley63c85232009-09-03 20:14:03 +03001725 */
Paul Walmsleybd361792010-12-14 12:42:35 -07001726static int _ocp_softreset(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001727{
Tero Kristo613ad0e2012-10-29 22:02:13 -06001728 u32 v;
Paul Walmsley6f8b7ff2009-12-08 16:33:16 -07001729 int c = 0;
Benoit Cousson96835af2010-09-21 18:57:58 +02001730 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001731
Paul Walmsley43b40992010-02-22 22:09:34 -07001732 if (!oh->class->sysc ||
Benoit Cousson2cb06812010-09-21 18:57:59 +02001733 !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
Paul Walmsley30e105c2012-04-19 00:49:09 -06001734 return -ENOENT;
Paul Walmsley63c85232009-09-03 20:14:03 +03001735
1736 /* clocks must be on for this operation */
1737 if (oh->_state != _HWMOD_STATE_ENABLED) {
Paul Walmsley7852ec02012-07-26 00:54:26 -06001738 pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
1739 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001740 return -EINVAL;
1741 }
1742
Benoit Cousson96835af2010-09-21 18:57:58 +02001743 /* For some modules, all optionnal clocks need to be enabled as well */
1744 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1745 _enable_optional_clocks(oh);
1746
Paul Walmsleybd361792010-12-14 12:42:35 -07001747 pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001748
1749 v = oh->_sysc_cache;
Benoit Cousson96835af2010-09-21 18:57:58 +02001750 ret = _set_softreset(oh, &v);
1751 if (ret)
1752 goto dis_opt_clks;
Roger Quadros313a76e2013-12-08 18:39:02 -07001753
1754 _write_sysconfig(v, oh);
Illia Smyrnov01142512014-02-05 17:06:09 +02001755
1756 if (oh->class->sysc->srst_udelay)
1757 udelay(oh->class->sysc->srst_udelay);
1758
1759 c = _wait_softreset_complete(oh);
1760 if (c == MAX_MODULE_SOFTRESET_WAIT) {
Joe Perches3d0cb732014-09-13 11:31:16 -07001761 pr_warn("omap_hwmod: %s: softreset failed (waited %d usec)\n",
1762 oh->name, MAX_MODULE_SOFTRESET_WAIT);
Illia Smyrnov01142512014-02-05 17:06:09 +02001763 ret = -ETIMEDOUT;
1764 goto dis_opt_clks;
1765 } else {
1766 pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
1767 }
1768
Roger Quadros313a76e2013-12-08 18:39:02 -07001769 ret = _clear_softreset(oh, &v);
1770 if (ret)
1771 goto dis_opt_clks;
1772
Paul Walmsley63c85232009-09-03 20:14:03 +03001773 _write_sysconfig(v, oh);
1774
Paul Walmsley63c85232009-09-03 20:14:03 +03001775 /*
1776 * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
1777 * _wait_target_ready() or _reset()
1778 */
1779
Benoit Cousson96835af2010-09-21 18:57:58 +02001780dis_opt_clks:
1781 if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
1782 _disable_optional_clocks(oh);
1783
1784 return ret;
Paul Walmsley63c85232009-09-03 20:14:03 +03001785}
1786
1787/**
Paul Walmsleybd361792010-12-14 12:42:35 -07001788 * _reset - reset an omap_hwmod
1789 * @oh: struct omap_hwmod *
1790 *
Paul Walmsley30e105c2012-04-19 00:49:09 -06001791 * Resets an omap_hwmod @oh. If the module has a custom reset
1792 * function pointer defined, then call it to reset the IP block, and
1793 * pass along its return value to the caller. Otherwise, if the IP
1794 * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
1795 * associated with it, call a function to reset the IP block via that
1796 * method, and pass along the return value to the caller. Finally, if
1797 * the IP block has some hardreset lines associated with it, assert
1798 * all of those, but do _not_ deassert them. (This is because driver
1799 * authors have expressed an apparent requirement to control the
1800 * deassertion of the hardreset lines themselves.)
1801 *
1802 * The default software reset mechanism for most OMAP IP blocks is
1803 * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
1804 * hwmods cannot be reset via this method. Some are not targets and
1805 * therefore have no OCP header registers to access. Others (like the
1806 * IVA) have idiosyncratic reset sequences. So for these relatively
1807 * rare cases, custom reset code can be supplied in the struct
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001808 * omap_hwmod_class .reset function pointer.
1809 *
1810 * _set_dmadisable() is called to set the DMADISABLE bit so that it
1811 * does not prevent idling of the system. This is necessary for cases
1812 * where ROMCODE/BOOTLOADER uses dma and transfers control to the
1813 * kernel without disabling dma.
1814 *
1815 * Passes along the return value from either _ocp_softreset() or the
1816 * custom reset function - these must return -EINVAL if the hwmod
1817 * cannot be reset this way or if the hwmod is in the wrong state,
1818 * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
Paul Walmsleybd361792010-12-14 12:42:35 -07001819 */
1820static int _reset(struct omap_hwmod *oh)
1821{
Paul Walmsley30e105c2012-04-19 00:49:09 -06001822 int i, r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001823
1824 pr_debug("omap_hwmod: %s: resetting\n", oh->name);
1825
Paul Walmsley30e105c2012-04-19 00:49:09 -06001826 if (oh->class->reset) {
1827 r = oh->class->reset(oh);
1828 } else {
1829 if (oh->rst_lines_cnt > 0) {
1830 for (i = 0; i < oh->rst_lines_cnt; i++)
1831 _assert_hardreset(oh, oh->rst_lines[i].name);
1832 return 0;
1833 } else {
1834 r = _ocp_softreset(oh);
1835 if (r == -ENOENT)
1836 r = 0;
1837 }
1838 }
Paul Walmsleybd361792010-12-14 12:42:35 -07001839
Kishon Vijay Abraham I66685462012-07-04 05:09:21 -06001840 _set_dmadisable(oh);
1841
Paul Walmsley30e105c2012-04-19 00:49:09 -06001842 /*
1843 * OCP_SYSCONFIG bits need to be reprogrammed after a
1844 * softreset. The _enable() function should be split to avoid
1845 * the rewrite of the OCP_SYSCONFIG register.
1846 */
Rajendra Nayak28008522012-03-13 22:55:23 +05301847 if (oh->class->sysc) {
1848 _update_sysc_cache(oh);
1849 _enable_sysc(oh);
1850 }
1851
Paul Walmsley30e105c2012-04-19 00:49:09 -06001852 return r;
Paul Walmsleybd361792010-12-14 12:42:35 -07001853}
1854
1855/**
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07001856 * _omap4_update_context_lost - increment hwmod context loss counter if
1857 * hwmod context was lost, and clear hardware context loss reg
1858 * @oh: hwmod to check for context loss
1859 *
1860 * If the PRCM indicates that the hwmod @oh lost context, increment
1861 * our in-memory context loss counter, and clear the RM_*_CONTEXT
1862 * bits. No return value.
1863 */
1864static void _omap4_update_context_lost(struct omap_hwmod *oh)
1865{
1866 if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
1867 return;
1868
1869 if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
1870 oh->clkdm->pwrdm.ptr->prcm_offs,
1871 oh->prcm.omap4.context_offs))
1872 return;
1873
1874 oh->prcm.omap4.context_lost_counter++;
1875 prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
1876 oh->clkdm->pwrdm.ptr->prcm_offs,
1877 oh->prcm.omap4.context_offs);
1878}
1879
1880/**
1881 * _omap4_get_context_lost - get context loss counter for a hwmod
1882 * @oh: hwmod to get context loss counter for
1883 *
1884 * Returns the in-memory context loss counter for a hwmod.
1885 */
1886static int _omap4_get_context_lost(struct omap_hwmod *oh)
1887{
1888 return oh->prcm.omap4.context_lost_counter;
1889}
1890
1891/**
Paul Walmsley6d266f62013-02-10 11:22:22 -07001892 * _enable_preprogram - Pre-program an IP block during the _enable() process
1893 * @oh: struct omap_hwmod *
1894 *
1895 * Some IP blocks (such as AESS) require some additional programming
1896 * after enable before they can enter idle. If a function pointer to
1897 * do so is present in the hwmod data, then call it and pass along the
1898 * return value; otherwise, return 0.
1899 */
jean-philippe francois0f497032013-05-16 11:25:07 -07001900static int _enable_preprogram(struct omap_hwmod *oh)
Paul Walmsley6d266f62013-02-10 11:22:22 -07001901{
1902 if (!oh->class->enable_preprogram)
1903 return 0;
1904
1905 return oh->class->enable_preprogram(oh);
1906}
1907
1908/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001909 * _enable - enable an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03001910 * @oh: struct omap_hwmod *
1911 *
1912 * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001913 * register target. Returns -EINVAL if the hwmod is in the wrong
1914 * state or passes along the return value of _wait_target_ready().
Paul Walmsley63c85232009-09-03 20:14:03 +03001915 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07001916static int _enable(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03001917{
Paul Walmsley747834a2012-04-18 19:10:04 -06001918 int r;
Paul Walmsley63c85232009-09-03 20:14:03 +03001919
Benoit Cousson34617e22011-07-01 22:54:07 +02001920 pr_debug("omap_hwmod: %s: enabling\n", oh->name);
1921
Rajendra Nayakaacf0942011-12-16 05:50:12 -07001922 /*
Paul Walmsley64813c32012-04-18 19:10:03 -06001923 * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
Tony Lindgrenb4281452016-10-20 06:35:21 -07001924 * state at init.
Rajendra Nayakaacf0942011-12-16 05:50:12 -07001925 */
1926 if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
Rajendra Nayakaacf0942011-12-16 05:50:12 -07001927 oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
1928 return 0;
1929 }
1930
Paul Walmsley63c85232009-09-03 20:14:03 +03001931 if (oh->_state != _HWMOD_STATE_INITIALIZED &&
1932 oh->_state != _HWMOD_STATE_IDLE &&
1933 oh->_state != _HWMOD_STATE_DISABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00001934 WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
1935 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03001936 return -EINVAL;
1937 }
1938
Benoit Cousson31f62862011-07-01 22:54:05 +02001939 /*
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001940 * If an IP block contains HW reset lines and all of them are
Paul Walmsley747834a2012-04-18 19:10:04 -06001941 * asserted, we let integration code associated with that
1942 * block handle the enable. We've received very little
1943 * information on what those driver authors need, and until
1944 * detailed information is provided and the driver code is
1945 * posted to the public lists, this is probably the best we
1946 * can do.
Benoit Cousson31f62862011-07-01 22:54:05 +02001947 */
Omar Ramirez Lunaeb05f692012-09-23 17:28:20 -06001948 if (_are_all_hardreset_lines_asserted(oh))
Paul Walmsley747834a2012-04-18 19:10:04 -06001949 return 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03001950
Rajendra Nayak665d0012011-07-10 05:57:07 -06001951 _add_initiator_dep(oh, mpu_oh);
1952
1953 if (oh->clkdm) {
1954 /*
1955 * A clockdomain must be in SW_SUP before enabling
1956 * completely the module. The clockdomain can be set
1957 * in HW_AUTO only when the module become ready.
1958 */
Tero Kristo1d9a5422016-06-30 16:15:02 +03001959 clkdm_deny_idle(oh->clkdm);
Rajendra Nayak665d0012011-07-10 05:57:07 -06001960 r = clkdm_hwmod_enable(oh->clkdm, oh);
1961 if (r) {
1962 WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
1963 oh->name, oh->clkdm->name, r);
1964 return r;
1965 }
Benoit Cousson34617e22011-07-01 22:54:07 +02001966 }
Rajendra Nayak665d0012011-07-10 05:57:07 -06001967
1968 _enable_clocks(oh);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06001969 if (soc_ops.enable_module)
1970 soc_ops.enable_module(oh);
Paul Walmsleyfa200222013-01-26 00:48:56 -07001971 if (oh->flags & HWMOD_BLOCK_WFI)
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +01001972 cpu_idle_poll_ctrl(true);
Benoit Cousson34617e22011-07-01 22:54:07 +02001973
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07001974 if (soc_ops.update_context_lost)
1975 soc_ops.update_context_lost(oh);
1976
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06001977 r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
1978 -EINVAL;
Roger Quadros8ff42da2017-03-17 10:58:18 +02001979 if (oh->clkdm && !(oh->flags & HWMOD_CLKDM_NOAUTO))
Tero Kristo1d9a5422016-06-30 16:15:02 +03001980 clkdm_allow_idle(oh->clkdm);
Benoit Cousson34617e22011-07-01 22:54:07 +02001981
Tero Kristo1d9a5422016-06-30 16:15:02 +03001982 if (!r) {
Rajendra Nayak665d0012011-07-10 05:57:07 -06001983 oh->_state = _HWMOD_STATE_ENABLED;
1984
1985 /* Access the sysconfig only if the target is ready */
1986 if (oh->class->sysc) {
1987 if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
1988 _update_sysc_cache(oh);
1989 _enable_sysc(oh);
1990 }
Paul Walmsley6d266f62013-02-10 11:22:22 -07001991 r = _enable_preprogram(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06001992 } else {
Paul Walmsley2577a4a2012-10-29 20:57:55 -06001993 if (soc_ops.disable_module)
1994 soc_ops.disable_module(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06001995 _disable_clocks(oh);
Lokesh Vutla812ce9d2014-12-19 18:04:50 +05301996 pr_err("omap_hwmod: %s: _wait_target_ready failed: %d\n",
1997 oh->name, r);
Rajendra Nayak665d0012011-07-10 05:57:07 -06001998
1999 if (oh->clkdm)
2000 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002001 }
2002
Paul Walmsley63c85232009-09-03 20:14:03 +03002003 return r;
2004}
2005
2006/**
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002007 * _idle - idle an omap_hwmod
Paul Walmsley63c85232009-09-03 20:14:03 +03002008 * @oh: struct omap_hwmod *
2009 *
2010 * Idles an omap_hwmod @oh. This should be called once the hwmod has
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002011 * no further work. Returns -EINVAL if the hwmod is in the wrong
2012 * state or returns 0.
Paul Walmsley63c85232009-09-03 20:14:03 +03002013 */
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002014static int _idle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002015{
Lokesh Vutla2e18f5a2016-03-07 01:41:21 -07002016 if (oh->flags & HWMOD_NO_IDLE) {
2017 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
2018 return 0;
2019 }
2020
Benoit Cousson34617e22011-07-01 22:54:07 +02002021 pr_debug("omap_hwmod: %s: idling\n", oh->name);
2022
Suman Annac20c8f72016-04-10 13:20:11 -06002023 if (_are_all_hardreset_lines_asserted(oh))
2024 return 0;
2025
Paul Walmsley63c85232009-09-03 20:14:03 +03002026 if (oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002027 WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
2028 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002029 return -EINVAL;
2030 }
2031
Paul Walmsley43b40992010-02-22 22:09:34 -07002032 if (oh->class->sysc)
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002033 _idle_sysc(oh);
Paul Walmsley63c85232009-09-03 20:14:03 +03002034 _del_initiator_dep(oh, mpu_oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002035
Roger Quadros8ff42da2017-03-17 10:58:18 +02002036 /*
2037 * If HWMOD_CLKDM_NOAUTO is set then we don't
2038 * deny idle the clkdm again since idle was already denied
2039 * in _enable()
2040 */
2041 if (oh->clkdm && !(oh->flags & HWMOD_CLKDM_NOAUTO))
Tero Kristo1d9a5422016-06-30 16:15:02 +03002042 clkdm_deny_idle(oh->clkdm);
2043
Paul Walmsleyfa200222013-01-26 00:48:56 -07002044 if (oh->flags & HWMOD_BLOCK_WFI)
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +01002045 cpu_idle_poll_ctrl(false);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002046 if (soc_ops.disable_module)
2047 soc_ops.disable_module(oh);
Benoit Coussonbfc141e2011-12-16 16:09:11 -08002048
Benoit Cousson45c38252011-07-10 05:56:33 -06002049 /*
2050 * The module must be in idle mode before disabling any parents
2051 * clocks. Otherwise, the parent clock might be disabled before
2052 * the module transition is done, and thus will prevent the
2053 * transition to complete properly.
2054 */
2055 _disable_clocks(oh);
Tero Kristo1d9a5422016-06-30 16:15:02 +03002056 if (oh->clkdm) {
2057 clkdm_allow_idle(oh->clkdm);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002058 clkdm_hwmod_disable(oh->clkdm, oh);
Tero Kristo1d9a5422016-06-30 16:15:02 +03002059 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002060
2061 oh->_state = _HWMOD_STATE_IDLE;
2062
2063 return 0;
2064}
2065
2066/**
2067 * _shutdown - shutdown an omap_hwmod
2068 * @oh: struct omap_hwmod *
2069 *
2070 * Shut down an omap_hwmod @oh. This should be called when the driver
2071 * used for the hwmod is removed or unloaded or if the driver is not
2072 * used by the system. Returns -EINVAL if the hwmod is in the wrong
2073 * state or returns 0.
2074 */
2075static int _shutdown(struct omap_hwmod *oh)
2076{
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002077 int ret, i;
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002078 u8 prev_state;
2079
Suman Annac20c8f72016-04-10 13:20:11 -06002080 if (_are_all_hardreset_lines_asserted(oh))
2081 return 0;
2082
Paul Walmsley63c85232009-09-03 20:14:03 +03002083 if (oh->_state != _HWMOD_STATE_IDLE &&
2084 oh->_state != _HWMOD_STATE_ENABLED) {
Russell King4f8a4282012-02-07 10:59:37 +00002085 WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
2086 oh->name);
Paul Walmsley63c85232009-09-03 20:14:03 +03002087 return -EINVAL;
2088 }
2089
2090 pr_debug("omap_hwmod: %s: disabling\n", oh->name);
2091
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002092 if (oh->class->pre_shutdown) {
2093 prev_state = oh->_state;
2094 if (oh->_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002095 _enable(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002096 ret = oh->class->pre_shutdown(oh);
2097 if (ret) {
2098 if (prev_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002099 _idle(oh);
Paul Walmsleye4dc8f52010-12-14 12:42:34 -07002100 return ret;
2101 }
2102 }
2103
Miguel Vadillo6481c732011-07-01 22:54:02 +02002104 if (oh->class->sysc) {
2105 if (oh->_state == _HWMOD_STATE_IDLE)
2106 _enable(oh);
Paul Walmsley74ff3a62010-09-21 15:02:23 -06002107 _shutdown_sysc(oh);
Miguel Vadillo6481c732011-07-01 22:54:02 +02002108 }
BenoƮt Cousson5365efb2010-09-21 10:34:11 -06002109
Benoit Cousson3827f942010-09-21 10:34:08 -06002110 /* clocks and deps are already disabled in idle */
2111 if (oh->_state == _HWMOD_STATE_ENABLED) {
2112 _del_initiator_dep(oh, mpu_oh);
2113 /* XXX what about the other system initiators here? dma, dsp */
Paul Walmsleyfa200222013-01-26 00:48:56 -07002114 if (oh->flags & HWMOD_BLOCK_WFI)
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +01002115 cpu_idle_poll_ctrl(false);
Kevin Hilman9ebfd282012-06-18 12:12:23 -06002116 if (soc_ops.disable_module)
2117 soc_ops.disable_module(oh);
Benoit Cousson45c38252011-07-10 05:56:33 -06002118 _disable_clocks(oh);
Rajendra Nayak665d0012011-07-10 05:57:07 -06002119 if (oh->clkdm)
2120 clkdm_hwmod_disable(oh->clkdm, oh);
Benoit Cousson3827f942010-09-21 10:34:08 -06002121 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002122 /* XXX Should this code also force-disable the optional clocks? */
2123
Paul Walmsley9c8b0ec2012-04-18 19:10:02 -06002124 for (i = 0; i < oh->rst_lines_cnt; i++)
2125 _assert_hardreset(oh, oh->rst_lines[i].name);
Benoit Cousson31f62862011-07-01 22:54:05 +02002126
Paul Walmsley63c85232009-09-03 20:14:03 +03002127 oh->_state = _HWMOD_STATE_DISABLED;
2128
2129 return 0;
2130}
2131
Tony Lindgren5e863c52013-12-06 14:20:16 -08002132static int of_dev_find_hwmod(struct device_node *np,
2133 struct omap_hwmod *oh)
2134{
2135 int count, i, res;
2136 const char *p;
2137
2138 count = of_property_count_strings(np, "ti,hwmods");
2139 if (count < 1)
2140 return -ENODEV;
2141
2142 for (i = 0; i < count; i++) {
2143 res = of_property_read_string_index(np, "ti,hwmods",
2144 i, &p);
2145 if (res)
2146 continue;
2147 if (!strcmp(p, oh->name)) {
Rob Herring6e7713792018-08-28 10:44:27 -05002148 pr_debug("omap_hwmod: dt %pOFn[%i] uses hwmod %s\n",
2149 np, i, oh->name);
Tony Lindgren5e863c52013-12-06 14:20:16 -08002150 return i;
2151 }
2152 }
2153
2154 return -ENODEV;
2155}
2156
Paul Walmsley63c85232009-09-03 20:14:03 +03002157/**
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302158 * of_dev_hwmod_lookup - look up needed hwmod from dt blob
2159 * @np: struct device_node *
2160 * @oh: struct omap_hwmod *
Tony Lindgren5e863c52013-12-06 14:20:16 -08002161 * @index: index of the entry found
2162 * @found: struct device_node * found or NULL
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302163 *
2164 * Parse the dt blob and find out needed hwmod. Recursive function is
2165 * implemented to take care hierarchical dt blob parsing.
Tony Lindgren5e863c52013-12-06 14:20:16 -08002166 * Return: Returns 0 on success, -ENODEV when not found.
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302167 */
Tony Lindgren5e863c52013-12-06 14:20:16 -08002168static int of_dev_hwmod_lookup(struct device_node *np,
2169 struct omap_hwmod *oh,
2170 int *index,
2171 struct device_node **found)
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302172{
Tony Lindgren5e863c52013-12-06 14:20:16 -08002173 struct device_node *np0 = NULL;
2174 int res;
2175
2176 res = of_dev_find_hwmod(np, oh);
2177 if (res >= 0) {
2178 *found = np;
2179 *index = res;
2180 return 0;
2181 }
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302182
2183 for_each_child_of_node(np, np0) {
Tony Lindgren5e863c52013-12-06 14:20:16 -08002184 struct device_node *fc;
2185 int i;
2186
2187 res = of_dev_hwmod_lookup(np0, oh, &i, &fc);
2188 if (res == 0) {
2189 *found = fc;
2190 *index = i;
2191 return 0;
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302192 }
2193 }
Tony Lindgren5e863c52013-12-06 14:20:16 -08002194
2195 *found = NULL;
2196 *index = 0;
2197
2198 return -ENODEV;
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302199}
2200
2201/**
Tony Lindgren1dbcb972018-08-08 01:07:04 -07002202 * omap_hwmod_fix_mpu_rt_idx - fix up mpu_rt_idx register offsets
2203 *
2204 * @oh: struct omap_hwmod *
2205 * @np: struct device_node *
2206 *
2207 * Fix up module register offsets for modules with mpu_rt_idx.
2208 * Only needed for cpsw with interconnect target module defined
2209 * in device tree while still using legacy hwmod platform data
2210 * for rev, sysc and syss registers.
2211 *
2212 * Can be removed when all cpsw hwmod platform data has been
2213 * dropped.
2214 */
2215static void omap_hwmod_fix_mpu_rt_idx(struct omap_hwmod *oh,
2216 struct device_node *np,
2217 struct resource *res)
2218{
2219 struct device_node *child = NULL;
2220 int error;
2221
2222 child = of_get_next_child(np, child);
2223 if (!child)
2224 return;
2225
2226 error = of_address_to_resource(child, oh->mpu_rt_idx, res);
2227 if (error)
2228 pr_err("%s: error mapping mpu_rt_idx: %i\n",
2229 __func__, error);
2230}
2231
2232/**
Tony Lindgren6c72b352017-10-10 14:23:27 -07002233 * omap_hwmod_parse_module_range - map module IO range from device tree
2234 * @oh: struct omap_hwmod *
2235 * @np: struct device_node *
2236 *
2237 * Parse the device tree range an interconnect target module provides
2238 * for it's child device IP blocks. This way we can support the old
2239 * "ti,hwmods" property with just dts data without a need for platform
2240 * data for IO resources. And we don't need all the child IP device
2241 * nodes available in the dts.
2242 */
2243int omap_hwmod_parse_module_range(struct omap_hwmod *oh,
2244 struct device_node *np,
2245 struct resource *res)
2246{
2247 struct property *prop;
2248 const __be32 *ranges;
2249 const char *name;
2250 u32 nr_addr, nr_size;
2251 u64 base, size;
2252 int len, error;
2253
2254 if (!res)
2255 return -EINVAL;
2256
2257 ranges = of_get_property(np, "ranges", &len);
2258 if (!ranges)
2259 return -ENOENT;
2260
2261 len /= sizeof(*ranges);
2262
2263 if (len < 3)
2264 return -EINVAL;
2265
2266 of_property_for_each_string(np, "compatible", prop, name)
2267 if (!strncmp("ti,sysc-", name, 8))
2268 break;
2269
2270 if (!name)
2271 return -ENOENT;
2272
2273 error = of_property_read_u32(np, "#address-cells", &nr_addr);
2274 if (error)
2275 return -ENOENT;
2276
2277 error = of_property_read_u32(np, "#size-cells", &nr_size);
2278 if (error)
2279 return -ENOENT;
2280
2281 if (nr_addr != 1 || nr_size != 1) {
Rob Herring6e7713792018-08-28 10:44:27 -05002282 pr_err("%s: invalid range for %s->%pOFn\n", __func__,
2283 oh->name, np);
Tony Lindgren6c72b352017-10-10 14:23:27 -07002284 return -EINVAL;
2285 }
2286
2287 ranges++;
2288 base = of_translate_address(np, ranges++);
2289 size = be32_to_cpup(ranges);
2290
Rob Herring6e7713792018-08-28 10:44:27 -05002291 pr_debug("omap_hwmod: %s %pOFn at 0x%llx size 0x%llx\n",
2292 oh->name, np, base, size);
Tony Lindgren6c72b352017-10-10 14:23:27 -07002293
Tony Lindgren1dbcb972018-08-08 01:07:04 -07002294 if (oh && oh->mpu_rt_idx) {
2295 omap_hwmod_fix_mpu_rt_idx(oh, np, res);
2296
2297 return 0;
2298 }
2299
Tony Lindgren6c72b352017-10-10 14:23:27 -07002300 res->start = base;
2301 res->end = base + size - 1;
2302 res->flags = IORESOURCE_MEM;
2303
2304 return 0;
2305}
2306
2307/**
Paul Walmsley381d0332012-04-19 00:58:22 -06002308 * _init_mpu_rt_base - populate the virtual address for a hwmod
2309 * @oh: struct omap_hwmod * to locate the virtual address
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002310 * @data: (unused, caller should pass NULL)
Tony Lindgren5e863c52013-12-06 14:20:16 -08002311 * @index: index of the reg entry iospace in device tree
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002312 * @np: struct device_node * of the IP block's device node in the DT data
Paul Walmsley381d0332012-04-19 00:58:22 -06002313 *
2314 * Cache the virtual address used by the MPU to access this IP block's
2315 * registers. This address is needed early so the OCP registers that
2316 * are part of the device's address space can be ioremapped properly.
Suman Anna6423d6d2013-10-08 23:46:49 -06002317 *
Roger Quadros9a258af2015-07-16 16:16:44 +03002318 * If SYSC access is not needed, the registers will not be remapped
2319 * and non-availability of MPU access is not treated as an error.
2320 *
Suman Anna6423d6d2013-10-08 23:46:49 -06002321 * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and
2322 * -ENXIO on absent or invalid register target address space.
Paul Walmsley381d0332012-04-19 00:58:22 -06002323 */
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002324static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data,
Tony Lindgren5e863c52013-12-06 14:20:16 -08002325 int index, struct device_node *np)
Paul Walmsley381d0332012-04-19 00:58:22 -06002326{
Santosh Shilimkar079abad2013-01-21 18:40:57 +05302327 void __iomem *va_start = NULL;
Tony Lindgren6c72b352017-10-10 14:23:27 -07002328 struct resource res;
2329 int error;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002330
2331 if (!oh)
Suman Anna6423d6d2013-10-08 23:46:49 -06002332 return -EINVAL;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002333
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002334 _save_mpu_port_index(oh);
2335
Roger Quadros9a258af2015-07-16 16:16:44 +03002336 /* if we don't need sysc access we don't need to ioremap */
2337 if (!oh->class->sysc)
2338 return 0;
2339
2340 /* we can't continue without MPU PORT if we need sysc access */
Paul Walmsley381d0332012-04-19 00:58:22 -06002341 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
Suman Anna6423d6d2013-10-08 23:46:49 -06002342 return -ENXIO;
Paul Walmsley381d0332012-04-19 00:58:22 -06002343
Tony Lindgren9cffb1a2017-10-10 14:27:33 -07002344 if (!np) {
2345 pr_err("omap_hwmod: %s: no dt node\n", oh->name);
2346 return -ENXIO;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002347 }
2348
Tony Lindgren9cffb1a2017-10-10 14:27:33 -07002349 /* Do we have a dts range for the interconnect target module? */
2350 error = omap_hwmod_parse_module_range(oh, np, &res);
2351 if (!error)
2352 va_start = ioremap(res.start, resource_size(&res));
2353
2354 /* No ranges, rely on device reg entry */
2355 if (!va_start)
2356 va_start = of_iomap(np, index + oh->mpu_rt_idx);
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002357 if (!va_start) {
Tony Lindgren9cffb1a2017-10-10 14:27:33 -07002358 pr_err("omap_hwmod: %s: Missing dt reg%i for %pOF\n",
2359 oh->name, index, np);
Suman Anna6423d6d2013-10-08 23:46:49 -06002360 return -ENXIO;
Paul Walmsleyc9aafd22012-04-18 19:10:05 -06002361 }
2362
2363 pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
2364 oh->name, va_start);
2365
2366 oh->_mpu_rt_va = va_start;
Suman Anna6423d6d2013-10-08 23:46:49 -06002367 return 0;
Paul Walmsley381d0332012-04-19 00:58:22 -06002368}
2369
Tony Lindgren4f212242018-12-10 14:11:10 -08002370static void __init parse_module_flags(struct omap_hwmod *oh,
2371 struct device_node *np)
2372{
2373 if (of_find_property(np, "ti,no-reset-on-init", NULL))
2374 oh->flags |= HWMOD_INIT_NO_RESET;
2375 if (of_find_property(np, "ti,no-idle-on-init", NULL))
2376 oh->flags |= HWMOD_INIT_NO_IDLE;
2377 if (of_find_property(np, "ti,no-idle", NULL))
2378 oh->flags |= HWMOD_NO_IDLE;
2379}
2380
Paul Walmsley381d0332012-04-19 00:58:22 -06002381/**
2382 * _init - initialize internal data for the hwmod @oh
2383 * @oh: struct omap_hwmod *
2384 * @n: (unused)
2385 *
2386 * Look up the clocks and the address space used by the MPU to access
2387 * registers belonging to the hwmod @oh. @oh must already be
2388 * registered at this point. This is the first of two phases for
2389 * hwmod initialization. Code called here does not touch any hardware
2390 * registers, it simply prepares internal data structures. Returns 0
Suman Anna6423d6d2013-10-08 23:46:49 -06002391 * upon success or if the hwmod isn't registered or if the hwmod's
2392 * address space is not defined, or -EINVAL upon failure.
Paul Walmsley381d0332012-04-19 00:58:22 -06002393 */
2394static int __init _init(struct omap_hwmod *oh, void *data)
2395{
Tony Lindgren5e863c52013-12-06 14:20:16 -08002396 int r, index;
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002397 struct device_node *np = NULL;
Tony Lindgren1aa8f0c2017-05-31 15:51:37 -07002398 struct device_node *bus;
Paul Walmsley381d0332012-04-19 00:58:22 -06002399
2400 if (oh->_state != _HWMOD_STATE_REGISTERED)
2401 return 0;
2402
Tony Lindgren1aa8f0c2017-05-31 15:51:37 -07002403 bus = of_find_node_by_name(NULL, "ocp");
2404 if (!bus)
2405 return -ENODEV;
Tony Lindgren5e863c52013-12-06 14:20:16 -08002406
Tony Lindgren1aa8f0c2017-05-31 15:51:37 -07002407 r = of_dev_hwmod_lookup(bus, oh, &index, &np);
2408 if (r)
2409 pr_debug("omap_hwmod: %s missing dt data\n", oh->name);
2410 else if (np && index)
Rob Herring6e7713792018-08-28 10:44:27 -05002411 pr_warn("omap_hwmod: %s using broken dt data from %pOFn\n",
2412 oh->name, np);
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002413
Roger Quadros9a258af2015-07-16 16:16:44 +03002414 r = _init_mpu_rt_base(oh, NULL, index, np);
2415 if (r < 0) {
2416 WARN(1, "omap_hwmod: %s: doesn't have mpu register target base\n",
2417 oh->name);
2418 return 0;
Suman Anna6423d6d2013-10-08 23:46:49 -06002419 }
Paul Walmsley381d0332012-04-19 00:58:22 -06002420
Tero Kristo70f05be2017-05-31 18:00:03 +03002421 r = _init_clocks(oh, np);
Russell Kingc48cd652013-03-13 20:44:21 +00002422 if (r < 0) {
Paul Walmsley381d0332012-04-19 00:58:22 -06002423 WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
2424 return -EINVAL;
2425 }
2426
Suman Anna3d36ad72014-03-14 14:45:17 +05302427 if (np) {
Tony Lindgren4f212242018-12-10 14:11:10 -08002428 struct device_node *child;
2429
2430 parse_module_flags(oh, np);
2431 child = of_get_next_child(np, NULL);
2432 if (child)
2433 parse_module_flags(oh, child);
Suman Anna3d36ad72014-03-14 14:45:17 +05302434 }
Rajendra Nayakf92d9592013-10-09 01:26:55 -06002435
Paul Walmsley381d0332012-04-19 00:58:22 -06002436 oh->_state = _HWMOD_STATE_INITIALIZED;
2437
2438 return 0;
2439}
2440
2441/**
Paul Walmsley64813c32012-04-18 19:10:03 -06002442 * _setup_iclk_autoidle - configure an IP block's interface clocks
Paul Walmsley63c85232009-09-03 20:14:03 +03002443 * @oh: struct omap_hwmod *
2444 *
Paul Walmsley64813c32012-04-18 19:10:03 -06002445 * Set up the module's interface clocks. XXX This function is still mostly
2446 * a stub; implementing this properly requires iclk autoidle usecounting in
2447 * the clock code. No return value.
Paul Walmsley63c85232009-09-03 20:14:03 +03002448 */
Nathan Chancellorc10b26a2018-10-17 17:52:07 -07002449static void _setup_iclk_autoidle(struct omap_hwmod *oh)
Paul Walmsley63c85232009-09-03 20:14:03 +03002450{
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002451 struct omap_hwmod_ocp_if *os;
Tony Lindgrenb8e1bdd2017-03-14 13:13:19 -07002452
Paul Walmsley381d0332012-04-19 00:58:22 -06002453 if (oh->_state != _HWMOD_STATE_INITIALIZED)
Paul Walmsley64813c32012-04-18 19:10:03 -06002454 return;
Paul Walmsley48d54f32011-02-23 00:14:07 -07002455
Tony Lindgrenb8e1bdd2017-03-14 13:13:19 -07002456 list_for_each_entry(os, &oh->slave_ports, node) {
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002457 if (!os->_clk)
Paul Walmsley64813c32012-04-18 19:10:03 -06002458 continue;
Paul Walmsley63c85232009-09-03 20:14:03 +03002459
Paul Walmsley64813c32012-04-18 19:10:03 -06002460 if (os->flags & OCPIF_SWSUP_IDLE) {
Andreas Kemnade12af39c2019-01-16 23:04:29 +01002461 /*
2462 * we might have multiple users of one iclk with
2463 * different requirements, disable autoidle when
2464 * the module is enabled, e.g. dss iclk
2465 */
Paul Walmsley64813c32012-04-18 19:10:03 -06002466 } else {
Andreas Kemnade12af39c2019-01-16 23:04:29 +01002467 /* we are enabling autoidle afterwards anyways */
Paul Walmsley5d95dde2012-04-19 04:04:28 -06002468 clk_enable(os->_clk);
Paul Walmsley63c85232009-09-03 20:14:03 +03002469 }
2470 }
2471
Paul Walmsley64813c32012-04-18 19:10:03 -06002472 return;
2473}
2474
2475/**
2476 * _setup_reset - reset an IP block during the setup process
2477 * @oh: struct omap_hwmod *
2478 *
2479 * Reset the IP block corresponding to the hwmod @oh during the setup
2480 * process. The IP block is first enabled so it can be successfully
2481 * reset. Returns 0 upon success or a negative error code upon
2482 * failure.
2483 */
Nathan Chancellorc10b26a2018-10-17 17:52:07 -07002484static int _setup_reset(struct omap_hwmod *oh)
Paul Walmsley64813c32012-04-18 19:10:03 -06002485{
Tony Lindgren7f0d0782019-03-21 11:00:21 -07002486 int r = 0;
Paul Walmsley64813c32012-04-18 19:10:03 -06002487
2488 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2489 return -EINVAL;
Paul Walmsley63c85232009-09-03 20:14:03 +03002490
Paul Walmsley5fb3d522012-10-29 22:11:50 -06002491 if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
2492 return -EPERM;
2493
Paul Walmsley747834a2012-04-18 19:10:04 -06002494 if (oh->rst_lines_cnt == 0) {
2495 r = _enable(oh);
2496 if (r) {
Joe Perches3d0cb732014-09-13 11:31:16 -07002497 pr_warn("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
2498 oh->name, oh->_state);
Paul Walmsley747834a2012-04-18 19:10:04 -06002499 return -EINVAL;
2500 }
Benoit Cousson9a23dfe2010-05-20 12:31:08 -06002501 }
Paul Walmsley63c85232009-09-03 20:14:03 +03002502
Rajendra Nayak28008522012-03-13 22:55:23 +05302503 if (!(oh->flags & HWMOD_INIT_NO_RESET))
Paul Walmsley64813c32012-04-18 19:10:03 -06002504 r = _reset(oh);
2505
2506 return r;
2507}
2508
2509/**
2510 * _setup_postsetup - transition to the appropriate state after _setup
2511 * @oh: struct omap_hwmod *
2512 *
2513 * Place an IP block represented by @oh into a "post-setup" state --
2514 * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
2515 * this function is called at the end of _setup().) The postsetup
2516 * state for an IP block can be changed by calling
2517 * omap_hwmod_enter_postsetup_state() early in the boot process,
2518 * before one of the omap_hwmod_setup*() functions are called for the
2519 * IP block.
2520 *
2521 * The IP block stays in this state until a PM runtime-based driver is
2522 * loaded for that IP block. A post-setup state of IDLE is
2523 * appropriate for almost all IP blocks with runtime PM-enabled
2524 * drivers, since those drivers are able to enable the IP block. A
2525 * post-setup state of ENABLED is appropriate for kernels with PM
2526 * runtime disabled. The DISABLED state is appropriate for unusual IP
2527 * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
2528 * included, since the WDTIMER starts running on reset and will reset
2529 * the MPU if left active.
2530 *
2531 * This post-setup mechanism is deprecated. Once all of the OMAP
2532 * drivers have been converted to use PM runtime, and all of the IP
2533 * block data and interconnect data is available to the hwmod code, it
2534 * should be possible to replace this mechanism with a "lazy reset"
2535 * arrangement. In a "lazy reset" setup, each IP block is enabled
2536 * when the driver first probes, then all remaining IP blocks without
2537 * drivers are either shut down or enabled after the drivers have
2538 * loaded. However, this cannot take place until the above
2539 * preconditions have been met, since otherwise the late reset code
2540 * has no way of knowing which IP blocks are in use by drivers, and
2541 * which ones are unused.
2542 *
2543 * No return value.
2544 */
Nathan Chancellorc10b26a2018-10-17 17:52:07 -07002545static void _setup_postsetup(struct omap_hwmod *oh)
Paul Walmsley64813c32012-04-18 19:10:03 -06002546{
2547 u8 postsetup_state;
2548
2549 if (oh->rst_lines_cnt > 0)
2550 return;
Benoit Cousson76e55892010-09-21 10:34:11 -06002551
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002552 postsetup_state = oh->_postsetup_state;
2553 if (postsetup_state == _HWMOD_STATE_UNKNOWN)
2554 postsetup_state = _HWMOD_STATE_ENABLED;
2555
2556 /*
2557 * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
2558 * it should be set by the core code as a runtime flag during startup
2559 */
Lokesh Vutla2e18f5a2016-03-07 01:41:21 -07002560 if ((oh->flags & (HWMOD_INIT_NO_IDLE | HWMOD_NO_IDLE)) &&
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002561 (postsetup_state == _HWMOD_STATE_IDLE)) {
2562 oh->_int_flags |= _HWMOD_SKIP_ENABLE;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002563 postsetup_state = _HWMOD_STATE_ENABLED;
Rajendra Nayakaacf0942011-12-16 05:50:12 -07002564 }
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002565
2566 if (postsetup_state == _HWMOD_STATE_IDLE)
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07002567 _idle(oh);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07002568 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2569 _shutdown(oh);
2570 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2571 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2572 oh->name, postsetup_state);
Paul Walmsley63c85232009-09-03 20:14:03 +03002573
Paul Walmsley64813c32012-04-18 19:10:03 -06002574 return;
2575}
2576
2577/**
2578 * _setup - prepare IP block hardware for use
2579 * @oh: struct omap_hwmod *
2580 * @n: (unused, pass NULL)
2581 *
2582 * Configure the IP block represented by @oh. This may include
2583 * enabling the IP block, resetting it, and placing it into a
2584 * post-setup state, depending on the type of IP block and applicable
2585 * flags. IP blocks are reset to prevent any previous configuration
2586 * by the bootloader or previous operating system from interfering
2587 * with power management or other parts of the system. The reset can
2588 * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
2589 * two phases for hwmod initialization. Code called here generally
2590 * affects the IP block hardware, or system integration hardware
2591 * associated with the IP block. Returns 0.
2592 */
Tony Lindgren8c879702018-02-22 14:04:56 -08002593static int _setup(struct omap_hwmod *oh, void *data)
Paul Walmsley64813c32012-04-18 19:10:03 -06002594{
2595 if (oh->_state != _HWMOD_STATE_INITIALIZED)
2596 return 0;
2597
Tomi Valkeinenf22d2542014-10-09 17:03:14 +03002598 if (oh->parent_hwmod) {
2599 int r;
2600
2601 r = _enable(oh->parent_hwmod);
2602 WARN(r, "hwmod: %s: setup: failed to enable parent hwmod %s\n",
2603 oh->name, oh->parent_hwmod->name);
2604 }
2605
Paul Walmsley64813c32012-04-18 19:10:03 -06002606 _setup_iclk_autoidle(oh);
2607
2608 if (!_setup_reset(oh))
2609 _setup_postsetup(oh);
2610
Tomi Valkeinenf22d2542014-10-09 17:03:14 +03002611 if (oh->parent_hwmod) {
2612 u8 postsetup_state;
2613
2614 postsetup_state = oh->parent_hwmod->_postsetup_state;
2615
2616 if (postsetup_state == _HWMOD_STATE_IDLE)
2617 _idle(oh->parent_hwmod);
2618 else if (postsetup_state == _HWMOD_STATE_DISABLED)
2619 _shutdown(oh->parent_hwmod);
2620 else if (postsetup_state != _HWMOD_STATE_ENABLED)
2621 WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
2622 oh->parent_hwmod->name, postsetup_state);
2623 }
2624
Paul Walmsley63c85232009-09-03 20:14:03 +03002625 return 0;
2626}
2627
Benoit Cousson0102b622010-12-21 21:31:27 -07002628/**
2629 * _register - register a struct omap_hwmod
2630 * @oh: struct omap_hwmod *
2631 *
2632 * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
2633 * already has been registered by the same name; -EINVAL if the
2634 * omap_hwmod is in the wrong state, if @oh is NULL, if the
2635 * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
2636 * name, or if the omap_hwmod's class is missing a name; or 0 upon
2637 * success.
2638 *
2639 * XXX The data should be copied into bootmem, so the original data
2640 * should be marked __initdata and freed after init. This would allow
2641 * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
2642 * that the copy process would be relatively complex due to the large number
2643 * of substructures.
2644 */
Tony Lindgrenb57250f2019-03-21 11:00:21 -07002645static int _register(struct omap_hwmod *oh)
Benoit Cousson0102b622010-12-21 21:31:27 -07002646{
Benoit Cousson0102b622010-12-21 21:31:27 -07002647 if (!oh || !oh->name || !oh->class || !oh->class->name ||
2648 (oh->_state != _HWMOD_STATE_UNKNOWN))
2649 return -EINVAL;
2650
Benoit Cousson0102b622010-12-21 21:31:27 -07002651 pr_debug("omap_hwmod: %s: registering\n", oh->name);
2652
Benoit Coussonce35b242010-12-21 21:31:28 -07002653 if (_lookup(oh->name))
2654 return -EEXIST;
Benoit Cousson0102b622010-12-21 21:31:27 -07002655
Benoit Cousson0102b622010-12-21 21:31:27 -07002656 list_add_tail(&oh->node, &omap_hwmod_list);
2657
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002658 INIT_LIST_HEAD(&oh->slave_ports);
Benoit Cousson0102b622010-12-21 21:31:27 -07002659 spin_lock_init(&oh->_lock);
Peter Ujfalusi69317952015-02-26 00:00:51 -07002660 lockdep_set_class(&oh->_lock, &oh->hwmod_key);
Benoit Cousson0102b622010-12-21 21:31:27 -07002661
2662 oh->_state = _HWMOD_STATE_REGISTERED;
2663
Paul Walmsley569edd702011-02-23 00:14:06 -07002664 /*
2665 * XXX Rather than doing a strcmp(), this should test a flag
2666 * set in the hwmod data, inserted by the autogenerator code.
2667 */
2668 if (!strcmp(oh->name, MPU_INITIATOR_NAME))
2669 mpu_oh = oh;
Benoit Cousson0102b622010-12-21 21:31:27 -07002670
Paul Walmsley569edd702011-02-23 00:14:06 -07002671 return 0;
Benoit Cousson0102b622010-12-21 21:31:27 -07002672}
Paul Walmsley63c85232009-09-03 20:14:03 +03002673
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002674/**
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002675 * _add_link - add an interconnect between two IP blocks
2676 * @oi: pointer to a struct omap_hwmod_ocp_if record
2677 *
Tony Lindgrena1e31232017-03-14 13:13:19 -07002678 * Add struct omap_hwmod_link records connecting the slave IP block
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002679 * specified in @oi->slave to @oi. This code is assumed to run before
2680 * preemption or SMP has been enabled, thus avoiding the need for
2681 * locking in this code. Changes to this assumption will require
2682 * additional locking. Returns 0.
2683 */
Tony Lindgrenb57250f2019-03-21 11:00:21 -07002684static int _add_link(struct omap_hwmod_ocp_if *oi)
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002685{
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002686 pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
2687 oi->slave->name);
2688
Tony Lindgrena1e31232017-03-14 13:13:19 -07002689 list_add(&oi->node, &oi->slave->slave_ports);
Paul Walmsley2221b5c2012-04-19 04:04:30 -06002690 oi->slave->slaves_cnt++;
2691
2692 return 0;
2693}
2694
2695/**
2696 * _register_link - register a struct omap_hwmod_ocp_if
2697 * @oi: struct omap_hwmod_ocp_if *
2698 *
2699 * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
2700 * has already been registered; -EINVAL if @oi is NULL or if the
2701 * record pointed to by @oi is missing required fields; or 0 upon
2702 * success.
2703 *
2704 * XXX The data should be copied into bootmem, so the original data
2705 * should be marked __initdata and freed after init. This would allow
2706 * unneeded omap_hwmods to be freed on multi-OMAP configurations.
2707 */
2708static int __init _register_link(struct omap_hwmod_ocp_if *oi)
2709{
2710 if (!oi || !oi->master || !oi->slave || !oi->user)
2711 return -EINVAL;
2712
2713 if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
2714 return -EEXIST;
2715
2716 pr_debug("omap_hwmod: registering link from %s to %s\n",
2717 oi->master->name, oi->slave->name);
2718
2719 /*
2720 * Register the connected hwmods, if they haven't been
2721 * registered already
2722 */
2723 if (oi->master->_state != _HWMOD_STATE_REGISTERED)
2724 _register(oi->master);
2725
2726 if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
2727 _register(oi->slave);
2728
2729 _add_link(oi);
2730
2731 oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
2732
2733 return 0;
2734}
2735
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002736/* Static functions intended only for use in soc_ops field function pointers */
2737
2738/**
Tero Kristo9002e9212014-10-27 08:39:23 -07002739 * _omap2xxx_3xxx_wait_target_ready - wait for a module to leave slave idle
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002740 * @oh: struct omap_hwmod *
2741 *
2742 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2743 * does not have an IDLEST bit or if the module successfully leaves
2744 * slave idle; otherwise, pass along the return value of the
2745 * appropriate *_cm*_wait_module_ready() function.
2746 */
Tero Kristo9002e9212014-10-27 08:39:23 -07002747static int _omap2xxx_3xxx_wait_target_ready(struct omap_hwmod *oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002748{
2749 if (!oh)
2750 return -EINVAL;
2751
2752 if (oh->flags & HWMOD_NO_IDLEST)
2753 return 0;
2754
2755 if (!_find_mpu_rt_port(oh))
2756 return 0;
2757
2758 /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
2759
Tero Kristo021b6ff2014-10-27 08:39:23 -07002760 return omap_cm_wait_module_ready(0, oh->prcm.omap2.module_offs,
2761 oh->prcm.omap2.idlest_reg_id,
2762 oh->prcm.omap2.idlest_idle_bit);
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002763}
2764
2765/**
2766 * _omap4_wait_target_ready - wait for a module to leave slave idle
2767 * @oh: struct omap_hwmod *
2768 *
2769 * Wait for a module @oh to leave slave idle. Returns 0 if the module
2770 * does not have an IDLEST bit or if the module successfully leaves
2771 * slave idle; otherwise, pass along the return value of the
2772 * appropriate *_cm*_wait_module_ready() function.
2773 */
2774static int _omap4_wait_target_ready(struct omap_hwmod *oh)
2775{
Paul Walmsley2b026d12012-09-23 17:28:18 -06002776 if (!oh)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002777 return -EINVAL;
2778
Paul Walmsley2b026d12012-09-23 17:28:18 -06002779 if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002780 return 0;
2781
2782 if (!_find_mpu_rt_port(oh))
2783 return 0;
2784
Tony Lindgren8823ddf2017-08-29 10:03:33 -07002785 if (_omap4_clkctrl_managed_by_clkfwk(oh))
2786 return 0;
2787
2788 if (!_omap4_has_clkctrl_clock(oh))
Dave Gerlach428929c2016-07-12 12:50:33 -05002789 return 0;
2790
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06002791 /* XXX check module SIDLEMODE, hardreset status */
2792
Tero Kristo021b6ff2014-10-27 08:39:23 -07002793 return omap_cm_wait_module_ready(oh->clkdm->prcm_partition,
2794 oh->clkdm->cm_inst,
2795 oh->prcm.omap4.clkctrl_offs, 0);
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002796}
2797
2798/**
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002799 * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2800 * @oh: struct omap_hwmod * to assert hardreset
2801 * @ohri: hardreset line data
2802 *
2803 * Call omap2_prm_assert_hardreset() with parameters extracted from
2804 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2805 * use as an soc_ops function pointer. Passes along the return value
2806 * from omap2_prm_assert_hardreset(). XXX This function is scheduled
2807 * for removal when the PRM code is moved into drivers/.
2808 */
2809static int _omap2_assert_hardreset(struct omap_hwmod *oh,
2810 struct omap_hwmod_rst_info *ohri)
2811{
Tero Kristoefd44dc2014-10-27 08:39:24 -07002812 return omap_prm_assert_hardreset(ohri->rst_shift, 0,
2813 oh->prcm.omap2.module_offs, 0);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002814}
2815
2816/**
2817 * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
2818 * @oh: struct omap_hwmod * to deassert hardreset
2819 * @ohri: hardreset line data
2820 *
2821 * Call omap2_prm_deassert_hardreset() with parameters extracted from
2822 * the hwmod @oh and the hardreset line data @ohri. Only intended for
2823 * use as an soc_ops function pointer. Passes along the return value
2824 * from omap2_prm_deassert_hardreset(). XXX This function is
2825 * scheduled for removal when the PRM code is moved into drivers/.
2826 */
2827static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
2828 struct omap_hwmod_rst_info *ohri)
2829{
Tero Kristo37fb59d2014-10-27 08:39:25 -07002830 return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift, 0,
2831 oh->prcm.omap2.module_offs, 0, 0);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002832}
2833
2834/**
2835 * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
2836 * @oh: struct omap_hwmod * to test hardreset
2837 * @ohri: hardreset line data
2838 *
2839 * Call omap2_prm_is_hardreset_asserted() with parameters extracted
2840 * from the hwmod @oh and the hardreset line data @ohri. Only
2841 * intended for use as an soc_ops function pointer. Passes along the
2842 * return value from omap2_prm_is_hardreset_asserted(). XXX This
2843 * function is scheduled for removal when the PRM code is moved into
2844 * drivers/.
2845 */
2846static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
2847 struct omap_hwmod_rst_info *ohri)
2848{
Tero Kristo1bc28b32014-10-27 08:39:25 -07002849 return omap_prm_is_hardreset_asserted(ohri->st_shift, 0,
2850 oh->prcm.omap2.module_offs, 0);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002851}
2852
2853/**
2854 * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2855 * @oh: struct omap_hwmod * to assert hardreset
2856 * @ohri: hardreset line data
2857 *
2858 * Call omap4_prminst_assert_hardreset() with parameters extracted
2859 * from the hwmod @oh and the hardreset line data @ohri. Only
2860 * intended for use as an soc_ops function pointer. Passes along the
2861 * return value from omap4_prminst_assert_hardreset(). XXX This
2862 * function is scheduled for removal when the PRM code is moved into
2863 * drivers/.
2864 */
2865static int _omap4_assert_hardreset(struct omap_hwmod *oh,
2866 struct omap_hwmod_rst_info *ohri)
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002867{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002868 if (!oh->clkdm)
2869 return -EINVAL;
2870
Tero Kristoefd44dc2014-10-27 08:39:24 -07002871 return omap_prm_assert_hardreset(ohri->rst_shift,
2872 oh->clkdm->pwrdm.ptr->prcm_partition,
2873 oh->clkdm->pwrdm.ptr->prcm_offs,
2874 oh->prcm.omap4.rstctrl_offs);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002875}
2876
2877/**
2878 * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
2879 * @oh: struct omap_hwmod * to deassert hardreset
2880 * @ohri: hardreset line data
2881 *
2882 * Call omap4_prminst_deassert_hardreset() with parameters extracted
2883 * from the hwmod @oh and the hardreset line data @ohri. Only
2884 * intended for use as an soc_ops function pointer. Passes along the
2885 * return value from omap4_prminst_deassert_hardreset(). XXX This
2886 * function is scheduled for removal when the PRM code is moved into
2887 * drivers/.
2888 */
2889static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
2890 struct omap_hwmod_rst_info *ohri)
2891{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002892 if (!oh->clkdm)
2893 return -EINVAL;
2894
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002895 if (ohri->st_shift)
2896 pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
2897 oh->name, ohri->name);
Tero Kristo4ebf5b22015-05-05 16:33:04 +03002898 return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->rst_shift,
Tero Kristo37fb59d2014-10-27 08:39:25 -07002899 oh->clkdm->pwrdm.ptr->prcm_partition,
2900 oh->clkdm->pwrdm.ptr->prcm_offs,
Tero Kristo4ebf5b22015-05-05 16:33:04 +03002901 oh->prcm.omap4.rstctrl_offs,
2902 oh->prcm.omap4.rstctrl_offs +
2903 OMAP4_RST_CTRL_ST_OFFSET);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002904}
2905
2906/**
2907 * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
2908 * @oh: struct omap_hwmod * to test hardreset
2909 * @ohri: hardreset line data
2910 *
2911 * Call omap4_prminst_is_hardreset_asserted() with parameters
2912 * extracted from the hwmod @oh and the hardreset line data @ohri.
2913 * Only intended for use as an soc_ops function pointer. Passes along
2914 * the return value from omap4_prminst_is_hardreset_asserted(). XXX
2915 * This function is scheduled for removal when the PRM code is moved
2916 * into drivers/.
2917 */
2918static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
2919 struct omap_hwmod_rst_info *ohri)
2920{
Paul Walmsley07b3a132012-06-20 20:11:36 -06002921 if (!oh->clkdm)
2922 return -EINVAL;
2923
Tero Kristo1bc28b32014-10-27 08:39:25 -07002924 return omap_prm_is_hardreset_asserted(ohri->rst_shift,
2925 oh->clkdm->pwrdm.ptr->
2926 prcm_partition,
2927 oh->clkdm->pwrdm.ptr->prcm_offs,
2928 oh->prcm.omap4.rstctrl_offs);
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06002929}
2930
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002931/**
Tero Kristo9fabc1a2016-07-04 14:11:48 +03002932 * _omap4_disable_direct_prcm - disable direct PRCM control for hwmod
2933 * @oh: struct omap_hwmod * to disable control for
2934 *
2935 * Disables direct PRCM clkctrl done by hwmod core. Instead, the hwmod
2936 * will be using its main_clk to enable/disable the module. Returns
2937 * 0 if successful.
2938 */
2939static int _omap4_disable_direct_prcm(struct omap_hwmod *oh)
2940{
2941 if (!oh)
2942 return -EINVAL;
2943
Tony Lindgren8823ddf2017-08-29 10:03:33 -07002944 oh->prcm.omap4.flags |= HWMOD_OMAP4_CLKFWK_CLKCTR_CLOCK;
Tero Kristo9fabc1a2016-07-04 14:11:48 +03002945
2946 return 0;
2947}
2948
2949/**
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002950 * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
2951 * @oh: struct omap_hwmod * to deassert hardreset
2952 * @ohri: hardreset line data
2953 *
2954 * Call am33xx_prminst_deassert_hardreset() with parameters extracted
2955 * from the hwmod @oh and the hardreset line data @ohri. Only
2956 * intended for use as an soc_ops function pointer. Passes along the
2957 * return value from am33xx_prminst_deassert_hardreset(). XXX This
2958 * function is scheduled for removal when the PRM code is moved into
2959 * drivers/.
2960 */
2961static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
2962 struct omap_hwmod_rst_info *ohri)
2963{
Tero Kristoa5bf00c2015-05-05 16:33:05 +03002964 return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift,
2965 oh->clkdm->pwrdm.ptr->prcm_partition,
Tero Kristo37fb59d2014-10-27 08:39:25 -07002966 oh->clkdm->pwrdm.ptr->prcm_offs,
2967 oh->prcm.omap4.rstctrl_offs,
2968 oh->prcm.omap4.rstst_offs);
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06002969}
2970
Paul Walmsley63c85232009-09-03 20:14:03 +03002971/* Public functions */
2972
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002973u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03002974{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002975 if (oh->flags & HWMOD_16BIT_REG)
Victor Kamenskyedfaf052014-04-15 20:37:46 +03002976 return readw_relaxed(oh->_mpu_rt_va + reg_offs);
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002977 else
Victor Kamenskyedfaf052014-04-15 20:37:46 +03002978 return readl_relaxed(oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03002979}
2980
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002981void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
Paul Walmsley63c85232009-09-03 20:14:03 +03002982{
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002983 if (oh->flags & HWMOD_16BIT_REG)
Victor Kamenskyedfaf052014-04-15 20:37:46 +03002984 writew_relaxed(v, oh->_mpu_rt_va + reg_offs);
Rajendra Nayakcc7a1d22010-10-08 10:23:22 -07002985 else
Victor Kamenskyedfaf052014-04-15 20:37:46 +03002986 writel_relaxed(v, oh->_mpu_rt_va + reg_offs);
Paul Walmsley63c85232009-09-03 20:14:03 +03002987}
2988
Paul Walmsley887adea2010-07-26 16:34:33 -06002989/**
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06002990 * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
2991 * @oh: struct omap_hwmod *
2992 *
2993 * This is a public function exposed to drivers. Some drivers may need to do
2994 * some settings before and after resetting the device. Those drivers after
2995 * doing the necessary settings could use this function to start a reset by
2996 * setting the SYSCONFIG.SOFTRESET bit.
2997 */
2998int omap_hwmod_softreset(struct omap_hwmod *oh)
2999{
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003000 u32 v;
3001 int ret;
3002
3003 if (!oh || !(oh->_sysc_cache))
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003004 return -EINVAL;
3005
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003006 v = oh->_sysc_cache;
3007 ret = _set_softreset(oh, &v);
3008 if (ret)
3009 goto error;
3010 _write_sysconfig(v, oh);
3011
Roger Quadros313a76e2013-12-08 18:39:02 -07003012 ret = _clear_softreset(oh, &v);
3013 if (ret)
3014 goto error;
3015 _write_sysconfig(v, oh);
3016
Paul Walmsley3c55c1b2012-04-13 05:08:43 -06003017error:
3018 return ret;
Avinash.H.M6d3c55f2011-07-10 05:27:16 -06003019}
3020
3021/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003022 * omap_hwmod_lookup - look up a registered omap_hwmod by name
3023 * @name: name of the omap_hwmod to look up
3024 *
3025 * Given a @name of an omap_hwmod, return a pointer to the registered
3026 * struct omap_hwmod *, or NULL upon error.
3027 */
3028struct omap_hwmod *omap_hwmod_lookup(const char *name)
3029{
3030 struct omap_hwmod *oh;
3031
3032 if (!name)
3033 return NULL;
3034
Paul Walmsley63c85232009-09-03 20:14:03 +03003035 oh = _lookup(name);
Paul Walmsley63c85232009-09-03 20:14:03 +03003036
3037 return oh;
3038}
3039
3040/**
3041 * omap_hwmod_for_each - call function for each registered omap_hwmod
3042 * @fn: pointer to a callback function
Paul Walmsley97d60162010-07-26 16:34:30 -06003043 * @data: void * data to pass to callback function
Paul Walmsley63c85232009-09-03 20:14:03 +03003044 *
3045 * Call @fn for each registered omap_hwmod, passing @data to each
3046 * function. @fn must return 0 for success or any other value for
3047 * failure. If @fn returns non-zero, the iteration across omap_hwmods
3048 * will stop and the non-zero return value will be passed to the
3049 * caller of omap_hwmod_for_each(). @fn is called with
3050 * omap_hwmod_for_each() held.
3051 */
Paul Walmsley97d60162010-07-26 16:34:30 -06003052int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
3053 void *data)
Paul Walmsley63c85232009-09-03 20:14:03 +03003054{
3055 struct omap_hwmod *temp_oh;
Govindraj.R30ebad92011-06-01 11:28:56 +05303056 int ret = 0;
Paul Walmsley63c85232009-09-03 20:14:03 +03003057
3058 if (!fn)
3059 return -EINVAL;
3060
Paul Walmsley63c85232009-09-03 20:14:03 +03003061 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
Paul Walmsley97d60162010-07-26 16:34:30 -06003062 ret = (*fn)(temp_oh, data);
Paul Walmsley63c85232009-09-03 20:14:03 +03003063 if (ret)
3064 break;
3065 }
Paul Walmsley63c85232009-09-03 20:14:03 +03003066
3067 return ret;
3068}
3069
Paul Walmsley63c85232009-09-03 20:14:03 +03003070/**
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003071 * omap_hwmod_register_links - register an array of hwmod links
3072 * @ois: pointer to an array of omap_hwmod_ocp_if to register
3073 *
3074 * Intended to be called early in boot before the clock framework is
3075 * initialized. If @ois is not null, will register all omap_hwmods
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003076 * listed in @ois that are valid for this chip. Returns -EINVAL if
3077 * omap_hwmod_init() hasn't been called before calling this function,
3078 * -ENOMEM if the link memory area can't be allocated, or 0 upon
3079 * success.
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003080 */
3081int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
3082{
3083 int r, i;
3084
Kevin Hilman9ebfd282012-06-18 12:12:23 -06003085 if (!inited)
3086 return -EINVAL;
3087
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003088 if (!ois)
3089 return 0;
3090
Rajendra Nayakf7f7a292014-08-27 19:38:23 -06003091 if (ois[0] == NULL) /* Empty list */
3092 return 0;
3093
Paul Walmsley2221b5c2012-04-19 04:04:30 -06003094 i = 0;
3095 do {
3096 r = _register_link(ois[i]);
3097 WARN(r && r != -EEXIST,
3098 "omap_hwmod: _register_link(%s -> %s) returned %d\n",
3099 ois[i]->master->name, ois[i]->slave->name, r);
3100 } while (ois[++i]);
3101
3102 return 0;
3103}
3104
3105/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003106 * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
3107 * @oh: pointer to the hwmod currently being set up (usually not the MPU)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003108 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003109 * If the hwmod data corresponding to the MPU subsystem IP block
3110 * hasn't been initialized and set up yet, do so now. This must be
3111 * done first since sleep dependencies may be added from other hwmods
3112 * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
3113 * return value.
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003114 */
Paul Walmsley381d0332012-04-19 00:58:22 -06003115static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
Tony Lindgrene7c7d762011-02-14 15:40:21 -08003116{
Paul Walmsley381d0332012-04-19 00:58:22 -06003117 if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
3118 pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
3119 __func__, MPU_INITIATOR_NAME);
3120 else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
3121 omap_hwmod_setup_one(MPU_INITIATOR_NAME);
Paul Walmsley63c85232009-09-03 20:14:03 +03003122}
3123
3124/**
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003125 * omap_hwmod_setup_one - set up a single hwmod
3126 * @oh_name: const char * name of the already-registered hwmod to set up
3127 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003128 * Initialize and set up a single hwmod. Intended to be used for a
3129 * small number of early devices, such as the timer IP blocks used for
3130 * the scheduler clock. Must be called after omap2_clk_init().
3131 * Resolves the struct clk names to struct clk pointers for each
3132 * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
3133 * -EINVAL upon error or 0 upon success.
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003134 */
3135int __init omap_hwmod_setup_one(const char *oh_name)
3136{
3137 struct omap_hwmod *oh;
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003138
3139 pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
3140
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003141 oh = _lookup(oh_name);
3142 if (!oh) {
3143 WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
3144 return -EINVAL;
3145 }
3146
Paul Walmsley381d0332012-04-19 00:58:22 -06003147 _ensure_mpu_hwmod_is_setup(oh);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003148
Paul Walmsley381d0332012-04-19 00:58:22 -06003149 _init(oh, NULL);
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003150 _setup(oh, NULL);
3151
3152 return 0;
3153}
3154
Tony Lindgrena8844302018-02-23 08:59:23 -08003155static void omap_hwmod_check_one(struct device *dev,
3156 const char *name, s8 v1, u8 v2)
3157{
3158 if (v1 < 0)
3159 return;
3160
3161 if (v1 != v2)
3162 dev_warn(dev, "%s %d != %d\n", name, v1, v2);
3163}
3164
3165/**
3166 * omap_hwmod_check_sysc - check sysc against platform sysc
3167 * @dev: struct device
3168 * @data: module data
3169 * @sysc_fields: new sysc configuration
3170 */
3171static int omap_hwmod_check_sysc(struct device *dev,
3172 const struct ti_sysc_module_data *data,
3173 struct sysc_regbits *sysc_fields)
3174{
3175 const struct sysc_regbits *regbits = data->cap->regbits;
3176
3177 omap_hwmod_check_one(dev, "dmadisable_shift",
3178 regbits->dmadisable_shift,
3179 sysc_fields->dmadisable_shift);
3180 omap_hwmod_check_one(dev, "midle_shift",
3181 regbits->midle_shift,
3182 sysc_fields->midle_shift);
3183 omap_hwmod_check_one(dev, "sidle_shift",
3184 regbits->sidle_shift,
3185 sysc_fields->sidle_shift);
3186 omap_hwmod_check_one(dev, "clkact_shift",
3187 regbits->clkact_shift,
3188 sysc_fields->clkact_shift);
3189 omap_hwmod_check_one(dev, "enwkup_shift",
3190 regbits->enwkup_shift,
3191 sysc_fields->enwkup_shift);
3192 omap_hwmod_check_one(dev, "srst_shift",
3193 regbits->srst_shift,
3194 sysc_fields->srst_shift);
3195 omap_hwmod_check_one(dev, "autoidle_shift",
3196 regbits->autoidle_shift,
3197 sysc_fields->autoidle_shift);
3198
3199 return 0;
3200}
3201
Paul Walmsleya2debdb2011-02-23 00:14:07 -07003202/**
Tony Lindgren8c879702018-02-22 14:04:56 -08003203 * omap_hwmod_init_regbits - init sysconfig specific register bits
3204 * @dev: struct device
3205 * @data: module data
3206 * @sysc_fields: new sysc configuration
3207 */
3208static int omap_hwmod_init_regbits(struct device *dev,
3209 const struct ti_sysc_module_data *data,
3210 struct sysc_regbits **sysc_fields)
3211{
3212 *sysc_fields = NULL;
3213
3214 switch (data->cap->type) {
3215 case TI_SYSC_OMAP2:
3216 case TI_SYSC_OMAP2_TIMER:
3217 *sysc_fields = &omap_hwmod_sysc_type1;
3218 break;
3219 case TI_SYSC_OMAP3_SHAM:
3220 *sysc_fields = &omap3_sham_sysc_fields;
3221 break;
3222 case TI_SYSC_OMAP3_AES:
3223 *sysc_fields = &omap3xxx_aes_sysc_fields;
3224 break;
3225 case TI_SYSC_OMAP4:
3226 case TI_SYSC_OMAP4_TIMER:
3227 *sysc_fields = &omap_hwmod_sysc_type2;
3228 break;
3229 case TI_SYSC_OMAP4_SIMPLE:
3230 *sysc_fields = &omap_hwmod_sysc_type3;
3231 break;
3232 case TI_SYSC_OMAP34XX_SR:
3233 *sysc_fields = &omap34xx_sr_sysc_fields;
3234 break;
3235 case TI_SYSC_OMAP36XX_SR:
3236 *sysc_fields = &omap36xx_sr_sysc_fields;
3237 break;
3238 case TI_SYSC_OMAP4_SR:
3239 *sysc_fields = &omap36xx_sr_sysc_fields;
3240 break;
3241 case TI_SYSC_OMAP4_MCASP:
3242 *sysc_fields = &omap_hwmod_sysc_type_mcasp;
3243 break;
3244 case TI_SYSC_OMAP4_USB_HOST_FS:
3245 *sysc_fields = &omap_hwmod_sysc_type_usb_host_fs;
3246 break;
3247 default:
3248 return -EINVAL;
3249 }
3250
Tony Lindgrena8844302018-02-23 08:59:23 -08003251 return omap_hwmod_check_sysc(dev, data, *sysc_fields);
Tony Lindgren8c879702018-02-22 14:04:56 -08003252}
3253
3254/**
3255 * omap_hwmod_init_reg_offs - initialize sysconfig register offsets
3256 * @dev: struct device
3257 * @data: module data
3258 * @rev_offs: revision register offset
3259 * @sysc_offs: sysc register offset
3260 * @syss_offs: syss register offset
3261 */
Tony Lindgren798bd172019-03-21 11:00:21 -07003262static int omap_hwmod_init_reg_offs(struct device *dev,
3263 const struct ti_sysc_module_data *data,
3264 s32 *rev_offs, s32 *sysc_offs,
3265 s32 *syss_offs)
Tony Lindgren8c879702018-02-22 14:04:56 -08003266{
Tony Lindgren103fd8e2018-04-16 10:21:15 -07003267 *rev_offs = -ENODEV;
Tony Lindgren8c879702018-02-22 14:04:56 -08003268 *sysc_offs = 0;
3269 *syss_offs = 0;
3270
Tony Lindgren103fd8e2018-04-16 10:21:15 -07003271 if (data->offsets[SYSC_REVISION] >= 0)
Tony Lindgren8c879702018-02-22 14:04:56 -08003272 *rev_offs = data->offsets[SYSC_REVISION];
3273
Tony Lindgren103fd8e2018-04-16 10:21:15 -07003274 if (data->offsets[SYSC_SYSCONFIG] >= 0)
Tony Lindgren8c879702018-02-22 14:04:56 -08003275 *sysc_offs = data->offsets[SYSC_SYSCONFIG];
3276
Tony Lindgren103fd8e2018-04-16 10:21:15 -07003277 if (data->offsets[SYSC_SYSSTATUS] >= 0)
Tony Lindgren8c879702018-02-22 14:04:56 -08003278 *syss_offs = data->offsets[SYSC_SYSSTATUS];
3279
3280 return 0;
3281}
3282
3283/**
3284 * omap_hwmod_init_sysc_flags - initialize sysconfig features
3285 * @dev: struct device
3286 * @data: module data
3287 * @sysc_flags: module configuration
3288 */
Tony Lindgren798bd172019-03-21 11:00:21 -07003289static int omap_hwmod_init_sysc_flags(struct device *dev,
3290 const struct ti_sysc_module_data *data,
3291 u32 *sysc_flags)
Tony Lindgren8c879702018-02-22 14:04:56 -08003292{
3293 *sysc_flags = 0;
3294
3295 switch (data->cap->type) {
3296 case TI_SYSC_OMAP2:
3297 case TI_SYSC_OMAP2_TIMER:
3298 /* See SYSC_OMAP2_* in include/dt-bindings/bus/ti-sysc.h */
3299 if (data->cfg->sysc_val & SYSC_OMAP2_CLOCKACTIVITY)
3300 *sysc_flags |= SYSC_HAS_CLOCKACTIVITY;
3301 if (data->cfg->sysc_val & SYSC_OMAP2_EMUFREE)
3302 *sysc_flags |= SYSC_HAS_EMUFREE;
3303 if (data->cfg->sysc_val & SYSC_OMAP2_ENAWAKEUP)
3304 *sysc_flags |= SYSC_HAS_ENAWAKEUP;
3305 if (data->cfg->sysc_val & SYSC_OMAP2_SOFTRESET)
3306 *sysc_flags |= SYSC_HAS_SOFTRESET;
3307 if (data->cfg->sysc_val & SYSC_OMAP2_AUTOIDLE)
3308 *sysc_flags |= SYSC_HAS_AUTOIDLE;
3309 break;
3310 case TI_SYSC_OMAP4:
3311 case TI_SYSC_OMAP4_TIMER:
3312 /* See SYSC_OMAP4_* in include/dt-bindings/bus/ti-sysc.h */
3313 if (data->cfg->sysc_val & SYSC_OMAP4_DMADISABLE)
3314 *sysc_flags |= SYSC_HAS_DMADISABLE;
3315 if (data->cfg->sysc_val & SYSC_OMAP4_FREEEMU)
3316 *sysc_flags |= SYSC_HAS_EMUFREE;
3317 if (data->cfg->sysc_val & SYSC_OMAP4_SOFTRESET)
3318 *sysc_flags |= SYSC_HAS_SOFTRESET;
3319 break;
3320 case TI_SYSC_OMAP34XX_SR:
3321 case TI_SYSC_OMAP36XX_SR:
3322 /* See SYSC_OMAP3_SR_* in include/dt-bindings/bus/ti-sysc.h */
3323 if (data->cfg->sysc_val & SYSC_OMAP3_SR_ENAWAKEUP)
3324 *sysc_flags |= SYSC_HAS_ENAWAKEUP;
3325 break;
3326 default:
3327 if (data->cap->regbits->emufree_shift >= 0)
3328 *sysc_flags |= SYSC_HAS_EMUFREE;
3329 if (data->cap->regbits->enwkup_shift >= 0)
3330 *sysc_flags |= SYSC_HAS_ENAWAKEUP;
3331 if (data->cap->regbits->srst_shift >= 0)
3332 *sysc_flags |= SYSC_HAS_SOFTRESET;
3333 if (data->cap->regbits->autoidle_shift >= 0)
3334 *sysc_flags |= SYSC_HAS_AUTOIDLE;
3335 break;
3336 }
3337
3338 if (data->cap->regbits->midle_shift >= 0 &&
3339 data->cfg->midlemodes)
3340 *sysc_flags |= SYSC_HAS_MIDLEMODE;
3341
3342 if (data->cap->regbits->sidle_shift >= 0 &&
3343 data->cfg->sidlemodes)
3344 *sysc_flags |= SYSC_HAS_SIDLEMODE;
3345
3346 if (data->cfg->quirks & SYSC_QUIRK_UNCACHED)
3347 *sysc_flags |= SYSC_NO_CACHE;
3348 if (data->cfg->quirks & SYSC_QUIRK_RESET_STATUS)
3349 *sysc_flags |= SYSC_HAS_RESET_STATUS;
3350
3351 if (data->cfg->syss_mask & 1)
3352 *sysc_flags |= SYSS_HAS_RESET_STATUS;
3353
3354 return 0;
3355}
3356
3357/**
3358 * omap_hwmod_init_idlemodes - initialize module idle modes
3359 * @dev: struct device
3360 * @data: module data
3361 * @idlemodes: module supported idle modes
3362 */
Tony Lindgren798bd172019-03-21 11:00:21 -07003363static int omap_hwmod_init_idlemodes(struct device *dev,
3364 const struct ti_sysc_module_data *data,
3365 u32 *idlemodes)
Tony Lindgren8c879702018-02-22 14:04:56 -08003366{
3367 *idlemodes = 0;
3368
3369 if (data->cfg->midlemodes & BIT(SYSC_IDLE_FORCE))
3370 *idlemodes |= MSTANDBY_FORCE;
3371 if (data->cfg->midlemodes & BIT(SYSC_IDLE_NO))
3372 *idlemodes |= MSTANDBY_NO;
3373 if (data->cfg->midlemodes & BIT(SYSC_IDLE_SMART))
3374 *idlemodes |= MSTANDBY_SMART;
3375 if (data->cfg->midlemodes & BIT(SYSC_IDLE_SMART_WKUP))
3376 *idlemodes |= MSTANDBY_SMART_WKUP;
3377
3378 if (data->cfg->sidlemodes & BIT(SYSC_IDLE_FORCE))
3379 *idlemodes |= SIDLE_FORCE;
3380 if (data->cfg->sidlemodes & BIT(SYSC_IDLE_NO))
3381 *idlemodes |= SIDLE_NO;
3382 if (data->cfg->sidlemodes & BIT(SYSC_IDLE_SMART))
3383 *idlemodes |= SIDLE_SMART;
3384 if (data->cfg->sidlemodes & BIT(SYSC_IDLE_SMART_WKUP))
3385 *idlemodes |= SIDLE_SMART_WKUP;
3386
3387 return 0;
3388}
3389
3390/**
Tony Lindgrena8844302018-02-23 08:59:23 -08003391 * omap_hwmod_check_module - check new module against platform data
3392 * @dev: struct device
3393 * @oh: module
3394 * @data: new module data
3395 * @sysc_fields: sysc register bits
3396 * @rev_offs: revision register offset
3397 * @sysc_offs: sysconfig register offset
3398 * @syss_offs: sysstatus register offset
3399 * @sysc_flags: sysc specific flags
3400 * @idlemodes: sysc supported idlemodes
3401 */
3402static int omap_hwmod_check_module(struct device *dev,
3403 struct omap_hwmod *oh,
3404 const struct ti_sysc_module_data *data,
3405 struct sysc_regbits *sysc_fields,
Tony Lindgren103fd8e2018-04-16 10:21:15 -07003406 s32 rev_offs, s32 sysc_offs,
3407 s32 syss_offs, u32 sysc_flags,
Tony Lindgrena8844302018-02-23 08:59:23 -08003408 u32 idlemodes)
3409{
3410 if (!oh->class->sysc)
3411 return -ENODEV;
3412
3413 if (sysc_fields != oh->class->sysc->sysc_fields)
3414 dev_warn(dev, "sysc_fields %p != %p\n", sysc_fields,
3415 oh->class->sysc->sysc_fields);
3416
3417 if (rev_offs != oh->class->sysc->rev_offs)
3418 dev_warn(dev, "rev_offs %08x != %08x\n", rev_offs,
3419 oh->class->sysc->rev_offs);
3420 if (sysc_offs != oh->class->sysc->sysc_offs)
3421 dev_warn(dev, "sysc_offs %08x != %08x\n", sysc_offs,
3422 oh->class->sysc->sysc_offs);
3423 if (syss_offs != oh->class->sysc->syss_offs)
3424 dev_warn(dev, "syss_offs %08x != %08x\n", syss_offs,
3425 oh->class->sysc->syss_offs);
3426
3427 if (sysc_flags != oh->class->sysc->sysc_flags)
3428 dev_warn(dev, "sysc_flags %08x != %08x\n", sysc_flags,
3429 oh->class->sysc->sysc_flags);
3430
3431 if (idlemodes != oh->class->sysc->idlemodes)
3432 dev_warn(dev, "idlemodes %08x != %08x\n", idlemodes,
3433 oh->class->sysc->idlemodes);
3434
3435 if (data->cfg->srst_udelay != oh->class->sysc->srst_udelay)
3436 dev_warn(dev, "srst_udelay %i != %i\n",
3437 data->cfg->srst_udelay,
3438 oh->class->sysc->srst_udelay);
3439
3440 return 0;
3441}
3442
3443/**
Tony Lindgren8c879702018-02-22 14:04:56 -08003444 * omap_hwmod_allocate_module - allocate new module
3445 * @dev: struct device
3446 * @oh: module
3447 * @sysc_fields: sysc register bits
3448 * @rev_offs: revision register offset
3449 * @sysc_offs: sysconfig register offset
3450 * @syss_offs: sysstatus register offset
3451 * @sysc_flags: sysc specific flags
3452 * @idlemodes: sysc supported idlemodes
3453 *
3454 * Note that the allocations here cannot use devm as ti-sysc can rebind.
3455 */
Tony Lindgren798bd172019-03-21 11:00:21 -07003456static int omap_hwmod_allocate_module(struct device *dev, struct omap_hwmod *oh,
3457 const struct ti_sysc_module_data *data,
3458 struct sysc_regbits *sysc_fields,
3459 s32 rev_offs, s32 sysc_offs,
3460 s32 syss_offs, u32 sysc_flags,
3461 u32 idlemodes)
Tony Lindgren8c879702018-02-22 14:04:56 -08003462{
3463 struct omap_hwmod_class_sysconfig *sysc;
Tony Lindgren513a4ab2019-03-21 11:00:21 -07003464 struct omap_hwmod_class *class = NULL;
Tony Lindgrenb57250f2019-03-21 11:00:21 -07003465 struct omap_hwmod_ocp_if *oi = NULL;
3466 struct clockdomain *clkdm = NULL;
3467 struct clk *clk = NULL;
Tony Lindgren8c879702018-02-22 14:04:56 -08003468 void __iomem *regs = NULL;
3469 unsigned long flags;
3470
3471 sysc = kzalloc(sizeof(*sysc), GFP_KERNEL);
3472 if (!sysc)
3473 return -ENOMEM;
3474
3475 sysc->sysc_fields = sysc_fields;
3476 sysc->rev_offs = rev_offs;
3477 sysc->sysc_offs = sysc_offs;
3478 sysc->syss_offs = syss_offs;
3479 sysc->sysc_flags = sysc_flags;
3480 sysc->idlemodes = idlemodes;
3481 sysc->srst_udelay = data->cfg->srst_udelay;
3482
3483 if (!oh->_mpu_rt_va) {
3484 regs = ioremap(data->module_pa,
3485 data->module_size);
3486 if (!regs)
3487 return -ENOMEM;
3488 }
3489
3490 /*
Tony Lindgren513a4ab2019-03-21 11:00:21 -07003491 * We may need a new oh->class as the other devices in the same class
Tony Lindgren8c879702018-02-22 14:04:56 -08003492 * may not yet have ioremapped their registers.
3493 */
Tony Lindgren513a4ab2019-03-21 11:00:21 -07003494 if (oh->class->name && strcmp(oh->class->name, data->name)) {
3495 class = kmemdup(oh->class, sizeof(*oh->class), GFP_KERNEL);
3496 if (!class)
3497 return -ENOMEM;
3498 }
Tony Lindgren8c879702018-02-22 14:04:56 -08003499
Tony Lindgrenb57250f2019-03-21 11:00:21 -07003500 if (list_empty(&oh->slave_ports)) {
3501 oi = kcalloc(1, sizeof(*oi), GFP_KERNEL);
3502 if (!oi)
3503 return -ENOMEM;
3504
3505 /*
3506 * Note that we assume interconnect interface clocks will be
3507 * managed by the interconnect driver for OCPIF_SWSUP_IDLE case
3508 * on omap24xx and omap3.
3509 */
3510 oi->slave = oh;
3511 oi->user = OCP_USER_MPU | OCP_USER_SDMA;
3512 }
3513
3514 if (!oh->_clk) {
3515 struct clk_hw_omap *hwclk;
3516
3517 clk = of_clk_get_by_name(dev->of_node, "fck");
3518 if (!IS_ERR(clk))
3519 clk_prepare(clk);
3520 else
3521 clk = NULL;
3522
3523 /*
3524 * Populate clockdomain based on dts clock. It is needed for
3525 * clkdm_deny_idle() and clkdm_allow_idle() until we have have
3526 * interconnect driver and reset driver capable of blocking
3527 * clockdomain idle during reset, enable and idle.
3528 */
3529 if (clk) {
3530 hwclk = to_clk_hw_omap(__clk_get_hw(clk));
3531 if (hwclk && hwclk->clkdm_name)
3532 clkdm = clkdm_lookup(hwclk->clkdm_name);
3533 }
3534
3535 /*
3536 * Note that we assume interconnect driver manages the clocks
3537 * and do not need to populate oh->_clk for dynamically
3538 * allocated modules.
3539 */
3540 clk_unprepare(clk);
3541 clk_put(clk);
3542 }
3543
Tony Lindgren8c879702018-02-22 14:04:56 -08003544 spin_lock_irqsave(&oh->_lock, flags);
3545 if (regs)
3546 oh->_mpu_rt_va = regs;
Tony Lindgren513a4ab2019-03-21 11:00:21 -07003547 if (class)
3548 oh->class = class;
3549 oh->class->sysc = sysc;
Tony Lindgrenb57250f2019-03-21 11:00:21 -07003550 if (oi)
3551 _add_link(oi);
3552 if (clkdm)
3553 oh->clkdm = clkdm;
Tony Lindgren8c879702018-02-22 14:04:56 -08003554 oh->_state = _HWMOD_STATE_INITIALIZED;
Tony Lindgrenb57250f2019-03-21 11:00:21 -07003555 oh->_postsetup_state = _HWMOD_STATE_DEFAULT;
Tony Lindgren8c879702018-02-22 14:04:56 -08003556 _setup(oh, NULL);
3557 spin_unlock_irqrestore(&oh->_lock, flags);
3558
3559 return 0;
3560}
3561
Tony Lindgren8b309192019-03-21 11:00:21 -07003562static const struct omap_hwmod_reset omap24xx_reset_quirks[] = {
3563 { .match = "msdi", .len = 4, .reset = omap_msdi_reset, },
3564};
3565
3566static const struct omap_hwmod_reset dra7_reset_quirks[] = {
3567 { .match = "pcie", .len = 4, .reset = dra7xx_pciess_reset, },
3568};
3569
3570static const struct omap_hwmod_reset omap_reset_quirks[] = {
3571 { .match = "dss", .len = 3, .reset = omap_dss_reset, },
3572 { .match = "hdq1w", .len = 5, .reset = omap_hdq1w_reset, },
3573 { .match = "i2c", .len = 3, .reset = omap_i2c_reset, },
3574 { .match = "wd_timer", .len = 8, .reset = omap2_wd_timer_reset, },
3575};
3576
3577static void
3578omap_hwmod_init_reset_quirk(struct device *dev, struct omap_hwmod *oh,
3579 const struct ti_sysc_module_data *data,
3580 const struct omap_hwmod_reset *quirks,
3581 int quirks_sz)
3582{
3583 const struct omap_hwmod_reset *quirk;
3584 int i;
3585
3586 for (i = 0; i < quirks_sz; i++) {
3587 quirk = &quirks[i];
3588 if (!strncmp(data->name, quirk->match, quirk->len)) {
3589 oh->class->reset = quirk->reset;
3590
3591 return;
3592 }
3593 }
3594}
3595
3596static void
3597omap_hwmod_init_reset_quirks(struct device *dev, struct omap_hwmod *oh,
3598 const struct ti_sysc_module_data *data)
3599{
3600 if (soc_is_omap24xx())
3601 omap_hwmod_init_reset_quirk(dev, oh, data,
3602 omap24xx_reset_quirks,
3603 ARRAY_SIZE(omap24xx_reset_quirks));
3604
3605 if (soc_is_dra7xx())
3606 omap_hwmod_init_reset_quirk(dev, oh, data, dra7_reset_quirks,
3607 ARRAY_SIZE(dra7_reset_quirks));
3608
3609 omap_hwmod_init_reset_quirk(dev, oh, data, omap_reset_quirks,
3610 ARRAY_SIZE(omap_reset_quirks));
3611}
3612
Tony Lindgren8c879702018-02-22 14:04:56 -08003613/**
3614 * omap_hwmod_init_module - initialize new module
3615 * @dev: struct device
3616 * @data: module data
3617 * @cookie: cookie for the caller to use for later calls
3618 */
3619int omap_hwmod_init_module(struct device *dev,
3620 const struct ti_sysc_module_data *data,
3621 struct ti_sysc_cookie *cookie)
3622{
3623 struct omap_hwmod *oh;
3624 struct sysc_regbits *sysc_fields;
Tony Lindgren103fd8e2018-04-16 10:21:15 -07003625 s32 rev_offs, sysc_offs, syss_offs;
3626 u32 sysc_flags, idlemodes;
Tony Lindgren8c879702018-02-22 14:04:56 -08003627 int error;
3628
3629 if (!dev || !data)
3630 return -EINVAL;
3631
3632 oh = _lookup(data->name);
Tony Lindgrenb57250f2019-03-21 11:00:21 -07003633 if (!oh) {
3634 oh = kzalloc(sizeof(*oh), GFP_KERNEL);
3635 if (!oh)
3636 return -ENOMEM;
3637
3638 oh->name = data->name;
3639 oh->_state = _HWMOD_STATE_UNKNOWN;
3640 lockdep_register_key(&oh->hwmod_key);
3641
3642 /* Unused, can be handled by PRM driver handling resets */
3643 oh->prcm.omap4.flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT;
3644
3645 oh->class = kzalloc(sizeof(*oh->class), GFP_KERNEL);
3646 if (!oh->class) {
3647 kfree(oh);
3648 return -ENOMEM;
3649 }
3650
Tony Lindgren8b309192019-03-21 11:00:21 -07003651 omap_hwmod_init_reset_quirks(dev, oh, data);
3652
Tony Lindgrenb57250f2019-03-21 11:00:21 -07003653 oh->class->name = data->name;
3654 mutex_lock(&list_lock);
3655 error = _register(oh);
3656 mutex_unlock(&list_lock);
3657 }
Tony Lindgren8c879702018-02-22 14:04:56 -08003658
3659 cookie->data = oh;
3660
3661 error = omap_hwmod_init_regbits(dev, data, &sysc_fields);
3662 if (error)
3663 return error;
3664
3665 error = omap_hwmod_init_reg_offs(dev, data, &rev_offs,
3666 &sysc_offs, &syss_offs);
3667 if (error)
3668 return error;
3669
3670 error = omap_hwmod_init_sysc_flags(dev, data, &sysc_flags);
3671 if (error)
3672 return error;
3673
3674 error = omap_hwmod_init_idlemodes(dev, data, &idlemodes);
3675 if (error)
3676 return error;
3677
Tony Lindgren386cb762019-03-22 07:49:30 -07003678 if (data->cfg->quirks & SYSC_QUIRK_NO_IDLE)
3679 oh->flags |= HWMOD_NO_IDLE;
Tony Lindgren8c879702018-02-22 14:04:56 -08003680 if (data->cfg->quirks & SYSC_QUIRK_NO_IDLE_ON_INIT)
3681 oh->flags |= HWMOD_INIT_NO_IDLE;
3682 if (data->cfg->quirks & SYSC_QUIRK_NO_RESET_ON_INIT)
3683 oh->flags |= HWMOD_INIT_NO_RESET;
Tony Lindgren10645e82019-03-22 08:08:06 -07003684 if (data->cfg->quirks & SYSC_QUIRK_USE_CLOCKACT)
3685 oh->flags |= HWMOD_SET_DEFAULT_CLOCKACT;
Tony Lindgrenb4a9a7a2019-03-21 13:27:08 -07003686 if (data->cfg->quirks & SYSC_QUIRK_SWSUP_SIDLE)
3687 oh->flags |= HWMOD_SWSUP_SIDLE;
3688 if (data->cfg->quirks & SYSC_QUIRK_SWSUP_SIDLE_ACT)
3689 oh->flags |= HWMOD_SWSUP_SIDLE_ACT;
3690 if (data->cfg->quirks & SYSC_QUIRK_SWSUP_MSTANDBY)
3691 oh->flags |= HWMOD_SWSUP_MSTANDBY;
Tony Lindgren8c879702018-02-22 14:04:56 -08003692
Tony Lindgrena8844302018-02-23 08:59:23 -08003693 error = omap_hwmod_check_module(dev, oh, data, sysc_fields,
3694 rev_offs, sysc_offs, syss_offs,
3695 sysc_flags, idlemodes);
3696 if (!error)
3697 return error;
Tony Lindgren8c879702018-02-22 14:04:56 -08003698
3699 return omap_hwmod_allocate_module(dev, oh, data, sysc_fields,
3700 rev_offs, sysc_offs, syss_offs,
3701 sysc_flags, idlemodes);
3702}
3703
Paul Walmsley63c85232009-09-03 20:14:03 +03003704/**
Lokesh Vutla8dd66662017-01-20 10:39:10 -08003705 * omap_hwmod_setup_earlycon_flags - set up flags for early console
3706 *
3707 * Enable DEBUG_OMAPUART_FLAGS for uart hwmod that is being used as
3708 * early concole so that hwmod core doesn't reset and keep it in idle
3709 * that specific uart.
3710 */
3711#ifdef CONFIG_SERIAL_EARLYCON
3712static void __init omap_hwmod_setup_earlycon_flags(void)
3713{
3714 struct device_node *np;
3715 struct omap_hwmod *oh;
3716 const char *uart;
3717
3718 np = of_find_node_by_path("/chosen");
3719 if (np) {
3720 uart = of_get_property(np, "stdout-path", NULL);
3721 if (uart) {
3722 np = of_find_node_by_path(uart);
3723 if (np) {
3724 uart = of_get_property(np, "ti,hwmods", NULL);
3725 oh = omap_hwmod_lookup(uart);
Tony Lindgren15618252018-02-22 14:04:25 -08003726 if (!oh) {
3727 uart = of_get_property(np->parent,
3728 "ti,hwmods",
3729 NULL);
3730 oh = omap_hwmod_lookup(uart);
3731 }
Lokesh Vutla8dd66662017-01-20 10:39:10 -08003732 if (oh)
3733 oh->flags |= DEBUG_OMAPUART_FLAGS;
3734 }
3735 }
3736 }
3737}
3738#endif
3739
3740/**
Paul Walmsley381d0332012-04-19 00:58:22 -06003741 * omap_hwmod_setup_all - set up all registered IP blocks
Paul Walmsley63c85232009-09-03 20:14:03 +03003742 *
Paul Walmsley381d0332012-04-19 00:58:22 -06003743 * Initialize and set up all IP blocks registered with the hwmod code.
3744 * Must be called after omap2_clk_init(). Resolves the struct clk
3745 * names to struct clk pointers for each registered omap_hwmod. Also
3746 * calls _setup() on each hwmod. Returns 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003747 */
Paul Walmsley550c8092011-02-28 11:58:14 -07003748static int __init omap_hwmod_setup_all(void)
Paul Walmsley63c85232009-09-03 20:14:03 +03003749{
Paul Walmsley381d0332012-04-19 00:58:22 -06003750 _ensure_mpu_hwmod_is_setup(NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003751
Paul Walmsley381d0332012-04-19 00:58:22 -06003752 omap_hwmod_for_each(_init, NULL);
Lokesh Vutla8dd66662017-01-20 10:39:10 -08003753#ifdef CONFIG_SERIAL_EARLYCON
3754 omap_hwmod_setup_earlycon_flags();
3755#endif
Paul Walmsley2092e5c2010-12-14 12:42:35 -07003756 omap_hwmod_for_each(_setup, NULL);
Paul Walmsley63c85232009-09-03 20:14:03 +03003757
3758 return 0;
3759}
Tony Lindgren8dd5ea72015-12-03 11:38:09 -08003760omap_postcore_initcall(omap_hwmod_setup_all);
Paul Walmsley63c85232009-09-03 20:14:03 +03003761
3762/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003763 * omap_hwmod_enable - enable an omap_hwmod
3764 * @oh: struct omap_hwmod *
3765 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003766 * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
Paul Walmsley63c85232009-09-03 20:14:03 +03003767 * Returns -EINVAL on error or passes along the return value from _enable().
3768 */
3769int omap_hwmod_enable(struct omap_hwmod *oh)
3770{
3771 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003772 unsigned long flags;
Paul Walmsley63c85232009-09-03 20:14:03 +03003773
3774 if (!oh)
3775 return -EINVAL;
3776
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003777 spin_lock_irqsave(&oh->_lock, flags);
3778 r = _enable(oh);
3779 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003780
3781 return r;
3782}
3783
3784/**
3785 * omap_hwmod_idle - idle an omap_hwmod
3786 * @oh: struct omap_hwmod *
3787 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003788 * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
Paul Walmsley63c85232009-09-03 20:14:03 +03003789 * Returns -EINVAL on error or passes along the return value from _idle().
3790 */
3791int omap_hwmod_idle(struct omap_hwmod *oh)
3792{
Pali RohƔr6da23352015-02-26 14:49:51 +01003793 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003794 unsigned long flags;
3795
Paul Walmsley63c85232009-09-03 20:14:03 +03003796 if (!oh)
3797 return -EINVAL;
3798
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003799 spin_lock_irqsave(&oh->_lock, flags);
Pali RohƔr6da23352015-02-26 14:49:51 +01003800 r = _idle(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003801 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003802
Pali RohƔr6da23352015-02-26 14:49:51 +01003803 return r;
Paul Walmsley63c85232009-09-03 20:14:03 +03003804}
3805
3806/**
3807 * omap_hwmod_shutdown - shutdown an omap_hwmod
3808 * @oh: struct omap_hwmod *
3809 *
Paul Walmsley74ff3a62010-09-21 15:02:23 -06003810 * Shutdown an omap_hwmod @oh. Intended to be called by
Paul Walmsley63c85232009-09-03 20:14:03 +03003811 * omap_device_shutdown(). Returns -EINVAL on error or passes along
3812 * the return value from _shutdown().
3813 */
3814int omap_hwmod_shutdown(struct omap_hwmod *oh)
3815{
Pali RohƔr6da23352015-02-26 14:49:51 +01003816 int r;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003817 unsigned long flags;
3818
Paul Walmsley63c85232009-09-03 20:14:03 +03003819 if (!oh)
3820 return -EINVAL;
3821
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003822 spin_lock_irqsave(&oh->_lock, flags);
Pali RohƔr6da23352015-02-26 14:49:51 +01003823 r = _shutdown(oh);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003824 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003825
Pali RohƔr6da23352015-02-26 14:49:51 +01003826 return r;
Paul Walmsley63c85232009-09-03 20:14:03 +03003827}
3828
Paul Walmsley5e8370f2012-04-18 19:10:06 -06003829/*
3830 * IP block data retrieval functions
3831 */
3832
Paul Walmsley63c85232009-09-03 20:14:03 +03003833/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003834 * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
3835 * @oh: struct omap_hwmod *
3836 *
3837 * Return the powerdomain pointer associated with the OMAP module
3838 * @oh's main clock. If @oh does not have a main clk, return the
3839 * powerdomain associated with the interface clock associated with the
3840 * module's MPU port. (XXX Perhaps this should use the SDMA port
3841 * instead?) Returns NULL on error, or a struct powerdomain * on
3842 * success.
3843 */
3844struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
3845{
3846 struct clk *c;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003847 struct omap_hwmod_ocp_if *oi;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003848 struct clockdomain *clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003849 struct clk_hw_omap *clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003850
3851 if (!oh)
3852 return NULL;
3853
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003854 if (oh->clkdm)
3855 return oh->clkdm->pwrdm.ptr;
3856
Paul Walmsley63c85232009-09-03 20:14:03 +03003857 if (oh->_clk) {
3858 c = oh->_clk;
3859 } else {
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003860 oi = _find_mpu_rt_port(oh);
3861 if (!oi)
Paul Walmsley63c85232009-09-03 20:14:03 +03003862 return NULL;
Paul Walmsley2d6141b2012-04-19 04:04:27 -06003863 c = oi->_clk;
Paul Walmsley63c85232009-09-03 20:14:03 +03003864 }
3865
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003866 clk = to_clk_hw_omap(__clk_get_hw(c));
3867 clkdm = clk->clkdm;
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003868 if (!clkdm)
Thara Gopinathd5647c12010-03-31 04:16:29 -06003869 return NULL;
3870
Rajendra Nayakf5dd3bb2012-11-10 16:58:41 -07003871 return clkdm->pwrdm.ptr;
Paul Walmsley63c85232009-09-03 20:14:03 +03003872}
3873
3874/**
Paul Walmsleydb2a60b2010-07-26 16:34:33 -06003875 * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
3876 * @oh: struct omap_hwmod *
3877 *
3878 * Returns the virtual address corresponding to the beginning of the
3879 * module's register target, in the address range that is intended to
3880 * be used by the MPU. Returns the virtual address upon success or NULL
3881 * upon error.
3882 */
3883void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
3884{
3885 if (!oh)
3886 return NULL;
3887
3888 if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
3889 return NULL;
3890
3891 if (oh->_state == _HWMOD_STATE_UNKNOWN)
3892 return NULL;
3893
3894 return oh->_mpu_rt_va;
3895}
3896
Paul Walmsley63c85232009-09-03 20:14:03 +03003897/*
3898 * XXX what about functions for drivers to save/restore ocp_sysconfig
3899 * for context save/restore operations?
3900 */
3901
3902/**
Paul Walmsley63c85232009-09-03 20:14:03 +03003903 * omap_hwmod_enable_wakeup - allow device to wake up the system
3904 * @oh: struct omap_hwmod *
3905 *
3906 * Sets the module OCP socket ENAWAKEUP bit to allow the module to
Govindraj.R2a1cc142012-04-05 02:59:32 -06003907 * send wakeups to the PRCM, and enable I/O ring wakeup events for
3908 * this IP block if it has dynamic mux entries. Eventually this
3909 * should set PRCM wakeup registers to cause the PRCM to receive
3910 * wakeup events from the module. Does not set any wakeup routing
3911 * registers beyond this point - if the module is to wake up any other
3912 * module or subsystem, that must be set separately. Called by
3913 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003914 */
3915int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
3916{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003917 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003918 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003919
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003920 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003921
3922 if (oh->class->sysc &&
3923 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3924 v = oh->_sysc_cache;
3925 _enable_wakeup(oh, &v);
3926 _write_sysconfig(v, oh);
3927 }
3928
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003929 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003930
3931 return 0;
3932}
3933
3934/**
3935 * omap_hwmod_disable_wakeup - prevent device from waking the system
3936 * @oh: struct omap_hwmod *
3937 *
3938 * Clears the module OCP socket ENAWAKEUP bit to prevent the module
Govindraj.R2a1cc142012-04-05 02:59:32 -06003939 * from sending wakeups to the PRCM, and disable I/O ring wakeup
3940 * events for this IP block if it has dynamic mux entries. Eventually
3941 * this should clear PRCM wakeup registers to cause the PRCM to ignore
3942 * wakeup events from the module. Does not set any wakeup routing
3943 * registers beyond this point - if the module is to wake up any other
3944 * module or subsystem, that must be set separately. Called by
3945 * omap_device code. Returns -EINVAL on error or 0 upon success.
Paul Walmsley63c85232009-09-03 20:14:03 +03003946 */
3947int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
3948{
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003949 unsigned long flags;
Kevin Hilman5a7ddcb2010-12-21 21:08:34 -07003950 u32 v;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003951
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003952 spin_lock_irqsave(&oh->_lock, flags);
Govindraj.R2a1cc142012-04-05 02:59:32 -06003953
3954 if (oh->class->sysc &&
3955 (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
3956 v = oh->_sysc_cache;
3957 _disable_wakeup(oh, &v);
3958 _write_sysconfig(v, oh);
3959 }
3960
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003961 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley63c85232009-09-03 20:14:03 +03003962
3963 return 0;
3964}
Paul Walmsley43b40992010-02-22 22:09:34 -07003965
3966/**
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003967 * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
3968 * contained in the hwmod module.
3969 * @oh: struct omap_hwmod *
3970 * @name: name of the reset line to lookup and assert
3971 *
3972 * Some IP like dsp, ipu or iva contain processor that require
3973 * an HW reset line to be assert / deassert in order to enable fully
3974 * the IP. Returns -EINVAL if @oh is null or if the operation is not
3975 * yet supported on this OMAP; otherwise, passes along the return value
3976 * from _assert_hardreset().
3977 */
3978int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
3979{
3980 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003981 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003982
3983 if (!oh)
3984 return -EINVAL;
3985
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003986 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003987 ret = _assert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07003988 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06003989
3990 return ret;
3991}
3992
3993/**
3994 * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
3995 * contained in the hwmod module.
3996 * @oh: struct omap_hwmod *
3997 * @name: name of the reset line to look up and deassert
3998 *
3999 * Some IP like dsp, ipu or iva contain processor that require
4000 * an HW reset line to be assert / deassert in order to enable fully
4001 * the IP. Returns -EINVAL if @oh is null or if the operation is not
4002 * yet supported on this OMAP; otherwise, passes along the return value
4003 * from _deassert_hardreset().
4004 */
4005int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
4006{
4007 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07004008 unsigned long flags;
Paul Walmsleyaee48e32010-09-21 10:34:11 -06004009
4010 if (!oh)
4011 return -EINVAL;
4012
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07004013 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06004014 ret = _deassert_hardreset(oh, name);
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07004015 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsleyaee48e32010-09-21 10:34:11 -06004016
4017 return ret;
4018}
4019
4020/**
Paul Walmsley43b40992010-02-22 22:09:34 -07004021 * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
4022 * @classname: struct omap_hwmod_class name to search for
4023 * @fn: callback function pointer to call for each hwmod in class @classname
4024 * @user: arbitrary context data to pass to the callback function
4025 *
Benoit Coussonce35b242010-12-21 21:31:28 -07004026 * For each omap_hwmod of class @classname, call @fn.
4027 * If the callback function returns something other than
Paul Walmsley43b40992010-02-22 22:09:34 -07004028 * zero, the iterator is terminated, and the callback function's return
4029 * value is passed back to the caller. Returns 0 upon success, -EINVAL
4030 * if @classname or @fn are NULL, or passes back the error code from @fn.
4031 */
4032int omap_hwmod_for_each_by_class(const char *classname,
4033 int (*fn)(struct omap_hwmod *oh,
4034 void *user),
4035 void *user)
4036{
4037 struct omap_hwmod *temp_oh;
4038 int ret = 0;
4039
4040 if (!classname || !fn)
4041 return -EINVAL;
4042
4043 pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
4044 __func__, classname);
4045
Paul Walmsley43b40992010-02-22 22:09:34 -07004046 list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
4047 if (!strcmp(temp_oh->class->name, classname)) {
4048 pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
4049 __func__, temp_oh->name);
4050 ret = (*fn)(temp_oh, user);
4051 if (ret)
4052 break;
4053 }
4054 }
4055
Paul Walmsley43b40992010-02-22 22:09:34 -07004056 if (ret)
4057 pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
4058 __func__, ret);
4059
4060 return ret;
4061}
4062
Paul Walmsley2092e5c2010-12-14 12:42:35 -07004063/**
4064 * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
4065 * @oh: struct omap_hwmod *
4066 * @state: state that _setup() should leave the hwmod in
4067 *
Paul Walmsley550c8092011-02-28 11:58:14 -07004068 * Sets the hwmod state that @oh will enter at the end of _setup()
Paul Walmsley64813c32012-04-18 19:10:03 -06004069 * (called by omap_hwmod_setup_*()). See also the documentation
4070 * for _setup_postsetup(), above. Returns 0 upon success or
4071 * -EINVAL if there is a problem with the arguments or if the hwmod is
4072 * in the wrong state.
Paul Walmsley2092e5c2010-12-14 12:42:35 -07004073 */
4074int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
4075{
4076 int ret;
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07004077 unsigned long flags;
Paul Walmsley2092e5c2010-12-14 12:42:35 -07004078
4079 if (!oh)
4080 return -EINVAL;
4081
4082 if (state != _HWMOD_STATE_DISABLED &&
4083 state != _HWMOD_STATE_ENABLED &&
4084 state != _HWMOD_STATE_IDLE)
4085 return -EINVAL;
4086
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07004087 spin_lock_irqsave(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07004088
4089 if (oh->_state != _HWMOD_STATE_REGISTERED) {
4090 ret = -EINVAL;
4091 goto ohsps_unlock;
4092 }
4093
4094 oh->_postsetup_state = state;
4095 ret = 0;
4096
4097ohsps_unlock:
Paul Walmsleydc6d1cd2010-12-14 12:42:35 -07004098 spin_unlock_irqrestore(&oh->_lock, flags);
Paul Walmsley2092e5c2010-12-14 12:42:35 -07004099
4100 return ret;
4101}
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004102
4103/**
4104 * omap_hwmod_get_context_loss_count - get lost context count
4105 * @oh: struct omap_hwmod *
4106 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004107 * Returns the context loss count of associated @oh
4108 * upon success, or zero if no context loss data is available.
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004109 *
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004110 * On OMAP4, this queries the per-hwmod context loss register,
4111 * assuming one exists. If not, or on OMAP2/3, this queries the
4112 * enclosing powerdomain context loss count.
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004113 */
Tomi Valkeinenfc013872011-06-09 16:56:23 +03004114int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004115{
4116 struct powerdomain *pwrdm;
4117 int ret = 0;
4118
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004119 if (soc_ops.get_context_lost)
4120 return soc_ops.get_context_lost(oh);
4121
Kevin Hilmanc80705a2010-12-21 21:31:55 -07004122 pwrdm = omap_hwmod_get_pwrdm(oh);
4123 if (pwrdm)
4124 ret = pwrdm_get_context_loss_count(pwrdm);
4125
4126 return ret;
4127}
Paul Walmsley43b01642011-03-10 03:50:07 -07004128
4129/**
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004130 * omap_hwmod_init - initialize the hwmod code
4131 *
4132 * Sets up some function pointers needed by the hwmod code to operate on the
4133 * currently-booted SoC. Intended to be called once during kernel init
4134 * before any hwmods are registered. No return value.
4135 */
4136void __init omap_hwmod_init(void)
4137{
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06004138 if (cpu_is_omap24xx()) {
Tero Kristo9002e9212014-10-27 08:39:23 -07004139 soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -06004140 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4141 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4142 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
4143 } else if (cpu_is_omap34xx()) {
Tero Kristo9002e9212014-10-27 08:39:23 -07004144 soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06004145 soc_ops.assert_hardreset = _omap2_assert_hardreset;
4146 soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
4147 soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
Tero Kristo0385c582013-07-17 18:03:25 +03004148 soc_ops.init_clkdm = _init_clkdm;
Rajendra Nayakdebcd1f2013-07-02 18:20:08 +05304149 } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004150 soc_ops.enable_module = _omap4_enable_module;
4151 soc_ops.disable_module = _omap4_disable_module;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004152 soc_ops.wait_target_ready = _omap4_wait_target_ready;
Kevin Hilmanb8249cf2012-06-18 12:12:24 -06004153 soc_ops.assert_hardreset = _omap4_assert_hardreset;
4154 soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
4155 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
Kevin Hilman0a179ea2012-06-18 12:12:25 -06004156 soc_ops.init_clkdm = _init_clkdm;
Rajendra Nayake6d3a8b2012-11-21 16:15:17 -07004157 soc_ops.update_context_lost = _omap4_update_context_lost;
4158 soc_ops.get_context_lost = _omap4_get_context_lost;
Tero Kristo9fabc1a2016-07-04 14:11:48 +03004159 soc_ops.disable_direct_prcm = _omap4_disable_direct_prcm;
Tero Kristo70f05be2017-05-31 18:00:03 +03004160 soc_ops.xlate_clkctrl = _omap4_xlate_clkctrl;
Tony Lindgren0f3ccb22015-07-16 01:55:58 -07004161 } else if (cpu_is_ti814x() || cpu_is_ti816x() || soc_is_am33xx() ||
4162 soc_is_am43xx()) {
Afzal Mohammedc8b428a2013-10-12 15:46:20 +05304163 soc_ops.enable_module = _omap4_enable_module;
4164 soc_ops.disable_module = _omap4_disable_module;
4165 soc_ops.wait_target_ready = _omap4_wait_target_ready;
Tero Kristo409d7062014-10-27 08:39:24 -07004166 soc_ops.assert_hardreset = _omap4_assert_hardreset;
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06004167 soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
Tero Kristoa5bf00c2015-05-05 16:33:05 +03004168 soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
Vaibhav Hiremath1688bf12012-09-11 17:18:53 -06004169 soc_ops.init_clkdm = _init_clkdm;
Tero Kristo9fabc1a2016-07-04 14:11:48 +03004170 soc_ops.disable_direct_prcm = _omap4_disable_direct_prcm;
Tero Kristo2b96be32017-08-09 11:57:12 +03004171 soc_ops.xlate_clkctrl = _omap4_xlate_clkctrl;
Kevin Hilman8f6aa8e2012-06-18 12:12:24 -06004172 } else {
4173 WARN(1, "omap_hwmod: unknown SoC type\n");
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004174 }
4175
Tero Kristo70f05be2017-05-31 18:00:03 +03004176 _init_clkctrl_providers();
4177
Kevin Hilman9ebfd282012-06-18 12:12:23 -06004178 inited = true;
4179}
Tony Lindgren68c9a952012-07-06 00:58:43 -07004180
4181/**
4182 * omap_hwmod_get_main_clk - get pointer to main clock name
4183 * @oh: struct omap_hwmod *
4184 *
4185 * Returns the main clock name assocated with @oh upon success,
4186 * or NULL if @oh is NULL.
4187 */
4188const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
4189{
4190 if (!oh)
4191 return NULL;
4192
4193 return oh->main_clk;
4194}