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 | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 5 | * Copyright (C) 2011 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 | |
| 75 | * | (__raw_{read,write}l, clk*) | |
| 76 | * +-------------------------------+ |
| 77 | * |
| 78 | * Device drivers should not contain any OMAP-specific code or data in |
| 79 | * them. They should only contain code to operate the IP block that |
| 80 | * the driver is responsible for. This is because these IP blocks can |
| 81 | * also appear in other SoCs, either from TI (such as DaVinci) or from |
| 82 | * other manufacturers; and drivers should be reusable across other |
| 83 | * platforms. |
| 84 | * |
| 85 | * The OMAP hwmod code also will attempt to reset and idle all on-chip |
| 86 | * devices upon boot. The goal here is for the kernel to be |
| 87 | * completely self-reliant and independent from bootloaders. This is |
| 88 | * to ensure a repeatable configuration, both to ensure consistent |
| 89 | * runtime behavior, and to make it easier for others to reproduce |
| 90 | * bugs. |
| 91 | * |
| 92 | * OMAP module activity states |
| 93 | * --------------------------- |
| 94 | * The hwmod code considers modules to be in one of several activity |
| 95 | * states. IP blocks start out in an UNKNOWN state, then once they |
| 96 | * are registered via the hwmod code, proceed to the REGISTERED state. |
| 97 | * Once their clock names are resolved to clock pointers, the module |
| 98 | * enters the CLKS_INITED state; and finally, once the module has been |
| 99 | * reset and the integration registers programmed, the INITIALIZED state |
| 100 | * is entered. The hwmod code will then place the module into either |
| 101 | * the IDLE state to save power, or in the case of a critical system |
| 102 | * module, the ENABLED state. |
| 103 | * |
| 104 | * OMAP core integration code can then call omap_hwmod*() functions |
| 105 | * directly to move the module between the IDLE, ENABLED, and DISABLED |
| 106 | * states, as needed. This is done during both the PM idle loop, and |
| 107 | * in the OMAP core integration code's implementation of the PM runtime |
| 108 | * functions. |
| 109 | * |
| 110 | * References |
| 111 | * ---------- |
| 112 | * This is a partial list. |
Paul 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> |
| 133 | #include <linux/clk.h> |
| 134 | #include <linux/delay.h> |
| 135 | #include <linux/err.h> |
| 136 | #include <linux/list.h> |
| 137 | #include <linux/mutex.h> |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 138 | #include <linux/spinlock.h> |
Tero Kristo | abc2d54 | 2011-12-16 14:36:59 -0700 | [diff] [blame] | 139 | #include <linux/slab.h> |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 140 | |
Tony Lindgren | 4e65331 | 2011-11-10 22:45:17 +0100 | [diff] [blame] | 141 | #include "common.h" |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 142 | #include <plat/cpu.h> |
Paul Walmsley | 1540f214 | 2010-12-21 21:05:15 -0700 | [diff] [blame] | 143 | #include "clockdomain.h" |
Paul Walmsley | 72e06d0 | 2010-12-21 21:05:16 -0700 | [diff] [blame] | 144 | #include "powerdomain.h" |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 145 | #include <plat/clock.h> |
| 146 | #include <plat/omap_hwmod.h> |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 147 | #include <plat/prcm.h> |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 148 | |
Paul Walmsley | 59fb659 | 2010-12-21 15:30:55 -0700 | [diff] [blame] | 149 | #include "cm2xxx_3xxx.h" |
Benoit Cousson | d0f0631 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 150 | #include "cminst44xx.h" |
Paul Walmsley | 59fb659 | 2010-12-21 15:30:55 -0700 | [diff] [blame] | 151 | #include "prm2xxx_3xxx.h" |
Paul Walmsley | d198b51 | 2010-12-21 15:30:54 -0700 | [diff] [blame] | 152 | #include "prm44xx.h" |
Benoit Cousson | eaac329 | 2011-07-10 05:56:31 -0600 | [diff] [blame] | 153 | #include "prminst44xx.h" |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 154 | #include "mux.h" |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 155 | |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 156 | /* Maximum microseconds to wait for OMAP module to softreset */ |
| 157 | #define MAX_MODULE_SOFTRESET_WAIT 10000 |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 158 | |
| 159 | /* Name of the OMAP hwmod for the MPU */ |
Benoit Cousson | 5c2c029 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 160 | #define MPU_INITIATOR_NAME "mpu" |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 161 | |
| 162 | /* omap_hwmod_list contains all registered struct omap_hwmods */ |
| 163 | static LIST_HEAD(omap_hwmod_list); |
| 164 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 165 | /* mpu_oh: used to add/remove MPU initiator from sleepdep list */ |
| 166 | static struct omap_hwmod *mpu_oh; |
| 167 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 168 | |
| 169 | /* Private functions */ |
| 170 | |
| 171 | /** |
| 172 | * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy |
| 173 | * @oh: struct omap_hwmod * |
| 174 | * |
| 175 | * Load the current value of the hwmod OCP_SYSCONFIG register into the |
| 176 | * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no |
| 177 | * OCP_SYSCONFIG register or 0 upon success. |
| 178 | */ |
| 179 | static int _update_sysc_cache(struct omap_hwmod *oh) |
| 180 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 181 | if (!oh->class->sysc) { |
| 182 | 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] | 183 | return -EINVAL; |
| 184 | } |
| 185 | |
| 186 | /* XXX ensure module interface clock is up */ |
| 187 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 188 | oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 189 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 190 | if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE)) |
Thara Gopinath | 883edfd | 2010-01-19 17:30:51 -0700 | [diff] [blame] | 191 | oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 192 | |
| 193 | return 0; |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register |
| 198 | * @v: OCP_SYSCONFIG value to write |
| 199 | * @oh: struct omap_hwmod * |
| 200 | * |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 201 | * Write @v into the module class' OCP_SYSCONFIG register, if it has |
| 202 | * one. No return value. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 203 | */ |
| 204 | static void _write_sysconfig(u32 v, struct omap_hwmod *oh) |
| 205 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 206 | if (!oh->class->sysc) { |
| 207 | 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] | 208 | return; |
| 209 | } |
| 210 | |
| 211 | /* XXX ensure module interface clock is up */ |
| 212 | |
Rajendra Nayak | 233cbe5 | 2010-12-14 12:42:36 -0700 | [diff] [blame] | 213 | /* Module might have lost context, always update cache and register */ |
| 214 | oh->_sysc_cache = v; |
| 215 | omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | /** |
| 219 | * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v |
| 220 | * @oh: struct omap_hwmod * |
| 221 | * @standbymode: MIDLEMODE field bits |
| 222 | * @v: pointer to register contents to modify |
| 223 | * |
| 224 | * Update the master standby mode bits in @v to be @standbymode for |
| 225 | * the @oh hwmod. Does not write to the hardware. Returns -EINVAL |
| 226 | * upon error or 0 upon success. |
| 227 | */ |
| 228 | static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode, |
| 229 | u32 *v) |
| 230 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 231 | u32 mstandby_mask; |
| 232 | u8 mstandby_shift; |
| 233 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 234 | if (!oh->class->sysc || |
| 235 | !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 236 | return -EINVAL; |
| 237 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 238 | if (!oh->class->sysc->sysc_fields) { |
| 239 | 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] | 240 | return -EINVAL; |
| 241 | } |
| 242 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 243 | mstandby_shift = oh->class->sysc->sysc_fields->midle_shift; |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 244 | mstandby_mask = (0x3 << mstandby_shift); |
| 245 | |
| 246 | *v &= ~mstandby_mask; |
| 247 | *v |= __ffs(standbymode) << mstandby_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 248 | |
| 249 | return 0; |
| 250 | } |
| 251 | |
| 252 | /** |
| 253 | * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v |
| 254 | * @oh: struct omap_hwmod * |
| 255 | * @idlemode: SIDLEMODE field bits |
| 256 | * @v: pointer to register contents to modify |
| 257 | * |
| 258 | * Update the slave idle mode bits in @v to be @idlemode for the @oh |
| 259 | * hwmod. Does not write to the hardware. Returns -EINVAL upon error |
| 260 | * or 0 upon success. |
| 261 | */ |
| 262 | static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v) |
| 263 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 264 | u32 sidle_mask; |
| 265 | u8 sidle_shift; |
| 266 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 267 | if (!oh->class->sysc || |
| 268 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 269 | return -EINVAL; |
| 270 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 271 | if (!oh->class->sysc->sysc_fields) { |
| 272 | 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] | 273 | return -EINVAL; |
| 274 | } |
| 275 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 276 | sidle_shift = oh->class->sysc->sysc_fields->sidle_shift; |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 277 | sidle_mask = (0x3 << sidle_shift); |
| 278 | |
| 279 | *v &= ~sidle_mask; |
| 280 | *v |= __ffs(idlemode) << sidle_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 281 | |
| 282 | return 0; |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v |
| 287 | * @oh: struct omap_hwmod * |
| 288 | * @clockact: CLOCKACTIVITY field bits |
| 289 | * @v: pointer to register contents to modify |
| 290 | * |
| 291 | * Update the clockactivity mode bits in @v to be @clockact for the |
| 292 | * @oh hwmod. Used for additional powersaving on some modules. Does |
| 293 | * not write to the hardware. Returns -EINVAL upon error or 0 upon |
| 294 | * success. |
| 295 | */ |
| 296 | static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v) |
| 297 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 298 | u32 clkact_mask; |
| 299 | u8 clkact_shift; |
| 300 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 301 | if (!oh->class->sysc || |
| 302 | !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 303 | return -EINVAL; |
| 304 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 305 | if (!oh->class->sysc->sysc_fields) { |
| 306 | 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] | 307 | return -EINVAL; |
| 308 | } |
| 309 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 310 | clkact_shift = oh->class->sysc->sysc_fields->clkact_shift; |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 311 | clkact_mask = (0x3 << clkact_shift); |
| 312 | |
| 313 | *v &= ~clkact_mask; |
| 314 | *v |= clockact << clkact_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 315 | |
| 316 | return 0; |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * _set_softreset: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v |
| 321 | * @oh: struct omap_hwmod * |
| 322 | * @v: pointer to register contents to modify |
| 323 | * |
| 324 | * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon |
| 325 | * error or 0 upon success. |
| 326 | */ |
| 327 | static int _set_softreset(struct omap_hwmod *oh, u32 *v) |
| 328 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 329 | u32 softrst_mask; |
| 330 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 331 | if (!oh->class->sysc || |
| 332 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 333 | return -EINVAL; |
| 334 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 335 | if (!oh->class->sysc->sysc_fields) { |
| 336 | 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] | 337 | return -EINVAL; |
| 338 | } |
| 339 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 340 | softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 341 | |
| 342 | *v |= softrst_mask; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 343 | |
| 344 | return 0; |
| 345 | } |
| 346 | |
| 347 | /** |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 348 | * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v |
| 349 | * @oh: struct omap_hwmod * |
| 350 | * @autoidle: desired AUTOIDLE bitfield value (0 or 1) |
| 351 | * @v: pointer to register contents to modify |
| 352 | * |
| 353 | * Update the module autoidle bit in @v to be @autoidle for the @oh |
| 354 | * hwmod. The autoidle bit controls whether the module can gate |
| 355 | * internal clocks automatically when it isn't doing anything; the |
| 356 | * exact function of this bit varies on a per-module basis. This |
| 357 | * function does not write to the hardware. Returns -EINVAL upon |
| 358 | * error or 0 upon success. |
| 359 | */ |
| 360 | static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle, |
| 361 | u32 *v) |
| 362 | { |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 363 | u32 autoidle_mask; |
| 364 | u8 autoidle_shift; |
| 365 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 366 | if (!oh->class->sysc || |
| 367 | !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE)) |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 368 | return -EINVAL; |
| 369 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 370 | if (!oh->class->sysc->sysc_fields) { |
| 371 | 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] | 372 | return -EINVAL; |
| 373 | } |
| 374 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 375 | autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift; |
Tarun Kanti DebBarma | 8985b63 | 2011-03-03 14:22:46 -0700 | [diff] [blame] | 376 | autoidle_mask = (0x1 << autoidle_shift); |
Thara Gopinath | 358f0e6 | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 377 | |
| 378 | *v &= ~autoidle_mask; |
| 379 | *v |= autoidle << autoidle_shift; |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 380 | |
| 381 | return 0; |
| 382 | } |
| 383 | |
| 384 | /** |
Govindraj R | eceec00 | 2011-12-16 14:36:58 -0700 | [diff] [blame] | 385 | * _set_idle_ioring_wakeup - enable/disable IO pad wakeup on hwmod idle for mux |
| 386 | * @oh: struct omap_hwmod * |
| 387 | * @set_wake: bool value indicating to set (true) or clear (false) wakeup enable |
| 388 | * |
| 389 | * Set or clear the I/O pad wakeup flag in the mux entries for the |
| 390 | * hwmod @oh. This function changes the @oh->mux->pads_dynamic array |
| 391 | * in memory. If the hwmod is currently idled, and the new idle |
| 392 | * values don't match the previous ones, this function will also |
| 393 | * update the SCM PADCTRL registers. Otherwise, if the hwmod is not |
| 394 | * currently idled, this function won't touch the hardware: the new |
| 395 | * mux settings are written to the SCM PADCTRL registers when the |
| 396 | * hwmod is idled. No return value. |
| 397 | */ |
| 398 | static void _set_idle_ioring_wakeup(struct omap_hwmod *oh, bool set_wake) |
| 399 | { |
| 400 | struct omap_device_pad *pad; |
| 401 | bool change = false; |
| 402 | u16 prev_idle; |
| 403 | int j; |
| 404 | |
| 405 | if (!oh->mux || !oh->mux->enabled) |
| 406 | return; |
| 407 | |
| 408 | for (j = 0; j < oh->mux->nr_pads_dynamic; j++) { |
| 409 | pad = oh->mux->pads_dynamic[j]; |
| 410 | |
| 411 | if (!(pad->flags & OMAP_DEVICE_PAD_WAKEUP)) |
| 412 | continue; |
| 413 | |
| 414 | prev_idle = pad->idle; |
| 415 | |
| 416 | if (set_wake) |
| 417 | pad->idle |= OMAP_WAKEUP_EN; |
| 418 | else |
| 419 | pad->idle &= ~OMAP_WAKEUP_EN; |
| 420 | |
| 421 | if (prev_idle != pad->idle) |
| 422 | change = true; |
| 423 | } |
| 424 | |
| 425 | if (change && oh->_state == _HWMOD_STATE_IDLE) |
| 426 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE); |
| 427 | } |
| 428 | |
| 429 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 430 | * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware |
| 431 | * @oh: struct omap_hwmod * |
| 432 | * |
| 433 | * Allow the hardware module @oh to send wakeups. Returns -EINVAL |
| 434 | * upon error or 0 upon success. |
| 435 | */ |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 436 | static int _enable_wakeup(struct omap_hwmod *oh, u32 *v) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 437 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 438 | if (!oh->class->sysc || |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 439 | !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) || |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 440 | (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) || |
| 441 | (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP))) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 442 | return -EINVAL; |
| 443 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 444 | if (!oh->class->sysc->sysc_fields) { |
| 445 | 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] | 446 | return -EINVAL; |
| 447 | } |
| 448 | |
Benoit Cousson | 1fe7411 | 2011-07-01 22:54:03 +0200 | [diff] [blame] | 449 | if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) |
| 450 | *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 451 | |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 452 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) |
| 453 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v); |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 454 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 455 | _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v); |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 456 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 457 | /* XXX test pwrdm_get_wken for this hwmod's subsystem */ |
| 458 | |
| 459 | oh->_int_flags |= _HWMOD_WAKEUP_ENABLED; |
| 460 | |
| 461 | return 0; |
| 462 | } |
| 463 | |
| 464 | /** |
| 465 | * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware |
| 466 | * @oh: struct omap_hwmod * |
| 467 | * |
| 468 | * Prevent the hardware module @oh to send wakeups. Returns -EINVAL |
| 469 | * upon error or 0 upon success. |
| 470 | */ |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 471 | static int _disable_wakeup(struct omap_hwmod *oh, u32 *v) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 472 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 473 | if (!oh->class->sysc || |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 474 | !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) || |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 475 | (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) || |
| 476 | (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP))) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 477 | return -EINVAL; |
| 478 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 479 | if (!oh->class->sysc->sysc_fields) { |
| 480 | 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] | 481 | return -EINVAL; |
| 482 | } |
| 483 | |
Benoit Cousson | 1fe7411 | 2011-07-01 22:54:03 +0200 | [diff] [blame] | 484 | if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) |
| 485 | *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 486 | |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 487 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) |
| 488 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v); |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 489 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 490 | _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v); |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 491 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 492 | /* XXX test pwrdm_get_wken for this hwmod's subsystem */ |
| 493 | |
| 494 | oh->_int_flags &= ~_HWMOD_WAKEUP_ENABLED; |
| 495 | |
| 496 | return 0; |
| 497 | } |
| 498 | |
| 499 | /** |
| 500 | * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active |
| 501 | * @oh: struct omap_hwmod * |
| 502 | * |
| 503 | * Prevent the hardware module @oh from entering idle while the |
| 504 | * hardare module initiator @init_oh is active. Useful when a module |
| 505 | * will be accessed by a particular initiator (e.g., if a module will |
| 506 | * be accessed by the IVA, there should be a sleepdep between the IVA |
| 507 | * initiator and the module). Only applies to modules in smart-idle |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 508 | * mode. If the clockdomain is marked as not needing autodeps, return |
| 509 | * 0 without doing anything. Otherwise, returns -EINVAL upon error or |
| 510 | * passes along clkdm_add_sleepdep() value upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 511 | */ |
| 512 | static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh) |
| 513 | { |
| 514 | if (!oh->_clk) |
| 515 | return -EINVAL; |
| 516 | |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 517 | if (oh->_clk->clkdm && oh->_clk->clkdm->flags & CLKDM_NO_AUTODEPS) |
| 518 | return 0; |
| 519 | |
Paul Walmsley | 55ed969 | 2010-01-26 20:12:59 -0700 | [diff] [blame] | 520 | return clkdm_add_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | /** |
| 524 | * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active |
| 525 | * @oh: struct omap_hwmod * |
| 526 | * |
| 527 | * Allow the hardware module @oh to enter idle while the hardare |
| 528 | * module initiator @init_oh is active. Useful when a module will not |
| 529 | * be accessed by a particular initiator (e.g., if a module will not |
| 530 | * be accessed by the IVA, there should be no sleepdep between the IVA |
| 531 | * initiator and the module). Only applies to modules in smart-idle |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 532 | * mode. If the clockdomain is marked as not needing autodeps, return |
| 533 | * 0 without doing anything. Returns -EINVAL upon error or passes |
| 534 | * along clkdm_del_sleepdep() value upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 535 | */ |
| 536 | static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh) |
| 537 | { |
| 538 | if (!oh->_clk) |
| 539 | return -EINVAL; |
| 540 | |
Paul Walmsley | 570b54c | 2011-03-10 03:50:09 -0700 | [diff] [blame] | 541 | if (oh->_clk->clkdm && oh->_clk->clkdm->flags & CLKDM_NO_AUTODEPS) |
| 542 | return 0; |
| 543 | |
Paul Walmsley | 55ed969 | 2010-01-26 20:12:59 -0700 | [diff] [blame] | 544 | return clkdm_del_sleepdep(oh->_clk->clkdm, init_oh->_clk->clkdm); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | /** |
| 548 | * _init_main_clk - get a struct clk * for the the hwmod's main functional clk |
| 549 | * @oh: struct omap_hwmod * |
| 550 | * |
| 551 | * Called from _init_clocks(). Populates the @oh _clk (main |
| 552 | * functional clock pointer) if a main_clk is present. Returns 0 on |
| 553 | * success or -EINVAL on error. |
| 554 | */ |
| 555 | static int _init_main_clk(struct omap_hwmod *oh) |
| 556 | { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 557 | int ret = 0; |
| 558 | |
Paul Walmsley | 50ebdac | 2010-02-22 22:09:31 -0700 | [diff] [blame] | 559 | if (!oh->main_clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 560 | return 0; |
| 561 | |
Benoit Cousson | 6340338 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 562 | oh->_clk = omap_clk_get_by_name(oh->main_clk); |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 563 | if (!oh->_clk) { |
Benoit Cousson | 20383d8 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 564 | pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n", |
| 565 | oh->name, oh->main_clk); |
Benoit Cousson | 6340338 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 566 | return -EINVAL; |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 567 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 568 | |
Benoit Cousson | 6340338 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 569 | if (!oh->_clk->clkdm) |
| 570 | pr_warning("omap_hwmod: %s: missing clockdomain for %s.\n", |
| 571 | oh->main_clk, oh->_clk->name); |
Kevin Hilman | 81d7c6f | 2009-12-08 16:34:24 -0700 | [diff] [blame] | 572 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 573 | return ret; |
| 574 | } |
| 575 | |
| 576 | /** |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 577 | * _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] | 578 | * @oh: struct omap_hwmod * |
| 579 | * |
| 580 | * Called from _init_clocks(). Populates the @oh OCP slave interface |
| 581 | * clock pointers. Returns 0 on success or -EINVAL on error. |
| 582 | */ |
| 583 | static int _init_interface_clks(struct omap_hwmod *oh) |
| 584 | { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 585 | struct clk *c; |
| 586 | int i; |
| 587 | int ret = 0; |
| 588 | |
| 589 | if (oh->slaves_cnt == 0) |
| 590 | return 0; |
| 591 | |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 592 | for (i = 0; i < oh->slaves_cnt; i++) { |
| 593 | struct omap_hwmod_ocp_if *os = oh->slaves[i]; |
| 594 | |
Paul Walmsley | 50ebdac | 2010-02-22 22:09:31 -0700 | [diff] [blame] | 595 | if (!os->clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 596 | continue; |
| 597 | |
Paul Walmsley | 50ebdac | 2010-02-22 22:09:31 -0700 | [diff] [blame] | 598 | c = omap_clk_get_by_name(os->clk); |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 599 | if (!c) { |
Benoit Cousson | 20383d8 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 600 | pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n", |
| 601 | oh->name, os->clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 602 | ret = -EINVAL; |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 603 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 604 | os->_clk = c; |
| 605 | } |
| 606 | |
| 607 | return ret; |
| 608 | } |
| 609 | |
| 610 | /** |
| 611 | * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks |
| 612 | * @oh: struct omap_hwmod * |
| 613 | * |
| 614 | * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk |
| 615 | * clock pointers. Returns 0 on success or -EINVAL on error. |
| 616 | */ |
| 617 | static int _init_opt_clks(struct omap_hwmod *oh) |
| 618 | { |
| 619 | struct omap_hwmod_opt_clk *oc; |
| 620 | struct clk *c; |
| 621 | int i; |
| 622 | int ret = 0; |
| 623 | |
| 624 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) { |
Paul Walmsley | 50ebdac | 2010-02-22 22:09:31 -0700 | [diff] [blame] | 625 | c = omap_clk_get_by_name(oc->clk); |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 626 | if (!c) { |
Benoit Cousson | 20383d8 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 627 | pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n", |
| 628 | oh->name, oc->clk); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 629 | ret = -EINVAL; |
Benoit Cousson | dc75925 | 2010-06-23 18:15:12 -0600 | [diff] [blame] | 630 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 631 | oc->_clk = c; |
| 632 | } |
| 633 | |
| 634 | return ret; |
| 635 | } |
| 636 | |
| 637 | /** |
| 638 | * _enable_clocks - enable hwmod main clock and interface clocks |
| 639 | * @oh: struct omap_hwmod * |
| 640 | * |
| 641 | * Enables all clocks necessary for register reads and writes to succeed |
| 642 | * on the hwmod @oh. Returns 0. |
| 643 | */ |
| 644 | static int _enable_clocks(struct omap_hwmod *oh) |
| 645 | { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 646 | int i; |
| 647 | |
| 648 | pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name); |
| 649 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 650 | if (oh->_clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 651 | clk_enable(oh->_clk); |
| 652 | |
| 653 | if (oh->slaves_cnt > 0) { |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 654 | for (i = 0; i < oh->slaves_cnt; i++) { |
| 655 | struct omap_hwmod_ocp_if *os = oh->slaves[i]; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 656 | struct clk *c = os->_clk; |
| 657 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 658 | if (c && (os->flags & OCPIF_SWSUP_IDLE)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 659 | clk_enable(c); |
| 660 | } |
| 661 | } |
| 662 | |
| 663 | /* The opt clocks are controlled by the device driver. */ |
| 664 | |
| 665 | return 0; |
| 666 | } |
| 667 | |
| 668 | /** |
| 669 | * _disable_clocks - disable hwmod main clock and interface clocks |
| 670 | * @oh: struct omap_hwmod * |
| 671 | * |
| 672 | * Disables the hwmod @oh main functional and interface clocks. Returns 0. |
| 673 | */ |
| 674 | static int _disable_clocks(struct omap_hwmod *oh) |
| 675 | { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 676 | int i; |
| 677 | |
| 678 | pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name); |
| 679 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 680 | if (oh->_clk) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 681 | clk_disable(oh->_clk); |
| 682 | |
| 683 | if (oh->slaves_cnt > 0) { |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 684 | for (i = 0; i < oh->slaves_cnt; i++) { |
| 685 | struct omap_hwmod_ocp_if *os = oh->slaves[i]; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 686 | struct clk *c = os->_clk; |
| 687 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 688 | if (c && (os->flags & OCPIF_SWSUP_IDLE)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 689 | clk_disable(c); |
| 690 | } |
| 691 | } |
| 692 | |
| 693 | /* The opt clocks are controlled by the device driver. */ |
| 694 | |
| 695 | return 0; |
| 696 | } |
| 697 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 698 | static void _enable_optional_clocks(struct omap_hwmod *oh) |
| 699 | { |
| 700 | struct omap_hwmod_opt_clk *oc; |
| 701 | int i; |
| 702 | |
| 703 | pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name); |
| 704 | |
| 705 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
| 706 | if (oc->_clk) { |
| 707 | pr_debug("omap_hwmod: enable %s:%s\n", oc->role, |
| 708 | oc->_clk->name); |
| 709 | clk_enable(oc->_clk); |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | static void _disable_optional_clocks(struct omap_hwmod *oh) |
| 714 | { |
| 715 | struct omap_hwmod_opt_clk *oc; |
| 716 | int i; |
| 717 | |
| 718 | pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name); |
| 719 | |
| 720 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
| 721 | if (oc->_clk) { |
| 722 | pr_debug("omap_hwmod: disable %s:%s\n", oc->role, |
| 723 | oc->_clk->name); |
| 724 | clk_disable(oc->_clk); |
| 725 | } |
| 726 | } |
| 727 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 728 | /** |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 729 | * _enable_module - enable CLKCTRL modulemode on OMAP4 |
| 730 | * @oh: struct omap_hwmod * |
| 731 | * |
| 732 | * Enables the PRCM module mode related to the hwmod @oh. |
| 733 | * No return value. |
| 734 | */ |
| 735 | static void _enable_module(struct omap_hwmod *oh) |
| 736 | { |
| 737 | /* The module mode does not exist prior OMAP4 */ |
| 738 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) |
| 739 | return; |
| 740 | |
| 741 | if (!oh->clkdm || !oh->prcm.omap4.modulemode) |
| 742 | return; |
| 743 | |
| 744 | pr_debug("omap_hwmod: %s: _enable_module: %d\n", |
| 745 | oh->name, oh->prcm.omap4.modulemode); |
| 746 | |
| 747 | omap4_cminst_module_enable(oh->prcm.omap4.modulemode, |
| 748 | oh->clkdm->prcm_partition, |
| 749 | oh->clkdm->cm_inst, |
| 750 | oh->clkdm->clkdm_offs, |
| 751 | oh->prcm.omap4.clkctrl_offs); |
| 752 | } |
| 753 | |
| 754 | /** |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 755 | * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4 |
| 756 | * @oh: struct omap_hwmod * |
| 757 | * |
| 758 | * Wait for a module @oh to enter slave idle. Returns 0 if the module |
| 759 | * does not have an IDLEST bit or if the module successfully enters |
| 760 | * slave idle; otherwise, pass along the return value of the |
| 761 | * appropriate *_cm*_wait_module_idle() function. |
| 762 | */ |
| 763 | static int _omap4_wait_target_disable(struct omap_hwmod *oh) |
| 764 | { |
| 765 | if (!cpu_is_omap44xx()) |
| 766 | return 0; |
| 767 | |
| 768 | if (!oh) |
| 769 | return -EINVAL; |
| 770 | |
| 771 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 772 | return 0; |
| 773 | |
| 774 | if (oh->flags & HWMOD_NO_IDLEST) |
| 775 | return 0; |
| 776 | |
| 777 | return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition, |
| 778 | oh->clkdm->cm_inst, |
| 779 | oh->clkdm->clkdm_offs, |
| 780 | oh->prcm.omap4.clkctrl_offs); |
| 781 | } |
| 782 | |
| 783 | /** |
| 784 | * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4 |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 785 | * @oh: struct omap_hwmod * |
| 786 | * |
| 787 | * Disable the PRCM module mode related to the hwmod @oh. |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 788 | * Return EINVAL if the modulemode is not supported and 0 in case of success. |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 789 | */ |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 790 | static int _omap4_disable_module(struct omap_hwmod *oh) |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 791 | { |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 792 | int v; |
| 793 | |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 794 | /* The module mode does not exist prior OMAP4 */ |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 795 | if (!cpu_is_omap44xx()) |
| 796 | return -EINVAL; |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 797 | |
| 798 | if (!oh->clkdm || !oh->prcm.omap4.modulemode) |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 799 | return -EINVAL; |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 800 | |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 801 | pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 802 | |
| 803 | omap4_cminst_module_disable(oh->clkdm->prcm_partition, |
| 804 | oh->clkdm->cm_inst, |
| 805 | oh->clkdm->clkdm_offs, |
| 806 | oh->prcm.omap4.clkctrl_offs); |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 807 | |
| 808 | v = _omap4_wait_target_disable(oh); |
| 809 | if (v) |
| 810 | pr_warn("omap_hwmod: %s: _wait_target_disable failed\n", |
| 811 | oh->name); |
| 812 | |
| 813 | return 0; |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 814 | } |
| 815 | |
| 816 | /** |
Paul Walmsley | 212738a | 2011-07-09 19:14:06 -0600 | [diff] [blame] | 817 | * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh |
| 818 | * @oh: struct omap_hwmod *oh |
| 819 | * |
| 820 | * Count and return the number of MPU IRQs associated with the hwmod |
| 821 | * @oh. Used to allocate struct resource data. Returns 0 if @oh is |
| 822 | * NULL. |
| 823 | */ |
| 824 | static int _count_mpu_irqs(struct omap_hwmod *oh) |
| 825 | { |
| 826 | struct omap_hwmod_irq_info *ohii; |
| 827 | int i = 0; |
| 828 | |
| 829 | if (!oh || !oh->mpu_irqs) |
| 830 | return 0; |
| 831 | |
| 832 | do { |
| 833 | ohii = &oh->mpu_irqs[i++]; |
| 834 | } while (ohii->irq != -1); |
| 835 | |
sricharan | cc1b076 | 2011-11-23 14:35:07 -0800 | [diff] [blame] | 836 | return i-1; |
Paul Walmsley | 212738a | 2011-07-09 19:14:06 -0600 | [diff] [blame] | 837 | } |
| 838 | |
| 839 | /** |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 840 | * _count_sdma_reqs - count the number of SDMA request lines associated with @oh |
| 841 | * @oh: struct omap_hwmod *oh |
| 842 | * |
| 843 | * Count and return the number of SDMA request lines associated with |
| 844 | * the hwmod @oh. Used to allocate struct resource data. Returns 0 |
| 845 | * if @oh is NULL. |
| 846 | */ |
| 847 | static int _count_sdma_reqs(struct omap_hwmod *oh) |
| 848 | { |
| 849 | struct omap_hwmod_dma_info *ohdi; |
| 850 | int i = 0; |
| 851 | |
| 852 | if (!oh || !oh->sdma_reqs) |
| 853 | return 0; |
| 854 | |
| 855 | do { |
| 856 | ohdi = &oh->sdma_reqs[i++]; |
| 857 | } while (ohdi->dma_req != -1); |
| 858 | |
sricharan | cc1b076 | 2011-11-23 14:35:07 -0800 | [diff] [blame] | 859 | return i-1; |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 860 | } |
| 861 | |
| 862 | /** |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 863 | * _count_ocp_if_addr_spaces - count the number of address space entries for @oh |
| 864 | * @oh: struct omap_hwmod *oh |
| 865 | * |
| 866 | * Count and return the number of address space ranges associated with |
| 867 | * the hwmod @oh. Used to allocate struct resource data. Returns 0 |
| 868 | * if @oh is NULL. |
| 869 | */ |
| 870 | static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os) |
| 871 | { |
| 872 | struct omap_hwmod_addr_space *mem; |
| 873 | int i = 0; |
| 874 | |
| 875 | if (!os || !os->addr) |
| 876 | return 0; |
| 877 | |
| 878 | do { |
| 879 | mem = &os->addr[i++]; |
| 880 | } while (mem->pa_start != mem->pa_end); |
| 881 | |
sricharan | cc1b076 | 2011-11-23 14:35:07 -0800 | [diff] [blame] | 882 | return i-1; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 883 | } |
| 884 | |
| 885 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 886 | * _find_mpu_port_index - find hwmod OCP slave port ID intended for MPU use |
| 887 | * @oh: struct omap_hwmod * |
| 888 | * |
| 889 | * Returns the array index of the OCP slave port that the MPU |
| 890 | * addresses the device on, or -EINVAL upon error or not found. |
| 891 | */ |
Benoit Cousson | 01592df | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 892 | static int __init _find_mpu_port_index(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 893 | { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 894 | int i; |
| 895 | int found = 0; |
| 896 | |
| 897 | if (!oh || oh->slaves_cnt == 0) |
| 898 | return -EINVAL; |
| 899 | |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 900 | for (i = 0; i < oh->slaves_cnt; i++) { |
| 901 | struct omap_hwmod_ocp_if *os = oh->slaves[i]; |
| 902 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 903 | if (os->user & OCP_USER_MPU) { |
| 904 | found = 1; |
| 905 | break; |
| 906 | } |
| 907 | } |
| 908 | |
| 909 | if (found) |
| 910 | pr_debug("omap_hwmod: %s: MPU OCP slave port ID %d\n", |
| 911 | oh->name, i); |
| 912 | else |
| 913 | pr_debug("omap_hwmod: %s: no MPU OCP slave port found\n", |
| 914 | oh->name); |
| 915 | |
| 916 | return (found) ? i : -EINVAL; |
| 917 | } |
| 918 | |
| 919 | /** |
| 920 | * _find_mpu_rt_base - find hwmod register target base addr accessible by MPU |
| 921 | * @oh: struct omap_hwmod * |
| 922 | * |
| 923 | * Return the virtual address of the base of the register target of |
| 924 | * device @oh, or NULL on error. |
| 925 | */ |
Benoit Cousson | 01592df | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 926 | static void __iomem * __init _find_mpu_rt_base(struct omap_hwmod *oh, u8 index) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 927 | { |
| 928 | struct omap_hwmod_ocp_if *os; |
| 929 | struct omap_hwmod_addr_space *mem; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 930 | int i = 0, found = 0; |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 931 | void __iomem *va_start; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 932 | |
| 933 | if (!oh || oh->slaves_cnt == 0) |
| 934 | return NULL; |
| 935 | |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 936 | os = oh->slaves[index]; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 937 | |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 938 | if (!os->addr) |
| 939 | return NULL; |
| 940 | |
| 941 | do { |
| 942 | mem = &os->addr[i++]; |
| 943 | if (mem->flags & ADDR_TYPE_RT) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 944 | found = 1; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 945 | } while (!found && mem->pa_start != mem->pa_end); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 946 | |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 947 | if (found) { |
| 948 | va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start); |
| 949 | if (!va_start) { |
| 950 | pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name); |
| 951 | return NULL; |
| 952 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 953 | pr_debug("omap_hwmod: %s: MPU register target at va %p\n", |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 954 | oh->name, va_start); |
| 955 | } else { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 956 | pr_debug("omap_hwmod: %s: no MPU register target found\n", |
| 957 | oh->name); |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 958 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 959 | |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 960 | return (found) ? va_start : NULL; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 961 | } |
| 962 | |
| 963 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 964 | * _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] | 965 | * @oh: struct omap_hwmod * |
| 966 | * |
| 967 | * If module is marked as SWSUP_SIDLE, force the module out of slave |
| 968 | * idle; otherwise, configure it for smart-idle. If module is marked |
| 969 | * as SWSUP_MSUSPEND, force the module out of master standby; |
| 970 | * otherwise, configure it for smart-standby. No return value. |
| 971 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 972 | static void _enable_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 973 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 974 | u8 idlemode, sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 975 | u32 v; |
| 976 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 977 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 978 | return; |
| 979 | |
| 980 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 981 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 982 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 983 | if (sf & SYSC_HAS_SIDLEMODE) { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 984 | idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ? |
| 985 | HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART; |
| 986 | _set_slave_idlemode(oh, idlemode, &v); |
| 987 | } |
| 988 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 989 | if (sf & SYSC_HAS_MIDLEMODE) { |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 990 | if (oh->flags & HWMOD_SWSUP_MSTANDBY) { |
| 991 | idlemode = HWMOD_IDLEMODE_NO; |
| 992 | } else { |
| 993 | if (sf & SYSC_HAS_ENAWAKEUP) |
| 994 | _enable_wakeup(oh, &v); |
| 995 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 996 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; |
| 997 | else |
| 998 | idlemode = HWMOD_IDLEMODE_SMART; |
| 999 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1000 | _set_master_standbymode(oh, idlemode, &v); |
| 1001 | } |
| 1002 | |
Paul Walmsley | a16b1f7 | 2009-12-08 16:34:17 -0700 | [diff] [blame] | 1003 | /* |
| 1004 | * XXX The clock framework should handle this, by |
| 1005 | * calling into this code. But this must wait until the |
| 1006 | * clock structures are tagged with omap_hwmod entries |
| 1007 | */ |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1008 | if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) && |
| 1009 | (sf & SYSC_HAS_CLOCKACTIVITY)) |
| 1010 | _set_clockactivity(oh, oh->class->sysc->clockact, &v); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1011 | |
Rajendra Nayak | 9980ce5 | 2010-09-21 19:58:30 +0530 | [diff] [blame] | 1012 | /* If slave is in SMARTIDLE, also enable wakeup */ |
| 1013 | if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE)) |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 1014 | _enable_wakeup(oh, &v); |
| 1015 | |
| 1016 | _write_sysconfig(v, oh); |
Hema HK | 78f26e8 | 2010-09-24 10:23:19 -0600 | [diff] [blame] | 1017 | |
| 1018 | /* |
| 1019 | * Set the autoidle bit only after setting the smartidle bit |
| 1020 | * Setting this will not have any impact on the other modules. |
| 1021 | */ |
| 1022 | if (sf & SYSC_HAS_AUTOIDLE) { |
| 1023 | idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ? |
| 1024 | 0 : 1; |
| 1025 | _set_module_autoidle(oh, idlemode, &v); |
| 1026 | _write_sysconfig(v, oh); |
| 1027 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1028 | } |
| 1029 | |
| 1030 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1031 | * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1032 | * @oh: struct omap_hwmod * |
| 1033 | * |
| 1034 | * If module is marked as SWSUP_SIDLE, force the module into slave |
| 1035 | * idle; otherwise, configure it for smart-idle. If module is marked |
| 1036 | * as SWSUP_MSUSPEND, force the module into master standby; otherwise, |
| 1037 | * configure it for smart-standby. No return value. |
| 1038 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1039 | static void _idle_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1040 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1041 | u8 idlemode, sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1042 | u32 v; |
| 1043 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1044 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1045 | return; |
| 1046 | |
| 1047 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1048 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1049 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1050 | if (sf & SYSC_HAS_SIDLEMODE) { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1051 | idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ? |
| 1052 | HWMOD_IDLEMODE_FORCE : HWMOD_IDLEMODE_SMART; |
| 1053 | _set_slave_idlemode(oh, idlemode, &v); |
| 1054 | } |
| 1055 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1056 | if (sf & SYSC_HAS_MIDLEMODE) { |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 1057 | if (oh->flags & HWMOD_SWSUP_MSTANDBY) { |
| 1058 | idlemode = HWMOD_IDLEMODE_FORCE; |
| 1059 | } else { |
| 1060 | if (sf & SYSC_HAS_ENAWAKEUP) |
| 1061 | _enable_wakeup(oh, &v); |
| 1062 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 1063 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; |
| 1064 | else |
| 1065 | idlemode = HWMOD_IDLEMODE_SMART; |
| 1066 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1067 | _set_master_standbymode(oh, idlemode, &v); |
| 1068 | } |
| 1069 | |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 1070 | /* If slave is in SMARTIDLE, also enable wakeup */ |
| 1071 | if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE)) |
| 1072 | _enable_wakeup(oh, &v); |
| 1073 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1074 | _write_sysconfig(v, oh); |
| 1075 | } |
| 1076 | |
| 1077 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1078 | * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1079 | * @oh: struct omap_hwmod * |
| 1080 | * |
| 1081 | * Force the module into slave idle and master suspend. No return |
| 1082 | * value. |
| 1083 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1084 | static void _shutdown_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1085 | { |
| 1086 | u32 v; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1087 | u8 sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1088 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1089 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1090 | return; |
| 1091 | |
| 1092 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1093 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1094 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1095 | if (sf & SYSC_HAS_SIDLEMODE) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1096 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v); |
| 1097 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1098 | if (sf & SYSC_HAS_MIDLEMODE) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1099 | _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v); |
| 1100 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1101 | if (sf & SYSC_HAS_AUTOIDLE) |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 1102 | _set_module_autoidle(oh, 1, &v); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1103 | |
| 1104 | _write_sysconfig(v, oh); |
| 1105 | } |
| 1106 | |
| 1107 | /** |
| 1108 | * _lookup - find an omap_hwmod by name |
| 1109 | * @name: find an omap_hwmod by name |
| 1110 | * |
| 1111 | * 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] | 1112 | */ |
| 1113 | static struct omap_hwmod *_lookup(const char *name) |
| 1114 | { |
| 1115 | struct omap_hwmod *oh, *temp_oh; |
| 1116 | |
| 1117 | oh = NULL; |
| 1118 | |
| 1119 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
| 1120 | if (!strcmp(name, temp_oh->name)) { |
| 1121 | oh = temp_oh; |
| 1122 | break; |
| 1123 | } |
| 1124 | } |
| 1125 | |
| 1126 | return oh; |
| 1127 | } |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1128 | /** |
| 1129 | * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod |
| 1130 | * @oh: struct omap_hwmod * |
| 1131 | * |
| 1132 | * Convert a clockdomain name stored in a struct omap_hwmod into a |
| 1133 | * clockdomain pointer, and save it into the struct omap_hwmod. |
| 1134 | * return -EINVAL if clkdm_name does not exist or if the lookup failed. |
| 1135 | */ |
| 1136 | static int _init_clkdm(struct omap_hwmod *oh) |
| 1137 | { |
| 1138 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) |
| 1139 | return 0; |
| 1140 | |
| 1141 | if (!oh->clkdm_name) { |
| 1142 | pr_warning("omap_hwmod: %s: no clkdm_name\n", oh->name); |
| 1143 | return -EINVAL; |
| 1144 | } |
| 1145 | |
| 1146 | oh->clkdm = clkdm_lookup(oh->clkdm_name); |
| 1147 | if (!oh->clkdm) { |
| 1148 | pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n", |
| 1149 | oh->name, oh->clkdm_name); |
| 1150 | return -EINVAL; |
| 1151 | } |
| 1152 | |
| 1153 | pr_debug("omap_hwmod: %s: associated to clkdm %s\n", |
| 1154 | oh->name, oh->clkdm_name); |
| 1155 | |
| 1156 | return 0; |
| 1157 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1158 | |
| 1159 | /** |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1160 | * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as |
| 1161 | * well the clockdomain. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1162 | * @oh: struct omap_hwmod * |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1163 | * @data: not used; pass NULL |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1164 | * |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1165 | * Called by omap_hwmod_setup_*() (after omap2_clk_init()). |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1166 | * Resolves all clock names embedded in the hwmod. Returns 0 on |
| 1167 | * success, or a negative error code on failure. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1168 | */ |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1169 | static int _init_clocks(struct omap_hwmod *oh, void *data) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1170 | { |
| 1171 | int ret = 0; |
| 1172 | |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1173 | if (oh->_state != _HWMOD_STATE_REGISTERED) |
| 1174 | return 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1175 | |
| 1176 | pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name); |
| 1177 | |
| 1178 | ret |= _init_main_clk(oh); |
| 1179 | ret |= _init_interface_clks(oh); |
| 1180 | ret |= _init_opt_clks(oh); |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1181 | ret |= _init_clkdm(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1182 | |
Benoit Cousson | f5c1f84 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 1183 | if (!ret) |
| 1184 | oh->_state = _HWMOD_STATE_CLKS_INITED; |
Benoit Cousson | 6652271 | 2011-07-01 22:54:06 +0200 | [diff] [blame] | 1185 | else |
| 1186 | pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1187 | |
Rajendra Nayak | 09c35f2 | 2011-02-16 12:11:24 +0000 | [diff] [blame] | 1188 | return ret; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1189 | } |
| 1190 | |
| 1191 | /** |
| 1192 | * _wait_target_ready - wait for a module to leave slave idle |
| 1193 | * @oh: struct omap_hwmod * |
| 1194 | * |
| 1195 | * Wait for a module @oh to leave slave idle. Returns 0 if the module |
| 1196 | * does not have an IDLEST bit or if the module successfully leaves |
| 1197 | * slave idle; otherwise, pass along the return value of the |
Benoit Cousson | d0f0631 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1198 | * appropriate *_cm*_wait_module_ready() function. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1199 | */ |
| 1200 | static int _wait_target_ready(struct omap_hwmod *oh) |
| 1201 | { |
| 1202 | struct omap_hwmod_ocp_if *os; |
| 1203 | int ret; |
| 1204 | |
| 1205 | if (!oh) |
| 1206 | return -EINVAL; |
| 1207 | |
| 1208 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 1209 | return 0; |
| 1210 | |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1211 | os = oh->slaves[oh->_mpu_port_index]; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1212 | |
Benoit Cousson | 33f7ec8 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1213 | if (oh->flags & HWMOD_NO_IDLEST) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1214 | return 0; |
| 1215 | |
| 1216 | /* XXX check module SIDLEMODE */ |
| 1217 | |
| 1218 | /* XXX check clock enable states */ |
| 1219 | |
| 1220 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) { |
| 1221 | ret = omap2_cm_wait_module_ready(oh->prcm.omap2.module_offs, |
| 1222 | oh->prcm.omap2.idlest_reg_id, |
| 1223 | oh->prcm.omap2.idlest_idle_bit); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1224 | } else if (cpu_is_omap44xx()) { |
Benoit Cousson | d0f0631 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1225 | if (!oh->clkdm) |
| 1226 | return -EINVAL; |
| 1227 | |
| 1228 | ret = omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition, |
| 1229 | oh->clkdm->cm_inst, |
| 1230 | oh->clkdm->clkdm_offs, |
| 1231 | oh->prcm.omap4.clkctrl_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1232 | } else { |
| 1233 | BUG(); |
| 1234 | }; |
| 1235 | |
| 1236 | return ret; |
| 1237 | } |
| 1238 | |
| 1239 | /** |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1240 | * _lookup_hardreset - fill register bit info for this hwmod/reset line |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1241 | * @oh: struct omap_hwmod * |
| 1242 | * @name: name of the reset line in the context of this hwmod |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1243 | * @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] | 1244 | * |
| 1245 | * Return the bit position of the reset line that match the |
| 1246 | * input name. Return -ENOENT if not found. |
| 1247 | */ |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1248 | static u8 _lookup_hardreset(struct omap_hwmod *oh, const char *name, |
| 1249 | struct omap_hwmod_rst_info *ohri) |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1250 | { |
| 1251 | int i; |
| 1252 | |
| 1253 | for (i = 0; i < oh->rst_lines_cnt; i++) { |
| 1254 | const char *rst_line = oh->rst_lines[i].name; |
| 1255 | if (!strcmp(rst_line, name)) { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1256 | ohri->rst_shift = oh->rst_lines[i].rst_shift; |
| 1257 | ohri->st_shift = oh->rst_lines[i].st_shift; |
| 1258 | pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n", |
| 1259 | oh->name, __func__, rst_line, ohri->rst_shift, |
| 1260 | ohri->st_shift); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1261 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1262 | return 0; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1263 | } |
| 1264 | } |
| 1265 | |
| 1266 | return -ENOENT; |
| 1267 | } |
| 1268 | |
| 1269 | /** |
| 1270 | * _assert_hardreset - assert the HW reset line of submodules |
| 1271 | * contained in the hwmod module. |
| 1272 | * @oh: struct omap_hwmod * |
| 1273 | * @name: name of the reset line to lookup and assert |
| 1274 | * |
| 1275 | * Some IP like dsp, ipu or iva contain processor that require |
| 1276 | * an HW reset line to be assert / deassert in order to enable fully |
| 1277 | * the IP. |
| 1278 | */ |
| 1279 | static int _assert_hardreset(struct omap_hwmod *oh, const char *name) |
| 1280 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1281 | struct omap_hwmod_rst_info ohri; |
| 1282 | u8 ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1283 | |
| 1284 | if (!oh) |
| 1285 | return -EINVAL; |
| 1286 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1287 | ret = _lookup_hardreset(oh, name, &ohri); |
| 1288 | if (IS_ERR_VALUE(ret)) |
| 1289 | return ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1290 | |
| 1291 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) |
| 1292 | return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs, |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1293 | ohri.rst_shift); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1294 | else if (cpu_is_omap44xx()) |
Benoit Cousson | eaac329 | 2011-07-10 05:56:31 -0600 | [diff] [blame] | 1295 | return omap4_prminst_assert_hardreset(ohri.rst_shift, |
| 1296 | oh->clkdm->pwrdm.ptr->prcm_partition, |
| 1297 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 1298 | oh->prcm.omap4.rstctrl_offs); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1299 | else |
| 1300 | return -EINVAL; |
| 1301 | } |
| 1302 | |
| 1303 | /** |
| 1304 | * _deassert_hardreset - deassert the HW reset line of submodules contained |
| 1305 | * in the hwmod module. |
| 1306 | * @oh: struct omap_hwmod * |
| 1307 | * @name: name of the reset line to look up and deassert |
| 1308 | * |
| 1309 | * Some IP like dsp, ipu or iva contain processor that require |
| 1310 | * an HW reset line to be assert / deassert in order to enable fully |
| 1311 | * the IP. |
| 1312 | */ |
| 1313 | static int _deassert_hardreset(struct omap_hwmod *oh, const char *name) |
| 1314 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1315 | struct omap_hwmod_rst_info ohri; |
| 1316 | int ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1317 | |
| 1318 | if (!oh) |
| 1319 | return -EINVAL; |
| 1320 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1321 | ret = _lookup_hardreset(oh, name, &ohri); |
| 1322 | if (IS_ERR_VALUE(ret)) |
| 1323 | return ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1324 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1325 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) { |
| 1326 | ret = omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs, |
| 1327 | ohri.rst_shift, |
| 1328 | ohri.st_shift); |
| 1329 | } else if (cpu_is_omap44xx()) { |
| 1330 | if (ohri.st_shift) |
| 1331 | pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n", |
| 1332 | oh->name, name); |
Benoit Cousson | eaac329 | 2011-07-10 05:56:31 -0600 | [diff] [blame] | 1333 | ret = omap4_prminst_deassert_hardreset(ohri.rst_shift, |
| 1334 | oh->clkdm->pwrdm.ptr->prcm_partition, |
| 1335 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 1336 | oh->prcm.omap4.rstctrl_offs); |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1337 | } else { |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1338 | return -EINVAL; |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1339 | } |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1340 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1341 | if (ret == -EBUSY) |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1342 | pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name); |
| 1343 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1344 | return ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1345 | } |
| 1346 | |
| 1347 | /** |
| 1348 | * _read_hardreset - read the HW reset line state of submodules |
| 1349 | * contained in the hwmod module |
| 1350 | * @oh: struct omap_hwmod * |
| 1351 | * @name: name of the reset line to look up and read |
| 1352 | * |
| 1353 | * Return the state of the reset line. |
| 1354 | */ |
| 1355 | static int _read_hardreset(struct omap_hwmod *oh, const char *name) |
| 1356 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1357 | struct omap_hwmod_rst_info ohri; |
| 1358 | u8 ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1359 | |
| 1360 | if (!oh) |
| 1361 | return -EINVAL; |
| 1362 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1363 | ret = _lookup_hardreset(oh, name, &ohri); |
| 1364 | if (IS_ERR_VALUE(ret)) |
| 1365 | return ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1366 | |
| 1367 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) { |
| 1368 | return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs, |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1369 | ohri.st_shift); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1370 | } else if (cpu_is_omap44xx()) { |
Benoit Cousson | eaac329 | 2011-07-10 05:56:31 -0600 | [diff] [blame] | 1371 | return omap4_prminst_is_hardreset_asserted(ohri.rst_shift, |
| 1372 | oh->clkdm->pwrdm.ptr->prcm_partition, |
| 1373 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 1374 | oh->prcm.omap4.rstctrl_offs); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1375 | } else { |
| 1376 | return -EINVAL; |
| 1377 | } |
| 1378 | } |
| 1379 | |
| 1380 | /** |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1381 | * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1382 | * @oh: struct omap_hwmod * |
| 1383 | * |
| 1384 | * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be |
Kevin Hilman | 12b1fdb | 2010-09-21 10:34:09 -0600 | [diff] [blame] | 1385 | * enabled for this to work. Returns -EINVAL if the hwmod cannot be |
| 1386 | * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if |
| 1387 | * the module did not reset in time, or 0 upon success. |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1388 | * |
| 1389 | * 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] | 1390 | * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1391 | * use the SYSCONFIG softreset bit to provide the status. |
| 1392 | * |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1393 | * Note that some IP like McBSP do have reset control but don't have |
| 1394 | * reset status. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1395 | */ |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1396 | static int _ocp_softreset(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1397 | { |
Rajendra Nayak | 387ca5b | 2012-03-12 04:29:58 -0600 | [diff] [blame] | 1398 | u32 v, softrst_mask; |
Paul Walmsley | 6f8b7ff | 2009-12-08 16:33:16 -0700 | [diff] [blame] | 1399 | int c = 0; |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1400 | int ret = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1401 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1402 | if (!oh->class->sysc || |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1403 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1404 | return -EINVAL; |
| 1405 | |
| 1406 | /* clocks must be on for this operation */ |
| 1407 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1408 | pr_warning("omap_hwmod: %s: reset can only be entered from " |
| 1409 | "enabled state\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1410 | return -EINVAL; |
| 1411 | } |
| 1412 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1413 | /* For some modules, all optionnal clocks need to be enabled as well */ |
| 1414 | if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET) |
| 1415 | _enable_optional_clocks(oh); |
| 1416 | |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1417 | pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1418 | |
| 1419 | v = oh->_sysc_cache; |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1420 | ret = _set_softreset(oh, &v); |
| 1421 | if (ret) |
| 1422 | goto dis_opt_clks; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1423 | _write_sysconfig(v, oh); |
| 1424 | |
Fernando Guzman Lugo | d99de7f | 2012-04-13 05:08:03 -0600 | [diff] [blame^] | 1425 | if (oh->class->sysc->srst_udelay) |
| 1426 | udelay(oh->class->sysc->srst_udelay); |
| 1427 | |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1428 | if (oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS) |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1429 | omap_test_timeout((omap_hwmod_read(oh, |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1430 | oh->class->sysc->syss_offs) |
| 1431 | & SYSS_RESETDONE_MASK), |
| 1432 | MAX_MODULE_SOFTRESET_WAIT, c); |
Rajendra Nayak | 387ca5b | 2012-03-12 04:29:58 -0600 | [diff] [blame] | 1433 | else if (oh->class->sysc->sysc_flags & SYSC_HAS_RESET_STATUS) { |
| 1434 | softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift); |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1435 | omap_test_timeout(!(omap_hwmod_read(oh, |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1436 | oh->class->sysc->sysc_offs) |
Rajendra Nayak | 387ca5b | 2012-03-12 04:29:58 -0600 | [diff] [blame] | 1437 | & softrst_mask), |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1438 | MAX_MODULE_SOFTRESET_WAIT, c); |
Rajendra Nayak | 387ca5b | 2012-03-12 04:29:58 -0600 | [diff] [blame] | 1439 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1440 | |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1441 | if (c == MAX_MODULE_SOFTRESET_WAIT) |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1442 | pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n", |
| 1443 | oh->name, MAX_MODULE_SOFTRESET_WAIT); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1444 | else |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1445 | pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1446 | |
| 1447 | /* |
| 1448 | * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from |
| 1449 | * _wait_target_ready() or _reset() |
| 1450 | */ |
| 1451 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1452 | ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0; |
| 1453 | |
| 1454 | dis_opt_clks: |
| 1455 | if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET) |
| 1456 | _disable_optional_clocks(oh); |
| 1457 | |
| 1458 | return ret; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1459 | } |
| 1460 | |
| 1461 | /** |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1462 | * _reset - reset an omap_hwmod |
| 1463 | * @oh: struct omap_hwmod * |
| 1464 | * |
| 1465 | * Resets an omap_hwmod @oh. The default software reset mechanism for |
| 1466 | * most OMAP IP blocks is triggered via the OCP_SYSCONFIG.SOFTRESET |
| 1467 | * bit. However, some hwmods cannot be reset via this method: some |
| 1468 | * are not targets and therefore have no OCP header registers to |
| 1469 | * access; others (like the IVA) have idiosyncratic reset sequences. |
| 1470 | * So for these relatively rare cases, custom reset code can be |
| 1471 | * supplied in the struct omap_hwmod_class .reset function pointer. |
| 1472 | * Passes along the return value from either _reset() or the custom |
| 1473 | * reset function - these must return -EINVAL if the hwmod cannot be |
| 1474 | * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if |
| 1475 | * the module did not reset in time, or 0 upon success. |
| 1476 | */ |
| 1477 | static int _reset(struct omap_hwmod *oh) |
| 1478 | { |
| 1479 | int ret; |
| 1480 | |
| 1481 | pr_debug("omap_hwmod: %s: resetting\n", oh->name); |
| 1482 | |
| 1483 | ret = (oh->class->reset) ? oh->class->reset(oh) : _ocp_softreset(oh); |
| 1484 | |
Rajendra Nayak | 2800852 | 2012-03-13 22:55:23 +0530 | [diff] [blame] | 1485 | if (oh->class->sysc) { |
| 1486 | _update_sysc_cache(oh); |
| 1487 | _enable_sysc(oh); |
| 1488 | } |
| 1489 | |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1490 | return ret; |
| 1491 | } |
| 1492 | |
| 1493 | /** |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1494 | * _enable - enable an omap_hwmod |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1495 | * @oh: struct omap_hwmod * |
| 1496 | * |
| 1497 | * 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] | 1498 | * register target. Returns -EINVAL if the hwmod is in the wrong |
| 1499 | * state or passes along the return value of _wait_target_ready(). |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1500 | */ |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1501 | static int _enable(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1502 | { |
| 1503 | int r; |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1504 | int hwsup = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1505 | |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1506 | pr_debug("omap_hwmod: %s: enabling\n", oh->name); |
| 1507 | |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 1508 | /* |
| 1509 | * hwmods with HWMOD_INIT_NO_IDLE flag set are left |
| 1510 | * in enabled state at init. |
| 1511 | * Now that someone is really trying to enable them, |
| 1512 | * just ensure that the hwmod mux is set. |
| 1513 | */ |
| 1514 | if (oh->_int_flags & _HWMOD_SKIP_ENABLE) { |
| 1515 | /* |
| 1516 | * If the caller has mux data populated, do the mux'ing |
| 1517 | * which wouldn't have been done as part of the _enable() |
| 1518 | * done during setup. |
| 1519 | */ |
| 1520 | if (oh->mux) |
| 1521 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED); |
| 1522 | |
| 1523 | oh->_int_flags &= ~_HWMOD_SKIP_ENABLE; |
| 1524 | return 0; |
| 1525 | } |
| 1526 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1527 | if (oh->_state != _HWMOD_STATE_INITIALIZED && |
| 1528 | oh->_state != _HWMOD_STATE_IDLE && |
| 1529 | oh->_state != _HWMOD_STATE_DISABLED) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 1530 | WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n", |
| 1531 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1532 | return -EINVAL; |
| 1533 | } |
| 1534 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1535 | |
Benoit Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 1536 | /* |
| 1537 | * If an IP contains only one HW reset line, then de-assert it in order |
| 1538 | * to allow the module state transition. Otherwise the PRCM will return |
| 1539 | * Intransition status, and the init will failed. |
| 1540 | */ |
| 1541 | if ((oh->_state == _HWMOD_STATE_INITIALIZED || |
| 1542 | oh->_state == _HWMOD_STATE_DISABLED) && oh->rst_lines_cnt == 1) |
| 1543 | _deassert_hardreset(oh, oh->rst_lines[0].name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1544 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1545 | /* Mux pins for device runtime if populated */ |
| 1546 | if (oh->mux && (!oh->mux->enabled || |
| 1547 | ((oh->_state == _HWMOD_STATE_IDLE) && |
| 1548 | oh->mux->pads_dynamic))) |
| 1549 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1550 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1551 | _add_initiator_dep(oh, mpu_oh); |
| 1552 | |
| 1553 | if (oh->clkdm) { |
| 1554 | /* |
| 1555 | * A clockdomain must be in SW_SUP before enabling |
| 1556 | * completely the module. The clockdomain can be set |
| 1557 | * in HW_AUTO only when the module become ready. |
| 1558 | */ |
| 1559 | hwsup = clkdm_in_hwsup(oh->clkdm); |
| 1560 | r = clkdm_hwmod_enable(oh->clkdm, oh); |
| 1561 | if (r) { |
| 1562 | WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n", |
| 1563 | oh->name, oh->clkdm->name, r); |
| 1564 | return r; |
| 1565 | } |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1566 | } |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1567 | |
| 1568 | _enable_clocks(oh); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1569 | _enable_module(oh); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1570 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1571 | r = _wait_target_ready(oh); |
| 1572 | if (!r) { |
| 1573 | /* |
| 1574 | * Set the clockdomain to HW_AUTO only if the target is ready, |
| 1575 | * assuming that the previous state was HW_AUTO |
| 1576 | */ |
| 1577 | if (oh->clkdm && hwsup) |
| 1578 | clkdm_allow_idle(oh->clkdm); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1579 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1580 | oh->_state = _HWMOD_STATE_ENABLED; |
| 1581 | |
| 1582 | /* Access the sysconfig only if the target is ready */ |
| 1583 | if (oh->class->sysc) { |
| 1584 | if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED)) |
| 1585 | _update_sysc_cache(oh); |
| 1586 | _enable_sysc(oh); |
| 1587 | } |
| 1588 | } else { |
| 1589 | _disable_clocks(oh); |
| 1590 | pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n", |
| 1591 | oh->name, r); |
| 1592 | |
| 1593 | if (oh->clkdm) |
| 1594 | clkdm_hwmod_disable(oh->clkdm, oh); |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 1595 | } |
| 1596 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1597 | return r; |
| 1598 | } |
| 1599 | |
| 1600 | /** |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1601 | * _idle - idle an omap_hwmod |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1602 | * @oh: struct omap_hwmod * |
| 1603 | * |
| 1604 | * 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] | 1605 | * no further work. Returns -EINVAL if the hwmod is in the wrong |
| 1606 | * state or returns 0. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1607 | */ |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1608 | static int _idle(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1609 | { |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1610 | pr_debug("omap_hwmod: %s: idling\n", oh->name); |
| 1611 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1612 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 1613 | WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n", |
| 1614 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1615 | return -EINVAL; |
| 1616 | } |
| 1617 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1618 | if (oh->class->sysc) |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1619 | _idle_sysc(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1620 | _del_initiator_dep(oh, mpu_oh); |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 1621 | |
| 1622 | _omap4_disable_module(oh); |
| 1623 | |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1624 | /* |
| 1625 | * The module must be in idle mode before disabling any parents |
| 1626 | * clocks. Otherwise, the parent clock might be disabled before |
| 1627 | * the module transition is done, and thus will prevent the |
| 1628 | * transition to complete properly. |
| 1629 | */ |
| 1630 | _disable_clocks(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1631 | if (oh->clkdm) |
| 1632 | clkdm_hwmod_disable(oh->clkdm, oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1633 | |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 1634 | /* Mux pins for device idle if populated */ |
Tony Lindgren | 029268e | 2011-03-11 11:32:25 -0800 | [diff] [blame] | 1635 | if (oh->mux && oh->mux->pads_dynamic) |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 1636 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE); |
| 1637 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1638 | oh->_state = _HWMOD_STATE_IDLE; |
| 1639 | |
| 1640 | return 0; |
| 1641 | } |
| 1642 | |
| 1643 | /** |
Kishon Vijay Abraham I | 9599217 | 2011-03-10 03:50:08 -0700 | [diff] [blame] | 1644 | * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit |
| 1645 | * @oh: struct omap_hwmod * |
| 1646 | * @autoidle: desired AUTOIDLE bitfield value (0 or 1) |
| 1647 | * |
| 1648 | * Sets the IP block's OCP autoidle bit in hardware, and updates our |
| 1649 | * local copy. Intended to be used by drivers that require |
| 1650 | * direct manipulation of the AUTOIDLE bits. |
| 1651 | * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes |
| 1652 | * along the return value from _set_module_autoidle(). |
| 1653 | * |
| 1654 | * Any users of this function should be scrutinized carefully. |
| 1655 | */ |
| 1656 | int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle) |
| 1657 | { |
| 1658 | u32 v; |
| 1659 | int retval = 0; |
| 1660 | unsigned long flags; |
| 1661 | |
| 1662 | if (!oh || oh->_state != _HWMOD_STATE_ENABLED) |
| 1663 | return -EINVAL; |
| 1664 | |
| 1665 | spin_lock_irqsave(&oh->_lock, flags); |
| 1666 | |
| 1667 | v = oh->_sysc_cache; |
| 1668 | |
| 1669 | retval = _set_module_autoidle(oh, autoidle, &v); |
| 1670 | |
| 1671 | if (!retval) |
| 1672 | _write_sysconfig(v, oh); |
| 1673 | |
| 1674 | spin_unlock_irqrestore(&oh->_lock, flags); |
| 1675 | |
| 1676 | return retval; |
| 1677 | } |
| 1678 | |
| 1679 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1680 | * _shutdown - shutdown an omap_hwmod |
| 1681 | * @oh: struct omap_hwmod * |
| 1682 | * |
| 1683 | * Shut down an omap_hwmod @oh. This should be called when the driver |
| 1684 | * used for the hwmod is removed or unloaded or if the driver is not |
| 1685 | * used by the system. Returns -EINVAL if the hwmod is in the wrong |
| 1686 | * state or returns 0. |
| 1687 | */ |
| 1688 | static int _shutdown(struct omap_hwmod *oh) |
| 1689 | { |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 1690 | int ret; |
| 1691 | u8 prev_state; |
| 1692 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1693 | if (oh->_state != _HWMOD_STATE_IDLE && |
| 1694 | oh->_state != _HWMOD_STATE_ENABLED) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 1695 | WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n", |
| 1696 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1697 | return -EINVAL; |
| 1698 | } |
| 1699 | |
| 1700 | pr_debug("omap_hwmod: %s: disabling\n", oh->name); |
| 1701 | |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 1702 | if (oh->class->pre_shutdown) { |
| 1703 | prev_state = oh->_state; |
| 1704 | if (oh->_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1705 | _enable(oh); |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 1706 | ret = oh->class->pre_shutdown(oh); |
| 1707 | if (ret) { |
| 1708 | if (prev_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1709 | _idle(oh); |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 1710 | return ret; |
| 1711 | } |
| 1712 | } |
| 1713 | |
Miguel Vadillo | 6481c73 | 2011-07-01 22:54:02 +0200 | [diff] [blame] | 1714 | if (oh->class->sysc) { |
| 1715 | if (oh->_state == _HWMOD_STATE_IDLE) |
| 1716 | _enable(oh); |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1717 | _shutdown_sysc(oh); |
Miguel Vadillo | 6481c73 | 2011-07-01 22:54:02 +0200 | [diff] [blame] | 1718 | } |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1719 | |
Benoit Cousson | 3827f94 | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 1720 | /* clocks and deps are already disabled in idle */ |
| 1721 | if (oh->_state == _HWMOD_STATE_ENABLED) { |
| 1722 | _del_initiator_dep(oh, mpu_oh); |
| 1723 | /* XXX what about the other system initiators here? dma, dsp */ |
Benoit Cousson | bfc141e | 2011-12-16 16:09:11 -0800 | [diff] [blame] | 1724 | _omap4_disable_module(oh); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1725 | _disable_clocks(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1726 | if (oh->clkdm) |
| 1727 | clkdm_hwmod_disable(oh->clkdm, oh); |
Benoit Cousson | 3827f94 | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 1728 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1729 | /* XXX Should this code also force-disable the optional clocks? */ |
| 1730 | |
Benoit Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 1731 | /* |
| 1732 | * If an IP contains only one HW reset line, then assert it |
| 1733 | * after disabling the clocks and before shutting down the IP. |
| 1734 | */ |
| 1735 | if (oh->rst_lines_cnt == 1) |
| 1736 | _assert_hardreset(oh, oh->rst_lines[0].name); |
| 1737 | |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 1738 | /* Mux pins to safe mode or use populated off mode values */ |
| 1739 | if (oh->mux) |
| 1740 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1741 | |
| 1742 | oh->_state = _HWMOD_STATE_DISABLED; |
| 1743 | |
| 1744 | return 0; |
| 1745 | } |
| 1746 | |
| 1747 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1748 | * _setup - do initial configuration of omap_hwmod |
| 1749 | * @oh: struct omap_hwmod * |
| 1750 | * |
| 1751 | * Writes the CLOCKACTIVITY bits @clockact to the hwmod @oh |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1752 | * OCP_SYSCONFIG register. Returns 0. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1753 | */ |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1754 | static int _setup(struct omap_hwmod *oh, void *data) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1755 | { |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 1756 | int i, r; |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1757 | u8 postsetup_state; |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1758 | |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1759 | if (oh->_state != _HWMOD_STATE_CLKS_INITED) |
| 1760 | return 0; |
| 1761 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1762 | /* Set iclk autoidle mode */ |
| 1763 | if (oh->slaves_cnt > 0) { |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1764 | for (i = 0; i < oh->slaves_cnt; i++) { |
| 1765 | struct omap_hwmod_ocp_if *os = oh->slaves[i]; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1766 | struct clk *c = os->_clk; |
| 1767 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1768 | if (!c) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1769 | continue; |
| 1770 | |
| 1771 | if (os->flags & OCPIF_SWSUP_IDLE) { |
| 1772 | /* XXX omap_iclk_deny_idle(c); */ |
| 1773 | } else { |
| 1774 | /* XXX omap_iclk_allow_idle(c); */ |
| 1775 | clk_enable(c); |
| 1776 | } |
| 1777 | } |
| 1778 | } |
| 1779 | |
| 1780 | oh->_state = _HWMOD_STATE_INITIALIZED; |
| 1781 | |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1782 | /* |
| 1783 | * In the case of hwmod with hardreset that should not be |
| 1784 | * de-assert at boot time, we have to keep the module |
| 1785 | * initialized, because we cannot enable it properly with the |
| 1786 | * reset asserted. Exit without warning because that behavior is |
| 1787 | * expected. |
| 1788 | */ |
| 1789 | if ((oh->flags & HWMOD_INIT_NO_RESET) && oh->rst_lines_cnt == 1) |
| 1790 | return 0; |
| 1791 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1792 | r = _enable(oh); |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 1793 | if (r) { |
| 1794 | pr_warning("omap_hwmod: %s: cannot be enabled (%d)\n", |
| 1795 | oh->name, oh->_state); |
| 1796 | return 0; |
| 1797 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1798 | |
Rajendra Nayak | 2800852 | 2012-03-13 22:55:23 +0530 | [diff] [blame] | 1799 | if (!(oh->flags & HWMOD_INIT_NO_RESET)) |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1800 | _reset(oh); |
| 1801 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1802 | postsetup_state = oh->_postsetup_state; |
| 1803 | if (postsetup_state == _HWMOD_STATE_UNKNOWN) |
| 1804 | postsetup_state = _HWMOD_STATE_ENABLED; |
| 1805 | |
| 1806 | /* |
| 1807 | * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data - |
| 1808 | * it should be set by the core code as a runtime flag during startup |
| 1809 | */ |
| 1810 | if ((oh->flags & HWMOD_INIT_NO_IDLE) && |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 1811 | (postsetup_state == _HWMOD_STATE_IDLE)) { |
| 1812 | oh->_int_flags |= _HWMOD_SKIP_ENABLE; |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1813 | postsetup_state = _HWMOD_STATE_ENABLED; |
Rajendra Nayak | aacf094 | 2011-12-16 05:50:12 -0700 | [diff] [blame] | 1814 | } |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1815 | |
| 1816 | if (postsetup_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1817 | _idle(oh); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1818 | else if (postsetup_state == _HWMOD_STATE_DISABLED) |
| 1819 | _shutdown(oh); |
| 1820 | else if (postsetup_state != _HWMOD_STATE_ENABLED) |
| 1821 | WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n", |
| 1822 | oh->name, postsetup_state); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1823 | |
| 1824 | return 0; |
| 1825 | } |
| 1826 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1827 | /** |
| 1828 | * _register - register a struct omap_hwmod |
| 1829 | * @oh: struct omap_hwmod * |
| 1830 | * |
| 1831 | * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod |
| 1832 | * already has been registered by the same name; -EINVAL if the |
| 1833 | * omap_hwmod is in the wrong state, if @oh is NULL, if the |
| 1834 | * omap_hwmod's class field is NULL; if the omap_hwmod is missing a |
| 1835 | * name, or if the omap_hwmod's class is missing a name; or 0 upon |
| 1836 | * success. |
| 1837 | * |
| 1838 | * XXX The data should be copied into bootmem, so the original data |
| 1839 | * should be marked __initdata and freed after init. This would allow |
| 1840 | * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note |
| 1841 | * that the copy process would be relatively complex due to the large number |
| 1842 | * of substructures. |
| 1843 | */ |
Benoit Cousson | 01592df | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 1844 | static int __init _register(struct omap_hwmod *oh) |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1845 | { |
Paul Walmsley | 569edd70 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 1846 | int ms_id; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1847 | |
| 1848 | if (!oh || !oh->name || !oh->class || !oh->class->name || |
| 1849 | (oh->_state != _HWMOD_STATE_UNKNOWN)) |
| 1850 | return -EINVAL; |
| 1851 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1852 | pr_debug("omap_hwmod: %s: registering\n", oh->name); |
| 1853 | |
Benoit Cousson | ce35b24 | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 1854 | if (_lookup(oh->name)) |
| 1855 | return -EEXIST; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1856 | |
| 1857 | ms_id = _find_mpu_port_index(oh); |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 1858 | if (!IS_ERR_VALUE(ms_id)) |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1859 | oh->_mpu_port_index = ms_id; |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 1860 | else |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1861 | oh->_int_flags |= _HWMOD_NO_MPU_PORT; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1862 | |
| 1863 | list_add_tail(&oh->node, &omap_hwmod_list); |
| 1864 | |
| 1865 | spin_lock_init(&oh->_lock); |
| 1866 | |
| 1867 | oh->_state = _HWMOD_STATE_REGISTERED; |
| 1868 | |
Paul Walmsley | 569edd70 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 1869 | /* |
| 1870 | * XXX Rather than doing a strcmp(), this should test a flag |
| 1871 | * set in the hwmod data, inserted by the autogenerator code. |
| 1872 | */ |
| 1873 | if (!strcmp(oh->name, MPU_INITIATOR_NAME)) |
| 1874 | mpu_oh = oh; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1875 | |
Paul Walmsley | 569edd70 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 1876 | return 0; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1877 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1878 | |
| 1879 | |
| 1880 | /* Public functions */ |
| 1881 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1882 | u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1883 | { |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1884 | if (oh->flags & HWMOD_16BIT_REG) |
| 1885 | return __raw_readw(oh->_mpu_rt_va + reg_offs); |
| 1886 | else |
| 1887 | return __raw_readl(oh->_mpu_rt_va + reg_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1888 | } |
| 1889 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1890 | 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] | 1891 | { |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1892 | if (oh->flags & HWMOD_16BIT_REG) |
| 1893 | __raw_writew(v, oh->_mpu_rt_va + reg_offs); |
| 1894 | else |
| 1895 | __raw_writel(v, oh->_mpu_rt_va + reg_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1896 | } |
| 1897 | |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 1898 | /** |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 1899 | * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit |
| 1900 | * @oh: struct omap_hwmod * |
| 1901 | * |
| 1902 | * This is a public function exposed to drivers. Some drivers may need to do |
| 1903 | * some settings before and after resetting the device. Those drivers after |
| 1904 | * doing the necessary settings could use this function to start a reset by |
| 1905 | * setting the SYSCONFIG.SOFTRESET bit. |
| 1906 | */ |
| 1907 | int omap_hwmod_softreset(struct omap_hwmod *oh) |
| 1908 | { |
Rajendra Nayak | f9a2f9c | 2012-03-13 22:55:24 +0530 | [diff] [blame] | 1909 | if (!oh) |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 1910 | return -EINVAL; |
| 1911 | |
Rajendra Nayak | f9a2f9c | 2012-03-13 22:55:24 +0530 | [diff] [blame] | 1912 | return _ocp_softreset(oh); |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 1913 | } |
| 1914 | |
| 1915 | /** |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 1916 | * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode |
| 1917 | * @oh: struct omap_hwmod * |
| 1918 | * @idlemode: SIDLEMODE field bits (shifted to bit 0) |
| 1919 | * |
| 1920 | * Sets the IP block's OCP slave idlemode in hardware, and updates our |
| 1921 | * local copy. Intended to be used by drivers that have some erratum |
| 1922 | * that requires direct manipulation of the SIDLEMODE bits. Returns |
| 1923 | * -EINVAL if @oh is null, or passes along the return value from |
| 1924 | * _set_slave_idlemode(). |
| 1925 | * |
| 1926 | * XXX Does this function have any current users? If not, we should |
| 1927 | * remove it; it is better to let the rest of the hwmod code handle this. |
| 1928 | * Any users of this function should be scrutinized carefully. |
| 1929 | */ |
Kevin Hilman | 46273e6 | 2010-01-26 20:13:03 -0700 | [diff] [blame] | 1930 | int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode) |
| 1931 | { |
| 1932 | u32 v; |
| 1933 | int retval = 0; |
| 1934 | |
| 1935 | if (!oh) |
| 1936 | return -EINVAL; |
| 1937 | |
| 1938 | v = oh->_sysc_cache; |
| 1939 | |
| 1940 | retval = _set_slave_idlemode(oh, idlemode, &v); |
| 1941 | if (!retval) |
| 1942 | _write_sysconfig(v, oh); |
| 1943 | |
| 1944 | return retval; |
| 1945 | } |
| 1946 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1947 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1948 | * omap_hwmod_lookup - look up a registered omap_hwmod by name |
| 1949 | * @name: name of the omap_hwmod to look up |
| 1950 | * |
| 1951 | * Given a @name of an omap_hwmod, return a pointer to the registered |
| 1952 | * struct omap_hwmod *, or NULL upon error. |
| 1953 | */ |
| 1954 | struct omap_hwmod *omap_hwmod_lookup(const char *name) |
| 1955 | { |
| 1956 | struct omap_hwmod *oh; |
| 1957 | |
| 1958 | if (!name) |
| 1959 | return NULL; |
| 1960 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1961 | oh = _lookup(name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1962 | |
| 1963 | return oh; |
| 1964 | } |
| 1965 | |
| 1966 | /** |
| 1967 | * omap_hwmod_for_each - call function for each registered omap_hwmod |
| 1968 | * @fn: pointer to a callback function |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1969 | * @data: void * data to pass to callback function |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1970 | * |
| 1971 | * Call @fn for each registered omap_hwmod, passing @data to each |
| 1972 | * function. @fn must return 0 for success or any other value for |
| 1973 | * failure. If @fn returns non-zero, the iteration across omap_hwmods |
| 1974 | * will stop and the non-zero return value will be passed to the |
| 1975 | * caller of omap_hwmod_for_each(). @fn is called with |
| 1976 | * omap_hwmod_for_each() held. |
| 1977 | */ |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1978 | int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data), |
| 1979 | void *data) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1980 | { |
| 1981 | struct omap_hwmod *temp_oh; |
Govindraj.R | 30ebad9 | 2011-06-01 11:28:56 +0530 | [diff] [blame] | 1982 | int ret = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1983 | |
| 1984 | if (!fn) |
| 1985 | return -EINVAL; |
| 1986 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1987 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1988 | ret = (*fn)(temp_oh, data); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1989 | if (ret) |
| 1990 | break; |
| 1991 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1992 | |
| 1993 | return ret; |
| 1994 | } |
| 1995 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1996 | /** |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 1997 | * omap_hwmod_register - register an array of hwmods |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1998 | * @ohs: pointer to an array of omap_hwmods to register |
| 1999 | * |
| 2000 | * Intended to be called early in boot before the clock framework is |
| 2001 | * initialized. If @ohs is not null, will register all omap_hwmods |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2002 | * listed in @ohs that are valid for this chip. Returns 0. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2003 | */ |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2004 | int __init omap_hwmod_register(struct omap_hwmod **ohs) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2005 | { |
Paul Walmsley | bac1a0f | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2006 | int r, i; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2007 | |
| 2008 | if (!ohs) |
| 2009 | return 0; |
| 2010 | |
Paul Walmsley | bac1a0f | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2011 | i = 0; |
| 2012 | do { |
Paul Walmsley | bac1a0f | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2013 | r = _register(ohs[i]); |
| 2014 | WARN(r, "omap_hwmod: %s: _register returned %d\n", ohs[i]->name, |
| 2015 | r); |
| 2016 | } while (ohs[++i]); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2017 | |
| 2018 | return 0; |
| 2019 | } |
| 2020 | |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2021 | /* |
| 2022 | * _populate_mpu_rt_base - populate the virtual address for a hwmod |
| 2023 | * |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2024 | * Must be called only from omap_hwmod_setup_*() so ioremap works properly. |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2025 | * Assumes the caller takes care of locking if needed. |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2026 | */ |
| 2027 | static int __init _populate_mpu_rt_base(struct omap_hwmod *oh, void *data) |
| 2028 | { |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2029 | if (oh->_state != _HWMOD_STATE_REGISTERED) |
| 2030 | return 0; |
| 2031 | |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2032 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 2033 | return 0; |
| 2034 | |
| 2035 | oh->_mpu_rt_va = _find_mpu_rt_base(oh, oh->_mpu_port_index); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2036 | |
| 2037 | return 0; |
| 2038 | } |
| 2039 | |
| 2040 | /** |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2041 | * omap_hwmod_setup_one - set up a single hwmod |
| 2042 | * @oh_name: const char * name of the already-registered hwmod to set up |
| 2043 | * |
| 2044 | * Must be called after omap2_clk_init(). Resolves the struct clk |
| 2045 | * names to struct clk pointers for each registered omap_hwmod. Also |
| 2046 | * calls _setup() on each hwmod. Returns -EINVAL upon error or 0 upon |
| 2047 | * success. |
| 2048 | */ |
| 2049 | int __init omap_hwmod_setup_one(const char *oh_name) |
| 2050 | { |
| 2051 | struct omap_hwmod *oh; |
| 2052 | int r; |
| 2053 | |
| 2054 | pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__); |
| 2055 | |
| 2056 | if (!mpu_oh) { |
| 2057 | pr_err("omap_hwmod: %s: cannot setup_one: MPU initiator hwmod %s not yet registered\n", |
| 2058 | oh_name, MPU_INITIATOR_NAME); |
| 2059 | return -EINVAL; |
| 2060 | } |
| 2061 | |
| 2062 | oh = _lookup(oh_name); |
| 2063 | if (!oh) { |
| 2064 | WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name); |
| 2065 | return -EINVAL; |
| 2066 | } |
| 2067 | |
| 2068 | if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh) |
| 2069 | omap_hwmod_setup_one(MPU_INITIATOR_NAME); |
| 2070 | |
| 2071 | r = _populate_mpu_rt_base(oh, NULL); |
| 2072 | if (IS_ERR_VALUE(r)) { |
| 2073 | WARN(1, "omap_hwmod: %s: couldn't set mpu_rt_base\n", oh_name); |
| 2074 | return -EINVAL; |
| 2075 | } |
| 2076 | |
| 2077 | r = _init_clocks(oh, NULL); |
| 2078 | if (IS_ERR_VALUE(r)) { |
| 2079 | WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh_name); |
| 2080 | return -EINVAL; |
| 2081 | } |
| 2082 | |
| 2083 | _setup(oh, NULL); |
| 2084 | |
| 2085 | return 0; |
| 2086 | } |
| 2087 | |
| 2088 | /** |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2089 | * omap_hwmod_setup - do some post-clock framework initialization |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2090 | * |
| 2091 | * Must be called after omap2_clk_init(). Resolves the struct clk names |
| 2092 | * to struct clk pointers for each registered omap_hwmod. Also calls |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2093 | * _setup() on each hwmod. Returns 0 upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2094 | */ |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2095 | static int __init omap_hwmod_setup_all(void) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2096 | { |
| 2097 | int r; |
| 2098 | |
Paul Walmsley | 569edd70 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2099 | if (!mpu_oh) { |
| 2100 | pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n", |
| 2101 | __func__, MPU_INITIATOR_NAME); |
| 2102 | return -EINVAL; |
| 2103 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2104 | |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2105 | r = omap_hwmod_for_each(_populate_mpu_rt_base, NULL); |
| 2106 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2107 | r = omap_hwmod_for_each(_init_clocks, NULL); |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2108 | WARN(IS_ERR_VALUE(r), |
| 2109 | "omap_hwmod: %s: _init_clocks failed\n", __func__); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2110 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2111 | omap_hwmod_for_each(_setup, NULL); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2112 | |
| 2113 | return 0; |
| 2114 | } |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2115 | core_initcall(omap_hwmod_setup_all); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2116 | |
| 2117 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2118 | * omap_hwmod_enable - enable an omap_hwmod |
| 2119 | * @oh: struct omap_hwmod * |
| 2120 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2121 | * 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] | 2122 | * Returns -EINVAL on error or passes along the return value from _enable(). |
| 2123 | */ |
| 2124 | int omap_hwmod_enable(struct omap_hwmod *oh) |
| 2125 | { |
| 2126 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2127 | unsigned long flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2128 | |
| 2129 | if (!oh) |
| 2130 | return -EINVAL; |
| 2131 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2132 | spin_lock_irqsave(&oh->_lock, flags); |
| 2133 | r = _enable(oh); |
| 2134 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2135 | |
| 2136 | return r; |
| 2137 | } |
| 2138 | |
| 2139 | /** |
| 2140 | * omap_hwmod_idle - idle an omap_hwmod |
| 2141 | * @oh: struct omap_hwmod * |
| 2142 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2143 | * 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] | 2144 | * Returns -EINVAL on error or passes along the return value from _idle(). |
| 2145 | */ |
| 2146 | int omap_hwmod_idle(struct omap_hwmod *oh) |
| 2147 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2148 | unsigned long flags; |
| 2149 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2150 | if (!oh) |
| 2151 | return -EINVAL; |
| 2152 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2153 | spin_lock_irqsave(&oh->_lock, flags); |
| 2154 | _idle(oh); |
| 2155 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2156 | |
| 2157 | return 0; |
| 2158 | } |
| 2159 | |
| 2160 | /** |
| 2161 | * omap_hwmod_shutdown - shutdown an omap_hwmod |
| 2162 | * @oh: struct omap_hwmod * |
| 2163 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2164 | * Shutdown an omap_hwmod @oh. Intended to be called by |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2165 | * omap_device_shutdown(). Returns -EINVAL on error or passes along |
| 2166 | * the return value from _shutdown(). |
| 2167 | */ |
| 2168 | int omap_hwmod_shutdown(struct omap_hwmod *oh) |
| 2169 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2170 | unsigned long flags; |
| 2171 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2172 | if (!oh) |
| 2173 | return -EINVAL; |
| 2174 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2175 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2176 | _shutdown(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2177 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2178 | |
| 2179 | return 0; |
| 2180 | } |
| 2181 | |
| 2182 | /** |
| 2183 | * omap_hwmod_enable_clocks - enable main_clk, all interface clocks |
| 2184 | * @oh: struct omap_hwmod *oh |
| 2185 | * |
| 2186 | * Intended to be called by the omap_device code. |
| 2187 | */ |
| 2188 | int omap_hwmod_enable_clocks(struct omap_hwmod *oh) |
| 2189 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2190 | unsigned long flags; |
| 2191 | |
| 2192 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2193 | _enable_clocks(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2194 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2195 | |
| 2196 | return 0; |
| 2197 | } |
| 2198 | |
| 2199 | /** |
| 2200 | * omap_hwmod_disable_clocks - disable main_clk, all interface clocks |
| 2201 | * @oh: struct omap_hwmod *oh |
| 2202 | * |
| 2203 | * Intended to be called by the omap_device code. |
| 2204 | */ |
| 2205 | int omap_hwmod_disable_clocks(struct omap_hwmod *oh) |
| 2206 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2207 | unsigned long flags; |
| 2208 | |
| 2209 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2210 | _disable_clocks(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2211 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2212 | |
| 2213 | return 0; |
| 2214 | } |
| 2215 | |
| 2216 | /** |
| 2217 | * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete |
| 2218 | * @oh: struct omap_hwmod *oh |
| 2219 | * |
| 2220 | * Intended to be called by drivers and core code when all posted |
| 2221 | * writes to a device must complete before continuing further |
| 2222 | * execution (for example, after clearing some device IRQSTATUS |
| 2223 | * register bits) |
| 2224 | * |
| 2225 | * XXX what about targets with multiple OCP threads? |
| 2226 | */ |
| 2227 | void omap_hwmod_ocp_barrier(struct omap_hwmod *oh) |
| 2228 | { |
| 2229 | BUG_ON(!oh); |
| 2230 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2231 | if (!oh->class->sysc || !oh->class->sysc->sysc_flags) { |
Russell King | 4f8a428 | 2012-02-07 10:59:37 +0000 | [diff] [blame] | 2232 | WARN(1, "omap_device: %s: OCP barrier impossible due to device configuration\n", |
| 2233 | oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2234 | return; |
| 2235 | } |
| 2236 | |
| 2237 | /* |
| 2238 | * Forces posted writes to complete on the OCP thread handling |
| 2239 | * register writes |
| 2240 | */ |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 2241 | omap_hwmod_read(oh, oh->class->sysc->sysc_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2242 | } |
| 2243 | |
| 2244 | /** |
| 2245 | * omap_hwmod_reset - reset the hwmod |
| 2246 | * @oh: struct omap_hwmod * |
| 2247 | * |
| 2248 | * Under some conditions, a driver may wish to reset the entire device. |
| 2249 | * Called from omap_device code. Returns -EINVAL on error or passes along |
Liam Girdwood | 9b57911 | 2010-09-21 10:34:09 -0600 | [diff] [blame] | 2250 | * the return value from _reset(). |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2251 | */ |
| 2252 | int omap_hwmod_reset(struct omap_hwmod *oh) |
| 2253 | { |
| 2254 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2255 | unsigned long flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2256 | |
Liam Girdwood | 9b57911 | 2010-09-21 10:34:09 -0600 | [diff] [blame] | 2257 | if (!oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2258 | return -EINVAL; |
| 2259 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2260 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2261 | r = _reset(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2262 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2263 | |
| 2264 | return r; |
| 2265 | } |
| 2266 | |
| 2267 | /** |
| 2268 | * omap_hwmod_count_resources - count number of struct resources needed by hwmod |
| 2269 | * @oh: struct omap_hwmod * |
| 2270 | * @res: pointer to the first element of an array of struct resource to fill |
| 2271 | * |
| 2272 | * Count the number of struct resource array elements necessary to |
| 2273 | * contain omap_hwmod @oh resources. Intended to be called by code |
| 2274 | * that registers omap_devices. Intended to be used to determine the |
| 2275 | * size of a dynamically-allocated struct resource array, before |
| 2276 | * calling omap_hwmod_fill_resources(). Returns the number of struct |
| 2277 | * resource array elements needed. |
| 2278 | * |
| 2279 | * XXX This code is not optimized. It could attempt to merge adjacent |
| 2280 | * resource IDs. |
| 2281 | * |
| 2282 | */ |
| 2283 | int omap_hwmod_count_resources(struct omap_hwmod *oh) |
| 2284 | { |
| 2285 | int ret, i; |
| 2286 | |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 2287 | ret = _count_mpu_irqs(oh) + _count_sdma_reqs(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2288 | |
| 2289 | for (i = 0; i < oh->slaves_cnt; i++) |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 2290 | ret += _count_ocp_if_addr_spaces(oh->slaves[i]); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2291 | |
| 2292 | return ret; |
| 2293 | } |
| 2294 | |
| 2295 | /** |
| 2296 | * omap_hwmod_fill_resources - fill struct resource array with hwmod data |
| 2297 | * @oh: struct omap_hwmod * |
| 2298 | * @res: pointer to the first element of an array of struct resource to fill |
| 2299 | * |
| 2300 | * Fill the struct resource array @res with resource data from the |
| 2301 | * omap_hwmod @oh. Intended to be called by code that registers |
| 2302 | * omap_devices. See also omap_hwmod_count_resources(). Returns the |
| 2303 | * number of array elements filled. |
| 2304 | */ |
| 2305 | int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res) |
| 2306 | { |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 2307 | int i, j, mpu_irqs_cnt, sdma_reqs_cnt; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2308 | int r = 0; |
| 2309 | |
| 2310 | /* For each IRQ, DMA, memory area, fill in array.*/ |
| 2311 | |
Paul Walmsley | 212738a | 2011-07-09 19:14:06 -0600 | [diff] [blame] | 2312 | mpu_irqs_cnt = _count_mpu_irqs(oh); |
| 2313 | for (i = 0; i < mpu_irqs_cnt; i++) { |
Paul Walmsley | 718bfd7 | 2009-12-08 16:34:16 -0700 | [diff] [blame] | 2314 | (res + r)->name = (oh->mpu_irqs + i)->name; |
| 2315 | (res + r)->start = (oh->mpu_irqs + i)->irq; |
| 2316 | (res + r)->end = (oh->mpu_irqs + i)->irq; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2317 | (res + r)->flags = IORESOURCE_IRQ; |
| 2318 | r++; |
| 2319 | } |
| 2320 | |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 2321 | sdma_reqs_cnt = _count_sdma_reqs(oh); |
| 2322 | for (i = 0; i < sdma_reqs_cnt; i++) { |
Benoit Cousson | 9ee9fff | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 2323 | (res + r)->name = (oh->sdma_reqs + i)->name; |
| 2324 | (res + r)->start = (oh->sdma_reqs + i)->dma_req; |
| 2325 | (res + r)->end = (oh->sdma_reqs + i)->dma_req; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2326 | (res + r)->flags = IORESOURCE_DMA; |
| 2327 | r++; |
| 2328 | } |
| 2329 | |
| 2330 | for (i = 0; i < oh->slaves_cnt; i++) { |
| 2331 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 2332 | int addr_cnt; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2333 | |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 2334 | os = oh->slaves[i]; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 2335 | addr_cnt = _count_ocp_if_addr_spaces(os); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2336 | |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 2337 | for (j = 0; j < addr_cnt; j++) { |
Kishon Vijay Abraham I | cd50380 | 2011-02-24 12:51:45 -0800 | [diff] [blame] | 2338 | (res + r)->name = (os->addr + j)->name; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2339 | (res + r)->start = (os->addr + j)->pa_start; |
| 2340 | (res + r)->end = (os->addr + j)->pa_end; |
| 2341 | (res + r)->flags = IORESOURCE_MEM; |
| 2342 | r++; |
| 2343 | } |
| 2344 | } |
| 2345 | |
| 2346 | return r; |
| 2347 | } |
| 2348 | |
| 2349 | /** |
| 2350 | * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain |
| 2351 | * @oh: struct omap_hwmod * |
| 2352 | * |
| 2353 | * Return the powerdomain pointer associated with the OMAP module |
| 2354 | * @oh's main clock. If @oh does not have a main clk, return the |
| 2355 | * powerdomain associated with the interface clock associated with the |
| 2356 | * module's MPU port. (XXX Perhaps this should use the SDMA port |
| 2357 | * instead?) Returns NULL on error, or a struct powerdomain * on |
| 2358 | * success. |
| 2359 | */ |
| 2360 | struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh) |
| 2361 | { |
| 2362 | struct clk *c; |
| 2363 | |
| 2364 | if (!oh) |
| 2365 | return NULL; |
| 2366 | |
| 2367 | if (oh->_clk) { |
| 2368 | c = oh->_clk; |
| 2369 | } else { |
| 2370 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 2371 | return NULL; |
| 2372 | c = oh->slaves[oh->_mpu_port_index]->_clk; |
| 2373 | } |
| 2374 | |
Thara Gopinath | d5647c1 | 2010-03-31 04:16:29 -0600 | [diff] [blame] | 2375 | if (!c->clkdm) |
| 2376 | return NULL; |
| 2377 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2378 | return c->clkdm->pwrdm.ptr; |
| 2379 | |
| 2380 | } |
| 2381 | |
| 2382 | /** |
Paul Walmsley | db2a60b | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 2383 | * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU) |
| 2384 | * @oh: struct omap_hwmod * |
| 2385 | * |
| 2386 | * Returns the virtual address corresponding to the beginning of the |
| 2387 | * module's register target, in the address range that is intended to |
| 2388 | * be used by the MPU. Returns the virtual address upon success or NULL |
| 2389 | * upon error. |
| 2390 | */ |
| 2391 | void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh) |
| 2392 | { |
| 2393 | if (!oh) |
| 2394 | return NULL; |
| 2395 | |
| 2396 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 2397 | return NULL; |
| 2398 | |
| 2399 | if (oh->_state == _HWMOD_STATE_UNKNOWN) |
| 2400 | return NULL; |
| 2401 | |
| 2402 | return oh->_mpu_rt_va; |
| 2403 | } |
| 2404 | |
| 2405 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2406 | * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh |
| 2407 | * @oh: struct omap_hwmod * |
| 2408 | * @init_oh: struct omap_hwmod * (initiator) |
| 2409 | * |
| 2410 | * Add a sleep dependency between the initiator @init_oh and @oh. |
| 2411 | * Intended to be called by DSP/Bridge code via platform_data for the |
| 2412 | * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge |
| 2413 | * code needs to add/del initiator dependencies dynamically |
| 2414 | * before/after accessing a device. Returns the return value from |
| 2415 | * _add_initiator_dep(). |
| 2416 | * |
| 2417 | * XXX Keep a usecount in the clockdomain code |
| 2418 | */ |
| 2419 | int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh, |
| 2420 | struct omap_hwmod *init_oh) |
| 2421 | { |
| 2422 | return _add_initiator_dep(oh, init_oh); |
| 2423 | } |
| 2424 | |
| 2425 | /* |
| 2426 | * XXX what about functions for drivers to save/restore ocp_sysconfig |
| 2427 | * for context save/restore operations? |
| 2428 | */ |
| 2429 | |
| 2430 | /** |
| 2431 | * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh |
| 2432 | * @oh: struct omap_hwmod * |
| 2433 | * @init_oh: struct omap_hwmod * (initiator) |
| 2434 | * |
| 2435 | * Remove a sleep dependency between the initiator @init_oh and @oh. |
| 2436 | * Intended to be called by DSP/Bridge code via platform_data for the |
| 2437 | * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge |
| 2438 | * code needs to add/del initiator dependencies dynamically |
| 2439 | * before/after accessing a device. Returns the return value from |
| 2440 | * _del_initiator_dep(). |
| 2441 | * |
| 2442 | * XXX Keep a usecount in the clockdomain code |
| 2443 | */ |
| 2444 | int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh, |
| 2445 | struct omap_hwmod *init_oh) |
| 2446 | { |
| 2447 | return _del_initiator_dep(oh, init_oh); |
| 2448 | } |
| 2449 | |
| 2450 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2451 | * omap_hwmod_enable_wakeup - allow device to wake up the system |
| 2452 | * @oh: struct omap_hwmod * |
| 2453 | * |
| 2454 | * Sets the module OCP socket ENAWAKEUP bit to allow the module to |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 2455 | * send wakeups to the PRCM, and enable I/O ring wakeup events for |
| 2456 | * this IP block if it has dynamic mux entries. Eventually this |
| 2457 | * should set PRCM wakeup registers to cause the PRCM to receive |
| 2458 | * wakeup events from the module. Does not set any wakeup routing |
| 2459 | * registers beyond this point - if the module is to wake up any other |
| 2460 | * module or subsystem, that must be set separately. Called by |
| 2461 | * omap_device code. Returns -EINVAL on error or 0 upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2462 | */ |
| 2463 | int omap_hwmod_enable_wakeup(struct omap_hwmod *oh) |
| 2464 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2465 | unsigned long flags; |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 2466 | u32 v; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2467 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2468 | spin_lock_irqsave(&oh->_lock, flags); |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 2469 | |
| 2470 | if (oh->class->sysc && |
| 2471 | (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) { |
| 2472 | v = oh->_sysc_cache; |
| 2473 | _enable_wakeup(oh, &v); |
| 2474 | _write_sysconfig(v, oh); |
| 2475 | } |
| 2476 | |
Govindraj R | eceec00 | 2011-12-16 14:36:58 -0700 | [diff] [blame] | 2477 | _set_idle_ioring_wakeup(oh, true); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2478 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2479 | |
| 2480 | return 0; |
| 2481 | } |
| 2482 | |
| 2483 | /** |
| 2484 | * omap_hwmod_disable_wakeup - prevent device from waking the system |
| 2485 | * @oh: struct omap_hwmod * |
| 2486 | * |
| 2487 | * Clears the module OCP socket ENAWAKEUP bit to prevent the module |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 2488 | * from sending wakeups to the PRCM, and disable I/O ring wakeup |
| 2489 | * events for this IP block if it has dynamic mux entries. Eventually |
| 2490 | * this should clear PRCM wakeup registers to cause the PRCM to ignore |
| 2491 | * wakeup events from the module. Does not set any wakeup routing |
| 2492 | * registers beyond this point - if the module is to wake up any other |
| 2493 | * module or subsystem, that must be set separately. Called by |
| 2494 | * omap_device code. Returns -EINVAL on error or 0 upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2495 | */ |
| 2496 | int omap_hwmod_disable_wakeup(struct omap_hwmod *oh) |
| 2497 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2498 | unsigned long flags; |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 2499 | u32 v; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2500 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2501 | spin_lock_irqsave(&oh->_lock, flags); |
Govindraj.R | 2a1cc14 | 2012-04-05 02:59:32 -0600 | [diff] [blame] | 2502 | |
| 2503 | if (oh->class->sysc && |
| 2504 | (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) { |
| 2505 | v = oh->_sysc_cache; |
| 2506 | _disable_wakeup(oh, &v); |
| 2507 | _write_sysconfig(v, oh); |
| 2508 | } |
| 2509 | |
Govindraj R | eceec00 | 2011-12-16 14:36:58 -0700 | [diff] [blame] | 2510 | _set_idle_ioring_wakeup(oh, false); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2511 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2512 | |
| 2513 | return 0; |
| 2514 | } |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2515 | |
| 2516 | /** |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2517 | * omap_hwmod_assert_hardreset - assert the HW reset line of submodules |
| 2518 | * contained in the hwmod module. |
| 2519 | * @oh: struct omap_hwmod * |
| 2520 | * @name: name of the reset line to lookup and assert |
| 2521 | * |
| 2522 | * Some IP like dsp, ipu or iva contain processor that require |
| 2523 | * an HW reset line to be assert / deassert in order to enable fully |
| 2524 | * the IP. Returns -EINVAL if @oh is null or if the operation is not |
| 2525 | * yet supported on this OMAP; otherwise, passes along the return value |
| 2526 | * from _assert_hardreset(). |
| 2527 | */ |
| 2528 | int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name) |
| 2529 | { |
| 2530 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2531 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2532 | |
| 2533 | if (!oh) |
| 2534 | return -EINVAL; |
| 2535 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2536 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2537 | ret = _assert_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2538 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2539 | |
| 2540 | return ret; |
| 2541 | } |
| 2542 | |
| 2543 | /** |
| 2544 | * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules |
| 2545 | * contained in the hwmod module. |
| 2546 | * @oh: struct omap_hwmod * |
| 2547 | * @name: name of the reset line to look up and deassert |
| 2548 | * |
| 2549 | * Some IP like dsp, ipu or iva contain processor that require |
| 2550 | * an HW reset line to be assert / deassert in order to enable fully |
| 2551 | * the IP. Returns -EINVAL if @oh is null or if the operation is not |
| 2552 | * yet supported on this OMAP; otherwise, passes along the return value |
| 2553 | * from _deassert_hardreset(). |
| 2554 | */ |
| 2555 | int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name) |
| 2556 | { |
| 2557 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2558 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2559 | |
| 2560 | if (!oh) |
| 2561 | return -EINVAL; |
| 2562 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2563 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2564 | ret = _deassert_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2565 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2566 | |
| 2567 | return ret; |
| 2568 | } |
| 2569 | |
| 2570 | /** |
| 2571 | * omap_hwmod_read_hardreset - read the HW reset line state of submodules |
| 2572 | * contained in the hwmod module |
| 2573 | * @oh: struct omap_hwmod * |
| 2574 | * @name: name of the reset line to look up and read |
| 2575 | * |
| 2576 | * Return the current state of the hwmod @oh's reset line named @name: |
| 2577 | * returns -EINVAL upon parameter error or if this operation |
| 2578 | * is unsupported on the current OMAP; otherwise, passes along the return |
| 2579 | * value from _read_hardreset(). |
| 2580 | */ |
| 2581 | int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name) |
| 2582 | { |
| 2583 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2584 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2585 | |
| 2586 | if (!oh) |
| 2587 | return -EINVAL; |
| 2588 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2589 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2590 | ret = _read_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2591 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2592 | |
| 2593 | return ret; |
| 2594 | } |
| 2595 | |
| 2596 | |
| 2597 | /** |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2598 | * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname |
| 2599 | * @classname: struct omap_hwmod_class name to search for |
| 2600 | * @fn: callback function pointer to call for each hwmod in class @classname |
| 2601 | * @user: arbitrary context data to pass to the callback function |
| 2602 | * |
Benoit Cousson | ce35b24 | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 2603 | * For each omap_hwmod of class @classname, call @fn. |
| 2604 | * If the callback function returns something other than |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2605 | * zero, the iterator is terminated, and the callback function's return |
| 2606 | * value is passed back to the caller. Returns 0 upon success, -EINVAL |
| 2607 | * if @classname or @fn are NULL, or passes back the error code from @fn. |
| 2608 | */ |
| 2609 | int omap_hwmod_for_each_by_class(const char *classname, |
| 2610 | int (*fn)(struct omap_hwmod *oh, |
| 2611 | void *user), |
| 2612 | void *user) |
| 2613 | { |
| 2614 | struct omap_hwmod *temp_oh; |
| 2615 | int ret = 0; |
| 2616 | |
| 2617 | if (!classname || !fn) |
| 2618 | return -EINVAL; |
| 2619 | |
| 2620 | pr_debug("omap_hwmod: %s: looking for modules of class %s\n", |
| 2621 | __func__, classname); |
| 2622 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2623 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
| 2624 | if (!strcmp(temp_oh->class->name, classname)) { |
| 2625 | pr_debug("omap_hwmod: %s: %s: calling callback fn\n", |
| 2626 | __func__, temp_oh->name); |
| 2627 | ret = (*fn)(temp_oh, user); |
| 2628 | if (ret) |
| 2629 | break; |
| 2630 | } |
| 2631 | } |
| 2632 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2633 | if (ret) |
| 2634 | pr_debug("omap_hwmod: %s: iterator terminated early: %d\n", |
| 2635 | __func__, ret); |
| 2636 | |
| 2637 | return ret; |
| 2638 | } |
| 2639 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2640 | /** |
| 2641 | * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod |
| 2642 | * @oh: struct omap_hwmod * |
| 2643 | * @state: state that _setup() should leave the hwmod in |
| 2644 | * |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2645 | * Sets the hwmod state that @oh will enter at the end of _setup() |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2646 | * (called by omap_hwmod_setup_*()). Only valid to call between |
| 2647 | * calling omap_hwmod_register() and omap_hwmod_setup_*(). Returns |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2648 | * 0 upon success or -EINVAL if there is a problem with the arguments |
| 2649 | * or if the hwmod is in the wrong state. |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2650 | */ |
| 2651 | int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state) |
| 2652 | { |
| 2653 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2654 | unsigned long flags; |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2655 | |
| 2656 | if (!oh) |
| 2657 | return -EINVAL; |
| 2658 | |
| 2659 | if (state != _HWMOD_STATE_DISABLED && |
| 2660 | state != _HWMOD_STATE_ENABLED && |
| 2661 | state != _HWMOD_STATE_IDLE) |
| 2662 | return -EINVAL; |
| 2663 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2664 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2665 | |
| 2666 | if (oh->_state != _HWMOD_STATE_REGISTERED) { |
| 2667 | ret = -EINVAL; |
| 2668 | goto ohsps_unlock; |
| 2669 | } |
| 2670 | |
| 2671 | oh->_postsetup_state = state; |
| 2672 | ret = 0; |
| 2673 | |
| 2674 | ohsps_unlock: |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2675 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2676 | |
| 2677 | return ret; |
| 2678 | } |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 2679 | |
| 2680 | /** |
| 2681 | * omap_hwmod_get_context_loss_count - get lost context count |
| 2682 | * @oh: struct omap_hwmod * |
| 2683 | * |
| 2684 | * Query the powerdomain of of @oh to get the context loss |
| 2685 | * count for this device. |
| 2686 | * |
| 2687 | * Returns the context loss count of the powerdomain assocated with @oh |
| 2688 | * upon success, or zero if no powerdomain exists for @oh. |
| 2689 | */ |
Tomi Valkeinen | fc01387 | 2011-06-09 16:56:23 +0300 | [diff] [blame] | 2690 | int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh) |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 2691 | { |
| 2692 | struct powerdomain *pwrdm; |
| 2693 | int ret = 0; |
| 2694 | |
| 2695 | pwrdm = omap_hwmod_get_pwrdm(oh); |
| 2696 | if (pwrdm) |
| 2697 | ret = pwrdm_get_context_loss_count(pwrdm); |
| 2698 | |
| 2699 | return ret; |
| 2700 | } |
Paul Walmsley | 43b0164 | 2011-03-10 03:50:07 -0700 | [diff] [blame] | 2701 | |
| 2702 | /** |
| 2703 | * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup |
| 2704 | * @oh: struct omap_hwmod * |
| 2705 | * |
| 2706 | * Prevent the hwmod @oh from being reset during the setup process. |
| 2707 | * Intended for use by board-*.c files on boards with devices that |
| 2708 | * cannot tolerate being reset. Must be called before the hwmod has |
| 2709 | * been set up. Returns 0 upon success or negative error code upon |
| 2710 | * failure. |
| 2711 | */ |
| 2712 | int omap_hwmod_no_setup_reset(struct omap_hwmod *oh) |
| 2713 | { |
| 2714 | if (!oh) |
| 2715 | return -EINVAL; |
| 2716 | |
| 2717 | if (oh->_state != _HWMOD_STATE_REGISTERED) { |
| 2718 | pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n", |
| 2719 | oh->name); |
| 2720 | return -EINVAL; |
| 2721 | } |
| 2722 | |
| 2723 | oh->flags |= HWMOD_INIT_NO_RESET; |
| 2724 | |
| 2725 | return 0; |
| 2726 | } |
Tero Kristo | abc2d54 | 2011-12-16 14:36:59 -0700 | [diff] [blame] | 2727 | |
| 2728 | /** |
| 2729 | * omap_hwmod_pad_route_irq - route an I/O pad wakeup to a particular MPU IRQ |
| 2730 | * @oh: struct omap_hwmod * containing hwmod mux entries |
| 2731 | * @pad_idx: array index in oh->mux of the hwmod mux entry to route wakeup |
| 2732 | * @irq_idx: the hwmod mpu_irqs array index of the IRQ to trigger on wakeup |
| 2733 | * |
| 2734 | * When an I/O pad wakeup arrives for the dynamic or wakeup hwmod mux |
| 2735 | * entry number @pad_idx for the hwmod @oh, trigger the interrupt |
| 2736 | * service routine for the hwmod's mpu_irqs array index @irq_idx. If |
| 2737 | * this function is not called for a given pad_idx, then the ISR |
| 2738 | * associated with @oh's first MPU IRQ will be triggered when an I/O |
| 2739 | * pad wakeup occurs on that pad. Note that @pad_idx is the index of |
| 2740 | * the _dynamic or wakeup_ entry: if there are other entries not |
| 2741 | * marked with OMAP_DEVICE_PAD_WAKEUP or OMAP_DEVICE_PAD_REMUX, these |
| 2742 | * entries are NOT COUNTED in the dynamic pad index. This function |
| 2743 | * must be called separately for each pad that requires its interrupt |
| 2744 | * to be re-routed this way. Returns -EINVAL if there is an argument |
| 2745 | * problem or if @oh does not have hwmod mux entries or MPU IRQs; |
| 2746 | * returns -ENOMEM if memory cannot be allocated; or 0 upon success. |
| 2747 | * |
| 2748 | * XXX This function interface is fragile. Rather than using array |
| 2749 | * indexes, which are subject to unpredictable change, it should be |
| 2750 | * using hwmod IRQ names, and some other stable key for the hwmod mux |
| 2751 | * pad records. |
| 2752 | */ |
| 2753 | int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx) |
| 2754 | { |
| 2755 | int nr_irqs; |
| 2756 | |
| 2757 | might_sleep(); |
| 2758 | |
| 2759 | if (!oh || !oh->mux || !oh->mpu_irqs || pad_idx < 0 || |
| 2760 | pad_idx >= oh->mux->nr_pads_dynamic) |
| 2761 | return -EINVAL; |
| 2762 | |
| 2763 | /* Check the number of available mpu_irqs */ |
| 2764 | for (nr_irqs = 0; oh->mpu_irqs[nr_irqs].irq >= 0; nr_irqs++) |
| 2765 | ; |
| 2766 | |
| 2767 | if (irq_idx >= nr_irqs) |
| 2768 | return -EINVAL; |
| 2769 | |
| 2770 | if (!oh->mux->irqs) { |
| 2771 | /* XXX What frees this? */ |
| 2772 | oh->mux->irqs = kzalloc(sizeof(int) * oh->mux->nr_pads_dynamic, |
| 2773 | GFP_KERNEL); |
| 2774 | if (!oh->mux->irqs) |
| 2775 | return -ENOMEM; |
| 2776 | } |
| 2777 | oh->mux->irqs[pad_idx] = irq_idx; |
| 2778 | |
| 2779 | return 0; |
| 2780 | } |