clockdomain.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985
  1. /*
  2. * OMAP2/3/4 clockdomain framework functions
  3. *
  4. * Copyright (C) 2008-2011 Texas Instruments, Inc.
  5. * Copyright (C) 2008-2011 Nokia Corporation
  6. *
  7. * Written by Paul Walmsley and Jouni Högander
  8. * Added OMAP4 specific support by Abhijit Pagare <abhijitpagare@ti.com>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #undef DEBUG
  15. #include <linux/kernel.h>
  16. #include <linux/device.h>
  17. #include <linux/list.h>
  18. #include <linux/errno.h>
  19. #include <linux/delay.h>
  20. #include <linux/clk.h>
  21. #include <linux/limits.h>
  22. #include <linux/err.h>
  23. #include <linux/io.h>
  24. #include <linux/bitops.h>
  25. #include <plat/clock.h>
  26. #include "clockdomain.h"
  27. /* clkdm_list contains all registered struct clockdomains */
  28. static LIST_HEAD(clkdm_list);
  29. /* array of clockdomain deps to be added/removed when clkdm in hwsup mode */
  30. static struct clkdm_autodep *autodeps;
  31. static struct clkdm_ops *arch_clkdm;
  32. /* Private functions */
  33. static struct clockdomain *_clkdm_lookup(const char *name)
  34. {
  35. struct clockdomain *clkdm, *temp_clkdm;
  36. if (!name)
  37. return NULL;
  38. clkdm = NULL;
  39. list_for_each_entry(temp_clkdm, &clkdm_list, node) {
  40. if (!strcmp(name, temp_clkdm->name)) {
  41. clkdm = temp_clkdm;
  42. break;
  43. }
  44. }
  45. return clkdm;
  46. }
  47. /**
  48. * _clkdm_register - register a clockdomain
  49. * @clkdm: struct clockdomain * to register
  50. *
  51. * Adds a clockdomain to the internal clockdomain list.
  52. * Returns -EINVAL if given a null pointer, -EEXIST if a clockdomain is
  53. * already registered by the provided name, or 0 upon success.
  54. */
  55. static int _clkdm_register(struct clockdomain *clkdm)
  56. {
  57. struct powerdomain *pwrdm;
  58. if (!clkdm || !clkdm->name)
  59. return -EINVAL;
  60. if (!omap_chip_is(clkdm->omap_chip))
  61. return -EINVAL;
  62. pwrdm = pwrdm_lookup(clkdm->pwrdm.name);
  63. if (!pwrdm) {
  64. pr_err("clockdomain: %s: powerdomain %s does not exist\n",
  65. clkdm->name, clkdm->pwrdm.name);
  66. return -EINVAL;
  67. }
  68. clkdm->pwrdm.ptr = pwrdm;
  69. /* Verify that the clockdomain is not already registered */
  70. if (_clkdm_lookup(clkdm->name))
  71. return -EEXIST;
  72. list_add(&clkdm->node, &clkdm_list);
  73. pwrdm_add_clkdm(pwrdm, clkdm);
  74. pr_debug("clockdomain: registered %s\n", clkdm->name);
  75. return 0;
  76. }
  77. /* _clkdm_deps_lookup - look up the specified clockdomain in a clkdm list */
  78. static struct clkdm_dep *_clkdm_deps_lookup(struct clockdomain *clkdm,
  79. struct clkdm_dep *deps)
  80. {
  81. struct clkdm_dep *cd;
  82. if (!clkdm || !deps || !omap_chip_is(clkdm->omap_chip))
  83. return ERR_PTR(-EINVAL);
  84. for (cd = deps; cd->clkdm_name; cd++) {
  85. if (!omap_chip_is(cd->omap_chip))
  86. continue;
  87. if (!cd->clkdm && cd->clkdm_name)
  88. cd->clkdm = _clkdm_lookup(cd->clkdm_name);
  89. if (cd->clkdm == clkdm)
  90. break;
  91. }
  92. if (!cd->clkdm_name)
  93. return ERR_PTR(-ENOENT);
  94. return cd;
  95. }
  96. /*
  97. * _autodep_lookup - resolve autodep clkdm names to clkdm pointers; store
  98. * @autodep: struct clkdm_autodep * to resolve
  99. *
  100. * Resolve autodep clockdomain names to clockdomain pointers via
  101. * clkdm_lookup() and store the pointers in the autodep structure. An
  102. * "autodep" is a clockdomain sleep/wakeup dependency that is
  103. * automatically added and removed whenever clocks in the associated
  104. * clockdomain are enabled or disabled (respectively) when the
  105. * clockdomain is in hardware-supervised mode. Meant to be called
  106. * once at clockdomain layer initialization, since these should remain
  107. * fixed for a particular architecture. No return value.
  108. *
  109. * XXX autodeps are deprecated and should be removed at the earliest
  110. * opportunity
  111. */
  112. static void _autodep_lookup(struct clkdm_autodep *autodep)
  113. {
  114. struct clockdomain *clkdm;
  115. if (!autodep)
  116. return;
  117. if (!omap_chip_is(autodep->omap_chip))
  118. return;
  119. clkdm = clkdm_lookup(autodep->clkdm.name);
  120. if (!clkdm) {
  121. pr_err("clockdomain: autodeps: clockdomain %s does not exist\n",
  122. autodep->clkdm.name);
  123. clkdm = ERR_PTR(-ENOENT);
  124. }
  125. autodep->clkdm.ptr = clkdm;
  126. }
  127. /*
  128. * _clkdm_add_autodeps - add auto sleepdeps/wkdeps to clkdm upon clock enable
  129. * @clkdm: struct clockdomain *
  130. *
  131. * Add the "autodep" sleep & wakeup dependencies to clockdomain 'clkdm'
  132. * in hardware-supervised mode. Meant to be called from clock framework
  133. * when a clock inside clockdomain 'clkdm' is enabled. No return value.
  134. *
  135. * XXX autodeps are deprecated and should be removed at the earliest
  136. * opportunity
  137. */
  138. void _clkdm_add_autodeps(struct clockdomain *clkdm)
  139. {
  140. struct clkdm_autodep *autodep;
  141. if (!autodeps || clkdm->flags & CLKDM_NO_AUTODEPS)
  142. return;
  143. for (autodep = autodeps; autodep->clkdm.ptr; autodep++) {
  144. if (IS_ERR(autodep->clkdm.ptr))
  145. continue;
  146. if (!omap_chip_is(autodep->omap_chip))
  147. continue;
  148. pr_debug("clockdomain: adding %s sleepdep/wkdep for "
  149. "clkdm %s\n", autodep->clkdm.ptr->name,
  150. clkdm->name);
  151. clkdm_add_sleepdep(clkdm, autodep->clkdm.ptr);
  152. clkdm_add_wkdep(clkdm, autodep->clkdm.ptr);
  153. }
  154. }
  155. /*
  156. * _clkdm_add_autodeps - remove auto sleepdeps/wkdeps from clkdm
  157. * @clkdm: struct clockdomain *
  158. *
  159. * Remove the "autodep" sleep & wakeup dependencies from clockdomain 'clkdm'
  160. * in hardware-supervised mode. Meant to be called from clock framework
  161. * when a clock inside clockdomain 'clkdm' is disabled. No return value.
  162. *
  163. * XXX autodeps are deprecated and should be removed at the earliest
  164. * opportunity
  165. */
  166. void _clkdm_del_autodeps(struct clockdomain *clkdm)
  167. {
  168. struct clkdm_autodep *autodep;
  169. if (!autodeps || clkdm->flags & CLKDM_NO_AUTODEPS)
  170. return;
  171. for (autodep = autodeps; autodep->clkdm.ptr; autodep++) {
  172. if (IS_ERR(autodep->clkdm.ptr))
  173. continue;
  174. if (!omap_chip_is(autodep->omap_chip))
  175. continue;
  176. pr_debug("clockdomain: removing %s sleepdep/wkdep for "
  177. "clkdm %s\n", autodep->clkdm.ptr->name,
  178. clkdm->name);
  179. clkdm_del_sleepdep(clkdm, autodep->clkdm.ptr);
  180. clkdm_del_wkdep(clkdm, autodep->clkdm.ptr);
  181. }
  182. }
  183. /**
  184. * _resolve_clkdm_deps() - resolve clkdm_names in @clkdm_deps to clkdms
  185. * @clkdm: clockdomain that we are resolving dependencies for
  186. * @clkdm_deps: ptr to array of struct clkdm_deps to resolve
  187. *
  188. * Iterates through @clkdm_deps, looking up the struct clockdomain named by
  189. * clkdm_name and storing the clockdomain pointer in the struct clkdm_dep.
  190. * No return value.
  191. */
  192. static void _resolve_clkdm_deps(struct clockdomain *clkdm,
  193. struct clkdm_dep *clkdm_deps)
  194. {
  195. struct clkdm_dep *cd;
  196. for (cd = clkdm_deps; cd && cd->clkdm_name; cd++) {
  197. if (!omap_chip_is(cd->omap_chip))
  198. continue;
  199. if (cd->clkdm)
  200. continue;
  201. cd->clkdm = _clkdm_lookup(cd->clkdm_name);
  202. WARN(!cd->clkdm, "clockdomain: %s: could not find clkdm %s while resolving dependencies - should never happen",
  203. clkdm->name, cd->clkdm_name);
  204. }
  205. }
  206. /* Public functions */
  207. /**
  208. * clkdm_init - set up the clockdomain layer
  209. * @clkdms: optional pointer to an array of clockdomains to register
  210. * @init_autodeps: optional pointer to an array of autodeps to register
  211. * @custom_funcs: func pointers for arch specific implementations
  212. *
  213. * Set up internal state. If a pointer to an array of clockdomains
  214. * @clkdms was supplied, loop through the list of clockdomains,
  215. * register all that are available on the current platform. Similarly,
  216. * if a pointer to an array of clockdomain autodependencies
  217. * @init_autodeps was provided, register those. No return value.
  218. */
  219. void clkdm_init(struct clockdomain **clkdms,
  220. struct clkdm_autodep *init_autodeps,
  221. struct clkdm_ops *custom_funcs)
  222. {
  223. struct clockdomain **c = NULL;
  224. struct clockdomain *clkdm;
  225. struct clkdm_autodep *autodep = NULL;
  226. if (!custom_funcs)
  227. WARN(1, "No custom clkdm functions registered\n");
  228. else
  229. arch_clkdm = custom_funcs;
  230. if (clkdms)
  231. for (c = clkdms; *c; c++)
  232. _clkdm_register(*c);
  233. autodeps = init_autodeps;
  234. if (autodeps)
  235. for (autodep = autodeps; autodep->clkdm.ptr; autodep++)
  236. _autodep_lookup(autodep);
  237. /*
  238. * Put all clockdomains into software-supervised mode; PM code
  239. * should later enable hardware-supervised mode as appropriate
  240. */
  241. list_for_each_entry(clkdm, &clkdm_list, node) {
  242. if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP)
  243. clkdm_wakeup(clkdm);
  244. else if (clkdm->flags & CLKDM_CAN_DISABLE_AUTO)
  245. clkdm_deny_idle(clkdm);
  246. _resolve_clkdm_deps(clkdm, clkdm->wkdep_srcs);
  247. clkdm_clear_all_wkdeps(clkdm);
  248. _resolve_clkdm_deps(clkdm, clkdm->sleepdep_srcs);
  249. clkdm_clear_all_sleepdeps(clkdm);
  250. }
  251. }
  252. /**
  253. * clkdm_lookup - look up a clockdomain by name, return a pointer
  254. * @name: name of clockdomain
  255. *
  256. * Find a registered clockdomain by its name @name. Returns a pointer
  257. * to the struct clockdomain if found, or NULL otherwise.
  258. */
  259. struct clockdomain *clkdm_lookup(const char *name)
  260. {
  261. struct clockdomain *clkdm, *temp_clkdm;
  262. if (!name)
  263. return NULL;
  264. clkdm = NULL;
  265. list_for_each_entry(temp_clkdm, &clkdm_list, node) {
  266. if (!strcmp(name, temp_clkdm->name)) {
  267. clkdm = temp_clkdm;
  268. break;
  269. }
  270. }
  271. return clkdm;
  272. }
  273. /**
  274. * clkdm_for_each - call function on each registered clockdomain
  275. * @fn: callback function *
  276. *
  277. * Call the supplied function @fn for each registered clockdomain.
  278. * The callback function @fn can return anything but 0 to bail
  279. * out early from the iterator. The callback function is called with
  280. * the clkdm_mutex held, so no clockdomain structure manipulation
  281. * functions should be called from the callback, although hardware
  282. * clockdomain control functions are fine. Returns the last return
  283. * value of the callback function, which should be 0 for success or
  284. * anything else to indicate failure; or -EINVAL if the function pointer
  285. * is null.
  286. */
  287. int clkdm_for_each(int (*fn)(struct clockdomain *clkdm, void *user),
  288. void *user)
  289. {
  290. struct clockdomain *clkdm;
  291. int ret = 0;
  292. if (!fn)
  293. return -EINVAL;
  294. list_for_each_entry(clkdm, &clkdm_list, node) {
  295. ret = (*fn)(clkdm, user);
  296. if (ret)
  297. break;
  298. }
  299. return ret;
  300. }
  301. /**
  302. * clkdm_get_pwrdm - return a ptr to the pwrdm that this clkdm resides in
  303. * @clkdm: struct clockdomain *
  304. *
  305. * Return a pointer to the struct powerdomain that the specified clockdomain
  306. * @clkdm exists in, or returns NULL if @clkdm is NULL.
  307. */
  308. struct powerdomain *clkdm_get_pwrdm(struct clockdomain *clkdm)
  309. {
  310. if (!clkdm)
  311. return NULL;
  312. return clkdm->pwrdm.ptr;
  313. }
  314. /* Hardware clockdomain control */
  315. /**
  316. * clkdm_add_wkdep - add a wakeup dependency from clkdm2 to clkdm1
  317. * @clkdm1: wake this struct clockdomain * up (dependent)
  318. * @clkdm2: when this struct clockdomain * wakes up (source)
  319. *
  320. * When the clockdomain represented by @clkdm2 wakes up, wake up
  321. * @clkdm1. Implemented in hardware on the OMAP, this feature is
  322. * designed to reduce wakeup latency of the dependent clockdomain @clkdm1.
  323. * Returns -EINVAL if presented with invalid clockdomain pointers,
  324. * -ENOENT if @clkdm2 cannot wake up clkdm1 in hardware, or 0 upon
  325. * success.
  326. */
  327. int clkdm_add_wkdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2)
  328. {
  329. struct clkdm_dep *cd;
  330. int ret = 0;
  331. if (!clkdm1 || !clkdm2)
  332. return -EINVAL;
  333. cd = _clkdm_deps_lookup(clkdm2, clkdm1->wkdep_srcs);
  334. if (IS_ERR(cd))
  335. ret = PTR_ERR(cd);
  336. if (!arch_clkdm || !arch_clkdm->clkdm_add_wkdep)
  337. ret = -EINVAL;
  338. if (ret) {
  339. pr_debug("clockdomain: hardware cannot set/clear wake up of "
  340. "%s when %s wakes up\n", clkdm1->name, clkdm2->name);
  341. return ret;
  342. }
  343. if (atomic_inc_return(&cd->wkdep_usecount) == 1) {
  344. pr_debug("clockdomain: hardware will wake up %s when %s wakes "
  345. "up\n", clkdm1->name, clkdm2->name);
  346. ret = arch_clkdm->clkdm_add_wkdep(clkdm1, clkdm2);
  347. }
  348. return ret;
  349. }
  350. /**
  351. * clkdm_del_wkdep - remove a wakeup dependency from clkdm2 to clkdm1
  352. * @clkdm1: wake this struct clockdomain * up (dependent)
  353. * @clkdm2: when this struct clockdomain * wakes up (source)
  354. *
  355. * Remove a wakeup dependency causing @clkdm1 to wake up when @clkdm2
  356. * wakes up. Returns -EINVAL if presented with invalid clockdomain
  357. * pointers, -ENOENT if @clkdm2 cannot wake up clkdm1 in hardware, or
  358. * 0 upon success.
  359. */
  360. int clkdm_del_wkdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2)
  361. {
  362. struct clkdm_dep *cd;
  363. int ret = 0;
  364. if (!clkdm1 || !clkdm2)
  365. return -EINVAL;
  366. cd = _clkdm_deps_lookup(clkdm2, clkdm1->wkdep_srcs);
  367. if (IS_ERR(cd))
  368. ret = PTR_ERR(cd);
  369. if (!arch_clkdm || !arch_clkdm->clkdm_del_wkdep)
  370. ret = -EINVAL;
  371. if (ret) {
  372. pr_debug("clockdomain: hardware cannot set/clear wake up of "
  373. "%s when %s wakes up\n", clkdm1->name, clkdm2->name);
  374. return ret;
  375. }
  376. if (atomic_dec_return(&cd->wkdep_usecount) == 0) {
  377. pr_debug("clockdomain: hardware will no longer wake up %s "
  378. "after %s wakes up\n", clkdm1->name, clkdm2->name);
  379. ret = arch_clkdm->clkdm_del_wkdep(clkdm1, clkdm2);
  380. }
  381. return ret;
  382. }
  383. /**
  384. * clkdm_read_wkdep - read wakeup dependency state from clkdm2 to clkdm1
  385. * @clkdm1: wake this struct clockdomain * up (dependent)
  386. * @clkdm2: when this struct clockdomain * wakes up (source)
  387. *
  388. * Return 1 if a hardware wakeup dependency exists wherein @clkdm1 will be
  389. * awoken when @clkdm2 wakes up; 0 if dependency is not set; -EINVAL
  390. * if either clockdomain pointer is invalid; or -ENOENT if the hardware
  391. * is incapable.
  392. *
  393. * REVISIT: Currently this function only represents software-controllable
  394. * wakeup dependencies. Wakeup dependencies fixed in hardware are not
  395. * yet handled here.
  396. */
  397. int clkdm_read_wkdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2)
  398. {
  399. struct clkdm_dep *cd;
  400. int ret = 0;
  401. if (!clkdm1 || !clkdm2)
  402. return -EINVAL;
  403. cd = _clkdm_deps_lookup(clkdm2, clkdm1->wkdep_srcs);
  404. if (IS_ERR(cd))
  405. ret = PTR_ERR(cd);
  406. if (!arch_clkdm || !arch_clkdm->clkdm_read_wkdep)
  407. ret = -EINVAL;
  408. if (ret) {
  409. pr_debug("clockdomain: hardware cannot set/clear wake up of "
  410. "%s when %s wakes up\n", clkdm1->name, clkdm2->name);
  411. return ret;
  412. }
  413. /* XXX It's faster to return the atomic wkdep_usecount */
  414. return arch_clkdm->clkdm_read_wkdep(clkdm1, clkdm2);
  415. }
  416. /**
  417. * clkdm_clear_all_wkdeps - remove all wakeup dependencies from target clkdm
  418. * @clkdm: struct clockdomain * to remove all wakeup dependencies from
  419. *
  420. * Remove all inter-clockdomain wakeup dependencies that could cause
  421. * @clkdm to wake. Intended to be used during boot to initialize the
  422. * PRCM to a known state, after all clockdomains are put into swsup idle
  423. * and woken up. Returns -EINVAL if @clkdm pointer is invalid, or
  424. * 0 upon success.
  425. */
  426. int clkdm_clear_all_wkdeps(struct clockdomain *clkdm)
  427. {
  428. if (!clkdm)
  429. return -EINVAL;
  430. if (!arch_clkdm || !arch_clkdm->clkdm_clear_all_wkdeps)
  431. return -EINVAL;
  432. return arch_clkdm->clkdm_clear_all_wkdeps(clkdm);
  433. }
  434. /**
  435. * clkdm_add_sleepdep - add a sleep dependency from clkdm2 to clkdm1
  436. * @clkdm1: prevent this struct clockdomain * from sleeping (dependent)
  437. * @clkdm2: when this struct clockdomain * is active (source)
  438. *
  439. * Prevent @clkdm1 from automatically going inactive (and then to
  440. * retention or off) if @clkdm2 is active. Returns -EINVAL if
  441. * presented with invalid clockdomain pointers or called on a machine
  442. * that does not support software-configurable hardware sleep
  443. * dependencies, -ENOENT if the specified dependency cannot be set in
  444. * hardware, or 0 upon success.
  445. */
  446. int clkdm_add_sleepdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2)
  447. {
  448. struct clkdm_dep *cd;
  449. int ret = 0;
  450. if (!clkdm1 || !clkdm2)
  451. return -EINVAL;
  452. cd = _clkdm_deps_lookup(clkdm2, clkdm1->sleepdep_srcs);
  453. if (IS_ERR(cd))
  454. ret = PTR_ERR(cd);
  455. if (!arch_clkdm || !arch_clkdm->clkdm_add_sleepdep)
  456. ret = -EINVAL;
  457. if (ret) {
  458. pr_debug("clockdomain: hardware cannot set/clear sleep "
  459. "dependency affecting %s from %s\n", clkdm1->name,
  460. clkdm2->name);
  461. return ret;
  462. }
  463. if (atomic_inc_return(&cd->sleepdep_usecount) == 1) {
  464. pr_debug("clockdomain: will prevent %s from sleeping if %s "
  465. "is active\n", clkdm1->name, clkdm2->name);
  466. ret = arch_clkdm->clkdm_add_sleepdep(clkdm1, clkdm2);
  467. }
  468. return ret;
  469. }
  470. /**
  471. * clkdm_del_sleepdep - remove a sleep dependency from clkdm2 to clkdm1
  472. * @clkdm1: prevent this struct clockdomain * from sleeping (dependent)
  473. * @clkdm2: when this struct clockdomain * is active (source)
  474. *
  475. * Allow @clkdm1 to automatically go inactive (and then to retention or
  476. * off), independent of the activity state of @clkdm2. Returns -EINVAL
  477. * if presented with invalid clockdomain pointers or called on a machine
  478. * that does not support software-configurable hardware sleep dependencies,
  479. * -ENOENT if the specified dependency cannot be cleared in hardware, or
  480. * 0 upon success.
  481. */
  482. int clkdm_del_sleepdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2)
  483. {
  484. struct clkdm_dep *cd;
  485. int ret = 0;
  486. if (!clkdm1 || !clkdm2)
  487. return -EINVAL;
  488. cd = _clkdm_deps_lookup(clkdm2, clkdm1->sleepdep_srcs);
  489. if (IS_ERR(cd))
  490. ret = PTR_ERR(cd);
  491. if (!arch_clkdm || !arch_clkdm->clkdm_del_sleepdep)
  492. ret = -EINVAL;
  493. if (ret) {
  494. pr_debug("clockdomain: hardware cannot set/clear sleep "
  495. "dependency affecting %s from %s\n", clkdm1->name,
  496. clkdm2->name);
  497. return ret;
  498. }
  499. if (atomic_dec_return(&cd->sleepdep_usecount) == 0) {
  500. pr_debug("clockdomain: will no longer prevent %s from "
  501. "sleeping if %s is active\n", clkdm1->name,
  502. clkdm2->name);
  503. ret = arch_clkdm->clkdm_del_sleepdep(clkdm1, clkdm2);
  504. }
  505. return ret;
  506. }
  507. /**
  508. * clkdm_read_sleepdep - read sleep dependency state from clkdm2 to clkdm1
  509. * @clkdm1: prevent this struct clockdomain * from sleeping (dependent)
  510. * @clkdm2: when this struct clockdomain * is active (source)
  511. *
  512. * Return 1 if a hardware sleep dependency exists wherein @clkdm1 will
  513. * not be allowed to automatically go inactive if @clkdm2 is active;
  514. * 0 if @clkdm1's automatic power state inactivity transition is independent
  515. * of @clkdm2's; -EINVAL if either clockdomain pointer is invalid or called
  516. * on a machine that does not support software-configurable hardware sleep
  517. * dependencies; or -ENOENT if the hardware is incapable.
  518. *
  519. * REVISIT: Currently this function only represents software-controllable
  520. * sleep dependencies. Sleep dependencies fixed in hardware are not
  521. * yet handled here.
  522. */
  523. int clkdm_read_sleepdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2)
  524. {
  525. struct clkdm_dep *cd;
  526. int ret = 0;
  527. if (!clkdm1 || !clkdm2)
  528. return -EINVAL;
  529. cd = _clkdm_deps_lookup(clkdm2, clkdm1->sleepdep_srcs);
  530. if (IS_ERR(cd))
  531. ret = PTR_ERR(cd);
  532. if (!arch_clkdm || !arch_clkdm->clkdm_read_sleepdep)
  533. ret = -EINVAL;
  534. if (ret) {
  535. pr_debug("clockdomain: hardware cannot set/clear sleep "
  536. "dependency affecting %s from %s\n", clkdm1->name,
  537. clkdm2->name);
  538. return ret;
  539. }
  540. /* XXX It's faster to return the atomic sleepdep_usecount */
  541. return arch_clkdm->clkdm_read_sleepdep(clkdm1, clkdm2);
  542. }
  543. /**
  544. * clkdm_clear_all_sleepdeps - remove all sleep dependencies from target clkdm
  545. * @clkdm: struct clockdomain * to remove all sleep dependencies from
  546. *
  547. * Remove all inter-clockdomain sleep dependencies that could prevent
  548. * @clkdm from idling. Intended to be used during boot to initialize the
  549. * PRCM to a known state, after all clockdomains are put into swsup idle
  550. * and woken up. Returns -EINVAL if @clkdm pointer is invalid, or
  551. * 0 upon success.
  552. */
  553. int clkdm_clear_all_sleepdeps(struct clockdomain *clkdm)
  554. {
  555. if (!clkdm)
  556. return -EINVAL;
  557. if (!arch_clkdm || !arch_clkdm->clkdm_clear_all_sleepdeps)
  558. return -EINVAL;
  559. return arch_clkdm->clkdm_clear_all_sleepdeps(clkdm);
  560. }
  561. /**
  562. * clkdm_sleep - force clockdomain sleep transition
  563. * @clkdm: struct clockdomain *
  564. *
  565. * Instruct the CM to force a sleep transition on the specified
  566. * clockdomain @clkdm. Returns -EINVAL if @clkdm is NULL or if
  567. * clockdomain does not support software-initiated sleep; 0 upon
  568. * success.
  569. */
  570. int clkdm_sleep(struct clockdomain *clkdm)
  571. {
  572. if (!clkdm)
  573. return -EINVAL;
  574. if (!(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) {
  575. pr_debug("clockdomain: %s does not support forcing "
  576. "sleep via software\n", clkdm->name);
  577. return -EINVAL;
  578. }
  579. if (!arch_clkdm || !arch_clkdm->clkdm_sleep)
  580. return -EINVAL;
  581. pr_debug("clockdomain: forcing sleep on %s\n", clkdm->name);
  582. clkdm->_flags &= ~_CLKDM_FLAG_HWSUP_ENABLED;
  583. return arch_clkdm->clkdm_sleep(clkdm);
  584. }
  585. /**
  586. * clkdm_wakeup - force clockdomain wakeup transition
  587. * @clkdm: struct clockdomain *
  588. *
  589. * Instruct the CM to force a wakeup transition on the specified
  590. * clockdomain @clkdm. Returns -EINVAL if @clkdm is NULL or if the
  591. * clockdomain does not support software-controlled wakeup; 0 upon
  592. * success.
  593. */
  594. int clkdm_wakeup(struct clockdomain *clkdm)
  595. {
  596. if (!clkdm)
  597. return -EINVAL;
  598. if (!(clkdm->flags & CLKDM_CAN_FORCE_WAKEUP)) {
  599. pr_debug("clockdomain: %s does not support forcing "
  600. "wakeup via software\n", clkdm->name);
  601. return -EINVAL;
  602. }
  603. if (!arch_clkdm || !arch_clkdm->clkdm_wakeup)
  604. return -EINVAL;
  605. pr_debug("clockdomain: forcing wakeup on %s\n", clkdm->name);
  606. clkdm->_flags &= ~_CLKDM_FLAG_HWSUP_ENABLED;
  607. return arch_clkdm->clkdm_wakeup(clkdm);
  608. }
  609. /**
  610. * clkdm_allow_idle - enable hwsup idle transitions for clkdm
  611. * @clkdm: struct clockdomain *
  612. *
  613. * Allow the hardware to automatically switch the clockdomain @clkdm into
  614. * active or idle states, as needed by downstream clocks. If the
  615. * clockdomain has any downstream clocks enabled in the clock
  616. * framework, wkdep/sleepdep autodependencies are added; this is so
  617. * device drivers can read and write to the device. No return value.
  618. */
  619. void clkdm_allow_idle(struct clockdomain *clkdm)
  620. {
  621. if (!clkdm)
  622. return;
  623. if (!(clkdm->flags & CLKDM_CAN_ENABLE_AUTO)) {
  624. pr_debug("clock: automatic idle transitions cannot be enabled "
  625. "on clockdomain %s\n", clkdm->name);
  626. return;
  627. }
  628. if (!arch_clkdm || !arch_clkdm->clkdm_allow_idle)
  629. return;
  630. pr_debug("clockdomain: enabling automatic idle transitions for %s\n",
  631. clkdm->name);
  632. clkdm->_flags |= _CLKDM_FLAG_HWSUP_ENABLED;
  633. arch_clkdm->clkdm_allow_idle(clkdm);
  634. pwrdm_clkdm_state_switch(clkdm);
  635. }
  636. /**
  637. * clkdm_deny_idle - disable hwsup idle transitions for clkdm
  638. * @clkdm: struct clockdomain *
  639. *
  640. * Prevent the hardware from automatically switching the clockdomain
  641. * @clkdm into inactive or idle states. If the clockdomain has
  642. * downstream clocks enabled in the clock framework, wkdep/sleepdep
  643. * autodependencies are removed. No return value.
  644. */
  645. void clkdm_deny_idle(struct clockdomain *clkdm)
  646. {
  647. if (!clkdm)
  648. return;
  649. if (!(clkdm->flags & CLKDM_CAN_DISABLE_AUTO)) {
  650. pr_debug("clockdomain: automatic idle transitions cannot be "
  651. "disabled on %s\n", clkdm->name);
  652. return;
  653. }
  654. if (!arch_clkdm || !arch_clkdm->clkdm_deny_idle)
  655. return;
  656. pr_debug("clockdomain: disabling automatic idle transitions for %s\n",
  657. clkdm->name);
  658. clkdm->_flags &= ~_CLKDM_FLAG_HWSUP_ENABLED;
  659. arch_clkdm->clkdm_deny_idle(clkdm);
  660. }
  661. /**
  662. * clkdm_in_hwsup - is clockdomain @clkdm have hardware-supervised idle enabled?
  663. * @clkdm: struct clockdomain *
  664. *
  665. * Returns true if clockdomain @clkdm currently has
  666. * hardware-supervised idle enabled, or false if it does not or if
  667. * @clkdm is NULL. It is only valid to call this function after
  668. * clkdm_init() has been called. This function does not actually read
  669. * bits from the hardware; it instead tests an in-memory flag that is
  670. * changed whenever the clockdomain code changes the auto-idle mode.
  671. */
  672. bool clkdm_in_hwsup(struct clockdomain *clkdm)
  673. {
  674. if (!clkdm)
  675. return false;
  676. return (clkdm->_flags & _CLKDM_FLAG_HWSUP_ENABLED) ? true : false;
  677. }
  678. /* Clockdomain-to-clock/hwmod framework interface code */
  679. static int _clkdm_clk_hwmod_enable(struct clockdomain *clkdm)
  680. {
  681. if (!clkdm || !arch_clkdm || !arch_clkdm->clkdm_clk_enable)
  682. return -EINVAL;
  683. /*
  684. * For arch's with no autodeps, clkcm_clk_enable
  685. * should be called for every clock instance or hwmod that is
  686. * enabled, so the clkdm can be force woken up.
  687. */
  688. if ((atomic_inc_return(&clkdm->usecount) > 1) && autodeps)
  689. return 0;
  690. arch_clkdm->clkdm_clk_enable(clkdm);
  691. pwrdm_wait_transition(clkdm->pwrdm.ptr);
  692. pwrdm_clkdm_state_switch(clkdm);
  693. pr_debug("clockdomain: clkdm %s: enabled\n", clkdm->name);
  694. return 0;
  695. }
  696. static int _clkdm_clk_hwmod_disable(struct clockdomain *clkdm)
  697. {
  698. if (!clkdm || !arch_clkdm || !arch_clkdm->clkdm_clk_disable)
  699. return -EINVAL;
  700. if (atomic_read(&clkdm->usecount) == 0) {
  701. WARN_ON(1); /* underflow */
  702. return -ERANGE;
  703. }
  704. if (atomic_dec_return(&clkdm->usecount) > 0)
  705. return 0;
  706. arch_clkdm->clkdm_clk_disable(clkdm);
  707. pwrdm_clkdm_state_switch(clkdm);
  708. pr_debug("clockdomain: clkdm %s: disabled\n", clkdm->name);
  709. return 0;
  710. }
  711. /**
  712. * clkdm_clk_enable - add an enabled downstream clock to this clkdm
  713. * @clkdm: struct clockdomain *
  714. * @clk: struct clk * of the enabled downstream clock
  715. *
  716. * Increment the usecount of the clockdomain @clkdm and ensure that it
  717. * is awake before @clk is enabled. Intended to be called by
  718. * clk_enable() code. If the clockdomain is in software-supervised
  719. * idle mode, force the clockdomain to wake. If the clockdomain is in
  720. * hardware-supervised idle mode, add clkdm-pwrdm autodependencies, to
  721. * ensure that devices in the clockdomain can be read from/written to
  722. * by on-chip processors. Returns -EINVAL if passed null pointers;
  723. * returns 0 upon success or if the clockdomain is in hwsup idle mode.
  724. */
  725. int clkdm_clk_enable(struct clockdomain *clkdm, struct clk *clk)
  726. {
  727. /*
  728. * XXX Rewrite this code to maintain a list of enabled
  729. * downstream clocks for debugging purposes?
  730. */
  731. if (!clk)
  732. return -EINVAL;
  733. return _clkdm_clk_hwmod_enable(clkdm);
  734. }
  735. /**
  736. * clkdm_clk_disable - remove an enabled downstream clock from this clkdm
  737. * @clkdm: struct clockdomain *
  738. * @clk: struct clk * of the disabled downstream clock
  739. *
  740. * Decrement the usecount of this clockdomain @clkdm when @clk is
  741. * disabled. Intended to be called by clk_disable() code. If the
  742. * clockdomain usecount goes to 0, put the clockdomain to sleep
  743. * (software-supervised mode) or remove the clkdm autodependencies
  744. * (hardware-supervised mode). Returns -EINVAL if passed null
  745. * pointers; -ERANGE if the @clkdm usecount underflows; or returns 0
  746. * upon success or if the clockdomain is in hwsup idle mode.
  747. */
  748. int clkdm_clk_disable(struct clockdomain *clkdm, struct clk *clk)
  749. {
  750. /*
  751. * XXX Rewrite this code to maintain a list of enabled
  752. * downstream clocks for debugging purposes?
  753. */
  754. if (!clk)
  755. return -EINVAL;
  756. return _clkdm_clk_hwmod_disable(clkdm);
  757. }
  758. /**
  759. * clkdm_hwmod_enable - add an enabled downstream hwmod to this clkdm
  760. * @clkdm: struct clockdomain *
  761. * @oh: struct omap_hwmod * of the enabled downstream hwmod
  762. *
  763. * Increment the usecount of the clockdomain @clkdm and ensure that it
  764. * is awake before @oh is enabled. Intended to be called by
  765. * module_enable() code.
  766. * If the clockdomain is in software-supervised idle mode, force the
  767. * clockdomain to wake. If the clockdomain is in hardware-supervised idle
  768. * mode, add clkdm-pwrdm autodependencies, to ensure that devices in the
  769. * clockdomain can be read from/written to by on-chip processors.
  770. * Returns -EINVAL if passed null pointers;
  771. * returns 0 upon success or if the clockdomain is in hwsup idle mode.
  772. */
  773. int clkdm_hwmod_enable(struct clockdomain *clkdm, struct omap_hwmod *oh)
  774. {
  775. /* The clkdm attribute does not exist yet prior OMAP4 */
  776. if (cpu_is_omap24xx() || cpu_is_omap34xx())
  777. return 0;
  778. /*
  779. * XXX Rewrite this code to maintain a list of enabled
  780. * downstream hwmods for debugging purposes?
  781. */
  782. if (!oh)
  783. return -EINVAL;
  784. return _clkdm_clk_hwmod_enable(clkdm);
  785. }
  786. /**
  787. * clkdm_hwmod_disable - remove an enabled downstream hwmod from this clkdm
  788. * @clkdm: struct clockdomain *
  789. * @oh: struct omap_hwmod * of the disabled downstream hwmod
  790. *
  791. * Decrement the usecount of this clockdomain @clkdm when @oh is
  792. * disabled. Intended to be called by module_disable() code.
  793. * If the clockdomain usecount goes to 0, put the clockdomain to sleep
  794. * (software-supervised mode) or remove the clkdm autodependencies
  795. * (hardware-supervised mode).
  796. * Returns -EINVAL if passed null pointers; -ERANGE if the @clkdm usecount
  797. * underflows; or returns 0 upon success or if the clockdomain is in hwsup
  798. * idle mode.
  799. */
  800. int clkdm_hwmod_disable(struct clockdomain *clkdm, struct omap_hwmod *oh)
  801. {
  802. /* The clkdm attribute does not exist yet prior OMAP4 */
  803. if (cpu_is_omap24xx() || cpu_is_omap34xx())
  804. return 0;
  805. /*
  806. * XXX Rewrite this code to maintain a list of enabled
  807. * downstream hwmods for debugging purposes?
  808. */
  809. if (!oh)
  810. return -EINVAL;
  811. return _clkdm_clk_hwmod_disable(clkdm);
  812. }