clk.c 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130
  1. /*
  2. * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
  3. * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Standard functionality for the common clock API. See Documentation/clk.txt
  10. */
  11. #include <linux/clk-private.h>
  12. #include <linux/module.h>
  13. #include <linux/mutex.h>
  14. #include <linux/spinlock.h>
  15. #include <linux/err.h>
  16. #include <linux/list.h>
  17. #include <linux/slab.h>
  18. #include <linux/of.h>
  19. #include <linux/device.h>
  20. #include <linux/init.h>
  21. #include <linux/sched.h>
  22. static DEFINE_SPINLOCK(enable_lock);
  23. static DEFINE_MUTEX(prepare_lock);
  24. static struct task_struct *prepare_owner;
  25. static struct task_struct *enable_owner;
  26. static int prepare_refcnt;
  27. static int enable_refcnt;
  28. static HLIST_HEAD(clk_root_list);
  29. static HLIST_HEAD(clk_orphan_list);
  30. static LIST_HEAD(clk_notifier_list);
  31. /*** locking ***/
  32. static void clk_prepare_lock(void)
  33. {
  34. if (!mutex_trylock(&prepare_lock)) {
  35. if (prepare_owner == current) {
  36. prepare_refcnt++;
  37. return;
  38. }
  39. mutex_lock(&prepare_lock);
  40. }
  41. WARN_ON_ONCE(prepare_owner != NULL);
  42. WARN_ON_ONCE(prepare_refcnt != 0);
  43. prepare_owner = current;
  44. prepare_refcnt = 1;
  45. }
  46. static void clk_prepare_unlock(void)
  47. {
  48. WARN_ON_ONCE(prepare_owner != current);
  49. WARN_ON_ONCE(prepare_refcnt == 0);
  50. if (--prepare_refcnt)
  51. return;
  52. prepare_owner = NULL;
  53. mutex_unlock(&prepare_lock);
  54. }
  55. static unsigned long clk_enable_lock(void)
  56. {
  57. unsigned long flags;
  58. if (!spin_trylock_irqsave(&enable_lock, flags)) {
  59. if (enable_owner == current) {
  60. enable_refcnt++;
  61. return flags;
  62. }
  63. spin_lock_irqsave(&enable_lock, flags);
  64. }
  65. WARN_ON_ONCE(enable_owner != NULL);
  66. WARN_ON_ONCE(enable_refcnt != 0);
  67. enable_owner = current;
  68. enable_refcnt = 1;
  69. return flags;
  70. }
  71. static void clk_enable_unlock(unsigned long flags)
  72. {
  73. WARN_ON_ONCE(enable_owner != current);
  74. WARN_ON_ONCE(enable_refcnt == 0);
  75. if (--enable_refcnt)
  76. return;
  77. enable_owner = NULL;
  78. spin_unlock_irqrestore(&enable_lock, flags);
  79. }
  80. /*** debugfs support ***/
  81. #ifdef CONFIG_COMMON_CLK_DEBUG
  82. #include <linux/debugfs.h>
  83. static struct dentry *rootdir;
  84. static struct dentry *orphandir;
  85. static int inited = 0;
  86. static void clk_summary_show_one(struct seq_file *s, struct clk *c, int level)
  87. {
  88. if (!c)
  89. return;
  90. seq_printf(s, "%*s%-*s %-11d %-12d %-10lu",
  91. level * 3 + 1, "",
  92. 30 - level * 3, c->name,
  93. c->enable_count, c->prepare_count, c->rate);
  94. seq_printf(s, "\n");
  95. }
  96. static void clk_summary_show_subtree(struct seq_file *s, struct clk *c,
  97. int level)
  98. {
  99. struct clk *child;
  100. if (!c)
  101. return;
  102. clk_summary_show_one(s, c, level);
  103. hlist_for_each_entry(child, &c->children, child_node)
  104. clk_summary_show_subtree(s, child, level + 1);
  105. }
  106. static int clk_summary_show(struct seq_file *s, void *data)
  107. {
  108. struct clk *c;
  109. seq_printf(s, " clock enable_cnt prepare_cnt rate\n");
  110. seq_printf(s, "---------------------------------------------------------------------\n");
  111. clk_prepare_lock();
  112. hlist_for_each_entry(c, &clk_root_list, child_node)
  113. clk_summary_show_subtree(s, c, 0);
  114. hlist_for_each_entry(c, &clk_orphan_list, child_node)
  115. clk_summary_show_subtree(s, c, 0);
  116. clk_prepare_unlock();
  117. return 0;
  118. }
  119. static int clk_summary_open(struct inode *inode, struct file *file)
  120. {
  121. return single_open(file, clk_summary_show, inode->i_private);
  122. }
  123. static const struct file_operations clk_summary_fops = {
  124. .open = clk_summary_open,
  125. .read = seq_read,
  126. .llseek = seq_lseek,
  127. .release = single_release,
  128. };
  129. static void clk_dump_one(struct seq_file *s, struct clk *c, int level)
  130. {
  131. if (!c)
  132. return;
  133. seq_printf(s, "\"%s\": { ", c->name);
  134. seq_printf(s, "\"enable_count\": %d,", c->enable_count);
  135. seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
  136. seq_printf(s, "\"rate\": %lu", c->rate);
  137. }
  138. static void clk_dump_subtree(struct seq_file *s, struct clk *c, int level)
  139. {
  140. struct clk *child;
  141. if (!c)
  142. return;
  143. clk_dump_one(s, c, level);
  144. hlist_for_each_entry(child, &c->children, child_node) {
  145. seq_printf(s, ",");
  146. clk_dump_subtree(s, child, level + 1);
  147. }
  148. seq_printf(s, "}");
  149. }
  150. static int clk_dump(struct seq_file *s, void *data)
  151. {
  152. struct clk *c;
  153. bool first_node = true;
  154. seq_printf(s, "{");
  155. clk_prepare_lock();
  156. hlist_for_each_entry(c, &clk_root_list, child_node) {
  157. if (!first_node)
  158. seq_printf(s, ",");
  159. first_node = false;
  160. clk_dump_subtree(s, c, 0);
  161. }
  162. hlist_for_each_entry(c, &clk_orphan_list, child_node) {
  163. seq_printf(s, ",");
  164. clk_dump_subtree(s, c, 0);
  165. }
  166. clk_prepare_unlock();
  167. seq_printf(s, "}");
  168. return 0;
  169. }
  170. static int clk_dump_open(struct inode *inode, struct file *file)
  171. {
  172. return single_open(file, clk_dump, inode->i_private);
  173. }
  174. static const struct file_operations clk_dump_fops = {
  175. .open = clk_dump_open,
  176. .read = seq_read,
  177. .llseek = seq_lseek,
  178. .release = single_release,
  179. };
  180. /* caller must hold prepare_lock */
  181. static int clk_debug_create_one(struct clk *clk, struct dentry *pdentry)
  182. {
  183. struct dentry *d;
  184. int ret = -ENOMEM;
  185. if (!clk || !pdentry) {
  186. ret = -EINVAL;
  187. goto out;
  188. }
  189. d = debugfs_create_dir(clk->name, pdentry);
  190. if (!d)
  191. goto out;
  192. clk->dentry = d;
  193. d = debugfs_create_u32("clk_rate", S_IRUGO, clk->dentry,
  194. (u32 *)&clk->rate);
  195. if (!d)
  196. goto err_out;
  197. d = debugfs_create_x32("clk_flags", S_IRUGO, clk->dentry,
  198. (u32 *)&clk->flags);
  199. if (!d)
  200. goto err_out;
  201. d = debugfs_create_u32("clk_prepare_count", S_IRUGO, clk->dentry,
  202. (u32 *)&clk->prepare_count);
  203. if (!d)
  204. goto err_out;
  205. d = debugfs_create_u32("clk_enable_count", S_IRUGO, clk->dentry,
  206. (u32 *)&clk->enable_count);
  207. if (!d)
  208. goto err_out;
  209. d = debugfs_create_u32("clk_notifier_count", S_IRUGO, clk->dentry,
  210. (u32 *)&clk->notifier_count);
  211. if (!d)
  212. goto err_out;
  213. ret = 0;
  214. goto out;
  215. err_out:
  216. debugfs_remove(clk->dentry);
  217. out:
  218. return ret;
  219. }
  220. /* caller must hold prepare_lock */
  221. static int clk_debug_create_subtree(struct clk *clk, struct dentry *pdentry)
  222. {
  223. struct clk *child;
  224. int ret = -EINVAL;;
  225. if (!clk || !pdentry)
  226. goto out;
  227. ret = clk_debug_create_one(clk, pdentry);
  228. if (ret)
  229. goto out;
  230. hlist_for_each_entry(child, &clk->children, child_node)
  231. clk_debug_create_subtree(child, clk->dentry);
  232. ret = 0;
  233. out:
  234. return ret;
  235. }
  236. /**
  237. * clk_debug_register - add a clk node to the debugfs clk tree
  238. * @clk: the clk being added to the debugfs clk tree
  239. *
  240. * Dynamically adds a clk to the debugfs clk tree if debugfs has been
  241. * initialized. Otherwise it bails out early since the debugfs clk tree
  242. * will be created lazily by clk_debug_init as part of a late_initcall.
  243. *
  244. * Caller must hold prepare_lock. Only clk_init calls this function (so
  245. * far) so this is taken care.
  246. */
  247. static int clk_debug_register(struct clk *clk)
  248. {
  249. struct clk *parent;
  250. struct dentry *pdentry;
  251. int ret = 0;
  252. if (!inited)
  253. goto out;
  254. parent = clk->parent;
  255. /*
  256. * Check to see if a clk is a root clk. Also check that it is
  257. * safe to add this clk to debugfs
  258. */
  259. if (!parent)
  260. if (clk->flags & CLK_IS_ROOT)
  261. pdentry = rootdir;
  262. else
  263. pdentry = orphandir;
  264. else
  265. if (parent->dentry)
  266. pdentry = parent->dentry;
  267. else
  268. goto out;
  269. ret = clk_debug_create_subtree(clk, pdentry);
  270. out:
  271. return ret;
  272. }
  273. /**
  274. * clk_debug_reparent - reparent clk node in the debugfs clk tree
  275. * @clk: the clk being reparented
  276. * @new_parent: the new clk parent, may be NULL
  277. *
  278. * Rename clk entry in the debugfs clk tree if debugfs has been
  279. * initialized. Otherwise it bails out early since the debugfs clk tree
  280. * will be created lazily by clk_debug_init as part of a late_initcall.
  281. *
  282. * Caller must hold prepare_lock.
  283. */
  284. static void clk_debug_reparent(struct clk *clk, struct clk *new_parent)
  285. {
  286. struct dentry *d;
  287. struct dentry *new_parent_d;
  288. if (!inited)
  289. return;
  290. if (new_parent)
  291. new_parent_d = new_parent->dentry;
  292. else
  293. new_parent_d = orphandir;
  294. d = debugfs_rename(clk->dentry->d_parent, clk->dentry,
  295. new_parent_d, clk->name);
  296. if (d)
  297. clk->dentry = d;
  298. else
  299. pr_debug("%s: failed to rename debugfs entry for %s\n",
  300. __func__, clk->name);
  301. }
  302. /**
  303. * clk_debug_init - lazily create the debugfs clk tree visualization
  304. *
  305. * clks are often initialized very early during boot before memory can
  306. * be dynamically allocated and well before debugfs is setup.
  307. * clk_debug_init walks the clk tree hierarchy while holding
  308. * prepare_lock and creates the topology as part of a late_initcall,
  309. * thus insuring that clks initialized very early will still be
  310. * represented in the debugfs clk tree. This function should only be
  311. * called once at boot-time, and all other clks added dynamically will
  312. * be done so with clk_debug_register.
  313. */
  314. static int __init clk_debug_init(void)
  315. {
  316. struct clk *clk;
  317. struct dentry *d;
  318. rootdir = debugfs_create_dir("clk", NULL);
  319. if (!rootdir)
  320. return -ENOMEM;
  321. d = debugfs_create_file("clk_summary", S_IRUGO, rootdir, NULL,
  322. &clk_summary_fops);
  323. if (!d)
  324. return -ENOMEM;
  325. d = debugfs_create_file("clk_dump", S_IRUGO, rootdir, NULL,
  326. &clk_dump_fops);
  327. if (!d)
  328. return -ENOMEM;
  329. orphandir = debugfs_create_dir("orphans", rootdir);
  330. if (!orphandir)
  331. return -ENOMEM;
  332. clk_prepare_lock();
  333. hlist_for_each_entry(clk, &clk_root_list, child_node)
  334. clk_debug_create_subtree(clk, rootdir);
  335. hlist_for_each_entry(clk, &clk_orphan_list, child_node)
  336. clk_debug_create_subtree(clk, orphandir);
  337. inited = 1;
  338. clk_prepare_unlock();
  339. return 0;
  340. }
  341. late_initcall(clk_debug_init);
  342. #else
  343. static inline int clk_debug_register(struct clk *clk) { return 0; }
  344. static inline void clk_debug_reparent(struct clk *clk, struct clk *new_parent)
  345. {
  346. }
  347. #endif
  348. /* caller must hold prepare_lock */
  349. static void clk_unprepare_unused_subtree(struct clk *clk)
  350. {
  351. struct clk *child;
  352. if (!clk)
  353. return;
  354. hlist_for_each_entry(child, &clk->children, child_node)
  355. clk_unprepare_unused_subtree(child);
  356. if (clk->prepare_count)
  357. return;
  358. if (clk->flags & CLK_IGNORE_UNUSED)
  359. return;
  360. if (__clk_is_prepared(clk)) {
  361. if (clk->ops->unprepare_unused)
  362. clk->ops->unprepare_unused(clk->hw);
  363. else if (clk->ops->unprepare)
  364. clk->ops->unprepare(clk->hw);
  365. }
  366. }
  367. EXPORT_SYMBOL_GPL(__clk_get_flags);
  368. /* caller must hold prepare_lock */
  369. static void clk_disable_unused_subtree(struct clk *clk)
  370. {
  371. struct clk *child;
  372. unsigned long flags;
  373. if (!clk)
  374. goto out;
  375. hlist_for_each_entry(child, &clk->children, child_node)
  376. clk_disable_unused_subtree(child);
  377. flags = clk_enable_lock();
  378. if (clk->enable_count)
  379. goto unlock_out;
  380. if (clk->flags & CLK_IGNORE_UNUSED)
  381. goto unlock_out;
  382. /*
  383. * some gate clocks have special needs during the disable-unused
  384. * sequence. call .disable_unused if available, otherwise fall
  385. * back to .disable
  386. */
  387. if (__clk_is_enabled(clk)) {
  388. if (clk->ops->disable_unused)
  389. clk->ops->disable_unused(clk->hw);
  390. else if (clk->ops->disable)
  391. clk->ops->disable(clk->hw);
  392. }
  393. unlock_out:
  394. clk_enable_unlock(flags);
  395. out:
  396. return;
  397. }
  398. static bool clk_ignore_unused;
  399. static int __init clk_ignore_unused_setup(char *__unused)
  400. {
  401. clk_ignore_unused = true;
  402. return 1;
  403. }
  404. __setup("clk_ignore_unused", clk_ignore_unused_setup);
  405. static int clk_disable_unused(void)
  406. {
  407. struct clk *clk;
  408. if (clk_ignore_unused) {
  409. pr_warn("clk: Not disabling unused clocks\n");
  410. return 0;
  411. }
  412. clk_prepare_lock();
  413. hlist_for_each_entry(clk, &clk_root_list, child_node)
  414. clk_disable_unused_subtree(clk);
  415. hlist_for_each_entry(clk, &clk_orphan_list, child_node)
  416. clk_disable_unused_subtree(clk);
  417. hlist_for_each_entry(clk, &clk_root_list, child_node)
  418. clk_unprepare_unused_subtree(clk);
  419. hlist_for_each_entry(clk, &clk_orphan_list, child_node)
  420. clk_unprepare_unused_subtree(clk);
  421. clk_prepare_unlock();
  422. return 0;
  423. }
  424. late_initcall(clk_disable_unused);
  425. /*** helper functions ***/
  426. const char *__clk_get_name(struct clk *clk)
  427. {
  428. return !clk ? NULL : clk->name;
  429. }
  430. EXPORT_SYMBOL_GPL(__clk_get_name);
  431. struct clk_hw *__clk_get_hw(struct clk *clk)
  432. {
  433. return !clk ? NULL : clk->hw;
  434. }
  435. u8 __clk_get_num_parents(struct clk *clk)
  436. {
  437. return !clk ? 0 : clk->num_parents;
  438. }
  439. struct clk *__clk_get_parent(struct clk *clk)
  440. {
  441. return !clk ? NULL : clk->parent;
  442. }
  443. unsigned int __clk_get_enable_count(struct clk *clk)
  444. {
  445. return !clk ? 0 : clk->enable_count;
  446. }
  447. unsigned int __clk_get_prepare_count(struct clk *clk)
  448. {
  449. return !clk ? 0 : clk->prepare_count;
  450. }
  451. unsigned long __clk_get_rate(struct clk *clk)
  452. {
  453. unsigned long ret;
  454. if (!clk) {
  455. ret = 0;
  456. goto out;
  457. }
  458. ret = clk->rate;
  459. if (clk->flags & CLK_IS_ROOT)
  460. goto out;
  461. if (!clk->parent)
  462. ret = 0;
  463. out:
  464. return ret;
  465. }
  466. unsigned long __clk_get_flags(struct clk *clk)
  467. {
  468. return !clk ? 0 : clk->flags;
  469. }
  470. bool __clk_is_prepared(struct clk *clk)
  471. {
  472. int ret;
  473. if (!clk)
  474. return false;
  475. /*
  476. * .is_prepared is optional for clocks that can prepare
  477. * fall back to software usage counter if it is missing
  478. */
  479. if (!clk->ops->is_prepared) {
  480. ret = clk->prepare_count ? 1 : 0;
  481. goto out;
  482. }
  483. ret = clk->ops->is_prepared(clk->hw);
  484. out:
  485. return !!ret;
  486. }
  487. bool __clk_is_enabled(struct clk *clk)
  488. {
  489. int ret;
  490. if (!clk)
  491. return false;
  492. /*
  493. * .is_enabled is only mandatory for clocks that gate
  494. * fall back to software usage counter if .is_enabled is missing
  495. */
  496. if (!clk->ops->is_enabled) {
  497. ret = clk->enable_count ? 1 : 0;
  498. goto out;
  499. }
  500. ret = clk->ops->is_enabled(clk->hw);
  501. out:
  502. return !!ret;
  503. }
  504. static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
  505. {
  506. struct clk *child;
  507. struct clk *ret;
  508. if (!strcmp(clk->name, name))
  509. return clk;
  510. hlist_for_each_entry(child, &clk->children, child_node) {
  511. ret = __clk_lookup_subtree(name, child);
  512. if (ret)
  513. return ret;
  514. }
  515. return NULL;
  516. }
  517. struct clk *__clk_lookup(const char *name)
  518. {
  519. struct clk *root_clk;
  520. struct clk *ret;
  521. if (!name)
  522. return NULL;
  523. /* search the 'proper' clk tree first */
  524. hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
  525. ret = __clk_lookup_subtree(name, root_clk);
  526. if (ret)
  527. return ret;
  528. }
  529. /* if not found, then search the orphan tree */
  530. hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
  531. ret = __clk_lookup_subtree(name, root_clk);
  532. if (ret)
  533. return ret;
  534. }
  535. return NULL;
  536. }
  537. /*** clk api ***/
  538. void __clk_unprepare(struct clk *clk)
  539. {
  540. if (!clk)
  541. return;
  542. if (WARN_ON(clk->prepare_count == 0))
  543. return;
  544. if (--clk->prepare_count > 0)
  545. return;
  546. WARN_ON(clk->enable_count > 0);
  547. if (clk->ops->unprepare)
  548. clk->ops->unprepare(clk->hw);
  549. __clk_unprepare(clk->parent);
  550. }
  551. /**
  552. * clk_unprepare - undo preparation of a clock source
  553. * @clk: the clk being unprepare
  554. *
  555. * clk_unprepare may sleep, which differentiates it from clk_disable. In a
  556. * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
  557. * if the operation may sleep. One example is a clk which is accessed over
  558. * I2c. In the complex case a clk gate operation may require a fast and a slow
  559. * part. It is this reason that clk_unprepare and clk_disable are not mutually
  560. * exclusive. In fact clk_disable must be called before clk_unprepare.
  561. */
  562. void clk_unprepare(struct clk *clk)
  563. {
  564. clk_prepare_lock();
  565. __clk_unprepare(clk);
  566. clk_prepare_unlock();
  567. }
  568. EXPORT_SYMBOL_GPL(clk_unprepare);
  569. int __clk_prepare(struct clk *clk)
  570. {
  571. int ret = 0;
  572. if (!clk)
  573. return 0;
  574. if (clk->prepare_count == 0) {
  575. ret = __clk_prepare(clk->parent);
  576. if (ret)
  577. return ret;
  578. if (clk->ops->prepare) {
  579. ret = clk->ops->prepare(clk->hw);
  580. if (ret) {
  581. __clk_unprepare(clk->parent);
  582. return ret;
  583. }
  584. }
  585. }
  586. clk->prepare_count++;
  587. return 0;
  588. }
  589. /**
  590. * clk_prepare - prepare a clock source
  591. * @clk: the clk being prepared
  592. *
  593. * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
  594. * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
  595. * operation may sleep. One example is a clk which is accessed over I2c. In
  596. * the complex case a clk ungate operation may require a fast and a slow part.
  597. * It is this reason that clk_prepare and clk_enable are not mutually
  598. * exclusive. In fact clk_prepare must be called before clk_enable.
  599. * Returns 0 on success, -EERROR otherwise.
  600. */
  601. int clk_prepare(struct clk *clk)
  602. {
  603. int ret;
  604. clk_prepare_lock();
  605. ret = __clk_prepare(clk);
  606. clk_prepare_unlock();
  607. return ret;
  608. }
  609. EXPORT_SYMBOL_GPL(clk_prepare);
  610. static void __clk_disable(struct clk *clk)
  611. {
  612. if (!clk)
  613. return;
  614. if (WARN_ON(IS_ERR(clk)))
  615. return;
  616. if (WARN_ON(clk->enable_count == 0))
  617. return;
  618. if (--clk->enable_count > 0)
  619. return;
  620. if (clk->ops->disable)
  621. clk->ops->disable(clk->hw);
  622. __clk_disable(clk->parent);
  623. }
  624. /**
  625. * clk_disable - gate a clock
  626. * @clk: the clk being gated
  627. *
  628. * clk_disable must not sleep, which differentiates it from clk_unprepare. In
  629. * a simple case, clk_disable can be used instead of clk_unprepare to gate a
  630. * clk if the operation is fast and will never sleep. One example is a
  631. * SoC-internal clk which is controlled via simple register writes. In the
  632. * complex case a clk gate operation may require a fast and a slow part. It is
  633. * this reason that clk_unprepare and clk_disable are not mutually exclusive.
  634. * In fact clk_disable must be called before clk_unprepare.
  635. */
  636. void clk_disable(struct clk *clk)
  637. {
  638. unsigned long flags;
  639. flags = clk_enable_lock();
  640. __clk_disable(clk);
  641. clk_enable_unlock(flags);
  642. }
  643. EXPORT_SYMBOL_GPL(clk_disable);
  644. static int __clk_enable(struct clk *clk)
  645. {
  646. int ret = 0;
  647. if (!clk)
  648. return 0;
  649. if (WARN_ON(clk->prepare_count == 0))
  650. return -ESHUTDOWN;
  651. if (clk->enable_count == 0) {
  652. ret = __clk_enable(clk->parent);
  653. if (ret)
  654. return ret;
  655. if (clk->ops->enable) {
  656. ret = clk->ops->enable(clk->hw);
  657. if (ret) {
  658. __clk_disable(clk->parent);
  659. return ret;
  660. }
  661. }
  662. }
  663. clk->enable_count++;
  664. return 0;
  665. }
  666. /**
  667. * clk_enable - ungate a clock
  668. * @clk: the clk being ungated
  669. *
  670. * clk_enable must not sleep, which differentiates it from clk_prepare. In a
  671. * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
  672. * if the operation will never sleep. One example is a SoC-internal clk which
  673. * is controlled via simple register writes. In the complex case a clk ungate
  674. * operation may require a fast and a slow part. It is this reason that
  675. * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
  676. * must be called before clk_enable. Returns 0 on success, -EERROR
  677. * otherwise.
  678. */
  679. int clk_enable(struct clk *clk)
  680. {
  681. unsigned long flags;
  682. int ret;
  683. flags = clk_enable_lock();
  684. ret = __clk_enable(clk);
  685. clk_enable_unlock(flags);
  686. return ret;
  687. }
  688. EXPORT_SYMBOL_GPL(clk_enable);
  689. /**
  690. * __clk_round_rate - round the given rate for a clk
  691. * @clk: round the rate of this clock
  692. *
  693. * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate
  694. */
  695. unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
  696. {
  697. unsigned long parent_rate = 0;
  698. if (!clk)
  699. return 0;
  700. if (!clk->ops->round_rate) {
  701. if (clk->flags & CLK_SET_RATE_PARENT)
  702. return __clk_round_rate(clk->parent, rate);
  703. else
  704. return clk->rate;
  705. }
  706. if (clk->parent)
  707. parent_rate = clk->parent->rate;
  708. return clk->ops->round_rate(clk->hw, rate, &parent_rate);
  709. }
  710. /**
  711. * clk_round_rate - round the given rate for a clk
  712. * @clk: the clk for which we are rounding a rate
  713. * @rate: the rate which is to be rounded
  714. *
  715. * Takes in a rate as input and rounds it to a rate that the clk can actually
  716. * use which is then returned. If clk doesn't support round_rate operation
  717. * then the parent rate is returned.
  718. */
  719. long clk_round_rate(struct clk *clk, unsigned long rate)
  720. {
  721. unsigned long ret;
  722. clk_prepare_lock();
  723. ret = __clk_round_rate(clk, rate);
  724. clk_prepare_unlock();
  725. return ret;
  726. }
  727. EXPORT_SYMBOL_GPL(clk_round_rate);
  728. /**
  729. * __clk_notify - call clk notifier chain
  730. * @clk: struct clk * that is changing rate
  731. * @msg: clk notifier type (see include/linux/clk.h)
  732. * @old_rate: old clk rate
  733. * @new_rate: new clk rate
  734. *
  735. * Triggers a notifier call chain on the clk rate-change notification
  736. * for 'clk'. Passes a pointer to the struct clk and the previous
  737. * and current rates to the notifier callback. Intended to be called by
  738. * internal clock code only. Returns NOTIFY_DONE from the last driver
  739. * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
  740. * a driver returns that.
  741. */
  742. static int __clk_notify(struct clk *clk, unsigned long msg,
  743. unsigned long old_rate, unsigned long new_rate)
  744. {
  745. struct clk_notifier *cn;
  746. struct clk_notifier_data cnd;
  747. int ret = NOTIFY_DONE;
  748. cnd.clk = clk;
  749. cnd.old_rate = old_rate;
  750. cnd.new_rate = new_rate;
  751. list_for_each_entry(cn, &clk_notifier_list, node) {
  752. if (cn->clk == clk) {
  753. ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
  754. &cnd);
  755. break;
  756. }
  757. }
  758. return ret;
  759. }
  760. /**
  761. * __clk_recalc_rates
  762. * @clk: first clk in the subtree
  763. * @msg: notification type (see include/linux/clk.h)
  764. *
  765. * Walks the subtree of clks starting with clk and recalculates rates as it
  766. * goes. Note that if a clk does not implement the .recalc_rate callback then
  767. * it is assumed that the clock will take on the rate of it's parent.
  768. *
  769. * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
  770. * if necessary.
  771. *
  772. * Caller must hold prepare_lock.
  773. */
  774. static void __clk_recalc_rates(struct clk *clk, unsigned long msg)
  775. {
  776. unsigned long old_rate;
  777. unsigned long parent_rate = 0;
  778. struct clk *child;
  779. old_rate = clk->rate;
  780. if (clk->parent)
  781. parent_rate = clk->parent->rate;
  782. if (clk->ops->recalc_rate)
  783. clk->rate = clk->ops->recalc_rate(clk->hw, parent_rate);
  784. else
  785. clk->rate = parent_rate;
  786. /*
  787. * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
  788. * & ABORT_RATE_CHANGE notifiers
  789. */
  790. if (clk->notifier_count && msg)
  791. __clk_notify(clk, msg, old_rate, clk->rate);
  792. hlist_for_each_entry(child, &clk->children, child_node)
  793. __clk_recalc_rates(child, msg);
  794. }
  795. /**
  796. * clk_get_rate - return the rate of clk
  797. * @clk: the clk whose rate is being returned
  798. *
  799. * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
  800. * is set, which means a recalc_rate will be issued.
  801. * If clk is NULL then returns 0.
  802. */
  803. unsigned long clk_get_rate(struct clk *clk)
  804. {
  805. unsigned long rate;
  806. clk_prepare_lock();
  807. if (clk && (clk->flags & CLK_GET_RATE_NOCACHE))
  808. __clk_recalc_rates(clk, 0);
  809. rate = __clk_get_rate(clk);
  810. clk_prepare_unlock();
  811. return rate;
  812. }
  813. EXPORT_SYMBOL_GPL(clk_get_rate);
  814. /**
  815. * __clk_speculate_rates
  816. * @clk: first clk in the subtree
  817. * @parent_rate: the "future" rate of clk's parent
  818. *
  819. * Walks the subtree of clks starting with clk, speculating rates as it
  820. * goes and firing off PRE_RATE_CHANGE notifications as necessary.
  821. *
  822. * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
  823. * pre-rate change notifications and returns early if no clks in the
  824. * subtree have subscribed to the notifications. Note that if a clk does not
  825. * implement the .recalc_rate callback then it is assumed that the clock will
  826. * take on the rate of it's parent.
  827. *
  828. * Caller must hold prepare_lock.
  829. */
  830. static int __clk_speculate_rates(struct clk *clk, unsigned long parent_rate)
  831. {
  832. struct clk *child;
  833. unsigned long new_rate;
  834. int ret = NOTIFY_DONE;
  835. if (clk->ops->recalc_rate)
  836. new_rate = clk->ops->recalc_rate(clk->hw, parent_rate);
  837. else
  838. new_rate = parent_rate;
  839. /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
  840. if (clk->notifier_count)
  841. ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate);
  842. if (ret & NOTIFY_STOP_MASK)
  843. goto out;
  844. hlist_for_each_entry(child, &clk->children, child_node) {
  845. ret = __clk_speculate_rates(child, new_rate);
  846. if (ret & NOTIFY_STOP_MASK)
  847. break;
  848. }
  849. out:
  850. return ret;
  851. }
  852. static void clk_calc_subtree(struct clk *clk, unsigned long new_rate)
  853. {
  854. struct clk *child;
  855. clk->new_rate = new_rate;
  856. hlist_for_each_entry(child, &clk->children, child_node) {
  857. if (child->ops->recalc_rate)
  858. child->new_rate = child->ops->recalc_rate(child->hw, new_rate);
  859. else
  860. child->new_rate = new_rate;
  861. clk_calc_subtree(child, child->new_rate);
  862. }
  863. }
  864. /*
  865. * calculate the new rates returning the topmost clock that has to be
  866. * changed.
  867. */
  868. static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
  869. {
  870. struct clk *top = clk;
  871. unsigned long best_parent_rate = 0;
  872. unsigned long new_rate;
  873. /* sanity */
  874. if (IS_ERR_OR_NULL(clk))
  875. return NULL;
  876. /* save parent rate, if it exists */
  877. if (clk->parent)
  878. best_parent_rate = clk->parent->rate;
  879. /* never propagate up to the parent */
  880. if (!(clk->flags & CLK_SET_RATE_PARENT)) {
  881. if (!clk->ops->round_rate) {
  882. clk->new_rate = clk->rate;
  883. return NULL;
  884. }
  885. new_rate = clk->ops->round_rate(clk->hw, rate, &best_parent_rate);
  886. goto out;
  887. }
  888. /* need clk->parent from here on out */
  889. if (!clk->parent) {
  890. pr_debug("%s: %s has NULL parent\n", __func__, clk->name);
  891. return NULL;
  892. }
  893. if (!clk->ops->round_rate) {
  894. top = clk_calc_new_rates(clk->parent, rate);
  895. new_rate = clk->parent->new_rate;
  896. goto out;
  897. }
  898. new_rate = clk->ops->round_rate(clk->hw, rate, &best_parent_rate);
  899. if (best_parent_rate != clk->parent->rate) {
  900. top = clk_calc_new_rates(clk->parent, best_parent_rate);
  901. goto out;
  902. }
  903. out:
  904. clk_calc_subtree(clk, new_rate);
  905. return top;
  906. }
  907. /*
  908. * Notify about rate changes in a subtree. Always walk down the whole tree
  909. * so that in case of an error we can walk down the whole tree again and
  910. * abort the change.
  911. */
  912. static struct clk *clk_propagate_rate_change(struct clk *clk, unsigned long event)
  913. {
  914. struct clk *child, *fail_clk = NULL;
  915. int ret = NOTIFY_DONE;
  916. if (clk->rate == clk->new_rate)
  917. return NULL;
  918. if (clk->notifier_count) {
  919. ret = __clk_notify(clk, event, clk->rate, clk->new_rate);
  920. if (ret & NOTIFY_STOP_MASK)
  921. fail_clk = clk;
  922. }
  923. hlist_for_each_entry(child, &clk->children, child_node) {
  924. clk = clk_propagate_rate_change(child, event);
  925. if (clk)
  926. fail_clk = clk;
  927. }
  928. return fail_clk;
  929. }
  930. /*
  931. * walk down a subtree and set the new rates notifying the rate
  932. * change on the way
  933. */
  934. static void clk_change_rate(struct clk *clk)
  935. {
  936. struct clk *child;
  937. unsigned long old_rate;
  938. unsigned long best_parent_rate = 0;
  939. old_rate = clk->rate;
  940. if (clk->parent)
  941. best_parent_rate = clk->parent->rate;
  942. if (clk->ops->set_rate)
  943. clk->ops->set_rate(clk->hw, clk->new_rate, best_parent_rate);
  944. if (clk->ops->recalc_rate)
  945. clk->rate = clk->ops->recalc_rate(clk->hw, best_parent_rate);
  946. else
  947. clk->rate = best_parent_rate;
  948. if (clk->notifier_count && old_rate != clk->rate)
  949. __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
  950. hlist_for_each_entry(child, &clk->children, child_node)
  951. clk_change_rate(child);
  952. }
  953. /**
  954. * clk_set_rate - specify a new rate for clk
  955. * @clk: the clk whose rate is being changed
  956. * @rate: the new rate for clk
  957. *
  958. * In the simplest case clk_set_rate will only adjust the rate of clk.
  959. *
  960. * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
  961. * propagate up to clk's parent; whether or not this happens depends on the
  962. * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
  963. * after calling .round_rate then upstream parent propagation is ignored. If
  964. * *parent_rate comes back with a new rate for clk's parent then we propagate
  965. * up to clk's parent and set it's rate. Upward propagation will continue
  966. * until either a clk does not support the CLK_SET_RATE_PARENT flag or
  967. * .round_rate stops requesting changes to clk's parent_rate.
  968. *
  969. * Rate changes are accomplished via tree traversal that also recalculates the
  970. * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
  971. *
  972. * Returns 0 on success, -EERROR otherwise.
  973. */
  974. int clk_set_rate(struct clk *clk, unsigned long rate)
  975. {
  976. struct clk *top, *fail_clk;
  977. int ret = 0;
  978. /* prevent racing with updates to the clock topology */
  979. clk_prepare_lock();
  980. /* bail early if nothing to do */
  981. if (rate == clk->rate)
  982. goto out;
  983. if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count) {
  984. ret = -EBUSY;
  985. goto out;
  986. }
  987. /* calculate new rates and get the topmost changed clock */
  988. top = clk_calc_new_rates(clk, rate);
  989. if (!top) {
  990. ret = -EINVAL;
  991. goto out;
  992. }
  993. /* notify that we are about to change rates */
  994. fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
  995. if (fail_clk) {
  996. pr_warn("%s: failed to set %s rate\n", __func__,
  997. fail_clk->name);
  998. clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
  999. ret = -EBUSY;
  1000. goto out;
  1001. }
  1002. /* change the rates */
  1003. clk_change_rate(top);
  1004. out:
  1005. clk_prepare_unlock();
  1006. return ret;
  1007. }
  1008. EXPORT_SYMBOL_GPL(clk_set_rate);
  1009. /**
  1010. * clk_get_parent - return the parent of a clk
  1011. * @clk: the clk whose parent gets returned
  1012. *
  1013. * Simply returns clk->parent. Returns NULL if clk is NULL.
  1014. */
  1015. struct clk *clk_get_parent(struct clk *clk)
  1016. {
  1017. struct clk *parent;
  1018. clk_prepare_lock();
  1019. parent = __clk_get_parent(clk);
  1020. clk_prepare_unlock();
  1021. return parent;
  1022. }
  1023. EXPORT_SYMBOL_GPL(clk_get_parent);
  1024. /*
  1025. * .get_parent is mandatory for clocks with multiple possible parents. It is
  1026. * optional for single-parent clocks. Always call .get_parent if it is
  1027. * available and WARN if it is missing for multi-parent clocks.
  1028. *
  1029. * For single-parent clocks without .get_parent, first check to see if the
  1030. * .parents array exists, and if so use it to avoid an expensive tree
  1031. * traversal. If .parents does not exist then walk the tree with __clk_lookup.
  1032. */
  1033. static struct clk *__clk_init_parent(struct clk *clk)
  1034. {
  1035. struct clk *ret = NULL;
  1036. u8 index;
  1037. /* handle the trivial cases */
  1038. if (!clk->num_parents)
  1039. goto out;
  1040. if (clk->num_parents == 1) {
  1041. if (IS_ERR_OR_NULL(clk->parent))
  1042. ret = clk->parent = __clk_lookup(clk->parent_names[0]);
  1043. ret = clk->parent;
  1044. goto out;
  1045. }
  1046. if (!clk->ops->get_parent) {
  1047. WARN(!clk->ops->get_parent,
  1048. "%s: multi-parent clocks must implement .get_parent\n",
  1049. __func__);
  1050. goto out;
  1051. };
  1052. /*
  1053. * Do our best to cache parent clocks in clk->parents. This prevents
  1054. * unnecessary and expensive calls to __clk_lookup. We don't set
  1055. * clk->parent here; that is done by the calling function
  1056. */
  1057. index = clk->ops->get_parent(clk->hw);
  1058. if (!clk->parents)
  1059. clk->parents =
  1060. kzalloc((sizeof(struct clk*) * clk->num_parents),
  1061. GFP_KERNEL);
  1062. if (!clk->parents)
  1063. ret = __clk_lookup(clk->parent_names[index]);
  1064. else if (!clk->parents[index])
  1065. ret = clk->parents[index] =
  1066. __clk_lookup(clk->parent_names[index]);
  1067. else
  1068. ret = clk->parents[index];
  1069. out:
  1070. return ret;
  1071. }
  1072. static void clk_reparent(struct clk *clk, struct clk *new_parent)
  1073. {
  1074. hlist_del(&clk->child_node);
  1075. if (new_parent)
  1076. hlist_add_head(&clk->child_node, &new_parent->children);
  1077. else
  1078. hlist_add_head(&clk->child_node, &clk_orphan_list);
  1079. clk->parent = new_parent;
  1080. }
  1081. void __clk_reparent(struct clk *clk, struct clk *new_parent)
  1082. {
  1083. clk_reparent(clk, new_parent);
  1084. clk_debug_reparent(clk, new_parent);
  1085. __clk_recalc_rates(clk, POST_RATE_CHANGE);
  1086. }
  1087. static u8 clk_fetch_parent_index(struct clk *clk, struct clk *parent)
  1088. {
  1089. u8 i;
  1090. if (!clk->parents)
  1091. clk->parents = kzalloc((sizeof(struct clk*) * clk->num_parents),
  1092. GFP_KERNEL);
  1093. /*
  1094. * find index of new parent clock using cached parent ptrs,
  1095. * or if not yet cached, use string name comparison and cache
  1096. * them now to avoid future calls to __clk_lookup.
  1097. */
  1098. for (i = 0; i < clk->num_parents; i++) {
  1099. if (clk->parents && clk->parents[i] == parent)
  1100. break;
  1101. else if (!strcmp(clk->parent_names[i], parent->name)) {
  1102. if (clk->parents)
  1103. clk->parents[i] = __clk_lookup(parent->name);
  1104. break;
  1105. }
  1106. }
  1107. return i;
  1108. }
  1109. static int __clk_set_parent(struct clk *clk, struct clk *parent, u8 p_index)
  1110. {
  1111. unsigned long flags;
  1112. int ret = 0;
  1113. struct clk *old_parent = clk->parent;
  1114. bool migrated_enable = false;
  1115. /* migrate prepare */
  1116. if (clk->prepare_count)
  1117. __clk_prepare(parent);
  1118. flags = clk_enable_lock();
  1119. /* migrate enable */
  1120. if (clk->enable_count) {
  1121. __clk_enable(parent);
  1122. migrated_enable = true;
  1123. }
  1124. /* update the clk tree topology */
  1125. clk_reparent(clk, parent);
  1126. clk_enable_unlock(flags);
  1127. /* change clock input source */
  1128. if (parent && clk->ops->set_parent)
  1129. ret = clk->ops->set_parent(clk->hw, p_index);
  1130. if (ret) {
  1131. /*
  1132. * The error handling is tricky due to that we need to release
  1133. * the spinlock while issuing the .set_parent callback. This
  1134. * means the new parent might have been enabled/disabled in
  1135. * between, which must be considered when doing rollback.
  1136. */
  1137. flags = clk_enable_lock();
  1138. clk_reparent(clk, old_parent);
  1139. if (migrated_enable && clk->enable_count) {
  1140. __clk_disable(parent);
  1141. } else if (migrated_enable && (clk->enable_count == 0)) {
  1142. __clk_disable(old_parent);
  1143. } else if (!migrated_enable && clk->enable_count) {
  1144. __clk_disable(parent);
  1145. __clk_enable(old_parent);
  1146. }
  1147. clk_enable_unlock(flags);
  1148. if (clk->prepare_count)
  1149. __clk_unprepare(parent);
  1150. return ret;
  1151. }
  1152. /* clean up enable for old parent if migration was done */
  1153. if (migrated_enable) {
  1154. flags = clk_enable_lock();
  1155. __clk_disable(old_parent);
  1156. clk_enable_unlock(flags);
  1157. }
  1158. /* clean up prepare for old parent if migration was done */
  1159. if (clk->prepare_count)
  1160. __clk_unprepare(old_parent);
  1161. /* update debugfs with new clk tree topology */
  1162. clk_debug_reparent(clk, parent);
  1163. return 0;
  1164. }
  1165. /**
  1166. * clk_set_parent - switch the parent of a mux clk
  1167. * @clk: the mux clk whose input we are switching
  1168. * @parent: the new input to clk
  1169. *
  1170. * Re-parent clk to use parent as it's new input source. If clk has the
  1171. * CLK_SET_PARENT_GATE flag set then clk must be gated for this
  1172. * operation to succeed. After successfully changing clk's parent
  1173. * clk_set_parent will update the clk topology, sysfs topology and
  1174. * propagate rate recalculation via __clk_recalc_rates. Returns 0 on
  1175. * success, -EERROR otherwise.
  1176. */
  1177. int clk_set_parent(struct clk *clk, struct clk *parent)
  1178. {
  1179. int ret = 0;
  1180. u8 p_index = 0;
  1181. unsigned long p_rate = 0;
  1182. if (!clk || !clk->ops)
  1183. return -EINVAL;
  1184. /* verify ops for for multi-parent clks */
  1185. if ((clk->num_parents > 1) && (!clk->ops->set_parent))
  1186. return -ENOSYS;
  1187. /* prevent racing with updates to the clock topology */
  1188. clk_prepare_lock();
  1189. if (clk->parent == parent)
  1190. goto out;
  1191. /* check that we are allowed to re-parent if the clock is in use */
  1192. if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
  1193. ret = -EBUSY;
  1194. goto out;
  1195. }
  1196. /* try finding the new parent index */
  1197. if (parent) {
  1198. p_index = clk_fetch_parent_index(clk, parent);
  1199. p_rate = parent->rate;
  1200. if (p_index == clk->num_parents) {
  1201. pr_debug("%s: clk %s can not be parent of clk %s\n",
  1202. __func__, parent->name, clk->name);
  1203. ret = -EINVAL;
  1204. goto out;
  1205. }
  1206. }
  1207. /* propagate PRE_RATE_CHANGE notifications */
  1208. if (clk->notifier_count)
  1209. ret = __clk_speculate_rates(clk, p_rate);
  1210. /* abort if a driver objects */
  1211. if (ret & NOTIFY_STOP_MASK)
  1212. goto out;
  1213. /* do the re-parent */
  1214. ret = __clk_set_parent(clk, parent, p_index);
  1215. /* propagate rate recalculation accordingly */
  1216. if (ret)
  1217. __clk_recalc_rates(clk, ABORT_RATE_CHANGE);
  1218. else
  1219. __clk_recalc_rates(clk, POST_RATE_CHANGE);
  1220. out:
  1221. clk_prepare_unlock();
  1222. return ret;
  1223. }
  1224. EXPORT_SYMBOL_GPL(clk_set_parent);
  1225. /**
  1226. * __clk_init - initialize the data structures in a struct clk
  1227. * @dev: device initializing this clk, placeholder for now
  1228. * @clk: clk being initialized
  1229. *
  1230. * Initializes the lists in struct clk, queries the hardware for the
  1231. * parent and rate and sets them both.
  1232. */
  1233. int __clk_init(struct device *dev, struct clk *clk)
  1234. {
  1235. int i, ret = 0;
  1236. struct clk *orphan;
  1237. struct hlist_node *tmp2;
  1238. if (!clk)
  1239. return -EINVAL;
  1240. clk_prepare_lock();
  1241. /* check to see if a clock with this name is already registered */
  1242. if (__clk_lookup(clk->name)) {
  1243. pr_debug("%s: clk %s already initialized\n",
  1244. __func__, clk->name);
  1245. ret = -EEXIST;
  1246. goto out;
  1247. }
  1248. /* check that clk_ops are sane. See Documentation/clk.txt */
  1249. if (clk->ops->set_rate &&
  1250. !(clk->ops->round_rate && clk->ops->recalc_rate)) {
  1251. pr_warning("%s: %s must implement .round_rate & .recalc_rate\n",
  1252. __func__, clk->name);
  1253. ret = -EINVAL;
  1254. goto out;
  1255. }
  1256. if (clk->ops->set_parent && !clk->ops->get_parent) {
  1257. pr_warning("%s: %s must implement .get_parent & .set_parent\n",
  1258. __func__, clk->name);
  1259. ret = -EINVAL;
  1260. goto out;
  1261. }
  1262. /* throw a WARN if any entries in parent_names are NULL */
  1263. for (i = 0; i < clk->num_parents; i++)
  1264. WARN(!clk->parent_names[i],
  1265. "%s: invalid NULL in %s's .parent_names\n",
  1266. __func__, clk->name);
  1267. /*
  1268. * Allocate an array of struct clk *'s to avoid unnecessary string
  1269. * look-ups of clk's possible parents. This can fail for clocks passed
  1270. * in to clk_init during early boot; thus any access to clk->parents[]
  1271. * must always check for a NULL pointer and try to populate it if
  1272. * necessary.
  1273. *
  1274. * If clk->parents is not NULL we skip this entire block. This allows
  1275. * for clock drivers to statically initialize clk->parents.
  1276. */
  1277. if (clk->num_parents > 1 && !clk->parents) {
  1278. clk->parents = kzalloc((sizeof(struct clk*) * clk->num_parents),
  1279. GFP_KERNEL);
  1280. /*
  1281. * __clk_lookup returns NULL for parents that have not been
  1282. * clk_init'd; thus any access to clk->parents[] must check
  1283. * for a NULL pointer. We can always perform lazy lookups for
  1284. * missing parents later on.
  1285. */
  1286. if (clk->parents)
  1287. for (i = 0; i < clk->num_parents; i++)
  1288. clk->parents[i] =
  1289. __clk_lookup(clk->parent_names[i]);
  1290. }
  1291. clk->parent = __clk_init_parent(clk);
  1292. /*
  1293. * Populate clk->parent if parent has already been __clk_init'd. If
  1294. * parent has not yet been __clk_init'd then place clk in the orphan
  1295. * list. If clk has set the CLK_IS_ROOT flag then place it in the root
  1296. * clk list.
  1297. *
  1298. * Every time a new clk is clk_init'd then we walk the list of orphan
  1299. * clocks and re-parent any that are children of the clock currently
  1300. * being clk_init'd.
  1301. */
  1302. if (clk->parent)
  1303. hlist_add_head(&clk->child_node,
  1304. &clk->parent->children);
  1305. else if (clk->flags & CLK_IS_ROOT)
  1306. hlist_add_head(&clk->child_node, &clk_root_list);
  1307. else
  1308. hlist_add_head(&clk->child_node, &clk_orphan_list);
  1309. /*
  1310. * Set clk's rate. The preferred method is to use .recalc_rate. For
  1311. * simple clocks and lazy developers the default fallback is to use the
  1312. * parent's rate. If a clock doesn't have a parent (or is orphaned)
  1313. * then rate is set to zero.
  1314. */
  1315. if (clk->ops->recalc_rate)
  1316. clk->rate = clk->ops->recalc_rate(clk->hw,
  1317. __clk_get_rate(clk->parent));
  1318. else if (clk->parent)
  1319. clk->rate = clk->parent->rate;
  1320. else
  1321. clk->rate = 0;
  1322. /*
  1323. * walk the list of orphan clocks and reparent any that are children of
  1324. * this clock
  1325. */
  1326. hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
  1327. if (orphan->ops->get_parent) {
  1328. i = orphan->ops->get_parent(orphan->hw);
  1329. if (!strcmp(clk->name, orphan->parent_names[i]))
  1330. __clk_reparent(orphan, clk);
  1331. continue;
  1332. }
  1333. for (i = 0; i < orphan->num_parents; i++)
  1334. if (!strcmp(clk->name, orphan->parent_names[i])) {
  1335. __clk_reparent(orphan, clk);
  1336. break;
  1337. }
  1338. }
  1339. /*
  1340. * optional platform-specific magic
  1341. *
  1342. * The .init callback is not used by any of the basic clock types, but
  1343. * exists for weird hardware that must perform initialization magic.
  1344. * Please consider other ways of solving initialization problems before
  1345. * using this callback, as it's use is discouraged.
  1346. */
  1347. if (clk->ops->init)
  1348. clk->ops->init(clk->hw);
  1349. clk_debug_register(clk);
  1350. out:
  1351. clk_prepare_unlock();
  1352. return ret;
  1353. }
  1354. /**
  1355. * __clk_register - register a clock and return a cookie.
  1356. *
  1357. * Same as clk_register, except that the .clk field inside hw shall point to a
  1358. * preallocated (generally statically allocated) struct clk. None of the fields
  1359. * of the struct clk need to be initialized.
  1360. *
  1361. * The data pointed to by .init and .clk field shall NOT be marked as init
  1362. * data.
  1363. *
  1364. * __clk_register is only exposed via clk-private.h and is intended for use with
  1365. * very large numbers of clocks that need to be statically initialized. It is
  1366. * a layering violation to include clk-private.h from any code which implements
  1367. * a clock's .ops; as such any statically initialized clock data MUST be in a
  1368. * separate C file from the logic that implements it's operations. Returns 0
  1369. * on success, otherwise an error code.
  1370. */
  1371. struct clk *__clk_register(struct device *dev, struct clk_hw *hw)
  1372. {
  1373. int ret;
  1374. struct clk *clk;
  1375. clk = hw->clk;
  1376. clk->name = hw->init->name;
  1377. clk->ops = hw->init->ops;
  1378. clk->hw = hw;
  1379. clk->flags = hw->init->flags;
  1380. clk->parent_names = hw->init->parent_names;
  1381. clk->num_parents = hw->init->num_parents;
  1382. ret = __clk_init(dev, clk);
  1383. if (ret)
  1384. return ERR_PTR(ret);
  1385. return clk;
  1386. }
  1387. EXPORT_SYMBOL_GPL(__clk_register);
  1388. static int _clk_register(struct device *dev, struct clk_hw *hw, struct clk *clk)
  1389. {
  1390. int i, ret;
  1391. clk->name = kstrdup(hw->init->name, GFP_KERNEL);
  1392. if (!clk->name) {
  1393. pr_err("%s: could not allocate clk->name\n", __func__);
  1394. ret = -ENOMEM;
  1395. goto fail_name;
  1396. }
  1397. clk->ops = hw->init->ops;
  1398. clk->hw = hw;
  1399. clk->flags = hw->init->flags;
  1400. clk->num_parents = hw->init->num_parents;
  1401. hw->clk = clk;
  1402. /* allocate local copy in case parent_names is __initdata */
  1403. clk->parent_names = kzalloc((sizeof(char*) * clk->num_parents),
  1404. GFP_KERNEL);
  1405. if (!clk->parent_names) {
  1406. pr_err("%s: could not allocate clk->parent_names\n", __func__);
  1407. ret = -ENOMEM;
  1408. goto fail_parent_names;
  1409. }
  1410. /* copy each string name in case parent_names is __initdata */
  1411. for (i = 0; i < clk->num_parents; i++) {
  1412. clk->parent_names[i] = kstrdup(hw->init->parent_names[i],
  1413. GFP_KERNEL);
  1414. if (!clk->parent_names[i]) {
  1415. pr_err("%s: could not copy parent_names\n", __func__);
  1416. ret = -ENOMEM;
  1417. goto fail_parent_names_copy;
  1418. }
  1419. }
  1420. ret = __clk_init(dev, clk);
  1421. if (!ret)
  1422. return 0;
  1423. fail_parent_names_copy:
  1424. while (--i >= 0)
  1425. kfree(clk->parent_names[i]);
  1426. kfree(clk->parent_names);
  1427. fail_parent_names:
  1428. kfree(clk->name);
  1429. fail_name:
  1430. return ret;
  1431. }
  1432. /**
  1433. * clk_register - allocate a new clock, register it and return an opaque cookie
  1434. * @dev: device that is registering this clock
  1435. * @hw: link to hardware-specific clock data
  1436. *
  1437. * clk_register is the primary interface for populating the clock tree with new
  1438. * clock nodes. It returns a pointer to the newly allocated struct clk which
  1439. * cannot be dereferenced by driver code but may be used in conjuction with the
  1440. * rest of the clock API. In the event of an error clk_register will return an
  1441. * error code; drivers must test for an error code after calling clk_register.
  1442. */
  1443. struct clk *clk_register(struct device *dev, struct clk_hw *hw)
  1444. {
  1445. int ret;
  1446. struct clk *clk;
  1447. clk = kzalloc(sizeof(*clk), GFP_KERNEL);
  1448. if (!clk) {
  1449. pr_err("%s: could not allocate clk\n", __func__);
  1450. ret = -ENOMEM;
  1451. goto fail_out;
  1452. }
  1453. ret = _clk_register(dev, hw, clk);
  1454. if (!ret)
  1455. return clk;
  1456. kfree(clk);
  1457. fail_out:
  1458. return ERR_PTR(ret);
  1459. }
  1460. EXPORT_SYMBOL_GPL(clk_register);
  1461. /**
  1462. * clk_unregister - unregister a currently registered clock
  1463. * @clk: clock to unregister
  1464. *
  1465. * Currently unimplemented.
  1466. */
  1467. void clk_unregister(struct clk *clk) {}
  1468. EXPORT_SYMBOL_GPL(clk_unregister);
  1469. static void devm_clk_release(struct device *dev, void *res)
  1470. {
  1471. clk_unregister(res);
  1472. }
  1473. /**
  1474. * devm_clk_register - resource managed clk_register()
  1475. * @dev: device that is registering this clock
  1476. * @hw: link to hardware-specific clock data
  1477. *
  1478. * Managed clk_register(). Clocks returned from this function are
  1479. * automatically clk_unregister()ed on driver detach. See clk_register() for
  1480. * more information.
  1481. */
  1482. struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
  1483. {
  1484. struct clk *clk;
  1485. int ret;
  1486. clk = devres_alloc(devm_clk_release, sizeof(*clk), GFP_KERNEL);
  1487. if (!clk)
  1488. return ERR_PTR(-ENOMEM);
  1489. ret = _clk_register(dev, hw, clk);
  1490. if (!ret) {
  1491. devres_add(dev, clk);
  1492. } else {
  1493. devres_free(clk);
  1494. clk = ERR_PTR(ret);
  1495. }
  1496. return clk;
  1497. }
  1498. EXPORT_SYMBOL_GPL(devm_clk_register);
  1499. static int devm_clk_match(struct device *dev, void *res, void *data)
  1500. {
  1501. struct clk *c = res;
  1502. if (WARN_ON(!c))
  1503. return 0;
  1504. return c == data;
  1505. }
  1506. /**
  1507. * devm_clk_unregister - resource managed clk_unregister()
  1508. * @clk: clock to unregister
  1509. *
  1510. * Deallocate a clock allocated with devm_clk_register(). Normally
  1511. * this function will not need to be called and the resource management
  1512. * code will ensure that the resource is freed.
  1513. */
  1514. void devm_clk_unregister(struct device *dev, struct clk *clk)
  1515. {
  1516. WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
  1517. }
  1518. EXPORT_SYMBOL_GPL(devm_clk_unregister);
  1519. /*** clk rate change notifiers ***/
  1520. /**
  1521. * clk_notifier_register - add a clk rate change notifier
  1522. * @clk: struct clk * to watch
  1523. * @nb: struct notifier_block * with callback info
  1524. *
  1525. * Request notification when clk's rate changes. This uses an SRCU
  1526. * notifier because we want it to block and notifier unregistrations are
  1527. * uncommon. The callbacks associated with the notifier must not
  1528. * re-enter into the clk framework by calling any top-level clk APIs;
  1529. * this will cause a nested prepare_lock mutex.
  1530. *
  1531. * Pre-change notifier callbacks will be passed the current, pre-change
  1532. * rate of the clk via struct clk_notifier_data.old_rate. The new,
  1533. * post-change rate of the clk is passed via struct
  1534. * clk_notifier_data.new_rate.
  1535. *
  1536. * Post-change notifiers will pass the now-current, post-change rate of
  1537. * the clk in both struct clk_notifier_data.old_rate and struct
  1538. * clk_notifier_data.new_rate.
  1539. *
  1540. * Abort-change notifiers are effectively the opposite of pre-change
  1541. * notifiers: the original pre-change clk rate is passed in via struct
  1542. * clk_notifier_data.new_rate and the failed post-change rate is passed
  1543. * in via struct clk_notifier_data.old_rate.
  1544. *
  1545. * clk_notifier_register() must be called from non-atomic context.
  1546. * Returns -EINVAL if called with null arguments, -ENOMEM upon
  1547. * allocation failure; otherwise, passes along the return value of
  1548. * srcu_notifier_chain_register().
  1549. */
  1550. int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
  1551. {
  1552. struct clk_notifier *cn;
  1553. int ret = -ENOMEM;
  1554. if (!clk || !nb)
  1555. return -EINVAL;
  1556. clk_prepare_lock();
  1557. /* search the list of notifiers for this clk */
  1558. list_for_each_entry(cn, &clk_notifier_list, node)
  1559. if (cn->clk == clk)
  1560. break;
  1561. /* if clk wasn't in the notifier list, allocate new clk_notifier */
  1562. if (cn->clk != clk) {
  1563. cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
  1564. if (!cn)
  1565. goto out;
  1566. cn->clk = clk;
  1567. srcu_init_notifier_head(&cn->notifier_head);
  1568. list_add(&cn->node, &clk_notifier_list);
  1569. }
  1570. ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
  1571. clk->notifier_count++;
  1572. out:
  1573. clk_prepare_unlock();
  1574. return ret;
  1575. }
  1576. EXPORT_SYMBOL_GPL(clk_notifier_register);
  1577. /**
  1578. * clk_notifier_unregister - remove a clk rate change notifier
  1579. * @clk: struct clk *
  1580. * @nb: struct notifier_block * with callback info
  1581. *
  1582. * Request no further notification for changes to 'clk' and frees memory
  1583. * allocated in clk_notifier_register.
  1584. *
  1585. * Returns -EINVAL if called with null arguments; otherwise, passes
  1586. * along the return value of srcu_notifier_chain_unregister().
  1587. */
  1588. int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
  1589. {
  1590. struct clk_notifier *cn = NULL;
  1591. int ret = -EINVAL;
  1592. if (!clk || !nb)
  1593. return -EINVAL;
  1594. clk_prepare_lock();
  1595. list_for_each_entry(cn, &clk_notifier_list, node)
  1596. if (cn->clk == clk)
  1597. break;
  1598. if (cn->clk == clk) {
  1599. ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
  1600. clk->notifier_count--;
  1601. /* XXX the notifier code should handle this better */
  1602. if (!cn->notifier_head.head) {
  1603. srcu_cleanup_notifier_head(&cn->notifier_head);
  1604. kfree(cn);
  1605. }
  1606. } else {
  1607. ret = -ENOENT;
  1608. }
  1609. clk_prepare_unlock();
  1610. return ret;
  1611. }
  1612. EXPORT_SYMBOL_GPL(clk_notifier_unregister);
  1613. #ifdef CONFIG_OF
  1614. /**
  1615. * struct of_clk_provider - Clock provider registration structure
  1616. * @link: Entry in global list of clock providers
  1617. * @node: Pointer to device tree node of clock provider
  1618. * @get: Get clock callback. Returns NULL or a struct clk for the
  1619. * given clock specifier
  1620. * @data: context pointer to be passed into @get callback
  1621. */
  1622. struct of_clk_provider {
  1623. struct list_head link;
  1624. struct device_node *node;
  1625. struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
  1626. void *data;
  1627. };
  1628. extern struct of_device_id __clk_of_table[];
  1629. static const struct of_device_id __clk_of_table_sentinel
  1630. __used __section(__clk_of_table_end);
  1631. static LIST_HEAD(of_clk_providers);
  1632. static DEFINE_MUTEX(of_clk_lock);
  1633. struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
  1634. void *data)
  1635. {
  1636. return data;
  1637. }
  1638. EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
  1639. struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
  1640. {
  1641. struct clk_onecell_data *clk_data = data;
  1642. unsigned int idx = clkspec->args[0];
  1643. if (idx >= clk_data->clk_num) {
  1644. pr_err("%s: invalid clock index %d\n", __func__, idx);
  1645. return ERR_PTR(-EINVAL);
  1646. }
  1647. return clk_data->clks[idx];
  1648. }
  1649. EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
  1650. /**
  1651. * of_clk_add_provider() - Register a clock provider for a node
  1652. * @np: Device node pointer associated with clock provider
  1653. * @clk_src_get: callback for decoding clock
  1654. * @data: context pointer for @clk_src_get callback.
  1655. */
  1656. int of_clk_add_provider(struct device_node *np,
  1657. struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
  1658. void *data),
  1659. void *data)
  1660. {
  1661. struct of_clk_provider *cp;
  1662. cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
  1663. if (!cp)
  1664. return -ENOMEM;
  1665. cp->node = of_node_get(np);
  1666. cp->data = data;
  1667. cp->get = clk_src_get;
  1668. mutex_lock(&of_clk_lock);
  1669. list_add(&cp->link, &of_clk_providers);
  1670. mutex_unlock(&of_clk_lock);
  1671. pr_debug("Added clock from %s\n", np->full_name);
  1672. return 0;
  1673. }
  1674. EXPORT_SYMBOL_GPL(of_clk_add_provider);
  1675. /**
  1676. * of_clk_del_provider() - Remove a previously registered clock provider
  1677. * @np: Device node pointer associated with clock provider
  1678. */
  1679. void of_clk_del_provider(struct device_node *np)
  1680. {
  1681. struct of_clk_provider *cp;
  1682. mutex_lock(&of_clk_lock);
  1683. list_for_each_entry(cp, &of_clk_providers, link) {
  1684. if (cp->node == np) {
  1685. list_del(&cp->link);
  1686. of_node_put(cp->node);
  1687. kfree(cp);
  1688. break;
  1689. }
  1690. }
  1691. mutex_unlock(&of_clk_lock);
  1692. }
  1693. EXPORT_SYMBOL_GPL(of_clk_del_provider);
  1694. struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
  1695. {
  1696. struct of_clk_provider *provider;
  1697. struct clk *clk = ERR_PTR(-ENOENT);
  1698. /* Check if we have such a provider in our array */
  1699. mutex_lock(&of_clk_lock);
  1700. list_for_each_entry(provider, &of_clk_providers, link) {
  1701. if (provider->node == clkspec->np)
  1702. clk = provider->get(clkspec, provider->data);
  1703. if (!IS_ERR(clk))
  1704. break;
  1705. }
  1706. mutex_unlock(&of_clk_lock);
  1707. return clk;
  1708. }
  1709. const char *of_clk_get_parent_name(struct device_node *np, int index)
  1710. {
  1711. struct of_phandle_args clkspec;
  1712. const char *clk_name;
  1713. int rc;
  1714. if (index < 0)
  1715. return NULL;
  1716. rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
  1717. &clkspec);
  1718. if (rc)
  1719. return NULL;
  1720. if (of_property_read_string_index(clkspec.np, "clock-output-names",
  1721. clkspec.args_count ? clkspec.args[0] : 0,
  1722. &clk_name) < 0)
  1723. clk_name = clkspec.np->name;
  1724. of_node_put(clkspec.np);
  1725. return clk_name;
  1726. }
  1727. EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
  1728. /**
  1729. * of_clk_init() - Scan and init clock providers from the DT
  1730. * @matches: array of compatible values and init functions for providers.
  1731. *
  1732. * This function scans the device tree for matching clock providers and
  1733. * calls their initialization functions
  1734. */
  1735. void __init of_clk_init(const struct of_device_id *matches)
  1736. {
  1737. struct device_node *np;
  1738. if (!matches)
  1739. matches = __clk_of_table;
  1740. for_each_matching_node(np, matches) {
  1741. const struct of_device_id *match = of_match_node(matches, np);
  1742. of_clk_init_cb_t clk_init_cb = match->data;
  1743. clk_init_cb(np);
  1744. }
  1745. }
  1746. #endif