exynos_hdmi.c 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965
  1. /*
  2. * Copyright (C) 2011 Samsung Electronics Co.Ltd
  3. * Authors:
  4. * Seung-Woo Kim <sw0312.kim@samsung.com>
  5. * Inki Dae <inki.dae@samsung.com>
  6. * Joonyoung Shim <jy0922.shim@samsung.com>
  7. *
  8. * Based on drivers/media/video/s5p-tv/hdmi_drv.c
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the
  12. * Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. *
  15. */
  16. #include <drm/drmP.h>
  17. #include <drm/drm_edid.h>
  18. #include <drm/drm_crtc_helper.h>
  19. #include <drm/drm_atomic_helper.h>
  20. #include "regs-hdmi.h"
  21. #include <linux/kernel.h>
  22. #include <linux/wait.h>
  23. #include <linux/i2c.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/irq.h>
  27. #include <linux/delay.h>
  28. #include <linux/pm_runtime.h>
  29. #include <linux/clk.h>
  30. #include <linux/gpio/consumer.h>
  31. #include <linux/regulator/consumer.h>
  32. #include <linux/io.h>
  33. #include <linux/of_address.h>
  34. #include <linux/of_device.h>
  35. #include <linux/of_graph.h>
  36. #include <linux/hdmi.h>
  37. #include <linux/component.h>
  38. #include <linux/mfd/syscon.h>
  39. #include <linux/regmap.h>
  40. #include <drm/exynos_drm.h>
  41. #include "exynos_drm_crtc.h"
  42. #define HOTPLUG_DEBOUNCE_MS 1100
  43. enum hdmi_type {
  44. HDMI_TYPE13,
  45. HDMI_TYPE14,
  46. HDMI_TYPE_COUNT
  47. };
  48. #define HDMI_MAPPED_BASE 0xffff0000
  49. enum hdmi_mapped_regs {
  50. HDMI_PHY_STATUS = HDMI_MAPPED_BASE,
  51. HDMI_PHY_RSTOUT,
  52. HDMI_ACR_CON,
  53. HDMI_ACR_MCTS0,
  54. HDMI_ACR_CTS0,
  55. HDMI_ACR_N0
  56. };
  57. static const u32 hdmi_reg_map[][HDMI_TYPE_COUNT] = {
  58. { HDMI_V13_PHY_STATUS, HDMI_PHY_STATUS_0 },
  59. { HDMI_V13_PHY_RSTOUT, HDMI_V14_PHY_RSTOUT },
  60. { HDMI_V13_ACR_CON, HDMI_V14_ACR_CON },
  61. { HDMI_V13_ACR_MCTS0, HDMI_V14_ACR_MCTS0 },
  62. { HDMI_V13_ACR_CTS0, HDMI_V14_ACR_CTS0 },
  63. { HDMI_V13_ACR_N0, HDMI_V14_ACR_N0 },
  64. };
  65. static const char * const supply[] = {
  66. "vdd",
  67. "vdd_osc",
  68. "vdd_pll",
  69. };
  70. struct hdmiphy_config {
  71. int pixel_clock;
  72. u8 conf[32];
  73. };
  74. struct hdmiphy_configs {
  75. int count;
  76. const struct hdmiphy_config *data;
  77. };
  78. struct string_array_spec {
  79. int count;
  80. const char * const *data;
  81. };
  82. #define INIT_ARRAY_SPEC(a) { .count = ARRAY_SIZE(a), .data = a }
  83. struct hdmi_driver_data {
  84. unsigned int type;
  85. unsigned int is_apb_phy:1;
  86. unsigned int has_sysreg:1;
  87. struct hdmiphy_configs phy_confs;
  88. struct string_array_spec clk_gates;
  89. /*
  90. * Array of triplets (p_off, p_on, clock), where p_off and p_on are
  91. * required parents of clock when HDMI-PHY is respectively off or on.
  92. */
  93. struct string_array_spec clk_muxes;
  94. };
  95. struct hdmi_context {
  96. struct drm_encoder encoder;
  97. struct device *dev;
  98. struct drm_device *drm_dev;
  99. struct drm_connector connector;
  100. bool powered;
  101. bool dvi_mode;
  102. struct delayed_work hotplug_work;
  103. struct drm_display_mode current_mode;
  104. const struct hdmi_driver_data *drv_data;
  105. void __iomem *regs;
  106. void __iomem *regs_hdmiphy;
  107. struct i2c_client *hdmiphy_port;
  108. struct i2c_adapter *ddc_adpt;
  109. struct gpio_desc *hpd_gpio;
  110. int irq;
  111. struct regmap *pmureg;
  112. struct regmap *sysreg;
  113. struct clk **clk_gates;
  114. struct clk **clk_muxes;
  115. struct regulator_bulk_data regul_bulk[ARRAY_SIZE(supply)];
  116. struct regulator *reg_hdmi_en;
  117. struct exynos_drm_clk phy_clk;
  118. struct drm_bridge *bridge;
  119. };
  120. static inline struct hdmi_context *encoder_to_hdmi(struct drm_encoder *e)
  121. {
  122. return container_of(e, struct hdmi_context, encoder);
  123. }
  124. static inline struct hdmi_context *connector_to_hdmi(struct drm_connector *c)
  125. {
  126. return container_of(c, struct hdmi_context, connector);
  127. }
  128. static const struct hdmiphy_config hdmiphy_v13_configs[] = {
  129. {
  130. .pixel_clock = 27000000,
  131. .conf = {
  132. 0x01, 0x05, 0x00, 0xD8, 0x10, 0x1C, 0x30, 0x40,
  133. 0x6B, 0x10, 0x02, 0x51, 0xDF, 0xF2, 0x54, 0x87,
  134. 0x84, 0x00, 0x30, 0x38, 0x00, 0x08, 0x10, 0xE0,
  135. 0x22, 0x40, 0xE3, 0x26, 0x00, 0x00, 0x00, 0x80,
  136. },
  137. },
  138. {
  139. .pixel_clock = 27027000,
  140. .conf = {
  141. 0x01, 0x05, 0x00, 0xD4, 0x10, 0x9C, 0x09, 0x64,
  142. 0x6B, 0x10, 0x02, 0x51, 0xDF, 0xF2, 0x54, 0x87,
  143. 0x84, 0x00, 0x30, 0x38, 0x00, 0x08, 0x10, 0xE0,
  144. 0x22, 0x40, 0xE3, 0x26, 0x00, 0x00, 0x00, 0x80,
  145. },
  146. },
  147. {
  148. .pixel_clock = 74176000,
  149. .conf = {
  150. 0x01, 0x05, 0x00, 0xD8, 0x10, 0x9C, 0xef, 0x5B,
  151. 0x6D, 0x10, 0x01, 0x51, 0xef, 0xF3, 0x54, 0xb9,
  152. 0x84, 0x00, 0x30, 0x38, 0x00, 0x08, 0x10, 0xE0,
  153. 0x22, 0x40, 0xa5, 0x26, 0x01, 0x00, 0x00, 0x80,
  154. },
  155. },
  156. {
  157. .pixel_clock = 74250000,
  158. .conf = {
  159. 0x01, 0x05, 0x00, 0xd8, 0x10, 0x9c, 0xf8, 0x40,
  160. 0x6a, 0x10, 0x01, 0x51, 0xff, 0xf1, 0x54, 0xba,
  161. 0x84, 0x00, 0x10, 0x38, 0x00, 0x08, 0x10, 0xe0,
  162. 0x22, 0x40, 0xa4, 0x26, 0x01, 0x00, 0x00, 0x80,
  163. },
  164. },
  165. {
  166. .pixel_clock = 148500000,
  167. .conf = {
  168. 0x01, 0x05, 0x00, 0xD8, 0x10, 0x9C, 0xf8, 0x40,
  169. 0x6A, 0x18, 0x00, 0x51, 0xff, 0xF1, 0x54, 0xba,
  170. 0x84, 0x00, 0x10, 0x38, 0x00, 0x08, 0x10, 0xE0,
  171. 0x22, 0x40, 0xa4, 0x26, 0x02, 0x00, 0x00, 0x80,
  172. },
  173. },
  174. };
  175. static const struct hdmiphy_config hdmiphy_v14_configs[] = {
  176. {
  177. .pixel_clock = 25200000,
  178. .conf = {
  179. 0x01, 0x51, 0x2A, 0x75, 0x40, 0x01, 0x00, 0x08,
  180. 0x82, 0x80, 0xfc, 0xd8, 0x45, 0xa0, 0xac, 0x80,
  181. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  182. 0x54, 0xf4, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  183. },
  184. },
  185. {
  186. .pixel_clock = 27000000,
  187. .conf = {
  188. 0x01, 0xd1, 0x22, 0x51, 0x40, 0x08, 0xfc, 0x20,
  189. 0x98, 0xa0, 0xcb, 0xd8, 0x45, 0xa0, 0xac, 0x80,
  190. 0x06, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  191. 0x54, 0xe4, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  192. },
  193. },
  194. {
  195. .pixel_clock = 27027000,
  196. .conf = {
  197. 0x01, 0xd1, 0x2d, 0x72, 0x40, 0x64, 0x12, 0x08,
  198. 0x43, 0xa0, 0x0e, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  199. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  200. 0x54, 0xe3, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  201. },
  202. },
  203. {
  204. .pixel_clock = 36000000,
  205. .conf = {
  206. 0x01, 0x51, 0x2d, 0x55, 0x40, 0x01, 0x00, 0x08,
  207. 0x82, 0x80, 0x0e, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  208. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  209. 0x54, 0xab, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  210. },
  211. },
  212. {
  213. .pixel_clock = 40000000,
  214. .conf = {
  215. 0x01, 0x51, 0x32, 0x55, 0x40, 0x01, 0x00, 0x08,
  216. 0x82, 0x80, 0x2c, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  217. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  218. 0x54, 0x9a, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  219. },
  220. },
  221. {
  222. .pixel_clock = 65000000,
  223. .conf = {
  224. 0x01, 0xd1, 0x36, 0x34, 0x40, 0x1e, 0x0a, 0x08,
  225. 0x82, 0xa0, 0x45, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  226. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  227. 0x54, 0xbd, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  228. },
  229. },
  230. {
  231. .pixel_clock = 71000000,
  232. .conf = {
  233. 0x01, 0xd1, 0x3b, 0x35, 0x40, 0x0c, 0x04, 0x08,
  234. 0x85, 0xa0, 0x63, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  235. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  236. 0x54, 0xad, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  237. },
  238. },
  239. {
  240. .pixel_clock = 73250000,
  241. .conf = {
  242. 0x01, 0xd1, 0x3d, 0x35, 0x40, 0x18, 0x02, 0x08,
  243. 0x83, 0xa0, 0x6e, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  244. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  245. 0x54, 0xa8, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  246. },
  247. },
  248. {
  249. .pixel_clock = 74176000,
  250. .conf = {
  251. 0x01, 0xd1, 0x3e, 0x35, 0x40, 0x5b, 0xde, 0x08,
  252. 0x82, 0xa0, 0x73, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  253. 0x56, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  254. 0x54, 0xa6, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  255. },
  256. },
  257. {
  258. .pixel_clock = 74250000,
  259. .conf = {
  260. 0x01, 0xd1, 0x1f, 0x10, 0x40, 0x40, 0xf8, 0x08,
  261. 0x81, 0xa0, 0xba, 0xd8, 0x45, 0xa0, 0xac, 0x80,
  262. 0x3c, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  263. 0x54, 0xa5, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  264. },
  265. },
  266. {
  267. .pixel_clock = 83500000,
  268. .conf = {
  269. 0x01, 0xd1, 0x23, 0x11, 0x40, 0x0c, 0xfb, 0x08,
  270. 0x85, 0xa0, 0xd1, 0xd8, 0x45, 0xa0, 0xac, 0x80,
  271. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  272. 0x54, 0x93, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  273. },
  274. },
  275. {
  276. .pixel_clock = 106500000,
  277. .conf = {
  278. 0x01, 0xd1, 0x2c, 0x12, 0x40, 0x0c, 0x09, 0x08,
  279. 0x84, 0xa0, 0x0a, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  280. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  281. 0x54, 0x73, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  282. },
  283. },
  284. {
  285. .pixel_clock = 108000000,
  286. .conf = {
  287. 0x01, 0x51, 0x2d, 0x15, 0x40, 0x01, 0x00, 0x08,
  288. 0x82, 0x80, 0x0e, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  289. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  290. 0x54, 0xc7, 0x25, 0x03, 0x00, 0x00, 0x01, 0x80,
  291. },
  292. },
  293. {
  294. .pixel_clock = 115500000,
  295. .conf = {
  296. 0x01, 0xd1, 0x30, 0x12, 0x40, 0x40, 0x10, 0x08,
  297. 0x80, 0x80, 0x21, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  298. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  299. 0x54, 0xaa, 0x25, 0x03, 0x00, 0x00, 0x01, 0x80,
  300. },
  301. },
  302. {
  303. .pixel_clock = 119000000,
  304. .conf = {
  305. 0x01, 0xd1, 0x32, 0x1a, 0x40, 0x30, 0xd8, 0x08,
  306. 0x04, 0xa0, 0x2a, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  307. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  308. 0x54, 0x9d, 0x25, 0x03, 0x00, 0x00, 0x01, 0x80,
  309. },
  310. },
  311. {
  312. .pixel_clock = 146250000,
  313. .conf = {
  314. 0x01, 0xd1, 0x3d, 0x15, 0x40, 0x18, 0xfd, 0x08,
  315. 0x83, 0xa0, 0x6e, 0xd9, 0x45, 0xa0, 0xac, 0x80,
  316. 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  317. 0x54, 0x50, 0x25, 0x03, 0x00, 0x00, 0x01, 0x80,
  318. },
  319. },
  320. {
  321. .pixel_clock = 148500000,
  322. .conf = {
  323. 0x01, 0xd1, 0x1f, 0x00, 0x40, 0x40, 0xf8, 0x08,
  324. 0x81, 0xa0, 0xba, 0xd8, 0x45, 0xa0, 0xac, 0x80,
  325. 0x3c, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
  326. 0x54, 0x4b, 0x25, 0x03, 0x00, 0x00, 0x01, 0x80,
  327. },
  328. },
  329. };
  330. static const struct hdmiphy_config hdmiphy_5420_configs[] = {
  331. {
  332. .pixel_clock = 25200000,
  333. .conf = {
  334. 0x01, 0x52, 0x3F, 0x55, 0x40, 0x01, 0x00, 0xC8,
  335. 0x82, 0xC8, 0xBD, 0xD8, 0x45, 0xA0, 0xAC, 0x80,
  336. 0x06, 0x80, 0x01, 0x84, 0x05, 0x02, 0x24, 0x66,
  337. 0x54, 0xF4, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  338. },
  339. },
  340. {
  341. .pixel_clock = 27000000,
  342. .conf = {
  343. 0x01, 0xD1, 0x22, 0x51, 0x40, 0x08, 0xFC, 0xE0,
  344. 0x98, 0xE8, 0xCB, 0xD8, 0x45, 0xA0, 0xAC, 0x80,
  345. 0x06, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  346. 0x54, 0xE4, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  347. },
  348. },
  349. {
  350. .pixel_clock = 27027000,
  351. .conf = {
  352. 0x01, 0xD1, 0x2D, 0x72, 0x40, 0x64, 0x12, 0xC8,
  353. 0x43, 0xE8, 0x0E, 0xD9, 0x45, 0xA0, 0xAC, 0x80,
  354. 0x26, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  355. 0x54, 0xE3, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  356. },
  357. },
  358. {
  359. .pixel_clock = 36000000,
  360. .conf = {
  361. 0x01, 0x51, 0x2D, 0x55, 0x40, 0x40, 0x00, 0xC8,
  362. 0x02, 0xC8, 0x0E, 0xD9, 0x45, 0xA0, 0xAC, 0x80,
  363. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  364. 0x54, 0xAB, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  365. },
  366. },
  367. {
  368. .pixel_clock = 40000000,
  369. .conf = {
  370. 0x01, 0xD1, 0x21, 0x31, 0x40, 0x3C, 0x28, 0xC8,
  371. 0x87, 0xE8, 0xC8, 0xD8, 0x45, 0xA0, 0xAC, 0x80,
  372. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  373. 0x54, 0x9A, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  374. },
  375. },
  376. {
  377. .pixel_clock = 65000000,
  378. .conf = {
  379. 0x01, 0xD1, 0x36, 0x34, 0x40, 0x0C, 0x04, 0xC8,
  380. 0x82, 0xE8, 0x45, 0xD9, 0x45, 0xA0, 0xAC, 0x80,
  381. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  382. 0x54, 0xBD, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  383. },
  384. },
  385. {
  386. .pixel_clock = 71000000,
  387. .conf = {
  388. 0x01, 0xD1, 0x3B, 0x35, 0x40, 0x0C, 0x04, 0xC8,
  389. 0x85, 0xE8, 0x63, 0xD9, 0x45, 0xA0, 0xAC, 0x80,
  390. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  391. 0x54, 0x57, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  392. },
  393. },
  394. {
  395. .pixel_clock = 73250000,
  396. .conf = {
  397. 0x01, 0xD1, 0x1F, 0x10, 0x40, 0x78, 0x8D, 0xC8,
  398. 0x81, 0xE8, 0xB7, 0xD8, 0x45, 0xA0, 0xAC, 0x80,
  399. 0x56, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  400. 0x54, 0xA8, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  401. },
  402. },
  403. {
  404. .pixel_clock = 74176000,
  405. .conf = {
  406. 0x01, 0xD1, 0x1F, 0x10, 0x40, 0x5B, 0xEF, 0xC8,
  407. 0x81, 0xE8, 0xB9, 0xD8, 0x45, 0xA0, 0xAC, 0x80,
  408. 0x56, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  409. 0x54, 0xA6, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  410. },
  411. },
  412. {
  413. .pixel_clock = 74250000,
  414. .conf = {
  415. 0x01, 0xD1, 0x1F, 0x10, 0x40, 0x40, 0xF8, 0x08,
  416. 0x81, 0xE8, 0xBA, 0xD8, 0x45, 0xA0, 0xAC, 0x80,
  417. 0x26, 0x80, 0x09, 0x84, 0x05, 0x22, 0x24, 0x66,
  418. 0x54, 0xA5, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  419. },
  420. },
  421. {
  422. .pixel_clock = 83500000,
  423. .conf = {
  424. 0x01, 0xD1, 0x23, 0x11, 0x40, 0x0C, 0xFB, 0xC8,
  425. 0x85, 0xE8, 0xD1, 0xD8, 0x45, 0xA0, 0xAC, 0x80,
  426. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  427. 0x54, 0x4A, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  428. },
  429. },
  430. {
  431. .pixel_clock = 88750000,
  432. .conf = {
  433. 0x01, 0xD1, 0x25, 0x11, 0x40, 0x18, 0xFF, 0xC8,
  434. 0x83, 0xE8, 0xDE, 0xD8, 0x45, 0xA0, 0xAC, 0x80,
  435. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  436. 0x54, 0x45, 0x24, 0x00, 0x00, 0x00, 0x01, 0x80,
  437. },
  438. },
  439. {
  440. .pixel_clock = 106500000,
  441. .conf = {
  442. 0x01, 0xD1, 0x2C, 0x12, 0x40, 0x0C, 0x09, 0xC8,
  443. 0x84, 0xE8, 0x0A, 0xD9, 0x45, 0xA0, 0xAC, 0x80,
  444. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  445. 0x54, 0x73, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  446. },
  447. },
  448. {
  449. .pixel_clock = 108000000,
  450. .conf = {
  451. 0x01, 0x51, 0x2D, 0x15, 0x40, 0x01, 0x00, 0xC8,
  452. 0x82, 0xC8, 0x0E, 0xD9, 0x45, 0xA0, 0xAC, 0x80,
  453. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  454. 0x54, 0xC7, 0x25, 0x03, 0x00, 0x00, 0x01, 0x80,
  455. },
  456. },
  457. {
  458. .pixel_clock = 115500000,
  459. .conf = {
  460. 0x01, 0xD1, 0x30, 0x14, 0x40, 0x0C, 0x03, 0xC8,
  461. 0x88, 0xE8, 0x21, 0xD9, 0x45, 0xA0, 0xAC, 0x80,
  462. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  463. 0x54, 0x6A, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  464. },
  465. },
  466. {
  467. .pixel_clock = 146250000,
  468. .conf = {
  469. 0x01, 0xD1, 0x3D, 0x15, 0x40, 0x18, 0xFD, 0xC8,
  470. 0x83, 0xE8, 0x6E, 0xD9, 0x45, 0xA0, 0xAC, 0x80,
  471. 0x08, 0x80, 0x09, 0x84, 0x05, 0x02, 0x24, 0x66,
  472. 0x54, 0x54, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
  473. },
  474. },
  475. {
  476. .pixel_clock = 148500000,
  477. .conf = {
  478. 0x01, 0xD1, 0x1F, 0x00, 0x40, 0x40, 0xF8, 0x08,
  479. 0x81, 0xE8, 0xBA, 0xD8, 0x45, 0xA0, 0xAC, 0x80,
  480. 0x26, 0x80, 0x09, 0x84, 0x05, 0x22, 0x24, 0x66,
  481. 0x54, 0x4B, 0x25, 0x03, 0x00, 0x80, 0x01, 0x80,
  482. },
  483. },
  484. };
  485. static const struct hdmiphy_config hdmiphy_5433_configs[] = {
  486. {
  487. .pixel_clock = 27000000,
  488. .conf = {
  489. 0x01, 0x51, 0x2d, 0x75, 0x01, 0x00, 0x88, 0x02,
  490. 0x72, 0x50, 0x44, 0x8c, 0x27, 0x00, 0x7c, 0xac,
  491. 0xd6, 0x2b, 0x67, 0x00, 0x00, 0x04, 0x00, 0x30,
  492. 0x08, 0x10, 0x01, 0x01, 0x48, 0x40, 0x00, 0x40,
  493. },
  494. },
  495. {
  496. .pixel_clock = 27027000,
  497. .conf = {
  498. 0x01, 0x51, 0x2d, 0x72, 0x64, 0x09, 0x88, 0xc3,
  499. 0x71, 0x50, 0x44, 0x8c, 0x27, 0x00, 0x7c, 0xac,
  500. 0xd6, 0x2b, 0x67, 0x00, 0x00, 0x04, 0x00, 0x30,
  501. 0x08, 0x10, 0x01, 0x01, 0x48, 0x40, 0x00, 0x40,
  502. },
  503. },
  504. {
  505. .pixel_clock = 40000000,
  506. .conf = {
  507. 0x01, 0x51, 0x32, 0x55, 0x01, 0x00, 0x88, 0x02,
  508. 0x4d, 0x50, 0x44, 0x8C, 0x27, 0x00, 0x7C, 0xAC,
  509. 0xD6, 0x2B, 0x67, 0x00, 0x00, 0x04, 0x00, 0x30,
  510. 0x08, 0x10, 0x01, 0x01, 0x48, 0x40, 0x00, 0x40,
  511. },
  512. },
  513. {
  514. .pixel_clock = 50000000,
  515. .conf = {
  516. 0x01, 0x51, 0x34, 0x40, 0x64, 0x09, 0x88, 0xc3,
  517. 0x3d, 0x50, 0x44, 0x8C, 0x27, 0x00, 0x7C, 0xAC,
  518. 0xD6, 0x2B, 0x67, 0x00, 0x00, 0x04, 0x00, 0x30,
  519. 0x08, 0x10, 0x01, 0x01, 0x48, 0x40, 0x00, 0x40,
  520. },
  521. },
  522. {
  523. .pixel_clock = 65000000,
  524. .conf = {
  525. 0x01, 0x51, 0x36, 0x31, 0x40, 0x10, 0x04, 0xc6,
  526. 0x2e, 0xe8, 0x44, 0x8C, 0x27, 0x00, 0x7C, 0xAC,
  527. 0xD6, 0x2B, 0x67, 0x00, 0x00, 0x04, 0x00, 0x30,
  528. 0x08, 0x10, 0x01, 0x01, 0x48, 0x40, 0x00, 0x40,
  529. },
  530. },
  531. {
  532. .pixel_clock = 74176000,
  533. .conf = {
  534. 0x01, 0x51, 0x3E, 0x35, 0x5B, 0xDE, 0x88, 0x42,
  535. 0x53, 0x51, 0x44, 0x8C, 0x27, 0x00, 0x7C, 0xAC,
  536. 0xD6, 0x2B, 0x67, 0x00, 0x00, 0x04, 0x00, 0x30,
  537. 0x08, 0x10, 0x01, 0x01, 0x48, 0x40, 0x00, 0x40,
  538. },
  539. },
  540. {
  541. .pixel_clock = 74250000,
  542. .conf = {
  543. 0x01, 0x51, 0x3E, 0x35, 0x40, 0xF0, 0x88, 0xC2,
  544. 0x52, 0x51, 0x44, 0x8C, 0x27, 0x00, 0x7C, 0xAC,
  545. 0xD6, 0x2B, 0x67, 0x00, 0x00, 0x04, 0x00, 0x30,
  546. 0x08, 0x10, 0x01, 0x01, 0x48, 0x40, 0x00, 0x40,
  547. },
  548. },
  549. {
  550. .pixel_clock = 108000000,
  551. .conf = {
  552. 0x01, 0x51, 0x2d, 0x15, 0x01, 0x00, 0x88, 0x02,
  553. 0x72, 0x52, 0x44, 0x8C, 0x27, 0x00, 0x7C, 0xAC,
  554. 0xD6, 0x2B, 0x67, 0x00, 0x00, 0x04, 0x00, 0x30,
  555. 0x08, 0x10, 0x01, 0x01, 0x48, 0x40, 0x00, 0x40,
  556. },
  557. },
  558. {
  559. .pixel_clock = 148500000,
  560. .conf = {
  561. 0x01, 0x51, 0x1f, 0x00, 0x40, 0xf8, 0x88, 0xc1,
  562. 0x52, 0x52, 0x24, 0x0c, 0x24, 0x0f, 0x7c, 0xa5,
  563. 0xd4, 0x2b, 0x87, 0x00, 0x00, 0x04, 0x00, 0x30,
  564. 0x08, 0x10, 0x01, 0x01, 0x48, 0x4a, 0x00, 0x40,
  565. },
  566. },
  567. {
  568. .pixel_clock = 297000000,
  569. .conf = {
  570. 0x01, 0x51, 0x3E, 0x05, 0x40, 0xF0, 0x88, 0xC2,
  571. 0x52, 0x53, 0x44, 0x8C, 0x27, 0x00, 0x7C, 0xAC,
  572. 0xD6, 0x2B, 0x67, 0x00, 0x00, 0x04, 0x00, 0x30,
  573. 0x08, 0x10, 0x01, 0x01, 0x48, 0x40, 0x00, 0x40,
  574. },
  575. },
  576. };
  577. static const char * const hdmi_clk_gates4[] = {
  578. "hdmi", "sclk_hdmi"
  579. };
  580. static const char * const hdmi_clk_muxes4[] = {
  581. "sclk_pixel", "sclk_hdmiphy", "mout_hdmi"
  582. };
  583. static const char * const hdmi_clk_gates5433[] = {
  584. "hdmi_pclk", "hdmi_i_pclk", "i_tmds_clk", "i_pixel_clk", "i_spdif_clk"
  585. };
  586. static const char * const hdmi_clk_muxes5433[] = {
  587. "oscclk", "tmds_clko", "tmds_clko_user",
  588. "oscclk", "pixel_clko", "pixel_clko_user"
  589. };
  590. static const struct hdmi_driver_data exynos4210_hdmi_driver_data = {
  591. .type = HDMI_TYPE13,
  592. .phy_confs = INIT_ARRAY_SPEC(hdmiphy_v13_configs),
  593. .clk_gates = INIT_ARRAY_SPEC(hdmi_clk_gates4),
  594. .clk_muxes = INIT_ARRAY_SPEC(hdmi_clk_muxes4),
  595. };
  596. static const struct hdmi_driver_data exynos4212_hdmi_driver_data = {
  597. .type = HDMI_TYPE14,
  598. .phy_confs = INIT_ARRAY_SPEC(hdmiphy_v14_configs),
  599. .clk_gates = INIT_ARRAY_SPEC(hdmi_clk_gates4),
  600. .clk_muxes = INIT_ARRAY_SPEC(hdmi_clk_muxes4),
  601. };
  602. static const struct hdmi_driver_data exynos5420_hdmi_driver_data = {
  603. .type = HDMI_TYPE14,
  604. .is_apb_phy = 1,
  605. .phy_confs = INIT_ARRAY_SPEC(hdmiphy_5420_configs),
  606. .clk_gates = INIT_ARRAY_SPEC(hdmi_clk_gates4),
  607. .clk_muxes = INIT_ARRAY_SPEC(hdmi_clk_muxes4),
  608. };
  609. static const struct hdmi_driver_data exynos5433_hdmi_driver_data = {
  610. .type = HDMI_TYPE14,
  611. .is_apb_phy = 1,
  612. .has_sysreg = 1,
  613. .phy_confs = INIT_ARRAY_SPEC(hdmiphy_5433_configs),
  614. .clk_gates = INIT_ARRAY_SPEC(hdmi_clk_gates5433),
  615. .clk_muxes = INIT_ARRAY_SPEC(hdmi_clk_muxes5433),
  616. };
  617. static inline u32 hdmi_map_reg(struct hdmi_context *hdata, u32 reg_id)
  618. {
  619. if ((reg_id & 0xffff0000) == HDMI_MAPPED_BASE)
  620. return hdmi_reg_map[reg_id & 0xffff][hdata->drv_data->type];
  621. return reg_id;
  622. }
  623. static inline u32 hdmi_reg_read(struct hdmi_context *hdata, u32 reg_id)
  624. {
  625. return readl(hdata->regs + hdmi_map_reg(hdata, reg_id));
  626. }
  627. static inline void hdmi_reg_writeb(struct hdmi_context *hdata,
  628. u32 reg_id, u8 value)
  629. {
  630. writel(value, hdata->regs + hdmi_map_reg(hdata, reg_id));
  631. }
  632. static inline void hdmi_reg_writev(struct hdmi_context *hdata, u32 reg_id,
  633. int bytes, u32 val)
  634. {
  635. reg_id = hdmi_map_reg(hdata, reg_id);
  636. while (--bytes >= 0) {
  637. writel(val & 0xff, hdata->regs + reg_id);
  638. val >>= 8;
  639. reg_id += 4;
  640. }
  641. }
  642. static inline void hdmi_reg_write_buf(struct hdmi_context *hdata, u32 reg_id,
  643. u8 *buf, int size)
  644. {
  645. for (reg_id = hdmi_map_reg(hdata, reg_id); size; --size, reg_id += 4)
  646. writel(*buf++, hdata->regs + reg_id);
  647. }
  648. static inline void hdmi_reg_writemask(struct hdmi_context *hdata,
  649. u32 reg_id, u32 value, u32 mask)
  650. {
  651. u32 old;
  652. reg_id = hdmi_map_reg(hdata, reg_id);
  653. old = readl(hdata->regs + reg_id);
  654. value = (value & mask) | (old & ~mask);
  655. writel(value, hdata->regs + reg_id);
  656. }
  657. static int hdmiphy_reg_write_buf(struct hdmi_context *hdata,
  658. u32 reg_offset, const u8 *buf, u32 len)
  659. {
  660. if ((reg_offset + len) > 32)
  661. return -EINVAL;
  662. if (hdata->hdmiphy_port) {
  663. int ret;
  664. ret = i2c_master_send(hdata->hdmiphy_port, buf, len);
  665. if (ret == len)
  666. return 0;
  667. return ret;
  668. } else {
  669. int i;
  670. for (i = 0; i < len; i++)
  671. writel(buf[i], hdata->regs_hdmiphy +
  672. ((reg_offset + i)<<2));
  673. return 0;
  674. }
  675. }
  676. static int hdmi_clk_enable_gates(struct hdmi_context *hdata)
  677. {
  678. int i, ret;
  679. for (i = 0; i < hdata->drv_data->clk_gates.count; ++i) {
  680. ret = clk_prepare_enable(hdata->clk_gates[i]);
  681. if (!ret)
  682. continue;
  683. dev_err(hdata->dev, "Cannot enable clock '%s', %d\n",
  684. hdata->drv_data->clk_gates.data[i], ret);
  685. while (i--)
  686. clk_disable_unprepare(hdata->clk_gates[i]);
  687. return ret;
  688. }
  689. return 0;
  690. }
  691. static void hdmi_clk_disable_gates(struct hdmi_context *hdata)
  692. {
  693. int i = hdata->drv_data->clk_gates.count;
  694. while (i--)
  695. clk_disable_unprepare(hdata->clk_gates[i]);
  696. }
  697. static int hdmi_clk_set_parents(struct hdmi_context *hdata, bool to_phy)
  698. {
  699. struct device *dev = hdata->dev;
  700. int ret = 0;
  701. int i;
  702. for (i = 0; i < hdata->drv_data->clk_muxes.count; i += 3) {
  703. struct clk **c = &hdata->clk_muxes[i];
  704. ret = clk_set_parent(c[2], c[to_phy]);
  705. if (!ret)
  706. continue;
  707. dev_err(dev, "Cannot set clock parent of '%s' to '%s', %d\n",
  708. hdata->drv_data->clk_muxes.data[i + 2],
  709. hdata->drv_data->clk_muxes.data[i + to_phy], ret);
  710. }
  711. return ret;
  712. }
  713. static void hdmi_reg_infoframes(struct hdmi_context *hdata)
  714. {
  715. union hdmi_infoframe frm;
  716. u8 buf[25];
  717. int ret;
  718. if (hdata->dvi_mode) {
  719. hdmi_reg_writeb(hdata, HDMI_AVI_CON,
  720. HDMI_AVI_CON_DO_NOT_TRANSMIT);
  721. hdmi_reg_writeb(hdata, HDMI_VSI_CON,
  722. HDMI_VSI_CON_DO_NOT_TRANSMIT);
  723. hdmi_reg_writeb(hdata, HDMI_AUI_CON, HDMI_AUI_CON_NO_TRAN);
  724. return;
  725. }
  726. ret = drm_hdmi_avi_infoframe_from_display_mode(&frm.avi,
  727. &hdata->current_mode);
  728. if (!ret)
  729. ret = hdmi_avi_infoframe_pack(&frm.avi, buf, sizeof(buf));
  730. if (ret > 0) {
  731. hdmi_reg_writeb(hdata, HDMI_AVI_CON, HDMI_AVI_CON_EVERY_VSYNC);
  732. hdmi_reg_write_buf(hdata, HDMI_AVI_HEADER0, buf, ret);
  733. } else {
  734. DRM_INFO("%s: invalid AVI infoframe (%d)\n", __func__, ret);
  735. }
  736. ret = drm_hdmi_vendor_infoframe_from_display_mode(&frm.vendor.hdmi,
  737. &hdata->current_mode);
  738. if (!ret)
  739. ret = hdmi_vendor_infoframe_pack(&frm.vendor.hdmi, buf,
  740. sizeof(buf));
  741. if (ret > 0) {
  742. hdmi_reg_writeb(hdata, HDMI_VSI_CON, HDMI_VSI_CON_EVERY_VSYNC);
  743. hdmi_reg_write_buf(hdata, HDMI_VSI_HEADER0, buf, 3);
  744. hdmi_reg_write_buf(hdata, HDMI_VSI_DATA(0), buf + 3, ret - 3);
  745. }
  746. ret = hdmi_audio_infoframe_init(&frm.audio);
  747. if (!ret) {
  748. frm.audio.channels = 2;
  749. ret = hdmi_audio_infoframe_pack(&frm.audio, buf, sizeof(buf));
  750. }
  751. if (ret > 0) {
  752. hdmi_reg_writeb(hdata, HDMI_AUI_CON, HDMI_AUI_CON_EVERY_VSYNC);
  753. hdmi_reg_write_buf(hdata, HDMI_AUI_HEADER0, buf, ret);
  754. }
  755. }
  756. static enum drm_connector_status hdmi_detect(struct drm_connector *connector,
  757. bool force)
  758. {
  759. struct hdmi_context *hdata = connector_to_hdmi(connector);
  760. if (gpiod_get_value(hdata->hpd_gpio))
  761. return connector_status_connected;
  762. return connector_status_disconnected;
  763. }
  764. static void hdmi_connector_destroy(struct drm_connector *connector)
  765. {
  766. drm_connector_unregister(connector);
  767. drm_connector_cleanup(connector);
  768. }
  769. static const struct drm_connector_funcs hdmi_connector_funcs = {
  770. .dpms = drm_atomic_helper_connector_dpms,
  771. .fill_modes = drm_helper_probe_single_connector_modes,
  772. .detect = hdmi_detect,
  773. .destroy = hdmi_connector_destroy,
  774. .reset = drm_atomic_helper_connector_reset,
  775. .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
  776. .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
  777. };
  778. static int hdmi_get_modes(struct drm_connector *connector)
  779. {
  780. struct hdmi_context *hdata = connector_to_hdmi(connector);
  781. struct edid *edid;
  782. int ret;
  783. if (!hdata->ddc_adpt)
  784. return -ENODEV;
  785. edid = drm_get_edid(connector, hdata->ddc_adpt);
  786. if (!edid)
  787. return -ENODEV;
  788. hdata->dvi_mode = !drm_detect_hdmi_monitor(edid);
  789. DRM_DEBUG_KMS("%s : width[%d] x height[%d]\n",
  790. (hdata->dvi_mode ? "dvi monitor" : "hdmi monitor"),
  791. edid->width_cm, edid->height_cm);
  792. drm_mode_connector_update_edid_property(connector, edid);
  793. ret = drm_add_edid_modes(connector, edid);
  794. kfree(edid);
  795. return ret;
  796. }
  797. static int hdmi_find_phy_conf(struct hdmi_context *hdata, u32 pixel_clock)
  798. {
  799. const struct hdmiphy_configs *confs = &hdata->drv_data->phy_confs;
  800. int i;
  801. for (i = 0; i < confs->count; i++)
  802. if (confs->data[i].pixel_clock == pixel_clock)
  803. return i;
  804. DRM_DEBUG_KMS("Could not find phy config for %d\n", pixel_clock);
  805. return -EINVAL;
  806. }
  807. static int hdmi_mode_valid(struct drm_connector *connector,
  808. struct drm_display_mode *mode)
  809. {
  810. struct hdmi_context *hdata = connector_to_hdmi(connector);
  811. int ret;
  812. DRM_DEBUG_KMS("xres=%d, yres=%d, refresh=%d, intl=%d clock=%d\n",
  813. mode->hdisplay, mode->vdisplay, mode->vrefresh,
  814. (mode->flags & DRM_MODE_FLAG_INTERLACE) ? true :
  815. false, mode->clock * 1000);
  816. ret = hdmi_find_phy_conf(hdata, mode->clock * 1000);
  817. if (ret < 0)
  818. return MODE_BAD;
  819. return MODE_OK;
  820. }
  821. static const struct drm_connector_helper_funcs hdmi_connector_helper_funcs = {
  822. .get_modes = hdmi_get_modes,
  823. .mode_valid = hdmi_mode_valid,
  824. };
  825. static int hdmi_create_connector(struct drm_encoder *encoder)
  826. {
  827. struct hdmi_context *hdata = encoder_to_hdmi(encoder);
  828. struct drm_connector *connector = &hdata->connector;
  829. int ret;
  830. connector->interlace_allowed = true;
  831. connector->polled = DRM_CONNECTOR_POLL_HPD;
  832. ret = drm_connector_init(hdata->drm_dev, connector,
  833. &hdmi_connector_funcs, DRM_MODE_CONNECTOR_HDMIA);
  834. if (ret) {
  835. DRM_ERROR("Failed to initialize connector with drm\n");
  836. return ret;
  837. }
  838. drm_connector_helper_add(connector, &hdmi_connector_helper_funcs);
  839. drm_mode_connector_attach_encoder(connector, encoder);
  840. if (hdata->bridge) {
  841. encoder->bridge = hdata->bridge;
  842. hdata->bridge->encoder = encoder;
  843. ret = drm_bridge_attach(encoder, hdata->bridge, NULL);
  844. if (ret)
  845. DRM_ERROR("Failed to attach bridge\n");
  846. }
  847. return ret;
  848. }
  849. static bool hdmi_mode_fixup(struct drm_encoder *encoder,
  850. const struct drm_display_mode *mode,
  851. struct drm_display_mode *adjusted_mode)
  852. {
  853. struct drm_device *dev = encoder->dev;
  854. struct drm_connector *connector;
  855. struct drm_display_mode *m;
  856. int mode_ok;
  857. drm_mode_set_crtcinfo(adjusted_mode, 0);
  858. list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
  859. if (connector->encoder == encoder)
  860. break;
  861. }
  862. if (connector->encoder != encoder)
  863. return true;
  864. mode_ok = hdmi_mode_valid(connector, adjusted_mode);
  865. if (mode_ok == MODE_OK)
  866. return true;
  867. /*
  868. * Find the most suitable mode and copy it to adjusted_mode.
  869. */
  870. list_for_each_entry(m, &connector->modes, head) {
  871. mode_ok = hdmi_mode_valid(connector, m);
  872. if (mode_ok == MODE_OK) {
  873. DRM_INFO("desired mode doesn't exist so\n");
  874. DRM_INFO("use the most suitable mode among modes.\n");
  875. DRM_DEBUG_KMS("Adjusted Mode: [%d]x[%d] [%d]Hz\n",
  876. m->hdisplay, m->vdisplay, m->vrefresh);
  877. drm_mode_copy(adjusted_mode, m);
  878. break;
  879. }
  880. }
  881. return true;
  882. }
  883. static void hdmi_reg_acr(struct hdmi_context *hdata, u32 freq)
  884. {
  885. u32 n, cts;
  886. cts = (freq % 9) ? 27000 : 30000;
  887. n = 128 * freq / (27000000 / cts);
  888. hdmi_reg_writev(hdata, HDMI_ACR_N0, 3, n);
  889. hdmi_reg_writev(hdata, HDMI_ACR_MCTS0, 3, cts);
  890. hdmi_reg_writev(hdata, HDMI_ACR_CTS0, 3, cts);
  891. hdmi_reg_writeb(hdata, HDMI_ACR_CON, 4);
  892. }
  893. static void hdmi_audio_init(struct hdmi_context *hdata)
  894. {
  895. u32 sample_rate, bits_per_sample;
  896. u32 data_num, bit_ch, sample_frq;
  897. u32 val;
  898. sample_rate = 44100;
  899. bits_per_sample = 16;
  900. switch (bits_per_sample) {
  901. case 20:
  902. data_num = 2;
  903. bit_ch = 1;
  904. break;
  905. case 24:
  906. data_num = 3;
  907. bit_ch = 1;
  908. break;
  909. default:
  910. data_num = 1;
  911. bit_ch = 0;
  912. break;
  913. }
  914. hdmi_reg_acr(hdata, sample_rate);
  915. hdmi_reg_writeb(hdata, HDMI_I2S_MUX_CON, HDMI_I2S_IN_DISABLE
  916. | HDMI_I2S_AUD_I2S | HDMI_I2S_CUV_I2S_ENABLE
  917. | HDMI_I2S_MUX_ENABLE);
  918. hdmi_reg_writeb(hdata, HDMI_I2S_MUX_CH, HDMI_I2S_CH0_EN
  919. | HDMI_I2S_CH1_EN | HDMI_I2S_CH2_EN);
  920. hdmi_reg_writeb(hdata, HDMI_I2S_MUX_CUV, HDMI_I2S_CUV_RL_EN);
  921. sample_frq = (sample_rate == 44100) ? 0 :
  922. (sample_rate == 48000) ? 2 :
  923. (sample_rate == 32000) ? 3 :
  924. (sample_rate == 96000) ? 0xa : 0x0;
  925. hdmi_reg_writeb(hdata, HDMI_I2S_CLK_CON, HDMI_I2S_CLK_DIS);
  926. hdmi_reg_writeb(hdata, HDMI_I2S_CLK_CON, HDMI_I2S_CLK_EN);
  927. val = hdmi_reg_read(hdata, HDMI_I2S_DSD_CON) | 0x01;
  928. hdmi_reg_writeb(hdata, HDMI_I2S_DSD_CON, val);
  929. /* Configuration I2S input ports. Configure I2S_PIN_SEL_0~4 */
  930. hdmi_reg_writeb(hdata, HDMI_I2S_PIN_SEL_0, HDMI_I2S_SEL_SCLK(5)
  931. | HDMI_I2S_SEL_LRCK(6));
  932. hdmi_reg_writeb(hdata, HDMI_I2S_PIN_SEL_1, HDMI_I2S_SEL_SDATA1(1)
  933. | HDMI_I2S_SEL_SDATA2(4));
  934. hdmi_reg_writeb(hdata, HDMI_I2S_PIN_SEL_2, HDMI_I2S_SEL_SDATA3(1)
  935. | HDMI_I2S_SEL_SDATA2(2));
  936. hdmi_reg_writeb(hdata, HDMI_I2S_PIN_SEL_3, HDMI_I2S_SEL_DSD(0));
  937. /* I2S_CON_1 & 2 */
  938. hdmi_reg_writeb(hdata, HDMI_I2S_CON_1, HDMI_I2S_SCLK_FALLING_EDGE
  939. | HDMI_I2S_L_CH_LOW_POL);
  940. hdmi_reg_writeb(hdata, HDMI_I2S_CON_2, HDMI_I2S_MSB_FIRST_MODE
  941. | HDMI_I2S_SET_BIT_CH(bit_ch)
  942. | HDMI_I2S_SET_SDATA_BIT(data_num)
  943. | HDMI_I2S_BASIC_FORMAT);
  944. /* Configure register related to CUV information */
  945. hdmi_reg_writeb(hdata, HDMI_I2S_CH_ST_0, HDMI_I2S_CH_STATUS_MODE_0
  946. | HDMI_I2S_2AUD_CH_WITHOUT_PREEMPH
  947. | HDMI_I2S_COPYRIGHT
  948. | HDMI_I2S_LINEAR_PCM
  949. | HDMI_I2S_CONSUMER_FORMAT);
  950. hdmi_reg_writeb(hdata, HDMI_I2S_CH_ST_1, HDMI_I2S_CD_PLAYER);
  951. hdmi_reg_writeb(hdata, HDMI_I2S_CH_ST_2, HDMI_I2S_SET_SOURCE_NUM(0));
  952. hdmi_reg_writeb(hdata, HDMI_I2S_CH_ST_3, HDMI_I2S_CLK_ACCUR_LEVEL_2
  953. | HDMI_I2S_SET_SMP_FREQ(sample_frq));
  954. hdmi_reg_writeb(hdata, HDMI_I2S_CH_ST_4,
  955. HDMI_I2S_ORG_SMP_FREQ_44_1
  956. | HDMI_I2S_WORD_LEN_MAX24_24BITS
  957. | HDMI_I2S_WORD_LEN_MAX_24BITS);
  958. hdmi_reg_writeb(hdata, HDMI_I2S_CH_ST_CON, HDMI_I2S_CH_STATUS_RELOAD);
  959. }
  960. static void hdmi_audio_control(struct hdmi_context *hdata, bool onoff)
  961. {
  962. if (hdata->dvi_mode)
  963. return;
  964. hdmi_reg_writeb(hdata, HDMI_AUI_CON, onoff ? 2 : 0);
  965. hdmi_reg_writemask(hdata, HDMI_CON_0, onoff ?
  966. HDMI_ASP_EN : HDMI_ASP_DIS, HDMI_ASP_MASK);
  967. }
  968. static void hdmi_start(struct hdmi_context *hdata, bool start)
  969. {
  970. u32 val = start ? HDMI_TG_EN : 0;
  971. if (hdata->current_mode.flags & DRM_MODE_FLAG_INTERLACE)
  972. val |= HDMI_FIELD_EN;
  973. hdmi_reg_writemask(hdata, HDMI_CON_0, val, HDMI_EN);
  974. hdmi_reg_writemask(hdata, HDMI_TG_CMD, val, HDMI_TG_EN | HDMI_FIELD_EN);
  975. }
  976. static void hdmi_conf_init(struct hdmi_context *hdata)
  977. {
  978. /* disable HPD interrupts from HDMI IP block, use GPIO instead */
  979. hdmi_reg_writemask(hdata, HDMI_INTC_CON, 0, HDMI_INTC_EN_GLOBAL |
  980. HDMI_INTC_EN_HPD_PLUG | HDMI_INTC_EN_HPD_UNPLUG);
  981. /* choose HDMI mode */
  982. hdmi_reg_writemask(hdata, HDMI_MODE_SEL,
  983. HDMI_MODE_HDMI_EN, HDMI_MODE_MASK);
  984. /* apply video pre-amble and guard band in HDMI mode only */
  985. hdmi_reg_writeb(hdata, HDMI_CON_2, 0);
  986. /* disable bluescreen */
  987. hdmi_reg_writemask(hdata, HDMI_CON_0, 0, HDMI_BLUE_SCR_EN);
  988. if (hdata->dvi_mode) {
  989. hdmi_reg_writemask(hdata, HDMI_MODE_SEL,
  990. HDMI_MODE_DVI_EN, HDMI_MODE_MASK);
  991. hdmi_reg_writeb(hdata, HDMI_CON_2,
  992. HDMI_VID_PREAMBLE_DIS | HDMI_GUARD_BAND_DIS);
  993. }
  994. if (hdata->drv_data->type == HDMI_TYPE13) {
  995. /* choose bluescreen (fecal) color */
  996. hdmi_reg_writeb(hdata, HDMI_V13_BLUE_SCREEN_0, 0x12);
  997. hdmi_reg_writeb(hdata, HDMI_V13_BLUE_SCREEN_1, 0x34);
  998. hdmi_reg_writeb(hdata, HDMI_V13_BLUE_SCREEN_2, 0x56);
  999. /* enable AVI packet every vsync, fixes purple line problem */
  1000. hdmi_reg_writeb(hdata, HDMI_V13_AVI_CON, 0x02);
  1001. /* force RGB, look to CEA-861-D, table 7 for more detail */
  1002. hdmi_reg_writeb(hdata, HDMI_V13_AVI_BYTE(0), 0 << 5);
  1003. hdmi_reg_writemask(hdata, HDMI_CON_1, 0x10 << 5, 0x11 << 5);
  1004. hdmi_reg_writeb(hdata, HDMI_V13_SPD_CON, 0x02);
  1005. hdmi_reg_writeb(hdata, HDMI_V13_AUI_CON, 0x02);
  1006. hdmi_reg_writeb(hdata, HDMI_V13_ACR_CON, 0x04);
  1007. } else {
  1008. hdmi_reg_infoframes(hdata);
  1009. /* enable AVI packet every vsync, fixes purple line problem */
  1010. hdmi_reg_writemask(hdata, HDMI_CON_1, 2, 3 << 5);
  1011. }
  1012. }
  1013. static void hdmiphy_wait_for_pll(struct hdmi_context *hdata)
  1014. {
  1015. int tries;
  1016. for (tries = 0; tries < 10; ++tries) {
  1017. u32 val = hdmi_reg_read(hdata, HDMI_PHY_STATUS);
  1018. if (val & HDMI_PHY_STATUS_READY) {
  1019. DRM_DEBUG_KMS("PLL stabilized after %d tries\n", tries);
  1020. return;
  1021. }
  1022. usleep_range(10, 20);
  1023. }
  1024. DRM_ERROR("PLL could not reach steady state\n");
  1025. }
  1026. static void hdmi_v13_mode_apply(struct hdmi_context *hdata)
  1027. {
  1028. struct drm_display_mode *m = &hdata->current_mode;
  1029. unsigned int val;
  1030. hdmi_reg_writev(hdata, HDMI_H_BLANK_0, 2, m->htotal - m->hdisplay);
  1031. hdmi_reg_writev(hdata, HDMI_V13_H_V_LINE_0, 3,
  1032. (m->htotal << 12) | m->vtotal);
  1033. val = (m->flags & DRM_MODE_FLAG_NVSYNC) ? 1 : 0;
  1034. hdmi_reg_writev(hdata, HDMI_VSYNC_POL, 1, val);
  1035. val = (m->flags & DRM_MODE_FLAG_INTERLACE) ? 1 : 0;
  1036. hdmi_reg_writev(hdata, HDMI_INT_PRO_MODE, 1, val);
  1037. val = (m->hsync_start - m->hdisplay - 2);
  1038. val |= ((m->hsync_end - m->hdisplay - 2) << 10);
  1039. val |= ((m->flags & DRM_MODE_FLAG_NHSYNC) ? 1 : 0)<<20;
  1040. hdmi_reg_writev(hdata, HDMI_V13_H_SYNC_GEN_0, 3, val);
  1041. /*
  1042. * Quirk requirement for exynos HDMI IP design,
  1043. * 2 pixels less than the actual calculation for hsync_start
  1044. * and end.
  1045. */
  1046. /* Following values & calculations differ for different type of modes */
  1047. if (m->flags & DRM_MODE_FLAG_INTERLACE) {
  1048. val = ((m->vsync_end - m->vdisplay) / 2);
  1049. val |= ((m->vsync_start - m->vdisplay) / 2) << 12;
  1050. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_1_0, 3, val);
  1051. val = m->vtotal / 2;
  1052. val |= ((m->vtotal - m->vdisplay) / 2) << 11;
  1053. hdmi_reg_writev(hdata, HDMI_V13_V_BLANK_0, 3, val);
  1054. val = (m->vtotal +
  1055. ((m->vsync_end - m->vsync_start) * 4) + 5) / 2;
  1056. val |= m->vtotal << 11;
  1057. hdmi_reg_writev(hdata, HDMI_V13_V_BLANK_F_0, 3, val);
  1058. val = ((m->vtotal / 2) + 7);
  1059. val |= ((m->vtotal / 2) + 2) << 12;
  1060. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_2_0, 3, val);
  1061. val = ((m->htotal / 2) + (m->hsync_start - m->hdisplay));
  1062. val |= ((m->htotal / 2) +
  1063. (m->hsync_start - m->hdisplay)) << 12;
  1064. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_3_0, 3, val);
  1065. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST_L, 2,
  1066. (m->vtotal - m->vdisplay) / 2);
  1067. hdmi_reg_writev(hdata, HDMI_TG_VACT_SZ_L, 2, m->vdisplay / 2);
  1068. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST2_L, 2, 0x249);
  1069. } else {
  1070. val = m->vtotal;
  1071. val |= (m->vtotal - m->vdisplay) << 11;
  1072. hdmi_reg_writev(hdata, HDMI_V13_V_BLANK_0, 3, val);
  1073. hdmi_reg_writev(hdata, HDMI_V13_V_BLANK_F_0, 3, 0);
  1074. val = (m->vsync_end - m->vdisplay);
  1075. val |= ((m->vsync_start - m->vdisplay) << 12);
  1076. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_1_0, 3, val);
  1077. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_2_0, 3, 0x1001);
  1078. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_3_0, 3, 0x1001);
  1079. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST_L, 2,
  1080. m->vtotal - m->vdisplay);
  1081. hdmi_reg_writev(hdata, HDMI_TG_VACT_SZ_L, 2, m->vdisplay);
  1082. }
  1083. hdmi_reg_writev(hdata, HDMI_TG_H_FSZ_L, 2, m->htotal);
  1084. hdmi_reg_writev(hdata, HDMI_TG_HACT_ST_L, 2, m->htotal - m->hdisplay);
  1085. hdmi_reg_writev(hdata, HDMI_TG_HACT_SZ_L, 2, m->hdisplay);
  1086. hdmi_reg_writev(hdata, HDMI_TG_V_FSZ_L, 2, m->vtotal);
  1087. }
  1088. static void hdmi_v14_mode_apply(struct hdmi_context *hdata)
  1089. {
  1090. struct drm_display_mode *m = &hdata->current_mode;
  1091. hdmi_reg_writev(hdata, HDMI_H_BLANK_0, 2, m->htotal - m->hdisplay);
  1092. hdmi_reg_writev(hdata, HDMI_V_LINE_0, 2, m->vtotal);
  1093. hdmi_reg_writev(hdata, HDMI_H_LINE_0, 2, m->htotal);
  1094. hdmi_reg_writev(hdata, HDMI_HSYNC_POL, 1,
  1095. (m->flags & DRM_MODE_FLAG_NHSYNC) ? 1 : 0);
  1096. hdmi_reg_writev(hdata, HDMI_VSYNC_POL, 1,
  1097. (m->flags & DRM_MODE_FLAG_NVSYNC) ? 1 : 0);
  1098. hdmi_reg_writev(hdata, HDMI_INT_PRO_MODE, 1,
  1099. (m->flags & DRM_MODE_FLAG_INTERLACE) ? 1 : 0);
  1100. /*
  1101. * Quirk requirement for exynos 5 HDMI IP design,
  1102. * 2 pixels less than the actual calculation for hsync_start
  1103. * and end.
  1104. */
  1105. /* Following values & calculations differ for different type of modes */
  1106. if (m->flags & DRM_MODE_FLAG_INTERLACE) {
  1107. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_BEF_2_0, 2,
  1108. (m->vsync_end - m->vdisplay) / 2);
  1109. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_BEF_1_0, 2,
  1110. (m->vsync_start - m->vdisplay) / 2);
  1111. hdmi_reg_writev(hdata, HDMI_V2_BLANK_0, 2, m->vtotal / 2);
  1112. hdmi_reg_writev(hdata, HDMI_V1_BLANK_0, 2,
  1113. (m->vtotal - m->vdisplay) / 2);
  1114. hdmi_reg_writev(hdata, HDMI_V_BLANK_F0_0, 2,
  1115. m->vtotal - m->vdisplay / 2);
  1116. hdmi_reg_writev(hdata, HDMI_V_BLANK_F1_0, 2, m->vtotal);
  1117. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_2_0, 2,
  1118. (m->vtotal / 2) + 7);
  1119. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_1_0, 2,
  1120. (m->vtotal / 2) + 2);
  1121. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_2_0, 2,
  1122. (m->htotal / 2) + (m->hsync_start - m->hdisplay));
  1123. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_1_0, 2,
  1124. (m->htotal / 2) + (m->hsync_start - m->hdisplay));
  1125. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST_L, 2,
  1126. (m->vtotal - m->vdisplay) / 2);
  1127. hdmi_reg_writev(hdata, HDMI_TG_VACT_SZ_L, 2, m->vdisplay / 2);
  1128. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST2_L, 2,
  1129. m->vtotal - m->vdisplay / 2);
  1130. hdmi_reg_writev(hdata, HDMI_TG_VSYNC2_L, 2,
  1131. (m->vtotal / 2) + 1);
  1132. hdmi_reg_writev(hdata, HDMI_TG_VSYNC_BOT_HDMI_L, 2,
  1133. (m->vtotal / 2) + 1);
  1134. hdmi_reg_writev(hdata, HDMI_TG_FIELD_BOT_HDMI_L, 2,
  1135. (m->vtotal / 2) + 1);
  1136. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST3_L, 2, 0x0);
  1137. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST4_L, 2, 0x0);
  1138. } else {
  1139. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_BEF_2_0, 2,
  1140. m->vsync_end - m->vdisplay);
  1141. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_BEF_1_0, 2,
  1142. m->vsync_start - m->vdisplay);
  1143. hdmi_reg_writev(hdata, HDMI_V2_BLANK_0, 2, m->vtotal);
  1144. hdmi_reg_writev(hdata, HDMI_V1_BLANK_0, 2,
  1145. m->vtotal - m->vdisplay);
  1146. hdmi_reg_writev(hdata, HDMI_V_BLANK_F0_0, 2, 0xffff);
  1147. hdmi_reg_writev(hdata, HDMI_V_BLANK_F1_0, 2, 0xffff);
  1148. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_2_0, 2, 0xffff);
  1149. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_1_0, 2, 0xffff);
  1150. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_2_0, 2, 0xffff);
  1151. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_1_0, 2, 0xffff);
  1152. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST_L, 2,
  1153. m->vtotal - m->vdisplay);
  1154. hdmi_reg_writev(hdata, HDMI_TG_VACT_SZ_L, 2, m->vdisplay);
  1155. }
  1156. hdmi_reg_writev(hdata, HDMI_H_SYNC_START_0, 2,
  1157. m->hsync_start - m->hdisplay - 2);
  1158. hdmi_reg_writev(hdata, HDMI_H_SYNC_END_0, 2,
  1159. m->hsync_end - m->hdisplay - 2);
  1160. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_1_0, 2, 0xffff);
  1161. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_2_0, 2, 0xffff);
  1162. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_3_0, 2, 0xffff);
  1163. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_4_0, 2, 0xffff);
  1164. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_5_0, 2, 0xffff);
  1165. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_6_0, 2, 0xffff);
  1166. hdmi_reg_writev(hdata, HDMI_V_BLANK_F2_0, 2, 0xffff);
  1167. hdmi_reg_writev(hdata, HDMI_V_BLANK_F3_0, 2, 0xffff);
  1168. hdmi_reg_writev(hdata, HDMI_V_BLANK_F4_0, 2, 0xffff);
  1169. hdmi_reg_writev(hdata, HDMI_V_BLANK_F5_0, 2, 0xffff);
  1170. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_3_0, 2, 0xffff);
  1171. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_4_0, 2, 0xffff);
  1172. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_5_0, 2, 0xffff);
  1173. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_6_0, 2, 0xffff);
  1174. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_3_0, 2, 0xffff);
  1175. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_4_0, 2, 0xffff);
  1176. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_5_0, 2, 0xffff);
  1177. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_6_0, 2, 0xffff);
  1178. hdmi_reg_writev(hdata, HDMI_TG_H_FSZ_L, 2, m->htotal);
  1179. hdmi_reg_writev(hdata, HDMI_TG_HACT_ST_L, 2, m->htotal - m->hdisplay);
  1180. hdmi_reg_writev(hdata, HDMI_TG_HACT_SZ_L, 2, m->hdisplay);
  1181. hdmi_reg_writev(hdata, HDMI_TG_V_FSZ_L, 2, m->vtotal);
  1182. if (hdata->drv_data == &exynos5433_hdmi_driver_data)
  1183. hdmi_reg_writeb(hdata, HDMI_TG_DECON_EN, 1);
  1184. }
  1185. static void hdmi_mode_apply(struct hdmi_context *hdata)
  1186. {
  1187. if (hdata->drv_data->type == HDMI_TYPE13)
  1188. hdmi_v13_mode_apply(hdata);
  1189. else
  1190. hdmi_v14_mode_apply(hdata);
  1191. hdmi_start(hdata, true);
  1192. }
  1193. static void hdmiphy_conf_reset(struct hdmi_context *hdata)
  1194. {
  1195. hdmi_reg_writemask(hdata, HDMI_CORE_RSTOUT, 0, 1);
  1196. usleep_range(10000, 12000);
  1197. hdmi_reg_writemask(hdata, HDMI_CORE_RSTOUT, ~0, 1);
  1198. usleep_range(10000, 12000);
  1199. hdmi_reg_writemask(hdata, HDMI_PHY_RSTOUT, ~0, HDMI_PHY_SW_RSTOUT);
  1200. usleep_range(10000, 12000);
  1201. hdmi_reg_writemask(hdata, HDMI_PHY_RSTOUT, 0, HDMI_PHY_SW_RSTOUT);
  1202. usleep_range(10000, 12000);
  1203. }
  1204. static void hdmiphy_enable_mode_set(struct hdmi_context *hdata, bool enable)
  1205. {
  1206. u8 v = enable ? HDMI_PHY_ENABLE_MODE_SET : HDMI_PHY_DISABLE_MODE_SET;
  1207. if (hdata->drv_data == &exynos5433_hdmi_driver_data)
  1208. writel(v, hdata->regs_hdmiphy + HDMIPHY5433_MODE_SET_DONE);
  1209. }
  1210. static void hdmiphy_conf_apply(struct hdmi_context *hdata)
  1211. {
  1212. int ret;
  1213. const u8 *phy_conf;
  1214. ret = hdmi_find_phy_conf(hdata, hdata->current_mode.clock * 1000);
  1215. if (ret < 0) {
  1216. DRM_ERROR("failed to find hdmiphy conf\n");
  1217. return;
  1218. }
  1219. phy_conf = hdata->drv_data->phy_confs.data[ret].conf;
  1220. hdmi_clk_set_parents(hdata, false);
  1221. hdmiphy_conf_reset(hdata);
  1222. hdmiphy_enable_mode_set(hdata, true);
  1223. ret = hdmiphy_reg_write_buf(hdata, 0, phy_conf, 32);
  1224. if (ret) {
  1225. DRM_ERROR("failed to configure hdmiphy\n");
  1226. return;
  1227. }
  1228. hdmiphy_enable_mode_set(hdata, false);
  1229. hdmi_clk_set_parents(hdata, true);
  1230. usleep_range(10000, 12000);
  1231. hdmiphy_wait_for_pll(hdata);
  1232. }
  1233. static void hdmi_conf_apply(struct hdmi_context *hdata)
  1234. {
  1235. hdmi_start(hdata, false);
  1236. hdmi_conf_init(hdata);
  1237. hdmi_audio_init(hdata);
  1238. hdmi_mode_apply(hdata);
  1239. hdmi_audio_control(hdata, true);
  1240. }
  1241. static void hdmi_mode_set(struct drm_encoder *encoder,
  1242. struct drm_display_mode *mode,
  1243. struct drm_display_mode *adjusted_mode)
  1244. {
  1245. struct hdmi_context *hdata = encoder_to_hdmi(encoder);
  1246. struct drm_display_mode *m = adjusted_mode;
  1247. DRM_DEBUG_KMS("xres=%d, yres=%d, refresh=%d, intl=%s\n",
  1248. m->hdisplay, m->vdisplay,
  1249. m->vrefresh, (m->flags & DRM_MODE_FLAG_INTERLACE) ?
  1250. "INTERLACED" : "PROGRESSIVE");
  1251. drm_mode_copy(&hdata->current_mode, m);
  1252. }
  1253. static void hdmi_set_refclk(struct hdmi_context *hdata, bool on)
  1254. {
  1255. if (!hdata->sysreg)
  1256. return;
  1257. regmap_update_bits(hdata->sysreg, EXYNOS5433_SYSREG_DISP_HDMI_PHY,
  1258. SYSREG_HDMI_REFCLK_INT_CLK, on ? ~0 : 0);
  1259. }
  1260. static void hdmiphy_enable(struct hdmi_context *hdata)
  1261. {
  1262. if (hdata->powered)
  1263. return;
  1264. pm_runtime_get_sync(hdata->dev);
  1265. if (regulator_bulk_enable(ARRAY_SIZE(supply), hdata->regul_bulk))
  1266. DRM_DEBUG_KMS("failed to enable regulator bulk\n");
  1267. regmap_update_bits(hdata->pmureg, PMU_HDMI_PHY_CONTROL,
  1268. PMU_HDMI_PHY_ENABLE_BIT, 1);
  1269. hdmi_set_refclk(hdata, true);
  1270. hdmi_reg_writemask(hdata, HDMI_PHY_CON_0, 0, HDMI_PHY_POWER_OFF_EN);
  1271. hdmiphy_conf_apply(hdata);
  1272. hdata->powered = true;
  1273. }
  1274. static void hdmiphy_disable(struct hdmi_context *hdata)
  1275. {
  1276. if (!hdata->powered)
  1277. return;
  1278. hdmi_reg_writemask(hdata, HDMI_CON_0, 0, HDMI_EN);
  1279. hdmi_reg_writemask(hdata, HDMI_PHY_CON_0, ~0, HDMI_PHY_POWER_OFF_EN);
  1280. hdmi_set_refclk(hdata, false);
  1281. regmap_update_bits(hdata->pmureg, PMU_HDMI_PHY_CONTROL,
  1282. PMU_HDMI_PHY_ENABLE_BIT, 0);
  1283. regulator_bulk_disable(ARRAY_SIZE(supply), hdata->regul_bulk);
  1284. pm_runtime_put_sync(hdata->dev);
  1285. hdata->powered = false;
  1286. }
  1287. static void hdmi_enable(struct drm_encoder *encoder)
  1288. {
  1289. struct hdmi_context *hdata = encoder_to_hdmi(encoder);
  1290. hdmiphy_enable(hdata);
  1291. hdmi_conf_apply(hdata);
  1292. }
  1293. static void hdmi_disable(struct drm_encoder *encoder)
  1294. {
  1295. struct hdmi_context *hdata = encoder_to_hdmi(encoder);
  1296. struct drm_crtc *crtc = encoder->crtc;
  1297. const struct drm_crtc_helper_funcs *funcs = NULL;
  1298. if (!hdata->powered)
  1299. return;
  1300. /*
  1301. * The SFRs of VP and Mixer are updated by Vertical Sync of
  1302. * Timing generator which is a part of HDMI so the sequence
  1303. * to disable TV Subsystem should be as following,
  1304. * VP -> Mixer -> HDMI
  1305. *
  1306. * Below codes will try to disable Mixer and VP(if used)
  1307. * prior to disabling HDMI.
  1308. */
  1309. if (crtc)
  1310. funcs = crtc->helper_private;
  1311. if (funcs && funcs->disable)
  1312. (*funcs->disable)(crtc);
  1313. cancel_delayed_work(&hdata->hotplug_work);
  1314. hdmiphy_disable(hdata);
  1315. }
  1316. static const struct drm_encoder_helper_funcs exynos_hdmi_encoder_helper_funcs = {
  1317. .mode_fixup = hdmi_mode_fixup,
  1318. .mode_set = hdmi_mode_set,
  1319. .enable = hdmi_enable,
  1320. .disable = hdmi_disable,
  1321. };
  1322. static const struct drm_encoder_funcs exynos_hdmi_encoder_funcs = {
  1323. .destroy = drm_encoder_cleanup,
  1324. };
  1325. static void hdmi_hotplug_work_func(struct work_struct *work)
  1326. {
  1327. struct hdmi_context *hdata;
  1328. hdata = container_of(work, struct hdmi_context, hotplug_work.work);
  1329. if (hdata->drm_dev)
  1330. drm_helper_hpd_irq_event(hdata->drm_dev);
  1331. }
  1332. static irqreturn_t hdmi_irq_thread(int irq, void *arg)
  1333. {
  1334. struct hdmi_context *hdata = arg;
  1335. mod_delayed_work(system_wq, &hdata->hotplug_work,
  1336. msecs_to_jiffies(HOTPLUG_DEBOUNCE_MS));
  1337. return IRQ_HANDLED;
  1338. }
  1339. static int hdmi_clks_get(struct hdmi_context *hdata,
  1340. const struct string_array_spec *names,
  1341. struct clk **clks)
  1342. {
  1343. struct device *dev = hdata->dev;
  1344. int i;
  1345. for (i = 0; i < names->count; ++i) {
  1346. struct clk *clk = devm_clk_get(dev, names->data[i]);
  1347. if (IS_ERR(clk)) {
  1348. int ret = PTR_ERR(clk);
  1349. dev_err(dev, "Cannot get clock %s, %d\n",
  1350. names->data[i], ret);
  1351. return ret;
  1352. }
  1353. clks[i] = clk;
  1354. }
  1355. return 0;
  1356. }
  1357. static int hdmi_clk_init(struct hdmi_context *hdata)
  1358. {
  1359. const struct hdmi_driver_data *drv_data = hdata->drv_data;
  1360. int count = drv_data->clk_gates.count + drv_data->clk_muxes.count;
  1361. struct device *dev = hdata->dev;
  1362. struct clk **clks;
  1363. int ret;
  1364. if (!count)
  1365. return 0;
  1366. clks = devm_kzalloc(dev, sizeof(*clks) * count, GFP_KERNEL);
  1367. if (!clks)
  1368. return -ENOMEM;
  1369. hdata->clk_gates = clks;
  1370. hdata->clk_muxes = clks + drv_data->clk_gates.count;
  1371. ret = hdmi_clks_get(hdata, &drv_data->clk_gates, hdata->clk_gates);
  1372. if (ret)
  1373. return ret;
  1374. return hdmi_clks_get(hdata, &drv_data->clk_muxes, hdata->clk_muxes);
  1375. }
  1376. static void hdmiphy_clk_enable(struct exynos_drm_clk *clk, bool enable)
  1377. {
  1378. struct hdmi_context *hdata = container_of(clk, struct hdmi_context,
  1379. phy_clk);
  1380. if (enable)
  1381. hdmiphy_enable(hdata);
  1382. else
  1383. hdmiphy_disable(hdata);
  1384. }
  1385. static int hdmi_bridge_init(struct hdmi_context *hdata)
  1386. {
  1387. struct device *dev = hdata->dev;
  1388. struct device_node *ep, *np;
  1389. ep = of_graph_get_endpoint_by_regs(dev->of_node, 1, -1);
  1390. if (!ep)
  1391. return 0;
  1392. np = of_graph_get_remote_port_parent(ep);
  1393. of_node_put(ep);
  1394. if (!np) {
  1395. DRM_ERROR("failed to get remote port parent");
  1396. return -EINVAL;
  1397. }
  1398. hdata->bridge = of_drm_find_bridge(np);
  1399. of_node_put(np);
  1400. if (!hdata->bridge)
  1401. return -EPROBE_DEFER;
  1402. return 0;
  1403. }
  1404. static int hdmi_resources_init(struct hdmi_context *hdata)
  1405. {
  1406. struct device *dev = hdata->dev;
  1407. int i, ret;
  1408. DRM_DEBUG_KMS("HDMI resource init\n");
  1409. hdata->hpd_gpio = devm_gpiod_get(dev, "hpd", GPIOD_IN);
  1410. if (IS_ERR(hdata->hpd_gpio)) {
  1411. DRM_ERROR("cannot get hpd gpio property\n");
  1412. return PTR_ERR(hdata->hpd_gpio);
  1413. }
  1414. hdata->irq = gpiod_to_irq(hdata->hpd_gpio);
  1415. if (hdata->irq < 0) {
  1416. DRM_ERROR("failed to get GPIO irq\n");
  1417. return hdata->irq;
  1418. }
  1419. ret = hdmi_clk_init(hdata);
  1420. if (ret)
  1421. return ret;
  1422. ret = hdmi_clk_set_parents(hdata, false);
  1423. if (ret)
  1424. return ret;
  1425. for (i = 0; i < ARRAY_SIZE(supply); ++i)
  1426. hdata->regul_bulk[i].supply = supply[i];
  1427. ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(supply), hdata->regul_bulk);
  1428. if (ret) {
  1429. if (ret != -EPROBE_DEFER)
  1430. DRM_ERROR("failed to get regulators\n");
  1431. return ret;
  1432. }
  1433. hdata->reg_hdmi_en = devm_regulator_get_optional(dev, "hdmi-en");
  1434. if (PTR_ERR(hdata->reg_hdmi_en) != -ENODEV) {
  1435. if (IS_ERR(hdata->reg_hdmi_en))
  1436. return PTR_ERR(hdata->reg_hdmi_en);
  1437. ret = regulator_enable(hdata->reg_hdmi_en);
  1438. if (ret) {
  1439. DRM_ERROR("failed to enable hdmi-en regulator\n");
  1440. return ret;
  1441. }
  1442. }
  1443. return hdmi_bridge_init(hdata);
  1444. }
  1445. static struct of_device_id hdmi_match_types[] = {
  1446. {
  1447. .compatible = "samsung,exynos4210-hdmi",
  1448. .data = &exynos4210_hdmi_driver_data,
  1449. }, {
  1450. .compatible = "samsung,exynos4212-hdmi",
  1451. .data = &exynos4212_hdmi_driver_data,
  1452. }, {
  1453. .compatible = "samsung,exynos5420-hdmi",
  1454. .data = &exynos5420_hdmi_driver_data,
  1455. }, {
  1456. .compatible = "samsung,exynos5433-hdmi",
  1457. .data = &exynos5433_hdmi_driver_data,
  1458. }, {
  1459. /* end node */
  1460. }
  1461. };
  1462. MODULE_DEVICE_TABLE (of, hdmi_match_types);
  1463. static int hdmi_bind(struct device *dev, struct device *master, void *data)
  1464. {
  1465. struct drm_device *drm_dev = data;
  1466. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1467. struct drm_encoder *encoder = &hdata->encoder;
  1468. struct exynos_drm_crtc *exynos_crtc;
  1469. struct drm_crtc *crtc;
  1470. int ret, pipe;
  1471. hdata->drm_dev = drm_dev;
  1472. pipe = exynos_drm_crtc_get_pipe_from_type(drm_dev,
  1473. EXYNOS_DISPLAY_TYPE_HDMI);
  1474. if (pipe < 0)
  1475. return pipe;
  1476. hdata->phy_clk.enable = hdmiphy_clk_enable;
  1477. crtc = drm_crtc_from_index(drm_dev, pipe);
  1478. exynos_crtc = to_exynos_crtc(crtc);
  1479. exynos_crtc->pipe_clk = &hdata->phy_clk;
  1480. encoder->possible_crtcs = 1 << pipe;
  1481. DRM_DEBUG_KMS("possible_crtcs = 0x%x\n", encoder->possible_crtcs);
  1482. drm_encoder_init(drm_dev, encoder, &exynos_hdmi_encoder_funcs,
  1483. DRM_MODE_ENCODER_TMDS, NULL);
  1484. drm_encoder_helper_add(encoder, &exynos_hdmi_encoder_helper_funcs);
  1485. ret = hdmi_create_connector(encoder);
  1486. if (ret) {
  1487. DRM_ERROR("failed to create connector ret = %d\n", ret);
  1488. drm_encoder_cleanup(encoder);
  1489. return ret;
  1490. }
  1491. return 0;
  1492. }
  1493. static void hdmi_unbind(struct device *dev, struct device *master, void *data)
  1494. {
  1495. }
  1496. static const struct component_ops hdmi_component_ops = {
  1497. .bind = hdmi_bind,
  1498. .unbind = hdmi_unbind,
  1499. };
  1500. static int hdmi_get_ddc_adapter(struct hdmi_context *hdata)
  1501. {
  1502. const char *compatible_str = "samsung,exynos4210-hdmiddc";
  1503. struct device_node *np;
  1504. struct i2c_adapter *adpt;
  1505. np = of_find_compatible_node(NULL, NULL, compatible_str);
  1506. if (np)
  1507. np = of_get_next_parent(np);
  1508. else
  1509. np = of_parse_phandle(hdata->dev->of_node, "ddc", 0);
  1510. if (!np) {
  1511. DRM_ERROR("Failed to find ddc node in device tree\n");
  1512. return -ENODEV;
  1513. }
  1514. adpt = of_find_i2c_adapter_by_node(np);
  1515. of_node_put(np);
  1516. if (!adpt) {
  1517. DRM_INFO("Failed to get ddc i2c adapter by node\n");
  1518. return -EPROBE_DEFER;
  1519. }
  1520. hdata->ddc_adpt = adpt;
  1521. return 0;
  1522. }
  1523. static int hdmi_get_phy_io(struct hdmi_context *hdata)
  1524. {
  1525. const char *compatible_str = "samsung,exynos4212-hdmiphy";
  1526. struct device_node *np;
  1527. int ret = 0;
  1528. np = of_find_compatible_node(NULL, NULL, compatible_str);
  1529. if (!np) {
  1530. np = of_parse_phandle(hdata->dev->of_node, "phy", 0);
  1531. if (!np) {
  1532. DRM_ERROR("Failed to find hdmiphy node in device tree\n");
  1533. return -ENODEV;
  1534. }
  1535. }
  1536. if (hdata->drv_data->is_apb_phy) {
  1537. hdata->regs_hdmiphy = of_iomap(np, 0);
  1538. if (!hdata->regs_hdmiphy) {
  1539. DRM_ERROR("failed to ioremap hdmi phy\n");
  1540. ret = -ENOMEM;
  1541. goto out;
  1542. }
  1543. } else {
  1544. hdata->hdmiphy_port = of_find_i2c_device_by_node(np);
  1545. if (!hdata->hdmiphy_port) {
  1546. DRM_INFO("Failed to get hdmi phy i2c client\n");
  1547. ret = -EPROBE_DEFER;
  1548. goto out;
  1549. }
  1550. }
  1551. out:
  1552. of_node_put(np);
  1553. return ret;
  1554. }
  1555. static int hdmi_probe(struct platform_device *pdev)
  1556. {
  1557. struct device *dev = &pdev->dev;
  1558. struct hdmi_context *hdata;
  1559. struct resource *res;
  1560. int ret;
  1561. hdata = devm_kzalloc(dev, sizeof(struct hdmi_context), GFP_KERNEL);
  1562. if (!hdata)
  1563. return -ENOMEM;
  1564. hdata->drv_data = of_device_get_match_data(dev);
  1565. platform_set_drvdata(pdev, hdata);
  1566. hdata->dev = dev;
  1567. ret = hdmi_resources_init(hdata);
  1568. if (ret) {
  1569. if (ret != -EPROBE_DEFER)
  1570. DRM_ERROR("hdmi_resources_init failed\n");
  1571. return ret;
  1572. }
  1573. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1574. hdata->regs = devm_ioremap_resource(dev, res);
  1575. if (IS_ERR(hdata->regs)) {
  1576. ret = PTR_ERR(hdata->regs);
  1577. return ret;
  1578. }
  1579. ret = hdmi_get_ddc_adapter(hdata);
  1580. if (ret)
  1581. return ret;
  1582. ret = hdmi_get_phy_io(hdata);
  1583. if (ret)
  1584. goto err_ddc;
  1585. INIT_DELAYED_WORK(&hdata->hotplug_work, hdmi_hotplug_work_func);
  1586. ret = devm_request_threaded_irq(dev, hdata->irq, NULL,
  1587. hdmi_irq_thread, IRQF_TRIGGER_RISING |
  1588. IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
  1589. "hdmi", hdata);
  1590. if (ret) {
  1591. DRM_ERROR("failed to register hdmi interrupt\n");
  1592. goto err_hdmiphy;
  1593. }
  1594. hdata->pmureg = syscon_regmap_lookup_by_phandle(dev->of_node,
  1595. "samsung,syscon-phandle");
  1596. if (IS_ERR(hdata->pmureg)) {
  1597. DRM_ERROR("syscon regmap lookup failed.\n");
  1598. ret = -EPROBE_DEFER;
  1599. goto err_hdmiphy;
  1600. }
  1601. if (hdata->drv_data->has_sysreg) {
  1602. hdata->sysreg = syscon_regmap_lookup_by_phandle(dev->of_node,
  1603. "samsung,sysreg-phandle");
  1604. if (IS_ERR(hdata->sysreg)) {
  1605. DRM_ERROR("sysreg regmap lookup failed.\n");
  1606. ret = -EPROBE_DEFER;
  1607. goto err_hdmiphy;
  1608. }
  1609. }
  1610. pm_runtime_enable(dev);
  1611. ret = component_add(&pdev->dev, &hdmi_component_ops);
  1612. if (ret)
  1613. goto err_disable_pm_runtime;
  1614. return ret;
  1615. err_disable_pm_runtime:
  1616. pm_runtime_disable(dev);
  1617. err_hdmiphy:
  1618. if (hdata->hdmiphy_port)
  1619. put_device(&hdata->hdmiphy_port->dev);
  1620. if (hdata->regs_hdmiphy)
  1621. iounmap(hdata->regs_hdmiphy);
  1622. err_ddc:
  1623. put_device(&hdata->ddc_adpt->dev);
  1624. return ret;
  1625. }
  1626. static int hdmi_remove(struct platform_device *pdev)
  1627. {
  1628. struct hdmi_context *hdata = platform_get_drvdata(pdev);
  1629. cancel_delayed_work_sync(&hdata->hotplug_work);
  1630. component_del(&pdev->dev, &hdmi_component_ops);
  1631. pm_runtime_disable(&pdev->dev);
  1632. if (!IS_ERR(hdata->reg_hdmi_en))
  1633. regulator_disable(hdata->reg_hdmi_en);
  1634. if (hdata->hdmiphy_port)
  1635. put_device(&hdata->hdmiphy_port->dev);
  1636. if (hdata->regs_hdmiphy)
  1637. iounmap(hdata->regs_hdmiphy);
  1638. put_device(&hdata->ddc_adpt->dev);
  1639. return 0;
  1640. }
  1641. #ifdef CONFIG_PM
  1642. static int exynos_hdmi_suspend(struct device *dev)
  1643. {
  1644. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1645. hdmi_clk_disable_gates(hdata);
  1646. return 0;
  1647. }
  1648. static int exynos_hdmi_resume(struct device *dev)
  1649. {
  1650. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1651. int ret;
  1652. ret = hdmi_clk_enable_gates(hdata);
  1653. if (ret < 0)
  1654. return ret;
  1655. return 0;
  1656. }
  1657. #endif
  1658. static const struct dev_pm_ops exynos_hdmi_pm_ops = {
  1659. SET_RUNTIME_PM_OPS(exynos_hdmi_suspend, exynos_hdmi_resume, NULL)
  1660. };
  1661. struct platform_driver hdmi_driver = {
  1662. .probe = hdmi_probe,
  1663. .remove = hdmi_remove,
  1664. .driver = {
  1665. .name = "exynos-hdmi",
  1666. .owner = THIS_MODULE,
  1667. .pm = &exynos_hdmi_pm_ops,
  1668. .of_match_table = hdmi_match_types,
  1669. },
  1670. };