of_display_timing.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. /*
  2. * OF helpers for parsing display timings
  3. *
  4. * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix
  5. *
  6. * based on of_videomode.c by Sascha Hauer <s.hauer@pengutronix.de>
  7. *
  8. * This file is released under the GPLv2
  9. */
  10. #include <linux/export.h>
  11. #include <linux/of.h>
  12. #include <linux/slab.h>
  13. #include <video/display_timing.h>
  14. #include <video/of_display_timing.h>
  15. /**
  16. * parse_timing_property - parse timing_entry from device_node
  17. * @np: device_node with the property
  18. * @name: name of the property
  19. * @result: will be set to the return value
  20. *
  21. * DESCRIPTION:
  22. * Every display_timing can be specified with either just the typical value or
  23. * a range consisting of min/typ/max. This function helps handling this
  24. **/
  25. static int parse_timing_property(struct device_node *np, const char *name,
  26. struct timing_entry *result)
  27. {
  28. struct property *prop;
  29. int length, cells, ret;
  30. prop = of_find_property(np, name, &length);
  31. if (!prop) {
  32. pr_err("%s: could not find property %s\n",
  33. of_node_full_name(np), name);
  34. return -EINVAL;
  35. }
  36. cells = length / sizeof(u32);
  37. if (cells == 1) {
  38. ret = of_property_read_u32(np, name, &result->typ);
  39. result->min = result->typ;
  40. result->max = result->typ;
  41. } else if (cells == 3) {
  42. ret = of_property_read_u32_array(np, name, &result->min, cells);
  43. } else {
  44. pr_err("%s: illegal timing specification in %s\n",
  45. of_node_full_name(np), name);
  46. return -EINVAL;
  47. }
  48. return ret;
  49. }
  50. /**
  51. * of_parse_display_timing - parse display_timing entry from device_node
  52. * @np: device_node with the properties
  53. **/
  54. static int of_parse_display_timing(struct device_node *np,
  55. struct display_timing *dt)
  56. {
  57. u32 val = 0;
  58. int ret = 0;
  59. memset(dt, 0, sizeof(*dt));
  60. ret |= parse_timing_property(np, "hback-porch", &dt->hback_porch);
  61. ret |= parse_timing_property(np, "hfront-porch", &dt->hfront_porch);
  62. ret |= parse_timing_property(np, "hactive", &dt->hactive);
  63. ret |= parse_timing_property(np, "hsync-len", &dt->hsync_len);
  64. ret |= parse_timing_property(np, "vback-porch", &dt->vback_porch);
  65. ret |= parse_timing_property(np, "vfront-porch", &dt->vfront_porch);
  66. ret |= parse_timing_property(np, "vactive", &dt->vactive);
  67. ret |= parse_timing_property(np, "vsync-len", &dt->vsync_len);
  68. ret |= parse_timing_property(np, "clock-frequency", &dt->pixelclock);
  69. dt->flags = 0;
  70. if (!of_property_read_u32(np, "vsync-active", &val))
  71. dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
  72. DISPLAY_FLAGS_VSYNC_LOW;
  73. if (!of_property_read_u32(np, "hsync-active", &val))
  74. dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
  75. DISPLAY_FLAGS_HSYNC_LOW;
  76. if (!of_property_read_u32(np, "de-active", &val))
  77. dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
  78. DISPLAY_FLAGS_DE_LOW;
  79. if (!of_property_read_u32(np, "pixelclk-active", &val))
  80. dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
  81. DISPLAY_FLAGS_PIXDATA_NEGEDGE;
  82. if (of_property_read_bool(np, "interlaced"))
  83. dt->flags |= DISPLAY_FLAGS_INTERLACED;
  84. if (of_property_read_bool(np, "doublescan"))
  85. dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
  86. if (ret) {
  87. pr_err("%s: error reading timing properties\n",
  88. of_node_full_name(np));
  89. return -EINVAL;
  90. }
  91. return 0;
  92. }
  93. /**
  94. * of_get_display_timing - parse a display_timing entry
  95. * @np: device_node with the timing subnode
  96. * @name: name of the timing node
  97. * @dt: display_timing struct to fill
  98. **/
  99. int of_get_display_timing(struct device_node *np, const char *name,
  100. struct display_timing *dt)
  101. {
  102. struct device_node *timing_np;
  103. if (!np) {
  104. pr_err("%s: no devicenode given\n", of_node_full_name(np));
  105. return -EINVAL;
  106. }
  107. timing_np = of_find_node_by_name(np, name);
  108. if (!timing_np) {
  109. pr_err("%s: could not find node '%s'\n",
  110. of_node_full_name(np), name);
  111. return -ENOENT;
  112. }
  113. return of_parse_display_timing(timing_np, dt);
  114. }
  115. EXPORT_SYMBOL_GPL(of_get_display_timing);
  116. /**
  117. * of_get_display_timings - parse all display_timing entries from a device_node
  118. * @np: device_node with the subnodes
  119. **/
  120. struct display_timings *of_get_display_timings(struct device_node *np)
  121. {
  122. struct device_node *timings_np;
  123. struct device_node *entry;
  124. struct device_node *native_mode;
  125. struct display_timings *disp;
  126. if (!np) {
  127. pr_err("%s: no devicenode given\n", of_node_full_name(np));
  128. return NULL;
  129. }
  130. timings_np = of_find_node_by_name(np, "display-timings");
  131. if (!timings_np) {
  132. pr_err("%s: could not find display-timings node\n",
  133. of_node_full_name(np));
  134. return NULL;
  135. }
  136. disp = kzalloc(sizeof(*disp), GFP_KERNEL);
  137. if (!disp) {
  138. pr_err("%s: could not allocate struct disp'\n",
  139. of_node_full_name(np));
  140. goto dispfail;
  141. }
  142. entry = of_parse_phandle(timings_np, "native-mode", 0);
  143. /* assume first child as native mode if none provided */
  144. if (!entry)
  145. entry = of_get_next_child(np, NULL);
  146. /* if there is no child, it is useless to go on */
  147. if (!entry) {
  148. pr_err("%s: no timing specifications given\n",
  149. of_node_full_name(np));
  150. goto entryfail;
  151. }
  152. pr_debug("%s: using %s as default timing\n",
  153. of_node_full_name(np), entry->name);
  154. native_mode = entry;
  155. disp->num_timings = of_get_child_count(timings_np);
  156. if (disp->num_timings == 0) {
  157. /* should never happen, as entry was already found above */
  158. pr_err("%s: no timings specified\n", of_node_full_name(np));
  159. goto entryfail;
  160. }
  161. disp->timings = kzalloc(sizeof(struct display_timing *) *
  162. disp->num_timings, GFP_KERNEL);
  163. if (!disp->timings) {
  164. pr_err("%s: could not allocate timings array\n",
  165. of_node_full_name(np));
  166. goto entryfail;
  167. }
  168. disp->num_timings = 0;
  169. disp->native_mode = 0;
  170. for_each_child_of_node(timings_np, entry) {
  171. struct display_timing *dt;
  172. int r;
  173. dt = kzalloc(sizeof(*dt), GFP_KERNEL);
  174. if (!dt) {
  175. pr_err("%s: could not allocate display_timing struct\n",
  176. of_node_full_name(np));
  177. goto timingfail;
  178. }
  179. r = of_parse_display_timing(entry, dt);
  180. if (r) {
  181. /*
  182. * to not encourage wrong devicetrees, fail in case of
  183. * an error
  184. */
  185. pr_err("%s: error in timing %d\n",
  186. of_node_full_name(np), disp->num_timings + 1);
  187. goto timingfail;
  188. }
  189. if (native_mode == entry)
  190. disp->native_mode = disp->num_timings;
  191. disp->timings[disp->num_timings] = dt;
  192. disp->num_timings++;
  193. }
  194. of_node_put(timings_np);
  195. /*
  196. * native_mode points to the device_node returned by of_parse_phandle
  197. * therefore call of_node_put on it
  198. */
  199. of_node_put(native_mode);
  200. pr_debug("%s: got %d timings. Using timing #%d as default\n",
  201. of_node_full_name(np), disp->num_timings,
  202. disp->native_mode + 1);
  203. return disp;
  204. timingfail:
  205. if (native_mode)
  206. of_node_put(native_mode);
  207. display_timings_release(disp);
  208. entryfail:
  209. kfree(disp);
  210. dispfail:
  211. of_node_put(timings_np);
  212. return NULL;
  213. }
  214. EXPORT_SYMBOL_GPL(of_get_display_timings);
  215. /**
  216. * of_display_timings_exist - check if a display-timings node is provided
  217. * @np: device_node with the timing
  218. **/
  219. int of_display_timings_exist(struct device_node *np)
  220. {
  221. struct device_node *timings_np;
  222. if (!np)
  223. return -EINVAL;
  224. timings_np = of_parse_phandle(np, "display-timings", 0);
  225. if (!timings_np)
  226. return -EINVAL;
  227. of_node_put(timings_np);
  228. return 1;
  229. }
  230. EXPORT_SYMBOL_GPL(of_display_timings_exist);