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 | |
Paul Walmsley | 6f8b7ff | 2009-12-08 16:33:16 -0700 | [diff] [blame] | 141 | #include <plat/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 | /** |
| 755 | * _disable_module - enable CLKCTRL modulemode on OMAP4 |
| 756 | * @oh: struct omap_hwmod * |
| 757 | * |
| 758 | * Disable the PRCM module mode related to the hwmod @oh. |
| 759 | * No return value. |
| 760 | */ |
| 761 | static void _disable_module(struct omap_hwmod *oh) |
| 762 | { |
| 763 | /* The module mode does not exist prior OMAP4 */ |
| 764 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) |
| 765 | return; |
| 766 | |
| 767 | if (!oh->clkdm || !oh->prcm.omap4.modulemode) |
| 768 | return; |
| 769 | |
| 770 | pr_debug("omap_hwmod: %s: _disable_module\n", oh->name); |
| 771 | |
| 772 | omap4_cminst_module_disable(oh->clkdm->prcm_partition, |
| 773 | oh->clkdm->cm_inst, |
| 774 | oh->clkdm->clkdm_offs, |
| 775 | oh->prcm.omap4.clkctrl_offs); |
| 776 | } |
| 777 | |
| 778 | /** |
Paul Walmsley | 212738a | 2011-07-09 19:14:06 -0600 | [diff] [blame] | 779 | * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh |
| 780 | * @oh: struct omap_hwmod *oh |
| 781 | * |
| 782 | * Count and return the number of MPU IRQs associated with the hwmod |
| 783 | * @oh. Used to allocate struct resource data. Returns 0 if @oh is |
| 784 | * NULL. |
| 785 | */ |
| 786 | static int _count_mpu_irqs(struct omap_hwmod *oh) |
| 787 | { |
| 788 | struct omap_hwmod_irq_info *ohii; |
| 789 | int i = 0; |
| 790 | |
| 791 | if (!oh || !oh->mpu_irqs) |
| 792 | return 0; |
| 793 | |
| 794 | do { |
| 795 | ohii = &oh->mpu_irqs[i++]; |
| 796 | } while (ohii->irq != -1); |
| 797 | |
sricharan | cc1b076 | 2011-11-23 14:35:07 -0800 | [diff] [blame] | 798 | return i-1; |
Paul Walmsley | 212738a | 2011-07-09 19:14:06 -0600 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | /** |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 802 | * _count_sdma_reqs - count the number of SDMA request lines associated with @oh |
| 803 | * @oh: struct omap_hwmod *oh |
| 804 | * |
| 805 | * Count and return the number of SDMA request lines associated with |
| 806 | * the hwmod @oh. Used to allocate struct resource data. Returns 0 |
| 807 | * if @oh is NULL. |
| 808 | */ |
| 809 | static int _count_sdma_reqs(struct omap_hwmod *oh) |
| 810 | { |
| 811 | struct omap_hwmod_dma_info *ohdi; |
| 812 | int i = 0; |
| 813 | |
| 814 | if (!oh || !oh->sdma_reqs) |
| 815 | return 0; |
| 816 | |
| 817 | do { |
| 818 | ohdi = &oh->sdma_reqs[i++]; |
| 819 | } while (ohdi->dma_req != -1); |
| 820 | |
sricharan | cc1b076 | 2011-11-23 14:35:07 -0800 | [diff] [blame] | 821 | return i-1; |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | /** |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 825 | * _count_ocp_if_addr_spaces - count the number of address space entries for @oh |
| 826 | * @oh: struct omap_hwmod *oh |
| 827 | * |
| 828 | * Count and return the number of address space ranges associated with |
| 829 | * the hwmod @oh. Used to allocate struct resource data. Returns 0 |
| 830 | * if @oh is NULL. |
| 831 | */ |
| 832 | static int _count_ocp_if_addr_spaces(struct omap_hwmod_ocp_if *os) |
| 833 | { |
| 834 | struct omap_hwmod_addr_space *mem; |
| 835 | int i = 0; |
| 836 | |
| 837 | if (!os || !os->addr) |
| 838 | return 0; |
| 839 | |
| 840 | do { |
| 841 | mem = &os->addr[i++]; |
| 842 | } while (mem->pa_start != mem->pa_end); |
| 843 | |
sricharan | cc1b076 | 2011-11-23 14:35:07 -0800 | [diff] [blame] | 844 | return i-1; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 848 | * _find_mpu_port_index - find hwmod OCP slave port ID intended for MPU use |
| 849 | * @oh: struct omap_hwmod * |
| 850 | * |
| 851 | * Returns the array index of the OCP slave port that the MPU |
| 852 | * addresses the device on, or -EINVAL upon error or not found. |
| 853 | */ |
Benoit Cousson | 01592df | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 854 | static int __init _find_mpu_port_index(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 855 | { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 856 | int i; |
| 857 | int found = 0; |
| 858 | |
| 859 | if (!oh || oh->slaves_cnt == 0) |
| 860 | return -EINVAL; |
| 861 | |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 862 | for (i = 0; i < oh->slaves_cnt; i++) { |
| 863 | struct omap_hwmod_ocp_if *os = oh->slaves[i]; |
| 864 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 865 | if (os->user & OCP_USER_MPU) { |
| 866 | found = 1; |
| 867 | break; |
| 868 | } |
| 869 | } |
| 870 | |
| 871 | if (found) |
| 872 | pr_debug("omap_hwmod: %s: MPU OCP slave port ID %d\n", |
| 873 | oh->name, i); |
| 874 | else |
| 875 | pr_debug("omap_hwmod: %s: no MPU OCP slave port found\n", |
| 876 | oh->name); |
| 877 | |
| 878 | return (found) ? i : -EINVAL; |
| 879 | } |
| 880 | |
| 881 | /** |
| 882 | * _find_mpu_rt_base - find hwmod register target base addr accessible by MPU |
| 883 | * @oh: struct omap_hwmod * |
| 884 | * |
| 885 | * Return the virtual address of the base of the register target of |
| 886 | * device @oh, or NULL on error. |
| 887 | */ |
Benoit Cousson | 01592df | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 888 | 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] | 889 | { |
| 890 | struct omap_hwmod_ocp_if *os; |
| 891 | struct omap_hwmod_addr_space *mem; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 892 | int i = 0, found = 0; |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 893 | void __iomem *va_start; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 894 | |
| 895 | if (!oh || oh->slaves_cnt == 0) |
| 896 | return NULL; |
| 897 | |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 898 | os = oh->slaves[index]; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 899 | |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 900 | if (!os->addr) |
| 901 | return NULL; |
| 902 | |
| 903 | do { |
| 904 | mem = &os->addr[i++]; |
| 905 | if (mem->flags & ADDR_TYPE_RT) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 906 | found = 1; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 907 | } while (!found && mem->pa_start != mem->pa_end); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 908 | |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 909 | if (found) { |
| 910 | va_start = ioremap(mem->pa_start, mem->pa_end - mem->pa_start); |
| 911 | if (!va_start) { |
| 912 | pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name); |
| 913 | return NULL; |
| 914 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 915 | pr_debug("omap_hwmod: %s: MPU register target at va %p\n", |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 916 | oh->name, va_start); |
| 917 | } else { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 918 | pr_debug("omap_hwmod: %s: no MPU register target found\n", |
| 919 | oh->name); |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 920 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 921 | |
Tony Lindgren | 986a13f | 2009-10-19 15:25:22 -0700 | [diff] [blame] | 922 | return (found) ? va_start : NULL; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 923 | } |
| 924 | |
| 925 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 926 | * _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] | 927 | * @oh: struct omap_hwmod * |
| 928 | * |
| 929 | * If module is marked as SWSUP_SIDLE, force the module out of slave |
| 930 | * idle; otherwise, configure it for smart-idle. If module is marked |
| 931 | * as SWSUP_MSUSPEND, force the module out of master standby; |
| 932 | * otherwise, configure it for smart-standby. No return value. |
| 933 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 934 | static void _enable_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 935 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 936 | u8 idlemode, sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 937 | u32 v; |
| 938 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 939 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 940 | return; |
| 941 | |
| 942 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 943 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 944 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 945 | if (sf & SYSC_HAS_SIDLEMODE) { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 946 | idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ? |
| 947 | HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART; |
| 948 | _set_slave_idlemode(oh, idlemode, &v); |
| 949 | } |
| 950 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 951 | if (sf & SYSC_HAS_MIDLEMODE) { |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 952 | if (oh->flags & HWMOD_SWSUP_MSTANDBY) { |
| 953 | idlemode = HWMOD_IDLEMODE_NO; |
| 954 | } else { |
| 955 | if (sf & SYSC_HAS_ENAWAKEUP) |
| 956 | _enable_wakeup(oh, &v); |
| 957 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 958 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; |
| 959 | else |
| 960 | idlemode = HWMOD_IDLEMODE_SMART; |
| 961 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 962 | _set_master_standbymode(oh, idlemode, &v); |
| 963 | } |
| 964 | |
Paul Walmsley | a16b1f7 | 2009-12-08 16:34:17 -0700 | [diff] [blame] | 965 | /* |
| 966 | * XXX The clock framework should handle this, by |
| 967 | * calling into this code. But this must wait until the |
| 968 | * clock structures are tagged with omap_hwmod entries |
| 969 | */ |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 970 | if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) && |
| 971 | (sf & SYSC_HAS_CLOCKACTIVITY)) |
| 972 | _set_clockactivity(oh, oh->class->sysc->clockact, &v); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 973 | |
Rajendra Nayak | 9980ce5 | 2010-09-21 19:58:30 +0530 | [diff] [blame] | 974 | /* If slave is in SMARTIDLE, also enable wakeup */ |
| 975 | if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE)) |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 976 | _enable_wakeup(oh, &v); |
| 977 | |
| 978 | _write_sysconfig(v, oh); |
Hema HK | 78f26e8 | 2010-09-24 10:23:19 -0600 | [diff] [blame] | 979 | |
| 980 | /* |
| 981 | * Set the autoidle bit only after setting the smartidle bit |
| 982 | * Setting this will not have any impact on the other modules. |
| 983 | */ |
| 984 | if (sf & SYSC_HAS_AUTOIDLE) { |
| 985 | idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ? |
| 986 | 0 : 1; |
| 987 | _set_module_autoidle(oh, idlemode, &v); |
| 988 | _write_sysconfig(v, oh); |
| 989 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 993 | * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 994 | * @oh: struct omap_hwmod * |
| 995 | * |
| 996 | * If module is marked as SWSUP_SIDLE, force the module into slave |
| 997 | * idle; otherwise, configure it for smart-idle. If module is marked |
| 998 | * as SWSUP_MSUSPEND, force the module into master standby; otherwise, |
| 999 | * configure it for smart-standby. No return value. |
| 1000 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1001 | static void _idle_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1002 | { |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1003 | u8 idlemode, sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1004 | u32 v; |
| 1005 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1006 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1007 | return; |
| 1008 | |
| 1009 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1010 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1011 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1012 | if (sf & SYSC_HAS_SIDLEMODE) { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1013 | idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ? |
| 1014 | HWMOD_IDLEMODE_FORCE : HWMOD_IDLEMODE_SMART; |
| 1015 | _set_slave_idlemode(oh, idlemode, &v); |
| 1016 | } |
| 1017 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1018 | if (sf & SYSC_HAS_MIDLEMODE) { |
Benoit Cousson | 724019b | 2011-07-01 22:54:00 +0200 | [diff] [blame] | 1019 | if (oh->flags & HWMOD_SWSUP_MSTANDBY) { |
| 1020 | idlemode = HWMOD_IDLEMODE_FORCE; |
| 1021 | } else { |
| 1022 | if (sf & SYSC_HAS_ENAWAKEUP) |
| 1023 | _enable_wakeup(oh, &v); |
| 1024 | if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP) |
| 1025 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; |
| 1026 | else |
| 1027 | idlemode = HWMOD_IDLEMODE_SMART; |
| 1028 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1029 | _set_master_standbymode(oh, idlemode, &v); |
| 1030 | } |
| 1031 | |
Benoit Cousson | 86009eb | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 1032 | /* If slave is in SMARTIDLE, also enable wakeup */ |
| 1033 | if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE)) |
| 1034 | _enable_wakeup(oh, &v); |
| 1035 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1036 | _write_sysconfig(v, oh); |
| 1037 | } |
| 1038 | |
| 1039 | /** |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1040 | * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1041 | * @oh: struct omap_hwmod * |
| 1042 | * |
| 1043 | * Force the module into slave idle and master suspend. No return |
| 1044 | * value. |
| 1045 | */ |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1046 | static void _shutdown_sysc(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1047 | { |
| 1048 | u32 v; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1049 | u8 sf; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1050 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1051 | if (!oh->class->sysc) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1052 | return; |
| 1053 | |
| 1054 | v = oh->_sysc_cache; |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1055 | sf = oh->class->sysc->sysc_flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1056 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1057 | if (sf & SYSC_HAS_SIDLEMODE) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1058 | _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v); |
| 1059 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1060 | if (sf & SYSC_HAS_MIDLEMODE) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1061 | _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v); |
| 1062 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1063 | if (sf & SYSC_HAS_AUTOIDLE) |
Paul Walmsley | 726072e | 2009-12-08 16:34:15 -0700 | [diff] [blame] | 1064 | _set_module_autoidle(oh, 1, &v); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1065 | |
| 1066 | _write_sysconfig(v, oh); |
| 1067 | } |
| 1068 | |
| 1069 | /** |
| 1070 | * _lookup - find an omap_hwmod by name |
| 1071 | * @name: find an omap_hwmod by name |
| 1072 | * |
| 1073 | * 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] | 1074 | */ |
| 1075 | static struct omap_hwmod *_lookup(const char *name) |
| 1076 | { |
| 1077 | struct omap_hwmod *oh, *temp_oh; |
| 1078 | |
| 1079 | oh = NULL; |
| 1080 | |
| 1081 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
| 1082 | if (!strcmp(name, temp_oh->name)) { |
| 1083 | oh = temp_oh; |
| 1084 | break; |
| 1085 | } |
| 1086 | } |
| 1087 | |
| 1088 | return oh; |
| 1089 | } |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1090 | /** |
| 1091 | * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod |
| 1092 | * @oh: struct omap_hwmod * |
| 1093 | * |
| 1094 | * Convert a clockdomain name stored in a struct omap_hwmod into a |
| 1095 | * clockdomain pointer, and save it into the struct omap_hwmod. |
| 1096 | * return -EINVAL if clkdm_name does not exist or if the lookup failed. |
| 1097 | */ |
| 1098 | static int _init_clkdm(struct omap_hwmod *oh) |
| 1099 | { |
| 1100 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) |
| 1101 | return 0; |
| 1102 | |
| 1103 | if (!oh->clkdm_name) { |
| 1104 | pr_warning("omap_hwmod: %s: no clkdm_name\n", oh->name); |
| 1105 | return -EINVAL; |
| 1106 | } |
| 1107 | |
| 1108 | oh->clkdm = clkdm_lookup(oh->clkdm_name); |
| 1109 | if (!oh->clkdm) { |
| 1110 | pr_warning("omap_hwmod: %s: could not associate to clkdm %s\n", |
| 1111 | oh->name, oh->clkdm_name); |
| 1112 | return -EINVAL; |
| 1113 | } |
| 1114 | |
| 1115 | pr_debug("omap_hwmod: %s: associated to clkdm %s\n", |
| 1116 | oh->name, oh->clkdm_name); |
| 1117 | |
| 1118 | return 0; |
| 1119 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1120 | |
| 1121 | /** |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1122 | * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as |
| 1123 | * well the clockdomain. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1124 | * @oh: struct omap_hwmod * |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1125 | * @data: not used; pass NULL |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1126 | * |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1127 | * Called by omap_hwmod_setup_*() (after omap2_clk_init()). |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1128 | * Resolves all clock names embedded in the hwmod. Returns 0 on |
| 1129 | * success, or a negative error code on failure. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1130 | */ |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1131 | static int _init_clocks(struct omap_hwmod *oh, void *data) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1132 | { |
| 1133 | int ret = 0; |
| 1134 | |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1135 | if (oh->_state != _HWMOD_STATE_REGISTERED) |
| 1136 | return 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1137 | |
| 1138 | pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name); |
| 1139 | |
| 1140 | ret |= _init_main_clk(oh); |
| 1141 | ret |= _init_interface_clks(oh); |
| 1142 | ret |= _init_opt_clks(oh); |
Benoit Cousson | 6ae7699 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1143 | ret |= _init_clkdm(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1144 | |
Benoit Cousson | f5c1f84 | 2010-05-20 12:31:10 -0600 | [diff] [blame] | 1145 | if (!ret) |
| 1146 | oh->_state = _HWMOD_STATE_CLKS_INITED; |
Benoit Cousson | 6652271 | 2011-07-01 22:54:06 +0200 | [diff] [blame] | 1147 | else |
| 1148 | pr_warning("omap_hwmod: %s: cannot _init_clocks\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1149 | |
Rajendra Nayak | 09c35f2 | 2011-02-16 12:11:24 +0000 | [diff] [blame] | 1150 | return ret; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | /** |
| 1154 | * _wait_target_ready - wait for a module to leave slave idle |
| 1155 | * @oh: struct omap_hwmod * |
| 1156 | * |
| 1157 | * Wait for a module @oh to leave slave idle. Returns 0 if the module |
| 1158 | * does not have an IDLEST bit or if the module successfully leaves |
| 1159 | * slave idle; otherwise, pass along the return value of the |
Benoit Cousson | d0f0631 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1160 | * appropriate *_cm*_wait_module_ready() function. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1161 | */ |
| 1162 | static int _wait_target_ready(struct omap_hwmod *oh) |
| 1163 | { |
| 1164 | struct omap_hwmod_ocp_if *os; |
| 1165 | int ret; |
| 1166 | |
| 1167 | if (!oh) |
| 1168 | return -EINVAL; |
| 1169 | |
| 1170 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 1171 | return 0; |
| 1172 | |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1173 | os = oh->slaves[oh->_mpu_port_index]; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1174 | |
Benoit Cousson | 33f7ec8 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1175 | if (oh->flags & HWMOD_NO_IDLEST) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1176 | return 0; |
| 1177 | |
| 1178 | /* XXX check module SIDLEMODE */ |
| 1179 | |
| 1180 | /* XXX check clock enable states */ |
| 1181 | |
| 1182 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) { |
| 1183 | ret = omap2_cm_wait_module_ready(oh->prcm.omap2.module_offs, |
| 1184 | oh->prcm.omap2.idlest_reg_id, |
| 1185 | oh->prcm.omap2.idlest_idle_bit); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1186 | } else if (cpu_is_omap44xx()) { |
Benoit Cousson | d0f0631 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1187 | if (!oh->clkdm) |
| 1188 | return -EINVAL; |
| 1189 | |
| 1190 | ret = omap4_cminst_wait_module_ready(oh->clkdm->prcm_partition, |
| 1191 | oh->clkdm->cm_inst, |
| 1192 | oh->clkdm->clkdm_offs, |
| 1193 | oh->prcm.omap4.clkctrl_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1194 | } else { |
| 1195 | BUG(); |
| 1196 | }; |
| 1197 | |
| 1198 | return ret; |
| 1199 | } |
| 1200 | |
| 1201 | /** |
Benoit Cousson | 11b1034 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1202 | * _wait_target_disable - wait for a module to be disabled |
| 1203 | * @oh: struct omap_hwmod * |
| 1204 | * |
| 1205 | * Wait for a module @oh to enter slave idle. Returns 0 if the module |
| 1206 | * does not have an IDLEST bit or if the module successfully enters |
| 1207 | * slave idle; otherwise, pass along the return value of the |
| 1208 | * appropriate *_cm*_wait_module_idle() function. |
| 1209 | */ |
| 1210 | static int _wait_target_disable(struct omap_hwmod *oh) |
| 1211 | { |
| 1212 | /* TODO: For now just handle OMAP4+ */ |
| 1213 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) |
| 1214 | return 0; |
| 1215 | |
| 1216 | if (!oh) |
| 1217 | return -EINVAL; |
| 1218 | |
| 1219 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 1220 | return 0; |
| 1221 | |
| 1222 | if (oh->flags & HWMOD_NO_IDLEST) |
| 1223 | return 0; |
| 1224 | |
| 1225 | return omap4_cminst_wait_module_idle(oh->clkdm->prcm_partition, |
| 1226 | oh->clkdm->cm_inst, |
| 1227 | oh->clkdm->clkdm_offs, |
| 1228 | oh->prcm.omap4.clkctrl_offs); |
| 1229 | } |
| 1230 | |
| 1231 | /** |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1232 | * _lookup_hardreset - fill register bit info for this hwmod/reset line |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1233 | * @oh: struct omap_hwmod * |
| 1234 | * @name: name of the reset line in the context of this hwmod |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1235 | * @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] | 1236 | * |
| 1237 | * Return the bit position of the reset line that match the |
| 1238 | * input name. Return -ENOENT if not found. |
| 1239 | */ |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1240 | static u8 _lookup_hardreset(struct omap_hwmod *oh, const char *name, |
| 1241 | struct omap_hwmod_rst_info *ohri) |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1242 | { |
| 1243 | int i; |
| 1244 | |
| 1245 | for (i = 0; i < oh->rst_lines_cnt; i++) { |
| 1246 | const char *rst_line = oh->rst_lines[i].name; |
| 1247 | if (!strcmp(rst_line, name)) { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1248 | ohri->rst_shift = oh->rst_lines[i].rst_shift; |
| 1249 | ohri->st_shift = oh->rst_lines[i].st_shift; |
| 1250 | pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n", |
| 1251 | oh->name, __func__, rst_line, ohri->rst_shift, |
| 1252 | ohri->st_shift); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1253 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1254 | return 0; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1255 | } |
| 1256 | } |
| 1257 | |
| 1258 | return -ENOENT; |
| 1259 | } |
| 1260 | |
| 1261 | /** |
| 1262 | * _assert_hardreset - assert the HW reset line of submodules |
| 1263 | * contained in the hwmod module. |
| 1264 | * @oh: struct omap_hwmod * |
| 1265 | * @name: name of the reset line to lookup and assert |
| 1266 | * |
| 1267 | * Some IP like dsp, ipu or iva contain processor that require |
| 1268 | * an HW reset line to be assert / deassert in order to enable fully |
| 1269 | * the IP. |
| 1270 | */ |
| 1271 | static int _assert_hardreset(struct omap_hwmod *oh, const char *name) |
| 1272 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1273 | struct omap_hwmod_rst_info ohri; |
| 1274 | u8 ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1275 | |
| 1276 | if (!oh) |
| 1277 | return -EINVAL; |
| 1278 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1279 | ret = _lookup_hardreset(oh, name, &ohri); |
| 1280 | if (IS_ERR_VALUE(ret)) |
| 1281 | return ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1282 | |
| 1283 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) |
| 1284 | return omap2_prm_assert_hardreset(oh->prcm.omap2.module_offs, |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1285 | ohri.rst_shift); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1286 | else if (cpu_is_omap44xx()) |
Benoit Cousson | eaac329 | 2011-07-10 05:56:31 -0600 | [diff] [blame] | 1287 | return omap4_prminst_assert_hardreset(ohri.rst_shift, |
| 1288 | oh->clkdm->pwrdm.ptr->prcm_partition, |
| 1289 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 1290 | oh->prcm.omap4.rstctrl_offs); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1291 | else |
| 1292 | return -EINVAL; |
| 1293 | } |
| 1294 | |
| 1295 | /** |
| 1296 | * _deassert_hardreset - deassert the HW reset line of submodules contained |
| 1297 | * in the hwmod module. |
| 1298 | * @oh: struct omap_hwmod * |
| 1299 | * @name: name of the reset line to look up and deassert |
| 1300 | * |
| 1301 | * Some IP like dsp, ipu or iva contain processor that require |
| 1302 | * an HW reset line to be assert / deassert in order to enable fully |
| 1303 | * the IP. |
| 1304 | */ |
| 1305 | static int _deassert_hardreset(struct omap_hwmod *oh, const char *name) |
| 1306 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1307 | struct omap_hwmod_rst_info ohri; |
| 1308 | int ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1309 | |
| 1310 | if (!oh) |
| 1311 | return -EINVAL; |
| 1312 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1313 | ret = _lookup_hardreset(oh, name, &ohri); |
| 1314 | if (IS_ERR_VALUE(ret)) |
| 1315 | return ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1316 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1317 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) { |
| 1318 | ret = omap2_prm_deassert_hardreset(oh->prcm.omap2.module_offs, |
| 1319 | ohri.rst_shift, |
| 1320 | ohri.st_shift); |
| 1321 | } else if (cpu_is_omap44xx()) { |
| 1322 | if (ohri.st_shift) |
| 1323 | pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n", |
| 1324 | oh->name, name); |
Benoit Cousson | eaac329 | 2011-07-10 05:56:31 -0600 | [diff] [blame] | 1325 | ret = omap4_prminst_deassert_hardreset(ohri.rst_shift, |
| 1326 | oh->clkdm->pwrdm.ptr->prcm_partition, |
| 1327 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 1328 | oh->prcm.omap4.rstctrl_offs); |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1329 | } else { |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1330 | return -EINVAL; |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1331 | } |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1332 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1333 | if (ret == -EBUSY) |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1334 | pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name); |
| 1335 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1336 | return ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1337 | } |
| 1338 | |
| 1339 | /** |
| 1340 | * _read_hardreset - read the HW reset line state of submodules |
| 1341 | * contained in the hwmod module |
| 1342 | * @oh: struct omap_hwmod * |
| 1343 | * @name: name of the reset line to look up and read |
| 1344 | * |
| 1345 | * Return the state of the reset line. |
| 1346 | */ |
| 1347 | static int _read_hardreset(struct omap_hwmod *oh, const char *name) |
| 1348 | { |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1349 | struct omap_hwmod_rst_info ohri; |
| 1350 | u8 ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1351 | |
| 1352 | if (!oh) |
| 1353 | return -EINVAL; |
| 1354 | |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1355 | ret = _lookup_hardreset(oh, name, &ohri); |
| 1356 | if (IS_ERR_VALUE(ret)) |
| 1357 | return ret; |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1358 | |
| 1359 | if (cpu_is_omap24xx() || cpu_is_omap34xx()) { |
| 1360 | return omap2_prm_is_hardreset_asserted(oh->prcm.omap2.module_offs, |
omar ramirez | cc1226e | 2011-03-04 13:32:44 -0700 | [diff] [blame] | 1361 | ohri.st_shift); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1362 | } else if (cpu_is_omap44xx()) { |
Benoit Cousson | eaac329 | 2011-07-10 05:56:31 -0600 | [diff] [blame] | 1363 | return omap4_prminst_is_hardreset_asserted(ohri.rst_shift, |
| 1364 | oh->clkdm->pwrdm.ptr->prcm_partition, |
| 1365 | oh->clkdm->pwrdm.ptr->prcm_offs, |
| 1366 | oh->prcm.omap4.rstctrl_offs); |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1367 | } else { |
| 1368 | return -EINVAL; |
| 1369 | } |
| 1370 | } |
| 1371 | |
| 1372 | /** |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1373 | * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1374 | * @oh: struct omap_hwmod * |
| 1375 | * |
| 1376 | * 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] | 1377 | * enabled for this to work. Returns -EINVAL if the hwmod cannot be |
| 1378 | * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if |
| 1379 | * the module did not reset in time, or 0 upon success. |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1380 | * |
| 1381 | * 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] | 1382 | * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1383 | * use the SYSCONFIG softreset bit to provide the status. |
| 1384 | * |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1385 | * Note that some IP like McBSP do have reset control but don't have |
| 1386 | * reset status. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1387 | */ |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1388 | static int _ocp_softreset(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1389 | { |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1390 | u32 v; |
Paul Walmsley | 6f8b7ff | 2009-12-08 16:33:16 -0700 | [diff] [blame] | 1391 | int c = 0; |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1392 | int ret = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1393 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1394 | if (!oh->class->sysc || |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1395 | !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1396 | return -EINVAL; |
| 1397 | |
| 1398 | /* clocks must be on for this operation */ |
| 1399 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1400 | pr_warning("omap_hwmod: %s: reset can only be entered from " |
| 1401 | "enabled state\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1402 | return -EINVAL; |
| 1403 | } |
| 1404 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1405 | /* For some modules, all optionnal clocks need to be enabled as well */ |
| 1406 | if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET) |
| 1407 | _enable_optional_clocks(oh); |
| 1408 | |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1409 | pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1410 | |
| 1411 | v = oh->_sysc_cache; |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1412 | ret = _set_softreset(oh, &v); |
| 1413 | if (ret) |
| 1414 | goto dis_opt_clks; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1415 | _write_sysconfig(v, oh); |
| 1416 | |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1417 | if (oh->class->sysc->sysc_flags & SYSS_HAS_RESET_STATUS) |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1418 | omap_test_timeout((omap_hwmod_read(oh, |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1419 | oh->class->sysc->syss_offs) |
| 1420 | & SYSS_RESETDONE_MASK), |
| 1421 | MAX_MODULE_SOFTRESET_WAIT, c); |
| 1422 | else if (oh->class->sysc->sysc_flags & SYSC_HAS_RESET_STATUS) |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1423 | omap_test_timeout(!(omap_hwmod_read(oh, |
Benoit Cousson | 2cb0681 | 2010-09-21 18:57:59 +0200 | [diff] [blame] | 1424 | oh->class->sysc->sysc_offs) |
| 1425 | & SYSC_TYPE2_SOFTRESET_MASK), |
| 1426 | MAX_MODULE_SOFTRESET_WAIT, c); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1427 | |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1428 | if (c == MAX_MODULE_SOFTRESET_WAIT) |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1429 | pr_warning("omap_hwmod: %s: softreset failed (waited %d usec)\n", |
| 1430 | oh->name, MAX_MODULE_SOFTRESET_WAIT); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1431 | else |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1432 | 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] | 1433 | |
| 1434 | /* |
| 1435 | * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from |
| 1436 | * _wait_target_ready() or _reset() |
| 1437 | */ |
| 1438 | |
Benoit Cousson | 96835af | 2010-09-21 18:57:58 +0200 | [diff] [blame] | 1439 | ret = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0; |
| 1440 | |
| 1441 | dis_opt_clks: |
| 1442 | if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET) |
| 1443 | _disable_optional_clocks(oh); |
| 1444 | |
| 1445 | return ret; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1446 | } |
| 1447 | |
| 1448 | /** |
Paul Walmsley | bd36179 | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1449 | * _reset - reset an omap_hwmod |
| 1450 | * @oh: struct omap_hwmod * |
| 1451 | * |
| 1452 | * Resets an omap_hwmod @oh. The default software reset mechanism for |
| 1453 | * most OMAP IP blocks is triggered via the OCP_SYSCONFIG.SOFTRESET |
| 1454 | * bit. However, some hwmods cannot be reset via this method: some |
| 1455 | * are not targets and therefore have no OCP header registers to |
| 1456 | * access; others (like the IVA) have idiosyncratic reset sequences. |
| 1457 | * So for these relatively rare cases, custom reset code can be |
| 1458 | * supplied in the struct omap_hwmod_class .reset function pointer. |
| 1459 | * Passes along the return value from either _reset() or the custom |
| 1460 | * reset function - these must return -EINVAL if the hwmod cannot be |
| 1461 | * reset this way or if the hwmod is in the wrong state, -ETIMEDOUT if |
| 1462 | * the module did not reset in time, or 0 upon success. |
| 1463 | */ |
| 1464 | static int _reset(struct omap_hwmod *oh) |
| 1465 | { |
| 1466 | int ret; |
| 1467 | |
| 1468 | pr_debug("omap_hwmod: %s: resetting\n", oh->name); |
| 1469 | |
| 1470 | ret = (oh->class->reset) ? oh->class->reset(oh) : _ocp_softreset(oh); |
| 1471 | |
| 1472 | return ret; |
| 1473 | } |
| 1474 | |
| 1475 | /** |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1476 | * _enable - enable an omap_hwmod |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1477 | * @oh: struct omap_hwmod * |
| 1478 | * |
| 1479 | * 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] | 1480 | * register target. Returns -EINVAL if the hwmod is in the wrong |
| 1481 | * state or passes along the return value of _wait_target_ready(). |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1482 | */ |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1483 | static int _enable(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1484 | { |
| 1485 | int r; |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1486 | int hwsup = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1487 | |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1488 | pr_debug("omap_hwmod: %s: enabling\n", oh->name); |
| 1489 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1490 | if (oh->_state != _HWMOD_STATE_INITIALIZED && |
| 1491 | oh->_state != _HWMOD_STATE_IDLE && |
| 1492 | oh->_state != _HWMOD_STATE_DISABLED) { |
| 1493 | WARN(1, "omap_hwmod: %s: enabled state can only be entered " |
| 1494 | "from initialized, idle, or disabled state\n", oh->name); |
| 1495 | return -EINVAL; |
| 1496 | } |
| 1497 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1498 | |
Benoit Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 1499 | /* |
| 1500 | * If an IP contains only one HW reset line, then de-assert it in order |
| 1501 | * to allow the module state transition. Otherwise the PRCM will return |
| 1502 | * Intransition status, and the init will failed. |
| 1503 | */ |
| 1504 | if ((oh->_state == _HWMOD_STATE_INITIALIZED || |
| 1505 | oh->_state == _HWMOD_STATE_DISABLED) && oh->rst_lines_cnt == 1) |
| 1506 | _deassert_hardreset(oh, oh->rst_lines[0].name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1507 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1508 | /* Mux pins for device runtime if populated */ |
| 1509 | if (oh->mux && (!oh->mux->enabled || |
| 1510 | ((oh->_state == _HWMOD_STATE_IDLE) && |
| 1511 | oh->mux->pads_dynamic))) |
| 1512 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_ENABLED); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1513 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1514 | _add_initiator_dep(oh, mpu_oh); |
| 1515 | |
| 1516 | if (oh->clkdm) { |
| 1517 | /* |
| 1518 | * A clockdomain must be in SW_SUP before enabling |
| 1519 | * completely the module. The clockdomain can be set |
| 1520 | * in HW_AUTO only when the module become ready. |
| 1521 | */ |
| 1522 | hwsup = clkdm_in_hwsup(oh->clkdm); |
| 1523 | r = clkdm_hwmod_enable(oh->clkdm, oh); |
| 1524 | if (r) { |
| 1525 | WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n", |
| 1526 | oh->name, oh->clkdm->name, r); |
| 1527 | return r; |
| 1528 | } |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1529 | } |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1530 | |
| 1531 | _enable_clocks(oh); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1532 | _enable_module(oh); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1533 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1534 | r = _wait_target_ready(oh); |
| 1535 | if (!r) { |
| 1536 | /* |
| 1537 | * Set the clockdomain to HW_AUTO only if the target is ready, |
| 1538 | * assuming that the previous state was HW_AUTO |
| 1539 | */ |
| 1540 | if (oh->clkdm && hwsup) |
| 1541 | clkdm_allow_idle(oh->clkdm); |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1542 | |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1543 | oh->_state = _HWMOD_STATE_ENABLED; |
| 1544 | |
| 1545 | /* Access the sysconfig only if the target is ready */ |
| 1546 | if (oh->class->sysc) { |
| 1547 | if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED)) |
| 1548 | _update_sysc_cache(oh); |
| 1549 | _enable_sysc(oh); |
| 1550 | } |
| 1551 | } else { |
| 1552 | _disable_clocks(oh); |
| 1553 | pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n", |
| 1554 | oh->name, r); |
| 1555 | |
| 1556 | if (oh->clkdm) |
| 1557 | clkdm_hwmod_disable(oh->clkdm, oh); |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 1558 | } |
| 1559 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1560 | return r; |
| 1561 | } |
| 1562 | |
| 1563 | /** |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1564 | * _idle - idle an omap_hwmod |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1565 | * @oh: struct omap_hwmod * |
| 1566 | * |
| 1567 | * 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] | 1568 | * no further work. Returns -EINVAL if the hwmod is in the wrong |
| 1569 | * state or returns 0. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1570 | */ |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1571 | static int _idle(struct omap_hwmod *oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1572 | { |
Benoit Cousson | 11b1034 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1573 | int ret; |
| 1574 | |
Benoit Cousson | 34617e2 | 2011-07-01 22:54:07 +0200 | [diff] [blame] | 1575 | pr_debug("omap_hwmod: %s: idling\n", oh->name); |
| 1576 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1577 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
| 1578 | WARN(1, "omap_hwmod: %s: idle state can only be entered from " |
| 1579 | "enabled state\n", oh->name); |
| 1580 | return -EINVAL; |
| 1581 | } |
| 1582 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1583 | if (oh->class->sysc) |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1584 | _idle_sysc(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1585 | _del_initiator_dep(oh, mpu_oh); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1586 | _disable_module(oh); |
Benoit Cousson | 11b1034 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1587 | ret = _wait_target_disable(oh); |
| 1588 | if (ret) |
| 1589 | pr_warn("omap_hwmod: %s: _wait_target_disable failed\n", |
| 1590 | oh->name); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1591 | /* |
| 1592 | * The module must be in idle mode before disabling any parents |
| 1593 | * clocks. Otherwise, the parent clock might be disabled before |
| 1594 | * the module transition is done, and thus will prevent the |
| 1595 | * transition to complete properly. |
| 1596 | */ |
| 1597 | _disable_clocks(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1598 | if (oh->clkdm) |
| 1599 | clkdm_hwmod_disable(oh->clkdm, oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1600 | |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 1601 | /* Mux pins for device idle if populated */ |
Tony Lindgren | 029268e | 2011-03-11 11:32:25 -0800 | [diff] [blame] | 1602 | if (oh->mux && oh->mux->pads_dynamic) |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 1603 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_IDLE); |
| 1604 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1605 | oh->_state = _HWMOD_STATE_IDLE; |
| 1606 | |
| 1607 | return 0; |
| 1608 | } |
| 1609 | |
| 1610 | /** |
Kishon Vijay Abraham I | 9599217 | 2011-03-10 03:50:08 -0700 | [diff] [blame] | 1611 | * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit |
| 1612 | * @oh: struct omap_hwmod * |
| 1613 | * @autoidle: desired AUTOIDLE bitfield value (0 or 1) |
| 1614 | * |
| 1615 | * Sets the IP block's OCP autoidle bit in hardware, and updates our |
| 1616 | * local copy. Intended to be used by drivers that require |
| 1617 | * direct manipulation of the AUTOIDLE bits. |
| 1618 | * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes |
| 1619 | * along the return value from _set_module_autoidle(). |
| 1620 | * |
| 1621 | * Any users of this function should be scrutinized carefully. |
| 1622 | */ |
| 1623 | int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle) |
| 1624 | { |
| 1625 | u32 v; |
| 1626 | int retval = 0; |
| 1627 | unsigned long flags; |
| 1628 | |
| 1629 | if (!oh || oh->_state != _HWMOD_STATE_ENABLED) |
| 1630 | return -EINVAL; |
| 1631 | |
| 1632 | spin_lock_irqsave(&oh->_lock, flags); |
| 1633 | |
| 1634 | v = oh->_sysc_cache; |
| 1635 | |
| 1636 | retval = _set_module_autoidle(oh, autoidle, &v); |
| 1637 | |
| 1638 | if (!retval) |
| 1639 | _write_sysconfig(v, oh); |
| 1640 | |
| 1641 | spin_unlock_irqrestore(&oh->_lock, flags); |
| 1642 | |
| 1643 | return retval; |
| 1644 | } |
| 1645 | |
| 1646 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1647 | * _shutdown - shutdown an omap_hwmod |
| 1648 | * @oh: struct omap_hwmod * |
| 1649 | * |
| 1650 | * Shut down an omap_hwmod @oh. This should be called when the driver |
| 1651 | * used for the hwmod is removed or unloaded or if the driver is not |
| 1652 | * used by the system. Returns -EINVAL if the hwmod is in the wrong |
| 1653 | * state or returns 0. |
| 1654 | */ |
| 1655 | static int _shutdown(struct omap_hwmod *oh) |
| 1656 | { |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 1657 | int ret; |
| 1658 | u8 prev_state; |
| 1659 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1660 | if (oh->_state != _HWMOD_STATE_IDLE && |
| 1661 | oh->_state != _HWMOD_STATE_ENABLED) { |
| 1662 | WARN(1, "omap_hwmod: %s: disabled state can only be entered " |
| 1663 | "from idle, or enabled state\n", oh->name); |
| 1664 | return -EINVAL; |
| 1665 | } |
| 1666 | |
| 1667 | pr_debug("omap_hwmod: %s: disabling\n", oh->name); |
| 1668 | |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 1669 | if (oh->class->pre_shutdown) { |
| 1670 | prev_state = oh->_state; |
| 1671 | if (oh->_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1672 | _enable(oh); |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 1673 | ret = oh->class->pre_shutdown(oh); |
| 1674 | if (ret) { |
| 1675 | if (prev_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1676 | _idle(oh); |
Paul Walmsley | e4dc8f5 | 2010-12-14 12:42:34 -0700 | [diff] [blame] | 1677 | return ret; |
| 1678 | } |
| 1679 | } |
| 1680 | |
Miguel Vadillo | 6481c73 | 2011-07-01 22:54:02 +0200 | [diff] [blame] | 1681 | if (oh->class->sysc) { |
| 1682 | if (oh->_state == _HWMOD_STATE_IDLE) |
| 1683 | _enable(oh); |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1684 | _shutdown_sysc(oh); |
Miguel Vadillo | 6481c73 | 2011-07-01 22:54:02 +0200 | [diff] [blame] | 1685 | } |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1686 | |
Benoit Cousson | 3827f94 | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 1687 | /* clocks and deps are already disabled in idle */ |
| 1688 | if (oh->_state == _HWMOD_STATE_ENABLED) { |
| 1689 | _del_initiator_dep(oh, mpu_oh); |
| 1690 | /* XXX what about the other system initiators here? dma, dsp */ |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1691 | _disable_module(oh); |
Benoit Cousson | 11b1034 | 2011-07-10 05:56:30 -0600 | [diff] [blame] | 1692 | ret = _wait_target_disable(oh); |
| 1693 | if (ret) |
| 1694 | pr_warn("omap_hwmod: %s: _wait_target_disable failed\n", |
| 1695 | oh->name); |
Benoit Cousson | 45c3825 | 2011-07-10 05:56:33 -0600 | [diff] [blame] | 1696 | _disable_clocks(oh); |
Rajendra Nayak | 665d001 | 2011-07-10 05:57:07 -0600 | [diff] [blame] | 1697 | if (oh->clkdm) |
| 1698 | clkdm_hwmod_disable(oh->clkdm, oh); |
Benoit Cousson | 3827f94 | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 1699 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1700 | /* XXX Should this code also force-disable the optional clocks? */ |
| 1701 | |
Benoit Cousson | 31f6286 | 2011-07-01 22:54:05 +0200 | [diff] [blame] | 1702 | /* |
| 1703 | * If an IP contains only one HW reset line, then assert it |
| 1704 | * after disabling the clocks and before shutting down the IP. |
| 1705 | */ |
| 1706 | if (oh->rst_lines_cnt == 1) |
| 1707 | _assert_hardreset(oh, oh->rst_lines[0].name); |
| 1708 | |
Tony Lindgren | 8d9af88 | 2010-12-22 18:42:35 -0800 | [diff] [blame] | 1709 | /* Mux pins to safe mode or use populated off mode values */ |
| 1710 | if (oh->mux) |
| 1711 | omap_hwmod_mux(oh->mux, _HWMOD_STATE_DISABLED); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1712 | |
| 1713 | oh->_state = _HWMOD_STATE_DISABLED; |
| 1714 | |
| 1715 | return 0; |
| 1716 | } |
| 1717 | |
| 1718 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1719 | * _setup - do initial configuration of omap_hwmod |
| 1720 | * @oh: struct omap_hwmod * |
| 1721 | * |
| 1722 | * Writes the CLOCKACTIVITY bits @clockact to the hwmod @oh |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1723 | * OCP_SYSCONFIG register. Returns 0. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1724 | */ |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1725 | static int _setup(struct omap_hwmod *oh, void *data) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1726 | { |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 1727 | int i, r; |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1728 | u8 postsetup_state; |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1729 | |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 1730 | if (oh->_state != _HWMOD_STATE_CLKS_INITED) |
| 1731 | return 0; |
| 1732 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1733 | /* Set iclk autoidle mode */ |
| 1734 | if (oh->slaves_cnt > 0) { |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1735 | for (i = 0; i < oh->slaves_cnt; i++) { |
| 1736 | struct omap_hwmod_ocp_if *os = oh->slaves[i]; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1737 | struct clk *c = os->_clk; |
| 1738 | |
Benoit Cousson | 4d3ae5a | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 1739 | if (!c) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1740 | continue; |
| 1741 | |
| 1742 | if (os->flags & OCPIF_SWSUP_IDLE) { |
| 1743 | /* XXX omap_iclk_deny_idle(c); */ |
| 1744 | } else { |
| 1745 | /* XXX omap_iclk_allow_idle(c); */ |
| 1746 | clk_enable(c); |
| 1747 | } |
| 1748 | } |
| 1749 | } |
| 1750 | |
| 1751 | oh->_state = _HWMOD_STATE_INITIALIZED; |
| 1752 | |
Benoît Cousson | 5365efb | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1753 | /* |
| 1754 | * In the case of hwmod with hardreset that should not be |
| 1755 | * de-assert at boot time, we have to keep the module |
| 1756 | * initialized, because we cannot enable it properly with the |
| 1757 | * reset asserted. Exit without warning because that behavior is |
| 1758 | * expected. |
| 1759 | */ |
| 1760 | if ((oh->flags & HWMOD_INIT_NO_RESET) && oh->rst_lines_cnt == 1) |
| 1761 | return 0; |
| 1762 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1763 | r = _enable(oh); |
Benoit Cousson | 9a23dfe | 2010-05-20 12:31:08 -0600 | [diff] [blame] | 1764 | if (r) { |
| 1765 | pr_warning("omap_hwmod: %s: cannot be enabled (%d)\n", |
| 1766 | oh->name, oh->_state); |
| 1767 | return 0; |
| 1768 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1769 | |
Paul Walmsley | b835d01 | 2009-12-08 16:34:14 -0700 | [diff] [blame] | 1770 | if (!(oh->flags & HWMOD_INIT_NO_RESET)) { |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1771 | _reset(oh); |
| 1772 | |
Paul Walmsley | b835d01 | 2009-12-08 16:34:14 -0700 | [diff] [blame] | 1773 | /* |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1774 | * OCP_SYSCONFIG bits need to be reprogrammed after a softreset. |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1775 | * The _enable() function should be split to |
Benoit Cousson | 76e5589 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 1776 | * avoid the rewrite of the OCP_SYSCONFIG register. |
Paul Walmsley | b835d01 | 2009-12-08 16:34:14 -0700 | [diff] [blame] | 1777 | */ |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 1778 | if (oh->class->sysc) { |
Paul Walmsley | b835d01 | 2009-12-08 16:34:14 -0700 | [diff] [blame] | 1779 | _update_sysc_cache(oh); |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 1780 | _enable_sysc(oh); |
Paul Walmsley | b835d01 | 2009-12-08 16:34:14 -0700 | [diff] [blame] | 1781 | } |
| 1782 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1783 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1784 | postsetup_state = oh->_postsetup_state; |
| 1785 | if (postsetup_state == _HWMOD_STATE_UNKNOWN) |
| 1786 | postsetup_state = _HWMOD_STATE_ENABLED; |
| 1787 | |
| 1788 | /* |
| 1789 | * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data - |
| 1790 | * it should be set by the core code as a runtime flag during startup |
| 1791 | */ |
| 1792 | if ((oh->flags & HWMOD_INIT_NO_IDLE) && |
| 1793 | (postsetup_state == _HWMOD_STATE_IDLE)) |
| 1794 | postsetup_state = _HWMOD_STATE_ENABLED; |
| 1795 | |
| 1796 | if (postsetup_state == _HWMOD_STATE_IDLE) |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1797 | _idle(oh); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 1798 | else if (postsetup_state == _HWMOD_STATE_DISABLED) |
| 1799 | _shutdown(oh); |
| 1800 | else if (postsetup_state != _HWMOD_STATE_ENABLED) |
| 1801 | WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n", |
| 1802 | oh->name, postsetup_state); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1803 | |
| 1804 | return 0; |
| 1805 | } |
| 1806 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1807 | /** |
| 1808 | * _register - register a struct omap_hwmod |
| 1809 | * @oh: struct omap_hwmod * |
| 1810 | * |
| 1811 | * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod |
| 1812 | * already has been registered by the same name; -EINVAL if the |
| 1813 | * omap_hwmod is in the wrong state, if @oh is NULL, if the |
| 1814 | * omap_hwmod's class field is NULL; if the omap_hwmod is missing a |
| 1815 | * name, or if the omap_hwmod's class is missing a name; or 0 upon |
| 1816 | * success. |
| 1817 | * |
| 1818 | * XXX The data should be copied into bootmem, so the original data |
| 1819 | * should be marked __initdata and freed after init. This would allow |
| 1820 | * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note |
| 1821 | * that the copy process would be relatively complex due to the large number |
| 1822 | * of substructures. |
| 1823 | */ |
Benoit Cousson | 01592df | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 1824 | static int __init _register(struct omap_hwmod *oh) |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1825 | { |
Paul Walmsley | 569edd7 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 1826 | int ms_id; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1827 | |
| 1828 | if (!oh || !oh->name || !oh->class || !oh->class->name || |
| 1829 | (oh->_state != _HWMOD_STATE_UNKNOWN)) |
| 1830 | return -EINVAL; |
| 1831 | |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1832 | pr_debug("omap_hwmod: %s: registering\n", oh->name); |
| 1833 | |
Benoit Cousson | ce35b24 | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 1834 | if (_lookup(oh->name)) |
| 1835 | return -EEXIST; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1836 | |
| 1837 | ms_id = _find_mpu_port_index(oh); |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 1838 | if (!IS_ERR_VALUE(ms_id)) |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1839 | oh->_mpu_port_index = ms_id; |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 1840 | else |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1841 | oh->_int_flags |= _HWMOD_NO_MPU_PORT; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1842 | |
| 1843 | list_add_tail(&oh->node, &omap_hwmod_list); |
| 1844 | |
| 1845 | spin_lock_init(&oh->_lock); |
| 1846 | |
| 1847 | oh->_state = _HWMOD_STATE_REGISTERED; |
| 1848 | |
Paul Walmsley | 569edd7 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 1849 | /* |
| 1850 | * XXX Rather than doing a strcmp(), this should test a flag |
| 1851 | * set in the hwmod data, inserted by the autogenerator code. |
| 1852 | */ |
| 1853 | if (!strcmp(oh->name, MPU_INITIATOR_NAME)) |
| 1854 | mpu_oh = oh; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1855 | |
Paul Walmsley | 569edd7 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 1856 | return 0; |
Benoit Cousson | 0102b62 | 2010-12-21 21:31:27 -0700 | [diff] [blame] | 1857 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1858 | |
| 1859 | |
| 1860 | /* Public functions */ |
| 1861 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1862 | u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1863 | { |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1864 | if (oh->flags & HWMOD_16BIT_REG) |
| 1865 | return __raw_readw(oh->_mpu_rt_va + reg_offs); |
| 1866 | else |
| 1867 | return __raw_readl(oh->_mpu_rt_va + reg_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1868 | } |
| 1869 | |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1870 | 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] | 1871 | { |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 1872 | if (oh->flags & HWMOD_16BIT_REG) |
| 1873 | __raw_writew(v, oh->_mpu_rt_va + reg_offs); |
| 1874 | else |
| 1875 | __raw_writel(v, oh->_mpu_rt_va + reg_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1876 | } |
| 1877 | |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 1878 | /** |
Avinash.H.M | 6d3c55f | 2011-07-10 05:27:16 -0600 | [diff] [blame] | 1879 | * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit |
| 1880 | * @oh: struct omap_hwmod * |
| 1881 | * |
| 1882 | * This is a public function exposed to drivers. Some drivers may need to do |
| 1883 | * some settings before and after resetting the device. Those drivers after |
| 1884 | * doing the necessary settings could use this function to start a reset by |
| 1885 | * setting the SYSCONFIG.SOFTRESET bit. |
| 1886 | */ |
| 1887 | int omap_hwmod_softreset(struct omap_hwmod *oh) |
| 1888 | { |
| 1889 | u32 v; |
| 1890 | int ret; |
| 1891 | |
| 1892 | if (!oh || !(oh->_sysc_cache)) |
| 1893 | return -EINVAL; |
| 1894 | |
| 1895 | v = oh->_sysc_cache; |
| 1896 | ret = _set_softreset(oh, &v); |
| 1897 | if (ret) |
| 1898 | goto error; |
| 1899 | _write_sysconfig(v, oh); |
| 1900 | |
| 1901 | error: |
| 1902 | return ret; |
| 1903 | } |
| 1904 | |
| 1905 | /** |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 1906 | * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode |
| 1907 | * @oh: struct omap_hwmod * |
| 1908 | * @idlemode: SIDLEMODE field bits (shifted to bit 0) |
| 1909 | * |
| 1910 | * Sets the IP block's OCP slave idlemode in hardware, and updates our |
| 1911 | * local copy. Intended to be used by drivers that have some erratum |
| 1912 | * that requires direct manipulation of the SIDLEMODE bits. Returns |
| 1913 | * -EINVAL if @oh is null, or passes along the return value from |
| 1914 | * _set_slave_idlemode(). |
| 1915 | * |
| 1916 | * XXX Does this function have any current users? If not, we should |
| 1917 | * remove it; it is better to let the rest of the hwmod code handle this. |
| 1918 | * Any users of this function should be scrutinized carefully. |
| 1919 | */ |
Kevin Hilman | 46273e6 | 2010-01-26 20:13:03 -0700 | [diff] [blame] | 1920 | int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode) |
| 1921 | { |
| 1922 | u32 v; |
| 1923 | int retval = 0; |
| 1924 | |
| 1925 | if (!oh) |
| 1926 | return -EINVAL; |
| 1927 | |
| 1928 | v = oh->_sysc_cache; |
| 1929 | |
| 1930 | retval = _set_slave_idlemode(oh, idlemode, &v); |
| 1931 | if (!retval) |
| 1932 | _write_sysconfig(v, oh); |
| 1933 | |
| 1934 | return retval; |
| 1935 | } |
| 1936 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1937 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1938 | * omap_hwmod_lookup - look up a registered omap_hwmod by name |
| 1939 | * @name: name of the omap_hwmod to look up |
| 1940 | * |
| 1941 | * Given a @name of an omap_hwmod, return a pointer to the registered |
| 1942 | * struct omap_hwmod *, or NULL upon error. |
| 1943 | */ |
| 1944 | struct omap_hwmod *omap_hwmod_lookup(const char *name) |
| 1945 | { |
| 1946 | struct omap_hwmod *oh; |
| 1947 | |
| 1948 | if (!name) |
| 1949 | return NULL; |
| 1950 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1951 | oh = _lookup(name); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1952 | |
| 1953 | return oh; |
| 1954 | } |
| 1955 | |
| 1956 | /** |
| 1957 | * omap_hwmod_for_each - call function for each registered omap_hwmod |
| 1958 | * @fn: pointer to a callback function |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1959 | * @data: void * data to pass to callback function |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1960 | * |
| 1961 | * Call @fn for each registered omap_hwmod, passing @data to each |
| 1962 | * function. @fn must return 0 for success or any other value for |
| 1963 | * failure. If @fn returns non-zero, the iteration across omap_hwmods |
| 1964 | * will stop and the non-zero return value will be passed to the |
| 1965 | * caller of omap_hwmod_for_each(). @fn is called with |
| 1966 | * omap_hwmod_for_each() held. |
| 1967 | */ |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1968 | int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data), |
| 1969 | void *data) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1970 | { |
| 1971 | struct omap_hwmod *temp_oh; |
Govindraj.R | 30ebad9 | 2011-06-01 11:28:56 +0530 | [diff] [blame] | 1972 | int ret = 0; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1973 | |
| 1974 | if (!fn) |
| 1975 | return -EINVAL; |
| 1976 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1977 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
Paul Walmsley | 97d6016 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 1978 | ret = (*fn)(temp_oh, data); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1979 | if (ret) |
| 1980 | break; |
| 1981 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1982 | |
| 1983 | return ret; |
| 1984 | } |
| 1985 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1986 | /** |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 1987 | * omap_hwmod_register - register an array of hwmods |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1988 | * @ohs: pointer to an array of omap_hwmods to register |
| 1989 | * |
| 1990 | * Intended to be called early in boot before the clock framework is |
| 1991 | * initialized. If @ohs is not null, will register all omap_hwmods |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 1992 | * listed in @ohs that are valid for this chip. Returns 0. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1993 | */ |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 1994 | int __init omap_hwmod_register(struct omap_hwmod **ohs) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1995 | { |
Paul Walmsley | bac1a0f | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 1996 | int r, i; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 1997 | |
| 1998 | if (!ohs) |
| 1999 | return 0; |
| 2000 | |
Paul Walmsley | bac1a0f | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2001 | i = 0; |
| 2002 | do { |
Paul Walmsley | bac1a0f | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2003 | r = _register(ohs[i]); |
| 2004 | WARN(r, "omap_hwmod: %s: _register returned %d\n", ohs[i]->name, |
| 2005 | r); |
| 2006 | } while (ohs[++i]); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2007 | |
| 2008 | return 0; |
| 2009 | } |
| 2010 | |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2011 | /* |
| 2012 | * _populate_mpu_rt_base - populate the virtual address for a hwmod |
| 2013 | * |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2014 | * Must be called only from omap_hwmod_setup_*() so ioremap works properly. |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2015 | * Assumes the caller takes care of locking if needed. |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2016 | */ |
| 2017 | static int __init _populate_mpu_rt_base(struct omap_hwmod *oh, void *data) |
| 2018 | { |
Paul Walmsley | 48d54f3 | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2019 | if (oh->_state != _HWMOD_STATE_REGISTERED) |
| 2020 | return 0; |
| 2021 | |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2022 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 2023 | return 0; |
| 2024 | |
| 2025 | 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] | 2026 | |
| 2027 | return 0; |
| 2028 | } |
| 2029 | |
| 2030 | /** |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2031 | * omap_hwmod_setup_one - set up a single hwmod |
| 2032 | * @oh_name: const char * name of the already-registered hwmod to set up |
| 2033 | * |
| 2034 | * Must be called after omap2_clk_init(). Resolves the struct clk |
| 2035 | * names to struct clk pointers for each registered omap_hwmod. Also |
| 2036 | * calls _setup() on each hwmod. Returns -EINVAL upon error or 0 upon |
| 2037 | * success. |
| 2038 | */ |
| 2039 | int __init omap_hwmod_setup_one(const char *oh_name) |
| 2040 | { |
| 2041 | struct omap_hwmod *oh; |
| 2042 | int r; |
| 2043 | |
| 2044 | pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__); |
| 2045 | |
| 2046 | if (!mpu_oh) { |
| 2047 | pr_err("omap_hwmod: %s: cannot setup_one: MPU initiator hwmod %s not yet registered\n", |
| 2048 | oh_name, MPU_INITIATOR_NAME); |
| 2049 | return -EINVAL; |
| 2050 | } |
| 2051 | |
| 2052 | oh = _lookup(oh_name); |
| 2053 | if (!oh) { |
| 2054 | WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name); |
| 2055 | return -EINVAL; |
| 2056 | } |
| 2057 | |
| 2058 | if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh) |
| 2059 | omap_hwmod_setup_one(MPU_INITIATOR_NAME); |
| 2060 | |
| 2061 | r = _populate_mpu_rt_base(oh, NULL); |
| 2062 | if (IS_ERR_VALUE(r)) { |
| 2063 | WARN(1, "omap_hwmod: %s: couldn't set mpu_rt_base\n", oh_name); |
| 2064 | return -EINVAL; |
| 2065 | } |
| 2066 | |
| 2067 | r = _init_clocks(oh, NULL); |
| 2068 | if (IS_ERR_VALUE(r)) { |
| 2069 | WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh_name); |
| 2070 | return -EINVAL; |
| 2071 | } |
| 2072 | |
| 2073 | _setup(oh, NULL); |
| 2074 | |
| 2075 | return 0; |
| 2076 | } |
| 2077 | |
| 2078 | /** |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2079 | * omap_hwmod_setup - do some post-clock framework initialization |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2080 | * |
| 2081 | * Must be called after omap2_clk_init(). Resolves the struct clk names |
| 2082 | * to struct clk pointers for each registered omap_hwmod. Also calls |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2083 | * _setup() on each hwmod. Returns 0 upon success. |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2084 | */ |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2085 | static int __init omap_hwmod_setup_all(void) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2086 | { |
| 2087 | int r; |
| 2088 | |
Paul Walmsley | 569edd7 | 2011-02-23 00:14:06 -0700 | [diff] [blame] | 2089 | if (!mpu_oh) { |
| 2090 | pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n", |
| 2091 | __func__, MPU_INITIATOR_NAME); |
| 2092 | return -EINVAL; |
| 2093 | } |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2094 | |
Tony Lindgren | e7c7d76 | 2011-02-14 15:40:21 -0800 | [diff] [blame] | 2095 | r = omap_hwmod_for_each(_populate_mpu_rt_base, NULL); |
| 2096 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2097 | r = omap_hwmod_for_each(_init_clocks, NULL); |
Paul Walmsley | a2debdb | 2011-02-23 00:14:07 -0700 | [diff] [blame] | 2098 | WARN(IS_ERR_VALUE(r), |
| 2099 | "omap_hwmod: %s: _init_clocks failed\n", __func__); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2100 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2101 | omap_hwmod_for_each(_setup, NULL); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2102 | |
| 2103 | return 0; |
| 2104 | } |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2105 | core_initcall(omap_hwmod_setup_all); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2106 | |
| 2107 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2108 | * omap_hwmod_enable - enable an omap_hwmod |
| 2109 | * @oh: struct omap_hwmod * |
| 2110 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2111 | * 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] | 2112 | * Returns -EINVAL on error or passes along the return value from _enable(). |
| 2113 | */ |
| 2114 | int omap_hwmod_enable(struct omap_hwmod *oh) |
| 2115 | { |
| 2116 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2117 | unsigned long flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2118 | |
| 2119 | if (!oh) |
| 2120 | return -EINVAL; |
| 2121 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2122 | spin_lock_irqsave(&oh->_lock, flags); |
| 2123 | r = _enable(oh); |
| 2124 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2125 | |
| 2126 | return r; |
| 2127 | } |
| 2128 | |
| 2129 | /** |
| 2130 | * omap_hwmod_idle - idle an omap_hwmod |
| 2131 | * @oh: struct omap_hwmod * |
| 2132 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2133 | * 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] | 2134 | * Returns -EINVAL on error or passes along the return value from _idle(). |
| 2135 | */ |
| 2136 | int omap_hwmod_idle(struct omap_hwmod *oh) |
| 2137 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2138 | unsigned long flags; |
| 2139 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2140 | if (!oh) |
| 2141 | return -EINVAL; |
| 2142 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2143 | spin_lock_irqsave(&oh->_lock, flags); |
| 2144 | _idle(oh); |
| 2145 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2146 | |
| 2147 | return 0; |
| 2148 | } |
| 2149 | |
| 2150 | /** |
| 2151 | * omap_hwmod_shutdown - shutdown an omap_hwmod |
| 2152 | * @oh: struct omap_hwmod * |
| 2153 | * |
Paul Walmsley | 74ff3a6 | 2010-09-21 15:02:23 -0600 | [diff] [blame] | 2154 | * Shutdown an omap_hwmod @oh. Intended to be called by |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2155 | * omap_device_shutdown(). Returns -EINVAL on error or passes along |
| 2156 | * the return value from _shutdown(). |
| 2157 | */ |
| 2158 | int omap_hwmod_shutdown(struct omap_hwmod *oh) |
| 2159 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2160 | unsigned long flags; |
| 2161 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2162 | if (!oh) |
| 2163 | return -EINVAL; |
| 2164 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2165 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2166 | _shutdown(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2167 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2168 | |
| 2169 | return 0; |
| 2170 | } |
| 2171 | |
| 2172 | /** |
| 2173 | * omap_hwmod_enable_clocks - enable main_clk, all interface clocks |
| 2174 | * @oh: struct omap_hwmod *oh |
| 2175 | * |
| 2176 | * Intended to be called by the omap_device code. |
| 2177 | */ |
| 2178 | int omap_hwmod_enable_clocks(struct omap_hwmod *oh) |
| 2179 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2180 | unsigned long flags; |
| 2181 | |
| 2182 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2183 | _enable_clocks(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2184 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2185 | |
| 2186 | return 0; |
| 2187 | } |
| 2188 | |
| 2189 | /** |
| 2190 | * omap_hwmod_disable_clocks - disable main_clk, all interface clocks |
| 2191 | * @oh: struct omap_hwmod *oh |
| 2192 | * |
| 2193 | * Intended to be called by the omap_device code. |
| 2194 | */ |
| 2195 | int omap_hwmod_disable_clocks(struct omap_hwmod *oh) |
| 2196 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2197 | unsigned long flags; |
| 2198 | |
| 2199 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2200 | _disable_clocks(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2201 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2202 | |
| 2203 | return 0; |
| 2204 | } |
| 2205 | |
| 2206 | /** |
| 2207 | * omap_hwmod_ocp_barrier - wait for posted writes against the hwmod to complete |
| 2208 | * @oh: struct omap_hwmod *oh |
| 2209 | * |
| 2210 | * Intended to be called by drivers and core code when all posted |
| 2211 | * writes to a device must complete before continuing further |
| 2212 | * execution (for example, after clearing some device IRQSTATUS |
| 2213 | * register bits) |
| 2214 | * |
| 2215 | * XXX what about targets with multiple OCP threads? |
| 2216 | */ |
| 2217 | void omap_hwmod_ocp_barrier(struct omap_hwmod *oh) |
| 2218 | { |
| 2219 | BUG_ON(!oh); |
| 2220 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2221 | if (!oh->class->sysc || !oh->class->sysc->sysc_flags) { |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2222 | WARN(1, "omap_device: %s: OCP barrier impossible due to " |
| 2223 | "device configuration\n", oh->name); |
| 2224 | return; |
| 2225 | } |
| 2226 | |
| 2227 | /* |
| 2228 | * Forces posted writes to complete on the OCP thread handling |
| 2229 | * register writes |
| 2230 | */ |
Rajendra Nayak | cc7a1d2 | 2010-10-08 10:23:22 -0700 | [diff] [blame] | 2231 | omap_hwmod_read(oh, oh->class->sysc->sysc_offs); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2232 | } |
| 2233 | |
| 2234 | /** |
| 2235 | * omap_hwmod_reset - reset the hwmod |
| 2236 | * @oh: struct omap_hwmod * |
| 2237 | * |
| 2238 | * Under some conditions, a driver may wish to reset the entire device. |
| 2239 | * Called from omap_device code. Returns -EINVAL on error or passes along |
Liam Girdwood | 9b57911 | 2010-09-21 10:34:09 -0600 | [diff] [blame] | 2240 | * the return value from _reset(). |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2241 | */ |
| 2242 | int omap_hwmod_reset(struct omap_hwmod *oh) |
| 2243 | { |
| 2244 | int r; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2245 | unsigned long flags; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2246 | |
Liam Girdwood | 9b57911 | 2010-09-21 10:34:09 -0600 | [diff] [blame] | 2247 | if (!oh) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2248 | return -EINVAL; |
| 2249 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2250 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2251 | r = _reset(oh); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2252 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2253 | |
| 2254 | return r; |
| 2255 | } |
| 2256 | |
| 2257 | /** |
| 2258 | * omap_hwmod_count_resources - count number of struct resources needed by hwmod |
| 2259 | * @oh: struct omap_hwmod * |
| 2260 | * @res: pointer to the first element of an array of struct resource to fill |
| 2261 | * |
| 2262 | * Count the number of struct resource array elements necessary to |
| 2263 | * contain omap_hwmod @oh resources. Intended to be called by code |
| 2264 | * that registers omap_devices. Intended to be used to determine the |
| 2265 | * size of a dynamically-allocated struct resource array, before |
| 2266 | * calling omap_hwmod_fill_resources(). Returns the number of struct |
| 2267 | * resource array elements needed. |
| 2268 | * |
| 2269 | * XXX This code is not optimized. It could attempt to merge adjacent |
| 2270 | * resource IDs. |
| 2271 | * |
| 2272 | */ |
| 2273 | int omap_hwmod_count_resources(struct omap_hwmod *oh) |
| 2274 | { |
| 2275 | int ret, i; |
| 2276 | |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 2277 | ret = _count_mpu_irqs(oh) + _count_sdma_reqs(oh); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2278 | |
| 2279 | for (i = 0; i < oh->slaves_cnt; i++) |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 2280 | ret += _count_ocp_if_addr_spaces(oh->slaves[i]); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2281 | |
| 2282 | return ret; |
| 2283 | } |
| 2284 | |
| 2285 | /** |
| 2286 | * omap_hwmod_fill_resources - fill struct resource array with hwmod data |
| 2287 | * @oh: struct omap_hwmod * |
| 2288 | * @res: pointer to the first element of an array of struct resource to fill |
| 2289 | * |
| 2290 | * Fill the struct resource array @res with resource data from the |
| 2291 | * omap_hwmod @oh. Intended to be called by code that registers |
| 2292 | * omap_devices. See also omap_hwmod_count_resources(). Returns the |
| 2293 | * number of array elements filled. |
| 2294 | */ |
| 2295 | int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res) |
| 2296 | { |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 2297 | int i, j, mpu_irqs_cnt, sdma_reqs_cnt; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2298 | int r = 0; |
| 2299 | |
| 2300 | /* For each IRQ, DMA, memory area, fill in array.*/ |
| 2301 | |
Paul Walmsley | 212738a | 2011-07-09 19:14:06 -0600 | [diff] [blame] | 2302 | mpu_irqs_cnt = _count_mpu_irqs(oh); |
| 2303 | for (i = 0; i < mpu_irqs_cnt; i++) { |
Paul Walmsley | 718bfd7 | 2009-12-08 16:34:16 -0700 | [diff] [blame] | 2304 | (res + r)->name = (oh->mpu_irqs + i)->name; |
| 2305 | (res + r)->start = (oh->mpu_irqs + i)->irq; |
| 2306 | (res + r)->end = (oh->mpu_irqs + i)->irq; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2307 | (res + r)->flags = IORESOURCE_IRQ; |
| 2308 | r++; |
| 2309 | } |
| 2310 | |
Paul Walmsley | bc61495 | 2011-07-09 19:14:07 -0600 | [diff] [blame] | 2311 | sdma_reqs_cnt = _count_sdma_reqs(oh); |
| 2312 | for (i = 0; i < sdma_reqs_cnt; i++) { |
Benoit Cousson | 9ee9fff | 2010-09-21 10:34:08 -0600 | [diff] [blame] | 2313 | (res + r)->name = (oh->sdma_reqs + i)->name; |
| 2314 | (res + r)->start = (oh->sdma_reqs + i)->dma_req; |
| 2315 | (res + r)->end = (oh->sdma_reqs + i)->dma_req; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2316 | (res + r)->flags = IORESOURCE_DMA; |
| 2317 | r++; |
| 2318 | } |
| 2319 | |
| 2320 | for (i = 0; i < oh->slaves_cnt; i++) { |
| 2321 | struct omap_hwmod_ocp_if *os; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 2322 | int addr_cnt; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2323 | |
Benoit Cousson | 682fdc9 | 2010-05-20 12:31:09 -0600 | [diff] [blame] | 2324 | os = oh->slaves[i]; |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 2325 | addr_cnt = _count_ocp_if_addr_spaces(os); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2326 | |
Paul Walmsley | 78183f3 | 2011-07-09 19:14:05 -0600 | [diff] [blame] | 2327 | for (j = 0; j < addr_cnt; j++) { |
Kishon Vijay Abraham I | cd50380 | 2011-02-24 12:51:45 -0800 | [diff] [blame] | 2328 | (res + r)->name = (os->addr + j)->name; |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2329 | (res + r)->start = (os->addr + j)->pa_start; |
| 2330 | (res + r)->end = (os->addr + j)->pa_end; |
| 2331 | (res + r)->flags = IORESOURCE_MEM; |
| 2332 | r++; |
| 2333 | } |
| 2334 | } |
| 2335 | |
| 2336 | return r; |
| 2337 | } |
| 2338 | |
| 2339 | /** |
| 2340 | * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain |
| 2341 | * @oh: struct omap_hwmod * |
| 2342 | * |
| 2343 | * Return the powerdomain pointer associated with the OMAP module |
| 2344 | * @oh's main clock. If @oh does not have a main clk, return the |
| 2345 | * powerdomain associated with the interface clock associated with the |
| 2346 | * module's MPU port. (XXX Perhaps this should use the SDMA port |
| 2347 | * instead?) Returns NULL on error, or a struct powerdomain * on |
| 2348 | * success. |
| 2349 | */ |
| 2350 | struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh) |
| 2351 | { |
| 2352 | struct clk *c; |
| 2353 | |
| 2354 | if (!oh) |
| 2355 | return NULL; |
| 2356 | |
| 2357 | if (oh->_clk) { |
| 2358 | c = oh->_clk; |
| 2359 | } else { |
| 2360 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 2361 | return NULL; |
| 2362 | c = oh->slaves[oh->_mpu_port_index]->_clk; |
| 2363 | } |
| 2364 | |
Thara Gopinath | d5647c1 | 2010-03-31 04:16:29 -0600 | [diff] [blame] | 2365 | if (!c->clkdm) |
| 2366 | return NULL; |
| 2367 | |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2368 | return c->clkdm->pwrdm.ptr; |
| 2369 | |
| 2370 | } |
| 2371 | |
| 2372 | /** |
Paul Walmsley | db2a60b | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 2373 | * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU) |
| 2374 | * @oh: struct omap_hwmod * |
| 2375 | * |
| 2376 | * Returns the virtual address corresponding to the beginning of the |
| 2377 | * module's register target, in the address range that is intended to |
| 2378 | * be used by the MPU. Returns the virtual address upon success or NULL |
| 2379 | * upon error. |
| 2380 | */ |
| 2381 | void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh) |
| 2382 | { |
| 2383 | if (!oh) |
| 2384 | return NULL; |
| 2385 | |
| 2386 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) |
| 2387 | return NULL; |
| 2388 | |
| 2389 | if (oh->_state == _HWMOD_STATE_UNKNOWN) |
| 2390 | return NULL; |
| 2391 | |
| 2392 | return oh->_mpu_rt_va; |
| 2393 | } |
| 2394 | |
| 2395 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2396 | * omap_hwmod_add_initiator_dep - add sleepdep from @init_oh to @oh |
| 2397 | * @oh: struct omap_hwmod * |
| 2398 | * @init_oh: struct omap_hwmod * (initiator) |
| 2399 | * |
| 2400 | * Add a sleep dependency between the initiator @init_oh and @oh. |
| 2401 | * Intended to be called by DSP/Bridge code via platform_data for the |
| 2402 | * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge |
| 2403 | * code needs to add/del initiator dependencies dynamically |
| 2404 | * before/after accessing a device. Returns the return value from |
| 2405 | * _add_initiator_dep(). |
| 2406 | * |
| 2407 | * XXX Keep a usecount in the clockdomain code |
| 2408 | */ |
| 2409 | int omap_hwmod_add_initiator_dep(struct omap_hwmod *oh, |
| 2410 | struct omap_hwmod *init_oh) |
| 2411 | { |
| 2412 | return _add_initiator_dep(oh, init_oh); |
| 2413 | } |
| 2414 | |
| 2415 | /* |
| 2416 | * XXX what about functions for drivers to save/restore ocp_sysconfig |
| 2417 | * for context save/restore operations? |
| 2418 | */ |
| 2419 | |
| 2420 | /** |
| 2421 | * omap_hwmod_del_initiator_dep - remove sleepdep from @init_oh to @oh |
| 2422 | * @oh: struct omap_hwmod * |
| 2423 | * @init_oh: struct omap_hwmod * (initiator) |
| 2424 | * |
| 2425 | * Remove a sleep dependency between the initiator @init_oh and @oh. |
| 2426 | * Intended to be called by DSP/Bridge code via platform_data for the |
| 2427 | * DSP case; and by the DMA code in the sDMA case. DMA code, *Bridge |
| 2428 | * code needs to add/del initiator dependencies dynamically |
| 2429 | * before/after accessing a device. Returns the return value from |
| 2430 | * _del_initiator_dep(). |
| 2431 | * |
| 2432 | * XXX Keep a usecount in the clockdomain code |
| 2433 | */ |
| 2434 | int omap_hwmod_del_initiator_dep(struct omap_hwmod *oh, |
| 2435 | struct omap_hwmod *init_oh) |
| 2436 | { |
| 2437 | return _del_initiator_dep(oh, init_oh); |
| 2438 | } |
| 2439 | |
| 2440 | /** |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2441 | * omap_hwmod_enable_wakeup - allow device to wake up the system |
| 2442 | * @oh: struct omap_hwmod * |
| 2443 | * |
| 2444 | * Sets the module OCP socket ENAWAKEUP bit to allow the module to |
| 2445 | * send wakeups to the PRCM. Eventually this should sets PRCM wakeup |
| 2446 | * registers to cause the PRCM to receive wakeup events from the |
| 2447 | * module. Does not set any wakeup routing registers beyond this |
| 2448 | * point - if the module is to wake up any other module or subsystem, |
| 2449 | * that must be set separately. Called by omap_device code. Returns |
| 2450 | * -EINVAL on error or 0 upon success. |
| 2451 | */ |
| 2452 | int omap_hwmod_enable_wakeup(struct omap_hwmod *oh) |
| 2453 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2454 | unsigned long flags; |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 2455 | u32 v; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2456 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2457 | if (!oh->class->sysc || |
| 2458 | !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2459 | return -EINVAL; |
| 2460 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2461 | spin_lock_irqsave(&oh->_lock, flags); |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 2462 | v = oh->_sysc_cache; |
| 2463 | _enable_wakeup(oh, &v); |
| 2464 | _write_sysconfig(v, oh); |
Govindraj R | eceec00 | 2011-12-16 14:36:58 -0700 | [diff] [blame] | 2465 | _set_idle_ioring_wakeup(oh, true); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2466 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2467 | |
| 2468 | return 0; |
| 2469 | } |
| 2470 | |
| 2471 | /** |
| 2472 | * omap_hwmod_disable_wakeup - prevent device from waking the system |
| 2473 | * @oh: struct omap_hwmod * |
| 2474 | * |
| 2475 | * Clears the module OCP socket ENAWAKEUP bit to prevent the module |
| 2476 | * from sending wakeups to the PRCM. Eventually this should clear |
| 2477 | * PRCM wakeup registers to cause the PRCM to ignore wakeup events |
| 2478 | * from the module. Does not set any wakeup routing registers beyond |
| 2479 | * this point - if the module is to wake up any other module or |
| 2480 | * subsystem, that must be set separately. Called by omap_device |
| 2481 | * code. Returns -EINVAL on error or 0 upon success. |
| 2482 | */ |
| 2483 | int omap_hwmod_disable_wakeup(struct omap_hwmod *oh) |
| 2484 | { |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2485 | unsigned long flags; |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 2486 | u32 v; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2487 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2488 | if (!oh->class->sysc || |
| 2489 | !(oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2490 | return -EINVAL; |
| 2491 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2492 | spin_lock_irqsave(&oh->_lock, flags); |
Kevin Hilman | 5a7ddcb | 2010-12-21 21:08:34 -0700 | [diff] [blame] | 2493 | v = oh->_sysc_cache; |
| 2494 | _disable_wakeup(oh, &v); |
| 2495 | _write_sysconfig(v, oh); |
Govindraj R | eceec00 | 2011-12-16 14:36:58 -0700 | [diff] [blame] | 2496 | _set_idle_ioring_wakeup(oh, false); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2497 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 63c8523 | 2009-09-03 20:14:03 +0300 | [diff] [blame] | 2498 | |
| 2499 | return 0; |
| 2500 | } |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2501 | |
| 2502 | /** |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2503 | * omap_hwmod_assert_hardreset - assert the HW reset line of submodules |
| 2504 | * contained in the hwmod module. |
| 2505 | * @oh: struct omap_hwmod * |
| 2506 | * @name: name of the reset line to lookup and assert |
| 2507 | * |
| 2508 | * Some IP like dsp, ipu or iva contain processor that require |
| 2509 | * an HW reset line to be assert / deassert in order to enable fully |
| 2510 | * the IP. Returns -EINVAL if @oh is null or if the operation is not |
| 2511 | * yet supported on this OMAP; otherwise, passes along the return value |
| 2512 | * from _assert_hardreset(). |
| 2513 | */ |
| 2514 | int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name) |
| 2515 | { |
| 2516 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2517 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2518 | |
| 2519 | if (!oh) |
| 2520 | return -EINVAL; |
| 2521 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2522 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2523 | ret = _assert_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2524 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2525 | |
| 2526 | return ret; |
| 2527 | } |
| 2528 | |
| 2529 | /** |
| 2530 | * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules |
| 2531 | * contained in the hwmod module. |
| 2532 | * @oh: struct omap_hwmod * |
| 2533 | * @name: name of the reset line to look up and deassert |
| 2534 | * |
| 2535 | * Some IP like dsp, ipu or iva contain processor that require |
| 2536 | * an HW reset line to be assert / deassert in order to enable fully |
| 2537 | * the IP. Returns -EINVAL if @oh is null or if the operation is not |
| 2538 | * yet supported on this OMAP; otherwise, passes along the return value |
| 2539 | * from _deassert_hardreset(). |
| 2540 | */ |
| 2541 | int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name) |
| 2542 | { |
| 2543 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2544 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2545 | |
| 2546 | if (!oh) |
| 2547 | return -EINVAL; |
| 2548 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2549 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2550 | ret = _deassert_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2551 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2552 | |
| 2553 | return ret; |
| 2554 | } |
| 2555 | |
| 2556 | /** |
| 2557 | * omap_hwmod_read_hardreset - read the HW reset line state of submodules |
| 2558 | * contained in the hwmod module |
| 2559 | * @oh: struct omap_hwmod * |
| 2560 | * @name: name of the reset line to look up and read |
| 2561 | * |
| 2562 | * Return the current state of the hwmod @oh's reset line named @name: |
| 2563 | * returns -EINVAL upon parameter error or if this operation |
| 2564 | * is unsupported on the current OMAP; otherwise, passes along the return |
| 2565 | * value from _read_hardreset(). |
| 2566 | */ |
| 2567 | int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name) |
| 2568 | { |
| 2569 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2570 | unsigned long flags; |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2571 | |
| 2572 | if (!oh) |
| 2573 | return -EINVAL; |
| 2574 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2575 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2576 | ret = _read_hardreset(oh, name); |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2577 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | aee48e3 | 2010-09-21 10:34:11 -0600 | [diff] [blame] | 2578 | |
| 2579 | return ret; |
| 2580 | } |
| 2581 | |
| 2582 | |
| 2583 | /** |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2584 | * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname |
| 2585 | * @classname: struct omap_hwmod_class name to search for |
| 2586 | * @fn: callback function pointer to call for each hwmod in class @classname |
| 2587 | * @user: arbitrary context data to pass to the callback function |
| 2588 | * |
Benoit Cousson | ce35b24 | 2010-12-21 21:31:28 -0700 | [diff] [blame] | 2589 | * For each omap_hwmod of class @classname, call @fn. |
| 2590 | * If the callback function returns something other than |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2591 | * zero, the iterator is terminated, and the callback function's return |
| 2592 | * value is passed back to the caller. Returns 0 upon success, -EINVAL |
| 2593 | * if @classname or @fn are NULL, or passes back the error code from @fn. |
| 2594 | */ |
| 2595 | int omap_hwmod_for_each_by_class(const char *classname, |
| 2596 | int (*fn)(struct omap_hwmod *oh, |
| 2597 | void *user), |
| 2598 | void *user) |
| 2599 | { |
| 2600 | struct omap_hwmod *temp_oh; |
| 2601 | int ret = 0; |
| 2602 | |
| 2603 | if (!classname || !fn) |
| 2604 | return -EINVAL; |
| 2605 | |
| 2606 | pr_debug("omap_hwmod: %s: looking for modules of class %s\n", |
| 2607 | __func__, classname); |
| 2608 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2609 | list_for_each_entry(temp_oh, &omap_hwmod_list, node) { |
| 2610 | if (!strcmp(temp_oh->class->name, classname)) { |
| 2611 | pr_debug("omap_hwmod: %s: %s: calling callback fn\n", |
| 2612 | __func__, temp_oh->name); |
| 2613 | ret = (*fn)(temp_oh, user); |
| 2614 | if (ret) |
| 2615 | break; |
| 2616 | } |
| 2617 | } |
| 2618 | |
Paul Walmsley | 43b4099 | 2010-02-22 22:09:34 -0700 | [diff] [blame] | 2619 | if (ret) |
| 2620 | pr_debug("omap_hwmod: %s: iterator terminated early: %d\n", |
| 2621 | __func__, ret); |
| 2622 | |
| 2623 | return ret; |
| 2624 | } |
| 2625 | |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2626 | /** |
| 2627 | * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod |
| 2628 | * @oh: struct omap_hwmod * |
| 2629 | * @state: state that _setup() should leave the hwmod in |
| 2630 | * |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2631 | * 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] | 2632 | * (called by omap_hwmod_setup_*()). Only valid to call between |
| 2633 | * calling omap_hwmod_register() and omap_hwmod_setup_*(). Returns |
Paul Walmsley | 550c809 | 2011-02-28 11:58:14 -0700 | [diff] [blame] | 2634 | * 0 upon success or -EINVAL if there is a problem with the arguments |
| 2635 | * or if the hwmod is in the wrong state. |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2636 | */ |
| 2637 | int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state) |
| 2638 | { |
| 2639 | int ret; |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2640 | unsigned long flags; |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2641 | |
| 2642 | if (!oh) |
| 2643 | return -EINVAL; |
| 2644 | |
| 2645 | if (state != _HWMOD_STATE_DISABLED && |
| 2646 | state != _HWMOD_STATE_ENABLED && |
| 2647 | state != _HWMOD_STATE_IDLE) |
| 2648 | return -EINVAL; |
| 2649 | |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2650 | spin_lock_irqsave(&oh->_lock, flags); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2651 | |
| 2652 | if (oh->_state != _HWMOD_STATE_REGISTERED) { |
| 2653 | ret = -EINVAL; |
| 2654 | goto ohsps_unlock; |
| 2655 | } |
| 2656 | |
| 2657 | oh->_postsetup_state = state; |
| 2658 | ret = 0; |
| 2659 | |
| 2660 | ohsps_unlock: |
Paul Walmsley | dc6d1cd | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2661 | spin_unlock_irqrestore(&oh->_lock, flags); |
Paul Walmsley | 2092e5c | 2010-12-14 12:42:35 -0700 | [diff] [blame] | 2662 | |
| 2663 | return ret; |
| 2664 | } |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 2665 | |
| 2666 | /** |
| 2667 | * omap_hwmod_get_context_loss_count - get lost context count |
| 2668 | * @oh: struct omap_hwmod * |
| 2669 | * |
| 2670 | * Query the powerdomain of of @oh to get the context loss |
| 2671 | * count for this device. |
| 2672 | * |
| 2673 | * Returns the context loss count of the powerdomain assocated with @oh |
| 2674 | * upon success, or zero if no powerdomain exists for @oh. |
| 2675 | */ |
Tomi Valkeinen | fc01387 | 2011-06-09 16:56:23 +0300 | [diff] [blame] | 2676 | int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh) |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 2677 | { |
| 2678 | struct powerdomain *pwrdm; |
| 2679 | int ret = 0; |
| 2680 | |
| 2681 | pwrdm = omap_hwmod_get_pwrdm(oh); |
| 2682 | if (pwrdm) |
| 2683 | ret = pwrdm_get_context_loss_count(pwrdm); |
| 2684 | |
| 2685 | return ret; |
| 2686 | } |
Paul Walmsley | 43b0164 | 2011-03-10 03:50:07 -0700 | [diff] [blame] | 2687 | |
| 2688 | /** |
| 2689 | * omap_hwmod_no_setup_reset - prevent a hwmod from being reset upon setup |
| 2690 | * @oh: struct omap_hwmod * |
| 2691 | * |
| 2692 | * Prevent the hwmod @oh from being reset during the setup process. |
| 2693 | * Intended for use by board-*.c files on boards with devices that |
| 2694 | * cannot tolerate being reset. Must be called before the hwmod has |
| 2695 | * been set up. Returns 0 upon success or negative error code upon |
| 2696 | * failure. |
| 2697 | */ |
| 2698 | int omap_hwmod_no_setup_reset(struct omap_hwmod *oh) |
| 2699 | { |
| 2700 | if (!oh) |
| 2701 | return -EINVAL; |
| 2702 | |
| 2703 | if (oh->_state != _HWMOD_STATE_REGISTERED) { |
| 2704 | pr_err("omap_hwmod: %s: cannot prevent setup reset; in wrong state\n", |
| 2705 | oh->name); |
| 2706 | return -EINVAL; |
| 2707 | } |
| 2708 | |
| 2709 | oh->flags |= HWMOD_INIT_NO_RESET; |
| 2710 | |
| 2711 | return 0; |
| 2712 | } |
Tero Kristo | abc2d54 | 2011-12-16 14:36:59 -0700 | [diff] [blame^] | 2713 | |
| 2714 | /** |
| 2715 | * omap_hwmod_pad_route_irq - route an I/O pad wakeup to a particular MPU IRQ |
| 2716 | * @oh: struct omap_hwmod * containing hwmod mux entries |
| 2717 | * @pad_idx: array index in oh->mux of the hwmod mux entry to route wakeup |
| 2718 | * @irq_idx: the hwmod mpu_irqs array index of the IRQ to trigger on wakeup |
| 2719 | * |
| 2720 | * When an I/O pad wakeup arrives for the dynamic or wakeup hwmod mux |
| 2721 | * entry number @pad_idx for the hwmod @oh, trigger the interrupt |
| 2722 | * service routine for the hwmod's mpu_irqs array index @irq_idx. If |
| 2723 | * this function is not called for a given pad_idx, then the ISR |
| 2724 | * associated with @oh's first MPU IRQ will be triggered when an I/O |
| 2725 | * pad wakeup occurs on that pad. Note that @pad_idx is the index of |
| 2726 | * the _dynamic or wakeup_ entry: if there are other entries not |
| 2727 | * marked with OMAP_DEVICE_PAD_WAKEUP or OMAP_DEVICE_PAD_REMUX, these |
| 2728 | * entries are NOT COUNTED in the dynamic pad index. This function |
| 2729 | * must be called separately for each pad that requires its interrupt |
| 2730 | * to be re-routed this way. Returns -EINVAL if there is an argument |
| 2731 | * problem or if @oh does not have hwmod mux entries or MPU IRQs; |
| 2732 | * returns -ENOMEM if memory cannot be allocated; or 0 upon success. |
| 2733 | * |
| 2734 | * XXX This function interface is fragile. Rather than using array |
| 2735 | * indexes, which are subject to unpredictable change, it should be |
| 2736 | * using hwmod IRQ names, and some other stable key for the hwmod mux |
| 2737 | * pad records. |
| 2738 | */ |
| 2739 | int omap_hwmod_pad_route_irq(struct omap_hwmod *oh, int pad_idx, int irq_idx) |
| 2740 | { |
| 2741 | int nr_irqs; |
| 2742 | |
| 2743 | might_sleep(); |
| 2744 | |
| 2745 | if (!oh || !oh->mux || !oh->mpu_irqs || pad_idx < 0 || |
| 2746 | pad_idx >= oh->mux->nr_pads_dynamic) |
| 2747 | return -EINVAL; |
| 2748 | |
| 2749 | /* Check the number of available mpu_irqs */ |
| 2750 | for (nr_irqs = 0; oh->mpu_irqs[nr_irqs].irq >= 0; nr_irqs++) |
| 2751 | ; |
| 2752 | |
| 2753 | if (irq_idx >= nr_irqs) |
| 2754 | return -EINVAL; |
| 2755 | |
| 2756 | if (!oh->mux->irqs) { |
| 2757 | /* XXX What frees this? */ |
| 2758 | oh->mux->irqs = kzalloc(sizeof(int) * oh->mux->nr_pads_dynamic, |
| 2759 | GFP_KERNEL); |
| 2760 | if (!oh->mux->irqs) |
| 2761 | return -ENOMEM; |
| 2762 | } |
| 2763 | oh->mux->irqs[pad_idx] = irq_idx; |
| 2764 | |
| 2765 | return 0; |
| 2766 | } |