Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1 | /* |
| 2 | * omap_hwmod implementation for OMAP2/3/4 |
| 3 | * |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 4 | * Copyright (C) 2009-2011 Nokia Corporation |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 5 | * Copyright (C) 2011-2012 Texas Instruments, Inc. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 6 | * |
Paul Walmsley | 4788da2 | 2010-05-18 20:24:05 -0600 | [diff] [blame] | 7 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 12 | * |
| 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 Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 17 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 27 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 28 | * 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 Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 75 | * | ({read,write}l_relaxed, clk*) | |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 76 | * +-------------------------------+ |
| 77 | * |
| 78 | * Device drivers should not contain any OMAP-specific code or data in |
| 79 | * them. They should only contain code to operate the IP block that |
| 80 | * the driver is responsible for. This is because these IP blocks can |
| 81 | * also appear in other SoCs, either from TI (such as DaVinci) or from |
| 82 | * other manufacturers; and drivers should be reusable across other |
| 83 | * platforms. |
| 84 | * |
| 85 | * The OMAP hwmod code also will attempt to reset and idle all on-chip |
| 86 | * devices upon boot. The goal here is for the kernel to be |
| 87 | * completely self-reliant and independent from bootloaders. This is |
| 88 | * to ensure a repeatable configuration, both to ensure consistent |
| 89 | * runtime behavior, and to make it easier for others to reproduce |
| 90 | * bugs. |
| 91 | * |
| 92 | * OMAP module activity states |
| 93 | * --------------------------- |
| 94 | * The hwmod code considers modules to be in one of several activity |
| 95 | * states. IP blocks start out in an UNKNOWN state, then once they |
| 96 | * are registered via the hwmod code, proceed to the REGISTERED state. |
| 97 | * Once their clock names are resolved to clock pointers, the module |
| 98 | * enters the CLKS_INITED state; and finally, once the module has been |
| 99 | * reset and the integration registers programmed, the INITIALIZED state |
| 100 | * is entered. The hwmod code will then place the module into either |
| 101 | * the IDLE state to save power, or in the case of a critical system |
| 102 | * module, the ENABLED state. |
| 103 | * |
| 104 | * OMAP core integration code can then call omap_hwmod*() functions |
| 105 | * directly to move the module between the IDLE, ENABLED, and DISABLED |
| 106 | * states, as needed. This is done during both the PM idle loop, and |
| 107 | * in the OMAP core integration code's implementation of the PM runtime |
| 108 | * functions. |
| 109 | * |
| 110 | * References |
| 111 | * ---------- |
| 112 | * This is a partial list. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 113 | * - 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 120 | * - 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 Boyd | f5b00f6 | 2015-06-22 17:05:21 -0700 | [diff] [blame] | 133 | #include <linux/clk.h> |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 134 | #include <linux/clk-provider.h> |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 135 | #include <linux/delay.h> |
| 136 | #include <linux/err.h> |
| 137 | #include <linux/list.h> |
| 138 | #include <linux/mutex.h> |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 139 | #include <linux/spinlock.h> |
Tero Kristo | abc2d54 | 2011-12-16 14:36:59 -0700 | [diff] [blame] | 140 | #include <linux/slab.h> |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 141 | #include <linux/cpu.h> |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 142 | #include <linux/of.h> |
| 143 | #include <linux/of_address.h> |
Mike Rapoport | 57c8a66 | 2018-10-30 15:09:49 -0700 | [diff] [blame] | 144 | #include <linux/memblock.h> |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 145 | |
Tony Lindgren | 49a0a3d | 2017-12-15 09:41:05 -0800 | [diff] [blame] | 146 | #include <linux/platform_data/ti-sysc.h> |
| 147 | |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 148 | #include <dt-bindings/bus/ti-sysc.h> |
| 149 | |
Paul Walmsley | fa20022 | 2013-01-26 00:48:56 -0700 | [diff] [blame] | 150 | #include <asm/system_misc.h> |
| 151 | |
Paul Walmsley | a135eaa | 2012-09-27 10:33:34 -0600 | [diff] [blame] | 152 | #include "clock.h" |
Tony Lindgren | 2a296c8 | 2012-10-02 17:41:35 -0700 | [diff] [blame] | 153 | #include "omap_hwmod.h" |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 154 | |
Tony Lindgren | dbc0416 | 2012-08-31 10:59:07 -0700 | [diff] [blame] | 155 | #include "soc.h" |
| 156 | #include "common.h" |
| 157 | #include "clockdomain.h" |
Tony Lindgren | 8b30919 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 158 | #include "hdq1w.h" |
| 159 | #include "mmc.h" |
Tony Lindgren | dbc0416 | 2012-08-31 10:59:07 -0700 | [diff] [blame] | 160 | #include "powerdomain.h" |
Paul Walmsley | ff4ae5d | 2012-10-21 01:01:11 -0600 | [diff] [blame] | 161 | #include "cm2xxx.h" |
| 162 | #include "cm3xxx.h" |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 163 | #include "cm33xx.h" |
Paul Walmsley | b13159a | 2012-10-29 20:57:44 -0600 | [diff] [blame] | 164 | #include "prm.h" |
Paul Walmsley | 139563a | 2012-10-21 01:01:10 -0600 | [diff] [blame] | 165 | #include "prm3xxx.h" |
Paul Walmsley | d198b51 | 2010-12-21 15:30:54 -0700 | [diff] [blame] | 166 | #include "prm44xx.h" |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 167 | #include "prm33xx.h" |
Benoit Cousson | eaac329 | 2011-07-10 05:56:31 -0600 | [diff] [blame] | 168 | #include "prminst44xx.h" |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 169 | #include "pm.h" |
Tony Lindgren | 8b30919 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 170 | #include "wd_timer.h" |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 171 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 172 | /* Name of the OMAP hwmod for the MPU */ |
Benoit Cousson | 5c2c029 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 173 | #define MPU_INITIATOR_NAME "mpu" |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 174 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 175 | /* |
| 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 Kristo | 4ebf5b2 | 2015-05-05 16:33:04 +0300 | [diff] [blame] | 181 | /* |
| 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 Kristo | 9fabc1a | 2016-07-04 14:11:48 +0300 | [diff] [blame] | 187 | /* |
| 188 | * Maximum length for module clock handle names |
| 189 | */ |
| 190 | #define MOD_CLK_MAX_NAME_LEN 32 |
| 191 | |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 192 | /** |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 193 | * struct clkctrl_provider - clkctrl provider mapping data |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 194 | * @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 Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 197 | * @node: device node associated with the provider |
| 198 | * @link: list link |
| 199 | */ |
| 200 | struct clkctrl_provider { |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 201 | int num_addrs; |
| 202 | u32 *addr; |
| 203 | u32 *size; |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 204 | struct device_node *node; |
| 205 | struct list_head link; |
| 206 | }; |
| 207 | |
| 208 | static LIST_HEAD(clkctrl_providers); |
| 209 | |
| 210 | /** |
Tony Lindgren | 8b30919 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 211 | * 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 | */ |
| 218 | struct omap_hwmod_reset { |
| 219 | const char *match; |
| 220 | int len; |
| 221 | int (*reset)(struct omap_hwmod *oh); |
| 222 | }; |
| 223 | |
| 224 | /** |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 225 | * 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 | */ |
| 233 | struct omap_hwmod_soc_ops { |
| 234 | void (*enable_module)(struct omap_hwmod *oh); |
| 235 | int (*disable_module)(struct omap_hwmod *oh); |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 236 | int (*wait_target_ready)(struct omap_hwmod *oh); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 237 | 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 Hilman | 0a179ea | 2012-06-18 12:12:25 -0600 | [diff] [blame] | 243 | int (*init_clkdm)(struct omap_hwmod *oh); |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 244 | void (*update_context_lost)(struct omap_hwmod *oh); |
| 245 | int (*get_context_lost)(struct omap_hwmod *oh); |
Tero Kristo | 9fabc1a | 2016-07-04 14:11:48 +0300 | [diff] [blame] | 246 | int (*disable_direct_prcm)(struct omap_hwmod *oh); |
Tero Kristo | 6e83eca | 2017-08-04 17:41:50 +0300 | [diff] [blame] | 247 | u32 (*xlate_clkctrl)(struct omap_hwmod *oh); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 248 | }; |
| 249 | |
| 250 | /* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */ |
| 251 | static struct omap_hwmod_soc_ops soc_ops; |
| 252 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 253 | /* omap_hwmod_list contains all registered struct omap_hwmods */ |
| 254 | static LIST_HEAD(omap_hwmod_list); |
Tony Lindgren | b57250f | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 255 | static DEFINE_MUTEX(list_lock); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 256 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 257 | /* mpu_oh: used to add/remove MPU initiator from sleepdep list */ |
| 258 | static struct omap_hwmod *mpu_oh; |
| 259 | |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 260 | /* inited: set to true once the hwmod code is initialized */ |
| 261 | static bool inited; |
| 262 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 263 | /* 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 | */ |
| 273 | static int _update_sysc_cache(struct omap_hwmod *oh) |
| 274 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 275 | if (!oh->class->sysc) { |
| 276 | WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 277 | return -EINVAL; |
| 278 | } |
| 279 | |
| 280 | /* XXX ensure module interface clock is up */ |
| 281 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 282 | oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 283 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 284 | if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE)) |
Thara Gopinath | 883edfd | 2010-01-19 17:30:51 -0700 | [diff] [blame] | 285 | oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 286 | |
| 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 Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 295 | * Write @v into the module class' OCP_SYSCONFIG register, if it has |
| 296 | * one. No return value. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 297 | */ |
| 298 | static void _write_sysconfig(u32 v, struct omap_hwmod *oh) |
| 299 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 300 | if (!oh->class->sysc) { |
| 301 | WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 302 | return; |
| 303 | } |
| 304 | |
| 305 | /* XXX ensure module interface clock is up */ |
| 306 | |
Rajendra Nayak | 233cbe5 | 2010-12-14 12:42:36 -0700 | [diff] [blame] | 307 | /* Module might have lost context, always update cache and register */ |
| 308 | oh->_sysc_cache = v; |
Lokesh Vutla | aaf2c0f | 2015-06-10 14:56:24 +0530 | [diff] [blame] | 309 | |
| 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 Nayak | 233cbe5 | 2010-12-14 12:42:36 -0700 | [diff] [blame] | 319 | omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs); |
Lokesh Vutla | aaf2c0f | 2015-06-10 14:56:24 +0530 | [diff] [blame] | 320 | |
| 321 | if (oh->class->lock) |
| 322 | oh->class->lock(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 323 | } |
| 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 | */ |
| 335 | static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode, |
| 336 | u32 *v) |
| 337 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 338 | u32 mstandby_mask; |
| 339 | u8 mstandby_shift; |
| 340 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 341 | if (!oh->class->sysc || |
| 342 | !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 343 | return -EINVAL; |
| 344 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 345 | if (!oh->class->sysc->sysc_fields) { |
| 346 | WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 347 | return -EINVAL; |
| 348 | } |
| 349 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 350 | mstandby_shift = oh->class->sysc->sysc_fields->midle_shift; |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 351 | mstandby_mask = (0x3 << mstandby_shift); |
| 352 | |
| 353 | *v &= ~mstandby_mask; |
| 354 | *v |= __ffs(standbymode) << mstandby_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 355 | |
| 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 | */ |
| 369 | static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v) |
| 370 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 371 | u32 sidle_mask; |
| 372 | u8 sidle_shift; |
| 373 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 374 | if (!oh->class->sysc || |
| 375 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 376 | return -EINVAL; |
| 377 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 378 | if (!oh->class->sysc->sysc_fields) { |
| 379 | WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 380 | return -EINVAL; |
| 381 | } |
| 382 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 383 | sidle_shift = oh->class->sysc->sysc_fields->sidle_shift; |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 384 | sidle_mask = (0x3 << sidle_shift); |
| 385 | |
| 386 | *v &= ~sidle_mask; |
| 387 | *v |= __ffs(idlemode) << sidle_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 388 | |
| 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 | */ |
| 403 | static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v) |
| 404 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 405 | u32 clkact_mask; |
| 406 | u8 clkact_shift; |
| 407 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 408 | if (!oh->class->sysc || |
| 409 | !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 410 | return -EINVAL; |
| 411 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 412 | if (!oh->class->sysc->sysc_fields) { |
| 413 | WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 414 | return -EINVAL; |
| 415 | } |
| 416 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 417 | clkact_shift = oh->class->sysc->sysc_fields->clkact_shift; |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 418 | clkact_mask = (0x3 << clkact_shift); |
| 419 | |
| 420 | *v &= ~clkact_mask; |
| 421 | *v |= clockact << clkact_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 422 | |
| 423 | return 0; |
| 424 | } |
| 425 | |
| 426 | /** |
Roger Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 427 | * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 428 | * @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 | */ |
| 434 | static int _set_softreset(struct omap_hwmod *oh, u32 *v) |
| 435 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 436 | u32 softrst_mask; |
| 437 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 438 | if (!oh->class->sysc || |
| 439 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 440 | return -EINVAL; |
| 441 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 442 | if (!oh->class->sysc->sysc_fields) { |
| 443 | WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 444 | return -EINVAL; |
| 445 | } |
| 446 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 447 | softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 448 | |
| 449 | *v |= softrst_mask; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 450 | |
| 451 | return 0; |
| 452 | } |
| 453 | |
| 454 | /** |
Roger Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 455 | * _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 | */ |
| 462 | static 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 Kristo | 613ad0e | 2012-10-29 22:02:13 -0600 | [diff] [blame] | 485 | * _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 | */ |
| 494 | static 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 Lindgren | 103fd8e | 2018-04-16 10:21:15 -0700 | [diff] [blame] | 502 | if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS && sysc->syss_offs > 0) |
Tero Kristo | 613ad0e | 2012-10-29 22:02:13 -0600 | [diff] [blame] | 503 | 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 I | 6668546 | 2012-07-04 05:09:21 -0600 | [diff] [blame] | 517 | * _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 | */ |
| 528 | static 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 Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 560 | * _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 | */ |
| 572 | static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle, |
| 573 | u32 *v) |
| 574 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 575 | u32 autoidle_mask; |
| 576 | u8 autoidle_shift; |
| 577 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 578 | if (!oh->class->sysc || |
| 579 | !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE)) |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 580 | return -EINVAL; |
| 581 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 582 | if (!oh->class->sysc->sysc_fields) { |
| 583 | WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 584 | return -EINVAL; |
| 585 | } |
| 586 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 587 | autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift; |
Tarun Kanti DebBarma | 8985b63 | 2011-03-03 14:22:46 -0700 | [diff] [blame] | 588 | autoidle_mask = (0x1 << autoidle_shift); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 589 | |
| 590 | *v &= ~autoidle_mask; |
| 591 | *v |= autoidle << autoidle_shift; |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 592 | |
| 593 | return 0; |
| 594 | } |
| 595 | |
| 596 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 597 | * _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 Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 603 | static int _enable_wakeup(struct omap_hwmod *oh, u32 *v) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 604 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 605 | if (!oh->class->sysc || |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 606 | !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) || |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 607 | (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) || |
| 608 | (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP))) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 609 | return -EINVAL; |
| 610 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 611 | if (!oh->class->sysc->sysc_fields) { |
| 612 | WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 613 | return -EINVAL; |
| 614 | } |
| 615 | |
Benoit Cousson | 1fe7411 | 2011-07-01 22:54:03 +0200 | [diff] [blame] | 616 | if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) |
| 617 | *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 618 | |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 619 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) |
| 620 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v); |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 621 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 622 | _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v); |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 623 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 624 | /* XXX test pwrdm_get_wken for this hwmod's subsystem */ |
| 625 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 626 | 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 Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 636 | static int _disable_wakeup(struct omap_hwmod *oh, u32 *v) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 637 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 638 | if (!oh->class->sysc || |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 639 | !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) || |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 640 | (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) || |
| 641 | (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP))) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 642 | return -EINVAL; |
| 643 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 644 | if (!oh->class->sysc->sysc_fields) { |
| 645 | WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 646 | return -EINVAL; |
| 647 | } |
| 648 | |
Benoit Cousson | 1fe7411 | 2011-07-01 22:54:03 +0200 | [diff] [blame] | 649 | if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) |
| 650 | *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 651 | |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 652 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) |
| 653 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v); |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 654 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
Djamil Elaidi | 561038f | 2012-06-17 11:57:51 -0600 | [diff] [blame] | 655 | _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v); |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 656 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 657 | /* XXX test pwrdm_get_wken for this hwmod's subsystem */ |
| 658 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 659 | return 0; |
| 660 | } |
| 661 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 662 | static struct clockdomain *_get_clkdm(struct omap_hwmod *oh) |
| 663 | { |
Rajendra Nayak | c4a1ea2 | 2012-04-27 16:32:53 +0530 | [diff] [blame] | 664 | struct clk_hw_omap *clk; |
| 665 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 666 | if (oh->clkdm) { |
| 667 | return oh->clkdm; |
| 668 | } else if (oh->_clk) { |
Tero Kristo | 924f949 | 2013-07-12 12:26:41 +0300 | [diff] [blame] | 669 | if (__clk_get_flags(oh->_clk) & CLK_IS_BASIC) |
| 670 | return NULL; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 671 | clk = to_clk_hw_omap(__clk_get_hw(oh->_clk)); |
| 672 | return clk->clkdm; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 673 | } |
| 674 | return NULL; |
| 675 | } |
| 676 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 677 | /** |
| 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 Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 686 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 689 | */ |
| 690 | static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh) |
| 691 | { |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 692 | 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 698 | return -EINVAL; |
| 699 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 700 | if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS) |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 701 | return 0; |
| 702 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 703 | return clkdm_add_sleepdep(clkdm, init_clkdm); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 704 | } |
| 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 Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 715 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 718 | */ |
| 719 | static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh) |
| 720 | { |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 721 | 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 727 | return -EINVAL; |
| 728 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 729 | if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS) |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 730 | return 0; |
| 731 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 732 | return clkdm_del_sleepdep(clkdm, init_clkdm); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 733 | } |
| 734 | |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 735 | static const struct of_device_id ti_clkctrl_match_table[] __initconst = { |
| 736 | { .compatible = "ti,clkctrl" }, |
| 737 | { } |
| 738 | }; |
| 739 | |
Arnd Bergmann | 0ca14cd | 2017-09-14 14:50:58 +0200 | [diff] [blame] | 740 | static int __init _setup_clkctrl_provider(struct device_node *np) |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 741 | { |
| 742 | const __be32 *addrp; |
| 743 | struct clkctrl_provider *provider; |
Tero Kristo | 6e83eca | 2017-08-04 17:41:50 +0300 | [diff] [blame] | 744 | u64 size; |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 745 | int i; |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 746 | |
Mike Rapoport | 7e1c4e2 | 2018-10-30 15:09:57 -0700 | [diff] [blame] | 747 | provider = memblock_alloc(sizeof(*provider), SMP_CACHE_BYTES); |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 748 | if (!provider) |
| 749 | return -ENOMEM; |
| 750 | |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 751 | provider->node = np; |
| 752 | |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 753 | provider->num_addrs = |
| 754 | of_property_count_elems_of_size(np, "reg", sizeof(u32)) / 2; |
| 755 | |
| 756 | provider->addr = |
Mike Rapoport | 7e1c4e2 | 2018-10-30 15:09:57 -0700 | [diff] [blame] | 757 | memblock_alloc(sizeof(void *) * provider->num_addrs, |
| 758 | SMP_CACHE_BYTES); |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 759 | if (!provider->addr) |
| 760 | return -ENOMEM; |
| 761 | |
| 762 | provider->size = |
Mike Rapoport | 7e1c4e2 | 2018-10-30 15:09:57 -0700 | [diff] [blame] | 763 | memblock_alloc(sizeof(u32) * provider->num_addrs, |
| 764 | SMP_CACHE_BYTES); |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 765 | 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 Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 775 | |
| 776 | list_add(&provider->link, &clkctrl_providers); |
| 777 | |
| 778 | return 0; |
| 779 | } |
| 780 | |
Arnd Bergmann | 0ca14cd | 2017-09-14 14:50:58 +0200 | [diff] [blame] | 781 | static int __init _init_clkctrl_providers(void) |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 782 | { |
| 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 Kristo | 6e83eca | 2017-08-04 17:41:50 +0300 | [diff] [blame] | 795 | static u32 _omap4_xlate_clkctrl(struct omap_hwmod *oh) |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 796 | { |
Tero Kristo | 6e83eca | 2017-08-04 17:41:50 +0300 | [diff] [blame] | 797 | 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 Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | static struct clk *_lookup_clkctrl_clk(struct omap_hwmod *oh) |
| 806 | { |
| 807 | struct clkctrl_provider *provider; |
| 808 | struct clk *clk; |
Tero Kristo | 6e83eca | 2017-08-04 17:41:50 +0300 | [diff] [blame] | 809 | u32 addr; |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 810 | |
| 811 | if (!soc_ops.xlate_clkctrl) |
| 812 | return NULL; |
| 813 | |
Tero Kristo | 6e83eca | 2017-08-04 17:41:50 +0300 | [diff] [blame] | 814 | 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 Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 820 | list_for_each_entry(provider, &clkctrl_providers, link) { |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 821 | int i; |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 822 | |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 823 | 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 Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 827 | |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 828 | clkspec.np = provider->node; |
| 829 | clkspec.args_count = 2; |
| 830 | clkspec.args[0] = addr - provider->addr[0]; |
| 831 | clkspec.args[1] = 0; |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 832 | |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 833 | clk = of_clk_get_from_provider(&clkspec); |
Tero Kristo | 6e83eca | 2017-08-04 17:41:50 +0300 | [diff] [blame] | 834 | |
Tero Kristo | 1b9c30f | 2018-08-31 18:01:23 +0300 | [diff] [blame] | 835 | 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 Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 841 | } |
| 842 | } |
| 843 | |
| 844 | return NULL; |
| 845 | } |
| 846 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 847 | /** |
| 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 Kristo | 9fabc1a | 2016-07-04 14:11:48 +0300 | [diff] [blame] | 852 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 854 | */ |
| 855 | static int _init_main_clk(struct omap_hwmod *oh) |
| 856 | { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 857 | int ret = 0; |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 858 | struct clk *clk = NULL; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 859 | |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 860 | clk = _lookup_clkctrl_clk(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 861 | |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 862 | 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 Kristo | 9fabc1a | 2016-07-04 14:11:48 +0300 | [diff] [blame] | 866 | oh->_clk = clk; |
| 867 | soc_ops.disable_direct_prcm(oh); |
Tero Kristo | 9fabc1a | 2016-07-04 14:11:48 +0300 | [diff] [blame] | 868 | } else { |
| 869 | if (!oh->main_clk) |
| 870 | return 0; |
| 871 | |
| 872 | oh->_clk = clk_get(NULL, oh->main_clk); |
| 873 | } |
| 874 | |
Rajendra Nayak | 6ea74cb | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 875 | if (IS_ERR(oh->_clk)) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 876 | pr_warn("omap_hwmod: %s: cannot clk_get main_clk %s\n", |
| 877 | oh->name, oh->main_clk); |
Benoit Cousson | 6340338 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 878 | return -EINVAL; |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 879 | } |
Rajendra Nayak | 4d7cb45 | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 880 | /* |
| 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 889 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 890 | if (!_get_clkdm(oh)) |
Paul Walmsley | 3bb05db | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 891 | pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n", |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 892 | oh->name, oh->main_clk); |
Kevin Hilman | 81d7c6f | 2009-12-08 16:34:24 -0700 | [diff] [blame] | 893 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 894 | return ret; |
| 895 | } |
| 896 | |
| 897 | /** |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 898 | * _init_interface_clks - get a struct clk * for the the hwmod's interface clks |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 899 | * @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 | */ |
| 904 | static int _init_interface_clks(struct omap_hwmod *oh) |
| 905 | { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 906 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 907 | struct clk *c; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 908 | int ret = 0; |
| 909 | |
Tony Lindgren | b8e1bdd | 2017-03-14 13:13:19 -0700 | [diff] [blame] | 910 | list_for_each_entry(os, &oh->slave_ports, node) { |
Paul Walmsley | 50ebdac | 2010-02-22 22:09:31 -0700 | [diff] [blame] | 911 | if (!os->clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 912 | continue; |
| 913 | |
Rajendra Nayak | 6ea74cb | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 914 | c = clk_get(NULL, os->clk); |
| 915 | if (IS_ERR(c)) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 916 | pr_warn("omap_hwmod: %s: cannot clk_get interface_clk %s\n", |
| 917 | oh->name, os->clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 918 | ret = -EINVAL; |
Nishanth Menon | 0e7dc86 | 2013-12-08 18:39:03 -0700 | [diff] [blame] | 919 | continue; |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 920 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 921 | os->_clk = c; |
Rajendra Nayak | 4d7cb45 | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 922 | /* |
| 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 931 | } |
| 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 | */ |
| 943 | static 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 Nayak | 6ea74cb | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 951 | c = clk_get(NULL, oc->clk); |
| 952 | if (IS_ERR(c)) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 953 | pr_warn("omap_hwmod: %s: cannot clk_get opt_clk %s\n", |
| 954 | oh->name, oc->clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 955 | ret = -EINVAL; |
Nishanth Menon | 0e7dc86 | 2013-12-08 18:39:03 -0700 | [diff] [blame] | 956 | continue; |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 957 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 958 | oc->_clk = c; |
Rajendra Nayak | 4d7cb45 | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 959 | /* |
| 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | return ret; |
| 971 | } |
| 972 | |
Peter Ujfalusi | c12ba8c | 2015-11-12 09:32:58 +0200 | [diff] [blame] | 973 | static 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 | |
| 988 | static 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1003 | /** |
| 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 | */ |
| 1010 | static int _enable_clocks(struct omap_hwmod *oh) |
| 1011 | { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 1012 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1013 | |
| 1014 | pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name); |
| 1015 | |
Tero Kristo | 392ea5d | 2017-12-22 11:26:03 +0200 | [diff] [blame] | 1016 | if (oh->flags & HWMOD_OPT_CLKS_NEEDED) |
| 1017 | _enable_optional_clocks(oh); |
| 1018 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1019 | if (oh->_clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1020 | clk_enable(oh->_clk); |
| 1021 | |
Tony Lindgren | b8e1bdd | 2017-03-14 13:13:19 -0700 | [diff] [blame] | 1022 | list_for_each_entry(os, &oh->slave_ports, node) { |
Andreas Kemnade | 12af39c | 2019-01-16 23:04:29 +0100 | [diff] [blame] | 1023 | if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE)) { |
| 1024 | omap2_clk_deny_idle(os->_clk); |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 1025 | clk_enable(os->_clk); |
Andreas Kemnade | 12af39c | 2019-01-16 23:04:29 +0100 | [diff] [blame] | 1026 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1027 | } |
| 1028 | |
| 1029 | /* The opt clocks are controlled by the device driver. */ |
| 1030 | |
| 1031 | return 0; |
| 1032 | } |
| 1033 | |
| 1034 | /** |
Tony Lindgren | 8823ddf | 2017-08-29 10:03:33 -0700 | [diff] [blame] | 1035 | * _omap4_clkctrl_managed_by_clkfwk - true if clkctrl managed by clock framework |
| 1036 | * @oh: struct omap_hwmod * |
| 1037 | */ |
| 1038 | static 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 | */ |
| 1050 | static 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1063 | * _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 | */ |
| 1068 | static int _disable_clocks(struct omap_hwmod *oh) |
| 1069 | { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 1070 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1071 | |
| 1072 | pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name); |
| 1073 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1074 | if (oh->_clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1075 | clk_disable(oh->_clk); |
| 1076 | |
Tony Lindgren | b8e1bdd | 2017-03-14 13:13:19 -0700 | [diff] [blame] | 1077 | list_for_each_entry(os, &oh->slave_ports, node) { |
Andreas Kemnade | 12af39c | 2019-01-16 23:04:29 +0100 | [diff] [blame] | 1078 | if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE)) { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 1079 | clk_disable(os->_clk); |
Andreas Kemnade | 12af39c | 2019-01-16 23:04:29 +0100 | [diff] [blame] | 1080 | omap2_clk_allow_idle(os->_clk); |
| 1081 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1082 | } |
| 1083 | |
Peter Ujfalusi | c12ba8c | 2015-11-12 09:32:58 +0200 | [diff] [blame] | 1084 | if (oh->flags & HWMOD_OPT_CLKS_NEEDED) |
| 1085 | _disable_optional_clocks(oh); |
| 1086 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1087 | /* The opt clocks are controlled by the device driver. */ |
| 1088 | |
| 1089 | return 0; |
| 1090 | } |
| 1091 | |
| 1092 | /** |
Kevin Hilman | 3d9f032 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 1093 | * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4 |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1094 | * @oh: struct omap_hwmod * |
| 1095 | * |
| 1096 | * Enables the PRCM module mode related to the hwmod @oh. |
| 1097 | * No return value. |
| 1098 | */ |
Kevin Hilman | 3d9f032 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 1099 | static void _omap4_enable_module(struct omap_hwmod *oh) |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1100 | { |
Tony Lindgren | 8823ddf | 2017-08-29 10:03:33 -0700 | [diff] [blame] | 1101 | if (!oh->clkdm || !oh->prcm.omap4.modulemode || |
| 1102 | _omap4_clkctrl_managed_by_clkfwk(oh)) |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1103 | return; |
| 1104 | |
Kevin Hilman | 3d9f032 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 1105 | pr_debug("omap_hwmod: %s: %s: %d\n", |
| 1106 | oh->name, __func__, oh->prcm.omap4.modulemode); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1107 | |
Tero Kristo | 128603f | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 1108 | omap_cm_module_enable(oh->prcm.omap4.modulemode, |
| 1109 | oh->clkdm->prcm_partition, |
| 1110 | oh->clkdm->cm_inst, oh->prcm.omap4.clkctrl_offs); |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 1111 | } |
| 1112 | |
| 1113 | /** |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 1114 | * _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 | */ |
| 1122 | static int _omap4_wait_target_disable(struct omap_hwmod *oh) |
| 1123 | { |
Paul Walmsley | 2b026d1 | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 1124 | if (!oh) |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 1125 | return -EINVAL; |
| 1126 | |
Paul Walmsley | 2b026d1 | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 1127 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm) |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 1128 | return 0; |
| 1129 | |
| 1130 | if (oh->flags & HWMOD_NO_IDLEST) |
| 1131 | return 0; |
| 1132 | |
Tony Lindgren | 8823ddf | 2017-08-29 10:03:33 -0700 | [diff] [blame] | 1133 | if (_omap4_clkctrl_managed_by_clkfwk(oh)) |
| 1134 | return 0; |
| 1135 | |
| 1136 | if (!_omap4_has_clkctrl_clock(oh)) |
Dave Gerlach | 428929c | 2016-07-12 12:50:33 -0500 | [diff] [blame] | 1137 | return 0; |
| 1138 | |
Tero Kristo | a8ae5af | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 1139 | return omap_cm_wait_module_idle(oh->clkdm->prcm_partition, |
| 1140 | oh->clkdm->cm_inst, |
| 1141 | oh->prcm.omap4.clkctrl_offs, 0); |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 1142 | } |
| 1143 | |
| 1144 | /** |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1145 | * _save_mpu_port_index - find and save the index to @oh's MPU port |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1146 | * @oh: struct omap_hwmod * |
| 1147 | * |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1148 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1152 | */ |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1153 | static void __init _save_mpu_port_index(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1154 | { |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1155 | struct omap_hwmod_ocp_if *os = NULL; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1156 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 1157 | if (!oh) |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1158 | return; |
| 1159 | |
| 1160 | oh->_int_flags |= _HWMOD_NO_MPU_PORT; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1161 | |
Tony Lindgren | b8e1bdd | 2017-03-14 13:13:19 -0700 | [diff] [blame] | 1162 | list_for_each_entry(os, &oh->slave_ports, node) { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1163 | if (os->user & OCP_USER_MPU) { |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 1164 | oh->_mpu_port = os; |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1165 | oh->_int_flags &= ~_HWMOD_NO_MPU_PORT; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1166 | break; |
| 1167 | } |
| 1168 | } |
| 1169 | |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1170 | return; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1171 | } |
| 1172 | |
| 1173 | /** |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 1174 | * _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 | */ |
| 1186 | static 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 Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 1191 | return oh->_mpu_port; |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 1192 | }; |
| 1193 | |
| 1194 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1195 | * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1196 | * @oh: struct omap_hwmod * |
| 1197 | * |
Paul Walmsley | 006c7f1 | 2012-07-04 05:22:53 -0600 | [diff] [blame] | 1198 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1204 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1205 | static void _enable_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1206 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1207 | u8 idlemode, sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1208 | u32 v; |
Paul Walmsley | 006c7f1 | 2012-07-04 05:22:53 -0600 | [diff] [blame] | 1209 | bool clkdm_act; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 1210 | struct clockdomain *clkdm; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1211 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1212 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1213 | return; |
| 1214 | |
Tero Kristo | 613ad0e | 2012-10-29 22:02:13 -0600 | [diff] [blame] | 1215 | /* |
| 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1227 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1228 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1229 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 1230 | clkdm = _get_clkdm(oh); |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1231 | if (sf & SYSC_HAS_SIDLEMODE) { |
Rajendra Nayak | ca43ea3 | 2013-05-15 20:18:38 +0530 | [diff] [blame] | 1232 | if (oh->flags & HWMOD_SWSUP_SIDLE || |
| 1233 | oh->flags & HWMOD_SWSUP_SIDLE_ACT) { |
Rajendra Nayak | 35513171 | 2013-05-15 20:18:37 +0530 | [diff] [blame] | 1234 | 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 Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 1248 | clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU); |
Paul Walmsley | 006c7f1 | 2012-07-04 05:22:53 -0600 | [diff] [blame] | 1249 | if (clkdm_act && !(oh->class->sysc->idlemodes & |
| 1250 | (SIDLE_SMART | SIDLE_SMART_WKUP))) |
| 1251 | idlemode = HWMOD_IDLEMODE_FORCE; |
Rajendra Nayak | 35513171 | 2013-05-15 20:18:37 +0530 | [diff] [blame] | 1252 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1253 | _set_slave_idlemode(oh, idlemode, &v); |
| 1254 | } |
| 1255 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1256 | if (sf & SYSC_HAS_MIDLEMODE) { |
Grazvydas Ignotas | 092bc08 | 2013-03-11 21:49:00 +0200 | [diff] [blame] | 1257 | if (oh->flags & HWMOD_FORCE_MSTANDBY) { |
| 1258 | idlemode = HWMOD_IDLEMODE_FORCE; |
| 1259 | } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) { |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 1260 | 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1269 | _set_master_standbymode(oh, idlemode, &v); |
| 1270 | } |
| 1271 | |
Paul Walmsley | a16b1f7 | 2009-12-08 16:34:17 -0700 | [diff] [blame] | 1272 | /* |
| 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 Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1277 | if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) && |
| 1278 | (sf & SYSC_HAS_CLOCKACTIVITY)) |
Tony Lindgren | ca5339b | 2017-03-14 13:13:19 -0700 | [diff] [blame] | 1279 | _set_clockactivity(oh, CLOCKACT_TEST_ICLK, &v); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1280 | |
Lokesh Vutla | 3ca4a23 | 2016-03-26 23:08:55 -0600 | [diff] [blame] | 1281 | _write_sysconfig(v, oh); |
Hema HK | 78f26e8 | 2010-09-24 10:23:19 -0600 | [diff] [blame] | 1282 | |
| 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1293 | } |
| 1294 | |
| 1295 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1296 | * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1297 | * @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 Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1304 | static void _idle_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1305 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1306 | u8 idlemode, sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1307 | u32 v; |
| 1308 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1309 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1310 | return; |
| 1311 | |
| 1312 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1313 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1314 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1315 | if (sf & SYSC_HAS_SIDLEMODE) { |
Rajendra Nayak | 35513171 | 2013-05-15 20:18:37 +0530 | [diff] [blame] | 1316 | if (oh->flags & HWMOD_SWSUP_SIDLE) { |
Paul Walmsley | 006c7f1 | 2012-07-04 05:22:53 -0600 | [diff] [blame] | 1317 | idlemode = HWMOD_IDLEMODE_FORCE; |
Rajendra Nayak | 35513171 | 2013-05-15 20:18:37 +0530 | [diff] [blame] | 1318 | } 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1326 | _set_slave_idlemode(oh, idlemode, &v); |
| 1327 | } |
| 1328 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1329 | if (sf & SYSC_HAS_MIDLEMODE) { |
Grazvydas Ignotas | 092bc08 | 2013-03-11 21:49:00 +0200 | [diff] [blame] | 1330 | if ((oh->flags & HWMOD_SWSUP_MSTANDBY) || |
| 1331 | (oh->flags & HWMOD_FORCE_MSTANDBY)) { |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 1332 | 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1341 | _set_master_standbymode(oh, idlemode, &v); |
| 1342 | } |
| 1343 | |
Lokesh Vutla | 3ca4a23 | 2016-03-26 23:08:55 -0600 | [diff] [blame] | 1344 | /* 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1347 | } |
| 1348 | |
| 1349 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1350 | * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1351 | * @oh: struct omap_hwmod * |
| 1352 | * |
| 1353 | * Force the module into slave idle and master suspend. No return |
| 1354 | * value. |
| 1355 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1356 | static void _shutdown_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1357 | { |
| 1358 | u32 v; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1359 | u8 sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1360 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1361 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1362 | return; |
| 1363 | |
| 1364 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1365 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1366 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1367 | if (sf & SYSC_HAS_SIDLEMODE) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1368 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v); |
| 1369 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1370 | if (sf & SYSC_HAS_MIDLEMODE) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1371 | _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v); |
| 1372 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1373 | if (sf & SYSC_HAS_AUTOIDLE) |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 1374 | _set_module_autoidle(oh, 1, &v); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1375 | |
| 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1384 | */ |
| 1385 | static 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 Walmsley | 868c157 | 2012-06-19 15:01:02 -0600 | [diff] [blame] | 1400 | |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1401 | /** |
| 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 Walmsley | 868c157 | 2012-06-19 15:01:02 -0600 | [diff] [blame] | 1407 | * Return -EINVAL if the clkdm_name lookup failed. |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1408 | */ |
| 1409 | static int _init_clkdm(struct omap_hwmod *oh) |
| 1410 | { |
Paul Walmsley | 3bb05db | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 1411 | if (!oh->clkdm_name) { |
| 1412 | pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name); |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1413 | return 0; |
Paul Walmsley | 3bb05db | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 1414 | } |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1415 | |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1416 | oh->clkdm = clkdm_lookup(oh->clkdm_name); |
| 1417 | if (!oh->clkdm) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 1418 | pr_warn("omap_hwmod: %s: could not associate to clkdm %s\n", |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1419 | oh->name, oh->clkdm_name); |
Tero Kristo | 0385c58 | 2013-07-17 18:03:25 +0300 | [diff] [blame] | 1420 | return 0; |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1421 | } |
| 1422 | |
| 1423 | pr_debug("omap_hwmod: %s: associated to clkdm %s\n", |
| 1424 | oh->name, oh->clkdm_name); |
| 1425 | |
| 1426 | return 0; |
| 1427 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1428 | |
| 1429 | /** |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1430 | * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as |
| 1431 | * well the clockdomain. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1432 | * @oh: struct omap_hwmod * |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 1433 | * @np: device_node mapped to this hwmod |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1434 | * |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1435 | * Called by omap_hwmod_setup_*() (after omap2_clk_init()). |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1436 | * Resolves all clock names embedded in the hwmod. Returns 0 on |
| 1437 | * success, or a negative error code on failure. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1438 | */ |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 1439 | static int _init_clocks(struct omap_hwmod *oh, struct device_node *np) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1440 | { |
| 1441 | int ret = 0; |
| 1442 | |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1443 | if (oh->_state != _HWMOD_STATE_REGISTERED) |
| 1444 | return 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1445 | |
| 1446 | pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name); |
| 1447 | |
Vaibhav Hiremath | b797be1d | 2012-07-09 18:24:30 +0530 | [diff] [blame] | 1448 | if (soc_ops.init_clkdm) |
| 1449 | ret |= soc_ops.init_clkdm(oh); |
| 1450 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1451 | ret |= _init_main_clk(oh); |
| 1452 | ret |= _init_interface_clks(oh); |
| 1453 | ret |= _init_opt_clks(oh); |
| 1454 | |
Benoit Cousson | f5c1f84 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 1455 | if (!ret) |
| 1456 | oh->_state = _HWMOD_STATE_CLKS_INITED; |
Benoit Cousson | 6652271 | 2011-07-01 22:54:06 +0200 | [diff] [blame] | 1457 | else |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 1458 | pr_warn("omap_hwmod: %s: cannot _init_clocks\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1459 | |
Rajendra Nayak | 09c35f2 | 2011-02-16 12:11:24 +0000 | [diff] [blame] | 1460 | return ret; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1461 | } |
| 1462 | |
| 1463 | /** |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1464 | * _lookup_hardreset - fill register bit info for this hwmod/reset line |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1465 | * @oh: struct omap_hwmod * |
| 1466 | * @name: name of the reset line in the context of this hwmod |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1467 | * @ohri: struct omap_hwmod_rst_info * that this function will fill in |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1468 | * |
| 1469 | * Return the bit position of the reset line that match the |
| 1470 | * input name. Return -ENOENT if not found. |
| 1471 | */ |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1472 | static int _lookup_hardreset(struct omap_hwmod *oh, const char *name, |
| 1473 | struct omap_hwmod_rst_info *ohri) |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1474 | { |
| 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 ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1480 | 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 Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1485 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1486 | return 0; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1487 | } |
| 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 Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1499 | * 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 Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1505 | */ |
| 1506 | static int _assert_hardreset(struct omap_hwmod *oh, const char *name) |
| 1507 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1508 | struct omap_hwmod_rst_info ohri; |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1509 | int ret = -EINVAL; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1510 | |
| 1511 | if (!oh) |
| 1512 | return -EINVAL; |
| 1513 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1514 | if (!soc_ops.assert_hardreset) |
| 1515 | return -ENOSYS; |
| 1516 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1517 | ret = _lookup_hardreset(oh, name, &ohri); |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1518 | if (ret < 0) |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1519 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1520 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1521 | ret = soc_ops.assert_hardreset(oh, &ohri); |
| 1522 | |
| 1523 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1524 | } |
| 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 Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1532 | * 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 Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1538 | */ |
| 1539 | static int _deassert_hardreset(struct omap_hwmod *oh, const char *name) |
| 1540 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1541 | struct omap_hwmod_rst_info ohri; |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1542 | int ret = -EINVAL; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1543 | |
| 1544 | if (!oh) |
| 1545 | return -EINVAL; |
| 1546 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1547 | if (!soc_ops.deassert_hardreset) |
| 1548 | return -ENOSYS; |
| 1549 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1550 | ret = _lookup_hardreset(oh, name, &ohri); |
Russell King | c48cd65 | 2013-03-13 20:44:21 +0000 | [diff] [blame] | 1551 | if (ret < 0) |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1552 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1553 | |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1554 | 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 Kristo | 1d9a542 | 2016-06-30 16:15:02 +0300 | [diff] [blame] | 1560 | clkdm_deny_idle(oh->clkdm); |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1561 | 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 Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1573 | ret = soc_ops.deassert_hardreset(oh, &ohri); |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1574 | |
| 1575 | if (soc_ops.disable_module) |
| 1576 | soc_ops.disable_module(oh); |
| 1577 | _disable_clocks(oh); |
| 1578 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1579 | if (ret == -EBUSY) |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 1580 | pr_warn("omap_hwmod: %s: failed to hardreset\n", oh->name); |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1581 | |
Tero Kristo | 80d2518 | 2015-02-26 18:06:00 +0200 | [diff] [blame] | 1582 | if (oh->clkdm) { |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1583 | /* |
| 1584 | * Set the clockdomain to HW_AUTO, assuming that the |
| 1585 | * previous state was HW_AUTO. |
| 1586 | */ |
Tero Kristo | 1d9a542 | 2016-06-30 16:15:02 +0300 | [diff] [blame] | 1587 | clkdm_allow_idle(oh->clkdm); |
Tero Kristo | 80d2518 | 2015-02-26 18:06:00 +0200 | [diff] [blame] | 1588 | |
| 1589 | clkdm_hwmod_disable(oh->clkdm, oh); |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1590 | } |
| 1591 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1592 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1593 | } |
| 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 Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1601 | * 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 Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1606 | */ |
| 1607 | static int _read_hardreset(struct omap_hwmod *oh, const char *name) |
| 1608 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1609 | struct omap_hwmod_rst_info ohri; |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1610 | int ret = -EINVAL; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1611 | |
| 1612 | if (!oh) |
| 1613 | return -EINVAL; |
| 1614 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1615 | if (!soc_ops.is_hardreset_asserted) |
| 1616 | return -ENOSYS; |
| 1617 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1618 | ret = _lookup_hardreset(oh, name, &ohri); |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1619 | if (ret < 0) |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1620 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1621 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1622 | return soc_ops.is_hardreset_asserted(oh, &ohri); |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1623 | } |
| 1624 | |
| 1625 | /** |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1626 | * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1627 | * @oh: struct omap_hwmod * |
| 1628 | * |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1629 | * 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 Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1632 | * This function is used to avoid executing some parts of the IP block |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1633 | * enable/disable sequence if its hardreset line is set. |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1634 | */ |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1635 | static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh) |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1636 | { |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1637 | int i, rst_cnt = 0; |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1638 | |
| 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 Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1644 | rst_cnt++; |
| 1645 | |
| 1646 | if (oh->rst_lines_cnt == rst_cnt) |
| 1647 | return true; |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1648 | |
| 1649 | return false; |
| 1650 | } |
| 1651 | |
| 1652 | /** |
Paul Walmsley | e9332b6 | 2012-10-08 23:08:15 -0600 | [diff] [blame] | 1653 | * _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 | */ |
| 1663 | static 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 Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1676 | * _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 | */ |
| 1682 | static int _omap4_disable_module(struct omap_hwmod *oh) |
| 1683 | { |
| 1684 | int v; |
| 1685 | |
Tony Lindgren | 8823ddf | 2017-08-29 10:03:33 -0700 | [diff] [blame] | 1686 | if (!oh->clkdm || !oh->prcm.omap4.modulemode || |
| 1687 | _omap4_clkctrl_managed_by_clkfwk(oh)) |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1688 | return -EINVAL; |
| 1689 | |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1690 | /* |
| 1691 | * Since integration code might still be doing something, only |
| 1692 | * disable if all lines are under hardreset. |
| 1693 | */ |
Paul Walmsley | e9332b6 | 2012-10-08 23:08:15 -0600 | [diff] [blame] | 1694 | if (_are_any_hardreset_lines_asserted(oh)) |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1695 | return 0; |
| 1696 | |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1697 | pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__); |
| 1698 | |
Tero Kristo | 128603f | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 1699 | omap_cm_module_disable(oh->clkdm->prcm_partition, oh->clkdm->cm_inst, |
| 1700 | oh->prcm.omap4.clkctrl_offs); |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1701 | |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1702 | 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 Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1711 | * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1712 | * @oh: struct omap_hwmod * |
| 1713 | * |
| 1714 | * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1715 | * 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 Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1718 | * |
| 1719 | * In OMAP3 a specific SYSSTATUS register is used to get the reset status. |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1720 | * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1721 | * use the SYSCONFIG softreset bit to provide the status. |
| 1722 | * |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1723 | * Note that some IP like McBSP do have reset control but don't have |
| 1724 | * reset status. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1725 | */ |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1726 | static int _ocp_softreset(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1727 | { |
Tero Kristo | 613ad0e | 2012-10-29 22:02:13 -0600 | [diff] [blame] | 1728 | u32 v; |
Paul Walmsley | 6f8b7ff | 2009-12-08 16:33:16 -0700 | [diff] [blame] | 1729 | int c = 0; |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1730 | int ret = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1731 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1732 | if (!oh->class->sysc || |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1733 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET)) |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1734 | return -ENOENT; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1735 | |
| 1736 | /* clocks must be on for this operation */ |
| 1737 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
Paul Walmsley | 7852ec0 | 2012-07-26 00:54:26 -0600 | [diff] [blame] | 1738 | pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n", |
| 1739 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1740 | return -EINVAL; |
| 1741 | } |
| 1742 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1743 | /* 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 Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1747 | pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1748 | |
| 1749 | v = oh->_sysc_cache; |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1750 | ret = _set_softreset(oh, &v); |
| 1751 | if (ret) |
| 1752 | goto dis_opt_clks; |
Roger Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 1753 | |
| 1754 | _write_sysconfig(v, oh); |
Illia Smyrnov | 0114251 | 2014-02-05 17:06:09 +0200 | [diff] [blame] | 1755 | |
| 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 Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 1761 | pr_warn("omap_hwmod: %s: softreset failed (waited %d usec)\n", |
| 1762 | oh->name, MAX_MODULE_SOFTRESET_WAIT); |
Illia Smyrnov | 0114251 | 2014-02-05 17:06:09 +0200 | [diff] [blame] | 1763 | 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 Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 1769 | ret = _clear_softreset(oh, &v); |
| 1770 | if (ret) |
| 1771 | goto dis_opt_clks; |
| 1772 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1773 | _write_sysconfig(v, oh); |
| 1774 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1775 | /* |
| 1776 | * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from |
| 1777 | * _wait_target_ready() or _reset() |
| 1778 | */ |
| 1779 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1780 | dis_opt_clks: |
| 1781 | if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET) |
| 1782 | _disable_optional_clocks(oh); |
| 1783 | |
| 1784 | return ret; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1785 | } |
| 1786 | |
| 1787 | /** |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1788 | * _reset - reset an omap_hwmod |
| 1789 | * @oh: struct omap_hwmod * |
| 1790 | * |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1791 | * 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 I | 6668546 | 2012-07-04 05:09:21 -0600 | [diff] [blame] | 1808 | * 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 Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1819 | */ |
| 1820 | static int _reset(struct omap_hwmod *oh) |
| 1821 | { |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1822 | int i, r; |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1823 | |
| 1824 | pr_debug("omap_hwmod: %s: resetting\n", oh->name); |
| 1825 | |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1826 | 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 Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1839 | |
Kishon Vijay Abraham I | 6668546 | 2012-07-04 05:09:21 -0600 | [diff] [blame] | 1840 | _set_dmadisable(oh); |
| 1841 | |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1842 | /* |
| 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 Nayak | 2800852 | 2012-03-13 22:55:23 +0530 | [diff] [blame] | 1847 | if (oh->class->sysc) { |
| 1848 | _update_sysc_cache(oh); |
| 1849 | _enable_sysc(oh); |
| 1850 | } |
| 1851 | |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1852 | return r; |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1853 | } |
| 1854 | |
| 1855 | /** |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 1856 | * _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 | */ |
| 1864 | static 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 | */ |
| 1886 | static int _omap4_get_context_lost(struct omap_hwmod *oh) |
| 1887 | { |
| 1888 | return oh->prcm.omap4.context_lost_counter; |
| 1889 | } |
| 1890 | |
| 1891 | /** |
Paul Walmsley | 6d266f6 | 2013-02-10 11:22:22 -0700 | [diff] [blame] | 1892 | * _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 francois | 0f49703 | 2013-05-16 11:25:07 -0700 | [diff] [blame] | 1900 | static int _enable_preprogram(struct omap_hwmod *oh) |
Paul Walmsley | 6d266f6 | 2013-02-10 11:22:22 -0700 | [diff] [blame] | 1901 | { |
| 1902 | if (!oh->class->enable_preprogram) |
| 1903 | return 0; |
| 1904 | |
| 1905 | return oh->class->enable_preprogram(oh); |
| 1906 | } |
| 1907 | |
| 1908 | /** |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1909 | * _enable - enable an omap_hwmod |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1910 | * @oh: struct omap_hwmod * |
| 1911 | * |
| 1912 | * Enables an omap_hwmod @oh such that the MPU can access the hwmod's |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1913 | * register target. Returns -EINVAL if the hwmod is in the wrong |
| 1914 | * state or passes along the return value of _wait_target_ready(). |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1915 | */ |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1916 | static int _enable(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1917 | { |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1918 | int r; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1919 | |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1920 | pr_debug("omap_hwmod: %s: enabling\n", oh->name); |
| 1921 | |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 1922 | /* |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 1923 | * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled |
Tony Lindgren | b428145 | 2016-10-20 06:35:21 -0700 | [diff] [blame] | 1924 | * state at init. |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 1925 | */ |
| 1926 | if (oh->_int_flags & _HWMOD_SKIP_ENABLE) { |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 1927 | oh->_int_flags &= ~_HWMOD_SKIP_ENABLE; |
| 1928 | return 0; |
| 1929 | } |
| 1930 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1931 | if (oh->_state != _HWMOD_STATE_INITIALIZED && |
| 1932 | oh->_state != _HWMOD_STATE_IDLE && |
| 1933 | oh->_state != _HWMOD_STATE_DISABLED) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 1934 | WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n", |
| 1935 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1936 | return -EINVAL; |
| 1937 | } |
| 1938 | |
Benoit Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 1939 | /* |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1940 | * If an IP block contains HW reset lines and all of them are |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1941 | * 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 Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 1947 | */ |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1948 | if (_are_all_hardreset_lines_asserted(oh)) |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1949 | return 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1950 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1951 | _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 Kristo | 1d9a542 | 2016-06-30 16:15:02 +0300 | [diff] [blame] | 1959 | clkdm_deny_idle(oh->clkdm); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1960 | 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 Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1966 | } |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1967 | |
| 1968 | _enable_clocks(oh); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 1969 | if (soc_ops.enable_module) |
| 1970 | soc_ops.enable_module(oh); |
Paul Walmsley | fa20022 | 2013-01-26 00:48:56 -0700 | [diff] [blame] | 1971 | if (oh->flags & HWMOD_BLOCK_WFI) |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 1972 | cpu_idle_poll_ctrl(true); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1973 | |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 1974 | if (soc_ops.update_context_lost) |
| 1975 | soc_ops.update_context_lost(oh); |
| 1976 | |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1977 | r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) : |
| 1978 | -EINVAL; |
Roger Quadros | 8ff42da | 2017-03-17 10:58:18 +0200 | [diff] [blame] | 1979 | if (oh->clkdm && !(oh->flags & HWMOD_CLKDM_NOAUTO)) |
Tero Kristo | 1d9a542 | 2016-06-30 16:15:02 +0300 | [diff] [blame] | 1980 | clkdm_allow_idle(oh->clkdm); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1981 | |
Tero Kristo | 1d9a542 | 2016-06-30 16:15:02 +0300 | [diff] [blame] | 1982 | if (!r) { |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1983 | 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 Walmsley | 6d266f6 | 2013-02-10 11:22:22 -0700 | [diff] [blame] | 1991 | r = _enable_preprogram(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1992 | } else { |
Paul Walmsley | 2577a4a | 2012-10-29 20:57:55 -0600 | [diff] [blame] | 1993 | if (soc_ops.disable_module) |
| 1994 | soc_ops.disable_module(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1995 | _disable_clocks(oh); |
Lokesh Vutla | 812ce9d | 2014-12-19 18:04:50 +0530 | [diff] [blame] | 1996 | pr_err("omap_hwmod: %s: _wait_target_ready failed: %d\n", |
| 1997 | oh->name, r); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1998 | |
| 1999 | if (oh->clkdm) |
| 2000 | clkdm_hwmod_disable(oh->clkdm, oh); |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 2001 | } |
| 2002 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2003 | return r; |
| 2004 | } |
| 2005 | |
| 2006 | /** |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2007 | * _idle - idle an omap_hwmod |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2008 | * @oh: struct omap_hwmod * |
| 2009 | * |
| 2010 | * Idles an omap_hwmod @oh. This should be called once the hwmod has |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2011 | * no further work. Returns -EINVAL if the hwmod is in the wrong |
| 2012 | * state or returns 0. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2013 | */ |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2014 | static int _idle(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2015 | { |
Lokesh Vutla | 2e18f5a | 2016-03-07 01:41:21 -0700 | [diff] [blame] | 2016 | if (oh->flags & HWMOD_NO_IDLE) { |
| 2017 | oh->_int_flags |= _HWMOD_SKIP_ENABLE; |
| 2018 | return 0; |
| 2019 | } |
| 2020 | |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 2021 | pr_debug("omap_hwmod: %s: idling\n", oh->name); |
| 2022 | |
Suman Anna | c20c8f7 | 2016-04-10 13:20:11 -0600 | [diff] [blame] | 2023 | if (_are_all_hardreset_lines_asserted(oh)) |
| 2024 | return 0; |
| 2025 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2026 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 2027 | WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n", |
| 2028 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2029 | return -EINVAL; |
| 2030 | } |
| 2031 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2032 | if (oh->class->sysc) |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2033 | _idle_sysc(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2034 | _del_initiator_dep(oh, mpu_oh); |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 2035 | |
Roger Quadros | 8ff42da | 2017-03-17 10:58:18 +0200 | [diff] [blame] | 2036 | /* |
| 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 Kristo | 1d9a542 | 2016-06-30 16:15:02 +0300 | [diff] [blame] | 2042 | clkdm_deny_idle(oh->clkdm); |
| 2043 | |
Paul Walmsley | fa20022 | 2013-01-26 00:48:56 -0700 | [diff] [blame] | 2044 | if (oh->flags & HWMOD_BLOCK_WFI) |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 2045 | cpu_idle_poll_ctrl(false); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 2046 | if (soc_ops.disable_module) |
| 2047 | soc_ops.disable_module(oh); |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 2048 | |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 2049 | /* |
| 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 Kristo | 1d9a542 | 2016-06-30 16:15:02 +0300 | [diff] [blame] | 2056 | if (oh->clkdm) { |
| 2057 | clkdm_allow_idle(oh->clkdm); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2058 | clkdm_hwmod_disable(oh->clkdm, oh); |
Tero Kristo | 1d9a542 | 2016-06-30 16:15:02 +0300 | [diff] [blame] | 2059 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2060 | |
| 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 | */ |
| 2075 | static int _shutdown(struct omap_hwmod *oh) |
| 2076 | { |
Paul Walmsley | 9c8b0ec | 2012-04-18 19:10:02 -0600 | [diff] [blame] | 2077 | int ret, i; |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 2078 | u8 prev_state; |
| 2079 | |
Suman Anna | c20c8f7 | 2016-04-10 13:20:11 -0600 | [diff] [blame] | 2080 | if (_are_all_hardreset_lines_asserted(oh)) |
| 2081 | return 0; |
| 2082 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2083 | if (oh->_state != _HWMOD_STATE_IDLE && |
| 2084 | oh->_state != _HWMOD_STATE_ENABLED) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 2085 | WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n", |
| 2086 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2087 | return -EINVAL; |
| 2088 | } |
| 2089 | |
| 2090 | pr_debug("omap_hwmod: %s: disabling\n", oh->name); |
| 2091 | |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 2092 | if (oh->class->pre_shutdown) { |
| 2093 | prev_state = oh->_state; |
| 2094 | if (oh->_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2095 | _enable(oh); |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 2096 | ret = oh->class->pre_shutdown(oh); |
| 2097 | if (ret) { |
| 2098 | if (prev_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2099 | _idle(oh); |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 2100 | return ret; |
| 2101 | } |
| 2102 | } |
| 2103 | |
Miguel Vadillo | 6481c73 | 2011-07-01 22:54:02 +0200 | [diff] [blame] | 2104 | if (oh->class->sysc) { |
| 2105 | if (oh->_state == _HWMOD_STATE_IDLE) |
| 2106 | _enable(oh); |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2107 | _shutdown_sysc(oh); |
Miguel Vadillo | 6481c73 | 2011-07-01 22:54:02 +0200 | [diff] [blame] | 2108 | } |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2109 | |
Benoit Cousson | 3827f94 | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 2110 | /* 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 Walmsley | fa20022 | 2013-01-26 00:48:56 -0700 | [diff] [blame] | 2114 | if (oh->flags & HWMOD_BLOCK_WFI) |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 2115 | cpu_idle_poll_ctrl(false); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 2116 | if (soc_ops.disable_module) |
| 2117 | soc_ops.disable_module(oh); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 2118 | _disable_clocks(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2119 | if (oh->clkdm) |
| 2120 | clkdm_hwmod_disable(oh->clkdm, oh); |
Benoit Cousson | 3827f94 | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 2121 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2122 | /* XXX Should this code also force-disable the optional clocks? */ |
| 2123 | |
Paul Walmsley | 9c8b0ec | 2012-04-18 19:10:02 -0600 | [diff] [blame] | 2124 | for (i = 0; i < oh->rst_lines_cnt; i++) |
| 2125 | _assert_hardreset(oh, oh->rst_lines[i].name); |
Benoit Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 2126 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2127 | oh->_state = _HWMOD_STATE_DISABLED; |
| 2128 | |
| 2129 | return 0; |
| 2130 | } |
| 2131 | |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2132 | static 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 Herring | 6e771379 | 2018-08-28 10:44:27 -0500 | [diff] [blame] | 2148 | pr_debug("omap_hwmod: dt %pOFn[%i] uses hwmod %s\n", |
| 2149 | np, i, oh->name); |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2150 | return i; |
| 2151 | } |
| 2152 | } |
| 2153 | |
| 2154 | return -ENODEV; |
| 2155 | } |
| 2156 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2157 | /** |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2158 | * of_dev_hwmod_lookup - look up needed hwmod from dt blob |
| 2159 | * @np: struct device_node * |
| 2160 | * @oh: struct omap_hwmod * |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2161 | * @index: index of the entry found |
| 2162 | * @found: struct device_node * found or NULL |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2163 | * |
| 2164 | * Parse the dt blob and find out needed hwmod. Recursive function is |
| 2165 | * implemented to take care hierarchical dt blob parsing. |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2166 | * Return: Returns 0 on success, -ENODEV when not found. |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2167 | */ |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2168 | static int of_dev_hwmod_lookup(struct device_node *np, |
| 2169 | struct omap_hwmod *oh, |
| 2170 | int *index, |
| 2171 | struct device_node **found) |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2172 | { |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2173 | 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 Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2182 | |
| 2183 | for_each_child_of_node(np, np0) { |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2184 | 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 Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2192 | } |
| 2193 | } |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2194 | |
| 2195 | *found = NULL; |
| 2196 | *index = 0; |
| 2197 | |
| 2198 | return -ENODEV; |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2199 | } |
| 2200 | |
| 2201 | /** |
Tony Lindgren | 1dbcb97 | 2018-08-08 01:07:04 -0700 | [diff] [blame] | 2202 | * 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 | */ |
| 2215 | static 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 Lindgren | 6c72b35 | 2017-10-10 14:23:27 -0700 | [diff] [blame] | 2233 | * 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 | */ |
| 2243 | int 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 Herring | 6e771379 | 2018-08-28 10:44:27 -0500 | [diff] [blame] | 2282 | pr_err("%s: invalid range for %s->%pOFn\n", __func__, |
| 2283 | oh->name, np); |
Tony Lindgren | 6c72b35 | 2017-10-10 14:23:27 -0700 | [diff] [blame] | 2284 | return -EINVAL; |
| 2285 | } |
| 2286 | |
| 2287 | ranges++; |
| 2288 | base = of_translate_address(np, ranges++); |
| 2289 | size = be32_to_cpup(ranges); |
| 2290 | |
Rob Herring | 6e771379 | 2018-08-28 10:44:27 -0500 | [diff] [blame] | 2291 | pr_debug("omap_hwmod: %s %pOFn at 0x%llx size 0x%llx\n", |
| 2292 | oh->name, np, base, size); |
Tony Lindgren | 6c72b35 | 2017-10-10 14:23:27 -0700 | [diff] [blame] | 2293 | |
Tony Lindgren | 1dbcb97 | 2018-08-08 01:07:04 -0700 | [diff] [blame] | 2294 | if (oh && oh->mpu_rt_idx) { |
| 2295 | omap_hwmod_fix_mpu_rt_idx(oh, np, res); |
| 2296 | |
| 2297 | return 0; |
| 2298 | } |
| 2299 | |
Tony Lindgren | 6c72b35 | 2017-10-10 14:23:27 -0700 | [diff] [blame] | 2300 | res->start = base; |
| 2301 | res->end = base + size - 1; |
| 2302 | res->flags = IORESOURCE_MEM; |
| 2303 | |
| 2304 | return 0; |
| 2305 | } |
| 2306 | |
| 2307 | /** |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2308 | * _init_mpu_rt_base - populate the virtual address for a hwmod |
| 2309 | * @oh: struct omap_hwmod * to locate the virtual address |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2310 | * @data: (unused, caller should pass NULL) |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2311 | * @index: index of the reg entry iospace in device tree |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2312 | * @np: struct device_node * of the IP block's device node in the DT data |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2313 | * |
| 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 Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2317 | * |
Roger Quadros | 9a258af | 2015-07-16 16:16:44 +0300 | [diff] [blame] | 2318 | * 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 Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2321 | * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and |
| 2322 | * -ENXIO on absent or invalid register target address space. |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2323 | */ |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2324 | static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data, |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2325 | int index, struct device_node *np) |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2326 | { |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2327 | void __iomem *va_start = NULL; |
Tony Lindgren | 6c72b35 | 2017-10-10 14:23:27 -0700 | [diff] [blame] | 2328 | struct resource res; |
| 2329 | int error; |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2330 | |
| 2331 | if (!oh) |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2332 | return -EINVAL; |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2333 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2334 | _save_mpu_port_index(oh); |
| 2335 | |
Roger Quadros | 9a258af | 2015-07-16 16:16:44 +0300 | [diff] [blame] | 2336 | /* 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 Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2341 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2342 | return -ENXIO; |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2343 | |
Tony Lindgren | 9cffb1a | 2017-10-10 14:27:33 -0700 | [diff] [blame] | 2344 | if (!np) { |
| 2345 | pr_err("omap_hwmod: %s: no dt node\n", oh->name); |
| 2346 | return -ENXIO; |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2347 | } |
| 2348 | |
Tony Lindgren | 9cffb1a | 2017-10-10 14:27:33 -0700 | [diff] [blame] | 2349 | /* 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 Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2357 | if (!va_start) { |
Tony Lindgren | 9cffb1a | 2017-10-10 14:27:33 -0700 | [diff] [blame] | 2358 | pr_err("omap_hwmod: %s: Missing dt reg%i for %pOF\n", |
| 2359 | oh->name, index, np); |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2360 | return -ENXIO; |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2361 | } |
| 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 Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2367 | return 0; |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2368 | } |
| 2369 | |
Tony Lindgren | 4f21224 | 2018-12-10 14:11:10 -0800 | [diff] [blame] | 2370 | static 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 Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2381 | /** |
| 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 Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2391 | * 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 Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2393 | */ |
| 2394 | static int __init _init(struct omap_hwmod *oh, void *data) |
| 2395 | { |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2396 | int r, index; |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2397 | struct device_node *np = NULL; |
Tony Lindgren | 1aa8f0c | 2017-05-31 15:51:37 -0700 | [diff] [blame] | 2398 | struct device_node *bus; |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2399 | |
| 2400 | if (oh->_state != _HWMOD_STATE_REGISTERED) |
| 2401 | return 0; |
| 2402 | |
Tony Lindgren | 1aa8f0c | 2017-05-31 15:51:37 -0700 | [diff] [blame] | 2403 | bus = of_find_node_by_name(NULL, "ocp"); |
| 2404 | if (!bus) |
| 2405 | return -ENODEV; |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2406 | |
Tony Lindgren | 1aa8f0c | 2017-05-31 15:51:37 -0700 | [diff] [blame] | 2407 | 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 Herring | 6e771379 | 2018-08-28 10:44:27 -0500 | [diff] [blame] | 2411 | pr_warn("omap_hwmod: %s using broken dt data from %pOFn\n", |
| 2412 | oh->name, np); |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2413 | |
Roger Quadros | 9a258af | 2015-07-16 16:16:44 +0300 | [diff] [blame] | 2414 | 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 Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2419 | } |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2420 | |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 2421 | r = _init_clocks(oh, np); |
Russell King | c48cd65 | 2013-03-13 20:44:21 +0000 | [diff] [blame] | 2422 | if (r < 0) { |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2423 | WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name); |
| 2424 | return -EINVAL; |
| 2425 | } |
| 2426 | |
Suman Anna | 3d36ad7 | 2014-03-14 14:45:17 +0530 | [diff] [blame] | 2427 | if (np) { |
Tony Lindgren | 4f21224 | 2018-12-10 14:11:10 -0800 | [diff] [blame] | 2428 | 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 Anna | 3d36ad7 | 2014-03-14 14:45:17 +0530 | [diff] [blame] | 2434 | } |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2435 | |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2436 | oh->_state = _HWMOD_STATE_INITIALIZED; |
| 2437 | |
| 2438 | return 0; |
| 2439 | } |
| 2440 | |
| 2441 | /** |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2442 | * _setup_iclk_autoidle - configure an IP block's interface clocks |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2443 | * @oh: struct omap_hwmod * |
| 2444 | * |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2445 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2448 | */ |
Nathan Chancellor | c10b26a | 2018-10-17 17:52:07 -0700 | [diff] [blame] | 2449 | static void _setup_iclk_autoidle(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2450 | { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 2451 | struct omap_hwmod_ocp_if *os; |
Tony Lindgren | b8e1bdd | 2017-03-14 13:13:19 -0700 | [diff] [blame] | 2452 | |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2453 | if (oh->_state != _HWMOD_STATE_INITIALIZED) |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2454 | return; |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2455 | |
Tony Lindgren | b8e1bdd | 2017-03-14 13:13:19 -0700 | [diff] [blame] | 2456 | list_for_each_entry(os, &oh->slave_ports, node) { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 2457 | if (!os->_clk) |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2458 | continue; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2459 | |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2460 | if (os->flags & OCPIF_SWSUP_IDLE) { |
Andreas Kemnade | 12af39c | 2019-01-16 23:04:29 +0100 | [diff] [blame] | 2461 | /* |
| 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 Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2466 | } else { |
Andreas Kemnade | 12af39c | 2019-01-16 23:04:29 +0100 | [diff] [blame] | 2467 | /* we are enabling autoidle afterwards anyways */ |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 2468 | clk_enable(os->_clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2469 | } |
| 2470 | } |
| 2471 | |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2472 | 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 Chancellor | c10b26a | 2018-10-17 17:52:07 -0700 | [diff] [blame] | 2484 | static int _setup_reset(struct omap_hwmod *oh) |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2485 | { |
Tony Lindgren | 7f0d078 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 2486 | int r = 0; |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2487 | |
| 2488 | if (oh->_state != _HWMOD_STATE_INITIALIZED) |
| 2489 | return -EINVAL; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2490 | |
Paul Walmsley | 5fb3d52 | 2012-10-29 22:11:50 -0600 | [diff] [blame] | 2491 | if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK) |
| 2492 | return -EPERM; |
| 2493 | |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 2494 | if (oh->rst_lines_cnt == 0) { |
| 2495 | r = _enable(oh); |
| 2496 | if (r) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 2497 | pr_warn("omap_hwmod: %s: cannot be enabled for reset (%d)\n", |
| 2498 | oh->name, oh->_state); |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 2499 | return -EINVAL; |
| 2500 | } |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 2501 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2502 | |
Rajendra Nayak | 2800852 | 2012-03-13 22:55:23 +0530 | [diff] [blame] | 2503 | if (!(oh->flags & HWMOD_INIT_NO_RESET)) |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2504 | 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 Chancellor | c10b26a | 2018-10-17 17:52:07 -0700 | [diff] [blame] | 2545 | static void _setup_postsetup(struct omap_hwmod *oh) |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2546 | { |
| 2547 | u8 postsetup_state; |
| 2548 | |
| 2549 | if (oh->rst_lines_cnt > 0) |
| 2550 | return; |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2551 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2552 | 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 Vutla | 2e18f5a | 2016-03-07 01:41:21 -0700 | [diff] [blame] | 2560 | if ((oh->flags & (HWMOD_INIT_NO_IDLE | HWMOD_NO_IDLE)) && |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 2561 | (postsetup_state == _HWMOD_STATE_IDLE)) { |
| 2562 | oh->_int_flags |= _HWMOD_SKIP_ENABLE; |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2563 | postsetup_state = _HWMOD_STATE_ENABLED; |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 2564 | } |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2565 | |
| 2566 | if (postsetup_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2567 | _idle(oh); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2568 | 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2573 | |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2574 | 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 Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 2593 | static int _setup(struct omap_hwmod *oh, void *data) |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2594 | { |
| 2595 | if (oh->_state != _HWMOD_STATE_INITIALIZED) |
| 2596 | return 0; |
| 2597 | |
Tomi Valkeinen | f22d254 | 2014-10-09 17:03:14 +0300 | [diff] [blame] | 2598 | 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 Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2606 | _setup_iclk_autoidle(oh); |
| 2607 | |
| 2608 | if (!_setup_reset(oh)) |
| 2609 | _setup_postsetup(oh); |
| 2610 | |
Tomi Valkeinen | f22d254 | 2014-10-09 17:03:14 +0300 | [diff] [blame] | 2611 | 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2625 | return 0; |
| 2626 | } |
| 2627 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2628 | /** |
| 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 Lindgren | b57250f | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 2645 | static int _register(struct omap_hwmod *oh) |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2646 | { |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2647 | if (!oh || !oh->name || !oh->class || !oh->class->name || |
| 2648 | (oh->_state != _HWMOD_STATE_UNKNOWN)) |
| 2649 | return -EINVAL; |
| 2650 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2651 | pr_debug("omap_hwmod: %s: registering\n", oh->name); |
| 2652 | |
Benoit Cousson | ce35b24 | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 2653 | if (_lookup(oh->name)) |
| 2654 | return -EEXIST; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2655 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2656 | list_add_tail(&oh->node, &omap_hwmod_list); |
| 2657 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2658 | INIT_LIST_HEAD(&oh->slave_ports); |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2659 | spin_lock_init(&oh->_lock); |
Peter Ujfalusi | 6931795 | 2015-02-26 00:00:51 -0700 | [diff] [blame] | 2660 | lockdep_set_class(&oh->_lock, &oh->hwmod_key); |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2661 | |
| 2662 | oh->_state = _HWMOD_STATE_REGISTERED; |
| 2663 | |
Paul Walmsley | 569edd70 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2664 | /* |
| 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 Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2670 | |
Paul Walmsley | 569edd70 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2671 | return 0; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2672 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2673 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2674 | /** |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2675 | * _add_link - add an interconnect between two IP blocks |
| 2676 | * @oi: pointer to a struct omap_hwmod_ocp_if record |
| 2677 | * |
Tony Lindgren | a1e3123 | 2017-03-14 13:13:19 -0700 | [diff] [blame] | 2678 | * Add struct omap_hwmod_link records connecting the slave IP block |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2679 | * 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 Lindgren | b57250f | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 2684 | static int _add_link(struct omap_hwmod_ocp_if *oi) |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2685 | { |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2686 | pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name, |
| 2687 | oi->slave->name); |
| 2688 | |
Tony Lindgren | a1e3123 | 2017-03-14 13:13:19 -0700 | [diff] [blame] | 2689 | list_add(&oi->node, &oi->slave->slave_ports); |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2690 | 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 | */ |
| 2708 | static 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 Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2736 | /* Static functions intended only for use in soc_ops field function pointers */ |
| 2737 | |
| 2738 | /** |
Tero Kristo | 9002e921 | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 2739 | * _omap2xxx_3xxx_wait_target_ready - wait for a module to leave slave idle |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2740 | * @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 Kristo | 9002e921 | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 2747 | static int _omap2xxx_3xxx_wait_target_ready(struct omap_hwmod *oh) |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2748 | { |
| 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 Kristo | 021b6ff | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 2760 | 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 Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2763 | } |
| 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 | */ |
| 2774 | static int _omap4_wait_target_ready(struct omap_hwmod *oh) |
| 2775 | { |
Paul Walmsley | 2b026d1 | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 2776 | if (!oh) |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2777 | return -EINVAL; |
| 2778 | |
Paul Walmsley | 2b026d1 | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 2779 | if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm) |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2780 | return 0; |
| 2781 | |
| 2782 | if (!_find_mpu_rt_port(oh)) |
| 2783 | return 0; |
| 2784 | |
Tony Lindgren | 8823ddf | 2017-08-29 10:03:33 -0700 | [diff] [blame] | 2785 | if (_omap4_clkctrl_managed_by_clkfwk(oh)) |
| 2786 | return 0; |
| 2787 | |
| 2788 | if (!_omap4_has_clkctrl_clock(oh)) |
Dave Gerlach | 428929c | 2016-07-12 12:50:33 -0500 | [diff] [blame] | 2789 | return 0; |
| 2790 | |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2791 | /* XXX check module SIDLEMODE, hardreset status */ |
| 2792 | |
Tero Kristo | 021b6ff | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 2793 | return omap_cm_wait_module_ready(oh->clkdm->prcm_partition, |
| 2794 | oh->clkdm->cm_inst, |
| 2795 | oh->prcm.omap4.clkctrl_offs, 0); |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 2796 | } |
| 2797 | |
| 2798 | /** |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2799 | * _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 | */ |
| 2809 | static int _omap2_assert_hardreset(struct omap_hwmod *oh, |
| 2810 | struct omap_hwmod_rst_info *ohri) |
| 2811 | { |
Tero Kristo | efd44dc | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 2812 | return omap_prm_assert_hardreset(ohri->rst_shift, 0, |
| 2813 | oh->prcm.omap2.module_offs, 0); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2814 | } |
| 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 | */ |
| 2827 | static int _omap2_deassert_hardreset(struct omap_hwmod *oh, |
| 2828 | struct omap_hwmod_rst_info *ohri) |
| 2829 | { |
Tero Kristo | 37fb59d | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 2830 | return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift, 0, |
| 2831 | oh->prcm.omap2.module_offs, 0, 0); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2832 | } |
| 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 | */ |
| 2846 | static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh, |
| 2847 | struct omap_hwmod_rst_info *ohri) |
| 2848 | { |
Tero Kristo | 1bc28b3 | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 2849 | return omap_prm_is_hardreset_asserted(ohri->st_shift, 0, |
| 2850 | oh->prcm.omap2.module_offs, 0); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2851 | } |
| 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 | */ |
| 2865 | static int _omap4_assert_hardreset(struct omap_hwmod *oh, |
| 2866 | struct omap_hwmod_rst_info *ohri) |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2867 | { |
Paul Walmsley | 07b3a13 | 2012-06-20 20:11:36 -0600 | [diff] [blame] | 2868 | if (!oh->clkdm) |
| 2869 | return -EINVAL; |
| 2870 | |
Tero Kristo | efd44dc | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 2871 | 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 Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2875 | } |
| 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 | */ |
| 2889 | static int _omap4_deassert_hardreset(struct omap_hwmod *oh, |
| 2890 | struct omap_hwmod_rst_info *ohri) |
| 2891 | { |
Paul Walmsley | 07b3a13 | 2012-06-20 20:11:36 -0600 | [diff] [blame] | 2892 | if (!oh->clkdm) |
| 2893 | return -EINVAL; |
| 2894 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2895 | 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 Kristo | 4ebf5b2 | 2015-05-05 16:33:04 +0300 | [diff] [blame] | 2898 | return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->rst_shift, |
Tero Kristo | 37fb59d | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 2899 | oh->clkdm->pwrdm.ptr->prcm_partition, |
| 2900 | oh->clkdm->pwrdm.ptr->prcm_offs, |
Tero Kristo | 4ebf5b2 | 2015-05-05 16:33:04 +0300 | [diff] [blame] | 2901 | oh->prcm.omap4.rstctrl_offs, |
| 2902 | oh->prcm.omap4.rstctrl_offs + |
| 2903 | OMAP4_RST_CTRL_ST_OFFSET); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2904 | } |
| 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 | */ |
| 2918 | static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh, |
| 2919 | struct omap_hwmod_rst_info *ohri) |
| 2920 | { |
Paul Walmsley | 07b3a13 | 2012-06-20 20:11:36 -0600 | [diff] [blame] | 2921 | if (!oh->clkdm) |
| 2922 | return -EINVAL; |
| 2923 | |
Tero Kristo | 1bc28b3 | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 2924 | 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 Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2929 | } |
| 2930 | |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 2931 | /** |
Tero Kristo | 9fabc1a | 2016-07-04 14:11:48 +0300 | [diff] [blame] | 2932 | * _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 | */ |
| 2939 | static int _omap4_disable_direct_prcm(struct omap_hwmod *oh) |
| 2940 | { |
| 2941 | if (!oh) |
| 2942 | return -EINVAL; |
| 2943 | |
Tony Lindgren | 8823ddf | 2017-08-29 10:03:33 -0700 | [diff] [blame] | 2944 | oh->prcm.omap4.flags |= HWMOD_OMAP4_CLKFWK_CLKCTR_CLOCK; |
Tero Kristo | 9fabc1a | 2016-07-04 14:11:48 +0300 | [diff] [blame] | 2945 | |
| 2946 | return 0; |
| 2947 | } |
| 2948 | |
| 2949 | /** |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 2950 | * _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 | */ |
| 2961 | static int _am33xx_deassert_hardreset(struct omap_hwmod *oh, |
| 2962 | struct omap_hwmod_rst_info *ohri) |
| 2963 | { |
Tero Kristo | a5bf00c | 2015-05-05 16:33:05 +0300 | [diff] [blame] | 2964 | return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift, |
| 2965 | oh->clkdm->pwrdm.ptr->prcm_partition, |
Tero Kristo | 37fb59d | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 2966 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 2967 | oh->prcm.omap4.rstctrl_offs, |
| 2968 | oh->prcm.omap4.rstst_offs); |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 2969 | } |
| 2970 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2971 | /* Public functions */ |
| 2972 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 2973 | u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2974 | { |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 2975 | if (oh->flags & HWMOD_16BIT_REG) |
Victor Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 2976 | return readw_relaxed(oh->_mpu_rt_va + reg_offs); |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 2977 | else |
Victor Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 2978 | return readl_relaxed(oh->_mpu_rt_va + reg_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2979 | } |
| 2980 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 2981 | void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2982 | { |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 2983 | if (oh->flags & HWMOD_16BIT_REG) |
Victor Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 2984 | writew_relaxed(v, oh->_mpu_rt_va + reg_offs); |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 2985 | else |
Victor Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 2986 | writel_relaxed(v, oh->_mpu_rt_va + reg_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2987 | } |
| 2988 | |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 2989 | /** |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 2990 | * 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 | */ |
| 2998 | int omap_hwmod_softreset(struct omap_hwmod *oh) |
| 2999 | { |
Paul Walmsley | 3c55c1b | 2012-04-13 05:08:43 -0600 | [diff] [blame] | 3000 | u32 v; |
| 3001 | int ret; |
| 3002 | |
| 3003 | if (!oh || !(oh->_sysc_cache)) |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 3004 | return -EINVAL; |
| 3005 | |
Paul Walmsley | 3c55c1b | 2012-04-13 05:08:43 -0600 | [diff] [blame] | 3006 | v = oh->_sysc_cache; |
| 3007 | ret = _set_softreset(oh, &v); |
| 3008 | if (ret) |
| 3009 | goto error; |
| 3010 | _write_sysconfig(v, oh); |
| 3011 | |
Roger Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 3012 | ret = _clear_softreset(oh, &v); |
| 3013 | if (ret) |
| 3014 | goto error; |
| 3015 | _write_sysconfig(v, oh); |
| 3016 | |
Paul Walmsley | 3c55c1b | 2012-04-13 05:08:43 -0600 | [diff] [blame] | 3017 | error: |
| 3018 | return ret; |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 3019 | } |
| 3020 | |
| 3021 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3022 | * 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 | */ |
| 3028 | struct omap_hwmod *omap_hwmod_lookup(const char *name) |
| 3029 | { |
| 3030 | struct omap_hwmod *oh; |
| 3031 | |
| 3032 | if (!name) |
| 3033 | return NULL; |
| 3034 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3035 | oh = _lookup(name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3036 | |
| 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 Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 3043 | * @data: void * data to pass to callback function |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3044 | * |
| 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 Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 3052 | int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data), |
| 3053 | void *data) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3054 | { |
| 3055 | struct omap_hwmod *temp_oh; |
Govindraj.R | 30ebad9 | 2011-06-01 11:28:56 +0530 | [diff] [blame] | 3056 | int ret = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3057 | |
| 3058 | if (!fn) |
| 3059 | return -EINVAL; |
| 3060 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3061 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 3062 | ret = (*fn)(temp_oh, data); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3063 | if (ret) |
| 3064 | break; |
| 3065 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3066 | |
| 3067 | return ret; |
| 3068 | } |
| 3069 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3070 | /** |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3071 | * 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 Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 3076 | * 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 Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3080 | */ |
| 3081 | int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois) |
| 3082 | { |
| 3083 | int r, i; |
| 3084 | |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 3085 | if (!inited) |
| 3086 | return -EINVAL; |
| 3087 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3088 | if (!ois) |
| 3089 | return 0; |
| 3090 | |
Rajendra Nayak | f7f7a29 | 2014-08-27 19:38:23 -0600 | [diff] [blame] | 3091 | if (ois[0] == NULL) /* Empty list */ |
| 3092 | return 0; |
| 3093 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3094 | 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 Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3106 | * _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 Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 3108 | * |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3109 | * 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 Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 3114 | */ |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3115 | static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh) |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 3116 | { |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3117 | 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3122 | } |
| 3123 | |
| 3124 | /** |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3125 | * 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 Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3128 | * 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 Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3134 | */ |
| 3135 | int __init omap_hwmod_setup_one(const char *oh_name) |
| 3136 | { |
| 3137 | struct omap_hwmod *oh; |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3138 | |
| 3139 | pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__); |
| 3140 | |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3141 | 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 Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3147 | _ensure_mpu_hwmod_is_setup(oh); |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3148 | |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3149 | _init(oh, NULL); |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3150 | _setup(oh, NULL); |
| 3151 | |
| 3152 | return 0; |
| 3153 | } |
| 3154 | |
Tony Lindgren | a884430 | 2018-02-23 08:59:23 -0800 | [diff] [blame] | 3155 | static 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 | */ |
| 3171 | static 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 Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3202 | /** |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3203 | * omap_hwmod_init_regbits - init sysconfig specific register bits |
| 3204 | * @dev: struct device |
| 3205 | * @data: module data |
| 3206 | * @sysc_fields: new sysc configuration |
| 3207 | */ |
| 3208 | static 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 Lindgren | a884430 | 2018-02-23 08:59:23 -0800 | [diff] [blame] | 3251 | return omap_hwmod_check_sysc(dev, data, *sysc_fields); |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3252 | } |
| 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 Lindgren | 798bd17 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3262 | static 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 Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3266 | { |
Tony Lindgren | 103fd8e | 2018-04-16 10:21:15 -0700 | [diff] [blame] | 3267 | *rev_offs = -ENODEV; |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3268 | *sysc_offs = 0; |
| 3269 | *syss_offs = 0; |
| 3270 | |
Tony Lindgren | 103fd8e | 2018-04-16 10:21:15 -0700 | [diff] [blame] | 3271 | if (data->offsets[SYSC_REVISION] >= 0) |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3272 | *rev_offs = data->offsets[SYSC_REVISION]; |
| 3273 | |
Tony Lindgren | 103fd8e | 2018-04-16 10:21:15 -0700 | [diff] [blame] | 3274 | if (data->offsets[SYSC_SYSCONFIG] >= 0) |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3275 | *sysc_offs = data->offsets[SYSC_SYSCONFIG]; |
| 3276 | |
Tony Lindgren | 103fd8e | 2018-04-16 10:21:15 -0700 | [diff] [blame] | 3277 | if (data->offsets[SYSC_SYSSTATUS] >= 0) |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3278 | *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 Lindgren | 798bd17 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3289 | static int omap_hwmod_init_sysc_flags(struct device *dev, |
| 3290 | const struct ti_sysc_module_data *data, |
| 3291 | u32 *sysc_flags) |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3292 | { |
| 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 Lindgren | 798bd17 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3363 | static int omap_hwmod_init_idlemodes(struct device *dev, |
| 3364 | const struct ti_sysc_module_data *data, |
| 3365 | u32 *idlemodes) |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3366 | { |
| 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 Lindgren | a884430 | 2018-02-23 08:59:23 -0800 | [diff] [blame] | 3391 | * 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 | */ |
| 3402 | static 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 Lindgren | 103fd8e | 2018-04-16 10:21:15 -0700 | [diff] [blame] | 3406 | s32 rev_offs, s32 sysc_offs, |
| 3407 | s32 syss_offs, u32 sysc_flags, |
Tony Lindgren | a884430 | 2018-02-23 08:59:23 -0800 | [diff] [blame] | 3408 | 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 Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3444 | * 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 Lindgren | 798bd17 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3456 | static 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 Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3462 | { |
| 3463 | struct omap_hwmod_class_sysconfig *sysc; |
Tony Lindgren | 513a4ab | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3464 | struct omap_hwmod_class *class = NULL; |
Tony Lindgren | b57250f | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3465 | struct omap_hwmod_ocp_if *oi = NULL; |
| 3466 | struct clockdomain *clkdm = NULL; |
| 3467 | struct clk *clk = NULL; |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3468 | 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 Lindgren | 513a4ab | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3491 | * We may need a new oh->class as the other devices in the same class |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3492 | * may not yet have ioremapped their registers. |
| 3493 | */ |
Tony Lindgren | 513a4ab | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3494 | 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 Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3499 | |
Tony Lindgren | b57250f | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3500 | 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 Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3544 | spin_lock_irqsave(&oh->_lock, flags); |
| 3545 | if (regs) |
| 3546 | oh->_mpu_rt_va = regs; |
Tony Lindgren | 513a4ab | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3547 | if (class) |
| 3548 | oh->class = class; |
| 3549 | oh->class->sysc = sysc; |
Tony Lindgren | b57250f | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3550 | if (oi) |
| 3551 | _add_link(oi); |
| 3552 | if (clkdm) |
| 3553 | oh->clkdm = clkdm; |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3554 | oh->_state = _HWMOD_STATE_INITIALIZED; |
Tony Lindgren | b57250f | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3555 | oh->_postsetup_state = _HWMOD_STATE_DEFAULT; |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3556 | _setup(oh, NULL); |
| 3557 | spin_unlock_irqrestore(&oh->_lock, flags); |
| 3558 | |
| 3559 | return 0; |
| 3560 | } |
| 3561 | |
Tony Lindgren | 8b30919 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3562 | static const struct omap_hwmod_reset omap24xx_reset_quirks[] = { |
| 3563 | { .match = "msdi", .len = 4, .reset = omap_msdi_reset, }, |
| 3564 | }; |
| 3565 | |
| 3566 | static const struct omap_hwmod_reset dra7_reset_quirks[] = { |
| 3567 | { .match = "pcie", .len = 4, .reset = dra7xx_pciess_reset, }, |
| 3568 | }; |
| 3569 | |
| 3570 | static 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 | |
| 3577 | static void |
| 3578 | omap_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 | |
| 3596 | static void |
| 3597 | omap_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 Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3613 | /** |
| 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 | */ |
| 3619 | int 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 Lindgren | 103fd8e | 2018-04-16 10:21:15 -0700 | [diff] [blame] | 3625 | s32 rev_offs, sysc_offs, syss_offs; |
| 3626 | u32 sysc_flags, idlemodes; |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3627 | int error; |
| 3628 | |
| 3629 | if (!dev || !data) |
| 3630 | return -EINVAL; |
| 3631 | |
| 3632 | oh = _lookup(data->name); |
Tony Lindgren | b57250f | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3633 | 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 Lindgren | 8b30919 | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3651 | omap_hwmod_init_reset_quirks(dev, oh, data); |
| 3652 | |
Tony Lindgren | b57250f | 2019-03-21 11:00:21 -0700 | [diff] [blame] | 3653 | oh->class->name = data->name; |
| 3654 | mutex_lock(&list_lock); |
| 3655 | error = _register(oh); |
| 3656 | mutex_unlock(&list_lock); |
| 3657 | } |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3658 | |
| 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 Lindgren | 386cb76 | 2019-03-22 07:49:30 -0700 | [diff] [blame] | 3678 | if (data->cfg->quirks & SYSC_QUIRK_NO_IDLE) |
| 3679 | oh->flags |= HWMOD_NO_IDLE; |
Tony Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3680 | 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 Lindgren | 10645e8 | 2019-03-22 08:08:06 -0700 | [diff] [blame] | 3684 | if (data->cfg->quirks & SYSC_QUIRK_USE_CLOCKACT) |
| 3685 | oh->flags |= HWMOD_SET_DEFAULT_CLOCKACT; |
Tony Lindgren | b4a9a7a | 2019-03-21 13:27:08 -0700 | [diff] [blame^] | 3686 | 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 Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3692 | |
Tony Lindgren | a884430 | 2018-02-23 08:59:23 -0800 | [diff] [blame] | 3693 | 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 Lindgren | 8c87970 | 2018-02-22 14:04:56 -0800 | [diff] [blame] | 3698 | |
| 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3704 | /** |
Lokesh Vutla | 8dd6666 | 2017-01-20 10:39:10 -0800 | [diff] [blame] | 3705 | * 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 |
| 3712 | static 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 Lindgren | 1561825 | 2018-02-22 14:04:25 -0800 | [diff] [blame] | 3726 | if (!oh) { |
| 3727 | uart = of_get_property(np->parent, |
| 3728 | "ti,hwmods", |
| 3729 | NULL); |
| 3730 | oh = omap_hwmod_lookup(uart); |
| 3731 | } |
Lokesh Vutla | 8dd6666 | 2017-01-20 10:39:10 -0800 | [diff] [blame] | 3732 | if (oh) |
| 3733 | oh->flags |= DEBUG_OMAPUART_FLAGS; |
| 3734 | } |
| 3735 | } |
| 3736 | } |
| 3737 | } |
| 3738 | #endif |
| 3739 | |
| 3740 | /** |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3741 | * omap_hwmod_setup_all - set up all registered IP blocks |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3742 | * |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3743 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3747 | */ |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 3748 | static int __init omap_hwmod_setup_all(void) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3749 | { |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3750 | _ensure_mpu_hwmod_is_setup(NULL); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3751 | |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3752 | omap_hwmod_for_each(_init, NULL); |
Lokesh Vutla | 8dd6666 | 2017-01-20 10:39:10 -0800 | [diff] [blame] | 3753 | #ifdef CONFIG_SERIAL_EARLYCON |
| 3754 | omap_hwmod_setup_earlycon_flags(); |
| 3755 | #endif |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3756 | omap_hwmod_for_each(_setup, NULL); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3757 | |
| 3758 | return 0; |
| 3759 | } |
Tony Lindgren | 8dd5ea7 | 2015-12-03 11:38:09 -0800 | [diff] [blame] | 3760 | omap_postcore_initcall(omap_hwmod_setup_all); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3761 | |
| 3762 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3763 | * omap_hwmod_enable - enable an omap_hwmod |
| 3764 | * @oh: struct omap_hwmod * |
| 3765 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 3766 | * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable(). |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3767 | * Returns -EINVAL on error or passes along the return value from _enable(). |
| 3768 | */ |
| 3769 | int omap_hwmod_enable(struct omap_hwmod *oh) |
| 3770 | { |
| 3771 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3772 | unsigned long flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3773 | |
| 3774 | if (!oh) |
| 3775 | return -EINVAL; |
| 3776 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3777 | spin_lock_irqsave(&oh->_lock, flags); |
| 3778 | r = _enable(oh); |
| 3779 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3780 | |
| 3781 | return r; |
| 3782 | } |
| 3783 | |
| 3784 | /** |
| 3785 | * omap_hwmod_idle - idle an omap_hwmod |
| 3786 | * @oh: struct omap_hwmod * |
| 3787 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 3788 | * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle(). |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3789 | * Returns -EINVAL on error or passes along the return value from _idle(). |
| 3790 | */ |
| 3791 | int omap_hwmod_idle(struct omap_hwmod *oh) |
| 3792 | { |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3793 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3794 | unsigned long flags; |
| 3795 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3796 | if (!oh) |
| 3797 | return -EINVAL; |
| 3798 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3799 | spin_lock_irqsave(&oh->_lock, flags); |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3800 | r = _idle(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3801 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3802 | |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3803 | return r; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3804 | } |
| 3805 | |
| 3806 | /** |
| 3807 | * omap_hwmod_shutdown - shutdown an omap_hwmod |
| 3808 | * @oh: struct omap_hwmod * |
| 3809 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 3810 | * Shutdown an omap_hwmod @oh. Intended to be called by |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3811 | * omap_device_shutdown(). Returns -EINVAL on error or passes along |
| 3812 | * the return value from _shutdown(). |
| 3813 | */ |
| 3814 | int omap_hwmod_shutdown(struct omap_hwmod *oh) |
| 3815 | { |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3816 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3817 | unsigned long flags; |
| 3818 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3819 | if (!oh) |
| 3820 | return -EINVAL; |
| 3821 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3822 | spin_lock_irqsave(&oh->_lock, flags); |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3823 | r = _shutdown(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3824 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3825 | |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3826 | return r; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3827 | } |
| 3828 | |
Paul Walmsley | 5e8370f | 2012-04-18 19:10:06 -0600 | [diff] [blame] | 3829 | /* |
| 3830 | * IP block data retrieval functions |
| 3831 | */ |
| 3832 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3833 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3834 | * 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 | */ |
| 3844 | struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh) |
| 3845 | { |
| 3846 | struct clk *c; |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 3847 | struct omap_hwmod_ocp_if *oi; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3848 | struct clockdomain *clkdm; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3849 | struct clk_hw_omap *clk; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3850 | |
| 3851 | if (!oh) |
| 3852 | return NULL; |
| 3853 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3854 | if (oh->clkdm) |
| 3855 | return oh->clkdm->pwrdm.ptr; |
| 3856 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3857 | if (oh->_clk) { |
| 3858 | c = oh->_clk; |
| 3859 | } else { |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 3860 | oi = _find_mpu_rt_port(oh); |
| 3861 | if (!oi) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3862 | return NULL; |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 3863 | c = oi->_clk; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3864 | } |
| 3865 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3866 | clk = to_clk_hw_omap(__clk_get_hw(c)); |
| 3867 | clkdm = clk->clkdm; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3868 | if (!clkdm) |
Thara Gopinath | d5647c1 | 2010-03-31 04:16:29 -0600 | [diff] [blame] | 3869 | return NULL; |
| 3870 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3871 | return clkdm->pwrdm.ptr; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3872 | } |
| 3873 | |
| 3874 | /** |
Paul Walmsley | db2a60b | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 3875 | * 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 | */ |
| 3883 | void __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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3897 | /* |
| 3898 | * XXX what about functions for drivers to save/restore ocp_sysconfig |
| 3899 | * for context save/restore operations? |
| 3900 | */ |
| 3901 | |
| 3902 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3903 | * 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.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 3907 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3914 | */ |
| 3915 | int omap_hwmod_enable_wakeup(struct omap_hwmod *oh) |
| 3916 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3917 | unsigned long flags; |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 3918 | u32 v; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3919 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3920 | spin_lock_irqsave(&oh->_lock, flags); |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 3921 | |
| 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 Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3929 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3930 | |
| 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.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 3939 | * 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 Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3946 | */ |
| 3947 | int omap_hwmod_disable_wakeup(struct omap_hwmod *oh) |
| 3948 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3949 | unsigned long flags; |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 3950 | u32 v; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3951 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3952 | spin_lock_irqsave(&oh->_lock, flags); |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 3953 | |
| 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 Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3961 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3962 | |
| 3963 | return 0; |
| 3964 | } |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 3965 | |
| 3966 | /** |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3967 | * 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 | */ |
| 3978 | int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name) |
| 3979 | { |
| 3980 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3981 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3982 | |
| 3983 | if (!oh) |
| 3984 | return -EINVAL; |
| 3985 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3986 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3987 | ret = _assert_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3988 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3989 | |
| 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 | */ |
| 4005 | int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name) |
| 4006 | { |
| 4007 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4008 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 4009 | |
| 4010 | if (!oh) |
| 4011 | return -EINVAL; |
| 4012 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4013 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 4014 | ret = _deassert_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4015 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 4016 | |
| 4017 | return ret; |
| 4018 | } |
| 4019 | |
| 4020 | /** |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 4021 | * 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 Cousson | ce35b24 | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 4026 | * For each omap_hwmod of class @classname, call @fn. |
| 4027 | * If the callback function returns something other than |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 4028 | * 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 | */ |
| 4032 | int 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 Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 4046 | 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 Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 4056 | if (ret) |
| 4057 | pr_debug("omap_hwmod: %s: iterator terminated early: %d\n", |
| 4058 | __func__, ret); |
| 4059 | |
| 4060 | return ret; |
| 4061 | } |
| 4062 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4063 | /** |
| 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 Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 4068 | * Sets the hwmod state that @oh will enter at the end of _setup() |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 4069 | * (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 Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4073 | */ |
| 4074 | int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state) |
| 4075 | { |
| 4076 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4077 | unsigned long flags; |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4078 | |
| 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 Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4087 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4088 | |
| 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 | |
| 4097 | ohsps_unlock: |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4098 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 4099 | |
| 4100 | return ret; |
| 4101 | } |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 4102 | |
| 4103 | /** |
| 4104 | * omap_hwmod_get_context_loss_count - get lost context count |
| 4105 | * @oh: struct omap_hwmod * |
| 4106 | * |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 4107 | * Returns the context loss count of associated @oh |
| 4108 | * upon success, or zero if no context loss data is available. |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 4109 | * |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 4110 | * 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 Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 4113 | */ |
Tomi Valkeinen | fc01387 | 2011-06-09 16:56:23 +0300 | [diff] [blame] | 4114 | int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh) |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 4115 | { |
| 4116 | struct powerdomain *pwrdm; |
| 4117 | int ret = 0; |
| 4118 | |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 4119 | if (soc_ops.get_context_lost) |
| 4120 | return soc_ops.get_context_lost(oh); |
| 4121 | |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 4122 | pwrdm = omap_hwmod_get_pwrdm(oh); |
| 4123 | if (pwrdm) |
| 4124 | ret = pwrdm_get_context_loss_count(pwrdm); |
| 4125 | |
| 4126 | return ret; |
| 4127 | } |
Paul Walmsley | 43b0164 | 2011-03-10 03:50:07 -0700 | [diff] [blame] | 4128 | |
| 4129 | /** |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 4130 | * 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 | */ |
| 4136 | void __init omap_hwmod_init(void) |
| 4137 | { |
Paul Walmsley | ff4ae5d | 2012-10-21 01:01:11 -0600 | [diff] [blame] | 4138 | if (cpu_is_omap24xx()) { |
Tero Kristo | 9002e921 | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 4139 | soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready; |
Paul Walmsley | ff4ae5d | 2012-10-21 01:01:11 -0600 | [diff] [blame] | 4140 | 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 Kristo | 9002e921 | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 4144 | soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready; |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 4145 | 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 Kristo | 0385c58 | 2013-07-17 18:03:25 +0300 | [diff] [blame] | 4148 | soc_ops.init_clkdm = _init_clkdm; |
Rajendra Nayak | debcd1f | 2013-07-02 18:20:08 +0530 | [diff] [blame] | 4149 | } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) { |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 4150 | soc_ops.enable_module = _omap4_enable_module; |
| 4151 | soc_ops.disable_module = _omap4_disable_module; |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 4152 | soc_ops.wait_target_ready = _omap4_wait_target_ready; |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 4153 | 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 Hilman | 0a179ea | 2012-06-18 12:12:25 -0600 | [diff] [blame] | 4156 | soc_ops.init_clkdm = _init_clkdm; |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 4157 | soc_ops.update_context_lost = _omap4_update_context_lost; |
| 4158 | soc_ops.get_context_lost = _omap4_get_context_lost; |
Tero Kristo | 9fabc1a | 2016-07-04 14:11:48 +0300 | [diff] [blame] | 4159 | soc_ops.disable_direct_prcm = _omap4_disable_direct_prcm; |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 4160 | soc_ops.xlate_clkctrl = _omap4_xlate_clkctrl; |
Tony Lindgren | 0f3ccb2 | 2015-07-16 01:55:58 -0700 | [diff] [blame] | 4161 | } else if (cpu_is_ti814x() || cpu_is_ti816x() || soc_is_am33xx() || |
| 4162 | soc_is_am43xx()) { |
Afzal Mohammed | c8b428a | 2013-10-12 15:46:20 +0530 | [diff] [blame] | 4163 | 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 Kristo | 409d706 | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 4166 | soc_ops.assert_hardreset = _omap4_assert_hardreset; |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 4167 | soc_ops.deassert_hardreset = _am33xx_deassert_hardreset; |
Tero Kristo | a5bf00c | 2015-05-05 16:33:05 +0300 | [diff] [blame] | 4168 | soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted; |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 4169 | soc_ops.init_clkdm = _init_clkdm; |
Tero Kristo | 9fabc1a | 2016-07-04 14:11:48 +0300 | [diff] [blame] | 4170 | soc_ops.disable_direct_prcm = _omap4_disable_direct_prcm; |
Tero Kristo | 2b96be3 | 2017-08-09 11:57:12 +0300 | [diff] [blame] | 4171 | soc_ops.xlate_clkctrl = _omap4_xlate_clkctrl; |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 4172 | } else { |
| 4173 | WARN(1, "omap_hwmod: unknown SoC type\n"); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 4174 | } |
| 4175 | |
Tero Kristo | 70f05be | 2017-05-31 18:00:03 +0300 | [diff] [blame] | 4176 | _init_clkctrl_providers(); |
| 4177 | |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 4178 | inited = true; |
| 4179 | } |
Tony Lindgren | 68c9a95 | 2012-07-06 00:58:43 -0700 | [diff] [blame] | 4180 | |
| 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 | */ |
| 4188 | const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh) |
| 4189 | { |
| 4190 | if (!oh) |
| 4191 | return NULL; |
| 4192 | |
| 4193 | return oh->main_clk; |
| 4194 | } |