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