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> |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 141 | #include <linux/bootmem.h> |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 142 | #include <linux/cpu.h> |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 143 | #include <linux/of.h> |
| 144 | #include <linux/of_address.h> |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 145 | |
Paul Walmsley | fa20022 | 2013-01-26 00:48:56 -0700 | [diff] [blame] | 146 | #include <asm/system_misc.h> |
| 147 | |
Paul Walmsley | a135eaa | 2012-09-27 10:33:34 -0600 | [diff] [blame] | 148 | #include "clock.h" |
Tony Lindgren | 2a296c8 | 2012-10-02 17:41:35 -0700 | [diff] [blame] | 149 | #include "omap_hwmod.h" |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 150 | |
Tony Lindgren | dbc0416 | 2012-08-31 10:59:07 -0700 | [diff] [blame] | 151 | #include "soc.h" |
| 152 | #include "common.h" |
| 153 | #include "clockdomain.h" |
| 154 | #include "powerdomain.h" |
Paul Walmsley | ff4ae5d | 2012-10-21 01:01:11 -0600 | [diff] [blame] | 155 | #include "cm2xxx.h" |
| 156 | #include "cm3xxx.h" |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 157 | #include "cm33xx.h" |
Paul Walmsley | b13159a | 2012-10-29 20:57:44 -0600 | [diff] [blame] | 158 | #include "prm.h" |
Paul Walmsley | 139563a | 2012-10-21 01:01:10 -0600 | [diff] [blame] | 159 | #include "prm3xxx.h" |
Paul Walmsley | d198b51 | 2010-12-21 15:30:54 -0700 | [diff] [blame] | 160 | #include "prm44xx.h" |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 161 | #include "prm33xx.h" |
Benoit Cousson | eaac329 | 2011-07-10 05:56:31 -0600 | [diff] [blame] | 162 | #include "prminst44xx.h" |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 163 | #include "mux.h" |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 164 | #include "pm.h" |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 165 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 166 | /* Name of the OMAP hwmod for the MPU */ |
Benoit Cousson | 5c2c029 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 167 | #define MPU_INITIATOR_NAME "mpu" |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 168 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 169 | /* |
| 170 | * Number of struct omap_hwmod_link records per struct |
| 171 | * omap_hwmod_ocp_if record (master->slave and slave->master) |
| 172 | */ |
| 173 | #define LINKS_PER_OCP_IF 2 |
| 174 | |
Tero Kristo | 4ebf5b2 | 2015-05-05 16:33:04 +0300 | [diff] [blame] | 175 | /* |
| 176 | * Address offset (in bytes) between the reset control and the reset |
| 177 | * status registers: 4 bytes on OMAP4 |
| 178 | */ |
| 179 | #define OMAP4_RST_CTRL_ST_OFFSET 4 |
| 180 | |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 181 | /** |
| 182 | * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations |
| 183 | * @enable_module: function to enable a module (via MODULEMODE) |
| 184 | * @disable_module: function to disable a module (via MODULEMODE) |
| 185 | * |
| 186 | * XXX Eventually this functionality will be hidden inside the PRM/CM |
| 187 | * device drivers. Until then, this should avoid huge blocks of cpu_is_*() |
| 188 | * conditionals in this code. |
| 189 | */ |
| 190 | struct omap_hwmod_soc_ops { |
| 191 | void (*enable_module)(struct omap_hwmod *oh); |
| 192 | int (*disable_module)(struct omap_hwmod *oh); |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 193 | int (*wait_target_ready)(struct omap_hwmod *oh); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 194 | int (*assert_hardreset)(struct omap_hwmod *oh, |
| 195 | struct omap_hwmod_rst_info *ohri); |
| 196 | int (*deassert_hardreset)(struct omap_hwmod *oh, |
| 197 | struct omap_hwmod_rst_info *ohri); |
| 198 | int (*is_hardreset_asserted)(struct omap_hwmod *oh, |
| 199 | struct omap_hwmod_rst_info *ohri); |
Kevin Hilman | 0a179ea | 2012-06-18 12:12:25 -0600 | [diff] [blame] | 200 | int (*init_clkdm)(struct omap_hwmod *oh); |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 201 | void (*update_context_lost)(struct omap_hwmod *oh); |
| 202 | int (*get_context_lost)(struct omap_hwmod *oh); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 203 | }; |
| 204 | |
| 205 | /* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */ |
| 206 | static struct omap_hwmod_soc_ops soc_ops; |
| 207 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 208 | /* omap_hwmod_list contains all registered struct omap_hwmods */ |
| 209 | static LIST_HEAD(omap_hwmod_list); |
| 210 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 211 | /* mpu_oh: used to add/remove MPU initiator from sleepdep list */ |
| 212 | static struct omap_hwmod *mpu_oh; |
| 213 | |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 214 | /* io_chain_lock: used to serialize reconfigurations of the I/O chain */ |
| 215 | static DEFINE_SPINLOCK(io_chain_lock); |
| 216 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 217 | /* |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 218 | * linkspace: ptr to a buffer that struct omap_hwmod_link records are |
| 219 | * allocated from - used to reduce the number of small memory |
| 220 | * allocations, which has a significant impact on performance |
| 221 | */ |
| 222 | static struct omap_hwmod_link *linkspace; |
| 223 | |
| 224 | /* |
| 225 | * free_ls, max_ls: array indexes into linkspace; representing the |
| 226 | * next free struct omap_hwmod_link index, and the maximum number of |
| 227 | * struct omap_hwmod_link records allocated (respectively) |
| 228 | */ |
| 229 | static unsigned short free_ls, max_ls, ls_supp; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 230 | |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 231 | /* inited: set to true once the hwmod code is initialized */ |
| 232 | static bool inited; |
| 233 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 234 | /* Private functions */ |
| 235 | |
| 236 | /** |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 237 | * _fetch_next_ocp_if - return the next OCP interface in a list |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 238 | * @p: ptr to a ptr to the list_head inside the ocp_if to return |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 239 | * @i: pointer to the index of the element pointed to by @p in the list |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 240 | * |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 241 | * Return a pointer to the struct omap_hwmod_ocp_if record |
| 242 | * containing the struct list_head pointed to by @p, and increment |
| 243 | * @p such that a future call to this routine will return the next |
| 244 | * record. |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 245 | */ |
| 246 | static struct omap_hwmod_ocp_if *_fetch_next_ocp_if(struct list_head **p, |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 247 | int *i) |
| 248 | { |
| 249 | struct omap_hwmod_ocp_if *oi; |
| 250 | |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 251 | oi = list_entry(*p, struct omap_hwmod_link, node)->ocp_if; |
| 252 | *p = (*p)->next; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 253 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 254 | *i = *i + 1; |
| 255 | |
| 256 | return oi; |
| 257 | } |
| 258 | |
| 259 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 260 | * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy |
| 261 | * @oh: struct omap_hwmod * |
| 262 | * |
| 263 | * Load the current value of the hwmod OCP_SYSCONFIG register into the |
| 264 | * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no |
| 265 | * OCP_SYSCONFIG register or 0 upon success. |
| 266 | */ |
| 267 | static int _update_sysc_cache(struct omap_hwmod *oh) |
| 268 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 269 | if (!oh->class->sysc) { |
| 270 | 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] | 271 | return -EINVAL; |
| 272 | } |
| 273 | |
| 274 | /* XXX ensure module interface clock is up */ |
| 275 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 276 | oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 277 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 278 | if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE)) |
Thara Gopinath | 883edfd | 2010-01-19 17:30:51 -0700 | [diff] [blame] | 279 | oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 280 | |
| 281 | return 0; |
| 282 | } |
| 283 | |
| 284 | /** |
| 285 | * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register |
| 286 | * @v: OCP_SYSCONFIG value to write |
| 287 | * @oh: struct omap_hwmod * |
| 288 | * |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 289 | * Write @v into the module class' OCP_SYSCONFIG register, if it has |
| 290 | * one. No return value. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 291 | */ |
| 292 | static void _write_sysconfig(u32 v, struct omap_hwmod *oh) |
| 293 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 294 | if (!oh->class->sysc) { |
| 295 | 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] | 296 | return; |
| 297 | } |
| 298 | |
| 299 | /* XXX ensure module interface clock is up */ |
| 300 | |
Rajendra Nayak | 233cbe5 | 2010-12-14 12:42:36 -0700 | [diff] [blame] | 301 | /* Module might have lost context, always update cache and register */ |
| 302 | oh->_sysc_cache = v; |
Lokesh Vutla | aaf2c0f | 2015-06-10 14:56:24 +0530 | [diff] [blame] | 303 | |
| 304 | /* |
| 305 | * Some IP blocks (such as RTC) require unlocking of IP before |
| 306 | * accessing its registers. If a function pointer is present |
| 307 | * to unlock, then call it before accessing sysconfig and |
| 308 | * call lock after writing sysconfig. |
| 309 | */ |
| 310 | if (oh->class->unlock) |
| 311 | oh->class->unlock(oh); |
| 312 | |
Rajendra Nayak | 233cbe5 | 2010-12-14 12:42:36 -0700 | [diff] [blame] | 313 | omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs); |
Lokesh Vutla | aaf2c0f | 2015-06-10 14:56:24 +0530 | [diff] [blame] | 314 | |
| 315 | if (oh->class->lock) |
| 316 | oh->class->lock(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /** |
| 320 | * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v |
| 321 | * @oh: struct omap_hwmod * |
| 322 | * @standbymode: MIDLEMODE field bits |
| 323 | * @v: pointer to register contents to modify |
| 324 | * |
| 325 | * Update the master standby mode bits in @v to be @standbymode for |
| 326 | * the @oh hwmod. Does not write to the hardware. Returns -EINVAL |
| 327 | * upon error or 0 upon success. |
| 328 | */ |
| 329 | static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode, |
| 330 | u32 *v) |
| 331 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 332 | u32 mstandby_mask; |
| 333 | u8 mstandby_shift; |
| 334 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 335 | if (!oh->class->sysc || |
| 336 | !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 337 | return -EINVAL; |
| 338 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 339 | if (!oh->class->sysc->sysc_fields) { |
| 340 | 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] | 341 | return -EINVAL; |
| 342 | } |
| 343 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 344 | mstandby_shift = oh->class->sysc->sysc_fields->midle_shift; |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 345 | mstandby_mask = (0x3 << mstandby_shift); |
| 346 | |
| 347 | *v &= ~mstandby_mask; |
| 348 | *v |= __ffs(standbymode) << mstandby_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 349 | |
| 350 | return 0; |
| 351 | } |
| 352 | |
| 353 | /** |
| 354 | * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v |
| 355 | * @oh: struct omap_hwmod * |
| 356 | * @idlemode: SIDLEMODE field bits |
| 357 | * @v: pointer to register contents to modify |
| 358 | * |
| 359 | * Update the slave idle mode bits in @v to be @idlemode for the @oh |
| 360 | * hwmod. Does not write to the hardware. Returns -EINVAL upon error |
| 361 | * or 0 upon success. |
| 362 | */ |
| 363 | static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v) |
| 364 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 365 | u32 sidle_mask; |
| 366 | u8 sidle_shift; |
| 367 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 368 | if (!oh->class->sysc || |
| 369 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 370 | return -EINVAL; |
| 371 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 372 | if (!oh->class->sysc->sysc_fields) { |
| 373 | 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] | 374 | return -EINVAL; |
| 375 | } |
| 376 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 377 | sidle_shift = oh->class->sysc->sysc_fields->sidle_shift; |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 378 | sidle_mask = (0x3 << sidle_shift); |
| 379 | |
| 380 | *v &= ~sidle_mask; |
| 381 | *v |= __ffs(idlemode) << sidle_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 382 | |
| 383 | return 0; |
| 384 | } |
| 385 | |
| 386 | /** |
| 387 | * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v |
| 388 | * @oh: struct omap_hwmod * |
| 389 | * @clockact: CLOCKACTIVITY field bits |
| 390 | * @v: pointer to register contents to modify |
| 391 | * |
| 392 | * Update the clockactivity mode bits in @v to be @clockact for the |
| 393 | * @oh hwmod. Used for additional powersaving on some modules. Does |
| 394 | * not write to the hardware. Returns -EINVAL upon error or 0 upon |
| 395 | * success. |
| 396 | */ |
| 397 | static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v) |
| 398 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 399 | u32 clkact_mask; |
| 400 | u8 clkact_shift; |
| 401 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 402 | if (!oh->class->sysc || |
| 403 | !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 404 | return -EINVAL; |
| 405 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 406 | if (!oh->class->sysc->sysc_fields) { |
| 407 | 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] | 408 | return -EINVAL; |
| 409 | } |
| 410 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 411 | clkact_shift = oh->class->sysc->sysc_fields->clkact_shift; |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 412 | clkact_mask = (0x3 << clkact_shift); |
| 413 | |
| 414 | *v &= ~clkact_mask; |
| 415 | *v |= clockact << clkact_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 416 | |
| 417 | return 0; |
| 418 | } |
| 419 | |
| 420 | /** |
Roger Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 421 | * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 422 | * @oh: struct omap_hwmod * |
| 423 | * @v: pointer to register contents to modify |
| 424 | * |
| 425 | * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon |
| 426 | * error or 0 upon success. |
| 427 | */ |
| 428 | static int _set_softreset(struct omap_hwmod *oh, u32 *v) |
| 429 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 430 | u32 softrst_mask; |
| 431 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 432 | if (!oh->class->sysc || |
| 433 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 434 | return -EINVAL; |
| 435 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 436 | if (!oh->class->sysc->sysc_fields) { |
| 437 | 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] | 438 | return -EINVAL; |
| 439 | } |
| 440 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 441 | softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 442 | |
| 443 | *v |= softrst_mask; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 444 | |
| 445 | return 0; |
| 446 | } |
| 447 | |
| 448 | /** |
Roger Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 449 | * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v |
| 450 | * @oh: struct omap_hwmod * |
| 451 | * @v: pointer to register contents to modify |
| 452 | * |
| 453 | * Clear the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon |
| 454 | * error or 0 upon success. |
| 455 | */ |
| 456 | static int _clear_softreset(struct omap_hwmod *oh, u32 *v) |
| 457 | { |
| 458 | u32 softrst_mask; |
| 459 | |
| 460 | if (!oh->class->sysc || |
| 461 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET)) |
| 462 | return -EINVAL; |
| 463 | |
| 464 | if (!oh->class->sysc->sysc_fields) { |
| 465 | WARN(1, |
| 466 | "omap_hwmod: %s: sysc_fields absent for sysconfig class\n", |
| 467 | oh->name); |
| 468 | return -EINVAL; |
| 469 | } |
| 470 | |
| 471 | softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift); |
| 472 | |
| 473 | *v &= ~softrst_mask; |
| 474 | |
| 475 | return 0; |
| 476 | } |
| 477 | |
| 478 | /** |
Tero Kristo | 613ad0e | 2012-10-29 22:02:13 -0600 | [diff] [blame] | 479 | * _wait_softreset_complete - wait for an OCP softreset to complete |
| 480 | * @oh: struct omap_hwmod * to wait on |
| 481 | * |
| 482 | * Wait until the IP block represented by @oh reports that its OCP |
| 483 | * softreset is complete. This can be triggered by software (see |
| 484 | * _ocp_softreset()) or by hardware upon returning from off-mode (one |
| 485 | * example is HSMMC). Waits for up to MAX_MODULE_SOFTRESET_WAIT |
| 486 | * microseconds. Returns the number of microseconds waited. |
| 487 | */ |
| 488 | static int _wait_softreset_complete(struct omap_hwmod *oh) |
| 489 | { |
| 490 | struct omap_hwmod_class_sysconfig *sysc; |
| 491 | u32 softrst_mask; |
| 492 | int c = 0; |
| 493 | |
| 494 | sysc = oh->class->sysc; |
| 495 | |
| 496 | if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS) |
| 497 | omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs) |
| 498 | & SYSS_RESETDONE_MASK), |
| 499 | MAX_MODULE_SOFTRESET_WAIT, c); |
| 500 | else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) { |
| 501 | softrst_mask = (0x1 << sysc->sysc_fields->srst_shift); |
| 502 | omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs) |
| 503 | & softrst_mask), |
| 504 | MAX_MODULE_SOFTRESET_WAIT, c); |
| 505 | } |
| 506 | |
| 507 | return c; |
| 508 | } |
| 509 | |
| 510 | /** |
Kishon Vijay Abraham I | 6668546 | 2012-07-04 05:09:21 -0600 | [diff] [blame] | 511 | * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v |
| 512 | * @oh: struct omap_hwmod * |
| 513 | * |
| 514 | * The DMADISABLE bit is a semi-automatic bit present in sysconfig register |
| 515 | * of some modules. When the DMA must perform read/write accesses, the |
| 516 | * DMADISABLE bit is cleared by the hardware. But when the DMA must stop |
| 517 | * for power management, software must set the DMADISABLE bit back to 1. |
| 518 | * |
| 519 | * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon |
| 520 | * error or 0 upon success. |
| 521 | */ |
| 522 | static int _set_dmadisable(struct omap_hwmod *oh) |
| 523 | { |
| 524 | u32 v; |
| 525 | u32 dmadisable_mask; |
| 526 | |
| 527 | if (!oh->class->sysc || |
| 528 | !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE)) |
| 529 | return -EINVAL; |
| 530 | |
| 531 | if (!oh->class->sysc->sysc_fields) { |
| 532 | WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name); |
| 533 | return -EINVAL; |
| 534 | } |
| 535 | |
| 536 | /* clocks must be on for this operation */ |
| 537 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
| 538 | pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name); |
| 539 | return -EINVAL; |
| 540 | } |
| 541 | |
| 542 | pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name); |
| 543 | |
| 544 | v = oh->_sysc_cache; |
| 545 | dmadisable_mask = |
| 546 | (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift); |
| 547 | v |= dmadisable_mask; |
| 548 | _write_sysconfig(v, oh); |
| 549 | |
| 550 | return 0; |
| 551 | } |
| 552 | |
| 553 | /** |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 554 | * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v |
| 555 | * @oh: struct omap_hwmod * |
| 556 | * @autoidle: desired AUTOIDLE bitfield value (0 or 1) |
| 557 | * @v: pointer to register contents to modify |
| 558 | * |
| 559 | * Update the module autoidle bit in @v to be @autoidle for the @oh |
| 560 | * hwmod. The autoidle bit controls whether the module can gate |
| 561 | * internal clocks automatically when it isn't doing anything; the |
| 562 | * exact function of this bit varies on a per-module basis. This |
| 563 | * function does not write to the hardware. Returns -EINVAL upon |
| 564 | * error or 0 upon success. |
| 565 | */ |
| 566 | static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle, |
| 567 | u32 *v) |
| 568 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 569 | u32 autoidle_mask; |
| 570 | u8 autoidle_shift; |
| 571 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 572 | if (!oh->class->sysc || |
| 573 | !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE)) |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 574 | return -EINVAL; |
| 575 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 576 | if (!oh->class->sysc->sysc_fields) { |
| 577 | 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] | 578 | return -EINVAL; |
| 579 | } |
| 580 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 581 | autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift; |
Tarun Kanti DebBarma | 8985b63 | 2011-03-03 14:22:46 -0700 | [diff] [blame] | 582 | autoidle_mask = (0x1 << autoidle_shift); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 583 | |
| 584 | *v &= ~autoidle_mask; |
| 585 | *v |= autoidle << autoidle_shift; |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 586 | |
| 587 | return 0; |
| 588 | } |
| 589 | |
| 590 | /** |
Govindraj R | eceec00 | 2011-12-16 14:36:58 -0700 | [diff] [blame] | 591 | * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux |
| 592 | * @oh: struct omap_hwmod * |
| 593 | * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable |
| 594 | * |
| 595 | * Set or clear the I/O pad wakeup flag in the mux entries for the |
| 596 | * hwmod @oh. This function changes the @oh->mux->pads_dynamic array |
| 597 | * in memory. If the hwmod is currently idled, and the new idle |
| 598 | * values don't match the previous ones, this function will also |
| 599 | * update the SCM PADCTRL registers. Otherwise, if the hwmod is not |
| 600 | * currently idled, this function won't touch the hardware: the new |
| 601 | * mux settings are written to the SCM PADCTRL registers when the |
| 602 | * hwmod is idled. No return value. |
| 603 | */ |
| 604 | static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake) |
| 605 | { |
| 606 | struct omap_device_pad *pad; |
| 607 | bool change = false; |
| 608 | u16 prev_idle; |
| 609 | int j; |
| 610 | |
| 611 | if (!oh->mux || !oh->mux->enabled) |
| 612 | return; |
| 613 | |
| 614 | for (j = 0; j < oh->mux->nr_pads_dynamic; j++) { |
| 615 | pad = oh->mux->pads_dynamic[j]; |
| 616 | |
| 617 | if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP)) |
| 618 | continue; |
| 619 | |
| 620 | prev_idle = pad->idle; |
| 621 | |
| 622 | if (set_wake) |
| 623 | pad->idle |= OMAP_WAKEUP_EN; |
| 624 | else |
| 625 | pad->idle &= ~OMAP_WAKEUP_EN; |
| 626 | |
| 627 | if (prev_idle != pad->idle) |
| 628 | change = true; |
| 629 | } |
| 630 | |
| 631 | if (change && oh->_state == _HWMOD_STATE_IDLE) |
| 632 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE); |
| 633 | } |
| 634 | |
| 635 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 636 | * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware |
| 637 | * @oh: struct omap_hwmod * |
| 638 | * |
| 639 | * Allow the hardware module @oh to send wakeups. Returns -EINVAL |
| 640 | * upon error or 0 upon success. |
| 641 | */ |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 642 | static int _enable_wakeup(struct omap_hwmod *oh, u32 *v) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 643 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 644 | if (!oh->class->sysc || |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 645 | !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) || |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 646 | (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) || |
| 647 | (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP))) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 648 | return -EINVAL; |
| 649 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 650 | if (!oh->class->sysc->sysc_fields) { |
| 651 | 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] | 652 | return -EINVAL; |
| 653 | } |
| 654 | |
Benoit Cousson | 1fe7411 | 2011-07-01 22:54:03 +0200 | [diff] [blame] | 655 | if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) |
| 656 | *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 657 | |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 658 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) |
| 659 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v); |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 660 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 661 | _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v); |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 662 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 663 | /* XXX test pwrdm_get_wken for this hwmod's subsystem */ |
| 664 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 665 | return 0; |
| 666 | } |
| 667 | |
| 668 | /** |
| 669 | * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware |
| 670 | * @oh: struct omap_hwmod * |
| 671 | * |
| 672 | * Prevent the hardware module @oh to send wakeups. Returns -EINVAL |
| 673 | * upon error or 0 upon success. |
| 674 | */ |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 675 | static int _disable_wakeup(struct omap_hwmod *oh, u32 *v) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 676 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 677 | if (!oh->class->sysc || |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 678 | !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) || |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 679 | (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) || |
| 680 | (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP))) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 681 | return -EINVAL; |
| 682 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 683 | if (!oh->class->sysc->sysc_fields) { |
| 684 | 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] | 685 | return -EINVAL; |
| 686 | } |
| 687 | |
Benoit Cousson | 1fe7411 | 2011-07-01 22:54:03 +0200 | [diff] [blame] | 688 | if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) |
| 689 | *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 690 | |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 691 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) |
| 692 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v); |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 693 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
Djamil Elaidi | 561038f | 2012-06-17 11:57:51 -0600 | [diff] [blame] | 694 | _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v); |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 695 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 696 | /* XXX test pwrdm_get_wken for this hwmod's subsystem */ |
| 697 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 698 | return 0; |
| 699 | } |
| 700 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 701 | static struct clockdomain *_get_clkdm(struct omap_hwmod *oh) |
| 702 | { |
Rajendra Nayak | c4a1ea2 | 2012-04-27 16:32:53 +0530 | [diff] [blame] | 703 | struct clk_hw_omap *clk; |
| 704 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 705 | if (oh->clkdm) { |
| 706 | return oh->clkdm; |
| 707 | } else if (oh->_clk) { |
Tero Kristo | 924f949 | 2013-07-12 12:26:41 +0300 | [diff] [blame] | 708 | if (__clk_get_flags(oh->_clk) & CLK_IS_BASIC) |
| 709 | return NULL; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 710 | clk = to_clk_hw_omap(__clk_get_hw(oh->_clk)); |
| 711 | return clk->clkdm; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 712 | } |
| 713 | return NULL; |
| 714 | } |
| 715 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 716 | /** |
| 717 | * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active |
| 718 | * @oh: struct omap_hwmod * |
| 719 | * |
| 720 | * Prevent the hardware module @oh from entering idle while the |
| 721 | * hardare module initiator @init_oh is active. Useful when a module |
| 722 | * will be accessed by a particular initiator (e.g., if a module will |
| 723 | * be accessed by the IVA, there should be a sleepdep between the IVA |
| 724 | * initiator and the module). Only applies to modules in smart-idle |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 725 | * mode. If the clockdomain is marked as not needing autodeps, return |
| 726 | * 0 without doing anything. Otherwise, returns -EINVAL upon error or |
| 727 | * passes along clkdm_add_sleepdep() value upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 728 | */ |
| 729 | static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh) |
| 730 | { |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 731 | struct clockdomain *clkdm, *init_clkdm; |
| 732 | |
| 733 | clkdm = _get_clkdm(oh); |
| 734 | init_clkdm = _get_clkdm(init_oh); |
| 735 | |
| 736 | if (!clkdm || !init_clkdm) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 737 | return -EINVAL; |
| 738 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 739 | if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS) |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 740 | return 0; |
| 741 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 742 | return clkdm_add_sleepdep(clkdm, init_clkdm); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | /** |
| 746 | * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active |
| 747 | * @oh: struct omap_hwmod * |
| 748 | * |
| 749 | * Allow the hardware module @oh to enter idle while the hardare |
| 750 | * module initiator @init_oh is active. Useful when a module will not |
| 751 | * be accessed by a particular initiator (e.g., if a module will not |
| 752 | * be accessed by the IVA, there should be no sleepdep between the IVA |
| 753 | * initiator and the module). Only applies to modules in smart-idle |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 754 | * mode. If the clockdomain is marked as not needing autodeps, return |
| 755 | * 0 without doing anything. Returns -EINVAL upon error or passes |
| 756 | * along clkdm_del_sleepdep() value upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 757 | */ |
| 758 | static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh) |
| 759 | { |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 760 | struct clockdomain *clkdm, *init_clkdm; |
| 761 | |
| 762 | clkdm = _get_clkdm(oh); |
| 763 | init_clkdm = _get_clkdm(init_oh); |
| 764 | |
| 765 | if (!clkdm || !init_clkdm) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 766 | return -EINVAL; |
| 767 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 768 | if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS) |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 769 | return 0; |
| 770 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 771 | return clkdm_del_sleepdep(clkdm, init_clkdm); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | /** |
| 775 | * _init_main_clk - get a struct clk * for the the hwmod's main functional clk |
| 776 | * @oh: struct omap_hwmod * |
| 777 | * |
| 778 | * Called from _init_clocks(). Populates the @oh _clk (main |
| 779 | * functional clock pointer) if a main_clk is present. Returns 0 on |
| 780 | * success or -EINVAL on error. |
| 781 | */ |
| 782 | static int _init_main_clk(struct omap_hwmod *oh) |
| 783 | { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 784 | int ret = 0; |
| 785 | |
Paul Walmsley | 50ebdac | 2010-02-22 22:09:31 -0700 | [diff] [blame] | 786 | if (!oh->main_clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 787 | return 0; |
| 788 | |
Rajendra Nayak | 6ea74cb | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 789 | oh->_clk = clk_get(NULL, oh->main_clk); |
| 790 | if (IS_ERR(oh->_clk)) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 791 | pr_warn("omap_hwmod: %s: cannot clk_get main_clk %s\n", |
| 792 | oh->name, oh->main_clk); |
Benoit Cousson | 6340338 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 793 | return -EINVAL; |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 794 | } |
Rajendra Nayak | 4d7cb45 | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 795 | /* |
| 796 | * HACK: This needs a re-visit once clk_prepare() is implemented |
| 797 | * to do something meaningful. Today its just a no-op. |
| 798 | * If clk_prepare() is used at some point to do things like |
| 799 | * voltage scaling etc, then this would have to be moved to |
| 800 | * some point where subsystems like i2c and pmic become |
| 801 | * available. |
| 802 | */ |
| 803 | clk_prepare(oh->_clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 804 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 805 | if (!_get_clkdm(oh)) |
Paul Walmsley | 3bb05db | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 806 | pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n", |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 807 | oh->name, oh->main_clk); |
Kevin Hilman | 81d7c6f | 2009-12-08 16:34:24 -0700 | [diff] [blame] | 808 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 809 | return ret; |
| 810 | } |
| 811 | |
| 812 | /** |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 813 | * _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] | 814 | * @oh: struct omap_hwmod * |
| 815 | * |
| 816 | * Called from _init_clocks(). Populates the @oh OCP slave interface |
| 817 | * clock pointers. Returns 0 on success or -EINVAL on error. |
| 818 | */ |
| 819 | static int _init_interface_clks(struct omap_hwmod *oh) |
| 820 | { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 821 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 822 | struct list_head *p; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 823 | struct clk *c; |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 824 | int i = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 825 | int ret = 0; |
| 826 | |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 827 | p = oh->slave_ports.next; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 828 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 829 | while (i < oh->slaves_cnt) { |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 830 | os = _fetch_next_ocp_if(&p, &i); |
Paul Walmsley | 50ebdac | 2010-02-22 22:09:31 -0700 | [diff] [blame] | 831 | if (!os->clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 832 | continue; |
| 833 | |
Rajendra Nayak | 6ea74cb | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 834 | c = clk_get(NULL, os->clk); |
| 835 | if (IS_ERR(c)) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 836 | pr_warn("omap_hwmod: %s: cannot clk_get interface_clk %s\n", |
| 837 | oh->name, os->clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 838 | ret = -EINVAL; |
Nishanth Menon | 0e7dc86 | 2013-12-08 18:39:03 -0700 | [diff] [blame] | 839 | continue; |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 840 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 841 | os->_clk = c; |
Rajendra Nayak | 4d7cb45 | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 842 | /* |
| 843 | * HACK: This needs a re-visit once clk_prepare() is implemented |
| 844 | * to do something meaningful. Today its just a no-op. |
| 845 | * If clk_prepare() is used at some point to do things like |
| 846 | * voltage scaling etc, then this would have to be moved to |
| 847 | * some point where subsystems like i2c and pmic become |
| 848 | * available. |
| 849 | */ |
| 850 | clk_prepare(os->_clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | return ret; |
| 854 | } |
| 855 | |
| 856 | /** |
| 857 | * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks |
| 858 | * @oh: struct omap_hwmod * |
| 859 | * |
| 860 | * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk |
| 861 | * clock pointers. Returns 0 on success or -EINVAL on error. |
| 862 | */ |
| 863 | static int _init_opt_clks(struct omap_hwmod *oh) |
| 864 | { |
| 865 | struct omap_hwmod_opt_clk *oc; |
| 866 | struct clk *c; |
| 867 | int i; |
| 868 | int ret = 0; |
| 869 | |
| 870 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) { |
Rajendra Nayak | 6ea74cb | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 871 | c = clk_get(NULL, oc->clk); |
| 872 | if (IS_ERR(c)) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 873 | pr_warn("omap_hwmod: %s: cannot clk_get opt_clk %s\n", |
| 874 | oh->name, oc->clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 875 | ret = -EINVAL; |
Nishanth Menon | 0e7dc86 | 2013-12-08 18:39:03 -0700 | [diff] [blame] | 876 | continue; |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 877 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 878 | oc->_clk = c; |
Rajendra Nayak | 4d7cb45 | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 879 | /* |
| 880 | * HACK: This needs a re-visit once clk_prepare() is implemented |
| 881 | * to do something meaningful. Today its just a no-op. |
| 882 | * If clk_prepare() is used at some point to do things like |
| 883 | * voltage scaling etc, then this would have to be moved to |
| 884 | * some point where subsystems like i2c and pmic become |
| 885 | * available. |
| 886 | */ |
| 887 | clk_prepare(oc->_clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 888 | } |
| 889 | |
| 890 | return ret; |
| 891 | } |
| 892 | |
| 893 | /** |
| 894 | * _enable_clocks - enable hwmod main clock and interface clocks |
| 895 | * @oh: struct omap_hwmod * |
| 896 | * |
| 897 | * Enables all clocks necessary for register reads and writes to succeed |
| 898 | * on the hwmod @oh. Returns 0. |
| 899 | */ |
| 900 | static int _enable_clocks(struct omap_hwmod *oh) |
| 901 | { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 902 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 903 | struct list_head *p; |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 904 | int i = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 905 | |
| 906 | pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name); |
| 907 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 908 | if (oh->_clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 909 | clk_enable(oh->_clk); |
| 910 | |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 911 | p = oh->slave_ports.next; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 912 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 913 | while (i < oh->slaves_cnt) { |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 914 | os = _fetch_next_ocp_if(&p, &i); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 915 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 916 | if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE)) |
| 917 | clk_enable(os->_clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 918 | } |
| 919 | |
| 920 | /* The opt clocks are controlled by the device driver. */ |
| 921 | |
| 922 | return 0; |
| 923 | } |
| 924 | |
| 925 | /** |
| 926 | * _disable_clocks - disable hwmod main clock and interface clocks |
| 927 | * @oh: struct omap_hwmod * |
| 928 | * |
| 929 | * Disables the hwmod @oh main functional and interface clocks. Returns 0. |
| 930 | */ |
| 931 | static int _disable_clocks(struct omap_hwmod *oh) |
| 932 | { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 933 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 934 | struct list_head *p; |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 935 | int i = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 936 | |
| 937 | pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name); |
| 938 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 939 | if (oh->_clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 940 | clk_disable(oh->_clk); |
| 941 | |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 942 | p = oh->slave_ports.next; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 943 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 944 | while (i < oh->slaves_cnt) { |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 945 | os = _fetch_next_ocp_if(&p, &i); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 946 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 947 | if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE)) |
| 948 | clk_disable(os->_clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 949 | } |
| 950 | |
| 951 | /* The opt clocks are controlled by the device driver. */ |
| 952 | |
| 953 | return 0; |
| 954 | } |
| 955 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 956 | static void _enable_optional_clocks(struct omap_hwmod *oh) |
| 957 | { |
| 958 | struct omap_hwmod_opt_clk *oc; |
| 959 | int i; |
| 960 | |
| 961 | pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name); |
| 962 | |
| 963 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
| 964 | if (oc->_clk) { |
| 965 | pr_debug("omap_hwmod: enable %s:%s\n", oc->role, |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 966 | __clk_get_name(oc->_clk)); |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 967 | clk_enable(oc->_clk); |
| 968 | } |
| 969 | } |
| 970 | |
| 971 | static void _disable_optional_clocks(struct omap_hwmod *oh) |
| 972 | { |
| 973 | struct omap_hwmod_opt_clk *oc; |
| 974 | int i; |
| 975 | |
| 976 | pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name); |
| 977 | |
| 978 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
| 979 | if (oc->_clk) { |
| 980 | pr_debug("omap_hwmod: disable %s:%s\n", oc->role, |
Rajendra Nayak | 5dcc3b9 | 2012-09-22 02:24:17 -0600 | [diff] [blame] | 981 | __clk_get_name(oc->_clk)); |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 982 | clk_disable(oc->_clk); |
| 983 | } |
| 984 | } |
| 985 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 986 | /** |
Kevin Hilman | 3d9f032 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 987 | * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4 |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 988 | * @oh: struct omap_hwmod * |
| 989 | * |
| 990 | * Enables the PRCM module mode related to the hwmod @oh. |
| 991 | * No return value. |
| 992 | */ |
Kevin Hilman | 3d9f032 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 993 | static void _omap4_enable_module(struct omap_hwmod *oh) |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 994 | { |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 995 | if (!oh->clkdm || !oh->prcm.omap4.modulemode) |
| 996 | return; |
| 997 | |
Kevin Hilman | 3d9f032 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 998 | pr_debug("omap_hwmod: %s: %s: %d\n", |
| 999 | oh->name, __func__, oh->prcm.omap4.modulemode); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1000 | |
Tero Kristo | 128603f | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 1001 | omap_cm_module_enable(oh->prcm.omap4.modulemode, |
| 1002 | oh->clkdm->prcm_partition, |
| 1003 | oh->clkdm->cm_inst, oh->prcm.omap4.clkctrl_offs); |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | /** |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 1007 | * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4 |
| 1008 | * @oh: struct omap_hwmod * |
| 1009 | * |
| 1010 | * Wait for a module @oh to enter slave idle. Returns 0 if the module |
| 1011 | * does not have an IDLEST bit or if the module successfully enters |
| 1012 | * slave idle; otherwise, pass along the return value of the |
| 1013 | * appropriate *_cm*_wait_module_idle() function. |
| 1014 | */ |
| 1015 | static int _omap4_wait_target_disable(struct omap_hwmod *oh) |
| 1016 | { |
Paul Walmsley | 2b026d1 | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 1017 | if (!oh) |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 1018 | return -EINVAL; |
| 1019 | |
Paul Walmsley | 2b026d1 | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 1020 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm) |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 1021 | return 0; |
| 1022 | |
| 1023 | if (oh->flags & HWMOD_NO_IDLEST) |
| 1024 | return 0; |
| 1025 | |
Tero Kristo | a8ae5af | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 1026 | return omap_cm_wait_module_idle(oh->clkdm->prcm_partition, |
| 1027 | oh->clkdm->cm_inst, |
| 1028 | oh->prcm.omap4.clkctrl_offs, 0); |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 1029 | } |
| 1030 | |
| 1031 | /** |
Paul Walmsley | 212738a | 2011-07-09 19:14:06 -0600 | [diff] [blame] | 1032 | * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh |
| 1033 | * @oh: struct omap_hwmod *oh |
| 1034 | * |
| 1035 | * Count and return the number of MPU IRQs associated with the hwmod |
| 1036 | * @oh. Used to allocate struct resource data. Returns 0 if @oh is |
| 1037 | * NULL. |
| 1038 | */ |
| 1039 | static int _count_mpu_irqs(struct omap_hwmod *oh) |
| 1040 | { |
| 1041 | struct omap_hwmod_irq_info *ohii; |
| 1042 | int i = 0; |
| 1043 | |
| 1044 | if (!oh || !oh->mpu_irqs) |
| 1045 | return 0; |
| 1046 | |
| 1047 | do { |
| 1048 | ohii = &oh->mpu_irqs[i++]; |
| 1049 | } while (ohii->irq != -1); |
| 1050 | |
sricharan | cc1b0765 | 2011-11-23 14:35:07 -0800 | [diff] [blame] | 1051 | return i-1; |
Paul Walmsley | 212738a | 2011-07-09 19:14:06 -0600 | [diff] [blame] | 1052 | } |
| 1053 | |
| 1054 | /** |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 1055 | * _count_sdma_reqs - count the number of SDMA request lines associated with @oh |
| 1056 | * @oh: struct omap_hwmod *oh |
| 1057 | * |
| 1058 | * Count and return the number of SDMA request lines associated with |
| 1059 | * the hwmod @oh. Used to allocate struct resource data. Returns 0 |
| 1060 | * if @oh is NULL. |
| 1061 | */ |
| 1062 | static int _count_sdma_reqs(struct omap_hwmod *oh) |
| 1063 | { |
| 1064 | struct omap_hwmod_dma_info *ohdi; |
| 1065 | int i = 0; |
| 1066 | |
| 1067 | if (!oh || !oh->sdma_reqs) |
| 1068 | return 0; |
| 1069 | |
| 1070 | do { |
| 1071 | ohdi = &oh->sdma_reqs[i++]; |
| 1072 | } while (ohdi->dma_req != -1); |
| 1073 | |
sricharan | cc1b0765 | 2011-11-23 14:35:07 -0800 | [diff] [blame] | 1074 | return i-1; |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 1075 | } |
| 1076 | |
| 1077 | /** |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 1078 | * _count_ocp_if_addr_spaces - count the number of address space entries for @oh |
| 1079 | * @oh: struct omap_hwmod *oh |
| 1080 | * |
| 1081 | * Count and return the number of address space ranges associated with |
| 1082 | * the hwmod @oh. Used to allocate struct resource data. Returns 0 |
| 1083 | * if @oh is NULL. |
| 1084 | */ |
| 1085 | static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os) |
| 1086 | { |
| 1087 | struct omap_hwmod_addr_space *mem; |
| 1088 | int i = 0; |
| 1089 | |
| 1090 | if (!os || !os->addr) |
| 1091 | return 0; |
| 1092 | |
| 1093 | do { |
| 1094 | mem = &os->addr[i++]; |
| 1095 | } while (mem->pa_start != mem->pa_end); |
| 1096 | |
sricharan | cc1b0765 | 2011-11-23 14:35:07 -0800 | [diff] [blame] | 1097 | return i-1; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 1098 | } |
| 1099 | |
| 1100 | /** |
Paul Walmsley | 5e8370f | 2012-04-18 19:10:06 -0600 | [diff] [blame] | 1101 | * _get_mpu_irq_by_name - fetch MPU interrupt line number by name |
| 1102 | * @oh: struct omap_hwmod * to operate on |
| 1103 | * @name: pointer to the name of the MPU interrupt number to fetch (optional) |
| 1104 | * @irq: pointer to an unsigned int to store the MPU IRQ number to |
| 1105 | * |
| 1106 | * Retrieve a MPU hardware IRQ line number named by @name associated |
| 1107 | * with the IP block pointed to by @oh. The IRQ number will be filled |
| 1108 | * into the address pointed to by @dma. When @name is non-null, the |
| 1109 | * IRQ line number associated with the named entry will be returned. |
| 1110 | * If @name is null, the first matching entry will be returned. Data |
| 1111 | * order is not meaningful in hwmod data, so callers are strongly |
| 1112 | * encouraged to use a non-null @name whenever possible to avoid |
| 1113 | * unpredictable effects if hwmod data is later added that causes data |
| 1114 | * ordering to change. Returns 0 upon success or a negative error |
| 1115 | * code upon error. |
| 1116 | */ |
| 1117 | static int _get_mpu_irq_by_name(struct omap_hwmod *oh, const char *name, |
| 1118 | unsigned int *irq) |
| 1119 | { |
| 1120 | int i; |
| 1121 | bool found = false; |
| 1122 | |
| 1123 | if (!oh->mpu_irqs) |
| 1124 | return -ENOENT; |
| 1125 | |
| 1126 | i = 0; |
| 1127 | while (oh->mpu_irqs[i].irq != -1) { |
| 1128 | if (name == oh->mpu_irqs[i].name || |
| 1129 | !strcmp(name, oh->mpu_irqs[i].name)) { |
| 1130 | found = true; |
| 1131 | break; |
| 1132 | } |
| 1133 | i++; |
| 1134 | } |
| 1135 | |
| 1136 | if (!found) |
| 1137 | return -ENOENT; |
| 1138 | |
| 1139 | *irq = oh->mpu_irqs[i].irq; |
| 1140 | |
| 1141 | return 0; |
| 1142 | } |
| 1143 | |
| 1144 | /** |
| 1145 | * _get_sdma_req_by_name - fetch SDMA request line ID by name |
| 1146 | * @oh: struct omap_hwmod * to operate on |
| 1147 | * @name: pointer to the name of the SDMA request line to fetch (optional) |
| 1148 | * @dma: pointer to an unsigned int to store the request line ID to |
| 1149 | * |
| 1150 | * Retrieve an SDMA request line ID named by @name on the IP block |
| 1151 | * pointed to by @oh. The ID will be filled into the address pointed |
| 1152 | * to by @dma. When @name is non-null, the request line ID associated |
| 1153 | * with the named entry will be returned. If @name is null, the first |
| 1154 | * matching entry will be returned. Data order is not meaningful in |
| 1155 | * hwmod data, so callers are strongly encouraged to use a non-null |
| 1156 | * @name whenever possible to avoid unpredictable effects if hwmod |
| 1157 | * data is later added that causes data ordering to change. Returns 0 |
| 1158 | * upon success or a negative error code upon error. |
| 1159 | */ |
| 1160 | static int _get_sdma_req_by_name(struct omap_hwmod *oh, const char *name, |
| 1161 | unsigned int *dma) |
| 1162 | { |
| 1163 | int i; |
| 1164 | bool found = false; |
| 1165 | |
| 1166 | if (!oh->sdma_reqs) |
| 1167 | return -ENOENT; |
| 1168 | |
| 1169 | i = 0; |
| 1170 | while (oh->sdma_reqs[i].dma_req != -1) { |
| 1171 | if (name == oh->sdma_reqs[i].name || |
| 1172 | !strcmp(name, oh->sdma_reqs[i].name)) { |
| 1173 | found = true; |
| 1174 | break; |
| 1175 | } |
| 1176 | i++; |
| 1177 | } |
| 1178 | |
| 1179 | if (!found) |
| 1180 | return -ENOENT; |
| 1181 | |
| 1182 | *dma = oh->sdma_reqs[i].dma_req; |
| 1183 | |
| 1184 | return 0; |
| 1185 | } |
| 1186 | |
| 1187 | /** |
| 1188 | * _get_addr_space_by_name - fetch address space start & end by name |
| 1189 | * @oh: struct omap_hwmod * to operate on |
| 1190 | * @name: pointer to the name of the address space to fetch (optional) |
| 1191 | * @pa_start: pointer to a u32 to store the starting address to |
| 1192 | * @pa_end: pointer to a u32 to store the ending address to |
| 1193 | * |
| 1194 | * Retrieve address space start and end addresses for the IP block |
| 1195 | * pointed to by @oh. The data will be filled into the addresses |
| 1196 | * pointed to by @pa_start and @pa_end. When @name is non-null, the |
| 1197 | * address space data associated with the named entry will be |
| 1198 | * returned. If @name is null, the first matching entry will be |
| 1199 | * returned. Data order is not meaningful in hwmod data, so callers |
| 1200 | * are strongly encouraged to use a non-null @name whenever possible |
| 1201 | * to avoid unpredictable effects if hwmod data is later added that |
| 1202 | * causes data ordering to change. Returns 0 upon success or a |
| 1203 | * negative error code upon error. |
| 1204 | */ |
| 1205 | static int _get_addr_space_by_name(struct omap_hwmod *oh, const char *name, |
| 1206 | u32 *pa_start, u32 *pa_end) |
| 1207 | { |
| 1208 | int i, j; |
| 1209 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 1210 | struct list_head *p = NULL; |
Paul Walmsley | 5e8370f | 2012-04-18 19:10:06 -0600 | [diff] [blame] | 1211 | bool found = false; |
| 1212 | |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 1213 | p = oh->slave_ports.next; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 1214 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 1215 | i = 0; |
| 1216 | while (i < oh->slaves_cnt) { |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 1217 | os = _fetch_next_ocp_if(&p, &i); |
Paul Walmsley | 5e8370f | 2012-04-18 19:10:06 -0600 | [diff] [blame] | 1218 | |
| 1219 | if (!os->addr) |
| 1220 | return -ENOENT; |
| 1221 | |
| 1222 | j = 0; |
| 1223 | while (os->addr[j].pa_start != os->addr[j].pa_end) { |
| 1224 | if (name == os->addr[j].name || |
| 1225 | !strcmp(name, os->addr[j].name)) { |
| 1226 | found = true; |
| 1227 | break; |
| 1228 | } |
| 1229 | j++; |
| 1230 | } |
| 1231 | |
| 1232 | if (found) |
| 1233 | break; |
| 1234 | } |
| 1235 | |
| 1236 | if (!found) |
| 1237 | return -ENOENT; |
| 1238 | |
| 1239 | *pa_start = os->addr[j].pa_start; |
| 1240 | *pa_end = os->addr[j].pa_end; |
| 1241 | |
| 1242 | return 0; |
| 1243 | } |
| 1244 | |
| 1245 | /** |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1246 | * _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] | 1247 | * @oh: struct omap_hwmod * |
| 1248 | * |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1249 | * Determines the array index of the OCP slave port that the MPU uses |
| 1250 | * to address the device, and saves it into the struct omap_hwmod. |
| 1251 | * Intended to be called during hwmod registration only. No return |
| 1252 | * value. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1253 | */ |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1254 | static void __init _save_mpu_port_index(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1255 | { |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1256 | struct omap_hwmod_ocp_if *os = NULL; |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 1257 | struct list_head *p; |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 1258 | int i = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1259 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 1260 | if (!oh) |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1261 | return; |
| 1262 | |
| 1263 | oh->_int_flags |= _HWMOD_NO_MPU_PORT; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1264 | |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 1265 | p = oh->slave_ports.next; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 1266 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 1267 | while (i < oh->slaves_cnt) { |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 1268 | os = _fetch_next_ocp_if(&p, &i); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1269 | if (os->user & OCP_USER_MPU) { |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 1270 | oh->_mpu_port = os; |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1271 | oh->_int_flags &= ~_HWMOD_NO_MPU_PORT; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1272 | break; |
| 1273 | } |
| 1274 | } |
| 1275 | |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1276 | return; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1277 | } |
| 1278 | |
| 1279 | /** |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 1280 | * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU |
| 1281 | * @oh: struct omap_hwmod * |
| 1282 | * |
| 1283 | * Given a pointer to a struct omap_hwmod record @oh, return a pointer |
| 1284 | * to the struct omap_hwmod_ocp_if record that is used by the MPU to |
| 1285 | * communicate with the IP block. This interface need not be directly |
| 1286 | * connected to the MPU (and almost certainly is not), but is directly |
| 1287 | * connected to the IP block represented by @oh. Returns a pointer |
| 1288 | * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon |
| 1289 | * error or if there does not appear to be a path from the MPU to this |
| 1290 | * IP block. |
| 1291 | */ |
| 1292 | static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh) |
| 1293 | { |
| 1294 | if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0) |
| 1295 | return NULL; |
| 1296 | |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 1297 | return oh->_mpu_port; |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 1298 | }; |
| 1299 | |
| 1300 | /** |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 1301 | * _find_mpu_rt_addr_space - return MPU register target address space for @oh |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1302 | * @oh: struct omap_hwmod * |
| 1303 | * |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 1304 | * Returns a pointer to the struct omap_hwmod_addr_space record representing |
| 1305 | * the register target MPU address space; or returns NULL upon error. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1306 | */ |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 1307 | static struct omap_hwmod_addr_space * __init _find_mpu_rt_addr_space(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1308 | { |
| 1309 | struct omap_hwmod_ocp_if *os; |
| 1310 | struct omap_hwmod_addr_space *mem; |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 1311 | int found = 0, i = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1312 | |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 1313 | os = _find_mpu_rt_port(oh); |
Paul Walmsley | 24dbc21 | 2012-04-19 04:04:29 -0600 | [diff] [blame] | 1314 | if (!os || !os->addr) |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 1315 | return NULL; |
| 1316 | |
| 1317 | do { |
| 1318 | mem = &os->addr[i++]; |
| 1319 | if (mem->flags & ADDR_TYPE_RT) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1320 | found = 1; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 1321 | } while (!found && mem->pa_start != mem->pa_end); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1322 | |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 1323 | return (found) ? mem : NULL; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1324 | } |
| 1325 | |
| 1326 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1327 | * _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] | 1328 | * @oh: struct omap_hwmod * |
| 1329 | * |
Paul Walmsley | 006c7f1 | 2012-07-04 05:22:53 -0600 | [diff] [blame] | 1330 | * Ensure that the OCP_SYSCONFIG register for the IP block represented |
| 1331 | * by @oh is set to indicate to the PRCM that the IP block is active. |
| 1332 | * Usually this means placing the module into smart-idle mode and |
| 1333 | * smart-standby, but if there is a bug in the automatic idle handling |
| 1334 | * for the IP block, it may need to be placed into the force-idle or |
| 1335 | * no-idle variants of these modes. No return value. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1336 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1337 | static void _enable_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1338 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1339 | u8 idlemode, sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1340 | u32 v; |
Paul Walmsley | 006c7f1 | 2012-07-04 05:22:53 -0600 | [diff] [blame] | 1341 | bool clkdm_act; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 1342 | struct clockdomain *clkdm; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1343 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1344 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1345 | return; |
| 1346 | |
Tero Kristo | 613ad0e | 2012-10-29 22:02:13 -0600 | [diff] [blame] | 1347 | /* |
| 1348 | * Wait until reset has completed, this is needed as the IP |
| 1349 | * block is reset automatically by hardware in some cases |
| 1350 | * (off-mode for example), and the drivers require the |
| 1351 | * IP to be ready when they access it |
| 1352 | */ |
| 1353 | if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET) |
| 1354 | _enable_optional_clocks(oh); |
| 1355 | _wait_softreset_complete(oh); |
| 1356 | if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET) |
| 1357 | _disable_optional_clocks(oh); |
| 1358 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1359 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1360 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1361 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 1362 | clkdm = _get_clkdm(oh); |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1363 | if (sf & SYSC_HAS_SIDLEMODE) { |
Rajendra Nayak | ca43ea3 | 2013-05-15 20:18:38 +0530 | [diff] [blame] | 1364 | if (oh->flags & HWMOD_SWSUP_SIDLE || |
| 1365 | oh->flags & HWMOD_SWSUP_SIDLE_ACT) { |
Rajendra Nayak | 3551317 | 2013-05-15 20:18:37 +0530 | [diff] [blame] | 1366 | idlemode = HWMOD_IDLEMODE_NO; |
| 1367 | } else { |
| 1368 | if (sf & SYSC_HAS_ENAWAKEUP) |
| 1369 | _enable_wakeup(oh, &v); |
| 1370 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) |
| 1371 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; |
| 1372 | else |
| 1373 | idlemode = HWMOD_IDLEMODE_SMART; |
| 1374 | } |
| 1375 | |
| 1376 | /* |
| 1377 | * This is special handling for some IPs like |
| 1378 | * 32k sync timer. Force them to idle! |
| 1379 | */ |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 1380 | clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU); |
Paul Walmsley | 006c7f1 | 2012-07-04 05:22:53 -0600 | [diff] [blame] | 1381 | if (clkdm_act && !(oh->class->sysc->idlemodes & |
| 1382 | (SIDLE_SMART | SIDLE_SMART_WKUP))) |
| 1383 | idlemode = HWMOD_IDLEMODE_FORCE; |
Rajendra Nayak | 3551317 | 2013-05-15 20:18:37 +0530 | [diff] [blame] | 1384 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1385 | _set_slave_idlemode(oh, idlemode, &v); |
| 1386 | } |
| 1387 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1388 | if (sf & SYSC_HAS_MIDLEMODE) { |
Grazvydas Ignotas | 092bc08 | 2013-03-11 21:49:00 +0200 | [diff] [blame] | 1389 | if (oh->flags & HWMOD_FORCE_MSTANDBY) { |
| 1390 | idlemode = HWMOD_IDLEMODE_FORCE; |
| 1391 | } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) { |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 1392 | idlemode = HWMOD_IDLEMODE_NO; |
| 1393 | } else { |
| 1394 | if (sf & SYSC_HAS_ENAWAKEUP) |
| 1395 | _enable_wakeup(oh, &v); |
| 1396 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 1397 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; |
| 1398 | else |
| 1399 | idlemode = HWMOD_IDLEMODE_SMART; |
| 1400 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1401 | _set_master_standbymode(oh, idlemode, &v); |
| 1402 | } |
| 1403 | |
Paul Walmsley | a16b1f7 | 2009-12-08 16:34:17 -0700 | [diff] [blame] | 1404 | /* |
| 1405 | * XXX The clock framework should handle this, by |
| 1406 | * calling into this code. But this must wait until the |
| 1407 | * clock structures are tagged with omap_hwmod entries |
| 1408 | */ |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1409 | if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) && |
| 1410 | (sf & SYSC_HAS_CLOCKACTIVITY)) |
| 1411 | _set_clockactivity(oh, oh->class->sysc->clockact, &v); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1412 | |
Jon Hunter | 127500c | 2013-08-23 04:40:23 -0600 | [diff] [blame] | 1413 | /* If the cached value is the same as the new value, skip the write */ |
| 1414 | if (oh->_sysc_cache != v) |
| 1415 | _write_sysconfig(v, oh); |
Hema HK | 78f26e8 | 2010-09-24 10:23:19 -0600 | [diff] [blame] | 1416 | |
| 1417 | /* |
| 1418 | * Set the autoidle bit only after setting the smartidle bit |
| 1419 | * Setting this will not have any impact on the other modules. |
| 1420 | */ |
| 1421 | if (sf & SYSC_HAS_AUTOIDLE) { |
| 1422 | idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ? |
| 1423 | 0 : 1; |
| 1424 | _set_module_autoidle(oh, idlemode, &v); |
| 1425 | _write_sysconfig(v, oh); |
| 1426 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1427 | } |
| 1428 | |
| 1429 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1430 | * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1431 | * @oh: struct omap_hwmod * |
| 1432 | * |
| 1433 | * If module is marked as SWSUP_SIDLE, force the module into slave |
| 1434 | * idle; otherwise, configure it for smart-idle. If module is marked |
| 1435 | * as SWSUP_MSUSPEND, force the module into master standby; otherwise, |
| 1436 | * configure it for smart-standby. No return value. |
| 1437 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1438 | static void _idle_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1439 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1440 | u8 idlemode, sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1441 | u32 v; |
| 1442 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1443 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1444 | return; |
| 1445 | |
| 1446 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1447 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1448 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1449 | if (sf & SYSC_HAS_SIDLEMODE) { |
Rajendra Nayak | 3551317 | 2013-05-15 20:18:37 +0530 | [diff] [blame] | 1450 | if (oh->flags & HWMOD_SWSUP_SIDLE) { |
Paul Walmsley | 006c7f1 | 2012-07-04 05:22:53 -0600 | [diff] [blame] | 1451 | idlemode = HWMOD_IDLEMODE_FORCE; |
Rajendra Nayak | 3551317 | 2013-05-15 20:18:37 +0530 | [diff] [blame] | 1452 | } else { |
| 1453 | if (sf & SYSC_HAS_ENAWAKEUP) |
| 1454 | _enable_wakeup(oh, &v); |
| 1455 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) |
| 1456 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; |
| 1457 | else |
| 1458 | idlemode = HWMOD_IDLEMODE_SMART; |
| 1459 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1460 | _set_slave_idlemode(oh, idlemode, &v); |
| 1461 | } |
| 1462 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1463 | if (sf & SYSC_HAS_MIDLEMODE) { |
Grazvydas Ignotas | 092bc08 | 2013-03-11 21:49:00 +0200 | [diff] [blame] | 1464 | if ((oh->flags & HWMOD_SWSUP_MSTANDBY) || |
| 1465 | (oh->flags & HWMOD_FORCE_MSTANDBY)) { |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 1466 | idlemode = HWMOD_IDLEMODE_FORCE; |
| 1467 | } else { |
| 1468 | if (sf & SYSC_HAS_ENAWAKEUP) |
| 1469 | _enable_wakeup(oh, &v); |
| 1470 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 1471 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; |
| 1472 | else |
| 1473 | idlemode = HWMOD_IDLEMODE_SMART; |
| 1474 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1475 | _set_master_standbymode(oh, idlemode, &v); |
| 1476 | } |
| 1477 | |
| 1478 | _write_sysconfig(v, oh); |
| 1479 | } |
| 1480 | |
| 1481 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1482 | * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1483 | * @oh: struct omap_hwmod * |
| 1484 | * |
| 1485 | * Force the module into slave idle and master suspend. No return |
| 1486 | * value. |
| 1487 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1488 | static void _shutdown_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1489 | { |
| 1490 | u32 v; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1491 | u8 sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1492 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1493 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1494 | return; |
| 1495 | |
| 1496 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1497 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1498 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1499 | if (sf & SYSC_HAS_SIDLEMODE) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1500 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v); |
| 1501 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1502 | if (sf & SYSC_HAS_MIDLEMODE) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1503 | _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v); |
| 1504 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1505 | if (sf & SYSC_HAS_AUTOIDLE) |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 1506 | _set_module_autoidle(oh, 1, &v); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1507 | |
| 1508 | _write_sysconfig(v, oh); |
| 1509 | } |
| 1510 | |
| 1511 | /** |
| 1512 | * _lookup - find an omap_hwmod by name |
| 1513 | * @name: find an omap_hwmod by name |
| 1514 | * |
| 1515 | * Return a pointer to an omap_hwmod by name, or NULL if not found. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1516 | */ |
| 1517 | static struct omap_hwmod *_lookup(const char *name) |
| 1518 | { |
| 1519 | struct omap_hwmod *oh, *temp_oh; |
| 1520 | |
| 1521 | oh = NULL; |
| 1522 | |
| 1523 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
| 1524 | if (!strcmp(name, temp_oh->name)) { |
| 1525 | oh = temp_oh; |
| 1526 | break; |
| 1527 | } |
| 1528 | } |
| 1529 | |
| 1530 | return oh; |
| 1531 | } |
Paul Walmsley | 868c157 | 2012-06-19 15:01:02 -0600 | [diff] [blame] | 1532 | |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1533 | /** |
| 1534 | * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod |
| 1535 | * @oh: struct omap_hwmod * |
| 1536 | * |
| 1537 | * Convert a clockdomain name stored in a struct omap_hwmod into a |
| 1538 | * clockdomain pointer, and save it into the struct omap_hwmod. |
Paul Walmsley | 868c157 | 2012-06-19 15:01:02 -0600 | [diff] [blame] | 1539 | * Return -EINVAL if the clkdm_name lookup failed. |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1540 | */ |
| 1541 | static int _init_clkdm(struct omap_hwmod *oh) |
| 1542 | { |
Paul Walmsley | 3bb05db | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 1543 | if (!oh->clkdm_name) { |
| 1544 | pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name); |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1545 | return 0; |
Paul Walmsley | 3bb05db | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 1546 | } |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1547 | |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1548 | oh->clkdm = clkdm_lookup(oh->clkdm_name); |
| 1549 | if (!oh->clkdm) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 1550 | pr_warn("omap_hwmod: %s: could not associate to clkdm %s\n", |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1551 | oh->name, oh->clkdm_name); |
Tero Kristo | 0385c58 | 2013-07-17 18:03:25 +0300 | [diff] [blame] | 1552 | return 0; |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1553 | } |
| 1554 | |
| 1555 | pr_debug("omap_hwmod: %s: associated to clkdm %s\n", |
| 1556 | oh->name, oh->clkdm_name); |
| 1557 | |
| 1558 | return 0; |
| 1559 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1560 | |
| 1561 | /** |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1562 | * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as |
| 1563 | * well the clockdomain. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1564 | * @oh: struct omap_hwmod * |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1565 | * @data: not used; pass NULL |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1566 | * |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1567 | * Called by omap_hwmod_setup_*() (after omap2_clk_init()). |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1568 | * Resolves all clock names embedded in the hwmod. Returns 0 on |
| 1569 | * success, or a negative error code on failure. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1570 | */ |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1571 | static int _init_clocks(struct omap_hwmod *oh, void *data) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1572 | { |
| 1573 | int ret = 0; |
| 1574 | |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1575 | if (oh->_state != _HWMOD_STATE_REGISTERED) |
| 1576 | return 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1577 | |
| 1578 | pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name); |
| 1579 | |
Vaibhav Hiremath | b797be1 | 2012-07-09 18:24:30 +0530 | [diff] [blame] | 1580 | if (soc_ops.init_clkdm) |
| 1581 | ret |= soc_ops.init_clkdm(oh); |
| 1582 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1583 | ret |= _init_main_clk(oh); |
| 1584 | ret |= _init_interface_clks(oh); |
| 1585 | ret |= _init_opt_clks(oh); |
| 1586 | |
Benoit Cousson | f5c1f84 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 1587 | if (!ret) |
| 1588 | oh->_state = _HWMOD_STATE_CLKS_INITED; |
Benoit Cousson | 6652271 | 2011-07-01 22:54:06 +0200 | [diff] [blame] | 1589 | else |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 1590 | pr_warn("omap_hwmod: %s: cannot _init_clocks\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1591 | |
Rajendra Nayak | 09c35f2 | 2011-02-16 12:11:24 +0000 | [diff] [blame] | 1592 | return ret; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1593 | } |
| 1594 | |
| 1595 | /** |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1596 | * _lookup_hardreset - fill register bit info for this hwmod/reset line |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1597 | * @oh: struct omap_hwmod * |
| 1598 | * @name: name of the reset line in the context of this hwmod |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1599 | * @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] | 1600 | * |
| 1601 | * Return the bit position of the reset line that match the |
| 1602 | * input name. Return -ENOENT if not found. |
| 1603 | */ |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1604 | static int _lookup_hardreset(struct omap_hwmod *oh, const char *name, |
| 1605 | struct omap_hwmod_rst_info *ohri) |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1606 | { |
| 1607 | int i; |
| 1608 | |
| 1609 | for (i = 0; i < oh->rst_lines_cnt; i++) { |
| 1610 | const char *rst_line = oh->rst_lines[i].name; |
| 1611 | if (!strcmp(rst_line, name)) { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1612 | ohri->rst_shift = oh->rst_lines[i].rst_shift; |
| 1613 | ohri->st_shift = oh->rst_lines[i].st_shift; |
| 1614 | pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n", |
| 1615 | oh->name, __func__, rst_line, ohri->rst_shift, |
| 1616 | ohri->st_shift); |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1617 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1618 | return 0; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1619 | } |
| 1620 | } |
| 1621 | |
| 1622 | return -ENOENT; |
| 1623 | } |
| 1624 | |
| 1625 | /** |
| 1626 | * _assert_hardreset - assert the HW reset line of submodules |
| 1627 | * contained in the hwmod module. |
| 1628 | * @oh: struct omap_hwmod * |
| 1629 | * @name: name of the reset line to lookup and assert |
| 1630 | * |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1631 | * Some IP like dsp, ipu or iva contain processor that require an HW |
| 1632 | * reset line to be assert / deassert in order to enable fully the IP. |
| 1633 | * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of |
| 1634 | * asserting the hardreset line on the currently-booted SoC, or passes |
| 1635 | * along the return value from _lookup_hardreset() or the SoC's |
| 1636 | * assert_hardreset code. |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1637 | */ |
| 1638 | static int _assert_hardreset(struct omap_hwmod *oh, const char *name) |
| 1639 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1640 | struct omap_hwmod_rst_info ohri; |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1641 | int ret = -EINVAL; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1642 | |
| 1643 | if (!oh) |
| 1644 | return -EINVAL; |
| 1645 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1646 | if (!soc_ops.assert_hardreset) |
| 1647 | return -ENOSYS; |
| 1648 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1649 | ret = _lookup_hardreset(oh, name, &ohri); |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1650 | if (ret < 0) |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1651 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1652 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1653 | ret = soc_ops.assert_hardreset(oh, &ohri); |
| 1654 | |
| 1655 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1656 | } |
| 1657 | |
| 1658 | /** |
| 1659 | * _deassert_hardreset - deassert the HW reset line of submodules contained |
| 1660 | * in the hwmod module. |
| 1661 | * @oh: struct omap_hwmod * |
| 1662 | * @name: name of the reset line to look up and deassert |
| 1663 | * |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1664 | * Some IP like dsp, ipu or iva contain processor that require an HW |
| 1665 | * reset line to be assert / deassert in order to enable fully the IP. |
| 1666 | * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of |
| 1667 | * deasserting the hardreset line on the currently-booted SoC, or passes |
| 1668 | * along the return value from _lookup_hardreset() or the SoC's |
| 1669 | * deassert_hardreset code. |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1670 | */ |
| 1671 | static int _deassert_hardreset(struct omap_hwmod *oh, const char *name) |
| 1672 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1673 | struct omap_hwmod_rst_info ohri; |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1674 | int ret = -EINVAL; |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1675 | int hwsup = 0; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1676 | |
| 1677 | if (!oh) |
| 1678 | return -EINVAL; |
| 1679 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1680 | if (!soc_ops.deassert_hardreset) |
| 1681 | return -ENOSYS; |
| 1682 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1683 | ret = _lookup_hardreset(oh, name, &ohri); |
Russell King | c48cd65 | 2013-03-13 20:44:21 +0000 | [diff] [blame] | 1684 | if (ret < 0) |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1685 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1686 | |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1687 | if (oh->clkdm) { |
| 1688 | /* |
| 1689 | * A clockdomain must be in SW_SUP otherwise reset |
| 1690 | * might not be completed. The clockdomain can be set |
| 1691 | * in HW_AUTO only when the module become ready. |
| 1692 | */ |
| 1693 | hwsup = clkdm_in_hwsup(oh->clkdm); |
| 1694 | ret = clkdm_hwmod_enable(oh->clkdm, oh); |
| 1695 | if (ret) { |
| 1696 | WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n", |
| 1697 | oh->name, oh->clkdm->name, ret); |
| 1698 | return ret; |
| 1699 | } |
| 1700 | } |
| 1701 | |
| 1702 | _enable_clocks(oh); |
| 1703 | if (soc_ops.enable_module) |
| 1704 | soc_ops.enable_module(oh); |
| 1705 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1706 | ret = soc_ops.deassert_hardreset(oh, &ohri); |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1707 | |
| 1708 | if (soc_ops.disable_module) |
| 1709 | soc_ops.disable_module(oh); |
| 1710 | _disable_clocks(oh); |
| 1711 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1712 | if (ret == -EBUSY) |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 1713 | pr_warn("omap_hwmod: %s: failed to hardreset\n", oh->name); |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1714 | |
Tero Kristo | 80d2518 | 2015-02-26 18:06:00 +0200 | [diff] [blame] | 1715 | if (oh->clkdm) { |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1716 | /* |
| 1717 | * Set the clockdomain to HW_AUTO, assuming that the |
| 1718 | * previous state was HW_AUTO. |
| 1719 | */ |
Tero Kristo | 80d2518 | 2015-02-26 18:06:00 +0200 | [diff] [blame] | 1720 | if (hwsup) |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1721 | clkdm_allow_idle(oh->clkdm); |
Tero Kristo | 80d2518 | 2015-02-26 18:06:00 +0200 | [diff] [blame] | 1722 | |
| 1723 | clkdm_hwmod_disable(oh->clkdm, oh); |
Omar Ramirez Luna | e8e96df | 2012-09-23 17:28:21 -0600 | [diff] [blame] | 1724 | } |
| 1725 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1726 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1727 | } |
| 1728 | |
| 1729 | /** |
| 1730 | * _read_hardreset - read the HW reset line state of submodules |
| 1731 | * contained in the hwmod module |
| 1732 | * @oh: struct omap_hwmod * |
| 1733 | * @name: name of the reset line to look up and read |
| 1734 | * |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1735 | * Return the state of the reset line. Returns -EINVAL if @oh is |
| 1736 | * null, -ENOSYS if we have no way of reading the hardreset line |
| 1737 | * status on the currently-booted SoC, or passes along the return |
| 1738 | * value from _lookup_hardreset() or the SoC's is_hardreset_asserted |
| 1739 | * code. |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1740 | */ |
| 1741 | static int _read_hardreset(struct omap_hwmod *oh, const char *name) |
| 1742 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1743 | struct omap_hwmod_rst_info ohri; |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1744 | int ret = -EINVAL; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1745 | |
| 1746 | if (!oh) |
| 1747 | return -EINVAL; |
| 1748 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1749 | if (!soc_ops.is_hardreset_asserted) |
| 1750 | return -ENOSYS; |
| 1751 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1752 | ret = _lookup_hardreset(oh, name, &ohri); |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 1753 | if (ret < 0) |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1754 | return ret; |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1755 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 1756 | return soc_ops.is_hardreset_asserted(oh, &ohri); |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1757 | } |
| 1758 | |
| 1759 | /** |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1760 | * _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] | 1761 | * @oh: struct omap_hwmod * |
| 1762 | * |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1763 | * If all hardreset lines associated with @oh are asserted, then return true. |
| 1764 | * Otherwise, if part of @oh is out hardreset or if no hardreset lines |
| 1765 | * associated with @oh are asserted, then return false. |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1766 | * 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] | 1767 | * enable/disable sequence if its hardreset line is set. |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1768 | */ |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1769 | static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh) |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1770 | { |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1771 | int i, rst_cnt = 0; |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1772 | |
| 1773 | if (oh->rst_lines_cnt == 0) |
| 1774 | return false; |
| 1775 | |
| 1776 | for (i = 0; i < oh->rst_lines_cnt; i++) |
| 1777 | if (_read_hardreset(oh, oh->rst_lines[i].name) > 0) |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1778 | rst_cnt++; |
| 1779 | |
| 1780 | if (oh->rst_lines_cnt == rst_cnt) |
| 1781 | return true; |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1782 | |
| 1783 | return false; |
| 1784 | } |
| 1785 | |
| 1786 | /** |
Paul Walmsley | e9332b6 | 2012-10-08 23:08:15 -0600 | [diff] [blame] | 1787 | * _are_any_hardreset_lines_asserted - return true if any part of @oh is |
| 1788 | * hard-reset |
| 1789 | * @oh: struct omap_hwmod * |
| 1790 | * |
| 1791 | * If any hardreset lines associated with @oh are asserted, then |
| 1792 | * return true. Otherwise, if no hardreset lines associated with @oh |
| 1793 | * are asserted, or if @oh has no hardreset lines, then return false. |
| 1794 | * This function is used to avoid executing some parts of the IP block |
| 1795 | * enable/disable sequence if any hardreset line is set. |
| 1796 | */ |
| 1797 | static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh) |
| 1798 | { |
| 1799 | int rst_cnt = 0; |
| 1800 | int i; |
| 1801 | |
| 1802 | for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++) |
| 1803 | if (_read_hardreset(oh, oh->rst_lines[i].name) > 0) |
| 1804 | rst_cnt++; |
| 1805 | |
| 1806 | return (rst_cnt) ? true : false; |
| 1807 | } |
| 1808 | |
| 1809 | /** |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1810 | * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4 |
| 1811 | * @oh: struct omap_hwmod * |
| 1812 | * |
| 1813 | * Disable the PRCM module mode related to the hwmod @oh. |
| 1814 | * Return EINVAL if the modulemode is not supported and 0 in case of success. |
| 1815 | */ |
| 1816 | static int _omap4_disable_module(struct omap_hwmod *oh) |
| 1817 | { |
| 1818 | int v; |
| 1819 | |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1820 | if (!oh->clkdm || !oh->prcm.omap4.modulemode) |
| 1821 | return -EINVAL; |
| 1822 | |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1823 | /* |
| 1824 | * Since integration code might still be doing something, only |
| 1825 | * disable if all lines are under hardreset. |
| 1826 | */ |
Paul Walmsley | e9332b6 | 2012-10-08 23:08:15 -0600 | [diff] [blame] | 1827 | if (_are_any_hardreset_lines_asserted(oh)) |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 1828 | return 0; |
| 1829 | |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1830 | pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__); |
| 1831 | |
Tero Kristo | 128603f | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 1832 | omap_cm_module_disable(oh->clkdm->prcm_partition, oh->clkdm->cm_inst, |
| 1833 | oh->prcm.omap4.clkctrl_offs); |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1834 | |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 1835 | v = _omap4_wait_target_disable(oh); |
| 1836 | if (v) |
| 1837 | pr_warn("omap_hwmod: %s: _wait_target_disable failed\n", |
| 1838 | oh->name); |
| 1839 | |
| 1840 | return 0; |
| 1841 | } |
| 1842 | |
| 1843 | /** |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1844 | * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1845 | * @oh: struct omap_hwmod * |
| 1846 | * |
| 1847 | * 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] | 1848 | * enabled for this to work. Returns -ENOENT if the hwmod cannot be |
| 1849 | * reset this way, -EINVAL if the hwmod is in the wrong state, |
| 1850 | * -ETIMEDOUT if the module did not reset in time, or 0 upon success. |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1851 | * |
| 1852 | * 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] | 1853 | * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1854 | * use the SYSCONFIG softreset bit to provide the status. |
| 1855 | * |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1856 | * Note that some IP like McBSP do have reset control but don't have |
| 1857 | * reset status. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1858 | */ |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1859 | static int _ocp_softreset(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1860 | { |
Tero Kristo | 613ad0e | 2012-10-29 22:02:13 -0600 | [diff] [blame] | 1861 | u32 v; |
Paul Walmsley | 6f8b7ff | 2009-12-08 16:33:16 -0700 | [diff] [blame] | 1862 | int c = 0; |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1863 | int ret = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1864 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1865 | if (!oh->class->sysc || |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1866 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET)) |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1867 | return -ENOENT; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1868 | |
| 1869 | /* clocks must be on for this operation */ |
| 1870 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
Paul Walmsley | 7852ec0 | 2012-07-26 00:54:26 -0600 | [diff] [blame] | 1871 | pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n", |
| 1872 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1873 | return -EINVAL; |
| 1874 | } |
| 1875 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1876 | /* For some modules, all optionnal clocks need to be enabled as well */ |
| 1877 | if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET) |
| 1878 | _enable_optional_clocks(oh); |
| 1879 | |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1880 | pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1881 | |
| 1882 | v = oh->_sysc_cache; |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1883 | ret = _set_softreset(oh, &v); |
| 1884 | if (ret) |
| 1885 | goto dis_opt_clks; |
Roger Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 1886 | |
| 1887 | _write_sysconfig(v, oh); |
Illia Smyrnov | 0114251 | 2014-02-05 17:06:09 +0200 | [diff] [blame] | 1888 | |
| 1889 | if (oh->class->sysc->srst_udelay) |
| 1890 | udelay(oh->class->sysc->srst_udelay); |
| 1891 | |
| 1892 | c = _wait_softreset_complete(oh); |
| 1893 | if (c == MAX_MODULE_SOFTRESET_WAIT) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 1894 | pr_warn("omap_hwmod: %s: softreset failed (waited %d usec)\n", |
| 1895 | oh->name, MAX_MODULE_SOFTRESET_WAIT); |
Illia Smyrnov | 0114251 | 2014-02-05 17:06:09 +0200 | [diff] [blame] | 1896 | ret = -ETIMEDOUT; |
| 1897 | goto dis_opt_clks; |
| 1898 | } else { |
| 1899 | pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c); |
| 1900 | } |
| 1901 | |
Roger Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 1902 | ret = _clear_softreset(oh, &v); |
| 1903 | if (ret) |
| 1904 | goto dis_opt_clks; |
| 1905 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1906 | _write_sysconfig(v, oh); |
| 1907 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1908 | /* |
| 1909 | * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from |
| 1910 | * _wait_target_ready() or _reset() |
| 1911 | */ |
| 1912 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1913 | dis_opt_clks: |
| 1914 | if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET) |
| 1915 | _disable_optional_clocks(oh); |
| 1916 | |
| 1917 | return ret; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1918 | } |
| 1919 | |
| 1920 | /** |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1921 | * _reset - reset an omap_hwmod |
| 1922 | * @oh: struct omap_hwmod * |
| 1923 | * |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1924 | * Resets an omap_hwmod @oh. If the module has a custom reset |
| 1925 | * function pointer defined, then call it to reset the IP block, and |
| 1926 | * pass along its return value to the caller. Otherwise, if the IP |
| 1927 | * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield |
| 1928 | * associated with it, call a function to reset the IP block via that |
| 1929 | * method, and pass along the return value to the caller. Finally, if |
| 1930 | * the IP block has some hardreset lines associated with it, assert |
| 1931 | * all of those, but do _not_ deassert them. (This is because driver |
| 1932 | * authors have expressed an apparent requirement to control the |
| 1933 | * deassertion of the hardreset lines themselves.) |
| 1934 | * |
| 1935 | * The default software reset mechanism for most OMAP IP blocks is |
| 1936 | * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some |
| 1937 | * hwmods cannot be reset via this method. Some are not targets and |
| 1938 | * therefore have no OCP header registers to access. Others (like the |
| 1939 | * IVA) have idiosyncratic reset sequences. So for these relatively |
| 1940 | * rare cases, custom reset code can be supplied in the struct |
Kishon Vijay Abraham I | 6668546 | 2012-07-04 05:09:21 -0600 | [diff] [blame] | 1941 | * omap_hwmod_class .reset function pointer. |
| 1942 | * |
| 1943 | * _set_dmadisable() is called to set the DMADISABLE bit so that it |
| 1944 | * does not prevent idling of the system. This is necessary for cases |
| 1945 | * where ROMCODE/BOOTLOADER uses dma and transfers control to the |
| 1946 | * kernel without disabling dma. |
| 1947 | * |
| 1948 | * Passes along the return value from either _ocp_softreset() or the |
| 1949 | * custom reset function - these must return -EINVAL if the hwmod |
| 1950 | * cannot be reset this way or if the hwmod is in the wrong state, |
| 1951 | * -ETIMEDOUT if the module did not reset in time, or 0 upon success. |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1952 | */ |
| 1953 | static int _reset(struct omap_hwmod *oh) |
| 1954 | { |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1955 | int i, r; |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1956 | |
| 1957 | pr_debug("omap_hwmod: %s: resetting\n", oh->name); |
| 1958 | |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1959 | if (oh->class->reset) { |
| 1960 | r = oh->class->reset(oh); |
| 1961 | } else { |
| 1962 | if (oh->rst_lines_cnt > 0) { |
| 1963 | for (i = 0; i < oh->rst_lines_cnt; i++) |
| 1964 | _assert_hardreset(oh, oh->rst_lines[i].name); |
| 1965 | return 0; |
| 1966 | } else { |
| 1967 | r = _ocp_softreset(oh); |
| 1968 | if (r == -ENOENT) |
| 1969 | r = 0; |
| 1970 | } |
| 1971 | } |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1972 | |
Kishon Vijay Abraham I | 6668546 | 2012-07-04 05:09:21 -0600 | [diff] [blame] | 1973 | _set_dmadisable(oh); |
| 1974 | |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1975 | /* |
| 1976 | * OCP_SYSCONFIG bits need to be reprogrammed after a |
| 1977 | * softreset. The _enable() function should be split to avoid |
| 1978 | * the rewrite of the OCP_SYSCONFIG register. |
| 1979 | */ |
Rajendra Nayak | 2800852 | 2012-03-13 22:55:23 +0530 | [diff] [blame] | 1980 | if (oh->class->sysc) { |
| 1981 | _update_sysc_cache(oh); |
| 1982 | _enable_sysc(oh); |
| 1983 | } |
| 1984 | |
Paul Walmsley | 30e105c | 2012-04-19 00:49:09 -0600 | [diff] [blame] | 1985 | return r; |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1986 | } |
| 1987 | |
| 1988 | /** |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 1989 | * _reconfigure_io_chain - clear any I/O chain wakeups and reconfigure chain |
| 1990 | * |
| 1991 | * Call the appropriate PRM function to clear any logged I/O chain |
| 1992 | * wakeups and to reconfigure the chain. This apparently needs to be |
| 1993 | * done upon every mux change. Since hwmods can be concurrently |
| 1994 | * enabled and idled, hold a spinlock around the I/O chain |
| 1995 | * reconfiguration sequence. No return value. |
| 1996 | * |
| 1997 | * XXX When the PRM code is moved to drivers, this function can be removed, |
| 1998 | * as the PRM infrastructure should abstract this. |
| 1999 | */ |
| 2000 | static void _reconfigure_io_chain(void) |
| 2001 | { |
| 2002 | unsigned long flags; |
| 2003 | |
| 2004 | spin_lock_irqsave(&io_chain_lock, flags); |
| 2005 | |
Tero Kristo | 4984eea | 2014-10-27 08:39:26 -0700 | [diff] [blame] | 2006 | omap_prm_reconfigure_io_chain(); |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 2007 | |
| 2008 | spin_unlock_irqrestore(&io_chain_lock, flags); |
| 2009 | } |
| 2010 | |
| 2011 | /** |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 2012 | * _omap4_update_context_lost - increment hwmod context loss counter if |
| 2013 | * hwmod context was lost, and clear hardware context loss reg |
| 2014 | * @oh: hwmod to check for context loss |
| 2015 | * |
| 2016 | * If the PRCM indicates that the hwmod @oh lost context, increment |
| 2017 | * our in-memory context loss counter, and clear the RM_*_CONTEXT |
| 2018 | * bits. No return value. |
| 2019 | */ |
| 2020 | static void _omap4_update_context_lost(struct omap_hwmod *oh) |
| 2021 | { |
| 2022 | if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT) |
| 2023 | return; |
| 2024 | |
| 2025 | if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition, |
| 2026 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 2027 | oh->prcm.omap4.context_offs)) |
| 2028 | return; |
| 2029 | |
| 2030 | oh->prcm.omap4.context_lost_counter++; |
| 2031 | prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition, |
| 2032 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 2033 | oh->prcm.omap4.context_offs); |
| 2034 | } |
| 2035 | |
| 2036 | /** |
| 2037 | * _omap4_get_context_lost - get context loss counter for a hwmod |
| 2038 | * @oh: hwmod to get context loss counter for |
| 2039 | * |
| 2040 | * Returns the in-memory context loss counter for a hwmod. |
| 2041 | */ |
| 2042 | static int _omap4_get_context_lost(struct omap_hwmod *oh) |
| 2043 | { |
| 2044 | return oh->prcm.omap4.context_lost_counter; |
| 2045 | } |
| 2046 | |
| 2047 | /** |
Paul Walmsley | 6d266f6 | 2013-02-10 11:22:22 -0700 | [diff] [blame] | 2048 | * _enable_preprogram - Pre-program an IP block during the _enable() process |
| 2049 | * @oh: struct omap_hwmod * |
| 2050 | * |
| 2051 | * Some IP blocks (such as AESS) require some additional programming |
| 2052 | * after enable before they can enter idle. If a function pointer to |
| 2053 | * do so is present in the hwmod data, then call it and pass along the |
| 2054 | * return value; otherwise, return 0. |
| 2055 | */ |
jean-philippe francois | 0f49703 | 2013-05-16 11:25:07 -0700 | [diff] [blame] | 2056 | static int _enable_preprogram(struct omap_hwmod *oh) |
Paul Walmsley | 6d266f6 | 2013-02-10 11:22:22 -0700 | [diff] [blame] | 2057 | { |
| 2058 | if (!oh->class->enable_preprogram) |
| 2059 | return 0; |
| 2060 | |
| 2061 | return oh->class->enable_preprogram(oh); |
| 2062 | } |
| 2063 | |
| 2064 | /** |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2065 | * _enable - enable an omap_hwmod |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2066 | * @oh: struct omap_hwmod * |
| 2067 | * |
| 2068 | * 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] | 2069 | * register target. Returns -EINVAL if the hwmod is in the wrong |
| 2070 | * state or passes along the return value of _wait_target_ready(). |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2071 | */ |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2072 | static int _enable(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2073 | { |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 2074 | int r; |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2075 | int hwsup = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2076 | |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 2077 | pr_debug("omap_hwmod: %s: enabling\n", oh->name); |
| 2078 | |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 2079 | /* |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2080 | * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled |
| 2081 | * state at init. Now that someone is really trying to enable |
| 2082 | * them, just ensure that the hwmod mux is set. |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 2083 | */ |
| 2084 | if (oh->_int_flags & _HWMOD_SKIP_ENABLE) { |
| 2085 | /* |
| 2086 | * If the caller has mux data populated, do the mux'ing |
| 2087 | * which wouldn't have been done as part of the _enable() |
| 2088 | * done during setup. |
| 2089 | */ |
| 2090 | if (oh->mux) |
| 2091 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED); |
| 2092 | |
| 2093 | oh->_int_flags &= ~_HWMOD_SKIP_ENABLE; |
| 2094 | return 0; |
| 2095 | } |
| 2096 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2097 | if (oh->_state != _HWMOD_STATE_INITIALIZED && |
| 2098 | oh->_state != _HWMOD_STATE_IDLE && |
| 2099 | oh->_state != _HWMOD_STATE_DISABLED) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 2100 | WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n", |
| 2101 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2102 | return -EINVAL; |
| 2103 | } |
| 2104 | |
Benoit Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 2105 | /* |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 2106 | * 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] | 2107 | * asserted, we let integration code associated with that |
| 2108 | * block handle the enable. We've received very little |
| 2109 | * information on what those driver authors need, and until |
| 2110 | * detailed information is provided and the driver code is |
| 2111 | * posted to the public lists, this is probably the best we |
| 2112 | * can do. |
Benoit Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 2113 | */ |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 2114 | if (_are_all_hardreset_lines_asserted(oh)) |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 2115 | return 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2116 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2117 | /* Mux pins for device runtime if populated */ |
| 2118 | if (oh->mux && (!oh->mux->enabled || |
| 2119 | ((oh->_state == _HWMOD_STATE_IDLE) && |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 2120 | oh->mux->pads_dynamic))) { |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2121 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED); |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 2122 | _reconfigure_io_chain(); |
Tony Lindgren | 6a08b11 | 2014-09-18 08:58:28 -0700 | [diff] [blame] | 2123 | } else if (oh->flags & HWMOD_RECONFIG_IO_CHAIN) { |
Tony Lindgren | cc82453 | 2014-08-25 16:15:35 -0700 | [diff] [blame] | 2124 | _reconfigure_io_chain(); |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 2125 | } |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 2126 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2127 | _add_initiator_dep(oh, mpu_oh); |
| 2128 | |
| 2129 | if (oh->clkdm) { |
| 2130 | /* |
| 2131 | * A clockdomain must be in SW_SUP before enabling |
| 2132 | * completely the module. The clockdomain can be set |
| 2133 | * in HW_AUTO only when the module become ready. |
| 2134 | */ |
Paul Walmsley | b71c721 | 2012-09-23 17:28:28 -0600 | [diff] [blame] | 2135 | hwsup = clkdm_in_hwsup(oh->clkdm) && |
| 2136 | !clkdm_missing_idle_reporting(oh->clkdm); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2137 | r = clkdm_hwmod_enable(oh->clkdm, oh); |
| 2138 | if (r) { |
| 2139 | WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n", |
| 2140 | oh->name, oh->clkdm->name, r); |
| 2141 | return r; |
| 2142 | } |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 2143 | } |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2144 | |
| 2145 | _enable_clocks(oh); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 2146 | if (soc_ops.enable_module) |
| 2147 | soc_ops.enable_module(oh); |
Paul Walmsley | fa20022 | 2013-01-26 00:48:56 -0700 | [diff] [blame] | 2148 | if (oh->flags & HWMOD_BLOCK_WFI) |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 2149 | cpu_idle_poll_ctrl(true); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 2150 | |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 2151 | if (soc_ops.update_context_lost) |
| 2152 | soc_ops.update_context_lost(oh); |
| 2153 | |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2154 | r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) : |
| 2155 | -EINVAL; |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2156 | if (!r) { |
| 2157 | /* |
| 2158 | * Set the clockdomain to HW_AUTO only if the target is ready, |
| 2159 | * assuming that the previous state was HW_AUTO |
| 2160 | */ |
| 2161 | if (oh->clkdm && hwsup) |
| 2162 | clkdm_allow_idle(oh->clkdm); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 2163 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2164 | oh->_state = _HWMOD_STATE_ENABLED; |
| 2165 | |
| 2166 | /* Access the sysconfig only if the target is ready */ |
| 2167 | if (oh->class->sysc) { |
| 2168 | if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED)) |
| 2169 | _update_sysc_cache(oh); |
| 2170 | _enable_sysc(oh); |
| 2171 | } |
Paul Walmsley | 6d266f6 | 2013-02-10 11:22:22 -0700 | [diff] [blame] | 2172 | r = _enable_preprogram(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2173 | } else { |
Paul Walmsley | 2577a4a | 2012-10-29 20:57:55 -0600 | [diff] [blame] | 2174 | if (soc_ops.disable_module) |
| 2175 | soc_ops.disable_module(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2176 | _disable_clocks(oh); |
Lokesh Vutla | 812ce9d | 2014-12-19 18:04:50 +0530 | [diff] [blame] | 2177 | pr_err("omap_hwmod: %s: _wait_target_ready failed: %d\n", |
| 2178 | oh->name, r); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2179 | |
| 2180 | if (oh->clkdm) |
| 2181 | clkdm_hwmod_disable(oh->clkdm, oh); |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 2182 | } |
| 2183 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2184 | return r; |
| 2185 | } |
| 2186 | |
| 2187 | /** |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2188 | * _idle - idle an omap_hwmod |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2189 | * @oh: struct omap_hwmod * |
| 2190 | * |
| 2191 | * 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] | 2192 | * no further work. Returns -EINVAL if the hwmod is in the wrong |
| 2193 | * state or returns 0. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2194 | */ |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2195 | static int _idle(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2196 | { |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 2197 | pr_debug("omap_hwmod: %s: idling\n", oh->name); |
| 2198 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2199 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 2200 | WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n", |
| 2201 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2202 | return -EINVAL; |
| 2203 | } |
| 2204 | |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 2205 | if (_are_all_hardreset_lines_asserted(oh)) |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 2206 | return 0; |
| 2207 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2208 | if (oh->class->sysc) |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2209 | _idle_sysc(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2210 | _del_initiator_dep(oh, mpu_oh); |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 2211 | |
Paul Walmsley | fa20022 | 2013-01-26 00:48:56 -0700 | [diff] [blame] | 2212 | if (oh->flags & HWMOD_BLOCK_WFI) |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 2213 | cpu_idle_poll_ctrl(false); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 2214 | if (soc_ops.disable_module) |
| 2215 | soc_ops.disable_module(oh); |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 2216 | |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 2217 | /* |
| 2218 | * The module must be in idle mode before disabling any parents |
| 2219 | * clocks. Otherwise, the parent clock might be disabled before |
| 2220 | * the module transition is done, and thus will prevent the |
| 2221 | * transition to complete properly. |
| 2222 | */ |
| 2223 | _disable_clocks(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2224 | if (oh->clkdm) |
| 2225 | clkdm_hwmod_disable(oh->clkdm, oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2226 | |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 2227 | /* Mux pins for device idle if populated */ |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 2228 | if (oh->mux && oh->mux->pads_dynamic) { |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 2229 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE); |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 2230 | _reconfigure_io_chain(); |
Tony Lindgren | 6a08b11 | 2014-09-18 08:58:28 -0700 | [diff] [blame] | 2231 | } else if (oh->flags & HWMOD_RECONFIG_IO_CHAIN) { |
Tony Lindgren | cc82453 | 2014-08-25 16:15:35 -0700 | [diff] [blame] | 2232 | _reconfigure_io_chain(); |
Vishwanath BS | 5165882 | 2012-06-22 08:40:04 -0600 | [diff] [blame] | 2233 | } |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 2234 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2235 | oh->_state = _HWMOD_STATE_IDLE; |
| 2236 | |
| 2237 | return 0; |
| 2238 | } |
| 2239 | |
| 2240 | /** |
| 2241 | * _shutdown - shutdown an omap_hwmod |
| 2242 | * @oh: struct omap_hwmod * |
| 2243 | * |
| 2244 | * Shut down an omap_hwmod @oh. This should be called when the driver |
| 2245 | * used for the hwmod is removed or unloaded or if the driver is not |
| 2246 | * used by the system. Returns -EINVAL if the hwmod is in the wrong |
| 2247 | * state or returns 0. |
| 2248 | */ |
| 2249 | static int _shutdown(struct omap_hwmod *oh) |
| 2250 | { |
Paul Walmsley | 9c8b0ec | 2012-04-18 19:10:02 -0600 | [diff] [blame] | 2251 | int ret, i; |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 2252 | u8 prev_state; |
| 2253 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2254 | if (oh->_state != _HWMOD_STATE_IDLE && |
| 2255 | oh->_state != _HWMOD_STATE_ENABLED) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 2256 | WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n", |
| 2257 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2258 | return -EINVAL; |
| 2259 | } |
| 2260 | |
Omar Ramirez Luna | eb05f69 | 2012-09-23 17:28:20 -0600 | [diff] [blame] | 2261 | if (_are_all_hardreset_lines_asserted(oh)) |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 2262 | return 0; |
| 2263 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2264 | pr_debug("omap_hwmod: %s: disabling\n", oh->name); |
| 2265 | |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 2266 | if (oh->class->pre_shutdown) { |
| 2267 | prev_state = oh->_state; |
| 2268 | if (oh->_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2269 | _enable(oh); |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 2270 | ret = oh->class->pre_shutdown(oh); |
| 2271 | if (ret) { |
| 2272 | if (prev_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2273 | _idle(oh); |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 2274 | return ret; |
| 2275 | } |
| 2276 | } |
| 2277 | |
Miguel Vadillo | 6481c73 | 2011-07-01 22:54:02 +0200 | [diff] [blame] | 2278 | if (oh->class->sysc) { |
| 2279 | if (oh->_state == _HWMOD_STATE_IDLE) |
| 2280 | _enable(oh); |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2281 | _shutdown_sysc(oh); |
Miguel Vadillo | 6481c73 | 2011-07-01 22:54:02 +0200 | [diff] [blame] | 2282 | } |
BenoƮt Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2283 | |
Benoit Cousson | 3827f94 | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 2284 | /* clocks and deps are already disabled in idle */ |
| 2285 | if (oh->_state == _HWMOD_STATE_ENABLED) { |
| 2286 | _del_initiator_dep(oh, mpu_oh); |
| 2287 | /* XXX what about the other system initiators here? dma, dsp */ |
Paul Walmsley | fa20022 | 2013-01-26 00:48:56 -0700 | [diff] [blame] | 2288 | if (oh->flags & HWMOD_BLOCK_WFI) |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 2289 | cpu_idle_poll_ctrl(false); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 2290 | if (soc_ops.disable_module) |
| 2291 | soc_ops.disable_module(oh); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 2292 | _disable_clocks(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 2293 | if (oh->clkdm) |
| 2294 | clkdm_hwmod_disable(oh->clkdm, oh); |
Benoit Cousson | 3827f94 | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 2295 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2296 | /* XXX Should this code also force-disable the optional clocks? */ |
| 2297 | |
Paul Walmsley | 9c8b0ec | 2012-04-18 19:10:02 -0600 | [diff] [blame] | 2298 | for (i = 0; i < oh->rst_lines_cnt; i++) |
| 2299 | _assert_hardreset(oh, oh->rst_lines[i].name); |
Benoit Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 2300 | |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 2301 | /* Mux pins to safe mode or use populated off mode values */ |
| 2302 | if (oh->mux) |
| 2303 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2304 | |
| 2305 | oh->_state = _HWMOD_STATE_DISABLED; |
| 2306 | |
| 2307 | return 0; |
| 2308 | } |
| 2309 | |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2310 | static int of_dev_find_hwmod(struct device_node *np, |
| 2311 | struct omap_hwmod *oh) |
| 2312 | { |
| 2313 | int count, i, res; |
| 2314 | const char *p; |
| 2315 | |
| 2316 | count = of_property_count_strings(np, "ti,hwmods"); |
| 2317 | if (count < 1) |
| 2318 | return -ENODEV; |
| 2319 | |
| 2320 | for (i = 0; i < count; i++) { |
| 2321 | res = of_property_read_string_index(np, "ti,hwmods", |
| 2322 | i, &p); |
| 2323 | if (res) |
| 2324 | continue; |
| 2325 | if (!strcmp(p, oh->name)) { |
| 2326 | pr_debug("omap_hwmod: dt %s[%i] uses hwmod %s\n", |
| 2327 | np->name, i, oh->name); |
| 2328 | return i; |
| 2329 | } |
| 2330 | } |
| 2331 | |
| 2332 | return -ENODEV; |
| 2333 | } |
| 2334 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2335 | /** |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2336 | * of_dev_hwmod_lookup - look up needed hwmod from dt blob |
| 2337 | * @np: struct device_node * |
| 2338 | * @oh: struct omap_hwmod * |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2339 | * @index: index of the entry found |
| 2340 | * @found: struct device_node * found or NULL |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2341 | * |
| 2342 | * Parse the dt blob and find out needed hwmod. Recursive function is |
| 2343 | * implemented to take care hierarchical dt blob parsing. |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2344 | * Return: Returns 0 on success, -ENODEV when not found. |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2345 | */ |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2346 | static int of_dev_hwmod_lookup(struct device_node *np, |
| 2347 | struct omap_hwmod *oh, |
| 2348 | int *index, |
| 2349 | struct device_node **found) |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2350 | { |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2351 | struct device_node *np0 = NULL; |
| 2352 | int res; |
| 2353 | |
| 2354 | res = of_dev_find_hwmod(np, oh); |
| 2355 | if (res >= 0) { |
| 2356 | *found = np; |
| 2357 | *index = res; |
| 2358 | return 0; |
| 2359 | } |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2360 | |
| 2361 | for_each_child_of_node(np, np0) { |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2362 | struct device_node *fc; |
| 2363 | int i; |
| 2364 | |
| 2365 | res = of_dev_hwmod_lookup(np0, oh, &i, &fc); |
| 2366 | if (res == 0) { |
| 2367 | *found = fc; |
| 2368 | *index = i; |
| 2369 | return 0; |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2370 | } |
| 2371 | } |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2372 | |
| 2373 | *found = NULL; |
| 2374 | *index = 0; |
| 2375 | |
| 2376 | return -ENODEV; |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2377 | } |
| 2378 | |
| 2379 | /** |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2380 | * _init_mpu_rt_base - populate the virtual address for a hwmod |
| 2381 | * @oh: struct omap_hwmod * to locate the virtual address |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2382 | * @data: (unused, caller should pass NULL) |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2383 | * @index: index of the reg entry iospace in device tree |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2384 | * @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] | 2385 | * |
| 2386 | * Cache the virtual address used by the MPU to access this IP block's |
| 2387 | * registers. This address is needed early so the OCP registers that |
| 2388 | * are part of the device's address space can be ioremapped properly. |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2389 | * |
Roger Quadros | 9a258af | 2015-07-16 16:16:44 +0300 | [diff] [blame] | 2390 | * If SYSC access is not needed, the registers will not be remapped |
| 2391 | * and non-availability of MPU access is not treated as an error. |
| 2392 | * |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2393 | * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and |
| 2394 | * -ENXIO on absent or invalid register target address space. |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2395 | */ |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2396 | 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] | 2397 | int index, struct device_node *np) |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2398 | { |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2399 | struct omap_hwmod_addr_space *mem; |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2400 | void __iomem *va_start = NULL; |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2401 | |
| 2402 | if (!oh) |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2403 | return -EINVAL; |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2404 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2405 | _save_mpu_port_index(oh); |
| 2406 | |
Roger Quadros | 9a258af | 2015-07-16 16:16:44 +0300 | [diff] [blame] | 2407 | /* if we don't need sysc access we don't need to ioremap */ |
| 2408 | if (!oh->class->sysc) |
| 2409 | return 0; |
| 2410 | |
| 2411 | /* we can't continue without MPU PORT if we need sysc access */ |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2412 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2413 | return -ENXIO; |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2414 | |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2415 | mem = _find_mpu_rt_addr_space(oh); |
| 2416 | if (!mem) { |
| 2417 | pr_debug("omap_hwmod: %s: no MPU register target found\n", |
| 2418 | oh->name); |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2419 | |
| 2420 | /* Extract the IO space from device tree blob */ |
Roger Quadros | 9a258af | 2015-07-16 16:16:44 +0300 | [diff] [blame] | 2421 | if (!np) { |
| 2422 | pr_err("omap_hwmod: %s: no dt node\n", oh->name); |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2423 | return -ENXIO; |
Roger Quadros | 9a258af | 2015-07-16 16:16:44 +0300 | [diff] [blame] | 2424 | } |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2425 | |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2426 | va_start = of_iomap(np, index + oh->mpu_rt_idx); |
Santosh Shilimkar | 079abad | 2013-01-21 18:40:57 +0530 | [diff] [blame] | 2427 | } else { |
| 2428 | va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start); |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2429 | } |
| 2430 | |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2431 | if (!va_start) { |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2432 | if (mem) |
| 2433 | pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name); |
| 2434 | else |
| 2435 | pr_err("omap_hwmod: %s: Missing dt reg%i for %s\n", |
| 2436 | oh->name, index, np->full_name); |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2437 | return -ENXIO; |
Paul Walmsley | c9aafd2 | 2012-04-18 19:10:05 -0600 | [diff] [blame] | 2438 | } |
| 2439 | |
| 2440 | pr_debug("omap_hwmod: %s: MPU register target at va %p\n", |
| 2441 | oh->name, va_start); |
| 2442 | |
| 2443 | oh->_mpu_rt_va = va_start; |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2444 | return 0; |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2445 | } |
| 2446 | |
| 2447 | /** |
| 2448 | * _init - initialize internal data for the hwmod @oh |
| 2449 | * @oh: struct omap_hwmod * |
| 2450 | * @n: (unused) |
| 2451 | * |
| 2452 | * Look up the clocks and the address space used by the MPU to access |
| 2453 | * registers belonging to the hwmod @oh. @oh must already be |
| 2454 | * registered at this point. This is the first of two phases for |
| 2455 | * hwmod initialization. Code called here does not touch any hardware |
| 2456 | * registers, it simply prepares internal data structures. Returns 0 |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2457 | * upon success or if the hwmod isn't registered or if the hwmod's |
| 2458 | * address space is not defined, or -EINVAL upon failure. |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2459 | */ |
| 2460 | static int __init _init(struct omap_hwmod *oh, void *data) |
| 2461 | { |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2462 | int r, index; |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2463 | struct device_node *np = NULL; |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2464 | |
| 2465 | if (oh->_state != _HWMOD_STATE_REGISTERED) |
| 2466 | return 0; |
| 2467 | |
Tony Lindgren | 5e863c5 | 2013-12-06 14:20:16 -0800 | [diff] [blame] | 2468 | if (of_have_populated_dt()) { |
| 2469 | struct device_node *bus; |
| 2470 | |
| 2471 | bus = of_find_node_by_name(NULL, "ocp"); |
| 2472 | if (!bus) |
| 2473 | return -ENODEV; |
| 2474 | |
| 2475 | r = of_dev_hwmod_lookup(bus, oh, &index, &np); |
| 2476 | if (r) |
| 2477 | pr_debug("omap_hwmod: %s missing dt data\n", oh->name); |
| 2478 | else if (np && index) |
| 2479 | pr_warn("omap_hwmod: %s using broken dt data from %s\n", |
| 2480 | oh->name, np->name); |
| 2481 | } |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2482 | |
Roger Quadros | 9a258af | 2015-07-16 16:16:44 +0300 | [diff] [blame] | 2483 | r = _init_mpu_rt_base(oh, NULL, index, np); |
| 2484 | if (r < 0) { |
| 2485 | WARN(1, "omap_hwmod: %s: doesn't have mpu register target base\n", |
| 2486 | oh->name); |
| 2487 | return 0; |
Suman Anna | 6423d6d | 2013-10-08 23:46:49 -0600 | [diff] [blame] | 2488 | } |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2489 | |
| 2490 | r = _init_clocks(oh, NULL); |
Russell King | c48cd65 | 2013-03-13 20:44:21 +0000 | [diff] [blame] | 2491 | if (r < 0) { |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2492 | WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name); |
| 2493 | return -EINVAL; |
| 2494 | } |
| 2495 | |
Suman Anna | 3d36ad7 | 2014-03-14 14:45:17 +0530 | [diff] [blame] | 2496 | if (np) { |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2497 | if (of_find_property(np, "ti,no-reset-on-init", NULL)) |
| 2498 | oh->flags |= HWMOD_INIT_NO_RESET; |
| 2499 | if (of_find_property(np, "ti,no-idle-on-init", NULL)) |
| 2500 | oh->flags |= HWMOD_INIT_NO_IDLE; |
Suman Anna | 3d36ad7 | 2014-03-14 14:45:17 +0530 | [diff] [blame] | 2501 | } |
Rajendra Nayak | f92d959 | 2013-10-09 01:26:55 -0600 | [diff] [blame] | 2502 | |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2503 | oh->_state = _HWMOD_STATE_INITIALIZED; |
| 2504 | |
| 2505 | return 0; |
| 2506 | } |
| 2507 | |
| 2508 | /** |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2509 | * _setup_iclk_autoidle - configure an IP block's interface clocks |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2510 | * @oh: struct omap_hwmod * |
| 2511 | * |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2512 | * Set up the module's interface clocks. XXX This function is still mostly |
| 2513 | * a stub; implementing this properly requires iclk autoidle usecounting in |
| 2514 | * the clock code. No return value. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2515 | */ |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2516 | static void __init _setup_iclk_autoidle(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2517 | { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 2518 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 2519 | struct list_head *p; |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 2520 | int i = 0; |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 2521 | if (oh->_state != _HWMOD_STATE_INITIALIZED) |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2522 | return; |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2523 | |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 2524 | p = oh->slave_ports.next; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2525 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 2526 | while (i < oh->slaves_cnt) { |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 2527 | os = _fetch_next_ocp_if(&p, &i); |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 2528 | if (!os->_clk) |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2529 | continue; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2530 | |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2531 | if (os->flags & OCPIF_SWSUP_IDLE) { |
| 2532 | /* XXX omap_iclk_deny_idle(c); */ |
| 2533 | } else { |
| 2534 | /* XXX omap_iclk_allow_idle(c); */ |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 2535 | clk_enable(os->_clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2536 | } |
| 2537 | } |
| 2538 | |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2539 | return; |
| 2540 | } |
| 2541 | |
| 2542 | /** |
| 2543 | * _setup_reset - reset an IP block during the setup process |
| 2544 | * @oh: struct omap_hwmod * |
| 2545 | * |
| 2546 | * Reset the IP block corresponding to the hwmod @oh during the setup |
| 2547 | * process. The IP block is first enabled so it can be successfully |
| 2548 | * reset. Returns 0 upon success or a negative error code upon |
| 2549 | * failure. |
| 2550 | */ |
| 2551 | static int __init _setup_reset(struct omap_hwmod *oh) |
| 2552 | { |
| 2553 | int r; |
| 2554 | |
| 2555 | if (oh->_state != _HWMOD_STATE_INITIALIZED) |
| 2556 | return -EINVAL; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2557 | |
Paul Walmsley | 5fb3d52 | 2012-10-29 22:11:50 -0600 | [diff] [blame] | 2558 | if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK) |
| 2559 | return -EPERM; |
| 2560 | |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 2561 | if (oh->rst_lines_cnt == 0) { |
| 2562 | r = _enable(oh); |
| 2563 | if (r) { |
Joe Perches | 3d0cb73 | 2014-09-13 11:31:16 -0700 | [diff] [blame] | 2564 | pr_warn("omap_hwmod: %s: cannot be enabled for reset (%d)\n", |
| 2565 | oh->name, oh->_state); |
Paul Walmsley | 747834a | 2012-04-18 19:10:04 -0600 | [diff] [blame] | 2566 | return -EINVAL; |
| 2567 | } |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 2568 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2569 | |
Rajendra Nayak | 2800852 | 2012-03-13 22:55:23 +0530 | [diff] [blame] | 2570 | if (!(oh->flags & HWMOD_INIT_NO_RESET)) |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2571 | r = _reset(oh); |
| 2572 | |
| 2573 | return r; |
| 2574 | } |
| 2575 | |
| 2576 | /** |
| 2577 | * _setup_postsetup - transition to the appropriate state after _setup |
| 2578 | * @oh: struct omap_hwmod * |
| 2579 | * |
| 2580 | * Place an IP block represented by @oh into a "post-setup" state -- |
| 2581 | * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that |
| 2582 | * this function is called at the end of _setup().) The postsetup |
| 2583 | * state for an IP block can be changed by calling |
| 2584 | * omap_hwmod_enter_postsetup_state() early in the boot process, |
| 2585 | * before one of the omap_hwmod_setup*() functions are called for the |
| 2586 | * IP block. |
| 2587 | * |
| 2588 | * The IP block stays in this state until a PM runtime-based driver is |
| 2589 | * loaded for that IP block. A post-setup state of IDLE is |
| 2590 | * appropriate for almost all IP blocks with runtime PM-enabled |
| 2591 | * drivers, since those drivers are able to enable the IP block. A |
| 2592 | * post-setup state of ENABLED is appropriate for kernels with PM |
| 2593 | * runtime disabled. The DISABLED state is appropriate for unusual IP |
| 2594 | * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers |
| 2595 | * included, since the WDTIMER starts running on reset and will reset |
| 2596 | * the MPU if left active. |
| 2597 | * |
| 2598 | * This post-setup mechanism is deprecated. Once all of the OMAP |
| 2599 | * drivers have been converted to use PM runtime, and all of the IP |
| 2600 | * block data and interconnect data is available to the hwmod code, it |
| 2601 | * should be possible to replace this mechanism with a "lazy reset" |
| 2602 | * arrangement. In a "lazy reset" setup, each IP block is enabled |
| 2603 | * when the driver first probes, then all remaining IP blocks without |
| 2604 | * drivers are either shut down or enabled after the drivers have |
| 2605 | * loaded. However, this cannot take place until the above |
| 2606 | * preconditions have been met, since otherwise the late reset code |
| 2607 | * has no way of knowing which IP blocks are in use by drivers, and |
| 2608 | * which ones are unused. |
| 2609 | * |
| 2610 | * No return value. |
| 2611 | */ |
| 2612 | static void __init _setup_postsetup(struct omap_hwmod *oh) |
| 2613 | { |
| 2614 | u8 postsetup_state; |
| 2615 | |
| 2616 | if (oh->rst_lines_cnt > 0) |
| 2617 | return; |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2618 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2619 | postsetup_state = oh->_postsetup_state; |
| 2620 | if (postsetup_state == _HWMOD_STATE_UNKNOWN) |
| 2621 | postsetup_state = _HWMOD_STATE_ENABLED; |
| 2622 | |
| 2623 | /* |
| 2624 | * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data - |
| 2625 | * it should be set by the core code as a runtime flag during startup |
| 2626 | */ |
| 2627 | if ((oh->flags & HWMOD_INIT_NO_IDLE) && |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 2628 | (postsetup_state == _HWMOD_STATE_IDLE)) { |
| 2629 | oh->_int_flags |= _HWMOD_SKIP_ENABLE; |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2630 | postsetup_state = _HWMOD_STATE_ENABLED; |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 2631 | } |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2632 | |
| 2633 | if (postsetup_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2634 | _idle(oh); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2635 | else if (postsetup_state == _HWMOD_STATE_DISABLED) |
| 2636 | _shutdown(oh); |
| 2637 | else if (postsetup_state != _HWMOD_STATE_ENABLED) |
| 2638 | WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n", |
| 2639 | oh->name, postsetup_state); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2640 | |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2641 | return; |
| 2642 | } |
| 2643 | |
| 2644 | /** |
| 2645 | * _setup - prepare IP block hardware for use |
| 2646 | * @oh: struct omap_hwmod * |
| 2647 | * @n: (unused, pass NULL) |
| 2648 | * |
| 2649 | * Configure the IP block represented by @oh. This may include |
| 2650 | * enabling the IP block, resetting it, and placing it into a |
| 2651 | * post-setup state, depending on the type of IP block and applicable |
| 2652 | * flags. IP blocks are reset to prevent any previous configuration |
| 2653 | * by the bootloader or previous operating system from interfering |
| 2654 | * with power management or other parts of the system. The reset can |
| 2655 | * be avoided; see omap_hwmod_no_setup_reset(). This is the second of |
| 2656 | * two phases for hwmod initialization. Code called here generally |
| 2657 | * affects the IP block hardware, or system integration hardware |
| 2658 | * associated with the IP block. Returns 0. |
| 2659 | */ |
| 2660 | static int __init _setup(struct omap_hwmod *oh, void *data) |
| 2661 | { |
| 2662 | if (oh->_state != _HWMOD_STATE_INITIALIZED) |
| 2663 | return 0; |
| 2664 | |
Tomi Valkeinen | f22d254 | 2014-10-09 17:03:14 +0300 | [diff] [blame] | 2665 | if (oh->parent_hwmod) { |
| 2666 | int r; |
| 2667 | |
| 2668 | r = _enable(oh->parent_hwmod); |
| 2669 | WARN(r, "hwmod: %s: setup: failed to enable parent hwmod %s\n", |
| 2670 | oh->name, oh->parent_hwmod->name); |
| 2671 | } |
| 2672 | |
Paul Walmsley | 64813c3 | 2012-04-18 19:10:03 -0600 | [diff] [blame] | 2673 | _setup_iclk_autoidle(oh); |
| 2674 | |
| 2675 | if (!_setup_reset(oh)) |
| 2676 | _setup_postsetup(oh); |
| 2677 | |
Tomi Valkeinen | f22d254 | 2014-10-09 17:03:14 +0300 | [diff] [blame] | 2678 | if (oh->parent_hwmod) { |
| 2679 | u8 postsetup_state; |
| 2680 | |
| 2681 | postsetup_state = oh->parent_hwmod->_postsetup_state; |
| 2682 | |
| 2683 | if (postsetup_state == _HWMOD_STATE_IDLE) |
| 2684 | _idle(oh->parent_hwmod); |
| 2685 | else if (postsetup_state == _HWMOD_STATE_DISABLED) |
| 2686 | _shutdown(oh->parent_hwmod); |
| 2687 | else if (postsetup_state != _HWMOD_STATE_ENABLED) |
| 2688 | WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n", |
| 2689 | oh->parent_hwmod->name, postsetup_state); |
| 2690 | } |
| 2691 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2692 | return 0; |
| 2693 | } |
| 2694 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2695 | /** |
| 2696 | * _register - register a struct omap_hwmod |
| 2697 | * @oh: struct omap_hwmod * |
| 2698 | * |
| 2699 | * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod |
| 2700 | * already has been registered by the same name; -EINVAL if the |
| 2701 | * omap_hwmod is in the wrong state, if @oh is NULL, if the |
| 2702 | * omap_hwmod's class field is NULL; if the omap_hwmod is missing a |
| 2703 | * name, or if the omap_hwmod's class is missing a name; or 0 upon |
| 2704 | * success. |
| 2705 | * |
| 2706 | * XXX The data should be copied into bootmem, so the original data |
| 2707 | * should be marked __initdata and freed after init. This would allow |
| 2708 | * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note |
| 2709 | * that the copy process would be relatively complex due to the large number |
| 2710 | * of substructures. |
| 2711 | */ |
Benoit Cousson | 01592df | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 2712 | static int __init _register(struct omap_hwmod *oh) |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2713 | { |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2714 | if (!oh || !oh->name || !oh->class || !oh->class->name || |
| 2715 | (oh->_state != _HWMOD_STATE_UNKNOWN)) |
| 2716 | return -EINVAL; |
| 2717 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2718 | pr_debug("omap_hwmod: %s: registering\n", oh->name); |
| 2719 | |
Benoit Cousson | ce35b24 | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 2720 | if (_lookup(oh->name)) |
| 2721 | return -EEXIST; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2722 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2723 | list_add_tail(&oh->node, &omap_hwmod_list); |
| 2724 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2725 | INIT_LIST_HEAD(&oh->master_ports); |
| 2726 | INIT_LIST_HEAD(&oh->slave_ports); |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2727 | spin_lock_init(&oh->_lock); |
Peter Ujfalusi | 6931795 | 2015-02-26 00:00:51 -0700 | [diff] [blame] | 2728 | lockdep_set_class(&oh->_lock, &oh->hwmod_key); |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2729 | |
| 2730 | oh->_state = _HWMOD_STATE_REGISTERED; |
| 2731 | |
Paul Walmsley | 569edd70 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2732 | /* |
| 2733 | * XXX Rather than doing a strcmp(), this should test a flag |
| 2734 | * set in the hwmod data, inserted by the autogenerator code. |
| 2735 | */ |
| 2736 | if (!strcmp(oh->name, MPU_INITIATOR_NAME)) |
| 2737 | mpu_oh = oh; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2738 | |
Paul Walmsley | 569edd70 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2739 | return 0; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 2740 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2741 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2742 | /** |
| 2743 | * _alloc_links - return allocated memory for hwmod links |
| 2744 | * @ml: pointer to a struct omap_hwmod_link * for the master link |
| 2745 | * @sl: pointer to a struct omap_hwmod_link * for the slave link |
| 2746 | * |
| 2747 | * Return pointers to two struct omap_hwmod_link records, via the |
| 2748 | * addresses pointed to by @ml and @sl. Will first attempt to return |
| 2749 | * memory allocated as part of a large initial block, but if that has |
| 2750 | * been exhausted, will allocate memory itself. Since ideally this |
| 2751 | * second allocation path will never occur, the number of these |
| 2752 | * 'supplemental' allocations will be logged when debugging is |
| 2753 | * enabled. Returns 0. |
| 2754 | */ |
| 2755 | static int __init _alloc_links(struct omap_hwmod_link **ml, |
| 2756 | struct omap_hwmod_link **sl) |
| 2757 | { |
| 2758 | unsigned int sz; |
| 2759 | |
| 2760 | if ((free_ls + LINKS_PER_OCP_IF) <= max_ls) { |
| 2761 | *ml = &linkspace[free_ls++]; |
| 2762 | *sl = &linkspace[free_ls++]; |
| 2763 | return 0; |
| 2764 | } |
| 2765 | |
| 2766 | sz = sizeof(struct omap_hwmod_link) * LINKS_PER_OCP_IF; |
| 2767 | |
| 2768 | *sl = NULL; |
Santosh Shilimkar | b6cb5ba | 2014-01-21 15:50:51 -0800 | [diff] [blame] | 2769 | *ml = memblock_virt_alloc(sz, 0); |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2770 | |
| 2771 | *sl = (void *)(*ml) + sizeof(struct omap_hwmod_link); |
| 2772 | |
| 2773 | ls_supp++; |
| 2774 | pr_debug("omap_hwmod: supplemental link allocations needed: %d\n", |
| 2775 | ls_supp * LINKS_PER_OCP_IF); |
| 2776 | |
| 2777 | return 0; |
| 2778 | }; |
| 2779 | |
| 2780 | /** |
| 2781 | * _add_link - add an interconnect between two IP blocks |
| 2782 | * @oi: pointer to a struct omap_hwmod_ocp_if record |
| 2783 | * |
| 2784 | * Add struct omap_hwmod_link records connecting the master IP block |
| 2785 | * specified in @oi->master to @oi, and connecting the slave IP block |
| 2786 | * specified in @oi->slave to @oi. This code is assumed to run before |
| 2787 | * preemption or SMP has been enabled, thus avoiding the need for |
| 2788 | * locking in this code. Changes to this assumption will require |
| 2789 | * additional locking. Returns 0. |
| 2790 | */ |
| 2791 | static int __init _add_link(struct omap_hwmod_ocp_if *oi) |
| 2792 | { |
| 2793 | struct omap_hwmod_link *ml, *sl; |
| 2794 | |
| 2795 | pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name, |
| 2796 | oi->slave->name); |
| 2797 | |
| 2798 | _alloc_links(&ml, &sl); |
| 2799 | |
| 2800 | ml->ocp_if = oi; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2801 | list_add(&ml->node, &oi->master->master_ports); |
| 2802 | oi->master->masters_cnt++; |
| 2803 | |
| 2804 | sl->ocp_if = oi; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2805 | list_add(&sl->node, &oi->slave->slave_ports); |
| 2806 | oi->slave->slaves_cnt++; |
| 2807 | |
| 2808 | return 0; |
| 2809 | } |
| 2810 | |
| 2811 | /** |
| 2812 | * _register_link - register a struct omap_hwmod_ocp_if |
| 2813 | * @oi: struct omap_hwmod_ocp_if * |
| 2814 | * |
| 2815 | * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it |
| 2816 | * has already been registered; -EINVAL if @oi is NULL or if the |
| 2817 | * record pointed to by @oi is missing required fields; or 0 upon |
| 2818 | * success. |
| 2819 | * |
| 2820 | * XXX The data should be copied into bootmem, so the original data |
| 2821 | * should be marked __initdata and freed after init. This would allow |
| 2822 | * unneeded omap_hwmods to be freed on multi-OMAP configurations. |
| 2823 | */ |
| 2824 | static int __init _register_link(struct omap_hwmod_ocp_if *oi) |
| 2825 | { |
| 2826 | if (!oi || !oi->master || !oi->slave || !oi->user) |
| 2827 | return -EINVAL; |
| 2828 | |
| 2829 | if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED) |
| 2830 | return -EEXIST; |
| 2831 | |
| 2832 | pr_debug("omap_hwmod: registering link from %s to %s\n", |
| 2833 | oi->master->name, oi->slave->name); |
| 2834 | |
| 2835 | /* |
| 2836 | * Register the connected hwmods, if they haven't been |
| 2837 | * registered already |
| 2838 | */ |
| 2839 | if (oi->master->_state != _HWMOD_STATE_REGISTERED) |
| 2840 | _register(oi->master); |
| 2841 | |
| 2842 | if (oi->slave->_state != _HWMOD_STATE_REGISTERED) |
| 2843 | _register(oi->slave); |
| 2844 | |
| 2845 | _add_link(oi); |
| 2846 | |
| 2847 | oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED; |
| 2848 | |
| 2849 | return 0; |
| 2850 | } |
| 2851 | |
| 2852 | /** |
| 2853 | * _alloc_linkspace - allocate large block of hwmod links |
| 2854 | * @ois: pointer to an array of struct omap_hwmod_ocp_if records to count |
| 2855 | * |
| 2856 | * Allocate a large block of struct omap_hwmod_link records. This |
| 2857 | * improves boot time significantly by avoiding the need to allocate |
| 2858 | * individual records one by one. If the number of records to |
| 2859 | * allocate in the block hasn't been manually specified, this function |
| 2860 | * will count the number of struct omap_hwmod_ocp_if records in @ois |
| 2861 | * and use that to determine the allocation size. For SoC families |
| 2862 | * that require multiple list registrations, such as OMAP3xxx, this |
| 2863 | * estimation process isn't optimal, so manual estimation is advised |
| 2864 | * in those cases. Returns -EEXIST if the allocation has already occurred |
| 2865 | * or 0 upon success. |
| 2866 | */ |
| 2867 | static int __init _alloc_linkspace(struct omap_hwmod_ocp_if **ois) |
| 2868 | { |
| 2869 | unsigned int i = 0; |
| 2870 | unsigned int sz; |
| 2871 | |
| 2872 | if (linkspace) { |
| 2873 | WARN(1, "linkspace already allocated\n"); |
| 2874 | return -EEXIST; |
| 2875 | } |
| 2876 | |
| 2877 | if (max_ls == 0) |
| 2878 | while (ois[i++]) |
| 2879 | max_ls += LINKS_PER_OCP_IF; |
| 2880 | |
| 2881 | sz = sizeof(struct omap_hwmod_link) * max_ls; |
| 2882 | |
| 2883 | pr_debug("omap_hwmod: %s: allocating %d byte linkspace (%d links)\n", |
| 2884 | __func__, sz, max_ls); |
| 2885 | |
Santosh Shilimkar | b6cb5ba | 2014-01-21 15:50:51 -0800 | [diff] [blame] | 2886 | linkspace = memblock_virt_alloc(sz, 0); |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 2887 | |
| 2888 | return 0; |
| 2889 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2890 | |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2891 | /* Static functions intended only for use in soc_ops field function pointers */ |
| 2892 | |
| 2893 | /** |
Tero Kristo | 9002e921 | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 2894 | * _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] | 2895 | * @oh: struct omap_hwmod * |
| 2896 | * |
| 2897 | * Wait for a module @oh to leave slave idle. Returns 0 if the module |
| 2898 | * does not have an IDLEST bit or if the module successfully leaves |
| 2899 | * slave idle; otherwise, pass along the return value of the |
| 2900 | * appropriate *_cm*_wait_module_ready() function. |
| 2901 | */ |
Tero Kristo | 9002e921 | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 2902 | static int _omap2xxx_3xxx_wait_target_ready(struct omap_hwmod *oh) |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2903 | { |
| 2904 | if (!oh) |
| 2905 | return -EINVAL; |
| 2906 | |
| 2907 | if (oh->flags & HWMOD_NO_IDLEST) |
| 2908 | return 0; |
| 2909 | |
| 2910 | if (!_find_mpu_rt_port(oh)) |
| 2911 | return 0; |
| 2912 | |
| 2913 | /* XXX check module SIDLEMODE, hardreset status, enabled clocks */ |
| 2914 | |
Tero Kristo | 021b6ff | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 2915 | return omap_cm_wait_module_ready(0, oh->prcm.omap2.module_offs, |
| 2916 | oh->prcm.omap2.idlest_reg_id, |
| 2917 | oh->prcm.omap2.idlest_idle_bit); |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2918 | } |
| 2919 | |
| 2920 | /** |
| 2921 | * _omap4_wait_target_ready - wait for a module to leave slave idle |
| 2922 | * @oh: struct omap_hwmod * |
| 2923 | * |
| 2924 | * Wait for a module @oh to leave slave idle. Returns 0 if the module |
| 2925 | * does not have an IDLEST bit or if the module successfully leaves |
| 2926 | * slave idle; otherwise, pass along the return value of the |
| 2927 | * appropriate *_cm*_wait_module_ready() function. |
| 2928 | */ |
| 2929 | static int _omap4_wait_target_ready(struct omap_hwmod *oh) |
| 2930 | { |
Paul Walmsley | 2b026d1 | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 2931 | if (!oh) |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2932 | return -EINVAL; |
| 2933 | |
Paul Walmsley | 2b026d1 | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 2934 | if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm) |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2935 | return 0; |
| 2936 | |
| 2937 | if (!_find_mpu_rt_port(oh)) |
| 2938 | return 0; |
| 2939 | |
| 2940 | /* XXX check module SIDLEMODE, hardreset status */ |
| 2941 | |
Tero Kristo | 021b6ff | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 2942 | return omap_cm_wait_module_ready(oh->clkdm->prcm_partition, |
| 2943 | oh->clkdm->cm_inst, |
| 2944 | oh->prcm.omap4.clkctrl_offs, 0); |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 2945 | } |
| 2946 | |
| 2947 | /** |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2948 | * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args |
| 2949 | * @oh: struct omap_hwmod * to assert hardreset |
| 2950 | * @ohri: hardreset line data |
| 2951 | * |
| 2952 | * Call omap2_prm_assert_hardreset() with parameters extracted from |
| 2953 | * the hwmod @oh and the hardreset line data @ohri. Only intended for |
| 2954 | * use as an soc_ops function pointer. Passes along the return value |
| 2955 | * from omap2_prm_assert_hardreset(). XXX This function is scheduled |
| 2956 | * for removal when the PRM code is moved into drivers/. |
| 2957 | */ |
| 2958 | static int _omap2_assert_hardreset(struct omap_hwmod *oh, |
| 2959 | struct omap_hwmod_rst_info *ohri) |
| 2960 | { |
Tero Kristo | efd44dc | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 2961 | return omap_prm_assert_hardreset(ohri->rst_shift, 0, |
| 2962 | oh->prcm.omap2.module_offs, 0); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2963 | } |
| 2964 | |
| 2965 | /** |
| 2966 | * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args |
| 2967 | * @oh: struct omap_hwmod * to deassert hardreset |
| 2968 | * @ohri: hardreset line data |
| 2969 | * |
| 2970 | * Call omap2_prm_deassert_hardreset() with parameters extracted from |
| 2971 | * the hwmod @oh and the hardreset line data @ohri. Only intended for |
| 2972 | * use as an soc_ops function pointer. Passes along the return value |
| 2973 | * from omap2_prm_deassert_hardreset(). XXX This function is |
| 2974 | * scheduled for removal when the PRM code is moved into drivers/. |
| 2975 | */ |
| 2976 | static int _omap2_deassert_hardreset(struct omap_hwmod *oh, |
| 2977 | struct omap_hwmod_rst_info *ohri) |
| 2978 | { |
Tero Kristo | 37fb59d | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 2979 | return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift, 0, |
| 2980 | oh->prcm.omap2.module_offs, 0, 0); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 2981 | } |
| 2982 | |
| 2983 | /** |
| 2984 | * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args |
| 2985 | * @oh: struct omap_hwmod * to test hardreset |
| 2986 | * @ohri: hardreset line data |
| 2987 | * |
| 2988 | * Call omap2_prm_is_hardreset_asserted() with parameters extracted |
| 2989 | * from the hwmod @oh and the hardreset line data @ohri. Only |
| 2990 | * intended for use as an soc_ops function pointer. Passes along the |
| 2991 | * return value from omap2_prm_is_hardreset_asserted(). XXX This |
| 2992 | * function is scheduled for removal when the PRM code is moved into |
| 2993 | * drivers/. |
| 2994 | */ |
| 2995 | static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh, |
| 2996 | struct omap_hwmod_rst_info *ohri) |
| 2997 | { |
Tero Kristo | 1bc28b3 | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 2998 | return omap_prm_is_hardreset_asserted(ohri->st_shift, 0, |
| 2999 | oh->prcm.omap2.module_offs, 0); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3000 | } |
| 3001 | |
| 3002 | /** |
| 3003 | * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args |
| 3004 | * @oh: struct omap_hwmod * to assert hardreset |
| 3005 | * @ohri: hardreset line data |
| 3006 | * |
| 3007 | * Call omap4_prminst_assert_hardreset() with parameters extracted |
| 3008 | * from the hwmod @oh and the hardreset line data @ohri. Only |
| 3009 | * intended for use as an soc_ops function pointer. Passes along the |
| 3010 | * return value from omap4_prminst_assert_hardreset(). XXX This |
| 3011 | * function is scheduled for removal when the PRM code is moved into |
| 3012 | * drivers/. |
| 3013 | */ |
| 3014 | static int _omap4_assert_hardreset(struct omap_hwmod *oh, |
| 3015 | struct omap_hwmod_rst_info *ohri) |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3016 | { |
Paul Walmsley | 07b3a13 | 2012-06-20 20:11:36 -0600 | [diff] [blame] | 3017 | if (!oh->clkdm) |
| 3018 | return -EINVAL; |
| 3019 | |
Tero Kristo | efd44dc | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 3020 | return omap_prm_assert_hardreset(ohri->rst_shift, |
| 3021 | oh->clkdm->pwrdm.ptr->prcm_partition, |
| 3022 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 3023 | oh->prcm.omap4.rstctrl_offs); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3024 | } |
| 3025 | |
| 3026 | /** |
| 3027 | * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args |
| 3028 | * @oh: struct omap_hwmod * to deassert hardreset |
| 3029 | * @ohri: hardreset line data |
| 3030 | * |
| 3031 | * Call omap4_prminst_deassert_hardreset() with parameters extracted |
| 3032 | * from the hwmod @oh and the hardreset line data @ohri. Only |
| 3033 | * intended for use as an soc_ops function pointer. Passes along the |
| 3034 | * return value from omap4_prminst_deassert_hardreset(). XXX This |
| 3035 | * function is scheduled for removal when the PRM code is moved into |
| 3036 | * drivers/. |
| 3037 | */ |
| 3038 | static int _omap4_deassert_hardreset(struct omap_hwmod *oh, |
| 3039 | struct omap_hwmod_rst_info *ohri) |
| 3040 | { |
Paul Walmsley | 07b3a13 | 2012-06-20 20:11:36 -0600 | [diff] [blame] | 3041 | if (!oh->clkdm) |
| 3042 | return -EINVAL; |
| 3043 | |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3044 | if (ohri->st_shift) |
| 3045 | pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n", |
| 3046 | oh->name, ohri->name); |
Tero Kristo | 4ebf5b2 | 2015-05-05 16:33:04 +0300 | [diff] [blame] | 3047 | return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->rst_shift, |
Tero Kristo | 37fb59d | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 3048 | oh->clkdm->pwrdm.ptr->prcm_partition, |
| 3049 | oh->clkdm->pwrdm.ptr->prcm_offs, |
Tero Kristo | 4ebf5b2 | 2015-05-05 16:33:04 +0300 | [diff] [blame] | 3050 | oh->prcm.omap4.rstctrl_offs, |
| 3051 | oh->prcm.omap4.rstctrl_offs + |
| 3052 | OMAP4_RST_CTRL_ST_OFFSET); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3053 | } |
| 3054 | |
| 3055 | /** |
| 3056 | * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args |
| 3057 | * @oh: struct omap_hwmod * to test hardreset |
| 3058 | * @ohri: hardreset line data |
| 3059 | * |
| 3060 | * Call omap4_prminst_is_hardreset_asserted() with parameters |
| 3061 | * extracted from the hwmod @oh and the hardreset line data @ohri. |
| 3062 | * Only intended for use as an soc_ops function pointer. Passes along |
| 3063 | * the return value from omap4_prminst_is_hardreset_asserted(). XXX |
| 3064 | * This function is scheduled for removal when the PRM code is moved |
| 3065 | * into drivers/. |
| 3066 | */ |
| 3067 | static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh, |
| 3068 | struct omap_hwmod_rst_info *ohri) |
| 3069 | { |
Paul Walmsley | 07b3a13 | 2012-06-20 20:11:36 -0600 | [diff] [blame] | 3070 | if (!oh->clkdm) |
| 3071 | return -EINVAL; |
| 3072 | |
Tero Kristo | 1bc28b3 | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 3073 | return omap_prm_is_hardreset_asserted(ohri->rst_shift, |
| 3074 | oh->clkdm->pwrdm.ptr-> |
| 3075 | prcm_partition, |
| 3076 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 3077 | oh->prcm.omap4.rstctrl_offs); |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3078 | } |
| 3079 | |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 3080 | /** |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 3081 | * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args |
| 3082 | * @oh: struct omap_hwmod * to deassert hardreset |
| 3083 | * @ohri: hardreset line data |
| 3084 | * |
| 3085 | * Call am33xx_prminst_deassert_hardreset() with parameters extracted |
| 3086 | * from the hwmod @oh and the hardreset line data @ohri. Only |
| 3087 | * intended for use as an soc_ops function pointer. Passes along the |
| 3088 | * return value from am33xx_prminst_deassert_hardreset(). XXX This |
| 3089 | * function is scheduled for removal when the PRM code is moved into |
| 3090 | * drivers/. |
| 3091 | */ |
| 3092 | static int _am33xx_deassert_hardreset(struct omap_hwmod *oh, |
| 3093 | struct omap_hwmod_rst_info *ohri) |
| 3094 | { |
Tero Kristo | a5bf00c | 2015-05-05 16:33:05 +0300 | [diff] [blame] | 3095 | return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift, |
| 3096 | oh->clkdm->pwrdm.ptr->prcm_partition, |
Tero Kristo | 37fb59d | 2014-10-27 08:39:25 -0700 | [diff] [blame] | 3097 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 3098 | oh->prcm.omap4.rstctrl_offs, |
| 3099 | oh->prcm.omap4.rstst_offs); |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 3100 | } |
| 3101 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3102 | /* Public functions */ |
| 3103 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 3104 | u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3105 | { |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 3106 | if (oh->flags & HWMOD_16BIT_REG) |
Victor Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 3107 | return readw_relaxed(oh->_mpu_rt_va + reg_offs); |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 3108 | else |
Victor Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 3109 | return readl_relaxed(oh->_mpu_rt_va + reg_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3110 | } |
| 3111 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 3112 | 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] | 3113 | { |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 3114 | if (oh->flags & HWMOD_16BIT_REG) |
Victor Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 3115 | writew_relaxed(v, oh->_mpu_rt_va + reg_offs); |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 3116 | else |
Victor Kamensky | edfaf05 | 2014-04-15 20:37:46 +0300 | [diff] [blame] | 3117 | writel_relaxed(v, oh->_mpu_rt_va + reg_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3118 | } |
| 3119 | |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 3120 | /** |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 3121 | * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit |
| 3122 | * @oh: struct omap_hwmod * |
| 3123 | * |
| 3124 | * This is a public function exposed to drivers. Some drivers may need to do |
| 3125 | * some settings before and after resetting the device. Those drivers after |
| 3126 | * doing the necessary settings could use this function to start a reset by |
| 3127 | * setting the SYSCONFIG.SOFTRESET bit. |
| 3128 | */ |
| 3129 | int omap_hwmod_softreset(struct omap_hwmod *oh) |
| 3130 | { |
Paul Walmsley | 3c55c1b | 2012-04-13 05:08:43 -0600 | [diff] [blame] | 3131 | u32 v; |
| 3132 | int ret; |
| 3133 | |
| 3134 | if (!oh || !(oh->_sysc_cache)) |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 3135 | return -EINVAL; |
| 3136 | |
Paul Walmsley | 3c55c1b | 2012-04-13 05:08:43 -0600 | [diff] [blame] | 3137 | v = oh->_sysc_cache; |
| 3138 | ret = _set_softreset(oh, &v); |
| 3139 | if (ret) |
| 3140 | goto error; |
| 3141 | _write_sysconfig(v, oh); |
| 3142 | |
Roger Quadros | 313a76e | 2013-12-08 18:39:02 -0700 | [diff] [blame] | 3143 | ret = _clear_softreset(oh, &v); |
| 3144 | if (ret) |
| 3145 | goto error; |
| 3146 | _write_sysconfig(v, oh); |
| 3147 | |
Paul Walmsley | 3c55c1b | 2012-04-13 05:08:43 -0600 | [diff] [blame] | 3148 | error: |
| 3149 | return ret; |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 3150 | } |
| 3151 | |
| 3152 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3153 | * omap_hwmod_lookup - look up a registered omap_hwmod by name |
| 3154 | * @name: name of the omap_hwmod to look up |
| 3155 | * |
| 3156 | * Given a @name of an omap_hwmod, return a pointer to the registered |
| 3157 | * struct omap_hwmod *, or NULL upon error. |
| 3158 | */ |
| 3159 | struct omap_hwmod *omap_hwmod_lookup(const char *name) |
| 3160 | { |
| 3161 | struct omap_hwmod *oh; |
| 3162 | |
| 3163 | if (!name) |
| 3164 | return NULL; |
| 3165 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3166 | oh = _lookup(name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3167 | |
| 3168 | return oh; |
| 3169 | } |
| 3170 | |
| 3171 | /** |
| 3172 | * omap_hwmod_for_each - call function for each registered omap_hwmod |
| 3173 | * @fn: pointer to a callback function |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 3174 | * @data: void * data to pass to callback function |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3175 | * |
| 3176 | * Call @fn for each registered omap_hwmod, passing @data to each |
| 3177 | * function. @fn must return 0 for success or any other value for |
| 3178 | * failure. If @fn returns non-zero, the iteration across omap_hwmods |
| 3179 | * will stop and the non-zero return value will be passed to the |
| 3180 | * caller of omap_hwmod_for_each(). @fn is called with |
| 3181 | * omap_hwmod_for_each() held. |
| 3182 | */ |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 3183 | int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data), |
| 3184 | void *data) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3185 | { |
| 3186 | struct omap_hwmod *temp_oh; |
Govindraj.R | 30ebad9 | 2011-06-01 11:28:56 +0530 | [diff] [blame] | 3187 | int ret = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3188 | |
| 3189 | if (!fn) |
| 3190 | return -EINVAL; |
| 3191 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3192 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 3193 | ret = (*fn)(temp_oh, data); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3194 | if (ret) |
| 3195 | break; |
| 3196 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3197 | |
| 3198 | return ret; |
| 3199 | } |
| 3200 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3201 | /** |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3202 | * omap_hwmod_register_links - register an array of hwmod links |
| 3203 | * @ois: pointer to an array of omap_hwmod_ocp_if to register |
| 3204 | * |
| 3205 | * Intended to be called early in boot before the clock framework is |
| 3206 | * initialized. If @ois is not null, will register all omap_hwmods |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 3207 | * listed in @ois that are valid for this chip. Returns -EINVAL if |
| 3208 | * omap_hwmod_init() hasn't been called before calling this function, |
| 3209 | * -ENOMEM if the link memory area can't be allocated, or 0 upon |
| 3210 | * success. |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3211 | */ |
| 3212 | int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois) |
| 3213 | { |
| 3214 | int r, i; |
| 3215 | |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 3216 | if (!inited) |
| 3217 | return -EINVAL; |
| 3218 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3219 | if (!ois) |
| 3220 | return 0; |
| 3221 | |
Rajendra Nayak | f7f7a29 | 2014-08-27 19:38:23 -0600 | [diff] [blame] | 3222 | if (ois[0] == NULL) /* Empty list */ |
| 3223 | return 0; |
| 3224 | |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3225 | if (!linkspace) { |
| 3226 | if (_alloc_linkspace(ois)) { |
| 3227 | pr_err("omap_hwmod: could not allocate link space\n"); |
| 3228 | return -ENOMEM; |
| 3229 | } |
| 3230 | } |
| 3231 | |
| 3232 | i = 0; |
| 3233 | do { |
| 3234 | r = _register_link(ois[i]); |
| 3235 | WARN(r && r != -EEXIST, |
| 3236 | "omap_hwmod: _register_link(%s -> %s) returned %d\n", |
| 3237 | ois[i]->master->name, ois[i]->slave->name, r); |
| 3238 | } while (ois[++i]); |
| 3239 | |
| 3240 | return 0; |
| 3241 | } |
| 3242 | |
| 3243 | /** |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3244 | * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up |
| 3245 | * @oh: pointer to the hwmod currently being set up (usually not the MPU) |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 3246 | * |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3247 | * If the hwmod data corresponding to the MPU subsystem IP block |
| 3248 | * hasn't been initialized and set up yet, do so now. This must be |
| 3249 | * done first since sleep dependencies may be added from other hwmods |
| 3250 | * to the MPU. Intended to be called only by omap_hwmod_setup*(). No |
| 3251 | * return value. |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 3252 | */ |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3253 | static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh) |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 3254 | { |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3255 | if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN) |
| 3256 | pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n", |
| 3257 | __func__, MPU_INITIATOR_NAME); |
| 3258 | else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh) |
| 3259 | omap_hwmod_setup_one(MPU_INITIATOR_NAME); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3260 | } |
| 3261 | |
| 3262 | /** |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3263 | * omap_hwmod_setup_one - set up a single hwmod |
| 3264 | * @oh_name: const char * name of the already-registered hwmod to set up |
| 3265 | * |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3266 | * Initialize and set up a single hwmod. Intended to be used for a |
| 3267 | * small number of early devices, such as the timer IP blocks used for |
| 3268 | * the scheduler clock. Must be called after omap2_clk_init(). |
| 3269 | * Resolves the struct clk names to struct clk pointers for each |
| 3270 | * registered omap_hwmod. Also calls _setup() on each hwmod. Returns |
| 3271 | * -EINVAL upon error or 0 upon success. |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3272 | */ |
| 3273 | int __init omap_hwmod_setup_one(const char *oh_name) |
| 3274 | { |
| 3275 | struct omap_hwmod *oh; |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3276 | |
| 3277 | pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__); |
| 3278 | |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3279 | oh = _lookup(oh_name); |
| 3280 | if (!oh) { |
| 3281 | WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name); |
| 3282 | return -EINVAL; |
| 3283 | } |
| 3284 | |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3285 | _ensure_mpu_hwmod_is_setup(oh); |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3286 | |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3287 | _init(oh, NULL); |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 3288 | _setup(oh, NULL); |
| 3289 | |
| 3290 | return 0; |
| 3291 | } |
| 3292 | |
| 3293 | /** |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3294 | * omap_hwmod_setup_all - set up all registered IP blocks |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3295 | * |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3296 | * Initialize and set up all IP blocks registered with the hwmod code. |
| 3297 | * Must be called after omap2_clk_init(). Resolves the struct clk |
| 3298 | * names to struct clk pointers for each registered omap_hwmod. Also |
| 3299 | * calls _setup() on each hwmod. Returns 0 upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3300 | */ |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 3301 | static int __init omap_hwmod_setup_all(void) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3302 | { |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3303 | _ensure_mpu_hwmod_is_setup(NULL); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3304 | |
Paul Walmsley | 381d033 | 2012-04-19 00:58:22 -0600 | [diff] [blame] | 3305 | omap_hwmod_for_each(_init, NULL); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3306 | omap_hwmod_for_each(_setup, NULL); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3307 | |
| 3308 | return 0; |
| 3309 | } |
Tony Lindgren | b76c8b1 | 2013-01-11 11:24:18 -0800 | [diff] [blame] | 3310 | omap_core_initcall(omap_hwmod_setup_all); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3311 | |
| 3312 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3313 | * omap_hwmod_enable - enable an omap_hwmod |
| 3314 | * @oh: struct omap_hwmod * |
| 3315 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 3316 | * 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] | 3317 | * Returns -EINVAL on error or passes along the return value from _enable(). |
| 3318 | */ |
| 3319 | int omap_hwmod_enable(struct omap_hwmod *oh) |
| 3320 | { |
| 3321 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3322 | unsigned long flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3323 | |
| 3324 | if (!oh) |
| 3325 | return -EINVAL; |
| 3326 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3327 | spin_lock_irqsave(&oh->_lock, flags); |
| 3328 | r = _enable(oh); |
| 3329 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3330 | |
| 3331 | return r; |
| 3332 | } |
| 3333 | |
| 3334 | /** |
| 3335 | * omap_hwmod_idle - idle an omap_hwmod |
| 3336 | * @oh: struct omap_hwmod * |
| 3337 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 3338 | * 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] | 3339 | * Returns -EINVAL on error or passes along the return value from _idle(). |
| 3340 | */ |
| 3341 | int omap_hwmod_idle(struct omap_hwmod *oh) |
| 3342 | { |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3343 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3344 | unsigned long flags; |
| 3345 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3346 | if (!oh) |
| 3347 | return -EINVAL; |
| 3348 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3349 | spin_lock_irqsave(&oh->_lock, flags); |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3350 | r = _idle(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3351 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3352 | |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3353 | return r; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3354 | } |
| 3355 | |
| 3356 | /** |
| 3357 | * omap_hwmod_shutdown - shutdown an omap_hwmod |
| 3358 | * @oh: struct omap_hwmod * |
| 3359 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 3360 | * Shutdown an omap_hwmod @oh. Intended to be called by |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3361 | * omap_device_shutdown(). Returns -EINVAL on error or passes along |
| 3362 | * the return value from _shutdown(). |
| 3363 | */ |
| 3364 | int omap_hwmod_shutdown(struct omap_hwmod *oh) |
| 3365 | { |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3366 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3367 | unsigned long flags; |
| 3368 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3369 | if (!oh) |
| 3370 | return -EINVAL; |
| 3371 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3372 | spin_lock_irqsave(&oh->_lock, flags); |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3373 | r = _shutdown(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3374 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3375 | |
Pali RohƔr | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 3376 | return r; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3377 | } |
| 3378 | |
Paul Walmsley | 5e8370f | 2012-04-18 19:10:06 -0600 | [diff] [blame] | 3379 | /* |
| 3380 | * IP block data retrieval functions |
| 3381 | */ |
| 3382 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3383 | /** |
| 3384 | * omap_hwmod_count_resources - count number of struct resources needed by hwmod |
| 3385 | * @oh: struct omap_hwmod * |
Peter Ujfalusi | dad4191 | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3386 | * @flags: Type of resources to include when counting (IRQ/DMA/MEM) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3387 | * |
| 3388 | * Count the number of struct resource array elements necessary to |
| 3389 | * contain omap_hwmod @oh resources. Intended to be called by code |
| 3390 | * that registers omap_devices. Intended to be used to determine the |
| 3391 | * size of a dynamically-allocated struct resource array, before |
| 3392 | * calling omap_hwmod_fill_resources(). Returns the number of struct |
| 3393 | * resource array elements needed. |
| 3394 | * |
| 3395 | * XXX This code is not optimized. It could attempt to merge adjacent |
| 3396 | * resource IDs. |
| 3397 | * |
| 3398 | */ |
Peter Ujfalusi | dad4191 | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3399 | int omap_hwmod_count_resources(struct omap_hwmod *oh, unsigned long flags) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3400 | { |
Peter Ujfalusi | dad4191 | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3401 | int ret = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3402 | |
Peter Ujfalusi | dad4191 | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3403 | if (flags & IORESOURCE_IRQ) |
| 3404 | ret += _count_mpu_irqs(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3405 | |
Peter Ujfalusi | dad4191 | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3406 | if (flags & IORESOURCE_DMA) |
| 3407 | ret += _count_sdma_reqs(oh); |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3408 | |
Peter Ujfalusi | dad4191 | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3409 | if (flags & IORESOURCE_MEM) { |
| 3410 | int i = 0; |
| 3411 | struct omap_hwmod_ocp_if *os; |
| 3412 | struct list_head *p = oh->slave_ports.next; |
| 3413 | |
| 3414 | while (i < oh->slaves_cnt) { |
| 3415 | os = _fetch_next_ocp_if(&p, &i); |
| 3416 | ret += _count_ocp_if_addr_spaces(os); |
| 3417 | } |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 3418 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3419 | |
| 3420 | return ret; |
| 3421 | } |
| 3422 | |
| 3423 | /** |
| 3424 | * omap_hwmod_fill_resources - fill struct resource array with hwmod data |
| 3425 | * @oh: struct omap_hwmod * |
| 3426 | * @res: pointer to the first element of an array of struct resource to fill |
| 3427 | * |
| 3428 | * Fill the struct resource array @res with resource data from the |
| 3429 | * omap_hwmod @oh. Intended to be called by code that registers |
| 3430 | * omap_devices. See also omap_hwmod_count_resources(). Returns the |
| 3431 | * number of array elements filled. |
| 3432 | */ |
| 3433 | int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res) |
| 3434 | { |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 3435 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 3436 | struct list_head *p; |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 3437 | int i, j, mpu_irqs_cnt, sdma_reqs_cnt, addr_cnt; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3438 | int r = 0; |
| 3439 | |
| 3440 | /* For each IRQ, DMA, memory area, fill in array.*/ |
| 3441 | |
Paul Walmsley | 212738a | 2011-07-09 19:14:06 -0600 | [diff] [blame] | 3442 | mpu_irqs_cnt = _count_mpu_irqs(oh); |
| 3443 | for (i = 0; i < mpu_irqs_cnt; i++) { |
Marc Zyngier | 0fb22a8 | 2015-01-17 10:21:08 +0000 | [diff] [blame] | 3444 | unsigned int irq; |
| 3445 | |
| 3446 | if (oh->xlate_irq) |
| 3447 | irq = oh->xlate_irq((oh->mpu_irqs + i)->irq); |
| 3448 | else |
| 3449 | irq = (oh->mpu_irqs + i)->irq; |
Paul Walmsley | 718bfd7 | 2009-12-08 16:34:16 -0700 | [diff] [blame] | 3450 | (res + r)->name = (oh->mpu_irqs + i)->name; |
Marc Zyngier | 0fb22a8 | 2015-01-17 10:21:08 +0000 | [diff] [blame] | 3451 | (res + r)->start = irq; |
| 3452 | (res + r)->end = irq; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3453 | (res + r)->flags = IORESOURCE_IRQ; |
| 3454 | r++; |
| 3455 | } |
| 3456 | |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 3457 | sdma_reqs_cnt = _count_sdma_reqs(oh); |
| 3458 | for (i = 0; i < sdma_reqs_cnt; i++) { |
Benoit Cousson | 9ee9fff | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 3459 | (res + r)->name = (oh->sdma_reqs + i)->name; |
| 3460 | (res + r)->start = (oh->sdma_reqs + i)->dma_req; |
| 3461 | (res + r)->end = (oh->sdma_reqs + i)->dma_req; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3462 | (res + r)->flags = IORESOURCE_DMA; |
| 3463 | r++; |
| 3464 | } |
| 3465 | |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 3466 | p = oh->slave_ports.next; |
Paul Walmsley | 2221b5c | 2012-04-19 04:04:30 -0600 | [diff] [blame] | 3467 | |
Paul Walmsley | 5d95dde | 2012-04-19 04:04:28 -0600 | [diff] [blame] | 3468 | i = 0; |
| 3469 | while (i < oh->slaves_cnt) { |
Paul Walmsley | 11cd4b9 | 2012-04-19 04:04:32 -0600 | [diff] [blame] | 3470 | os = _fetch_next_ocp_if(&p, &i); |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 3471 | addr_cnt = _count_ocp_if_addr_spaces(os); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3472 | |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 3473 | for (j = 0; j < addr_cnt; j++) { |
Kishon Vijay Abraham I | cd50380 | 2011-02-24 12:51:45 -0800 | [diff] [blame] | 3474 | (res + r)->name = (os->addr + j)->name; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3475 | (res + r)->start = (os->addr + j)->pa_start; |
| 3476 | (res + r)->end = (os->addr + j)->pa_end; |
| 3477 | (res + r)->flags = IORESOURCE_MEM; |
| 3478 | r++; |
| 3479 | } |
| 3480 | } |
| 3481 | |
| 3482 | return r; |
| 3483 | } |
| 3484 | |
| 3485 | /** |
Vaibhav Hiremath | b82b04e | 2012-08-29 15:18:11 +0530 | [diff] [blame] | 3486 | * omap_hwmod_fill_dma_resources - fill struct resource array with dma data |
| 3487 | * @oh: struct omap_hwmod * |
| 3488 | * @res: pointer to the array of struct resource to fill |
| 3489 | * |
| 3490 | * Fill the struct resource array @res with dma resource data from the |
| 3491 | * omap_hwmod @oh. Intended to be called by code that registers |
| 3492 | * omap_devices. See also omap_hwmod_count_resources(). Returns the |
| 3493 | * number of array elements filled. |
| 3494 | */ |
| 3495 | int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res) |
| 3496 | { |
| 3497 | int i, sdma_reqs_cnt; |
| 3498 | int r = 0; |
| 3499 | |
| 3500 | sdma_reqs_cnt = _count_sdma_reqs(oh); |
| 3501 | for (i = 0; i < sdma_reqs_cnt; i++) { |
| 3502 | (res + r)->name = (oh->sdma_reqs + i)->name; |
| 3503 | (res + r)->start = (oh->sdma_reqs + i)->dma_req; |
| 3504 | (res + r)->end = (oh->sdma_reqs + i)->dma_req; |
| 3505 | (res + r)->flags = IORESOURCE_DMA; |
| 3506 | r++; |
| 3507 | } |
| 3508 | |
| 3509 | return r; |
| 3510 | } |
| 3511 | |
| 3512 | /** |
Paul Walmsley | 5e8370f | 2012-04-18 19:10:06 -0600 | [diff] [blame] | 3513 | * omap_hwmod_get_resource_byname - fetch IP block integration data by name |
| 3514 | * @oh: struct omap_hwmod * to operate on |
| 3515 | * @type: one of the IORESOURCE_* constants from include/linux/ioport.h |
| 3516 | * @name: pointer to the name of the data to fetch (optional) |
| 3517 | * @rsrc: pointer to a struct resource, allocated by the caller |
| 3518 | * |
| 3519 | * Retrieve MPU IRQ, SDMA request line, or address space start/end |
| 3520 | * data for the IP block pointed to by @oh. The data will be filled |
| 3521 | * into a struct resource record pointed to by @rsrc. The struct |
| 3522 | * resource must be allocated by the caller. When @name is non-null, |
| 3523 | * the data associated with the matching entry in the IRQ/SDMA/address |
| 3524 | * space hwmod data arrays will be returned. If @name is null, the |
| 3525 | * first array entry will be returned. Data order is not meaningful |
| 3526 | * in hwmod data, so callers are strongly encouraged to use a non-null |
| 3527 | * @name whenever possible to avoid unpredictable effects if hwmod |
| 3528 | * data is later added that causes data ordering to change. This |
| 3529 | * function is only intended for use by OMAP core code. Device |
| 3530 | * drivers should not call this function - the appropriate bus-related |
| 3531 | * data accessor functions should be used instead. Returns 0 upon |
| 3532 | * success or a negative error code upon error. |
| 3533 | */ |
| 3534 | int omap_hwmod_get_resource_byname(struct omap_hwmod *oh, unsigned int type, |
| 3535 | const char *name, struct resource *rsrc) |
| 3536 | { |
| 3537 | int r; |
| 3538 | unsigned int irq, dma; |
| 3539 | u32 pa_start, pa_end; |
| 3540 | |
| 3541 | if (!oh || !rsrc) |
| 3542 | return -EINVAL; |
| 3543 | |
| 3544 | if (type == IORESOURCE_IRQ) { |
| 3545 | r = _get_mpu_irq_by_name(oh, name, &irq); |
| 3546 | if (r) |
| 3547 | return r; |
| 3548 | |
| 3549 | rsrc->start = irq; |
| 3550 | rsrc->end = irq; |
| 3551 | } else if (type == IORESOURCE_DMA) { |
| 3552 | r = _get_sdma_req_by_name(oh, name, &dma); |
| 3553 | if (r) |
| 3554 | return r; |
| 3555 | |
| 3556 | rsrc->start = dma; |
| 3557 | rsrc->end = dma; |
| 3558 | } else if (type == IORESOURCE_MEM) { |
| 3559 | r = _get_addr_space_by_name(oh, name, &pa_start, &pa_end); |
| 3560 | if (r) |
| 3561 | return r; |
| 3562 | |
| 3563 | rsrc->start = pa_start; |
| 3564 | rsrc->end = pa_end; |
| 3565 | } else { |
| 3566 | return -EINVAL; |
| 3567 | } |
| 3568 | |
| 3569 | rsrc->flags = type; |
| 3570 | rsrc->name = name; |
| 3571 | |
| 3572 | return 0; |
| 3573 | } |
| 3574 | |
| 3575 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3576 | * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain |
| 3577 | * @oh: struct omap_hwmod * |
| 3578 | * |
| 3579 | * Return the powerdomain pointer associated with the OMAP module |
| 3580 | * @oh's main clock. If @oh does not have a main clk, return the |
| 3581 | * powerdomain associated with the interface clock associated with the |
| 3582 | * module's MPU port. (XXX Perhaps this should use the SDMA port |
| 3583 | * instead?) Returns NULL on error, or a struct powerdomain * on |
| 3584 | * success. |
| 3585 | */ |
| 3586 | struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh) |
| 3587 | { |
| 3588 | struct clk *c; |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 3589 | struct omap_hwmod_ocp_if *oi; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3590 | struct clockdomain *clkdm; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3591 | struct clk_hw_omap *clk; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3592 | |
| 3593 | if (!oh) |
| 3594 | return NULL; |
| 3595 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3596 | if (oh->clkdm) |
| 3597 | return oh->clkdm->pwrdm.ptr; |
| 3598 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3599 | if (oh->_clk) { |
| 3600 | c = oh->_clk; |
| 3601 | } else { |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 3602 | oi = _find_mpu_rt_port(oh); |
| 3603 | if (!oi) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3604 | return NULL; |
Paul Walmsley | 2d6141b | 2012-04-19 04:04:27 -0600 | [diff] [blame] | 3605 | c = oi->_clk; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3606 | } |
| 3607 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3608 | clk = to_clk_hw_omap(__clk_get_hw(c)); |
| 3609 | clkdm = clk->clkdm; |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3610 | if (!clkdm) |
Thara Gopinath | d5647c1 | 2010-03-31 04:16:29 -0600 | [diff] [blame] | 3611 | return NULL; |
| 3612 | |
Rajendra Nayak | f5dd3bb | 2012-11-10 16:58:41 -0700 | [diff] [blame] | 3613 | return clkdm->pwrdm.ptr; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3614 | } |
| 3615 | |
| 3616 | /** |
Paul Walmsley | db2a60b | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 3617 | * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU) |
| 3618 | * @oh: struct omap_hwmod * |
| 3619 | * |
| 3620 | * Returns the virtual address corresponding to the beginning of the |
| 3621 | * module's register target, in the address range that is intended to |
| 3622 | * be used by the MPU. Returns the virtual address upon success or NULL |
| 3623 | * upon error. |
| 3624 | */ |
| 3625 | void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh) |
| 3626 | { |
| 3627 | if (!oh) |
| 3628 | return NULL; |
| 3629 | |
| 3630 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 3631 | return NULL; |
| 3632 | |
| 3633 | if (oh->_state == _HWMOD_STATE_UNKNOWN) |
| 3634 | return NULL; |
| 3635 | |
| 3636 | return oh->_mpu_rt_va; |
| 3637 | } |
| 3638 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3639 | /* |
| 3640 | * XXX what about functions for drivers to save/restore ocp_sysconfig |
| 3641 | * for context save/restore operations? |
| 3642 | */ |
| 3643 | |
| 3644 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3645 | * omap_hwmod_enable_wakeup - allow device to wake up the system |
| 3646 | * @oh: struct omap_hwmod * |
| 3647 | * |
| 3648 | * Sets the module OCP socket ENAWAKEUP bit to allow the module to |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 3649 | * send wakeups to the PRCM, and enable I/O ring wakeup events for |
| 3650 | * this IP block if it has dynamic mux entries. Eventually this |
| 3651 | * should set PRCM wakeup registers to cause the PRCM to receive |
| 3652 | * wakeup events from the module. Does not set any wakeup routing |
| 3653 | * registers beyond this point - if the module is to wake up any other |
| 3654 | * module or subsystem, that must be set separately. Called by |
| 3655 | * omap_device code. Returns -EINVAL on error or 0 upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3656 | */ |
| 3657 | int omap_hwmod_enable_wakeup(struct omap_hwmod *oh) |
| 3658 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3659 | unsigned long flags; |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 3660 | u32 v; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3661 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3662 | spin_lock_irqsave(&oh->_lock, flags); |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 3663 | |
| 3664 | if (oh->class->sysc && |
| 3665 | (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) { |
| 3666 | v = oh->_sysc_cache; |
| 3667 | _enable_wakeup(oh, &v); |
| 3668 | _write_sysconfig(v, oh); |
| 3669 | } |
| 3670 | |
Govindraj R | eceec00 | 2011-12-16 14:36:58 -0700 | [diff] [blame] | 3671 | _set_idle_ioring_wakeup(oh, true); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3672 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3673 | |
| 3674 | return 0; |
| 3675 | } |
| 3676 | |
| 3677 | /** |
| 3678 | * omap_hwmod_disable_wakeup - prevent device from waking the system |
| 3679 | * @oh: struct omap_hwmod * |
| 3680 | * |
| 3681 | * Clears the module OCP socket ENAWAKEUP bit to prevent the module |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 3682 | * from sending wakeups to the PRCM, and disable I/O ring wakeup |
| 3683 | * events for this IP block if it has dynamic mux entries. Eventually |
| 3684 | * this should clear PRCM wakeup registers to cause the PRCM to ignore |
| 3685 | * wakeup events from the module. Does not set any wakeup routing |
| 3686 | * registers beyond this point - if the module is to wake up any other |
| 3687 | * module or subsystem, that must be set separately. Called by |
| 3688 | * omap_device code. Returns -EINVAL on error or 0 upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3689 | */ |
| 3690 | int omap_hwmod_disable_wakeup(struct omap_hwmod *oh) |
| 3691 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3692 | unsigned long flags; |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 3693 | u32 v; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3694 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3695 | spin_lock_irqsave(&oh->_lock, flags); |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 3696 | |
| 3697 | if (oh->class->sysc && |
| 3698 | (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) { |
| 3699 | v = oh->_sysc_cache; |
| 3700 | _disable_wakeup(oh, &v); |
| 3701 | _write_sysconfig(v, oh); |
| 3702 | } |
| 3703 | |
Govindraj R | eceec00 | 2011-12-16 14:36:58 -0700 | [diff] [blame] | 3704 | _set_idle_ioring_wakeup(oh, false); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3705 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 3706 | |
| 3707 | return 0; |
| 3708 | } |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 3709 | |
| 3710 | /** |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3711 | * omap_hwmod_assert_hardreset - assert the HW reset line of submodules |
| 3712 | * contained in the hwmod module. |
| 3713 | * @oh: struct omap_hwmod * |
| 3714 | * @name: name of the reset line to lookup and assert |
| 3715 | * |
| 3716 | * Some IP like dsp, ipu or iva contain processor that require |
| 3717 | * an HW reset line to be assert / deassert in order to enable fully |
| 3718 | * the IP. Returns -EINVAL if @oh is null or if the operation is not |
| 3719 | * yet supported on this OMAP; otherwise, passes along the return value |
| 3720 | * from _assert_hardreset(). |
| 3721 | */ |
| 3722 | int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name) |
| 3723 | { |
| 3724 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3725 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3726 | |
| 3727 | if (!oh) |
| 3728 | return -EINVAL; |
| 3729 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3730 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3731 | ret = _assert_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3732 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3733 | |
| 3734 | return ret; |
| 3735 | } |
| 3736 | |
| 3737 | /** |
| 3738 | * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules |
| 3739 | * contained in the hwmod module. |
| 3740 | * @oh: struct omap_hwmod * |
| 3741 | * @name: name of the reset line to look up and deassert |
| 3742 | * |
| 3743 | * Some IP like dsp, ipu or iva contain processor that require |
| 3744 | * an HW reset line to be assert / deassert in order to enable fully |
| 3745 | * the IP. Returns -EINVAL if @oh is null or if the operation is not |
| 3746 | * yet supported on this OMAP; otherwise, passes along the return value |
| 3747 | * from _deassert_hardreset(). |
| 3748 | */ |
| 3749 | int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name) |
| 3750 | { |
| 3751 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3752 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3753 | |
| 3754 | if (!oh) |
| 3755 | return -EINVAL; |
| 3756 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3757 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3758 | ret = _deassert_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3759 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 3760 | |
| 3761 | return ret; |
| 3762 | } |
| 3763 | |
| 3764 | /** |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 3765 | * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname |
| 3766 | * @classname: struct omap_hwmod_class name to search for |
| 3767 | * @fn: callback function pointer to call for each hwmod in class @classname |
| 3768 | * @user: arbitrary context data to pass to the callback function |
| 3769 | * |
Benoit Cousson | ce35b24 | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 3770 | * For each omap_hwmod of class @classname, call @fn. |
| 3771 | * If the callback function returns something other than |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 3772 | * zero, the iterator is terminated, and the callback function's return |
| 3773 | * value is passed back to the caller. Returns 0 upon success, -EINVAL |
| 3774 | * if @classname or @fn are NULL, or passes back the error code from @fn. |
| 3775 | */ |
| 3776 | int omap_hwmod_for_each_by_class(const char *classname, |
| 3777 | int (*fn)(struct omap_hwmod *oh, |
| 3778 | void *user), |
| 3779 | void *user) |
| 3780 | { |
| 3781 | struct omap_hwmod *temp_oh; |
| 3782 | int ret = 0; |
| 3783 | |
| 3784 | if (!classname || !fn) |
| 3785 | return -EINVAL; |
| 3786 | |
| 3787 | pr_debug("omap_hwmod: %s: looking for modules of class %s\n", |
| 3788 | __func__, classname); |
| 3789 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 3790 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
| 3791 | if (!strcmp(temp_oh->class->name, classname)) { |
| 3792 | pr_debug("omap_hwmod: %s: %s: calling callback fn\n", |
| 3793 | __func__, temp_oh->name); |
| 3794 | ret = (*fn)(temp_oh, user); |
| 3795 | if (ret) |
| 3796 | break; |
| 3797 | } |
| 3798 | } |
| 3799 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 3800 | if (ret) |
| 3801 | pr_debug("omap_hwmod: %s: iterator terminated early: %d\n", |
| 3802 | __func__, ret); |
| 3803 | |
| 3804 | return ret; |
| 3805 | } |
| 3806 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3807 | /** |
| 3808 | * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod |
| 3809 | * @oh: struct omap_hwmod * |
| 3810 | * @state: state that _setup() should leave the hwmod in |
| 3811 | * |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 3812 | * 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] | 3813 | * (called by omap_hwmod_setup_*()). See also the documentation |
| 3814 | * for _setup_postsetup(), above. Returns 0 upon success or |
| 3815 | * -EINVAL if there is a problem with the arguments or if the hwmod is |
| 3816 | * in the wrong state. |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3817 | */ |
| 3818 | int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state) |
| 3819 | { |
| 3820 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3821 | unsigned long flags; |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3822 | |
| 3823 | if (!oh) |
| 3824 | return -EINVAL; |
| 3825 | |
| 3826 | if (state != _HWMOD_STATE_DISABLED && |
| 3827 | state != _HWMOD_STATE_ENABLED && |
| 3828 | state != _HWMOD_STATE_IDLE) |
| 3829 | return -EINVAL; |
| 3830 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3831 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3832 | |
| 3833 | if (oh->_state != _HWMOD_STATE_REGISTERED) { |
| 3834 | ret = -EINVAL; |
| 3835 | goto ohsps_unlock; |
| 3836 | } |
| 3837 | |
| 3838 | oh->_postsetup_state = state; |
| 3839 | ret = 0; |
| 3840 | |
| 3841 | ohsps_unlock: |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3842 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 3843 | |
| 3844 | return ret; |
| 3845 | } |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 3846 | |
| 3847 | /** |
| 3848 | * omap_hwmod_get_context_loss_count - get lost context count |
| 3849 | * @oh: struct omap_hwmod * |
| 3850 | * |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3851 | * Returns the context loss count of associated @oh |
| 3852 | * upon success, or zero if no context loss data is available. |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 3853 | * |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3854 | * On OMAP4, this queries the per-hwmod context loss register, |
| 3855 | * assuming one exists. If not, or on OMAP2/3, this queries the |
| 3856 | * enclosing powerdomain context loss count. |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 3857 | */ |
Tomi Valkeinen | fc01387 | 2011-06-09 16:56:23 +0300 | [diff] [blame] | 3858 | int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh) |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 3859 | { |
| 3860 | struct powerdomain *pwrdm; |
| 3861 | int ret = 0; |
| 3862 | |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3863 | if (soc_ops.get_context_lost) |
| 3864 | return soc_ops.get_context_lost(oh); |
| 3865 | |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 3866 | pwrdm = omap_hwmod_get_pwrdm(oh); |
| 3867 | if (pwrdm) |
| 3868 | ret = pwrdm_get_context_loss_count(pwrdm); |
| 3869 | |
| 3870 | return ret; |
| 3871 | } |
Paul Walmsley | 43b0164 | 2011-03-10 03:50:07 -0700 | [diff] [blame] | 3872 | |
| 3873 | /** |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 3874 | * omap_hwmod_init - initialize the hwmod code |
| 3875 | * |
| 3876 | * Sets up some function pointers needed by the hwmod code to operate on the |
| 3877 | * currently-booted SoC. Intended to be called once during kernel init |
| 3878 | * before any hwmods are registered. No return value. |
| 3879 | */ |
| 3880 | void __init omap_hwmod_init(void) |
| 3881 | { |
Paul Walmsley | ff4ae5d | 2012-10-21 01:01:11 -0600 | [diff] [blame] | 3882 | if (cpu_is_omap24xx()) { |
Tero Kristo | 9002e921 | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 3883 | soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready; |
Paul Walmsley | ff4ae5d | 2012-10-21 01:01:11 -0600 | [diff] [blame] | 3884 | soc_ops.assert_hardreset = _omap2_assert_hardreset; |
| 3885 | soc_ops.deassert_hardreset = _omap2_deassert_hardreset; |
| 3886 | soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted; |
| 3887 | } else if (cpu_is_omap34xx()) { |
Tero Kristo | 9002e921 | 2014-10-27 08:39:23 -0700 | [diff] [blame] | 3888 | soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready; |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3889 | soc_ops.assert_hardreset = _omap2_assert_hardreset; |
| 3890 | soc_ops.deassert_hardreset = _omap2_deassert_hardreset; |
| 3891 | soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted; |
Tero Kristo | 0385c58 | 2013-07-17 18:03:25 +0300 | [diff] [blame] | 3892 | soc_ops.init_clkdm = _init_clkdm; |
Rajendra Nayak | debcd1f | 2013-07-02 18:20:08 +0530 | [diff] [blame] | 3893 | } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) { |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 3894 | soc_ops.enable_module = _omap4_enable_module; |
| 3895 | soc_ops.disable_module = _omap4_disable_module; |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3896 | soc_ops.wait_target_ready = _omap4_wait_target_ready; |
Kevin Hilman | b8249cf | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3897 | soc_ops.assert_hardreset = _omap4_assert_hardreset; |
| 3898 | soc_ops.deassert_hardreset = _omap4_deassert_hardreset; |
| 3899 | soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted; |
Kevin Hilman | 0a179ea | 2012-06-18 12:12:25 -0600 | [diff] [blame] | 3900 | soc_ops.init_clkdm = _init_clkdm; |
Rajendra Nayak | e6d3a8b | 2012-11-21 16:15:17 -0700 | [diff] [blame] | 3901 | soc_ops.update_context_lost = _omap4_update_context_lost; |
| 3902 | soc_ops.get_context_lost = _omap4_get_context_lost; |
Tony Lindgren | 0f3ccb2 | 2015-07-16 01:55:58 -0700 | [diff] [blame] | 3903 | } else if (cpu_is_ti814x() || cpu_is_ti816x() || soc_is_am33xx() || |
| 3904 | soc_is_am43xx()) { |
Afzal Mohammed | c8b428a | 2013-10-12 15:46:20 +0530 | [diff] [blame] | 3905 | soc_ops.enable_module = _omap4_enable_module; |
| 3906 | soc_ops.disable_module = _omap4_disable_module; |
| 3907 | soc_ops.wait_target_ready = _omap4_wait_target_ready; |
Tero Kristo | 409d706 | 2014-10-27 08:39:24 -0700 | [diff] [blame] | 3908 | soc_ops.assert_hardreset = _omap4_assert_hardreset; |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 3909 | soc_ops.deassert_hardreset = _am33xx_deassert_hardreset; |
Tero Kristo | a5bf00c | 2015-05-05 16:33:05 +0300 | [diff] [blame] | 3910 | soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted; |
Vaibhav Hiremath | 1688bf1 | 2012-09-11 17:18:53 -0600 | [diff] [blame] | 3911 | soc_ops.init_clkdm = _init_clkdm; |
Kevin Hilman | 8f6aa8e | 2012-06-18 12:12:24 -0600 | [diff] [blame] | 3912 | } else { |
| 3913 | WARN(1, "omap_hwmod: unknown SoC type\n"); |
Kevin Hilman | 9ebfd28 | 2012-06-18 12:12:23 -0600 | [diff] [blame] | 3914 | } |
| 3915 | |
| 3916 | inited = true; |
| 3917 | } |
Tony Lindgren | 68c9a95 | 2012-07-06 00:58:43 -0700 | [diff] [blame] | 3918 | |
| 3919 | /** |
| 3920 | * omap_hwmod_get_main_clk - get pointer to main clock name |
| 3921 | * @oh: struct omap_hwmod * |
| 3922 | * |
| 3923 | * Returns the main clock name assocated with @oh upon success, |
| 3924 | * or NULL if @oh is NULL. |
| 3925 | */ |
| 3926 | const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh) |
| 3927 | { |
| 3928 | if (!oh) |
| 3929 | return NULL; |
| 3930 | |
| 3931 | return oh->main_clk; |
| 3932 | } |