blob: 7df73baf3f9bb7067a4e6276c0235ee3ab750952 [file] [log] [blame]
Rob Clarke7792ce2013-01-08 19:21:02 -06001/*
2 * Copyright (C) 2012 Texas Instruments
3 * Author: Rob Clark <robdclark@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18
19
Russell King893c3e52013-08-27 01:27:42 +010020#include <linux/hdmi.h>
Rob Clarke7792ce2013-01-08 19:21:02 -060021#include <linux/module.h>
Jean-Francois Moinef0b33b22014-01-25 18:14:39 +010022#include <sound/asoundef.h>
Rob Clarke7792ce2013-01-08 19:21:02 -060023
24#include <drm/drmP.h>
25#include <drm/drm_crtc_helper.h>
26#include <drm/drm_encoder_slave.h>
27#include <drm/drm_edid.h>
Russell Kingc4c11dd2013-08-14 21:43:30 +020028#include <drm/i2c/tda998x.h>
Rob Clarke7792ce2013-01-08 19:21:02 -060029
30#define DBG(fmt, ...) DRM_DEBUG(fmt"\n", ##__VA_ARGS__)
31
32struct tda998x_priv {
33 struct i2c_client *cec;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +010034 struct i2c_client *hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -060035 uint16_t rev;
36 uint8_t current_page;
37 int dpms;
Russell Kingc4c11dd2013-08-14 21:43:30 +020038 bool is_hdmi_sink;
Russell King5e74c222013-08-14 21:43:29 +020039 u8 vip_cntrl_0;
40 u8 vip_cntrl_1;
41 u8 vip_cntrl_2;
Russell Kingc4c11dd2013-08-14 21:43:30 +020042 struct tda998x_encoder_params params;
Rob Clarke7792ce2013-01-08 19:21:02 -060043};
44
45#define to_tda998x_priv(x) ((struct tda998x_priv *)to_encoder_slave(x)->slave_priv)
46
47/* The TDA9988 series of devices use a paged register scheme.. to simplify
48 * things we encode the page # in upper bits of the register #. To read/
49 * write a given register, we need to make sure CURPAGE register is set
50 * appropriately. Which implies reads/writes are not atomic. Fun!
51 */
52
53#define REG(page, addr) (((page) << 8) | (addr))
54#define REG2ADDR(reg) ((reg) & 0xff)
55#define REG2PAGE(reg) (((reg) >> 8) & 0xff)
56
57#define REG_CURPAGE 0xff /* write */
58
59
60/* Page 00h: General Control */
61#define REG_VERSION_LSB REG(0x00, 0x00) /* read */
62#define REG_MAIN_CNTRL0 REG(0x00, 0x01) /* read/write */
63# define MAIN_CNTRL0_SR (1 << 0)
64# define MAIN_CNTRL0_DECS (1 << 1)
65# define MAIN_CNTRL0_DEHS (1 << 2)
66# define MAIN_CNTRL0_CECS (1 << 3)
67# define MAIN_CNTRL0_CEHS (1 << 4)
68# define MAIN_CNTRL0_SCALER (1 << 7)
69#define REG_VERSION_MSB REG(0x00, 0x02) /* read */
70#define REG_SOFTRESET REG(0x00, 0x0a) /* write */
71# define SOFTRESET_AUDIO (1 << 0)
72# define SOFTRESET_I2C_MASTER (1 << 1)
73#define REG_DDC_DISABLE REG(0x00, 0x0b) /* read/write */
74#define REG_CCLK_ON REG(0x00, 0x0c) /* read/write */
75#define REG_I2C_MASTER REG(0x00, 0x0d) /* read/write */
76# define I2C_MASTER_DIS_MM (1 << 0)
77# define I2C_MASTER_DIS_FILT (1 << 1)
78# define I2C_MASTER_APP_STRT_LAT (1 << 2)
Russell Kingc4c11dd2013-08-14 21:43:30 +020079#define REG_FEAT_POWERDOWN REG(0x00, 0x0e) /* read/write */
80# define FEAT_POWERDOWN_SPDIF (1 << 3)
Rob Clarke7792ce2013-01-08 19:21:02 -060081#define REG_INT_FLAGS_0 REG(0x00, 0x0f) /* read/write */
82#define REG_INT_FLAGS_1 REG(0x00, 0x10) /* read/write */
83#define REG_INT_FLAGS_2 REG(0x00, 0x11) /* read/write */
84# define INT_FLAGS_2_EDID_BLK_RD (1 << 1)
Russell Kingc4c11dd2013-08-14 21:43:30 +020085#define REG_ENA_ACLK REG(0x00, 0x16) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -060086#define REG_ENA_VP_0 REG(0x00, 0x18) /* read/write */
87#define REG_ENA_VP_1 REG(0x00, 0x19) /* read/write */
88#define REG_ENA_VP_2 REG(0x00, 0x1a) /* read/write */
89#define REG_ENA_AP REG(0x00, 0x1e) /* read/write */
90#define REG_VIP_CNTRL_0 REG(0x00, 0x20) /* write */
91# define VIP_CNTRL_0_MIRR_A (1 << 7)
92# define VIP_CNTRL_0_SWAP_A(x) (((x) & 7) << 4)
93# define VIP_CNTRL_0_MIRR_B (1 << 3)
94# define VIP_CNTRL_0_SWAP_B(x) (((x) & 7) << 0)
95#define REG_VIP_CNTRL_1 REG(0x00, 0x21) /* write */
96# define VIP_CNTRL_1_MIRR_C (1 << 7)
97# define VIP_CNTRL_1_SWAP_C(x) (((x) & 7) << 4)
98# define VIP_CNTRL_1_MIRR_D (1 << 3)
99# define VIP_CNTRL_1_SWAP_D(x) (((x) & 7) << 0)
100#define REG_VIP_CNTRL_2 REG(0x00, 0x22) /* write */
101# define VIP_CNTRL_2_MIRR_E (1 << 7)
102# define VIP_CNTRL_2_SWAP_E(x) (((x) & 7) << 4)
103# define VIP_CNTRL_2_MIRR_F (1 << 3)
104# define VIP_CNTRL_2_SWAP_F(x) (((x) & 7) << 0)
105#define REG_VIP_CNTRL_3 REG(0x00, 0x23) /* write */
106# define VIP_CNTRL_3_X_TGL (1 << 0)
107# define VIP_CNTRL_3_H_TGL (1 << 1)
108# define VIP_CNTRL_3_V_TGL (1 << 2)
109# define VIP_CNTRL_3_EMB (1 << 3)
110# define VIP_CNTRL_3_SYNC_DE (1 << 4)
111# define VIP_CNTRL_3_SYNC_HS (1 << 5)
112# define VIP_CNTRL_3_DE_INT (1 << 6)
113# define VIP_CNTRL_3_EDGE (1 << 7)
114#define REG_VIP_CNTRL_4 REG(0x00, 0x24) /* write */
115# define VIP_CNTRL_4_BLC(x) (((x) & 3) << 0)
116# define VIP_CNTRL_4_BLANKIT(x) (((x) & 3) << 2)
117# define VIP_CNTRL_4_CCIR656 (1 << 4)
118# define VIP_CNTRL_4_656_ALT (1 << 5)
119# define VIP_CNTRL_4_TST_656 (1 << 6)
120# define VIP_CNTRL_4_TST_PAT (1 << 7)
121#define REG_VIP_CNTRL_5 REG(0x00, 0x25) /* write */
122# define VIP_CNTRL_5_CKCASE (1 << 0)
123# define VIP_CNTRL_5_SP_CNT(x) (((x) & 3) << 1)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200124#define REG_MUX_AP REG(0x00, 0x26) /* read/write */
Russell Kingbcb24812013-08-14 21:43:27 +0200125#define REG_MUX_VP_VIP_OUT REG(0x00, 0x27) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600126#define REG_MAT_CONTRL REG(0x00, 0x80) /* write */
127# define MAT_CONTRL_MAT_SC(x) (((x) & 3) << 0)
128# define MAT_CONTRL_MAT_BP (1 << 2)
129#define REG_VIDFORMAT REG(0x00, 0xa0) /* write */
130#define REG_REFPIX_MSB REG(0x00, 0xa1) /* write */
131#define REG_REFPIX_LSB REG(0x00, 0xa2) /* write */
132#define REG_REFLINE_MSB REG(0x00, 0xa3) /* write */
133#define REG_REFLINE_LSB REG(0x00, 0xa4) /* write */
134#define REG_NPIX_MSB REG(0x00, 0xa5) /* write */
135#define REG_NPIX_LSB REG(0x00, 0xa6) /* write */
136#define REG_NLINE_MSB REG(0x00, 0xa7) /* write */
137#define REG_NLINE_LSB REG(0x00, 0xa8) /* write */
138#define REG_VS_LINE_STRT_1_MSB REG(0x00, 0xa9) /* write */
139#define REG_VS_LINE_STRT_1_LSB REG(0x00, 0xaa) /* write */
140#define REG_VS_PIX_STRT_1_MSB REG(0x00, 0xab) /* write */
141#define REG_VS_PIX_STRT_1_LSB REG(0x00, 0xac) /* write */
142#define REG_VS_LINE_END_1_MSB REG(0x00, 0xad) /* write */
143#define REG_VS_LINE_END_1_LSB REG(0x00, 0xae) /* write */
144#define REG_VS_PIX_END_1_MSB REG(0x00, 0xaf) /* write */
145#define REG_VS_PIX_END_1_LSB REG(0x00, 0xb0) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200146#define REG_VS_LINE_STRT_2_MSB REG(0x00, 0xb1) /* write */
147#define REG_VS_LINE_STRT_2_LSB REG(0x00, 0xb2) /* write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600148#define REG_VS_PIX_STRT_2_MSB REG(0x00, 0xb3) /* write */
149#define REG_VS_PIX_STRT_2_LSB REG(0x00, 0xb4) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200150#define REG_VS_LINE_END_2_MSB REG(0x00, 0xb5) /* write */
151#define REG_VS_LINE_END_2_LSB REG(0x00, 0xb6) /* write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600152#define REG_VS_PIX_END_2_MSB REG(0x00, 0xb7) /* write */
153#define REG_VS_PIX_END_2_LSB REG(0x00, 0xb8) /* write */
154#define REG_HS_PIX_START_MSB REG(0x00, 0xb9) /* write */
155#define REG_HS_PIX_START_LSB REG(0x00, 0xba) /* write */
156#define REG_HS_PIX_STOP_MSB REG(0x00, 0xbb) /* write */
157#define REG_HS_PIX_STOP_LSB REG(0x00, 0xbc) /* write */
158#define REG_VWIN_START_1_MSB REG(0x00, 0xbd) /* write */
159#define REG_VWIN_START_1_LSB REG(0x00, 0xbe) /* write */
160#define REG_VWIN_END_1_MSB REG(0x00, 0xbf) /* write */
161#define REG_VWIN_END_1_LSB REG(0x00, 0xc0) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200162#define REG_VWIN_START_2_MSB REG(0x00, 0xc1) /* write */
163#define REG_VWIN_START_2_LSB REG(0x00, 0xc2) /* write */
164#define REG_VWIN_END_2_MSB REG(0x00, 0xc3) /* write */
165#define REG_VWIN_END_2_LSB REG(0x00, 0xc4) /* write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600166#define REG_DE_START_MSB REG(0x00, 0xc5) /* write */
167#define REG_DE_START_LSB REG(0x00, 0xc6) /* write */
168#define REG_DE_STOP_MSB REG(0x00, 0xc7) /* write */
169#define REG_DE_STOP_LSB REG(0x00, 0xc8) /* write */
170#define REG_TBG_CNTRL_0 REG(0x00, 0xca) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200171# define TBG_CNTRL_0_TOP_TGL (1 << 0)
172# define TBG_CNTRL_0_TOP_SEL (1 << 1)
173# define TBG_CNTRL_0_DE_EXT (1 << 2)
174# define TBG_CNTRL_0_TOP_EXT (1 << 3)
Rob Clarke7792ce2013-01-08 19:21:02 -0600175# define TBG_CNTRL_0_FRAME_DIS (1 << 5)
176# define TBG_CNTRL_0_SYNC_MTHD (1 << 6)
177# define TBG_CNTRL_0_SYNC_ONCE (1 << 7)
178#define REG_TBG_CNTRL_1 REG(0x00, 0xcb) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200179# define TBG_CNTRL_1_H_TGL (1 << 0)
180# define TBG_CNTRL_1_V_TGL (1 << 1)
181# define TBG_CNTRL_1_TGL_EN (1 << 2)
182# define TBG_CNTRL_1_X_EXT (1 << 3)
183# define TBG_CNTRL_1_H_EXT (1 << 4)
184# define TBG_CNTRL_1_V_EXT (1 << 5)
Rob Clarke7792ce2013-01-08 19:21:02 -0600185# define TBG_CNTRL_1_DWIN_DIS (1 << 6)
186#define REG_ENABLE_SPACE REG(0x00, 0xd6) /* write */
187#define REG_HVF_CNTRL_0 REG(0x00, 0xe4) /* write */
188# define HVF_CNTRL_0_SM (1 << 7)
189# define HVF_CNTRL_0_RWB (1 << 6)
190# define HVF_CNTRL_0_PREFIL(x) (((x) & 3) << 2)
191# define HVF_CNTRL_0_INTPOL(x) (((x) & 3) << 0)
192#define REG_HVF_CNTRL_1 REG(0x00, 0xe5) /* write */
193# define HVF_CNTRL_1_FOR (1 << 0)
194# define HVF_CNTRL_1_YUVBLK (1 << 1)
195# define HVF_CNTRL_1_VQR(x) (((x) & 3) << 2)
196# define HVF_CNTRL_1_PAD(x) (((x) & 3) << 4)
197# define HVF_CNTRL_1_SEMI_PLANAR (1 << 6)
198#define REG_RPT_CNTRL REG(0x00, 0xf0) /* write */
Russell Kingc4c11dd2013-08-14 21:43:30 +0200199#define REG_I2S_FORMAT REG(0x00, 0xfc) /* read/write */
200# define I2S_FORMAT(x) (((x) & 3) << 0)
201#define REG_AIP_CLKSEL REG(0x00, 0xfd) /* write */
202# define AIP_CLKSEL_FS(x) (((x) & 3) << 0)
203# define AIP_CLKSEL_CLK_POL(x) (((x) & 1) << 2)
204# define AIP_CLKSEL_AIP(x) (((x) & 7) << 3)
Rob Clarke7792ce2013-01-08 19:21:02 -0600205
206
207/* Page 02h: PLL settings */
208#define REG_PLL_SERIAL_1 REG(0x02, 0x00) /* read/write */
209# define PLL_SERIAL_1_SRL_FDN (1 << 0)
210# define PLL_SERIAL_1_SRL_IZ(x) (((x) & 3) << 1)
211# define PLL_SERIAL_1_SRL_MAN_IZ (1 << 6)
212#define REG_PLL_SERIAL_2 REG(0x02, 0x01) /* read/write */
Jean-Francois Moine3ae471f2014-01-25 18:14:36 +0100213# define PLL_SERIAL_2_SRL_NOSC(x) ((x) << 0)
Rob Clarke7792ce2013-01-08 19:21:02 -0600214# define PLL_SERIAL_2_SRL_PR(x) (((x) & 0xf) << 4)
215#define REG_PLL_SERIAL_3 REG(0x02, 0x02) /* read/write */
216# define PLL_SERIAL_3_SRL_CCIR (1 << 0)
217# define PLL_SERIAL_3_SRL_DE (1 << 2)
218# define PLL_SERIAL_3_SRL_PXIN_SEL (1 << 4)
219#define REG_SERIALIZER REG(0x02, 0x03) /* read/write */
220#define REG_BUFFER_OUT REG(0x02, 0x04) /* read/write */
221#define REG_PLL_SCG1 REG(0x02, 0x05) /* read/write */
222#define REG_PLL_SCG2 REG(0x02, 0x06) /* read/write */
223#define REG_PLL_SCGN1 REG(0x02, 0x07) /* read/write */
224#define REG_PLL_SCGN2 REG(0x02, 0x08) /* read/write */
225#define REG_PLL_SCGR1 REG(0x02, 0x09) /* read/write */
226#define REG_PLL_SCGR2 REG(0x02, 0x0a) /* read/write */
227#define REG_AUDIO_DIV REG(0x02, 0x0e) /* read/write */
Russell Kingc4c11dd2013-08-14 21:43:30 +0200228# define AUDIO_DIV_SERCLK_1 0
229# define AUDIO_DIV_SERCLK_2 1
230# define AUDIO_DIV_SERCLK_4 2
231# define AUDIO_DIV_SERCLK_8 3
232# define AUDIO_DIV_SERCLK_16 4
233# define AUDIO_DIV_SERCLK_32 5
Rob Clarke7792ce2013-01-08 19:21:02 -0600234#define REG_SEL_CLK REG(0x02, 0x11) /* read/write */
235# define SEL_CLK_SEL_CLK1 (1 << 0)
236# define SEL_CLK_SEL_VRF_CLK(x) (((x) & 3) << 1)
237# define SEL_CLK_ENA_SC_CLK (1 << 3)
238#define REG_ANA_GENERAL REG(0x02, 0x12) /* read/write */
239
240
241/* Page 09h: EDID Control */
242#define REG_EDID_DATA_0 REG(0x09, 0x00) /* read */
243/* next 127 successive registers are the EDID block */
244#define REG_EDID_CTRL REG(0x09, 0xfa) /* read/write */
245#define REG_DDC_ADDR REG(0x09, 0xfb) /* read/write */
246#define REG_DDC_OFFS REG(0x09, 0xfc) /* read/write */
247#define REG_DDC_SEGM_ADDR REG(0x09, 0xfd) /* read/write */
248#define REG_DDC_SEGM REG(0x09, 0xfe) /* read/write */
249
250
251/* Page 10h: information frames and packets */
Russell Kingc4c11dd2013-08-14 21:43:30 +0200252#define REG_IF1_HB0 REG(0x10, 0x20) /* read/write */
253#define REG_IF2_HB0 REG(0x10, 0x40) /* read/write */
254#define REG_IF3_HB0 REG(0x10, 0x60) /* read/write */
255#define REG_IF4_HB0 REG(0x10, 0x80) /* read/write */
256#define REG_IF5_HB0 REG(0x10, 0xa0) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600257
258
259/* Page 11h: audio settings and content info packets */
260#define REG_AIP_CNTRL_0 REG(0x11, 0x00) /* read/write */
261# define AIP_CNTRL_0_RST_FIFO (1 << 0)
262# define AIP_CNTRL_0_SWAP (1 << 1)
263# define AIP_CNTRL_0_LAYOUT (1 << 2)
264# define AIP_CNTRL_0_ACR_MAN (1 << 5)
265# define AIP_CNTRL_0_RST_CTS (1 << 6)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200266#define REG_CA_I2S REG(0x11, 0x01) /* read/write */
267# define CA_I2S_CA_I2S(x) (((x) & 31) << 0)
268# define CA_I2S_HBR_CHSTAT (1 << 6)
269#define REG_LATENCY_RD REG(0x11, 0x04) /* read/write */
270#define REG_ACR_CTS_0 REG(0x11, 0x05) /* read/write */
271#define REG_ACR_CTS_1 REG(0x11, 0x06) /* read/write */
272#define REG_ACR_CTS_2 REG(0x11, 0x07) /* read/write */
273#define REG_ACR_N_0 REG(0x11, 0x08) /* read/write */
274#define REG_ACR_N_1 REG(0x11, 0x09) /* read/write */
275#define REG_ACR_N_2 REG(0x11, 0x0a) /* read/write */
276#define REG_CTS_N REG(0x11, 0x0c) /* read/write */
277# define CTS_N_K(x) (((x) & 7) << 0)
278# define CTS_N_M(x) (((x) & 3) << 4)
Rob Clarke7792ce2013-01-08 19:21:02 -0600279#define REG_ENC_CNTRL REG(0x11, 0x0d) /* read/write */
280# define ENC_CNTRL_RST_ENC (1 << 0)
281# define ENC_CNTRL_RST_SEL (1 << 1)
282# define ENC_CNTRL_CTL_CODE(x) (((x) & 3) << 2)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200283#define REG_DIP_FLAGS REG(0x11, 0x0e) /* read/write */
284# define DIP_FLAGS_ACR (1 << 0)
285# define DIP_FLAGS_GC (1 << 1)
286#define REG_DIP_IF_FLAGS REG(0x11, 0x0f) /* read/write */
287# define DIP_IF_FLAGS_IF1 (1 << 1)
288# define DIP_IF_FLAGS_IF2 (1 << 2)
289# define DIP_IF_FLAGS_IF3 (1 << 3)
290# define DIP_IF_FLAGS_IF4 (1 << 4)
291# define DIP_IF_FLAGS_IF5 (1 << 5)
292#define REG_CH_STAT_B(x) REG(0x11, 0x14 + (x)) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600293
294
295/* Page 12h: HDCP and OTP */
296#define REG_TX3 REG(0x12, 0x9a) /* read/write */
Russell King063b4722013-08-14 21:43:26 +0200297#define REG_TX4 REG(0x12, 0x9b) /* read/write */
298# define TX4_PD_RAM (1 << 1)
Rob Clarke7792ce2013-01-08 19:21:02 -0600299#define REG_TX33 REG(0x12, 0xb8) /* read/write */
300# define TX33_HDMI (1 << 1)
301
302
303/* Page 13h: Gamut related metadata packets */
304
305
306
307/* CEC registers: (not paged)
308 */
309#define REG_CEC_FRO_IM_CLK_CTRL 0xfb /* read/write */
310# define CEC_FRO_IM_CLK_CTRL_GHOST_DIS (1 << 7)
311# define CEC_FRO_IM_CLK_CTRL_ENA_OTP (1 << 6)
312# define CEC_FRO_IM_CLK_CTRL_IMCLK_SEL (1 << 1)
313# define CEC_FRO_IM_CLK_CTRL_FRO_DIV (1 << 0)
314#define REG_CEC_RXSHPDLEV 0xfe /* read */
315# define CEC_RXSHPDLEV_RXSENS (1 << 0)
316# define CEC_RXSHPDLEV_HPD (1 << 1)
317
318#define REG_CEC_ENAMODS 0xff /* read/write */
319# define CEC_ENAMODS_DIS_FRO (1 << 6)
320# define CEC_ENAMODS_DIS_CCLK (1 << 5)
321# define CEC_ENAMODS_EN_RXSENS (1 << 2)
322# define CEC_ENAMODS_EN_HDMI (1 << 1)
323# define CEC_ENAMODS_EN_CEC (1 << 0)
324
325
326/* Device versions: */
327#define TDA9989N2 0x0101
328#define TDA19989 0x0201
329#define TDA19989N2 0x0202
330#define TDA19988 0x0301
331
332static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100333cec_write(struct tda998x_priv *priv, uint16_t addr, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600334{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100335 struct i2c_client *client = priv->cec;
Rob Clarke7792ce2013-01-08 19:21:02 -0600336 uint8_t buf[] = {addr, val};
337 int ret;
338
339 ret = i2c_master_send(client, buf, ARRAY_SIZE(buf));
340 if (ret < 0)
341 dev_err(&client->dev, "Error %d writing to cec:0x%x\n", ret, addr);
342}
343
344static uint8_t
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100345cec_read(struct tda998x_priv *priv, uint8_t addr)
Rob Clarke7792ce2013-01-08 19:21:02 -0600346{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100347 struct i2c_client *client = priv->cec;
Rob Clarke7792ce2013-01-08 19:21:02 -0600348 uint8_t val;
349 int ret;
350
351 ret = i2c_master_send(client, &addr, sizeof(addr));
352 if (ret < 0)
353 goto fail;
354
355 ret = i2c_master_recv(client, &val, sizeof(val));
356 if (ret < 0)
357 goto fail;
358
359 return val;
360
361fail:
362 dev_err(&client->dev, "Error %d reading from cec:0x%x\n", ret, addr);
363 return 0;
364}
365
366static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100367set_page(struct tda998x_priv *priv, uint16_t reg)
Rob Clarke7792ce2013-01-08 19:21:02 -0600368{
Rob Clarke7792ce2013-01-08 19:21:02 -0600369 if (REG2PAGE(reg) != priv->current_page) {
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100370 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600371 uint8_t buf[] = {
372 REG_CURPAGE, REG2PAGE(reg)
373 };
374 int ret = i2c_master_send(client, buf, sizeof(buf));
375 if (ret < 0)
376 dev_err(&client->dev, "Error %d writing to REG_CURPAGE\n", ret);
377
378 priv->current_page = REG2PAGE(reg);
379 }
380}
381
382static int
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100383reg_read_range(struct tda998x_priv *priv, uint16_t reg, char *buf, int cnt)
Rob Clarke7792ce2013-01-08 19:21:02 -0600384{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100385 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600386 uint8_t addr = REG2ADDR(reg);
387 int ret;
388
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100389 set_page(priv, reg);
Rob Clarke7792ce2013-01-08 19:21:02 -0600390
391 ret = i2c_master_send(client, &addr, sizeof(addr));
392 if (ret < 0)
393 goto fail;
394
395 ret = i2c_master_recv(client, buf, cnt);
396 if (ret < 0)
397 goto fail;
398
399 return ret;
400
401fail:
402 dev_err(&client->dev, "Error %d reading from 0x%x\n", ret, reg);
403 return ret;
404}
405
Russell Kingc4c11dd2013-08-14 21:43:30 +0200406static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100407reg_write_range(struct tda998x_priv *priv, uint16_t reg, uint8_t *p, int cnt)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200408{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100409 struct i2c_client *client = priv->hdmi;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200410 uint8_t buf[cnt+1];
411 int ret;
412
413 buf[0] = REG2ADDR(reg);
414 memcpy(&buf[1], p, cnt);
415
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100416 set_page(priv, reg);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200417
418 ret = i2c_master_send(client, buf, cnt + 1);
419 if (ret < 0)
420 dev_err(&client->dev, "Error %d writing to 0x%x\n", ret, reg);
421}
422
Rob Clarke7792ce2013-01-08 19:21:02 -0600423static uint8_t
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100424reg_read(struct tda998x_priv *priv, uint16_t reg)
Rob Clarke7792ce2013-01-08 19:21:02 -0600425{
426 uint8_t val = 0;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100427 reg_read_range(priv, reg, &val, sizeof(val));
Rob Clarke7792ce2013-01-08 19:21:02 -0600428 return val;
429}
430
431static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100432reg_write(struct tda998x_priv *priv, uint16_t reg, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600433{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100434 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600435 uint8_t buf[] = {REG2ADDR(reg), val};
436 int ret;
437
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100438 set_page(priv, reg);
Rob Clarke7792ce2013-01-08 19:21:02 -0600439
440 ret = i2c_master_send(client, buf, ARRAY_SIZE(buf));
441 if (ret < 0)
442 dev_err(&client->dev, "Error %d writing to 0x%x\n", ret, reg);
443}
444
445static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100446reg_write16(struct tda998x_priv *priv, uint16_t reg, uint16_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600447{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100448 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600449 uint8_t buf[] = {REG2ADDR(reg), val >> 8, val};
450 int ret;
451
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100452 set_page(priv, reg);
Rob Clarke7792ce2013-01-08 19:21:02 -0600453
454 ret = i2c_master_send(client, buf, ARRAY_SIZE(buf));
455 if (ret < 0)
456 dev_err(&client->dev, "Error %d writing to 0x%x\n", ret, reg);
457}
458
459static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100460reg_set(struct tda998x_priv *priv, uint16_t reg, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600461{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100462 reg_write(priv, reg, reg_read(priv, reg) | val);
Rob Clarke7792ce2013-01-08 19:21:02 -0600463}
464
465static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100466reg_clear(struct tda998x_priv *priv, uint16_t reg, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600467{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100468 reg_write(priv, reg, reg_read(priv, reg) & ~val);
Rob Clarke7792ce2013-01-08 19:21:02 -0600469}
470
471static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100472tda998x_reset(struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -0600473{
474 /* reset audio and i2c master: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100475 reg_set(priv, REG_SOFTRESET, SOFTRESET_AUDIO | SOFTRESET_I2C_MASTER);
Rob Clarke7792ce2013-01-08 19:21:02 -0600476 msleep(50);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100477 reg_clear(priv, REG_SOFTRESET, SOFTRESET_AUDIO | SOFTRESET_I2C_MASTER);
Rob Clarke7792ce2013-01-08 19:21:02 -0600478 msleep(50);
479
480 /* reset transmitter: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100481 reg_set(priv, REG_MAIN_CNTRL0, MAIN_CNTRL0_SR);
482 reg_clear(priv, REG_MAIN_CNTRL0, MAIN_CNTRL0_SR);
Rob Clarke7792ce2013-01-08 19:21:02 -0600483
484 /* PLL registers common configuration */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100485 reg_write(priv, REG_PLL_SERIAL_1, 0x00);
486 reg_write(priv, REG_PLL_SERIAL_2, PLL_SERIAL_2_SRL_NOSC(1));
487 reg_write(priv, REG_PLL_SERIAL_3, 0x00);
488 reg_write(priv, REG_SERIALIZER, 0x00);
489 reg_write(priv, REG_BUFFER_OUT, 0x00);
490 reg_write(priv, REG_PLL_SCG1, 0x00);
491 reg_write(priv, REG_AUDIO_DIV, AUDIO_DIV_SERCLK_8);
492 reg_write(priv, REG_SEL_CLK, SEL_CLK_SEL_CLK1 | SEL_CLK_ENA_SC_CLK);
493 reg_write(priv, REG_PLL_SCGN1, 0xfa);
494 reg_write(priv, REG_PLL_SCGN2, 0x00);
495 reg_write(priv, REG_PLL_SCGR1, 0x5b);
496 reg_write(priv, REG_PLL_SCGR2, 0x00);
497 reg_write(priv, REG_PLL_SCG2, 0x10);
Russell Kingbcb24812013-08-14 21:43:27 +0200498
499 /* Write the default value MUX register */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100500 reg_write(priv, REG_MUX_VP_VIP_OUT, 0x24);
Rob Clarke7792ce2013-01-08 19:21:02 -0600501}
502
Russell Kingc4c11dd2013-08-14 21:43:30 +0200503static uint8_t tda998x_cksum(uint8_t *buf, size_t bytes)
504{
505 uint8_t sum = 0;
506
507 while (bytes--)
508 sum += *buf++;
509 return (255 - sum) + 1;
510}
511
512#define HB(x) (x)
513#define PB(x) (HB(2) + 1 + (x))
514
515static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100516tda998x_write_if(struct tda998x_priv *priv, uint8_t bit, uint16_t addr,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200517 uint8_t *buf, size_t size)
518{
519 buf[PB(0)] = tda998x_cksum(buf, size);
520
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100521 reg_clear(priv, REG_DIP_IF_FLAGS, bit);
522 reg_write_range(priv, addr, buf, size);
523 reg_set(priv, REG_DIP_IF_FLAGS, bit);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200524}
525
526static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100527tda998x_write_aif(struct tda998x_priv *priv, struct tda998x_encoder_params *p)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200528{
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100529 u8 buf[PB(HDMI_AUDIO_INFOFRAME_SIZE) + 1];
Russell Kingc4c11dd2013-08-14 21:43:30 +0200530
Jean-Francois Moine7288ca02014-01-25 18:14:44 +0100531 memset(buf, 0, sizeof(buf));
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100532 buf[HB(0)] = HDMI_INFOFRAME_TYPE_AUDIO;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200533 buf[HB(1)] = 0x01;
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100534 buf[HB(2)] = HDMI_AUDIO_INFOFRAME_SIZE;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200535 buf[PB(1)] = p->audio_frame[1] & 0x07; /* CC */
536 buf[PB(2)] = p->audio_frame[2] & 0x1c; /* SF */
537 buf[PB(4)] = p->audio_frame[4];
538 buf[PB(5)] = p->audio_frame[5] & 0xf8; /* DM_INH + LSV */
539
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100540 tda998x_write_if(priv, DIP_IF_FLAGS_IF4, REG_IF4_HB0, buf,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200541 sizeof(buf));
542}
543
544static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100545tda998x_write_avi(struct tda998x_priv *priv, struct drm_display_mode *mode)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200546{
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100547 u8 buf[PB(HDMI_AVI_INFOFRAME_SIZE) + 1];
Russell Kingc4c11dd2013-08-14 21:43:30 +0200548
549 memset(buf, 0, sizeof(buf));
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100550 buf[HB(0)] = HDMI_INFOFRAME_TYPE_AVI;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200551 buf[HB(1)] = 0x02;
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100552 buf[HB(2)] = HDMI_AVI_INFOFRAME_SIZE;
Russell King893c3e52013-08-27 01:27:42 +0100553 buf[PB(1)] = HDMI_SCAN_MODE_UNDERSCAN;
Jean-Francois Moinebdf63452014-01-25 18:14:40 +0100554 buf[PB(2)] = HDMI_ACTIVE_ASPECT_PICTURE;
Russell King893c3e52013-08-27 01:27:42 +0100555 buf[PB(3)] = HDMI_QUANTIZATION_RANGE_FULL << 2;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200556 buf[PB(4)] = drm_match_cea_mode(mode);
557
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100558 tda998x_write_if(priv, DIP_IF_FLAGS_IF2, REG_IF2_HB0, buf,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200559 sizeof(buf));
560}
561
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100562static void tda998x_audio_mute(struct tda998x_priv *priv, bool on)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200563{
564 if (on) {
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100565 reg_set(priv, REG_SOFTRESET, SOFTRESET_AUDIO);
566 reg_clear(priv, REG_SOFTRESET, SOFTRESET_AUDIO);
567 reg_set(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_FIFO);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200568 } else {
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100569 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_FIFO);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200570 }
571}
572
573static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100574tda998x_configure_audio(struct tda998x_priv *priv,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200575 struct drm_display_mode *mode, struct tda998x_encoder_params *p)
576{
577 uint8_t buf[6], clksel_aip, clksel_fs, ca_i2s, cts_n, adiv;
578 uint32_t n;
579
580 /* Enable audio ports */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100581 reg_write(priv, REG_ENA_AP, p->audio_cfg);
582 reg_write(priv, REG_ENA_ACLK, p->audio_clk_cfg);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200583
584 /* Set audio input source */
585 switch (p->audio_format) {
586 case AFMT_SPDIF:
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100587 reg_write(priv, REG_MUX_AP, 0x40);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200588 clksel_aip = AIP_CLKSEL_AIP(0);
589 /* FS64SPDIF */
590 clksel_fs = AIP_CLKSEL_FS(2);
591 cts_n = CTS_N_M(3) | CTS_N_K(3);
592 ca_i2s = 0;
593 break;
594
595 case AFMT_I2S:
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100596 reg_write(priv, REG_MUX_AP, 0x64);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200597 clksel_aip = AIP_CLKSEL_AIP(1);
598 /* ACLK */
599 clksel_fs = AIP_CLKSEL_FS(0);
600 cts_n = CTS_N_M(3) | CTS_N_K(3);
601 ca_i2s = CA_I2S_CA_I2S(0);
602 break;
David Herrmann3b288022013-09-01 15:23:04 +0200603
604 default:
605 BUG();
606 return;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200607 }
608
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100609 reg_write(priv, REG_AIP_CLKSEL, clksel_aip);
610 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_LAYOUT);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200611
612 /* Enable automatic CTS generation */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100613 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_ACR_MAN);
614 reg_write(priv, REG_CTS_N, cts_n);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200615
616 /*
617 * Audio input somehow depends on HDMI line rate which is
618 * related to pixclk. Testing showed that modes with pixclk
619 * >100MHz need a larger divider while <40MHz need the default.
620 * There is no detailed info in the datasheet, so we just
621 * assume 100MHz requires larger divider.
622 */
623 if (mode->clock > 100000)
624 adiv = AUDIO_DIV_SERCLK_16;
625 else
626 adiv = AUDIO_DIV_SERCLK_8;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100627 reg_write(priv, REG_AUDIO_DIV, adiv);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200628
629 /*
630 * This is the approximate value of N, which happens to be
631 * the recommended values for non-coherent clocks.
632 */
633 n = 128 * p->audio_sample_rate / 1000;
634
635 /* Write the CTS and N values */
636 buf[0] = 0x44;
637 buf[1] = 0x42;
638 buf[2] = 0x01;
639 buf[3] = n;
640 buf[4] = n >> 8;
641 buf[5] = n >> 16;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100642 reg_write_range(priv, REG_ACR_CTS_0, buf, 6);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200643
644 /* Set CTS clock reference */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100645 reg_write(priv, REG_AIP_CLKSEL, clksel_aip | clksel_fs);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200646
647 /* Reset CTS generator */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100648 reg_set(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_CTS);
649 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_CTS);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200650
651 /* Write the channel status */
Jean-Francois Moinef0b33b22014-01-25 18:14:39 +0100652 buf[0] = IEC958_AES0_CON_NOT_COPYRIGHT;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200653 buf[1] = 0x00;
Jean-Francois Moinef0b33b22014-01-25 18:14:39 +0100654 buf[2] = IEC958_AES3_CON_FS_NOTID;
655 buf[3] = IEC958_AES4_CON_ORIGFS_NOTID |
656 IEC958_AES4_CON_MAX_WORDLEN_24;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100657 reg_write_range(priv, REG_CH_STAT_B(0), buf, 4);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200658
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100659 tda998x_audio_mute(priv, true);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200660 mdelay(20);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100661 tda998x_audio_mute(priv, false);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200662
663 /* Write the audio information packet */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100664 tda998x_write_aif(priv, p);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200665}
666
Rob Clarke7792ce2013-01-08 19:21:02 -0600667/* DRM encoder functions */
668
669static void
670tda998x_encoder_set_config(struct drm_encoder *encoder, void *params)
671{
Russell Kingc4c11dd2013-08-14 21:43:30 +0200672 struct tda998x_priv *priv = to_tda998x_priv(encoder);
673 struct tda998x_encoder_params *p = params;
674
675 priv->vip_cntrl_0 = VIP_CNTRL_0_SWAP_A(p->swap_a) |
676 (p->mirr_a ? VIP_CNTRL_0_MIRR_A : 0) |
677 VIP_CNTRL_0_SWAP_B(p->swap_b) |
678 (p->mirr_b ? VIP_CNTRL_0_MIRR_B : 0);
679 priv->vip_cntrl_1 = VIP_CNTRL_1_SWAP_C(p->swap_c) |
680 (p->mirr_c ? VIP_CNTRL_1_MIRR_C : 0) |
681 VIP_CNTRL_1_SWAP_D(p->swap_d) |
682 (p->mirr_d ? VIP_CNTRL_1_MIRR_D : 0);
683 priv->vip_cntrl_2 = VIP_CNTRL_2_SWAP_E(p->swap_e) |
684 (p->mirr_e ? VIP_CNTRL_2_MIRR_E : 0) |
685 VIP_CNTRL_2_SWAP_F(p->swap_f) |
686 (p->mirr_f ? VIP_CNTRL_2_MIRR_F : 0);
687
688 priv->params = *p;
Rob Clarke7792ce2013-01-08 19:21:02 -0600689}
690
691static void
692tda998x_encoder_dpms(struct drm_encoder *encoder, int mode)
693{
694 struct tda998x_priv *priv = to_tda998x_priv(encoder);
695
696 /* we only care about on or off: */
697 if (mode != DRM_MODE_DPMS_ON)
698 mode = DRM_MODE_DPMS_OFF;
699
700 if (mode == priv->dpms)
701 return;
702
703 switch (mode) {
704 case DRM_MODE_DPMS_ON:
Russell Kingc4c11dd2013-08-14 21:43:30 +0200705 /* enable video ports, audio will be enabled later */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100706 reg_write(priv, REG_ENA_VP_0, 0xff);
707 reg_write(priv, REG_ENA_VP_1, 0xff);
708 reg_write(priv, REG_ENA_VP_2, 0xff);
Rob Clarke7792ce2013-01-08 19:21:02 -0600709 /* set muxing after enabling ports: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100710 reg_write(priv, REG_VIP_CNTRL_0, priv->vip_cntrl_0);
711 reg_write(priv, REG_VIP_CNTRL_1, priv->vip_cntrl_1);
712 reg_write(priv, REG_VIP_CNTRL_2, priv->vip_cntrl_2);
Rob Clarke7792ce2013-01-08 19:21:02 -0600713 break;
714 case DRM_MODE_DPMS_OFF:
Russell Kingdb6aaf42013-09-24 10:37:13 +0100715 /* disable video ports */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100716 reg_write(priv, REG_ENA_VP_0, 0x00);
717 reg_write(priv, REG_ENA_VP_1, 0x00);
718 reg_write(priv, REG_ENA_VP_2, 0x00);
Rob Clarke7792ce2013-01-08 19:21:02 -0600719 break;
720 }
721
722 priv->dpms = mode;
723}
724
725static void
726tda998x_encoder_save(struct drm_encoder *encoder)
727{
728 DBG("");
729}
730
731static void
732tda998x_encoder_restore(struct drm_encoder *encoder)
733{
734 DBG("");
735}
736
737static bool
738tda998x_encoder_mode_fixup(struct drm_encoder *encoder,
739 const struct drm_display_mode *mode,
740 struct drm_display_mode *adjusted_mode)
741{
742 return true;
743}
744
745static int
746tda998x_encoder_mode_valid(struct drm_encoder *encoder,
747 struct drm_display_mode *mode)
748{
749 return MODE_OK;
750}
751
752static void
753tda998x_encoder_mode_set(struct drm_encoder *encoder,
754 struct drm_display_mode *mode,
755 struct drm_display_mode *adjusted_mode)
756{
757 struct tda998x_priv *priv = to_tda998x_priv(encoder);
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200758 uint16_t ref_pix, ref_line, n_pix, n_line;
759 uint16_t hs_pix_s, hs_pix_e;
760 uint16_t vs1_pix_s, vs1_pix_e, vs1_line_s, vs1_line_e;
761 uint16_t vs2_pix_s, vs2_pix_e, vs2_line_s, vs2_line_e;
762 uint16_t vwin1_line_s, vwin1_line_e;
763 uint16_t vwin2_line_s, vwin2_line_e;
764 uint16_t de_pix_s, de_pix_e;
Rob Clarke7792ce2013-01-08 19:21:02 -0600765 uint8_t reg, div, rep;
766
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200767 /*
768 * Internally TDA998x is using ITU-R BT.656 style sync but
769 * we get VESA style sync. TDA998x is using a reference pixel
770 * relative to ITU to sync to the input frame and for output
771 * sync generation. Currently, we are using reference detection
772 * from HS/VS, i.e. REFPIX/REFLINE denote frame start sync point
773 * which is position of rising VS with coincident rising HS.
774 *
775 * Now there is some issues to take care of:
776 * - HDMI data islands require sync-before-active
777 * - TDA998x register values must be > 0 to be enabled
778 * - REFLINE needs an additional offset of +1
779 * - REFPIX needs an addtional offset of +1 for UYUV and +3 for RGB
780 *
781 * So we add +1 to all horizontal and vertical register values,
782 * plus an additional +3 for REFPIX as we are using RGB input only.
Rob Clarke7792ce2013-01-08 19:21:02 -0600783 */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200784 n_pix = mode->htotal;
785 n_line = mode->vtotal;
Rob Clarke7792ce2013-01-08 19:21:02 -0600786
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200787 hs_pix_e = mode->hsync_end - mode->hdisplay;
788 hs_pix_s = mode->hsync_start - mode->hdisplay;
789 de_pix_e = mode->htotal;
790 de_pix_s = mode->htotal - mode->hdisplay;
791 ref_pix = 3 + hs_pix_s;
792
Sebastian Hesselbarth179f1aa2013-08-14 21:43:32 +0200793 /*
794 * Attached LCD controllers may generate broken sync. Allow
795 * those to adjust the position of the rising VS edge by adding
796 * HSKEW to ref_pix.
797 */
798 if (adjusted_mode->flags & DRM_MODE_FLAG_HSKEW)
799 ref_pix += adjusted_mode->hskew;
800
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200801 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) == 0) {
802 ref_line = 1 + mode->vsync_start - mode->vdisplay;
803 vwin1_line_s = mode->vtotal - mode->vdisplay - 1;
804 vwin1_line_e = vwin1_line_s + mode->vdisplay;
805 vs1_pix_s = vs1_pix_e = hs_pix_s;
806 vs1_line_s = mode->vsync_start - mode->vdisplay;
807 vs1_line_e = vs1_line_s +
808 mode->vsync_end - mode->vsync_start;
809 vwin2_line_s = vwin2_line_e = 0;
810 vs2_pix_s = vs2_pix_e = 0;
811 vs2_line_s = vs2_line_e = 0;
812 } else {
813 ref_line = 1 + (mode->vsync_start - mode->vdisplay)/2;
814 vwin1_line_s = (mode->vtotal - mode->vdisplay)/2;
815 vwin1_line_e = vwin1_line_s + mode->vdisplay/2;
816 vs1_pix_s = vs1_pix_e = hs_pix_s;
817 vs1_line_s = (mode->vsync_start - mode->vdisplay)/2;
818 vs1_line_e = vs1_line_s +
819 (mode->vsync_end - mode->vsync_start)/2;
820 vwin2_line_s = vwin1_line_s + mode->vtotal/2;
821 vwin2_line_e = vwin2_line_s + mode->vdisplay/2;
822 vs2_pix_s = vs2_pix_e = hs_pix_s + mode->htotal/2;
823 vs2_line_s = vs1_line_s + mode->vtotal/2 ;
824 vs2_line_e = vs2_line_s +
825 (mode->vsync_end - mode->vsync_start)/2;
826 }
Rob Clarke7792ce2013-01-08 19:21:02 -0600827
828 div = 148500 / mode->clock;
Jean-Francois Moine3ae471f2014-01-25 18:14:36 +0100829 if (div != 0) {
830 div--;
831 if (div > 3)
832 div = 3;
833 }
Rob Clarke7792ce2013-01-08 19:21:02 -0600834
Rob Clarke7792ce2013-01-08 19:21:02 -0600835 /* mute the audio FIFO: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100836 reg_set(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_FIFO);
Rob Clarke7792ce2013-01-08 19:21:02 -0600837
838 /* set HDMI HDCP mode off: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100839 reg_set(priv, REG_TBG_CNTRL_1, TBG_CNTRL_1_DWIN_DIS);
840 reg_clear(priv, REG_TX33, TX33_HDMI);
841 reg_write(priv, REG_ENC_CNTRL, ENC_CNTRL_CTL_CODE(0));
Rob Clarke7792ce2013-01-08 19:21:02 -0600842
Rob Clarke7792ce2013-01-08 19:21:02 -0600843 /* no pre-filter or interpolator: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100844 reg_write(priv, REG_HVF_CNTRL_0, HVF_CNTRL_0_PREFIL(0) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600845 HVF_CNTRL_0_INTPOL(0));
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100846 reg_write(priv, REG_VIP_CNTRL_5, VIP_CNTRL_5_SP_CNT(0));
847 reg_write(priv, REG_VIP_CNTRL_4, VIP_CNTRL_4_BLANKIT(0) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600848 VIP_CNTRL_4_BLC(0));
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100849 reg_clear(priv, REG_PLL_SERIAL_3, PLL_SERIAL_3_SRL_CCIR);
Rob Clarke7792ce2013-01-08 19:21:02 -0600850
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100851 reg_clear(priv, REG_PLL_SERIAL_1, PLL_SERIAL_1_SRL_MAN_IZ);
852 reg_clear(priv, REG_PLL_SERIAL_3, PLL_SERIAL_3_SRL_DE);
853 reg_write(priv, REG_SERIALIZER, 0);
854 reg_write(priv, REG_HVF_CNTRL_1, HVF_CNTRL_1_VQR(0));
Rob Clarke7792ce2013-01-08 19:21:02 -0600855
856 /* TODO enable pixel repeat for pixel rates less than 25Msamp/s */
857 rep = 0;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100858 reg_write(priv, REG_RPT_CNTRL, 0);
859 reg_write(priv, REG_SEL_CLK, SEL_CLK_SEL_VRF_CLK(0) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600860 SEL_CLK_SEL_CLK1 | SEL_CLK_ENA_SC_CLK);
861
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100862 reg_write(priv, REG_PLL_SERIAL_2, PLL_SERIAL_2_SRL_NOSC(div) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600863 PLL_SERIAL_2_SRL_PR(rep));
864
Rob Clarke7792ce2013-01-08 19:21:02 -0600865 /* set color matrix bypass flag: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100866 reg_set(priv, REG_MAT_CONTRL, MAT_CONTRL_MAT_BP);
Rob Clarke7792ce2013-01-08 19:21:02 -0600867
868 /* set BIAS tmds value: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100869 reg_write(priv, REG_ANA_GENERAL, 0x09);
Rob Clarke7792ce2013-01-08 19:21:02 -0600870
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100871 reg_clear(priv, REG_TBG_CNTRL_0, TBG_CNTRL_0_SYNC_MTHD);
Rob Clarke7792ce2013-01-08 19:21:02 -0600872
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200873 /*
874 * Sync on rising HSYNC/VSYNC
875 */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100876 reg_write(priv, REG_VIP_CNTRL_3, 0);
877 reg_set(priv, REG_VIP_CNTRL_3, VIP_CNTRL_3_SYNC_HS);
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200878
879 /*
880 * TDA19988 requires high-active sync at input stage,
881 * so invert low-active sync provided by master encoder here
882 */
883 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100884 reg_set(priv, REG_VIP_CNTRL_3, VIP_CNTRL_3_H_TGL);
Rob Clarke7792ce2013-01-08 19:21:02 -0600885 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100886 reg_set(priv, REG_VIP_CNTRL_3, VIP_CNTRL_3_V_TGL);
Rob Clarke7792ce2013-01-08 19:21:02 -0600887
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200888 /*
889 * Always generate sync polarity relative to input sync and
890 * revert input stage toggled sync at output stage
891 */
892 reg = TBG_CNTRL_1_TGL_EN;
Rob Clarke7792ce2013-01-08 19:21:02 -0600893 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200894 reg |= TBG_CNTRL_1_H_TGL;
895 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
896 reg |= TBG_CNTRL_1_V_TGL;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100897 reg_write(priv, REG_TBG_CNTRL_1, reg);
Rob Clarke7792ce2013-01-08 19:21:02 -0600898
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100899 reg_write(priv, REG_VIDFORMAT, 0x00);
900 reg_write16(priv, REG_REFPIX_MSB, ref_pix);
901 reg_write16(priv, REG_REFLINE_MSB, ref_line);
902 reg_write16(priv, REG_NPIX_MSB, n_pix);
903 reg_write16(priv, REG_NLINE_MSB, n_line);
904 reg_write16(priv, REG_VS_LINE_STRT_1_MSB, vs1_line_s);
905 reg_write16(priv, REG_VS_PIX_STRT_1_MSB, vs1_pix_s);
906 reg_write16(priv, REG_VS_LINE_END_1_MSB, vs1_line_e);
907 reg_write16(priv, REG_VS_PIX_END_1_MSB, vs1_pix_e);
908 reg_write16(priv, REG_VS_LINE_STRT_2_MSB, vs2_line_s);
909 reg_write16(priv, REG_VS_PIX_STRT_2_MSB, vs2_pix_s);
910 reg_write16(priv, REG_VS_LINE_END_2_MSB, vs2_line_e);
911 reg_write16(priv, REG_VS_PIX_END_2_MSB, vs2_pix_e);
912 reg_write16(priv, REG_HS_PIX_START_MSB, hs_pix_s);
913 reg_write16(priv, REG_HS_PIX_STOP_MSB, hs_pix_e);
914 reg_write16(priv, REG_VWIN_START_1_MSB, vwin1_line_s);
915 reg_write16(priv, REG_VWIN_END_1_MSB, vwin1_line_e);
916 reg_write16(priv, REG_VWIN_START_2_MSB, vwin2_line_s);
917 reg_write16(priv, REG_VWIN_END_2_MSB, vwin2_line_e);
918 reg_write16(priv, REG_DE_START_MSB, de_pix_s);
919 reg_write16(priv, REG_DE_STOP_MSB, de_pix_e);
Rob Clarke7792ce2013-01-08 19:21:02 -0600920
921 if (priv->rev == TDA19988) {
922 /* let incoming pixels fill the active space (if any) */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100923 reg_write(priv, REG_ENABLE_SPACE, 0x00);
Rob Clarke7792ce2013-01-08 19:21:02 -0600924 }
925
Rob Clarke7792ce2013-01-08 19:21:02 -0600926 /* must be last register set: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100927 reg_clear(priv, REG_TBG_CNTRL_0, TBG_CNTRL_0_SYNC_ONCE);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200928
929 /* Only setup the info frames if the sink is HDMI */
930 if (priv->is_hdmi_sink) {
931 /* We need to turn HDMI HDCP stuff on to get audio through */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100932 reg_clear(priv, REG_TBG_CNTRL_1, TBG_CNTRL_1_DWIN_DIS);
933 reg_write(priv, REG_ENC_CNTRL, ENC_CNTRL_CTL_CODE(1));
934 reg_set(priv, REG_TX33, TX33_HDMI);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200935
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100936 tda998x_write_avi(priv, adjusted_mode);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200937
938 if (priv->params.audio_cfg)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100939 tda998x_configure_audio(priv, adjusted_mode,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200940 &priv->params);
941 }
Rob Clarke7792ce2013-01-08 19:21:02 -0600942}
943
944static enum drm_connector_status
945tda998x_encoder_detect(struct drm_encoder *encoder,
946 struct drm_connector *connector)
947{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100948 struct tda998x_priv *priv = to_tda998x_priv(encoder);
949 uint8_t val = cec_read(priv, REG_CEC_RXSHPDLEV);
950
Rob Clarke7792ce2013-01-08 19:21:02 -0600951 return (val & CEC_RXSHPDLEV_HPD) ? connector_status_connected :
952 connector_status_disconnected;
953}
954
955static int
956read_edid_block(struct drm_encoder *encoder, uint8_t *buf, int blk)
957{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100958 struct tda998x_priv *priv = to_tda998x_priv(encoder);
Rob Clarke7792ce2013-01-08 19:21:02 -0600959 uint8_t offset, segptr;
960 int ret, i;
961
962 /* enable EDID read irq: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100963 reg_set(priv, REG_INT_FLAGS_2, INT_FLAGS_2_EDID_BLK_RD);
Rob Clarke7792ce2013-01-08 19:21:02 -0600964
965 offset = (blk & 1) ? 128 : 0;
966 segptr = blk / 2;
967
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100968 reg_write(priv, REG_DDC_ADDR, 0xa0);
969 reg_write(priv, REG_DDC_OFFS, offset);
970 reg_write(priv, REG_DDC_SEGM_ADDR, 0x60);
971 reg_write(priv, REG_DDC_SEGM, segptr);
Rob Clarke7792ce2013-01-08 19:21:02 -0600972
973 /* enable reading EDID: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100974 reg_write(priv, REG_EDID_CTRL, 0x1);
Rob Clarke7792ce2013-01-08 19:21:02 -0600975
976 /* flag must be cleared by sw: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100977 reg_write(priv, REG_EDID_CTRL, 0x0);
Rob Clarke7792ce2013-01-08 19:21:02 -0600978
979 /* wait for block read to complete: */
980 for (i = 100; i > 0; i--) {
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100981 uint8_t val = reg_read(priv, REG_INT_FLAGS_2);
Rob Clarke7792ce2013-01-08 19:21:02 -0600982 if (val & INT_FLAGS_2_EDID_BLK_RD)
983 break;
984 msleep(1);
985 }
986
987 if (i == 0)
988 return -ETIMEDOUT;
989
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100990 ret = reg_read_range(priv, REG_EDID_DATA_0, buf, EDID_LENGTH);
Rob Clarke7792ce2013-01-08 19:21:02 -0600991 if (ret != EDID_LENGTH) {
992 dev_err(encoder->dev->dev, "failed to read edid block %d: %d",
993 blk, ret);
994 return ret;
995 }
996
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100997 reg_clear(priv, REG_INT_FLAGS_2, INT_FLAGS_2_EDID_BLK_RD);
Rob Clarke7792ce2013-01-08 19:21:02 -0600998
999 return 0;
1000}
1001
1002static uint8_t *
1003do_get_edid(struct drm_encoder *encoder)
1004{
Russell King063b4722013-08-14 21:43:26 +02001005 struct tda998x_priv *priv = to_tda998x_priv(encoder);
Rob Clarke7792ce2013-01-08 19:21:02 -06001006 int j = 0, valid_extensions = 0;
1007 uint8_t *block, *new;
1008 bool print_bad_edid = drm_debug & DRM_UT_KMS;
1009
1010 if ((block = kmalloc(EDID_LENGTH, GFP_KERNEL)) == NULL)
1011 return NULL;
1012
Russell King063b4722013-08-14 21:43:26 +02001013 if (priv->rev == TDA19988)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001014 reg_clear(priv, REG_TX4, TX4_PD_RAM);
Russell King063b4722013-08-14 21:43:26 +02001015
Rob Clarke7792ce2013-01-08 19:21:02 -06001016 /* base block fetch */
1017 if (read_edid_block(encoder, block, 0))
1018 goto fail;
1019
1020 if (!drm_edid_block_valid(block, 0, print_bad_edid))
1021 goto fail;
1022
1023 /* if there's no extensions, we're done */
1024 if (block[0x7e] == 0)
Russell King063b4722013-08-14 21:43:26 +02001025 goto done;
Rob Clarke7792ce2013-01-08 19:21:02 -06001026
1027 new = krealloc(block, (block[0x7e] + 1) * EDID_LENGTH, GFP_KERNEL);
1028 if (!new)
1029 goto fail;
1030 block = new;
1031
1032 for (j = 1; j <= block[0x7e]; j++) {
1033 uint8_t *ext_block = block + (valid_extensions + 1) * EDID_LENGTH;
1034 if (read_edid_block(encoder, ext_block, j))
1035 goto fail;
1036
1037 if (!drm_edid_block_valid(ext_block, j, print_bad_edid))
1038 goto fail;
1039
1040 valid_extensions++;
1041 }
1042
1043 if (valid_extensions != block[0x7e]) {
1044 block[EDID_LENGTH-1] += block[0x7e] - valid_extensions;
1045 block[0x7e] = valid_extensions;
1046 new = krealloc(block, (valid_extensions + 1) * EDID_LENGTH, GFP_KERNEL);
1047 if (!new)
1048 goto fail;
1049 block = new;
1050 }
1051
Russell King063b4722013-08-14 21:43:26 +02001052done:
1053 if (priv->rev == TDA19988)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001054 reg_set(priv, REG_TX4, TX4_PD_RAM);
Russell King063b4722013-08-14 21:43:26 +02001055
Rob Clarke7792ce2013-01-08 19:21:02 -06001056 return block;
1057
1058fail:
Russell King063b4722013-08-14 21:43:26 +02001059 if (priv->rev == TDA19988)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001060 reg_set(priv, REG_TX4, TX4_PD_RAM);
Rob Clarke7792ce2013-01-08 19:21:02 -06001061 dev_warn(encoder->dev->dev, "failed to read EDID\n");
1062 kfree(block);
1063 return NULL;
1064}
1065
1066static int
1067tda998x_encoder_get_modes(struct drm_encoder *encoder,
1068 struct drm_connector *connector)
1069{
Russell Kingc4c11dd2013-08-14 21:43:30 +02001070 struct tda998x_priv *priv = to_tda998x_priv(encoder);
Rob Clarke7792ce2013-01-08 19:21:02 -06001071 struct edid *edid = (struct edid *)do_get_edid(encoder);
1072 int n = 0;
1073
1074 if (edid) {
1075 drm_mode_connector_update_edid_property(connector, edid);
1076 n = drm_add_edid_modes(connector, edid);
Russell Kingc4c11dd2013-08-14 21:43:30 +02001077 priv->is_hdmi_sink = drm_detect_hdmi_monitor(edid);
Rob Clarke7792ce2013-01-08 19:21:02 -06001078 kfree(edid);
1079 }
1080
1081 return n;
1082}
1083
1084static int
1085tda998x_encoder_create_resources(struct drm_encoder *encoder,
1086 struct drm_connector *connector)
1087{
1088 DBG("");
1089 return 0;
1090}
1091
1092static int
1093tda998x_encoder_set_property(struct drm_encoder *encoder,
1094 struct drm_connector *connector,
1095 struct drm_property *property,
1096 uint64_t val)
1097{
1098 DBG("");
1099 return 0;
1100}
1101
1102static void
1103tda998x_encoder_destroy(struct drm_encoder *encoder)
1104{
1105 struct tda998x_priv *priv = to_tda998x_priv(encoder);
1106 drm_i2c_encoder_destroy(encoder);
Jean-Francois Moinefc275a72014-01-25 18:14:42 +01001107 if (priv->cec)
1108 i2c_unregister_device(priv->cec);
Rob Clarke7792ce2013-01-08 19:21:02 -06001109 kfree(priv);
1110}
1111
1112static struct drm_encoder_slave_funcs tda998x_encoder_funcs = {
1113 .set_config = tda998x_encoder_set_config,
1114 .destroy = tda998x_encoder_destroy,
1115 .dpms = tda998x_encoder_dpms,
1116 .save = tda998x_encoder_save,
1117 .restore = tda998x_encoder_restore,
1118 .mode_fixup = tda998x_encoder_mode_fixup,
1119 .mode_valid = tda998x_encoder_mode_valid,
1120 .mode_set = tda998x_encoder_mode_set,
1121 .detect = tda998x_encoder_detect,
1122 .get_modes = tda998x_encoder_get_modes,
1123 .create_resources = tda998x_encoder_create_resources,
1124 .set_property = tda998x_encoder_set_property,
1125};
1126
1127/* I2C driver functions */
1128
1129static int
1130tda998x_probe(struct i2c_client *client, const struct i2c_device_id *id)
1131{
1132 return 0;
1133}
1134
1135static int
1136tda998x_remove(struct i2c_client *client)
1137{
1138 return 0;
1139}
1140
1141static int
1142tda998x_encoder_init(struct i2c_client *client,
1143 struct drm_device *dev,
1144 struct drm_encoder_slave *encoder_slave)
1145{
Rob Clarke7792ce2013-01-08 19:21:02 -06001146 struct tda998x_priv *priv;
1147
1148 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1149 if (!priv)
1150 return -ENOMEM;
1151
Russell King5e74c222013-08-14 21:43:29 +02001152 priv->vip_cntrl_0 = VIP_CNTRL_0_SWAP_A(2) | VIP_CNTRL_0_SWAP_B(3);
1153 priv->vip_cntrl_1 = VIP_CNTRL_1_SWAP_C(0) | VIP_CNTRL_1_SWAP_D(1);
1154 priv->vip_cntrl_2 = VIP_CNTRL_2_SWAP_E(4) | VIP_CNTRL_2_SWAP_F(5);
1155
Jean-Francois Moine2eb4c7b2014-01-25 18:14:45 +01001156 priv->current_page = 0xff;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001157 priv->hdmi = client;
Rob Clarke7792ce2013-01-08 19:21:02 -06001158 priv->cec = i2c_new_dummy(client->adapter, 0x34);
Dave Jones71c68c42014-02-12 22:47:51 -05001159 if (!priv->cec) {
1160 kfree(priv);
Jean-Francois Moine6ae668c2014-01-25 18:14:43 +01001161 return -ENODEV;
Dave Jones71c68c42014-02-12 22:47:51 -05001162 }
Rob Clarke7792ce2013-01-08 19:21:02 -06001163 priv->dpms = DRM_MODE_DPMS_OFF;
1164
1165 encoder_slave->slave_priv = priv;
1166 encoder_slave->slave_funcs = &tda998x_encoder_funcs;
1167
1168 /* wake up the device: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001169 cec_write(priv, REG_CEC_ENAMODS,
Rob Clarke7792ce2013-01-08 19:21:02 -06001170 CEC_ENAMODS_EN_RXSENS | CEC_ENAMODS_EN_HDMI);
1171
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001172 tda998x_reset(priv);
Rob Clarke7792ce2013-01-08 19:21:02 -06001173
1174 /* read version: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001175 priv->rev = reg_read(priv, REG_VERSION_LSB) |
1176 reg_read(priv, REG_VERSION_MSB) << 8;
Rob Clarke7792ce2013-01-08 19:21:02 -06001177
1178 /* mask off feature bits: */
1179 priv->rev &= ~0x30; /* not-hdcp and not-scalar bit */
1180
1181 switch (priv->rev) {
1182 case TDA9989N2: dev_info(dev->dev, "found TDA9989 n2"); break;
1183 case TDA19989: dev_info(dev->dev, "found TDA19989"); break;
1184 case TDA19989N2: dev_info(dev->dev, "found TDA19989 n2"); break;
1185 case TDA19988: dev_info(dev->dev, "found TDA19988"); break;
1186 default:
1187 DBG("found unsupported device: %04x", priv->rev);
1188 goto fail;
1189 }
1190
1191 /* after reset, enable DDC: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001192 reg_write(priv, REG_DDC_DISABLE, 0x00);
Rob Clarke7792ce2013-01-08 19:21:02 -06001193
1194 /* set clock on DDC channel: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001195 reg_write(priv, REG_TX3, 39);
Rob Clarke7792ce2013-01-08 19:21:02 -06001196
1197 /* if necessary, disable multi-master: */
1198 if (priv->rev == TDA19989)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001199 reg_set(priv, REG_I2C_MASTER, I2C_MASTER_DIS_MM);
Rob Clarke7792ce2013-01-08 19:21:02 -06001200
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001201 cec_write(priv, REG_CEC_FRO_IM_CLK_CTRL,
Rob Clarke7792ce2013-01-08 19:21:02 -06001202 CEC_FRO_IM_CLK_CTRL_GHOST_DIS | CEC_FRO_IM_CLK_CTRL_IMCLK_SEL);
1203
1204 return 0;
1205
1206fail:
1207 /* if encoder_init fails, the encoder slave is never registered,
1208 * so cleanup here:
1209 */
1210 if (priv->cec)
1211 i2c_unregister_device(priv->cec);
1212 kfree(priv);
1213 encoder_slave->slave_priv = NULL;
1214 encoder_slave->slave_funcs = NULL;
1215 return -ENXIO;
1216}
1217
1218static struct i2c_device_id tda998x_ids[] = {
1219 { "tda998x", 0 },
1220 { }
1221};
1222MODULE_DEVICE_TABLE(i2c, tda998x_ids);
1223
1224static struct drm_i2c_encoder_driver tda998x_driver = {
1225 .i2c_driver = {
1226 .probe = tda998x_probe,
1227 .remove = tda998x_remove,
1228 .driver = {
1229 .name = "tda998x",
1230 },
1231 .id_table = tda998x_ids,
1232 },
1233 .encoder_init = tda998x_encoder_init,
1234};
1235
1236/* Module initialization */
1237
1238static int __init
1239tda998x_init(void)
1240{
1241 DBG("");
1242 return drm_i2c_encoder_register(THIS_MODULE, &tda998x_driver);
1243}
1244
1245static void __exit
1246tda998x_exit(void)
1247{
1248 DBG("");
1249 drm_i2c_encoder_unregister(&tda998x_driver);
1250}
1251
1252MODULE_AUTHOR("Rob Clark <robdclark@gmail.com");
1253MODULE_DESCRIPTION("NXP Semiconductors TDA998X HDMI Encoder");
1254MODULE_LICENSE("GPL");
1255
1256module_init(tda998x_init);
1257module_exit(tda998x_exit);