exynos_hdmi.c 56 KB

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