exynos_hdmi.c 55 KB

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