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