clockdomain.c 29 KB

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