exynos_hdmi.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106
  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_mode_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_mode_connector_attach_encoder(connector, encoder);
  865. if (hdata->bridge) {
  866. encoder->bridge = hdata->bridge;
  867. hdata->bridge->encoder = encoder;
  868. ret = drm_bridge_attach(encoder, hdata->bridge, NULL);
  869. if (ret)
  870. DRM_ERROR("Failed to attach bridge\n");
  871. }
  872. return ret;
  873. }
  874. static bool hdmi_mode_fixup(struct drm_encoder *encoder,
  875. const struct drm_display_mode *mode,
  876. struct drm_display_mode *adjusted_mode)
  877. {
  878. struct drm_device *dev = encoder->dev;
  879. struct drm_connector *connector;
  880. struct drm_display_mode *m;
  881. struct drm_connector_list_iter conn_iter;
  882. int mode_ok;
  883. drm_mode_set_crtcinfo(adjusted_mode, 0);
  884. drm_connector_list_iter_begin(dev, &conn_iter);
  885. drm_for_each_connector_iter(connector, &conn_iter) {
  886. if (connector->encoder == encoder)
  887. break;
  888. }
  889. if (connector)
  890. drm_connector_get(connector);
  891. drm_connector_list_iter_end(&conn_iter);
  892. if (!connector)
  893. return true;
  894. mode_ok = hdmi_mode_valid(connector, adjusted_mode);
  895. if (mode_ok == MODE_OK)
  896. goto cleanup;
  897. /*
  898. * Find the most suitable mode and copy it to adjusted_mode.
  899. */
  900. list_for_each_entry(m, &connector->modes, head) {
  901. mode_ok = hdmi_mode_valid(connector, m);
  902. if (mode_ok == MODE_OK) {
  903. DRM_INFO("desired mode doesn't exist so\n");
  904. DRM_INFO("use the most suitable mode among modes.\n");
  905. DRM_DEBUG_KMS("Adjusted Mode: [%d]x[%d] [%d]Hz\n",
  906. m->hdisplay, m->vdisplay, m->vrefresh);
  907. drm_mode_copy(adjusted_mode, m);
  908. break;
  909. }
  910. }
  911. cleanup:
  912. drm_connector_put(connector);
  913. return true;
  914. }
  915. static void hdmi_reg_acr(struct hdmi_context *hdata, u32 freq)
  916. {
  917. u32 n, cts;
  918. cts = (freq % 9) ? 27000 : 30000;
  919. n = 128 * freq / (27000000 / cts);
  920. hdmi_reg_writev(hdata, HDMI_ACR_N0, 3, n);
  921. hdmi_reg_writev(hdata, HDMI_ACR_MCTS0, 3, cts);
  922. hdmi_reg_writev(hdata, HDMI_ACR_CTS0, 3, cts);
  923. hdmi_reg_writeb(hdata, HDMI_ACR_CON, 4);
  924. }
  925. static void hdmi_audio_config(struct hdmi_context *hdata)
  926. {
  927. u32 bit_ch = 1;
  928. u32 data_num, val;
  929. int i;
  930. switch (hdata->audio.params.sample_width) {
  931. case 20:
  932. data_num = 2;
  933. break;
  934. case 24:
  935. data_num = 3;
  936. break;
  937. default:
  938. data_num = 1;
  939. bit_ch = 0;
  940. break;
  941. }
  942. hdmi_reg_acr(hdata, hdata->audio.params.sample_rate);
  943. hdmi_reg_writeb(hdata, HDMI_I2S_MUX_CON, HDMI_I2S_IN_DISABLE
  944. | HDMI_I2S_AUD_I2S | HDMI_I2S_CUV_I2S_ENABLE
  945. | HDMI_I2S_MUX_ENABLE);
  946. hdmi_reg_writeb(hdata, HDMI_I2S_MUX_CH, HDMI_I2S_CH0_EN
  947. | HDMI_I2S_CH1_EN | HDMI_I2S_CH2_EN);
  948. hdmi_reg_writeb(hdata, HDMI_I2S_MUX_CUV, HDMI_I2S_CUV_RL_EN);
  949. hdmi_reg_writeb(hdata, HDMI_I2S_CLK_CON, HDMI_I2S_CLK_DIS);
  950. hdmi_reg_writeb(hdata, HDMI_I2S_CLK_CON, HDMI_I2S_CLK_EN);
  951. val = hdmi_reg_read(hdata, HDMI_I2S_DSD_CON) | 0x01;
  952. hdmi_reg_writeb(hdata, HDMI_I2S_DSD_CON, val);
  953. /* Configuration I2S input ports. Configure I2S_PIN_SEL_0~4 */
  954. hdmi_reg_writeb(hdata, HDMI_I2S_PIN_SEL_0, HDMI_I2S_SEL_SCLK(5)
  955. | HDMI_I2S_SEL_LRCK(6));
  956. hdmi_reg_writeb(hdata, HDMI_I2S_PIN_SEL_1, HDMI_I2S_SEL_SDATA1(1)
  957. | HDMI_I2S_SEL_SDATA2(4));
  958. hdmi_reg_writeb(hdata, HDMI_I2S_PIN_SEL_2, HDMI_I2S_SEL_SDATA3(1)
  959. | HDMI_I2S_SEL_SDATA2(2));
  960. hdmi_reg_writeb(hdata, HDMI_I2S_PIN_SEL_3, HDMI_I2S_SEL_DSD(0));
  961. /* I2S_CON_1 & 2 */
  962. hdmi_reg_writeb(hdata, HDMI_I2S_CON_1, HDMI_I2S_SCLK_FALLING_EDGE
  963. | HDMI_I2S_L_CH_LOW_POL);
  964. hdmi_reg_writeb(hdata, HDMI_I2S_CON_2, HDMI_I2S_MSB_FIRST_MODE
  965. | HDMI_I2S_SET_BIT_CH(bit_ch)
  966. | HDMI_I2S_SET_SDATA_BIT(data_num)
  967. | HDMI_I2S_BASIC_FORMAT);
  968. /* Configuration of the audio channel status registers */
  969. for (i = 0; i < HDMI_I2S_CH_ST_MAXNUM; i++)
  970. hdmi_reg_writeb(hdata, HDMI_I2S_CH_ST(i),
  971. hdata->audio.params.iec.status[i]);
  972. hdmi_reg_writeb(hdata, HDMI_I2S_CH_ST_CON, HDMI_I2S_CH_STATUS_RELOAD);
  973. }
  974. static void hdmi_audio_control(struct hdmi_context *hdata)
  975. {
  976. bool enable = !hdata->audio.mute;
  977. if (hdata->dvi_mode)
  978. return;
  979. hdmi_reg_writeb(hdata, HDMI_AUI_CON, enable ?
  980. HDMI_AVI_CON_EVERY_VSYNC : HDMI_AUI_CON_NO_TRAN);
  981. hdmi_reg_writemask(hdata, HDMI_CON_0, enable ?
  982. HDMI_ASP_EN : HDMI_ASP_DIS, HDMI_ASP_MASK);
  983. }
  984. static void hdmi_start(struct hdmi_context *hdata, bool start)
  985. {
  986. struct drm_display_mode *m = &hdata->encoder.crtc->state->mode;
  987. u32 val = start ? HDMI_TG_EN : 0;
  988. if (m->flags & DRM_MODE_FLAG_INTERLACE)
  989. val |= HDMI_FIELD_EN;
  990. hdmi_reg_writemask(hdata, HDMI_CON_0, val, HDMI_EN);
  991. hdmi_reg_writemask(hdata, HDMI_TG_CMD, val, HDMI_TG_EN | HDMI_FIELD_EN);
  992. }
  993. static void hdmi_conf_init(struct hdmi_context *hdata)
  994. {
  995. /* disable HPD interrupts from HDMI IP block, use GPIO instead */
  996. hdmi_reg_writemask(hdata, HDMI_INTC_CON, 0, HDMI_INTC_EN_GLOBAL |
  997. HDMI_INTC_EN_HPD_PLUG | HDMI_INTC_EN_HPD_UNPLUG);
  998. /* choose HDMI mode */
  999. hdmi_reg_writemask(hdata, HDMI_MODE_SEL,
  1000. HDMI_MODE_HDMI_EN, HDMI_MODE_MASK);
  1001. /* apply video pre-amble and guard band in HDMI mode only */
  1002. hdmi_reg_writeb(hdata, HDMI_CON_2, 0);
  1003. /* disable bluescreen */
  1004. hdmi_reg_writemask(hdata, HDMI_CON_0, 0, HDMI_BLUE_SCR_EN);
  1005. if (hdata->dvi_mode) {
  1006. hdmi_reg_writemask(hdata, HDMI_MODE_SEL,
  1007. HDMI_MODE_DVI_EN, HDMI_MODE_MASK);
  1008. hdmi_reg_writeb(hdata, HDMI_CON_2,
  1009. HDMI_VID_PREAMBLE_DIS | HDMI_GUARD_BAND_DIS);
  1010. }
  1011. if (hdata->drv_data->type == HDMI_TYPE13) {
  1012. /* choose bluescreen (fecal) color */
  1013. hdmi_reg_writeb(hdata, HDMI_V13_BLUE_SCREEN_0, 0x12);
  1014. hdmi_reg_writeb(hdata, HDMI_V13_BLUE_SCREEN_1, 0x34);
  1015. hdmi_reg_writeb(hdata, HDMI_V13_BLUE_SCREEN_2, 0x56);
  1016. /* enable AVI packet every vsync, fixes purple line problem */
  1017. hdmi_reg_writeb(hdata, HDMI_V13_AVI_CON, 0x02);
  1018. /* force RGB, look to CEA-861-D, table 7 for more detail */
  1019. hdmi_reg_writeb(hdata, HDMI_V13_AVI_BYTE(0), 0 << 5);
  1020. hdmi_reg_writemask(hdata, HDMI_CON_1, 0x10 << 5, 0x11 << 5);
  1021. hdmi_reg_writeb(hdata, HDMI_V13_SPD_CON, 0x02);
  1022. hdmi_reg_writeb(hdata, HDMI_V13_AUI_CON, 0x02);
  1023. hdmi_reg_writeb(hdata, HDMI_V13_ACR_CON, 0x04);
  1024. } else {
  1025. hdmi_reg_infoframes(hdata);
  1026. /* enable AVI packet every vsync, fixes purple line problem */
  1027. hdmi_reg_writemask(hdata, HDMI_CON_1, 2, 3 << 5);
  1028. }
  1029. }
  1030. static void hdmiphy_wait_for_pll(struct hdmi_context *hdata)
  1031. {
  1032. int tries;
  1033. for (tries = 0; tries < 10; ++tries) {
  1034. u32 val = hdmi_reg_read(hdata, HDMI_PHY_STATUS);
  1035. if (val & HDMI_PHY_STATUS_READY) {
  1036. DRM_DEBUG_KMS("PLL stabilized after %d tries\n", tries);
  1037. return;
  1038. }
  1039. usleep_range(10, 20);
  1040. }
  1041. DRM_ERROR("PLL could not reach steady state\n");
  1042. }
  1043. static void hdmi_v13_mode_apply(struct hdmi_context *hdata)
  1044. {
  1045. struct drm_display_mode *m = &hdata->encoder.crtc->state->mode;
  1046. unsigned int val;
  1047. hdmi_reg_writev(hdata, HDMI_H_BLANK_0, 2, m->htotal - m->hdisplay);
  1048. hdmi_reg_writev(hdata, HDMI_V13_H_V_LINE_0, 3,
  1049. (m->htotal << 12) | m->vtotal);
  1050. val = (m->flags & DRM_MODE_FLAG_NVSYNC) ? 1 : 0;
  1051. hdmi_reg_writev(hdata, HDMI_VSYNC_POL, 1, val);
  1052. val = (m->flags & DRM_MODE_FLAG_INTERLACE) ? 1 : 0;
  1053. hdmi_reg_writev(hdata, HDMI_INT_PRO_MODE, 1, val);
  1054. val = (m->hsync_start - m->hdisplay - 2);
  1055. val |= ((m->hsync_end - m->hdisplay - 2) << 10);
  1056. val |= ((m->flags & DRM_MODE_FLAG_NHSYNC) ? 1 : 0)<<20;
  1057. hdmi_reg_writev(hdata, HDMI_V13_H_SYNC_GEN_0, 3, val);
  1058. /*
  1059. * Quirk requirement for exynos HDMI IP design,
  1060. * 2 pixels less than the actual calculation for hsync_start
  1061. * and end.
  1062. */
  1063. /* Following values & calculations differ for different type of modes */
  1064. if (m->flags & DRM_MODE_FLAG_INTERLACE) {
  1065. val = ((m->vsync_end - m->vdisplay) / 2);
  1066. val |= ((m->vsync_start - m->vdisplay) / 2) << 12;
  1067. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_1_0, 3, val);
  1068. val = m->vtotal / 2;
  1069. val |= ((m->vtotal - m->vdisplay) / 2) << 11;
  1070. hdmi_reg_writev(hdata, HDMI_V13_V_BLANK_0, 3, val);
  1071. val = (m->vtotal +
  1072. ((m->vsync_end - m->vsync_start) * 4) + 5) / 2;
  1073. val |= m->vtotal << 11;
  1074. hdmi_reg_writev(hdata, HDMI_V13_V_BLANK_F_0, 3, val);
  1075. val = ((m->vtotal / 2) + 7);
  1076. val |= ((m->vtotal / 2) + 2) << 12;
  1077. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_2_0, 3, val);
  1078. val = ((m->htotal / 2) + (m->hsync_start - m->hdisplay));
  1079. val |= ((m->htotal / 2) +
  1080. (m->hsync_start - m->hdisplay)) << 12;
  1081. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_3_0, 3, val);
  1082. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST_L, 2,
  1083. (m->vtotal - m->vdisplay) / 2);
  1084. hdmi_reg_writev(hdata, HDMI_TG_VACT_SZ_L, 2, m->vdisplay / 2);
  1085. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST2_L, 2, 0x249);
  1086. } else {
  1087. val = m->vtotal;
  1088. val |= (m->vtotal - m->vdisplay) << 11;
  1089. hdmi_reg_writev(hdata, HDMI_V13_V_BLANK_0, 3, val);
  1090. hdmi_reg_writev(hdata, HDMI_V13_V_BLANK_F_0, 3, 0);
  1091. val = (m->vsync_end - m->vdisplay);
  1092. val |= ((m->vsync_start - m->vdisplay) << 12);
  1093. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_1_0, 3, val);
  1094. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_2_0, 3, 0x1001);
  1095. hdmi_reg_writev(hdata, HDMI_V13_V_SYNC_GEN_3_0, 3, 0x1001);
  1096. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST_L, 2,
  1097. m->vtotal - m->vdisplay);
  1098. hdmi_reg_writev(hdata, HDMI_TG_VACT_SZ_L, 2, m->vdisplay);
  1099. }
  1100. hdmi_reg_writev(hdata, HDMI_TG_H_FSZ_L, 2, m->htotal);
  1101. hdmi_reg_writev(hdata, HDMI_TG_HACT_ST_L, 2, m->htotal - m->hdisplay);
  1102. hdmi_reg_writev(hdata, HDMI_TG_HACT_SZ_L, 2, m->hdisplay);
  1103. hdmi_reg_writev(hdata, HDMI_TG_V_FSZ_L, 2, m->vtotal);
  1104. }
  1105. static void hdmi_v14_mode_apply(struct hdmi_context *hdata)
  1106. {
  1107. struct drm_display_mode *m = &hdata->encoder.crtc->state->mode;
  1108. struct drm_display_mode *am =
  1109. &hdata->encoder.crtc->state->adjusted_mode;
  1110. int hquirk = 0;
  1111. /*
  1112. * In case video mode coming from CRTC differs from requested one HDMI
  1113. * sometimes is able to almost properly perform conversion - only
  1114. * first line is distorted.
  1115. */
  1116. if ((m->vdisplay != am->vdisplay) &&
  1117. (m->hdisplay == 1280 || m->hdisplay == 1024 || m->hdisplay == 1366))
  1118. hquirk = 258;
  1119. hdmi_reg_writev(hdata, HDMI_H_BLANK_0, 2, m->htotal - m->hdisplay);
  1120. hdmi_reg_writev(hdata, HDMI_V_LINE_0, 2, m->vtotal);
  1121. hdmi_reg_writev(hdata, HDMI_H_LINE_0, 2, m->htotal);
  1122. hdmi_reg_writev(hdata, HDMI_HSYNC_POL, 1,
  1123. (m->flags & DRM_MODE_FLAG_NHSYNC) ? 1 : 0);
  1124. hdmi_reg_writev(hdata, HDMI_VSYNC_POL, 1,
  1125. (m->flags & DRM_MODE_FLAG_NVSYNC) ? 1 : 0);
  1126. hdmi_reg_writev(hdata, HDMI_INT_PRO_MODE, 1,
  1127. (m->flags & DRM_MODE_FLAG_INTERLACE) ? 1 : 0);
  1128. /*
  1129. * Quirk requirement for exynos 5 HDMI IP design,
  1130. * 2 pixels less than the actual calculation for hsync_start
  1131. * and end.
  1132. */
  1133. /* Following values & calculations differ for different type of modes */
  1134. if (m->flags & DRM_MODE_FLAG_INTERLACE) {
  1135. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_BEF_2_0, 2,
  1136. (m->vsync_end - m->vdisplay) / 2);
  1137. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_BEF_1_0, 2,
  1138. (m->vsync_start - m->vdisplay) / 2);
  1139. hdmi_reg_writev(hdata, HDMI_V2_BLANK_0, 2, m->vtotal / 2);
  1140. hdmi_reg_writev(hdata, HDMI_V1_BLANK_0, 2,
  1141. (m->vtotal - m->vdisplay) / 2);
  1142. hdmi_reg_writev(hdata, HDMI_V_BLANK_F0_0, 2,
  1143. m->vtotal - m->vdisplay / 2);
  1144. hdmi_reg_writev(hdata, HDMI_V_BLANK_F1_0, 2, m->vtotal);
  1145. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_2_0, 2,
  1146. (m->vtotal / 2) + 7);
  1147. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_1_0, 2,
  1148. (m->vtotal / 2) + 2);
  1149. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_2_0, 2,
  1150. (m->htotal / 2) + (m->hsync_start - m->hdisplay));
  1151. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_1_0, 2,
  1152. (m->htotal / 2) + (m->hsync_start - m->hdisplay));
  1153. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST_L, 2,
  1154. (m->vtotal - m->vdisplay) / 2);
  1155. hdmi_reg_writev(hdata, HDMI_TG_VACT_SZ_L, 2, m->vdisplay / 2);
  1156. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST2_L, 2,
  1157. m->vtotal - m->vdisplay / 2);
  1158. hdmi_reg_writev(hdata, HDMI_TG_VSYNC2_L, 2,
  1159. (m->vtotal / 2) + 1);
  1160. hdmi_reg_writev(hdata, HDMI_TG_VSYNC_BOT_HDMI_L, 2,
  1161. (m->vtotal / 2) + 1);
  1162. hdmi_reg_writev(hdata, HDMI_TG_FIELD_BOT_HDMI_L, 2,
  1163. (m->vtotal / 2) + 1);
  1164. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST3_L, 2, 0x0);
  1165. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST4_L, 2, 0x0);
  1166. } else {
  1167. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_BEF_2_0, 2,
  1168. m->vsync_end - m->vdisplay);
  1169. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_BEF_1_0, 2,
  1170. m->vsync_start - m->vdisplay);
  1171. hdmi_reg_writev(hdata, HDMI_V2_BLANK_0, 2, m->vtotal);
  1172. hdmi_reg_writev(hdata, HDMI_V1_BLANK_0, 2,
  1173. m->vtotal - m->vdisplay);
  1174. hdmi_reg_writev(hdata, HDMI_V_BLANK_F0_0, 2, 0xffff);
  1175. hdmi_reg_writev(hdata, HDMI_V_BLANK_F1_0, 2, 0xffff);
  1176. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_2_0, 2, 0xffff);
  1177. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_1_0, 2, 0xffff);
  1178. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_2_0, 2, 0xffff);
  1179. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_1_0, 2, 0xffff);
  1180. hdmi_reg_writev(hdata, HDMI_TG_VACT_ST_L, 2,
  1181. m->vtotal - m->vdisplay);
  1182. hdmi_reg_writev(hdata, HDMI_TG_VACT_SZ_L, 2, m->vdisplay);
  1183. }
  1184. hdmi_reg_writev(hdata, HDMI_H_SYNC_START_0, 2,
  1185. m->hsync_start - m->hdisplay - 2);
  1186. hdmi_reg_writev(hdata, HDMI_H_SYNC_END_0, 2,
  1187. m->hsync_end - m->hdisplay - 2);
  1188. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_1_0, 2, 0xffff);
  1189. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_2_0, 2, 0xffff);
  1190. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_3_0, 2, 0xffff);
  1191. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_4_0, 2, 0xffff);
  1192. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_5_0, 2, 0xffff);
  1193. hdmi_reg_writev(hdata, HDMI_VACT_SPACE_6_0, 2, 0xffff);
  1194. hdmi_reg_writev(hdata, HDMI_V_BLANK_F2_0, 2, 0xffff);
  1195. hdmi_reg_writev(hdata, HDMI_V_BLANK_F3_0, 2, 0xffff);
  1196. hdmi_reg_writev(hdata, HDMI_V_BLANK_F4_0, 2, 0xffff);
  1197. hdmi_reg_writev(hdata, HDMI_V_BLANK_F5_0, 2, 0xffff);
  1198. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_3_0, 2, 0xffff);
  1199. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_4_0, 2, 0xffff);
  1200. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_5_0, 2, 0xffff);
  1201. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_6_0, 2, 0xffff);
  1202. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_3_0, 2, 0xffff);
  1203. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_4_0, 2, 0xffff);
  1204. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_5_0, 2, 0xffff);
  1205. hdmi_reg_writev(hdata, HDMI_V_SYNC_LINE_AFT_PXL_6_0, 2, 0xffff);
  1206. hdmi_reg_writev(hdata, HDMI_TG_H_FSZ_L, 2, m->htotal);
  1207. hdmi_reg_writev(hdata, HDMI_TG_HACT_ST_L, 2,
  1208. m->htotal - m->hdisplay - hquirk);
  1209. hdmi_reg_writev(hdata, HDMI_TG_HACT_SZ_L, 2, m->hdisplay + hquirk);
  1210. hdmi_reg_writev(hdata, HDMI_TG_V_FSZ_L, 2, m->vtotal);
  1211. if (hdata->drv_data == &exynos5433_hdmi_driver_data)
  1212. hdmi_reg_writeb(hdata, HDMI_TG_DECON_EN, 1);
  1213. }
  1214. static void hdmi_mode_apply(struct hdmi_context *hdata)
  1215. {
  1216. if (hdata->drv_data->type == HDMI_TYPE13)
  1217. hdmi_v13_mode_apply(hdata);
  1218. else
  1219. hdmi_v14_mode_apply(hdata);
  1220. hdmi_start(hdata, true);
  1221. }
  1222. static void hdmiphy_conf_reset(struct hdmi_context *hdata)
  1223. {
  1224. hdmi_reg_writemask(hdata, HDMI_CORE_RSTOUT, 0, 1);
  1225. usleep_range(10000, 12000);
  1226. hdmi_reg_writemask(hdata, HDMI_CORE_RSTOUT, ~0, 1);
  1227. usleep_range(10000, 12000);
  1228. hdmi_reg_writemask(hdata, HDMI_PHY_RSTOUT, ~0, HDMI_PHY_SW_RSTOUT);
  1229. usleep_range(10000, 12000);
  1230. hdmi_reg_writemask(hdata, HDMI_PHY_RSTOUT, 0, HDMI_PHY_SW_RSTOUT);
  1231. usleep_range(10000, 12000);
  1232. }
  1233. static void hdmiphy_enable_mode_set(struct hdmi_context *hdata, bool enable)
  1234. {
  1235. u8 v = enable ? HDMI_PHY_ENABLE_MODE_SET : HDMI_PHY_DISABLE_MODE_SET;
  1236. if (hdata->drv_data == &exynos5433_hdmi_driver_data)
  1237. writel(v, hdata->regs_hdmiphy + HDMIPHY5433_MODE_SET_DONE);
  1238. }
  1239. static void hdmiphy_conf_apply(struct hdmi_context *hdata)
  1240. {
  1241. struct drm_display_mode *m = &hdata->encoder.crtc->state->mode;
  1242. int ret;
  1243. const u8 *phy_conf;
  1244. ret = hdmi_find_phy_conf(hdata, m->clock * 1000);
  1245. if (ret < 0) {
  1246. DRM_ERROR("failed to find hdmiphy conf\n");
  1247. return;
  1248. }
  1249. phy_conf = hdata->drv_data->phy_confs.data[ret].conf;
  1250. hdmi_clk_set_parents(hdata, false);
  1251. hdmiphy_conf_reset(hdata);
  1252. hdmiphy_enable_mode_set(hdata, true);
  1253. ret = hdmiphy_reg_write_buf(hdata, 0, phy_conf, 32);
  1254. if (ret) {
  1255. DRM_ERROR("failed to configure hdmiphy\n");
  1256. return;
  1257. }
  1258. hdmiphy_enable_mode_set(hdata, false);
  1259. hdmi_clk_set_parents(hdata, true);
  1260. usleep_range(10000, 12000);
  1261. hdmiphy_wait_for_pll(hdata);
  1262. }
  1263. /* Should be called with hdata->mutex mutex held */
  1264. static void hdmi_conf_apply(struct hdmi_context *hdata)
  1265. {
  1266. hdmi_start(hdata, false);
  1267. hdmi_conf_init(hdata);
  1268. hdmi_audio_config(hdata);
  1269. hdmi_mode_apply(hdata);
  1270. hdmi_audio_control(hdata);
  1271. }
  1272. static void hdmi_set_refclk(struct hdmi_context *hdata, bool on)
  1273. {
  1274. if (!hdata->sysreg)
  1275. return;
  1276. regmap_update_bits(hdata->sysreg, EXYNOS5433_SYSREG_DISP_HDMI_PHY,
  1277. SYSREG_HDMI_REFCLK_INT_CLK, on ? ~0 : 0);
  1278. }
  1279. /* Should be called with hdata->mutex mutex held. */
  1280. static void hdmiphy_enable(struct hdmi_context *hdata)
  1281. {
  1282. if (hdata->powered)
  1283. return;
  1284. pm_runtime_get_sync(hdata->dev);
  1285. if (regulator_bulk_enable(ARRAY_SIZE(supply), hdata->regul_bulk))
  1286. DRM_DEBUG_KMS("failed to enable regulator bulk\n");
  1287. regmap_update_bits(hdata->pmureg, PMU_HDMI_PHY_CONTROL,
  1288. PMU_HDMI_PHY_ENABLE_BIT, 1);
  1289. hdmi_set_refclk(hdata, true);
  1290. hdmi_reg_writemask(hdata, HDMI_PHY_CON_0, 0, HDMI_PHY_POWER_OFF_EN);
  1291. hdmiphy_conf_apply(hdata);
  1292. hdata->powered = true;
  1293. }
  1294. /* Should be called with hdata->mutex mutex held. */
  1295. static void hdmiphy_disable(struct hdmi_context *hdata)
  1296. {
  1297. if (!hdata->powered)
  1298. return;
  1299. hdmi_reg_writemask(hdata, HDMI_CON_0, 0, HDMI_EN);
  1300. hdmi_reg_writemask(hdata, HDMI_PHY_CON_0, ~0, HDMI_PHY_POWER_OFF_EN);
  1301. hdmi_set_refclk(hdata, false);
  1302. regmap_update_bits(hdata->pmureg, PMU_HDMI_PHY_CONTROL,
  1303. PMU_HDMI_PHY_ENABLE_BIT, 0);
  1304. regulator_bulk_disable(ARRAY_SIZE(supply), hdata->regul_bulk);
  1305. pm_runtime_put_sync(hdata->dev);
  1306. hdata->powered = false;
  1307. }
  1308. static void hdmi_enable(struct drm_encoder *encoder)
  1309. {
  1310. struct hdmi_context *hdata = encoder_to_hdmi(encoder);
  1311. mutex_lock(&hdata->mutex);
  1312. hdmiphy_enable(hdata);
  1313. hdmi_conf_apply(hdata);
  1314. mutex_unlock(&hdata->mutex);
  1315. }
  1316. static void hdmi_disable(struct drm_encoder *encoder)
  1317. {
  1318. struct hdmi_context *hdata = encoder_to_hdmi(encoder);
  1319. mutex_lock(&hdata->mutex);
  1320. if (hdata->powered) {
  1321. /*
  1322. * The SFRs of VP and Mixer are updated by Vertical Sync of
  1323. * Timing generator which is a part of HDMI so the sequence
  1324. * to disable TV Subsystem should be as following,
  1325. * VP -> Mixer -> HDMI
  1326. *
  1327. * To achieve such sequence HDMI is disabled together with
  1328. * HDMI PHY, via pipe clock callback.
  1329. */
  1330. mutex_unlock(&hdata->mutex);
  1331. cancel_delayed_work(&hdata->hotplug_work);
  1332. cec_notifier_set_phys_addr(hdata->notifier,
  1333. CEC_PHYS_ADDR_INVALID);
  1334. return;
  1335. }
  1336. mutex_unlock(&hdata->mutex);
  1337. }
  1338. static const struct drm_encoder_helper_funcs exynos_hdmi_encoder_helper_funcs = {
  1339. .mode_fixup = hdmi_mode_fixup,
  1340. .enable = hdmi_enable,
  1341. .disable = hdmi_disable,
  1342. };
  1343. static const struct drm_encoder_funcs exynos_hdmi_encoder_funcs = {
  1344. .destroy = drm_encoder_cleanup,
  1345. };
  1346. static void hdmi_audio_shutdown(struct device *dev, void *data)
  1347. {
  1348. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1349. mutex_lock(&hdata->mutex);
  1350. hdata->audio.mute = true;
  1351. if (hdata->powered)
  1352. hdmi_audio_control(hdata);
  1353. mutex_unlock(&hdata->mutex);
  1354. }
  1355. static int hdmi_audio_hw_params(struct device *dev, void *data,
  1356. struct hdmi_codec_daifmt *daifmt,
  1357. struct hdmi_codec_params *params)
  1358. {
  1359. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1360. if (daifmt->fmt != HDMI_I2S || daifmt->bit_clk_inv ||
  1361. daifmt->frame_clk_inv || daifmt->bit_clk_master ||
  1362. daifmt->frame_clk_master) {
  1363. dev_err(dev, "%s: Bad flags %d %d %d %d\n", __func__,
  1364. daifmt->bit_clk_inv, daifmt->frame_clk_inv,
  1365. daifmt->bit_clk_master,
  1366. daifmt->frame_clk_master);
  1367. return -EINVAL;
  1368. }
  1369. mutex_lock(&hdata->mutex);
  1370. hdata->audio.params = *params;
  1371. if (hdata->powered) {
  1372. hdmi_audio_config(hdata);
  1373. hdmi_audio_infoframe_apply(hdata);
  1374. }
  1375. mutex_unlock(&hdata->mutex);
  1376. return 0;
  1377. }
  1378. static int hdmi_audio_digital_mute(struct device *dev, void *data, bool mute)
  1379. {
  1380. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1381. mutex_lock(&hdata->mutex);
  1382. hdata->audio.mute = mute;
  1383. if (hdata->powered)
  1384. hdmi_audio_control(hdata);
  1385. mutex_unlock(&hdata->mutex);
  1386. return 0;
  1387. }
  1388. static int hdmi_audio_get_eld(struct device *dev, void *data, uint8_t *buf,
  1389. size_t len)
  1390. {
  1391. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1392. struct drm_connector *connector = &hdata->connector;
  1393. memcpy(buf, connector->eld, min(sizeof(connector->eld), len));
  1394. return 0;
  1395. }
  1396. static const struct hdmi_codec_ops audio_codec_ops = {
  1397. .hw_params = hdmi_audio_hw_params,
  1398. .audio_shutdown = hdmi_audio_shutdown,
  1399. .digital_mute = hdmi_audio_digital_mute,
  1400. .get_eld = hdmi_audio_get_eld,
  1401. };
  1402. static int hdmi_register_audio_device(struct hdmi_context *hdata)
  1403. {
  1404. struct hdmi_codec_pdata codec_data = {
  1405. .ops = &audio_codec_ops,
  1406. .max_i2s_channels = 6,
  1407. .i2s = 1,
  1408. };
  1409. hdata->audio.pdev = platform_device_register_data(
  1410. hdata->dev, HDMI_CODEC_DRV_NAME, PLATFORM_DEVID_AUTO,
  1411. &codec_data, sizeof(codec_data));
  1412. return PTR_ERR_OR_ZERO(hdata->audio.pdev);
  1413. }
  1414. static void hdmi_hotplug_work_func(struct work_struct *work)
  1415. {
  1416. struct hdmi_context *hdata;
  1417. hdata = container_of(work, struct hdmi_context, hotplug_work.work);
  1418. if (hdata->drm_dev)
  1419. drm_helper_hpd_irq_event(hdata->drm_dev);
  1420. }
  1421. static irqreturn_t hdmi_irq_thread(int irq, void *arg)
  1422. {
  1423. struct hdmi_context *hdata = arg;
  1424. mod_delayed_work(system_wq, &hdata->hotplug_work,
  1425. msecs_to_jiffies(HOTPLUG_DEBOUNCE_MS));
  1426. return IRQ_HANDLED;
  1427. }
  1428. static int hdmi_clks_get(struct hdmi_context *hdata,
  1429. const struct string_array_spec *names,
  1430. struct clk **clks)
  1431. {
  1432. struct device *dev = hdata->dev;
  1433. int i;
  1434. for (i = 0; i < names->count; ++i) {
  1435. struct clk *clk = devm_clk_get(dev, names->data[i]);
  1436. if (IS_ERR(clk)) {
  1437. int ret = PTR_ERR(clk);
  1438. dev_err(dev, "Cannot get clock %s, %d\n",
  1439. names->data[i], ret);
  1440. return ret;
  1441. }
  1442. clks[i] = clk;
  1443. }
  1444. return 0;
  1445. }
  1446. static int hdmi_clk_init(struct hdmi_context *hdata)
  1447. {
  1448. const struct hdmi_driver_data *drv_data = hdata->drv_data;
  1449. int count = drv_data->clk_gates.count + drv_data->clk_muxes.count;
  1450. struct device *dev = hdata->dev;
  1451. struct clk **clks;
  1452. int ret;
  1453. if (!count)
  1454. return 0;
  1455. clks = devm_kzalloc(dev, sizeof(*clks) * count, GFP_KERNEL);
  1456. if (!clks)
  1457. return -ENOMEM;
  1458. hdata->clk_gates = clks;
  1459. hdata->clk_muxes = clks + drv_data->clk_gates.count;
  1460. ret = hdmi_clks_get(hdata, &drv_data->clk_gates, hdata->clk_gates);
  1461. if (ret)
  1462. return ret;
  1463. return hdmi_clks_get(hdata, &drv_data->clk_muxes, hdata->clk_muxes);
  1464. }
  1465. static void hdmiphy_clk_enable(struct exynos_drm_clk *clk, bool enable)
  1466. {
  1467. struct hdmi_context *hdata = container_of(clk, struct hdmi_context,
  1468. phy_clk);
  1469. mutex_lock(&hdata->mutex);
  1470. if (enable)
  1471. hdmiphy_enable(hdata);
  1472. else
  1473. hdmiphy_disable(hdata);
  1474. mutex_unlock(&hdata->mutex);
  1475. }
  1476. static int hdmi_bridge_init(struct hdmi_context *hdata)
  1477. {
  1478. struct device *dev = hdata->dev;
  1479. struct device_node *ep, *np;
  1480. ep = of_graph_get_endpoint_by_regs(dev->of_node, 1, -1);
  1481. if (!ep)
  1482. return 0;
  1483. np = of_graph_get_remote_port_parent(ep);
  1484. of_node_put(ep);
  1485. if (!np) {
  1486. DRM_ERROR("failed to get remote port parent");
  1487. return -EINVAL;
  1488. }
  1489. hdata->bridge = of_drm_find_bridge(np);
  1490. of_node_put(np);
  1491. if (!hdata->bridge)
  1492. return -EPROBE_DEFER;
  1493. return 0;
  1494. }
  1495. static int hdmi_resources_init(struct hdmi_context *hdata)
  1496. {
  1497. struct device *dev = hdata->dev;
  1498. int i, ret;
  1499. DRM_DEBUG_KMS("HDMI resource init\n");
  1500. hdata->hpd_gpio = devm_gpiod_get(dev, "hpd", GPIOD_IN);
  1501. if (IS_ERR(hdata->hpd_gpio)) {
  1502. DRM_ERROR("cannot get hpd gpio property\n");
  1503. return PTR_ERR(hdata->hpd_gpio);
  1504. }
  1505. hdata->irq = gpiod_to_irq(hdata->hpd_gpio);
  1506. if (hdata->irq < 0) {
  1507. DRM_ERROR("failed to get GPIO irq\n");
  1508. return hdata->irq;
  1509. }
  1510. ret = hdmi_clk_init(hdata);
  1511. if (ret)
  1512. return ret;
  1513. ret = hdmi_clk_set_parents(hdata, false);
  1514. if (ret)
  1515. return ret;
  1516. for (i = 0; i < ARRAY_SIZE(supply); ++i)
  1517. hdata->regul_bulk[i].supply = supply[i];
  1518. ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(supply), hdata->regul_bulk);
  1519. if (ret) {
  1520. if (ret != -EPROBE_DEFER)
  1521. DRM_ERROR("failed to get regulators\n");
  1522. return ret;
  1523. }
  1524. hdata->reg_hdmi_en = devm_regulator_get_optional(dev, "hdmi-en");
  1525. if (PTR_ERR(hdata->reg_hdmi_en) != -ENODEV) {
  1526. if (IS_ERR(hdata->reg_hdmi_en))
  1527. return PTR_ERR(hdata->reg_hdmi_en);
  1528. ret = regulator_enable(hdata->reg_hdmi_en);
  1529. if (ret) {
  1530. DRM_ERROR("failed to enable hdmi-en regulator\n");
  1531. return ret;
  1532. }
  1533. }
  1534. return hdmi_bridge_init(hdata);
  1535. }
  1536. static const struct of_device_id hdmi_match_types[] = {
  1537. {
  1538. .compatible = "samsung,exynos4210-hdmi",
  1539. .data = &exynos4210_hdmi_driver_data,
  1540. }, {
  1541. .compatible = "samsung,exynos4212-hdmi",
  1542. .data = &exynos4212_hdmi_driver_data,
  1543. }, {
  1544. .compatible = "samsung,exynos5420-hdmi",
  1545. .data = &exynos5420_hdmi_driver_data,
  1546. }, {
  1547. .compatible = "samsung,exynos5433-hdmi",
  1548. .data = &exynos5433_hdmi_driver_data,
  1549. }, {
  1550. /* end node */
  1551. }
  1552. };
  1553. MODULE_DEVICE_TABLE (of, hdmi_match_types);
  1554. static int hdmi_bind(struct device *dev, struct device *master, void *data)
  1555. {
  1556. struct drm_device *drm_dev = data;
  1557. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1558. struct drm_encoder *encoder = &hdata->encoder;
  1559. struct exynos_drm_crtc *crtc;
  1560. int ret;
  1561. hdata->drm_dev = drm_dev;
  1562. hdata->phy_clk.enable = hdmiphy_clk_enable;
  1563. drm_encoder_init(drm_dev, encoder, &exynos_hdmi_encoder_funcs,
  1564. DRM_MODE_ENCODER_TMDS, NULL);
  1565. drm_encoder_helper_add(encoder, &exynos_hdmi_encoder_helper_funcs);
  1566. ret = exynos_drm_set_possible_crtcs(encoder, EXYNOS_DISPLAY_TYPE_HDMI);
  1567. if (ret < 0)
  1568. return ret;
  1569. crtc = exynos_drm_crtc_get_by_type(drm_dev, EXYNOS_DISPLAY_TYPE_HDMI);
  1570. crtc->pipe_clk = &hdata->phy_clk;
  1571. ret = hdmi_create_connector(encoder);
  1572. if (ret) {
  1573. DRM_ERROR("failed to create connector ret = %d\n", ret);
  1574. drm_encoder_cleanup(encoder);
  1575. return ret;
  1576. }
  1577. return 0;
  1578. }
  1579. static void hdmi_unbind(struct device *dev, struct device *master, void *data)
  1580. {
  1581. }
  1582. static const struct component_ops hdmi_component_ops = {
  1583. .bind = hdmi_bind,
  1584. .unbind = hdmi_unbind,
  1585. };
  1586. static int hdmi_get_ddc_adapter(struct hdmi_context *hdata)
  1587. {
  1588. const char *compatible_str = "samsung,exynos4210-hdmiddc";
  1589. struct device_node *np;
  1590. struct i2c_adapter *adpt;
  1591. np = of_find_compatible_node(NULL, NULL, compatible_str);
  1592. if (np)
  1593. np = of_get_next_parent(np);
  1594. else
  1595. np = of_parse_phandle(hdata->dev->of_node, "ddc", 0);
  1596. if (!np) {
  1597. DRM_ERROR("Failed to find ddc node in device tree\n");
  1598. return -ENODEV;
  1599. }
  1600. adpt = of_find_i2c_adapter_by_node(np);
  1601. of_node_put(np);
  1602. if (!adpt) {
  1603. DRM_INFO("Failed to get ddc i2c adapter by node\n");
  1604. return -EPROBE_DEFER;
  1605. }
  1606. hdata->ddc_adpt = adpt;
  1607. return 0;
  1608. }
  1609. static int hdmi_get_phy_io(struct hdmi_context *hdata)
  1610. {
  1611. const char *compatible_str = "samsung,exynos4212-hdmiphy";
  1612. struct device_node *np;
  1613. int ret = 0;
  1614. np = of_find_compatible_node(NULL, NULL, compatible_str);
  1615. if (!np) {
  1616. np = of_parse_phandle(hdata->dev->of_node, "phy", 0);
  1617. if (!np) {
  1618. DRM_ERROR("Failed to find hdmiphy node in device tree\n");
  1619. return -ENODEV;
  1620. }
  1621. }
  1622. if (hdata->drv_data->is_apb_phy) {
  1623. hdata->regs_hdmiphy = of_iomap(np, 0);
  1624. if (!hdata->regs_hdmiphy) {
  1625. DRM_ERROR("failed to ioremap hdmi phy\n");
  1626. ret = -ENOMEM;
  1627. goto out;
  1628. }
  1629. } else {
  1630. hdata->hdmiphy_port = of_find_i2c_device_by_node(np);
  1631. if (!hdata->hdmiphy_port) {
  1632. DRM_INFO("Failed to get hdmi phy i2c client\n");
  1633. ret = -EPROBE_DEFER;
  1634. goto out;
  1635. }
  1636. }
  1637. out:
  1638. of_node_put(np);
  1639. return ret;
  1640. }
  1641. static int hdmi_probe(struct platform_device *pdev)
  1642. {
  1643. struct hdmi_audio_infoframe *audio_infoframe;
  1644. struct device *dev = &pdev->dev;
  1645. struct hdmi_context *hdata;
  1646. struct resource *res;
  1647. int ret;
  1648. hdata = devm_kzalloc(dev, sizeof(struct hdmi_context), GFP_KERNEL);
  1649. if (!hdata)
  1650. return -ENOMEM;
  1651. hdata->drv_data = of_device_get_match_data(dev);
  1652. platform_set_drvdata(pdev, hdata);
  1653. hdata->dev = dev;
  1654. mutex_init(&hdata->mutex);
  1655. ret = hdmi_resources_init(hdata);
  1656. if (ret) {
  1657. if (ret != -EPROBE_DEFER)
  1658. DRM_ERROR("hdmi_resources_init failed\n");
  1659. return ret;
  1660. }
  1661. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  1662. hdata->regs = devm_ioremap_resource(dev, res);
  1663. if (IS_ERR(hdata->regs)) {
  1664. ret = PTR_ERR(hdata->regs);
  1665. return ret;
  1666. }
  1667. ret = hdmi_get_ddc_adapter(hdata);
  1668. if (ret)
  1669. return ret;
  1670. ret = hdmi_get_phy_io(hdata);
  1671. if (ret)
  1672. goto err_ddc;
  1673. INIT_DELAYED_WORK(&hdata->hotplug_work, hdmi_hotplug_work_func);
  1674. ret = devm_request_threaded_irq(dev, hdata->irq, NULL,
  1675. hdmi_irq_thread, IRQF_TRIGGER_RISING |
  1676. IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
  1677. "hdmi", hdata);
  1678. if (ret) {
  1679. DRM_ERROR("failed to register hdmi interrupt\n");
  1680. goto err_hdmiphy;
  1681. }
  1682. hdata->pmureg = syscon_regmap_lookup_by_phandle(dev->of_node,
  1683. "samsung,syscon-phandle");
  1684. if (IS_ERR(hdata->pmureg)) {
  1685. DRM_ERROR("syscon regmap lookup failed.\n");
  1686. ret = -EPROBE_DEFER;
  1687. goto err_hdmiphy;
  1688. }
  1689. if (hdata->drv_data->has_sysreg) {
  1690. hdata->sysreg = syscon_regmap_lookup_by_phandle(dev->of_node,
  1691. "samsung,sysreg-phandle");
  1692. if (IS_ERR(hdata->sysreg)) {
  1693. DRM_ERROR("sysreg regmap lookup failed.\n");
  1694. ret = -EPROBE_DEFER;
  1695. goto err_hdmiphy;
  1696. }
  1697. }
  1698. hdata->notifier = cec_notifier_get(&pdev->dev);
  1699. if (hdata->notifier == NULL) {
  1700. ret = -ENOMEM;
  1701. goto err_hdmiphy;
  1702. }
  1703. pm_runtime_enable(dev);
  1704. audio_infoframe = &hdata->audio.infoframe;
  1705. hdmi_audio_infoframe_init(audio_infoframe);
  1706. audio_infoframe->coding_type = HDMI_AUDIO_CODING_TYPE_STREAM;
  1707. audio_infoframe->sample_size = HDMI_AUDIO_SAMPLE_SIZE_STREAM;
  1708. audio_infoframe->sample_frequency = HDMI_AUDIO_SAMPLE_FREQUENCY_STREAM;
  1709. audio_infoframe->channels = 2;
  1710. ret = hdmi_register_audio_device(hdata);
  1711. if (ret)
  1712. goto err_notifier_put;
  1713. ret = component_add(&pdev->dev, &hdmi_component_ops);
  1714. if (ret)
  1715. goto err_unregister_audio;
  1716. return ret;
  1717. err_unregister_audio:
  1718. platform_device_unregister(hdata->audio.pdev);
  1719. err_notifier_put:
  1720. cec_notifier_put(hdata->notifier);
  1721. pm_runtime_disable(dev);
  1722. err_hdmiphy:
  1723. if (hdata->hdmiphy_port)
  1724. put_device(&hdata->hdmiphy_port->dev);
  1725. if (hdata->regs_hdmiphy)
  1726. iounmap(hdata->regs_hdmiphy);
  1727. err_ddc:
  1728. put_device(&hdata->ddc_adpt->dev);
  1729. return ret;
  1730. }
  1731. static int hdmi_remove(struct platform_device *pdev)
  1732. {
  1733. struct hdmi_context *hdata = platform_get_drvdata(pdev);
  1734. cancel_delayed_work_sync(&hdata->hotplug_work);
  1735. cec_notifier_set_phys_addr(hdata->notifier, CEC_PHYS_ADDR_INVALID);
  1736. component_del(&pdev->dev, &hdmi_component_ops);
  1737. platform_device_unregister(hdata->audio.pdev);
  1738. cec_notifier_put(hdata->notifier);
  1739. pm_runtime_disable(&pdev->dev);
  1740. if (!IS_ERR(hdata->reg_hdmi_en))
  1741. regulator_disable(hdata->reg_hdmi_en);
  1742. if (hdata->hdmiphy_port)
  1743. put_device(&hdata->hdmiphy_port->dev);
  1744. if (hdata->regs_hdmiphy)
  1745. iounmap(hdata->regs_hdmiphy);
  1746. put_device(&hdata->ddc_adpt->dev);
  1747. mutex_destroy(&hdata->mutex);
  1748. return 0;
  1749. }
  1750. static int __maybe_unused exynos_hdmi_suspend(struct device *dev)
  1751. {
  1752. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1753. hdmi_clk_disable_gates(hdata);
  1754. return 0;
  1755. }
  1756. static int __maybe_unused exynos_hdmi_resume(struct device *dev)
  1757. {
  1758. struct hdmi_context *hdata = dev_get_drvdata(dev);
  1759. int ret;
  1760. ret = hdmi_clk_enable_gates(hdata);
  1761. if (ret < 0)
  1762. return ret;
  1763. return 0;
  1764. }
  1765. static const struct dev_pm_ops exynos_hdmi_pm_ops = {
  1766. SET_RUNTIME_PM_OPS(exynos_hdmi_suspend, exynos_hdmi_resume, NULL)
  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. };