venc.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008
  1. /*
  2. * linux/drivers/video/omap2/dss/venc.c
  3. *
  4. * Copyright (C) 2009 Nokia Corporation
  5. * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
  6. *
  7. * VENC settings from TI's DSS driver
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License version 2 as published by
  11. * the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  16. * more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along with
  19. * this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. #define DSS_SUBSYS_NAME "VENC"
  22. #include <linux/kernel.h>
  23. #include <linux/module.h>
  24. #include <linux/clk.h>
  25. #include <linux/err.h>
  26. #include <linux/io.h>
  27. #include <linux/mutex.h>
  28. #include <linux/completion.h>
  29. #include <linux/delay.h>
  30. #include <linux/string.h>
  31. #include <linux/seq_file.h>
  32. #include <linux/platform_device.h>
  33. #include <linux/regulator/consumer.h>
  34. #include <linux/pm_runtime.h>
  35. #include <linux/of.h>
  36. #include <linux/of_graph.h>
  37. #include <linux/component.h>
  38. #include <linux/sys_soc.h>
  39. #include "omapdss.h"
  40. #include "dss.h"
  41. /* Venc registers */
  42. #define VENC_REV_ID 0x00
  43. #define VENC_STATUS 0x04
  44. #define VENC_F_CONTROL 0x08
  45. #define VENC_VIDOUT_CTRL 0x10
  46. #define VENC_SYNC_CTRL 0x14
  47. #define VENC_LLEN 0x1C
  48. #define VENC_FLENS 0x20
  49. #define VENC_HFLTR_CTRL 0x24
  50. #define VENC_CC_CARR_WSS_CARR 0x28
  51. #define VENC_C_PHASE 0x2C
  52. #define VENC_GAIN_U 0x30
  53. #define VENC_GAIN_V 0x34
  54. #define VENC_GAIN_Y 0x38
  55. #define VENC_BLACK_LEVEL 0x3C
  56. #define VENC_BLANK_LEVEL 0x40
  57. #define VENC_X_COLOR 0x44
  58. #define VENC_M_CONTROL 0x48
  59. #define VENC_BSTAMP_WSS_DATA 0x4C
  60. #define VENC_S_CARR 0x50
  61. #define VENC_LINE21 0x54
  62. #define VENC_LN_SEL 0x58
  63. #define VENC_L21__WC_CTL 0x5C
  64. #define VENC_HTRIGGER_VTRIGGER 0x60
  65. #define VENC_SAVID__EAVID 0x64
  66. #define VENC_FLEN__FAL 0x68
  67. #define VENC_LAL__PHASE_RESET 0x6C
  68. #define VENC_HS_INT_START_STOP_X 0x70
  69. #define VENC_HS_EXT_START_STOP_X 0x74
  70. #define VENC_VS_INT_START_X 0x78
  71. #define VENC_VS_INT_STOP_X__VS_INT_START_Y 0x7C
  72. #define VENC_VS_INT_STOP_Y__VS_EXT_START_X 0x80
  73. #define VENC_VS_EXT_STOP_X__VS_EXT_START_Y 0x84
  74. #define VENC_VS_EXT_STOP_Y 0x88
  75. #define VENC_AVID_START_STOP_X 0x90
  76. #define VENC_AVID_START_STOP_Y 0x94
  77. #define VENC_FID_INT_START_X__FID_INT_START_Y 0xA0
  78. #define VENC_FID_INT_OFFSET_Y__FID_EXT_START_X 0xA4
  79. #define VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y 0xA8
  80. #define VENC_TVDETGP_INT_START_STOP_X 0xB0
  81. #define VENC_TVDETGP_INT_START_STOP_Y 0xB4
  82. #define VENC_GEN_CTRL 0xB8
  83. #define VENC_OUTPUT_CONTROL 0xC4
  84. #define VENC_OUTPUT_TEST 0xC8
  85. #define VENC_DAC_B__DAC_C 0xC8
  86. struct venc_config {
  87. u32 f_control;
  88. u32 vidout_ctrl;
  89. u32 sync_ctrl;
  90. u32 llen;
  91. u32 flens;
  92. u32 hfltr_ctrl;
  93. u32 cc_carr_wss_carr;
  94. u32 c_phase;
  95. u32 gain_u;
  96. u32 gain_v;
  97. u32 gain_y;
  98. u32 black_level;
  99. u32 blank_level;
  100. u32 x_color;
  101. u32 m_control;
  102. u32 bstamp_wss_data;
  103. u32 s_carr;
  104. u32 line21;
  105. u32 ln_sel;
  106. u32 l21__wc_ctl;
  107. u32 htrigger_vtrigger;
  108. u32 savid__eavid;
  109. u32 flen__fal;
  110. u32 lal__phase_reset;
  111. u32 hs_int_start_stop_x;
  112. u32 hs_ext_start_stop_x;
  113. u32 vs_int_start_x;
  114. u32 vs_int_stop_x__vs_int_start_y;
  115. u32 vs_int_stop_y__vs_ext_start_x;
  116. u32 vs_ext_stop_x__vs_ext_start_y;
  117. u32 vs_ext_stop_y;
  118. u32 avid_start_stop_x;
  119. u32 avid_start_stop_y;
  120. u32 fid_int_start_x__fid_int_start_y;
  121. u32 fid_int_offset_y__fid_ext_start_x;
  122. u32 fid_ext_start_y__fid_ext_offset_y;
  123. u32 tvdetgp_int_start_stop_x;
  124. u32 tvdetgp_int_start_stop_y;
  125. u32 gen_ctrl;
  126. };
  127. /* from TRM */
  128. static const struct venc_config venc_config_pal_trm = {
  129. .f_control = 0,
  130. .vidout_ctrl = 1,
  131. .sync_ctrl = 0x40,
  132. .llen = 0x35F, /* 863 */
  133. .flens = 0x270, /* 624 */
  134. .hfltr_ctrl = 0,
  135. .cc_carr_wss_carr = 0x2F7225ED,
  136. .c_phase = 0,
  137. .gain_u = 0x111,
  138. .gain_v = 0x181,
  139. .gain_y = 0x140,
  140. .black_level = 0x3B,
  141. .blank_level = 0x3B,
  142. .x_color = 0x7,
  143. .m_control = 0x2,
  144. .bstamp_wss_data = 0x3F,
  145. .s_carr = 0x2A098ACB,
  146. .line21 = 0,
  147. .ln_sel = 0x01290015,
  148. .l21__wc_ctl = 0x0000F603,
  149. .htrigger_vtrigger = 0,
  150. .savid__eavid = 0x06A70108,
  151. .flen__fal = 0x00180270,
  152. .lal__phase_reset = 0x00040135,
  153. .hs_int_start_stop_x = 0x00880358,
  154. .hs_ext_start_stop_x = 0x000F035F,
  155. .vs_int_start_x = 0x01A70000,
  156. .vs_int_stop_x__vs_int_start_y = 0x000001A7,
  157. .vs_int_stop_y__vs_ext_start_x = 0x01AF0000,
  158. .vs_ext_stop_x__vs_ext_start_y = 0x000101AF,
  159. .vs_ext_stop_y = 0x00000025,
  160. .avid_start_stop_x = 0x03530083,
  161. .avid_start_stop_y = 0x026C002E,
  162. .fid_int_start_x__fid_int_start_y = 0x0001008A,
  163. .fid_int_offset_y__fid_ext_start_x = 0x002E0138,
  164. .fid_ext_start_y__fid_ext_offset_y = 0x01380001,
  165. .tvdetgp_int_start_stop_x = 0x00140001,
  166. .tvdetgp_int_start_stop_y = 0x00010001,
  167. .gen_ctrl = 0x00FF0000,
  168. };
  169. /* from TRM */
  170. static const struct venc_config venc_config_ntsc_trm = {
  171. .f_control = 0,
  172. .vidout_ctrl = 1,
  173. .sync_ctrl = 0x8040,
  174. .llen = 0x359,
  175. .flens = 0x20C,
  176. .hfltr_ctrl = 0,
  177. .cc_carr_wss_carr = 0x043F2631,
  178. .c_phase = 0,
  179. .gain_u = 0x102,
  180. .gain_v = 0x16C,
  181. .gain_y = 0x12F,
  182. .black_level = 0x43,
  183. .blank_level = 0x38,
  184. .x_color = 0x7,
  185. .m_control = 0x1,
  186. .bstamp_wss_data = 0x38,
  187. .s_carr = 0x21F07C1F,
  188. .line21 = 0,
  189. .ln_sel = 0x01310011,
  190. .l21__wc_ctl = 0x0000F003,
  191. .htrigger_vtrigger = 0,
  192. .savid__eavid = 0x069300F4,
  193. .flen__fal = 0x0016020C,
  194. .lal__phase_reset = 0x00060107,
  195. .hs_int_start_stop_x = 0x008E0350,
  196. .hs_ext_start_stop_x = 0x000F0359,
  197. .vs_int_start_x = 0x01A00000,
  198. .vs_int_stop_x__vs_int_start_y = 0x020701A0,
  199. .vs_int_stop_y__vs_ext_start_x = 0x01AC0024,
  200. .vs_ext_stop_x__vs_ext_start_y = 0x020D01AC,
  201. .vs_ext_stop_y = 0x00000006,
  202. .avid_start_stop_x = 0x03480078,
  203. .avid_start_stop_y = 0x02060024,
  204. .fid_int_start_x__fid_int_start_y = 0x0001008A,
  205. .fid_int_offset_y__fid_ext_start_x = 0x01AC0106,
  206. .fid_ext_start_y__fid_ext_offset_y = 0x01060006,
  207. .tvdetgp_int_start_stop_x = 0x00140001,
  208. .tvdetgp_int_start_stop_y = 0x00010001,
  209. .gen_ctrl = 0x00F90000,
  210. };
  211. static const struct venc_config venc_config_pal_bdghi = {
  212. .f_control = 0,
  213. .vidout_ctrl = 0,
  214. .sync_ctrl = 0,
  215. .hfltr_ctrl = 0,
  216. .x_color = 0,
  217. .line21 = 0,
  218. .ln_sel = 21,
  219. .htrigger_vtrigger = 0,
  220. .tvdetgp_int_start_stop_x = 0x00140001,
  221. .tvdetgp_int_start_stop_y = 0x00010001,
  222. .gen_ctrl = 0x00FB0000,
  223. .llen = 864-1,
  224. .flens = 625-1,
  225. .cc_carr_wss_carr = 0x2F7625ED,
  226. .c_phase = 0xDF,
  227. .gain_u = 0x111,
  228. .gain_v = 0x181,
  229. .gain_y = 0x140,
  230. .black_level = 0x3e,
  231. .blank_level = 0x3e,
  232. .m_control = 0<<2 | 1<<1,
  233. .bstamp_wss_data = 0x42,
  234. .s_carr = 0x2a098acb,
  235. .l21__wc_ctl = 0<<13 | 0x16<<8 | 0<<0,
  236. .savid__eavid = 0x06A70108,
  237. .flen__fal = 23<<16 | 624<<0,
  238. .lal__phase_reset = 2<<17 | 310<<0,
  239. .hs_int_start_stop_x = 0x00920358,
  240. .hs_ext_start_stop_x = 0x000F035F,
  241. .vs_int_start_x = 0x1a7<<16,
  242. .vs_int_stop_x__vs_int_start_y = 0x000601A7,
  243. .vs_int_stop_y__vs_ext_start_x = 0x01AF0036,
  244. .vs_ext_stop_x__vs_ext_start_y = 0x27101af,
  245. .vs_ext_stop_y = 0x05,
  246. .avid_start_stop_x = 0x03530082,
  247. .avid_start_stop_y = 0x0270002E,
  248. .fid_int_start_x__fid_int_start_y = 0x0005008A,
  249. .fid_int_offset_y__fid_ext_start_x = 0x002E0138,
  250. .fid_ext_start_y__fid_ext_offset_y = 0x01380005,
  251. };
  252. enum venc_videomode {
  253. VENC_MODE_UNKNOWN,
  254. VENC_MODE_PAL,
  255. VENC_MODE_NTSC,
  256. };
  257. static const struct videomode omap_dss_pal_vm = {
  258. .hactive = 720,
  259. .vactive = 574,
  260. .pixelclock = 13500000,
  261. .hsync_len = 64,
  262. .hfront_porch = 12,
  263. .hback_porch = 68,
  264. .vsync_len = 5,
  265. .vfront_porch = 5,
  266. .vback_porch = 41,
  267. .flags = DISPLAY_FLAGS_INTERLACED | DISPLAY_FLAGS_HSYNC_LOW |
  268. DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_DE_HIGH |
  269. DISPLAY_FLAGS_PIXDATA_POSEDGE |
  270. DISPLAY_FLAGS_SYNC_NEGEDGE,
  271. };
  272. static const struct videomode omap_dss_ntsc_vm = {
  273. .hactive = 720,
  274. .vactive = 482,
  275. .pixelclock = 13500000,
  276. .hsync_len = 64,
  277. .hfront_porch = 16,
  278. .hback_porch = 58,
  279. .vsync_len = 6,
  280. .vfront_porch = 6,
  281. .vback_porch = 31,
  282. .flags = DISPLAY_FLAGS_INTERLACED | DISPLAY_FLAGS_HSYNC_LOW |
  283. DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_DE_HIGH |
  284. DISPLAY_FLAGS_PIXDATA_POSEDGE |
  285. DISPLAY_FLAGS_SYNC_NEGEDGE,
  286. };
  287. static enum venc_videomode venc_get_videomode(const struct videomode *vm)
  288. {
  289. if (!(vm->flags & DISPLAY_FLAGS_INTERLACED))
  290. return VENC_MODE_UNKNOWN;
  291. if (vm->pixelclock == omap_dss_pal_vm.pixelclock &&
  292. vm->hactive == omap_dss_pal_vm.hactive &&
  293. vm->vactive == omap_dss_pal_vm.vactive)
  294. return VENC_MODE_PAL;
  295. if (vm->pixelclock == omap_dss_ntsc_vm.pixelclock &&
  296. vm->hactive == omap_dss_ntsc_vm.hactive &&
  297. vm->vactive == omap_dss_ntsc_vm.vactive)
  298. return VENC_MODE_NTSC;
  299. return VENC_MODE_UNKNOWN;
  300. }
  301. static struct {
  302. struct platform_device *pdev;
  303. void __iomem *base;
  304. struct mutex venc_lock;
  305. u32 wss_data;
  306. struct regulator *vdda_dac_reg;
  307. struct clk *tv_dac_clk;
  308. struct videomode vm;
  309. enum omap_dss_venc_type type;
  310. bool invert_polarity;
  311. bool requires_tv_dac_clk;
  312. struct omap_dss_device output;
  313. } venc;
  314. static inline void venc_write_reg(int idx, u32 val)
  315. {
  316. __raw_writel(val, venc.base + idx);
  317. }
  318. static inline u32 venc_read_reg(int idx)
  319. {
  320. u32 l = __raw_readl(venc.base + idx);
  321. return l;
  322. }
  323. static void venc_write_config(const struct venc_config *config)
  324. {
  325. DSSDBG("write venc conf\n");
  326. venc_write_reg(VENC_LLEN, config->llen);
  327. venc_write_reg(VENC_FLENS, config->flens);
  328. venc_write_reg(VENC_CC_CARR_WSS_CARR, config->cc_carr_wss_carr);
  329. venc_write_reg(VENC_C_PHASE, config->c_phase);
  330. venc_write_reg(VENC_GAIN_U, config->gain_u);
  331. venc_write_reg(VENC_GAIN_V, config->gain_v);
  332. venc_write_reg(VENC_GAIN_Y, config->gain_y);
  333. venc_write_reg(VENC_BLACK_LEVEL, config->black_level);
  334. venc_write_reg(VENC_BLANK_LEVEL, config->blank_level);
  335. venc_write_reg(VENC_M_CONTROL, config->m_control);
  336. venc_write_reg(VENC_BSTAMP_WSS_DATA, config->bstamp_wss_data |
  337. venc.wss_data);
  338. venc_write_reg(VENC_S_CARR, config->s_carr);
  339. venc_write_reg(VENC_L21__WC_CTL, config->l21__wc_ctl);
  340. venc_write_reg(VENC_SAVID__EAVID, config->savid__eavid);
  341. venc_write_reg(VENC_FLEN__FAL, config->flen__fal);
  342. venc_write_reg(VENC_LAL__PHASE_RESET, config->lal__phase_reset);
  343. venc_write_reg(VENC_HS_INT_START_STOP_X, config->hs_int_start_stop_x);
  344. venc_write_reg(VENC_HS_EXT_START_STOP_X, config->hs_ext_start_stop_x);
  345. venc_write_reg(VENC_VS_INT_START_X, config->vs_int_start_x);
  346. venc_write_reg(VENC_VS_INT_STOP_X__VS_INT_START_Y,
  347. config->vs_int_stop_x__vs_int_start_y);
  348. venc_write_reg(VENC_VS_INT_STOP_Y__VS_EXT_START_X,
  349. config->vs_int_stop_y__vs_ext_start_x);
  350. venc_write_reg(VENC_VS_EXT_STOP_X__VS_EXT_START_Y,
  351. config->vs_ext_stop_x__vs_ext_start_y);
  352. venc_write_reg(VENC_VS_EXT_STOP_Y, config->vs_ext_stop_y);
  353. venc_write_reg(VENC_AVID_START_STOP_X, config->avid_start_stop_x);
  354. venc_write_reg(VENC_AVID_START_STOP_Y, config->avid_start_stop_y);
  355. venc_write_reg(VENC_FID_INT_START_X__FID_INT_START_Y,
  356. config->fid_int_start_x__fid_int_start_y);
  357. venc_write_reg(VENC_FID_INT_OFFSET_Y__FID_EXT_START_X,
  358. config->fid_int_offset_y__fid_ext_start_x);
  359. venc_write_reg(VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y,
  360. config->fid_ext_start_y__fid_ext_offset_y);
  361. venc_write_reg(VENC_DAC_B__DAC_C, venc_read_reg(VENC_DAC_B__DAC_C));
  362. venc_write_reg(VENC_VIDOUT_CTRL, config->vidout_ctrl);
  363. venc_write_reg(VENC_HFLTR_CTRL, config->hfltr_ctrl);
  364. venc_write_reg(VENC_X_COLOR, config->x_color);
  365. venc_write_reg(VENC_LINE21, config->line21);
  366. venc_write_reg(VENC_LN_SEL, config->ln_sel);
  367. venc_write_reg(VENC_HTRIGGER_VTRIGGER, config->htrigger_vtrigger);
  368. venc_write_reg(VENC_TVDETGP_INT_START_STOP_X,
  369. config->tvdetgp_int_start_stop_x);
  370. venc_write_reg(VENC_TVDETGP_INT_START_STOP_Y,
  371. config->tvdetgp_int_start_stop_y);
  372. venc_write_reg(VENC_GEN_CTRL, config->gen_ctrl);
  373. venc_write_reg(VENC_F_CONTROL, config->f_control);
  374. venc_write_reg(VENC_SYNC_CTRL, config->sync_ctrl);
  375. }
  376. static void venc_reset(void)
  377. {
  378. int t = 1000;
  379. venc_write_reg(VENC_F_CONTROL, 1<<8);
  380. while (venc_read_reg(VENC_F_CONTROL) & (1<<8)) {
  381. if (--t == 0) {
  382. DSSERR("Failed to reset venc\n");
  383. return;
  384. }
  385. }
  386. #ifdef CONFIG_OMAP2_DSS_SLEEP_AFTER_VENC_RESET
  387. /* the magical sleep that makes things work */
  388. /* XXX more info? What bug this circumvents? */
  389. msleep(20);
  390. #endif
  391. }
  392. static int venc_runtime_get(void)
  393. {
  394. int r;
  395. DSSDBG("venc_runtime_get\n");
  396. r = pm_runtime_get_sync(&venc.pdev->dev);
  397. WARN_ON(r < 0);
  398. return r < 0 ? r : 0;
  399. }
  400. static void venc_runtime_put(void)
  401. {
  402. int r;
  403. DSSDBG("venc_runtime_put\n");
  404. r = pm_runtime_put_sync(&venc.pdev->dev);
  405. WARN_ON(r < 0 && r != -ENOSYS);
  406. }
  407. static const struct venc_config *venc_timings_to_config(struct videomode *vm)
  408. {
  409. switch (venc_get_videomode(vm)) {
  410. default:
  411. WARN_ON_ONCE(1);
  412. case VENC_MODE_PAL:
  413. return &venc_config_pal_trm;
  414. case VENC_MODE_NTSC:
  415. return &venc_config_ntsc_trm;
  416. }
  417. }
  418. static int venc_power_on(struct omap_dss_device *dssdev)
  419. {
  420. enum omap_channel channel = dssdev->dispc_channel;
  421. u32 l;
  422. int r;
  423. r = venc_runtime_get();
  424. if (r)
  425. goto err0;
  426. venc_reset();
  427. venc_write_config(venc_timings_to_config(&venc.vm));
  428. dss_set_venc_output(venc.type);
  429. dss_set_dac_pwrdn_bgz(1);
  430. l = 0;
  431. if (venc.type == OMAP_DSS_VENC_TYPE_COMPOSITE)
  432. l |= 1 << 1;
  433. else /* S-Video */
  434. l |= (1 << 0) | (1 << 2);
  435. if (venc.invert_polarity == false)
  436. l |= 1 << 3;
  437. venc_write_reg(VENC_OUTPUT_CONTROL, l);
  438. dss_mgr_set_timings(channel, &venc.vm);
  439. r = regulator_enable(venc.vdda_dac_reg);
  440. if (r)
  441. goto err1;
  442. r = dss_mgr_enable(channel);
  443. if (r)
  444. goto err2;
  445. return 0;
  446. err2:
  447. regulator_disable(venc.vdda_dac_reg);
  448. err1:
  449. venc_write_reg(VENC_OUTPUT_CONTROL, 0);
  450. dss_set_dac_pwrdn_bgz(0);
  451. venc_runtime_put();
  452. err0:
  453. return r;
  454. }
  455. static void venc_power_off(struct omap_dss_device *dssdev)
  456. {
  457. enum omap_channel channel = dssdev->dispc_channel;
  458. venc_write_reg(VENC_OUTPUT_CONTROL, 0);
  459. dss_set_dac_pwrdn_bgz(0);
  460. dss_mgr_disable(channel);
  461. regulator_disable(venc.vdda_dac_reg);
  462. venc_runtime_put();
  463. }
  464. static int venc_display_enable(struct omap_dss_device *dssdev)
  465. {
  466. struct omap_dss_device *out = &venc.output;
  467. int r;
  468. DSSDBG("venc_display_enable\n");
  469. mutex_lock(&venc.venc_lock);
  470. if (!out->dispc_channel_connected) {
  471. DSSERR("Failed to enable display: no output/manager\n");
  472. r = -ENODEV;
  473. goto err0;
  474. }
  475. r = venc_power_on(dssdev);
  476. if (r)
  477. goto err0;
  478. venc.wss_data = 0;
  479. mutex_unlock(&venc.venc_lock);
  480. return 0;
  481. err0:
  482. mutex_unlock(&venc.venc_lock);
  483. return r;
  484. }
  485. static void venc_display_disable(struct omap_dss_device *dssdev)
  486. {
  487. DSSDBG("venc_display_disable\n");
  488. mutex_lock(&venc.venc_lock);
  489. venc_power_off(dssdev);
  490. mutex_unlock(&venc.venc_lock);
  491. }
  492. static void venc_set_timings(struct omap_dss_device *dssdev,
  493. struct videomode *vm)
  494. {
  495. struct videomode actual_vm;
  496. DSSDBG("venc_set_timings\n");
  497. mutex_lock(&venc.venc_lock);
  498. switch (venc_get_videomode(vm)) {
  499. default:
  500. WARN_ON_ONCE(1);
  501. case VENC_MODE_PAL:
  502. actual_vm = omap_dss_pal_vm;
  503. break;
  504. case VENC_MODE_NTSC:
  505. actual_vm = omap_dss_ntsc_vm;
  506. break;
  507. }
  508. /* Reset WSS data when the TV standard changes. */
  509. if (memcmp(&venc.vm, &actual_vm, sizeof(actual_vm)))
  510. venc.wss_data = 0;
  511. venc.vm = actual_vm;
  512. dispc_set_tv_pclk(13500000);
  513. mutex_unlock(&venc.venc_lock);
  514. }
  515. static int venc_check_timings(struct omap_dss_device *dssdev,
  516. struct videomode *vm)
  517. {
  518. DSSDBG("venc_check_timings\n");
  519. switch (venc_get_videomode(vm)) {
  520. case VENC_MODE_PAL:
  521. case VENC_MODE_NTSC:
  522. return 0;
  523. default:
  524. return -EINVAL;
  525. }
  526. }
  527. static void venc_get_timings(struct omap_dss_device *dssdev,
  528. struct videomode *vm)
  529. {
  530. mutex_lock(&venc.venc_lock);
  531. *vm = venc.vm;
  532. mutex_unlock(&venc.venc_lock);
  533. }
  534. static u32 venc_get_wss(struct omap_dss_device *dssdev)
  535. {
  536. /* Invert due to VENC_L21_WC_CTL:INV=1 */
  537. return (venc.wss_data >> 8) ^ 0xfffff;
  538. }
  539. static int venc_set_wss(struct omap_dss_device *dssdev, u32 wss)
  540. {
  541. const struct venc_config *config;
  542. int r;
  543. DSSDBG("venc_set_wss\n");
  544. mutex_lock(&venc.venc_lock);
  545. config = venc_timings_to_config(&venc.vm);
  546. /* Invert due to VENC_L21_WC_CTL:INV=1 */
  547. venc.wss_data = (wss ^ 0xfffff) << 8;
  548. r = venc_runtime_get();
  549. if (r)
  550. goto err;
  551. venc_write_reg(VENC_BSTAMP_WSS_DATA, config->bstamp_wss_data |
  552. venc.wss_data);
  553. venc_runtime_put();
  554. err:
  555. mutex_unlock(&venc.venc_lock);
  556. return r;
  557. }
  558. static int venc_init_regulator(void)
  559. {
  560. struct regulator *vdda_dac;
  561. if (venc.vdda_dac_reg != NULL)
  562. return 0;
  563. vdda_dac = devm_regulator_get(&venc.pdev->dev, "vdda");
  564. if (IS_ERR(vdda_dac)) {
  565. if (PTR_ERR(vdda_dac) != -EPROBE_DEFER)
  566. DSSERR("can't get VDDA_DAC regulator\n");
  567. return PTR_ERR(vdda_dac);
  568. }
  569. venc.vdda_dac_reg = vdda_dac;
  570. return 0;
  571. }
  572. static void venc_dump_regs(struct seq_file *s)
  573. {
  574. #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, venc_read_reg(r))
  575. if (venc_runtime_get())
  576. return;
  577. DUMPREG(VENC_F_CONTROL);
  578. DUMPREG(VENC_VIDOUT_CTRL);
  579. DUMPREG(VENC_SYNC_CTRL);
  580. DUMPREG(VENC_LLEN);
  581. DUMPREG(VENC_FLENS);
  582. DUMPREG(VENC_HFLTR_CTRL);
  583. DUMPREG(VENC_CC_CARR_WSS_CARR);
  584. DUMPREG(VENC_C_PHASE);
  585. DUMPREG(VENC_GAIN_U);
  586. DUMPREG(VENC_GAIN_V);
  587. DUMPREG(VENC_GAIN_Y);
  588. DUMPREG(VENC_BLACK_LEVEL);
  589. DUMPREG(VENC_BLANK_LEVEL);
  590. DUMPREG(VENC_X_COLOR);
  591. DUMPREG(VENC_M_CONTROL);
  592. DUMPREG(VENC_BSTAMP_WSS_DATA);
  593. DUMPREG(VENC_S_CARR);
  594. DUMPREG(VENC_LINE21);
  595. DUMPREG(VENC_LN_SEL);
  596. DUMPREG(VENC_L21__WC_CTL);
  597. DUMPREG(VENC_HTRIGGER_VTRIGGER);
  598. DUMPREG(VENC_SAVID__EAVID);
  599. DUMPREG(VENC_FLEN__FAL);
  600. DUMPREG(VENC_LAL__PHASE_RESET);
  601. DUMPREG(VENC_HS_INT_START_STOP_X);
  602. DUMPREG(VENC_HS_EXT_START_STOP_X);
  603. DUMPREG(VENC_VS_INT_START_X);
  604. DUMPREG(VENC_VS_INT_STOP_X__VS_INT_START_Y);
  605. DUMPREG(VENC_VS_INT_STOP_Y__VS_EXT_START_X);
  606. DUMPREG(VENC_VS_EXT_STOP_X__VS_EXT_START_Y);
  607. DUMPREG(VENC_VS_EXT_STOP_Y);
  608. DUMPREG(VENC_AVID_START_STOP_X);
  609. DUMPREG(VENC_AVID_START_STOP_Y);
  610. DUMPREG(VENC_FID_INT_START_X__FID_INT_START_Y);
  611. DUMPREG(VENC_FID_INT_OFFSET_Y__FID_EXT_START_X);
  612. DUMPREG(VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y);
  613. DUMPREG(VENC_TVDETGP_INT_START_STOP_X);
  614. DUMPREG(VENC_TVDETGP_INT_START_STOP_Y);
  615. DUMPREG(VENC_GEN_CTRL);
  616. DUMPREG(VENC_OUTPUT_CONTROL);
  617. DUMPREG(VENC_OUTPUT_TEST);
  618. venc_runtime_put();
  619. #undef DUMPREG
  620. }
  621. static int venc_get_clocks(struct platform_device *pdev)
  622. {
  623. struct clk *clk;
  624. if (venc.requires_tv_dac_clk) {
  625. clk = devm_clk_get(&pdev->dev, "tv_dac_clk");
  626. if (IS_ERR(clk)) {
  627. DSSERR("can't get tv_dac_clk\n");
  628. return PTR_ERR(clk);
  629. }
  630. } else {
  631. clk = NULL;
  632. }
  633. venc.tv_dac_clk = clk;
  634. return 0;
  635. }
  636. static int venc_connect(struct omap_dss_device *dssdev,
  637. struct omap_dss_device *dst)
  638. {
  639. enum omap_channel channel = dssdev->dispc_channel;
  640. int r;
  641. r = venc_init_regulator();
  642. if (r)
  643. return r;
  644. r = dss_mgr_connect(channel, dssdev);
  645. if (r)
  646. return r;
  647. r = omapdss_output_set_device(dssdev, dst);
  648. if (r) {
  649. DSSERR("failed to connect output to new device: %s\n",
  650. dst->name);
  651. dss_mgr_disconnect(channel, dssdev);
  652. return r;
  653. }
  654. return 0;
  655. }
  656. static void venc_disconnect(struct omap_dss_device *dssdev,
  657. struct omap_dss_device *dst)
  658. {
  659. enum omap_channel channel = dssdev->dispc_channel;
  660. WARN_ON(dst != dssdev->dst);
  661. if (dst != dssdev->dst)
  662. return;
  663. omapdss_output_unset_device(dssdev);
  664. dss_mgr_disconnect(channel, dssdev);
  665. }
  666. static const struct omapdss_atv_ops venc_ops = {
  667. .connect = venc_connect,
  668. .disconnect = venc_disconnect,
  669. .enable = venc_display_enable,
  670. .disable = venc_display_disable,
  671. .check_timings = venc_check_timings,
  672. .set_timings = venc_set_timings,
  673. .get_timings = venc_get_timings,
  674. .set_wss = venc_set_wss,
  675. .get_wss = venc_get_wss,
  676. };
  677. static void venc_init_output(struct platform_device *pdev)
  678. {
  679. struct omap_dss_device *out = &venc.output;
  680. out->dev = &pdev->dev;
  681. out->id = OMAP_DSS_OUTPUT_VENC;
  682. out->output_type = OMAP_DISPLAY_TYPE_VENC;
  683. out->name = "venc.0";
  684. out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
  685. out->ops.atv = &venc_ops;
  686. out->owner = THIS_MODULE;
  687. omapdss_register_output(out);
  688. }
  689. static void venc_uninit_output(struct platform_device *pdev)
  690. {
  691. struct omap_dss_device *out = &venc.output;
  692. omapdss_unregister_output(out);
  693. }
  694. static int venc_probe_of(struct platform_device *pdev)
  695. {
  696. struct device_node *node = pdev->dev.of_node;
  697. struct device_node *ep;
  698. u32 channels;
  699. int r;
  700. ep = of_graph_get_endpoint_by_regs(node, 0, 0);
  701. if (!ep)
  702. return 0;
  703. venc.invert_polarity = of_property_read_bool(ep, "ti,invert-polarity");
  704. r = of_property_read_u32(ep, "ti,channels", &channels);
  705. if (r) {
  706. dev_err(&pdev->dev,
  707. "failed to read property 'ti,channels': %d\n", r);
  708. goto err;
  709. }
  710. switch (channels) {
  711. case 1:
  712. venc.type = OMAP_DSS_VENC_TYPE_COMPOSITE;
  713. break;
  714. case 2:
  715. venc.type = OMAP_DSS_VENC_TYPE_SVIDEO;
  716. break;
  717. default:
  718. dev_err(&pdev->dev, "bad channel propert '%d'\n", channels);
  719. r = -EINVAL;
  720. goto err;
  721. }
  722. of_node_put(ep);
  723. return 0;
  724. err:
  725. of_node_put(ep);
  726. return 0;
  727. }
  728. /* VENC HW IP initialisation */
  729. static const struct soc_device_attribute venc_soc_devices[] = {
  730. { .machine = "OMAP3[45]*" },
  731. { .machine = "AM35*" },
  732. { /* sentinel */ }
  733. };
  734. static int venc_bind(struct device *dev, struct device *master, void *data)
  735. {
  736. struct platform_device *pdev = to_platform_device(dev);
  737. u8 rev_id;
  738. struct resource *venc_mem;
  739. int r;
  740. venc.pdev = pdev;
  741. /* The OMAP34xx, OMAP35xx and AM35xx VENC require the TV DAC clock. */
  742. if (soc_device_match(venc_soc_devices))
  743. venc.requires_tv_dac_clk = true;
  744. mutex_init(&venc.venc_lock);
  745. venc.wss_data = 0;
  746. venc_mem = platform_get_resource(venc.pdev, IORESOURCE_MEM, 0);
  747. venc.base = devm_ioremap_resource(&pdev->dev, venc_mem);
  748. if (IS_ERR(venc.base))
  749. return PTR_ERR(venc.base);
  750. r = venc_get_clocks(pdev);
  751. if (r)
  752. return r;
  753. pm_runtime_enable(&pdev->dev);
  754. r = venc_runtime_get();
  755. if (r)
  756. goto err_runtime_get;
  757. rev_id = (u8)(venc_read_reg(VENC_REV_ID) & 0xff);
  758. dev_dbg(&pdev->dev, "OMAP VENC rev %d\n", rev_id);
  759. venc_runtime_put();
  760. r = venc_probe_of(pdev);
  761. if (r) {
  762. DSSERR("Invalid DT data\n");
  763. goto err_probe_of;
  764. }
  765. dss_debugfs_create_file("venc", venc_dump_regs);
  766. venc_init_output(pdev);
  767. return 0;
  768. err_probe_of:
  769. err_runtime_get:
  770. pm_runtime_disable(&pdev->dev);
  771. return r;
  772. }
  773. static void venc_unbind(struct device *dev, struct device *master, void *data)
  774. {
  775. struct platform_device *pdev = to_platform_device(dev);
  776. venc_uninit_output(pdev);
  777. pm_runtime_disable(&pdev->dev);
  778. }
  779. static const struct component_ops venc_component_ops = {
  780. .bind = venc_bind,
  781. .unbind = venc_unbind,
  782. };
  783. static int venc_probe(struct platform_device *pdev)
  784. {
  785. return component_add(&pdev->dev, &venc_component_ops);
  786. }
  787. static int venc_remove(struct platform_device *pdev)
  788. {
  789. component_del(&pdev->dev, &venc_component_ops);
  790. return 0;
  791. }
  792. static int venc_runtime_suspend(struct device *dev)
  793. {
  794. if (venc.tv_dac_clk)
  795. clk_disable_unprepare(venc.tv_dac_clk);
  796. dispc_runtime_put();
  797. return 0;
  798. }
  799. static int venc_runtime_resume(struct device *dev)
  800. {
  801. int r;
  802. r = dispc_runtime_get();
  803. if (r < 0)
  804. return r;
  805. if (venc.tv_dac_clk)
  806. clk_prepare_enable(venc.tv_dac_clk);
  807. return 0;
  808. }
  809. static const struct dev_pm_ops venc_pm_ops = {
  810. .runtime_suspend = venc_runtime_suspend,
  811. .runtime_resume = venc_runtime_resume,
  812. };
  813. static const struct of_device_id venc_of_match[] = {
  814. { .compatible = "ti,omap2-venc", },
  815. { .compatible = "ti,omap3-venc", },
  816. { .compatible = "ti,omap4-venc", },
  817. {},
  818. };
  819. static struct platform_driver omap_venchw_driver = {
  820. .probe = venc_probe,
  821. .remove = venc_remove,
  822. .driver = {
  823. .name = "omapdss_venc",
  824. .pm = &venc_pm_ops,
  825. .of_match_table = venc_of_match,
  826. .suppress_bind_attrs = true,
  827. },
  828. };
  829. int __init venc_init_platform_driver(void)
  830. {
  831. return platform_driver_register(&omap_venchw_driver);
  832. }
  833. void venc_uninit_platform_driver(void)
  834. {
  835. platform_driver_unregister(&omap_venchw_driver);
  836. }