imx-ldb.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * i.MX drm driver - LVDS display bridge
  4. *
  5. * Copyright (C) 2012 Sascha Hauer, Pengutronix
  6. */
  7. #include <linux/clk.h>
  8. #include <linux/component.h>
  9. #include <linux/media-bus-format.h>
  10. #include <linux/mfd/syscon.h>
  11. #include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
  12. #include <linux/module.h>
  13. #include <linux/of_device.h>
  14. #include <linux/of_graph.h>
  15. #include <linux/regmap.h>
  16. #include <linux/videodev2.h>
  17. #include <video/of_display_timing.h>
  18. #include <video/of_videomode.h>
  19. #include <drm/drm_atomic.h>
  20. #include <drm/drm_atomic_helper.h>
  21. #include <drm/drm_bridge.h>
  22. #include <drm/drm_edid.h>
  23. #include <drm/drm_fb_helper.h>
  24. #include <drm/drm_managed.h>
  25. #include <drm/drm_of.h>
  26. #include <drm/drm_panel.h>
  27. #include <drm/drm_print.h>
  28. #include <drm/drm_probe_helper.h>
  29. #include <drm/drm_simple_kms_helper.h>
  30. #include "imx-drm.h"
  31. #define DRIVER_NAME "imx-ldb"
  32. #define LDB_CH0_MODE_EN_TO_DI0 (1 << 0)
  33. #define LDB_CH0_MODE_EN_TO_DI1 (3 << 0)
  34. #define LDB_CH0_MODE_EN_MASK (3 << 0)
  35. #define LDB_CH1_MODE_EN_TO_DI0 (1 << 2)
  36. #define LDB_CH1_MODE_EN_TO_DI1 (3 << 2)
  37. #define LDB_CH1_MODE_EN_MASK (3 << 2)
  38. #define LDB_SPLIT_MODE_EN (1 << 4)
  39. #define LDB_DATA_WIDTH_CH0_24 (1 << 5)
  40. #define LDB_BIT_MAP_CH0_JEIDA (1 << 6)
  41. #define LDB_DATA_WIDTH_CH1_24 (1 << 7)
  42. #define LDB_BIT_MAP_CH1_JEIDA (1 << 8)
  43. #define LDB_DI0_VS_POL_ACT_LOW (1 << 9)
  44. #define LDB_DI1_VS_POL_ACT_LOW (1 << 10)
  45. #define LDB_BGREF_RMODE_INT (1 << 15)
  46. struct imx_ldb_channel;
  47. struct imx_ldb_encoder {
  48. struct drm_connector connector;
  49. struct drm_encoder encoder;
  50. struct imx_ldb_channel *channel;
  51. };
  52. struct imx_ldb;
  53. struct imx_ldb_channel {
  54. struct imx_ldb *ldb;
  55. /* Defines what is connected to the ldb, only one at a time */
  56. struct drm_panel *panel;
  57. struct drm_bridge *bridge;
  58. struct device_node *child;
  59. struct i2c_adapter *ddc;
  60. int chno;
  61. void *edid;
  62. struct drm_display_mode mode;
  63. int mode_valid;
  64. u32 bus_format;
  65. u32 bus_flags;
  66. };
  67. static inline struct imx_ldb_channel *con_to_imx_ldb_ch(struct drm_connector *c)
  68. {
  69. return container_of(c, struct imx_ldb_encoder, connector)->channel;
  70. }
  71. static inline struct imx_ldb_channel *enc_to_imx_ldb_ch(struct drm_encoder *e)
  72. {
  73. return container_of(e, struct imx_ldb_encoder, encoder)->channel;
  74. }
  75. struct bus_mux {
  76. int reg;
  77. int shift;
  78. int mask;
  79. };
  80. struct imx_ldb {
  81. struct regmap *regmap;
  82. struct device *dev;
  83. struct imx_ldb_channel channel[2];
  84. struct clk *clk[2]; /* our own clock */
  85. struct clk *clk_sel[4]; /* parent of display clock */
  86. struct clk *clk_parent[4]; /* original parent of clk_sel */
  87. struct clk *clk_pll[2]; /* upstream clock we can adjust */
  88. u32 ldb_ctrl;
  89. const struct bus_mux *lvds_mux;
  90. };
  91. static void imx_ldb_ch_set_bus_format(struct imx_ldb_channel *imx_ldb_ch,
  92. u32 bus_format)
  93. {
  94. struct imx_ldb *ldb = imx_ldb_ch->ldb;
  95. int dual = ldb->ldb_ctrl & LDB_SPLIT_MODE_EN;
  96. switch (bus_format) {
  97. case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG:
  98. break;
  99. case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG:
  100. if (imx_ldb_ch->chno == 0 || dual)
  101. ldb->ldb_ctrl |= LDB_DATA_WIDTH_CH0_24;
  102. if (imx_ldb_ch->chno == 1 || dual)
  103. ldb->ldb_ctrl |= LDB_DATA_WIDTH_CH1_24;
  104. break;
  105. case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA:
  106. if (imx_ldb_ch->chno == 0 || dual)
  107. ldb->ldb_ctrl |= LDB_DATA_WIDTH_CH0_24 |
  108. LDB_BIT_MAP_CH0_JEIDA;
  109. if (imx_ldb_ch->chno == 1 || dual)
  110. ldb->ldb_ctrl |= LDB_DATA_WIDTH_CH1_24 |
  111. LDB_BIT_MAP_CH1_JEIDA;
  112. break;
  113. }
  114. }
  115. static int imx_ldb_connector_get_modes(struct drm_connector *connector)
  116. {
  117. struct imx_ldb_channel *imx_ldb_ch = con_to_imx_ldb_ch(connector);
  118. int num_modes;
  119. num_modes = drm_panel_get_modes(imx_ldb_ch->panel, connector);
  120. if (num_modes > 0)
  121. return num_modes;
  122. if (!imx_ldb_ch->edid && imx_ldb_ch->ddc)
  123. imx_ldb_ch->edid = drm_get_edid(connector, imx_ldb_ch->ddc);
  124. if (imx_ldb_ch->edid) {
  125. drm_connector_update_edid_property(connector,
  126. imx_ldb_ch->edid);
  127. num_modes = drm_add_edid_modes(connector, imx_ldb_ch->edid);
  128. }
  129. if (imx_ldb_ch->mode_valid) {
  130. struct drm_display_mode *mode;
  131. mode = drm_mode_duplicate(connector->dev, &imx_ldb_ch->mode);
  132. if (!mode)
  133. return -EINVAL;
  134. mode->type |= DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED;
  135. drm_mode_probed_add(connector, mode);
  136. num_modes++;
  137. }
  138. return num_modes;
  139. }
  140. static void imx_ldb_set_clock(struct imx_ldb *ldb, int mux, int chno,
  141. unsigned long serial_clk, unsigned long di_clk)
  142. {
  143. int ret;
  144. dev_dbg(ldb->dev, "%s: now: %ld want: %ld\n", __func__,
  145. clk_get_rate(ldb->clk_pll[chno]), serial_clk);
  146. clk_set_rate(ldb->clk_pll[chno], serial_clk);
  147. dev_dbg(ldb->dev, "%s after: %ld\n", __func__,
  148. clk_get_rate(ldb->clk_pll[chno]));
  149. dev_dbg(ldb->dev, "%s: now: %ld want: %ld\n", __func__,
  150. clk_get_rate(ldb->clk[chno]),
  151. (long int)di_clk);
  152. clk_set_rate(ldb->clk[chno], di_clk);
  153. dev_dbg(ldb->dev, "%s after: %ld\n", __func__,
  154. clk_get_rate(ldb->clk[chno]));
  155. /* set display clock mux to LDB input clock */
  156. ret = clk_set_parent(ldb->clk_sel[mux], ldb->clk[chno]);
  157. if (ret)
  158. dev_err(ldb->dev,
  159. "unable to set di%d parent clock to ldb_di%d\n", mux,
  160. chno);
  161. }
  162. static void imx_ldb_encoder_enable(struct drm_encoder *encoder)
  163. {
  164. struct imx_ldb_channel *imx_ldb_ch = enc_to_imx_ldb_ch(encoder);
  165. struct imx_ldb *ldb = imx_ldb_ch->ldb;
  166. int dual = ldb->ldb_ctrl & LDB_SPLIT_MODE_EN;
  167. int mux = drm_of_encoder_active_port_id(imx_ldb_ch->child, encoder);
  168. if (mux < 0 || mux >= ARRAY_SIZE(ldb->clk_sel)) {
  169. dev_warn(ldb->dev, "%s: invalid mux %d\n", __func__, mux);
  170. return;
  171. }
  172. drm_panel_prepare(imx_ldb_ch->panel);
  173. if (dual) {
  174. clk_set_parent(ldb->clk_sel[mux], ldb->clk[0]);
  175. clk_set_parent(ldb->clk_sel[mux], ldb->clk[1]);
  176. clk_prepare_enable(ldb->clk[0]);
  177. clk_prepare_enable(ldb->clk[1]);
  178. } else {
  179. clk_set_parent(ldb->clk_sel[mux], ldb->clk[imx_ldb_ch->chno]);
  180. }
  181. if (imx_ldb_ch == &ldb->channel[0] || dual) {
  182. ldb->ldb_ctrl &= ~LDB_CH0_MODE_EN_MASK;
  183. if (mux == 0 || ldb->lvds_mux)
  184. ldb->ldb_ctrl |= LDB_CH0_MODE_EN_TO_DI0;
  185. else if (mux == 1)
  186. ldb->ldb_ctrl |= LDB_CH0_MODE_EN_TO_DI1;
  187. }
  188. if (imx_ldb_ch == &ldb->channel[1] || dual) {
  189. ldb->ldb_ctrl &= ~LDB_CH1_MODE_EN_MASK;
  190. if (mux == 1 || ldb->lvds_mux)
  191. ldb->ldb_ctrl |= LDB_CH1_MODE_EN_TO_DI1;
  192. else if (mux == 0)
  193. ldb->ldb_ctrl |= LDB_CH1_MODE_EN_TO_DI0;
  194. }
  195. if (ldb->lvds_mux) {
  196. const struct bus_mux *lvds_mux = NULL;
  197. if (imx_ldb_ch == &ldb->channel[0])
  198. lvds_mux = &ldb->lvds_mux[0];
  199. else if (imx_ldb_ch == &ldb->channel[1])
  200. lvds_mux = &ldb->lvds_mux[1];
  201. regmap_update_bits(ldb->regmap, lvds_mux->reg, lvds_mux->mask,
  202. mux << lvds_mux->shift);
  203. }
  204. regmap_write(ldb->regmap, IOMUXC_GPR2, ldb->ldb_ctrl);
  205. drm_panel_enable(imx_ldb_ch->panel);
  206. }
  207. static void
  208. imx_ldb_encoder_atomic_mode_set(struct drm_encoder *encoder,
  209. struct drm_crtc_state *crtc_state,
  210. struct drm_connector_state *connector_state)
  211. {
  212. struct imx_ldb_channel *imx_ldb_ch = enc_to_imx_ldb_ch(encoder);
  213. struct drm_display_mode *mode = &crtc_state->adjusted_mode;
  214. struct imx_ldb *ldb = imx_ldb_ch->ldb;
  215. int dual = ldb->ldb_ctrl & LDB_SPLIT_MODE_EN;
  216. unsigned long serial_clk;
  217. unsigned long di_clk = mode->clock * 1000;
  218. int mux = drm_of_encoder_active_port_id(imx_ldb_ch->child, encoder);
  219. u32 bus_format = imx_ldb_ch->bus_format;
  220. if (mux < 0 || mux >= ARRAY_SIZE(ldb->clk_sel)) {
  221. dev_warn(ldb->dev, "%s: invalid mux %d\n", __func__, mux);
  222. return;
  223. }
  224. if (mode->clock > 170000) {
  225. dev_warn(ldb->dev,
  226. "%s: mode exceeds 170 MHz pixel clock\n", __func__);
  227. }
  228. if (mode->clock > 85000 && !dual) {
  229. dev_warn(ldb->dev,
  230. "%s: mode exceeds 85 MHz pixel clock\n", __func__);
  231. }
  232. if (!IS_ALIGNED(mode->hdisplay, 8)) {
  233. dev_warn(ldb->dev,
  234. "%s: hdisplay does not align to 8 byte\n", __func__);
  235. }
  236. if (dual) {
  237. serial_clk = 3500UL * mode->clock;
  238. imx_ldb_set_clock(ldb, mux, 0, serial_clk, di_clk);
  239. imx_ldb_set_clock(ldb, mux, 1, serial_clk, di_clk);
  240. } else {
  241. serial_clk = 7000UL * mode->clock;
  242. imx_ldb_set_clock(ldb, mux, imx_ldb_ch->chno, serial_clk,
  243. di_clk);
  244. }
  245. /* FIXME - assumes straight connections DI0 --> CH0, DI1 --> CH1 */
  246. if (imx_ldb_ch == &ldb->channel[0] || dual) {
  247. if (mode->flags & DRM_MODE_FLAG_NVSYNC)
  248. ldb->ldb_ctrl |= LDB_DI0_VS_POL_ACT_LOW;
  249. else if (mode->flags & DRM_MODE_FLAG_PVSYNC)
  250. ldb->ldb_ctrl &= ~LDB_DI0_VS_POL_ACT_LOW;
  251. }
  252. if (imx_ldb_ch == &ldb->channel[1] || dual) {
  253. if (mode->flags & DRM_MODE_FLAG_NVSYNC)
  254. ldb->ldb_ctrl |= LDB_DI1_VS_POL_ACT_LOW;
  255. else if (mode->flags & DRM_MODE_FLAG_PVSYNC)
  256. ldb->ldb_ctrl &= ~LDB_DI1_VS_POL_ACT_LOW;
  257. }
  258. if (!bus_format) {
  259. struct drm_connector *connector = connector_state->connector;
  260. struct drm_display_info *di = &connector->display_info;
  261. if (di->num_bus_formats)
  262. bus_format = di->bus_formats[0];
  263. }
  264. imx_ldb_ch_set_bus_format(imx_ldb_ch, bus_format);
  265. }
  266. static void imx_ldb_encoder_disable(struct drm_encoder *encoder)
  267. {
  268. struct imx_ldb_channel *imx_ldb_ch = enc_to_imx_ldb_ch(encoder);
  269. struct imx_ldb *ldb = imx_ldb_ch->ldb;
  270. int dual = ldb->ldb_ctrl & LDB_SPLIT_MODE_EN;
  271. int mux, ret;
  272. drm_panel_disable(imx_ldb_ch->panel);
  273. if (imx_ldb_ch == &ldb->channel[0] || dual)
  274. ldb->ldb_ctrl &= ~LDB_CH0_MODE_EN_MASK;
  275. if (imx_ldb_ch == &ldb->channel[1] || dual)
  276. ldb->ldb_ctrl &= ~LDB_CH1_MODE_EN_MASK;
  277. regmap_write(ldb->regmap, IOMUXC_GPR2, ldb->ldb_ctrl);
  278. if (dual) {
  279. clk_disable_unprepare(ldb->clk[0]);
  280. clk_disable_unprepare(ldb->clk[1]);
  281. }
  282. if (ldb->lvds_mux) {
  283. const struct bus_mux *lvds_mux = NULL;
  284. if (imx_ldb_ch == &ldb->channel[0])
  285. lvds_mux = &ldb->lvds_mux[0];
  286. else if (imx_ldb_ch == &ldb->channel[1])
  287. lvds_mux = &ldb->lvds_mux[1];
  288. regmap_read(ldb->regmap, lvds_mux->reg, &mux);
  289. mux &= lvds_mux->mask;
  290. mux >>= lvds_mux->shift;
  291. } else {
  292. mux = (imx_ldb_ch == &ldb->channel[0]) ? 0 : 1;
  293. }
  294. /* set display clock mux back to original input clock */
  295. ret = clk_set_parent(ldb->clk_sel[mux], ldb->clk_parent[mux]);
  296. if (ret)
  297. dev_err(ldb->dev,
  298. "unable to set di%d parent clock to original parent\n",
  299. mux);
  300. drm_panel_unprepare(imx_ldb_ch->panel);
  301. }
  302. static int imx_ldb_encoder_atomic_check(struct drm_encoder *encoder,
  303. struct drm_crtc_state *crtc_state,
  304. struct drm_connector_state *conn_state)
  305. {
  306. struct imx_crtc_state *imx_crtc_state = to_imx_crtc_state(crtc_state);
  307. struct imx_ldb_channel *imx_ldb_ch = enc_to_imx_ldb_ch(encoder);
  308. struct drm_display_info *di = &conn_state->connector->display_info;
  309. u32 bus_format = imx_ldb_ch->bus_format;
  310. /* Bus format description in DT overrides connector display info. */
  311. if (!bus_format && di->num_bus_formats) {
  312. bus_format = di->bus_formats[0];
  313. imx_crtc_state->bus_flags = di->bus_flags;
  314. } else {
  315. bus_format = imx_ldb_ch->bus_format;
  316. imx_crtc_state->bus_flags = imx_ldb_ch->bus_flags;
  317. }
  318. switch (bus_format) {
  319. case MEDIA_BUS_FMT_RGB666_1X7X3_SPWG:
  320. imx_crtc_state->bus_format = MEDIA_BUS_FMT_RGB666_1X18;
  321. break;
  322. case MEDIA_BUS_FMT_RGB888_1X7X4_SPWG:
  323. case MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA:
  324. imx_crtc_state->bus_format = MEDIA_BUS_FMT_RGB888_1X24;
  325. break;
  326. default:
  327. return -EINVAL;
  328. }
  329. imx_crtc_state->di_hsync_pin = 2;
  330. imx_crtc_state->di_vsync_pin = 3;
  331. return 0;
  332. }
  333. static const struct drm_connector_funcs imx_ldb_connector_funcs = {
  334. .fill_modes = drm_helper_probe_single_connector_modes,
  335. .destroy = imx_drm_connector_destroy,
  336. .reset = drm_atomic_helper_connector_reset,
  337. .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
  338. .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
  339. };
  340. static const struct drm_connector_helper_funcs imx_ldb_connector_helper_funcs = {
  341. .get_modes = imx_ldb_connector_get_modes,
  342. };
  343. static const struct drm_encoder_helper_funcs imx_ldb_encoder_helper_funcs = {
  344. .atomic_mode_set = imx_ldb_encoder_atomic_mode_set,
  345. .enable = imx_ldb_encoder_enable,
  346. .disable = imx_ldb_encoder_disable,
  347. .atomic_check = imx_ldb_encoder_atomic_check,
  348. };
  349. static int imx_ldb_get_clk(struct imx_ldb *ldb, int chno)
  350. {
  351. char clkname[16];
  352. snprintf(clkname, sizeof(clkname), "di%d", chno);
  353. ldb->clk[chno] = devm_clk_get(ldb->dev, clkname);
  354. if (IS_ERR(ldb->clk[chno]))
  355. return PTR_ERR(ldb->clk[chno]);
  356. snprintf(clkname, sizeof(clkname), "di%d_pll", chno);
  357. ldb->clk_pll[chno] = devm_clk_get(ldb->dev, clkname);
  358. return PTR_ERR_OR_ZERO(ldb->clk_pll[chno]);
  359. }
  360. static int imx_ldb_register(struct drm_device *drm,
  361. struct imx_ldb_channel *imx_ldb_ch)
  362. {
  363. struct imx_ldb *ldb = imx_ldb_ch->ldb;
  364. struct imx_ldb_encoder *ldb_encoder;
  365. struct drm_connector *connector;
  366. struct drm_encoder *encoder;
  367. int ret;
  368. ldb_encoder = drmm_simple_encoder_alloc(drm, struct imx_ldb_encoder,
  369. encoder, DRM_MODE_ENCODER_LVDS);
  370. if (IS_ERR(ldb_encoder))
  371. return PTR_ERR(ldb_encoder);
  372. ldb_encoder->channel = imx_ldb_ch;
  373. connector = &ldb_encoder->connector;
  374. encoder = &ldb_encoder->encoder;
  375. ret = imx_drm_encoder_parse_of(drm, encoder, imx_ldb_ch->child);
  376. if (ret)
  377. return ret;
  378. ret = imx_ldb_get_clk(ldb, imx_ldb_ch->chno);
  379. if (ret)
  380. return ret;
  381. if (ldb->ldb_ctrl & LDB_SPLIT_MODE_EN) {
  382. ret = imx_ldb_get_clk(ldb, 1);
  383. if (ret)
  384. return ret;
  385. }
  386. drm_encoder_helper_add(encoder, &imx_ldb_encoder_helper_funcs);
  387. if (imx_ldb_ch->bridge) {
  388. ret = drm_bridge_attach(encoder, imx_ldb_ch->bridge, NULL, 0);
  389. if (ret)
  390. return ret;
  391. } else {
  392. /*
  393. * We want to add the connector whenever there is no bridge
  394. * that brings its own, not only when there is a panel. For
  395. * historical reasons, the ldb driver can also work without
  396. * a panel.
  397. */
  398. drm_connector_helper_add(connector,
  399. &imx_ldb_connector_helper_funcs);
  400. drm_connector_init_with_ddc(drm, connector,
  401. &imx_ldb_connector_funcs,
  402. DRM_MODE_CONNECTOR_LVDS,
  403. imx_ldb_ch->ddc);
  404. drm_connector_attach_encoder(connector, encoder);
  405. }
  406. return 0;
  407. }
  408. struct imx_ldb_bit_mapping {
  409. u32 bus_format;
  410. u32 datawidth;
  411. const char * const mapping;
  412. };
  413. static const struct imx_ldb_bit_mapping imx_ldb_bit_mappings[] = {
  414. { MEDIA_BUS_FMT_RGB666_1X7X3_SPWG, 18, "spwg" },
  415. { MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, 24, "spwg" },
  416. { MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA, 24, "jeida" },
  417. };
  418. static u32 of_get_bus_format(struct device *dev, struct device_node *np)
  419. {
  420. const char *bm;
  421. u32 datawidth = 0;
  422. int ret, i;
  423. ret = of_property_read_string(np, "fsl,data-mapping", &bm);
  424. if (ret < 0)
  425. return ret;
  426. of_property_read_u32(np, "fsl,data-width", &datawidth);
  427. for (i = 0; i < ARRAY_SIZE(imx_ldb_bit_mappings); i++) {
  428. if (!strcasecmp(bm, imx_ldb_bit_mappings[i].mapping) &&
  429. datawidth == imx_ldb_bit_mappings[i].datawidth)
  430. return imx_ldb_bit_mappings[i].bus_format;
  431. }
  432. dev_err(dev, "invalid data mapping: %d-bit \"%s\"\n", datawidth, bm);
  433. return -ENOENT;
  434. }
  435. static struct bus_mux imx6q_lvds_mux[2] = {
  436. {
  437. .reg = IOMUXC_GPR3,
  438. .shift = 6,
  439. .mask = IMX6Q_GPR3_LVDS0_MUX_CTL_MASK,
  440. }, {
  441. .reg = IOMUXC_GPR3,
  442. .shift = 8,
  443. .mask = IMX6Q_GPR3_LVDS1_MUX_CTL_MASK,
  444. }
  445. };
  446. /*
  447. * For a device declaring compatible = "fsl,imx6q-ldb", "fsl,imx53-ldb",
  448. * of_match_device will walk through this list and take the first entry
  449. * matching any of its compatible values. Therefore, the more generic
  450. * entries (in this case fsl,imx53-ldb) need to be ordered last.
  451. */
  452. static const struct of_device_id imx_ldb_dt_ids[] = {
  453. { .compatible = "fsl,imx6q-ldb", .data = imx6q_lvds_mux, },
  454. { .compatible = "fsl,imx53-ldb", .data = NULL, },
  455. { }
  456. };
  457. MODULE_DEVICE_TABLE(of, imx_ldb_dt_ids);
  458. static int imx_ldb_panel_ddc(struct device *dev,
  459. struct imx_ldb_channel *channel, struct device_node *child)
  460. {
  461. struct device_node *ddc_node;
  462. const u8 *edidp;
  463. int ret;
  464. ddc_node = of_parse_phandle(child, "ddc-i2c-bus", 0);
  465. if (ddc_node) {
  466. channel->ddc = of_find_i2c_adapter_by_node(ddc_node);
  467. of_node_put(ddc_node);
  468. if (!channel->ddc) {
  469. dev_warn(dev, "failed to get ddc i2c adapter\n");
  470. return -EPROBE_DEFER;
  471. }
  472. }
  473. if (!channel->ddc) {
  474. int edid_len;
  475. /* if no DDC available, fallback to hardcoded EDID */
  476. dev_dbg(dev, "no ddc available\n");
  477. edidp = of_get_property(child, "edid", &edid_len);
  478. if (edidp) {
  479. channel->edid = kmemdup(edidp, edid_len, GFP_KERNEL);
  480. if (!channel->edid)
  481. return -ENOMEM;
  482. } else if (!channel->panel) {
  483. /* fallback to display-timings node */
  484. ret = of_get_drm_display_mode(child,
  485. &channel->mode,
  486. &channel->bus_flags,
  487. OF_USE_NATIVE_MODE);
  488. if (!ret)
  489. channel->mode_valid = 1;
  490. }
  491. }
  492. return 0;
  493. }
  494. static int imx_ldb_bind(struct device *dev, struct device *master, void *data)
  495. {
  496. struct drm_device *drm = data;
  497. struct imx_ldb *imx_ldb = dev_get_drvdata(dev);
  498. int ret;
  499. int i;
  500. for (i = 0; i < 2; i++) {
  501. struct imx_ldb_channel *channel = &imx_ldb->channel[i];
  502. if (!channel->ldb)
  503. continue;
  504. ret = imx_ldb_register(drm, channel);
  505. if (ret)
  506. return ret;
  507. }
  508. return 0;
  509. }
  510. static const struct component_ops imx_ldb_ops = {
  511. .bind = imx_ldb_bind,
  512. };
  513. static int imx_ldb_probe(struct platform_device *pdev)
  514. {
  515. struct device *dev = &pdev->dev;
  516. struct device_node *np = dev->of_node;
  517. const struct of_device_id *of_id = of_match_device(imx_ldb_dt_ids, dev);
  518. struct device_node *child;
  519. struct imx_ldb *imx_ldb;
  520. int dual;
  521. int ret;
  522. int i;
  523. imx_ldb = devm_kzalloc(dev, sizeof(*imx_ldb), GFP_KERNEL);
  524. if (!imx_ldb)
  525. return -ENOMEM;
  526. imx_ldb->regmap = syscon_regmap_lookup_by_phandle(np, "gpr");
  527. if (IS_ERR(imx_ldb->regmap)) {
  528. dev_err(dev, "failed to get parent regmap\n");
  529. return PTR_ERR(imx_ldb->regmap);
  530. }
  531. /* disable LDB by resetting the control register to POR default */
  532. regmap_write(imx_ldb->regmap, IOMUXC_GPR2, 0);
  533. imx_ldb->dev = dev;
  534. if (of_id)
  535. imx_ldb->lvds_mux = of_id->data;
  536. dual = of_property_read_bool(np, "fsl,dual-channel");
  537. if (dual)
  538. imx_ldb->ldb_ctrl |= LDB_SPLIT_MODE_EN;
  539. /*
  540. * There are three different possible clock mux configurations:
  541. * i.MX53: ipu1_di0_sel, ipu1_di1_sel
  542. * i.MX6q: ipu1_di0_sel, ipu1_di1_sel, ipu2_di0_sel, ipu2_di1_sel
  543. * i.MX6dl: ipu1_di0_sel, ipu1_di1_sel, lcdif_sel
  544. * Map them all to di0_sel...di3_sel.
  545. */
  546. for (i = 0; i < 4; i++) {
  547. char clkname[16];
  548. sprintf(clkname, "di%d_sel", i);
  549. imx_ldb->clk_sel[i] = devm_clk_get(imx_ldb->dev, clkname);
  550. if (IS_ERR(imx_ldb->clk_sel[i])) {
  551. ret = PTR_ERR(imx_ldb->clk_sel[i]);
  552. imx_ldb->clk_sel[i] = NULL;
  553. break;
  554. }
  555. imx_ldb->clk_parent[i] = clk_get_parent(imx_ldb->clk_sel[i]);
  556. }
  557. if (i == 0)
  558. return ret;
  559. for_each_child_of_node(np, child) {
  560. struct imx_ldb_channel *channel;
  561. int bus_format;
  562. ret = of_property_read_u32(child, "reg", &i);
  563. if (ret || i < 0 || i > 1) {
  564. ret = -EINVAL;
  565. goto free_child;
  566. }
  567. if (!of_device_is_available(child))
  568. continue;
  569. if (dual && i > 0) {
  570. dev_warn(dev, "dual-channel mode, ignoring second output\n");
  571. continue;
  572. }
  573. channel = &imx_ldb->channel[i];
  574. channel->ldb = imx_ldb;
  575. channel->chno = i;
  576. /*
  577. * The output port is port@4 with an external 4-port mux or
  578. * port@2 with the internal 2-port mux.
  579. */
  580. ret = drm_of_find_panel_or_bridge(child,
  581. imx_ldb->lvds_mux ? 4 : 2, 0,
  582. &channel->panel, &channel->bridge);
  583. if (ret && ret != -ENODEV)
  584. goto free_child;
  585. /* panel ddc only if there is no bridge */
  586. if (!channel->bridge) {
  587. ret = imx_ldb_panel_ddc(dev, channel, child);
  588. if (ret)
  589. goto free_child;
  590. }
  591. bus_format = of_get_bus_format(dev, child);
  592. if (bus_format == -EINVAL) {
  593. /*
  594. * If no bus format was specified in the device tree,
  595. * we can still get it from the connected panel later.
  596. */
  597. if (channel->panel && channel->panel->funcs &&
  598. channel->panel->funcs->get_modes)
  599. bus_format = 0;
  600. }
  601. if (bus_format < 0) {
  602. dev_err(dev, "could not determine data mapping: %d\n",
  603. bus_format);
  604. ret = bus_format;
  605. goto free_child;
  606. }
  607. channel->bus_format = bus_format;
  608. channel->child = child;
  609. }
  610. platform_set_drvdata(pdev, imx_ldb);
  611. return component_add(&pdev->dev, &imx_ldb_ops);
  612. free_child:
  613. of_node_put(child);
  614. return ret;
  615. }
  616. static int imx_ldb_remove(struct platform_device *pdev)
  617. {
  618. struct imx_ldb *imx_ldb = platform_get_drvdata(pdev);
  619. int i;
  620. for (i = 0; i < 2; i++) {
  621. struct imx_ldb_channel *channel = &imx_ldb->channel[i];
  622. kfree(channel->edid);
  623. i2c_put_adapter(channel->ddc);
  624. }
  625. component_del(&pdev->dev, &imx_ldb_ops);
  626. return 0;
  627. }
  628. static struct platform_driver imx_ldb_driver = {
  629. .probe = imx_ldb_probe,
  630. .remove = imx_ldb_remove,
  631. .driver = {
  632. .of_match_table = imx_ldb_dt_ids,
  633. .name = DRIVER_NAME,
  634. },
  635. };
  636. module_platform_driver(imx_ldb_driver);
  637. MODULE_DESCRIPTION("i.MX LVDS driver");
  638. MODULE_AUTHOR("Sascha Hauer, Pengutronix");
  639. MODULE_LICENSE("GPL");
  640. MODULE_ALIAS("platform:" DRIVER_NAME);