blob: 98f3c4dd7375033440fa358a5ec151e8ac7b60a4 [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
Russell Kingc707c362014-02-07 19:49:44 +000018#include <linux/component.h>
Russell King893c3e52013-08-27 01:27:42 +010019#include <linux/hdmi.h>
Rob Clarke7792ce2013-01-08 19:21:02 -060020#include <linux/module.h>
Jean-Francois Moine12473b72014-01-25 18:14:38 +010021#include <linux/irq.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;
Jean-Francois Moineed9a8422014-11-29 08:30:51 +010035 struct mutex mutex;
Jean-Francois Moine6833d262014-11-29 08:57:15 +010036 struct delayed_work dwork;
Rob Clarke7792ce2013-01-08 19:21:02 -060037 uint16_t rev;
38 uint8_t current_page;
39 int dpms;
Russell Kingc4c11dd2013-08-14 21:43:30 +020040 bool is_hdmi_sink;
Russell King5e74c222013-08-14 21:43:29 +020041 u8 vip_cntrl_0;
42 u8 vip_cntrl_1;
43 u8 vip_cntrl_2;
Russell Kingc4c11dd2013-08-14 21:43:30 +020044 struct tda998x_encoder_params params;
Jean-Francois Moine12473b72014-01-25 18:14:38 +010045
46 wait_queue_head_t wq_edid;
47 volatile int wq_edid_wait;
48 struct drm_encoder *encoder;
Rob Clarke7792ce2013-01-08 19:21:02 -060049};
50
51#define to_tda998x_priv(x) ((struct tda998x_priv *)to_encoder_slave(x)->slave_priv)
52
53/* The TDA9988 series of devices use a paged register scheme.. to simplify
54 * things we encode the page # in upper bits of the register #. To read/
55 * write a given register, we need to make sure CURPAGE register is set
56 * appropriately. Which implies reads/writes are not atomic. Fun!
57 */
58
59#define REG(page, addr) (((page) << 8) | (addr))
60#define REG2ADDR(reg) ((reg) & 0xff)
61#define REG2PAGE(reg) (((reg) >> 8) & 0xff)
62
63#define REG_CURPAGE 0xff /* write */
64
65
66/* Page 00h: General Control */
67#define REG_VERSION_LSB REG(0x00, 0x00) /* read */
68#define REG_MAIN_CNTRL0 REG(0x00, 0x01) /* read/write */
69# define MAIN_CNTRL0_SR (1 << 0)
70# define MAIN_CNTRL0_DECS (1 << 1)
71# define MAIN_CNTRL0_DEHS (1 << 2)
72# define MAIN_CNTRL0_CECS (1 << 3)
73# define MAIN_CNTRL0_CEHS (1 << 4)
74# define MAIN_CNTRL0_SCALER (1 << 7)
75#define REG_VERSION_MSB REG(0x00, 0x02) /* read */
76#define REG_SOFTRESET REG(0x00, 0x0a) /* write */
77# define SOFTRESET_AUDIO (1 << 0)
78# define SOFTRESET_I2C_MASTER (1 << 1)
79#define REG_DDC_DISABLE REG(0x00, 0x0b) /* read/write */
80#define REG_CCLK_ON REG(0x00, 0x0c) /* read/write */
81#define REG_I2C_MASTER REG(0x00, 0x0d) /* read/write */
82# define I2C_MASTER_DIS_MM (1 << 0)
83# define I2C_MASTER_DIS_FILT (1 << 1)
84# define I2C_MASTER_APP_STRT_LAT (1 << 2)
Russell Kingc4c11dd2013-08-14 21:43:30 +020085#define REG_FEAT_POWERDOWN REG(0x00, 0x0e) /* read/write */
86# define FEAT_POWERDOWN_SPDIF (1 << 3)
Rob Clarke7792ce2013-01-08 19:21:02 -060087#define REG_INT_FLAGS_0 REG(0x00, 0x0f) /* read/write */
88#define REG_INT_FLAGS_1 REG(0x00, 0x10) /* read/write */
89#define REG_INT_FLAGS_2 REG(0x00, 0x11) /* read/write */
90# define INT_FLAGS_2_EDID_BLK_RD (1 << 1)
Russell Kingc4c11dd2013-08-14 21:43:30 +020091#define REG_ENA_ACLK REG(0x00, 0x16) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -060092#define REG_ENA_VP_0 REG(0x00, 0x18) /* read/write */
93#define REG_ENA_VP_1 REG(0x00, 0x19) /* read/write */
94#define REG_ENA_VP_2 REG(0x00, 0x1a) /* read/write */
95#define REG_ENA_AP REG(0x00, 0x1e) /* read/write */
96#define REG_VIP_CNTRL_0 REG(0x00, 0x20) /* write */
97# define VIP_CNTRL_0_MIRR_A (1 << 7)
98# define VIP_CNTRL_0_SWAP_A(x) (((x) & 7) << 4)
99# define VIP_CNTRL_0_MIRR_B (1 << 3)
100# define VIP_CNTRL_0_SWAP_B(x) (((x) & 7) << 0)
101#define REG_VIP_CNTRL_1 REG(0x00, 0x21) /* write */
102# define VIP_CNTRL_1_MIRR_C (1 << 7)
103# define VIP_CNTRL_1_SWAP_C(x) (((x) & 7) << 4)
104# define VIP_CNTRL_1_MIRR_D (1 << 3)
105# define VIP_CNTRL_1_SWAP_D(x) (((x) & 7) << 0)
106#define REG_VIP_CNTRL_2 REG(0x00, 0x22) /* write */
107# define VIP_CNTRL_2_MIRR_E (1 << 7)
108# define VIP_CNTRL_2_SWAP_E(x) (((x) & 7) << 4)
109# define VIP_CNTRL_2_MIRR_F (1 << 3)
110# define VIP_CNTRL_2_SWAP_F(x) (((x) & 7) << 0)
111#define REG_VIP_CNTRL_3 REG(0x00, 0x23) /* write */
112# define VIP_CNTRL_3_X_TGL (1 << 0)
113# define VIP_CNTRL_3_H_TGL (1 << 1)
114# define VIP_CNTRL_3_V_TGL (1 << 2)
115# define VIP_CNTRL_3_EMB (1 << 3)
116# define VIP_CNTRL_3_SYNC_DE (1 << 4)
117# define VIP_CNTRL_3_SYNC_HS (1 << 5)
118# define VIP_CNTRL_3_DE_INT (1 << 6)
119# define VIP_CNTRL_3_EDGE (1 << 7)
120#define REG_VIP_CNTRL_4 REG(0x00, 0x24) /* write */
121# define VIP_CNTRL_4_BLC(x) (((x) & 3) << 0)
122# define VIP_CNTRL_4_BLANKIT(x) (((x) & 3) << 2)
123# define VIP_CNTRL_4_CCIR656 (1 << 4)
124# define VIP_CNTRL_4_656_ALT (1 << 5)
125# define VIP_CNTRL_4_TST_656 (1 << 6)
126# define VIP_CNTRL_4_TST_PAT (1 << 7)
127#define REG_VIP_CNTRL_5 REG(0x00, 0x25) /* write */
128# define VIP_CNTRL_5_CKCASE (1 << 0)
129# define VIP_CNTRL_5_SP_CNT(x) (((x) & 3) << 1)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200130#define REG_MUX_AP REG(0x00, 0x26) /* read/write */
Jean-Francois Moine10df1a92014-01-25 18:14:40 +0100131# define MUX_AP_SELECT_I2S 0x64
132# define MUX_AP_SELECT_SPDIF 0x40
Russell Kingbcb24812013-08-14 21:43:27 +0200133#define REG_MUX_VP_VIP_OUT REG(0x00, 0x27) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600134#define REG_MAT_CONTRL REG(0x00, 0x80) /* write */
135# define MAT_CONTRL_MAT_SC(x) (((x) & 3) << 0)
136# define MAT_CONTRL_MAT_BP (1 << 2)
137#define REG_VIDFORMAT REG(0x00, 0xa0) /* write */
138#define REG_REFPIX_MSB REG(0x00, 0xa1) /* write */
139#define REG_REFPIX_LSB REG(0x00, 0xa2) /* write */
140#define REG_REFLINE_MSB REG(0x00, 0xa3) /* write */
141#define REG_REFLINE_LSB REG(0x00, 0xa4) /* write */
142#define REG_NPIX_MSB REG(0x00, 0xa5) /* write */
143#define REG_NPIX_LSB REG(0x00, 0xa6) /* write */
144#define REG_NLINE_MSB REG(0x00, 0xa7) /* write */
145#define REG_NLINE_LSB REG(0x00, 0xa8) /* write */
146#define REG_VS_LINE_STRT_1_MSB REG(0x00, 0xa9) /* write */
147#define REG_VS_LINE_STRT_1_LSB REG(0x00, 0xaa) /* write */
148#define REG_VS_PIX_STRT_1_MSB REG(0x00, 0xab) /* write */
149#define REG_VS_PIX_STRT_1_LSB REG(0x00, 0xac) /* write */
150#define REG_VS_LINE_END_1_MSB REG(0x00, 0xad) /* write */
151#define REG_VS_LINE_END_1_LSB REG(0x00, 0xae) /* write */
152#define REG_VS_PIX_END_1_MSB REG(0x00, 0xaf) /* write */
153#define REG_VS_PIX_END_1_LSB REG(0x00, 0xb0) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200154#define REG_VS_LINE_STRT_2_MSB REG(0x00, 0xb1) /* write */
155#define REG_VS_LINE_STRT_2_LSB REG(0x00, 0xb2) /* write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600156#define REG_VS_PIX_STRT_2_MSB REG(0x00, 0xb3) /* write */
157#define REG_VS_PIX_STRT_2_LSB REG(0x00, 0xb4) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200158#define REG_VS_LINE_END_2_MSB REG(0x00, 0xb5) /* write */
159#define REG_VS_LINE_END_2_LSB REG(0x00, 0xb6) /* write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600160#define REG_VS_PIX_END_2_MSB REG(0x00, 0xb7) /* write */
161#define REG_VS_PIX_END_2_LSB REG(0x00, 0xb8) /* write */
162#define REG_HS_PIX_START_MSB REG(0x00, 0xb9) /* write */
163#define REG_HS_PIX_START_LSB REG(0x00, 0xba) /* write */
164#define REG_HS_PIX_STOP_MSB REG(0x00, 0xbb) /* write */
165#define REG_HS_PIX_STOP_LSB REG(0x00, 0xbc) /* write */
166#define REG_VWIN_START_1_MSB REG(0x00, 0xbd) /* write */
167#define REG_VWIN_START_1_LSB REG(0x00, 0xbe) /* write */
168#define REG_VWIN_END_1_MSB REG(0x00, 0xbf) /* write */
169#define REG_VWIN_END_1_LSB REG(0x00, 0xc0) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200170#define REG_VWIN_START_2_MSB REG(0x00, 0xc1) /* write */
171#define REG_VWIN_START_2_LSB REG(0x00, 0xc2) /* write */
172#define REG_VWIN_END_2_MSB REG(0x00, 0xc3) /* write */
173#define REG_VWIN_END_2_LSB REG(0x00, 0xc4) /* write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600174#define REG_DE_START_MSB REG(0x00, 0xc5) /* write */
175#define REG_DE_START_LSB REG(0x00, 0xc6) /* write */
176#define REG_DE_STOP_MSB REG(0x00, 0xc7) /* write */
177#define REG_DE_STOP_LSB REG(0x00, 0xc8) /* write */
178#define REG_TBG_CNTRL_0 REG(0x00, 0xca) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200179# define TBG_CNTRL_0_TOP_TGL (1 << 0)
180# define TBG_CNTRL_0_TOP_SEL (1 << 1)
181# define TBG_CNTRL_0_DE_EXT (1 << 2)
182# define TBG_CNTRL_0_TOP_EXT (1 << 3)
Rob Clarke7792ce2013-01-08 19:21:02 -0600183# define TBG_CNTRL_0_FRAME_DIS (1 << 5)
184# define TBG_CNTRL_0_SYNC_MTHD (1 << 6)
185# define TBG_CNTRL_0_SYNC_ONCE (1 << 7)
186#define REG_TBG_CNTRL_1 REG(0x00, 0xcb) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200187# define TBG_CNTRL_1_H_TGL (1 << 0)
188# define TBG_CNTRL_1_V_TGL (1 << 1)
189# define TBG_CNTRL_1_TGL_EN (1 << 2)
190# define TBG_CNTRL_1_X_EXT (1 << 3)
191# define TBG_CNTRL_1_H_EXT (1 << 4)
192# define TBG_CNTRL_1_V_EXT (1 << 5)
Rob Clarke7792ce2013-01-08 19:21:02 -0600193# define TBG_CNTRL_1_DWIN_DIS (1 << 6)
194#define REG_ENABLE_SPACE REG(0x00, 0xd6) /* write */
195#define REG_HVF_CNTRL_0 REG(0x00, 0xe4) /* write */
196# define HVF_CNTRL_0_SM (1 << 7)
197# define HVF_CNTRL_0_RWB (1 << 6)
198# define HVF_CNTRL_0_PREFIL(x) (((x) & 3) << 2)
199# define HVF_CNTRL_0_INTPOL(x) (((x) & 3) << 0)
200#define REG_HVF_CNTRL_1 REG(0x00, 0xe5) /* write */
201# define HVF_CNTRL_1_FOR (1 << 0)
202# define HVF_CNTRL_1_YUVBLK (1 << 1)
203# define HVF_CNTRL_1_VQR(x) (((x) & 3) << 2)
204# define HVF_CNTRL_1_PAD(x) (((x) & 3) << 4)
205# define HVF_CNTRL_1_SEMI_PLANAR (1 << 6)
206#define REG_RPT_CNTRL REG(0x00, 0xf0) /* write */
Russell Kingc4c11dd2013-08-14 21:43:30 +0200207#define REG_I2S_FORMAT REG(0x00, 0xfc) /* read/write */
208# define I2S_FORMAT(x) (((x) & 3) << 0)
209#define REG_AIP_CLKSEL REG(0x00, 0xfd) /* write */
Jean-Francois Moine10df1a92014-01-25 18:14:40 +0100210# define AIP_CLKSEL_AIP_SPDIF (0 << 3)
211# define AIP_CLKSEL_AIP_I2S (1 << 3)
212# define AIP_CLKSEL_FS_ACLK (0 << 0)
213# define AIP_CLKSEL_FS_MCLK (1 << 0)
214# define AIP_CLKSEL_FS_FS64SPDIF (2 << 0)
Rob Clarke7792ce2013-01-08 19:21:02 -0600215
216/* Page 02h: PLL settings */
217#define REG_PLL_SERIAL_1 REG(0x02, 0x00) /* read/write */
218# define PLL_SERIAL_1_SRL_FDN (1 << 0)
219# define PLL_SERIAL_1_SRL_IZ(x) (((x) & 3) << 1)
220# define PLL_SERIAL_1_SRL_MAN_IZ (1 << 6)
221#define REG_PLL_SERIAL_2 REG(0x02, 0x01) /* read/write */
Jean-Francois Moine3ae471f2014-01-25 18:14:36 +0100222# define PLL_SERIAL_2_SRL_NOSC(x) ((x) << 0)
Rob Clarke7792ce2013-01-08 19:21:02 -0600223# define PLL_SERIAL_2_SRL_PR(x) (((x) & 0xf) << 4)
224#define REG_PLL_SERIAL_3 REG(0x02, 0x02) /* read/write */
225# define PLL_SERIAL_3_SRL_CCIR (1 << 0)
226# define PLL_SERIAL_3_SRL_DE (1 << 2)
227# define PLL_SERIAL_3_SRL_PXIN_SEL (1 << 4)
228#define REG_SERIALIZER REG(0x02, 0x03) /* read/write */
229#define REG_BUFFER_OUT REG(0x02, 0x04) /* read/write */
230#define REG_PLL_SCG1 REG(0x02, 0x05) /* read/write */
231#define REG_PLL_SCG2 REG(0x02, 0x06) /* read/write */
232#define REG_PLL_SCGN1 REG(0x02, 0x07) /* read/write */
233#define REG_PLL_SCGN2 REG(0x02, 0x08) /* read/write */
234#define REG_PLL_SCGR1 REG(0x02, 0x09) /* read/write */
235#define REG_PLL_SCGR2 REG(0x02, 0x0a) /* read/write */
236#define REG_AUDIO_DIV REG(0x02, 0x0e) /* read/write */
Russell Kingc4c11dd2013-08-14 21:43:30 +0200237# define AUDIO_DIV_SERCLK_1 0
238# define AUDIO_DIV_SERCLK_2 1
239# define AUDIO_DIV_SERCLK_4 2
240# define AUDIO_DIV_SERCLK_8 3
241# define AUDIO_DIV_SERCLK_16 4
242# define AUDIO_DIV_SERCLK_32 5
Rob Clarke7792ce2013-01-08 19:21:02 -0600243#define REG_SEL_CLK REG(0x02, 0x11) /* read/write */
244# define SEL_CLK_SEL_CLK1 (1 << 0)
245# define SEL_CLK_SEL_VRF_CLK(x) (((x) & 3) << 1)
246# define SEL_CLK_ENA_SC_CLK (1 << 3)
247#define REG_ANA_GENERAL REG(0x02, 0x12) /* read/write */
248
249
250/* Page 09h: EDID Control */
251#define REG_EDID_DATA_0 REG(0x09, 0x00) /* read */
252/* next 127 successive registers are the EDID block */
253#define REG_EDID_CTRL REG(0x09, 0xfa) /* read/write */
254#define REG_DDC_ADDR REG(0x09, 0xfb) /* read/write */
255#define REG_DDC_OFFS REG(0x09, 0xfc) /* read/write */
256#define REG_DDC_SEGM_ADDR REG(0x09, 0xfd) /* read/write */
257#define REG_DDC_SEGM REG(0x09, 0xfe) /* read/write */
258
259
260/* Page 10h: information frames and packets */
Russell Kingc4c11dd2013-08-14 21:43:30 +0200261#define REG_IF1_HB0 REG(0x10, 0x20) /* read/write */
262#define REG_IF2_HB0 REG(0x10, 0x40) /* read/write */
263#define REG_IF3_HB0 REG(0x10, 0x60) /* read/write */
264#define REG_IF4_HB0 REG(0x10, 0x80) /* read/write */
265#define REG_IF5_HB0 REG(0x10, 0xa0) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600266
267
268/* Page 11h: audio settings and content info packets */
269#define REG_AIP_CNTRL_0 REG(0x11, 0x00) /* read/write */
270# define AIP_CNTRL_0_RST_FIFO (1 << 0)
271# define AIP_CNTRL_0_SWAP (1 << 1)
272# define AIP_CNTRL_0_LAYOUT (1 << 2)
273# define AIP_CNTRL_0_ACR_MAN (1 << 5)
274# define AIP_CNTRL_0_RST_CTS (1 << 6)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200275#define REG_CA_I2S REG(0x11, 0x01) /* read/write */
276# define CA_I2S_CA_I2S(x) (((x) & 31) << 0)
277# define CA_I2S_HBR_CHSTAT (1 << 6)
278#define REG_LATENCY_RD REG(0x11, 0x04) /* read/write */
279#define REG_ACR_CTS_0 REG(0x11, 0x05) /* read/write */
280#define REG_ACR_CTS_1 REG(0x11, 0x06) /* read/write */
281#define REG_ACR_CTS_2 REG(0x11, 0x07) /* read/write */
282#define REG_ACR_N_0 REG(0x11, 0x08) /* read/write */
283#define REG_ACR_N_1 REG(0x11, 0x09) /* read/write */
284#define REG_ACR_N_2 REG(0x11, 0x0a) /* read/write */
285#define REG_CTS_N REG(0x11, 0x0c) /* read/write */
286# define CTS_N_K(x) (((x) & 7) << 0)
287# define CTS_N_M(x) (((x) & 3) << 4)
Rob Clarke7792ce2013-01-08 19:21:02 -0600288#define REG_ENC_CNTRL REG(0x11, 0x0d) /* read/write */
289# define ENC_CNTRL_RST_ENC (1 << 0)
290# define ENC_CNTRL_RST_SEL (1 << 1)
291# define ENC_CNTRL_CTL_CODE(x) (((x) & 3) << 2)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200292#define REG_DIP_FLAGS REG(0x11, 0x0e) /* read/write */
293# define DIP_FLAGS_ACR (1 << 0)
294# define DIP_FLAGS_GC (1 << 1)
295#define REG_DIP_IF_FLAGS REG(0x11, 0x0f) /* read/write */
296# define DIP_IF_FLAGS_IF1 (1 << 1)
297# define DIP_IF_FLAGS_IF2 (1 << 2)
298# define DIP_IF_FLAGS_IF3 (1 << 3)
299# define DIP_IF_FLAGS_IF4 (1 << 4)
300# define DIP_IF_FLAGS_IF5 (1 << 5)
301#define REG_CH_STAT_B(x) REG(0x11, 0x14 + (x)) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600302
303
304/* Page 12h: HDCP and OTP */
305#define REG_TX3 REG(0x12, 0x9a) /* read/write */
Russell King063b4722013-08-14 21:43:26 +0200306#define REG_TX4 REG(0x12, 0x9b) /* read/write */
307# define TX4_PD_RAM (1 << 1)
Rob Clarke7792ce2013-01-08 19:21:02 -0600308#define REG_TX33 REG(0x12, 0xb8) /* read/write */
309# define TX33_HDMI (1 << 1)
310
311
312/* Page 13h: Gamut related metadata packets */
313
314
315
316/* CEC registers: (not paged)
317 */
Jean-Francois Moine12473b72014-01-25 18:14:38 +0100318#define REG_CEC_INTSTATUS 0xee /* read */
319# define CEC_INTSTATUS_CEC (1 << 0)
320# define CEC_INTSTATUS_HDMI (1 << 1)
Rob Clarke7792ce2013-01-08 19:21:02 -0600321#define REG_CEC_FRO_IM_CLK_CTRL 0xfb /* read/write */
322# define CEC_FRO_IM_CLK_CTRL_GHOST_DIS (1 << 7)
323# define CEC_FRO_IM_CLK_CTRL_ENA_OTP (1 << 6)
324# define CEC_FRO_IM_CLK_CTRL_IMCLK_SEL (1 << 1)
325# define CEC_FRO_IM_CLK_CTRL_FRO_DIV (1 << 0)
Jean-Francois Moine12473b72014-01-25 18:14:38 +0100326#define REG_CEC_RXSHPDINTENA 0xfc /* read/write */
327#define REG_CEC_RXSHPDINT 0xfd /* read */
Rob Clarke7792ce2013-01-08 19:21:02 -0600328#define REG_CEC_RXSHPDLEV 0xfe /* read */
329# define CEC_RXSHPDLEV_RXSENS (1 << 0)
330# define CEC_RXSHPDLEV_HPD (1 << 1)
331
332#define REG_CEC_ENAMODS 0xff /* read/write */
333# define CEC_ENAMODS_DIS_FRO (1 << 6)
334# define CEC_ENAMODS_DIS_CCLK (1 << 5)
335# define CEC_ENAMODS_EN_RXSENS (1 << 2)
336# define CEC_ENAMODS_EN_HDMI (1 << 1)
337# define CEC_ENAMODS_EN_CEC (1 << 0)
338
339
340/* Device versions: */
341#define TDA9989N2 0x0101
342#define TDA19989 0x0201
343#define TDA19989N2 0x0202
344#define TDA19988 0x0301
345
346static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100347cec_write(struct tda998x_priv *priv, uint16_t addr, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600348{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100349 struct i2c_client *client = priv->cec;
Rob Clarke7792ce2013-01-08 19:21:02 -0600350 uint8_t buf[] = {addr, val};
351 int ret;
352
Jean-Francois Moine704d63f2014-01-25 18:14:46 +0100353 ret = i2c_master_send(client, buf, sizeof(buf));
Rob Clarke7792ce2013-01-08 19:21:02 -0600354 if (ret < 0)
355 dev_err(&client->dev, "Error %d writing to cec:0x%x\n", ret, addr);
356}
357
358static uint8_t
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100359cec_read(struct tda998x_priv *priv, uint8_t addr)
Rob Clarke7792ce2013-01-08 19:21:02 -0600360{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100361 struct i2c_client *client = priv->cec;
Rob Clarke7792ce2013-01-08 19:21:02 -0600362 uint8_t val;
363 int ret;
364
365 ret = i2c_master_send(client, &addr, sizeof(addr));
366 if (ret < 0)
367 goto fail;
368
369 ret = i2c_master_recv(client, &val, sizeof(val));
370 if (ret < 0)
371 goto fail;
372
373 return val;
374
375fail:
376 dev_err(&client->dev, "Error %d reading from cec:0x%x\n", ret, addr);
377 return 0;
378}
379
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100380static int
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100381set_page(struct tda998x_priv *priv, uint16_t reg)
Rob Clarke7792ce2013-01-08 19:21:02 -0600382{
Rob Clarke7792ce2013-01-08 19:21:02 -0600383 if (REG2PAGE(reg) != priv->current_page) {
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100384 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600385 uint8_t buf[] = {
386 REG_CURPAGE, REG2PAGE(reg)
387 };
388 int ret = i2c_master_send(client, buf, sizeof(buf));
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100389 if (ret < 0) {
Jean-Francois Moine704d63f2014-01-25 18:14:46 +0100390 dev_err(&client->dev, "setpage %04x err %d\n",
391 reg, ret);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100392 return ret;
393 }
Rob Clarke7792ce2013-01-08 19:21:02 -0600394
395 priv->current_page = REG2PAGE(reg);
396 }
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100397 return 0;
Rob Clarke7792ce2013-01-08 19:21:02 -0600398}
399
400static int
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100401reg_read_range(struct tda998x_priv *priv, uint16_t reg, char *buf, int cnt)
Rob Clarke7792ce2013-01-08 19:21:02 -0600402{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100403 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600404 uint8_t addr = REG2ADDR(reg);
405 int ret;
406
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100407 mutex_lock(&priv->mutex);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100408 ret = set_page(priv, reg);
409 if (ret < 0)
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100410 goto out;
Rob Clarke7792ce2013-01-08 19:21:02 -0600411
412 ret = i2c_master_send(client, &addr, sizeof(addr));
413 if (ret < 0)
414 goto fail;
415
416 ret = i2c_master_recv(client, buf, cnt);
417 if (ret < 0)
418 goto fail;
419
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100420 goto out;
Rob Clarke7792ce2013-01-08 19:21:02 -0600421
422fail:
423 dev_err(&client->dev, "Error %d reading from 0x%x\n", ret, reg);
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100424out:
425 mutex_unlock(&priv->mutex);
Rob Clarke7792ce2013-01-08 19:21:02 -0600426 return ret;
427}
428
Russell Kingc4c11dd2013-08-14 21:43:30 +0200429static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100430reg_write_range(struct tda998x_priv *priv, uint16_t reg, uint8_t *p, int cnt)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200431{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100432 struct i2c_client *client = priv->hdmi;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200433 uint8_t buf[cnt+1];
434 int ret;
435
436 buf[0] = REG2ADDR(reg);
437 memcpy(&buf[1], p, cnt);
438
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100439 mutex_lock(&priv->mutex);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100440 ret = set_page(priv, reg);
441 if (ret < 0)
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100442 goto out;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200443
444 ret = i2c_master_send(client, buf, cnt + 1);
445 if (ret < 0)
446 dev_err(&client->dev, "Error %d writing to 0x%x\n", ret, reg);
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100447out:
448 mutex_unlock(&priv->mutex);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200449}
450
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100451static int
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100452reg_read(struct tda998x_priv *priv, uint16_t reg)
Rob Clarke7792ce2013-01-08 19:21:02 -0600453{
454 uint8_t val = 0;
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100455 int ret;
456
457 ret = reg_read_range(priv, reg, &val, sizeof(val));
458 if (ret < 0)
459 return ret;
Rob Clarke7792ce2013-01-08 19:21:02 -0600460 return val;
461}
462
463static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100464reg_write(struct tda998x_priv *priv, uint16_t reg, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600465{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100466 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600467 uint8_t buf[] = {REG2ADDR(reg), val};
468 int ret;
469
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100470 mutex_lock(&priv->mutex);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100471 ret = set_page(priv, reg);
472 if (ret < 0)
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100473 goto out;
Rob Clarke7792ce2013-01-08 19:21:02 -0600474
Jean-Francois Moine704d63f2014-01-25 18:14:46 +0100475 ret = i2c_master_send(client, buf, sizeof(buf));
Rob Clarke7792ce2013-01-08 19:21:02 -0600476 if (ret < 0)
477 dev_err(&client->dev, "Error %d writing to 0x%x\n", ret, reg);
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100478out:
479 mutex_unlock(&priv->mutex);
Rob Clarke7792ce2013-01-08 19:21:02 -0600480}
481
482static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100483reg_write16(struct tda998x_priv *priv, uint16_t reg, uint16_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600484{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100485 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600486 uint8_t buf[] = {REG2ADDR(reg), val >> 8, val};
487 int ret;
488
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100489 mutex_lock(&priv->mutex);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100490 ret = set_page(priv, reg);
491 if (ret < 0)
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100492 goto out;
Rob Clarke7792ce2013-01-08 19:21:02 -0600493
Jean-Francois Moine704d63f2014-01-25 18:14:46 +0100494 ret = i2c_master_send(client, buf, sizeof(buf));
Rob Clarke7792ce2013-01-08 19:21:02 -0600495 if (ret < 0)
496 dev_err(&client->dev, "Error %d writing to 0x%x\n", ret, reg);
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100497out:
498 mutex_unlock(&priv->mutex);
Rob Clarke7792ce2013-01-08 19:21:02 -0600499}
500
501static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100502reg_set(struct tda998x_priv *priv, uint16_t reg, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600503{
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100504 int old_val;
505
506 old_val = reg_read(priv, reg);
507 if (old_val >= 0)
508 reg_write(priv, reg, old_val | val);
Rob Clarke7792ce2013-01-08 19:21:02 -0600509}
510
511static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100512reg_clear(struct tda998x_priv *priv, uint16_t reg, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600513{
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100514 int old_val;
515
516 old_val = reg_read(priv, reg);
517 if (old_val >= 0)
518 reg_write(priv, reg, old_val & ~val);
Rob Clarke7792ce2013-01-08 19:21:02 -0600519}
520
521static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100522tda998x_reset(struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -0600523{
524 /* reset audio and i2c master: */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100525 reg_write(priv, REG_SOFTRESET, SOFTRESET_AUDIO | SOFTRESET_I2C_MASTER);
Rob Clarke7792ce2013-01-08 19:21:02 -0600526 msleep(50);
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100527 reg_write(priv, REG_SOFTRESET, 0);
Rob Clarke7792ce2013-01-08 19:21:02 -0600528 msleep(50);
529
530 /* reset transmitter: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100531 reg_set(priv, REG_MAIN_CNTRL0, MAIN_CNTRL0_SR);
532 reg_clear(priv, REG_MAIN_CNTRL0, MAIN_CNTRL0_SR);
Rob Clarke7792ce2013-01-08 19:21:02 -0600533
534 /* PLL registers common configuration */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100535 reg_write(priv, REG_PLL_SERIAL_1, 0x00);
536 reg_write(priv, REG_PLL_SERIAL_2, PLL_SERIAL_2_SRL_NOSC(1));
537 reg_write(priv, REG_PLL_SERIAL_3, 0x00);
538 reg_write(priv, REG_SERIALIZER, 0x00);
539 reg_write(priv, REG_BUFFER_OUT, 0x00);
540 reg_write(priv, REG_PLL_SCG1, 0x00);
541 reg_write(priv, REG_AUDIO_DIV, AUDIO_DIV_SERCLK_8);
542 reg_write(priv, REG_SEL_CLK, SEL_CLK_SEL_CLK1 | SEL_CLK_ENA_SC_CLK);
543 reg_write(priv, REG_PLL_SCGN1, 0xfa);
544 reg_write(priv, REG_PLL_SCGN2, 0x00);
545 reg_write(priv, REG_PLL_SCGR1, 0x5b);
546 reg_write(priv, REG_PLL_SCGR2, 0x00);
547 reg_write(priv, REG_PLL_SCG2, 0x10);
Russell Kingbcb24812013-08-14 21:43:27 +0200548
549 /* Write the default value MUX register */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100550 reg_write(priv, REG_MUX_VP_VIP_OUT, 0x24);
Rob Clarke7792ce2013-01-08 19:21:02 -0600551}
552
Jean-Francois Moine6833d262014-11-29 08:57:15 +0100553/* handle HDMI connect/disconnect */
554static void tda998x_hpd(struct work_struct *work)
555{
556 struct delayed_work *dwork = to_delayed_work(work);
557 struct tda998x_priv *priv =
558 container_of(dwork, struct tda998x_priv, dwork);
559
560 if (priv->encoder && priv->encoder->dev)
561 drm_kms_helper_hotplug_event(priv->encoder->dev);
562}
563
Jean-Francois Moine12473b72014-01-25 18:14:38 +0100564/*
565 * only 2 interrupts may occur: screen plug/unplug and EDID read
566 */
567static irqreturn_t tda998x_irq_thread(int irq, void *data)
568{
569 struct tda998x_priv *priv = data;
570 u8 sta, cec, lvl, flag0, flag1, flag2;
571
572 if (!priv)
573 return IRQ_HANDLED;
574 sta = cec_read(priv, REG_CEC_INTSTATUS);
575 cec = cec_read(priv, REG_CEC_RXSHPDINT);
576 lvl = cec_read(priv, REG_CEC_RXSHPDLEV);
577 flag0 = reg_read(priv, REG_INT_FLAGS_0);
578 flag1 = reg_read(priv, REG_INT_FLAGS_1);
579 flag2 = reg_read(priv, REG_INT_FLAGS_2);
580 DRM_DEBUG_DRIVER(
581 "tda irq sta %02x cec %02x lvl %02x f0 %02x f1 %02x f2 %02x\n",
582 sta, cec, lvl, flag0, flag1, flag2);
583 if ((flag2 & INT_FLAGS_2_EDID_BLK_RD) && priv->wq_edid_wait) {
584 priv->wq_edid_wait = 0;
585 wake_up(&priv->wq_edid);
586 } else if (cec != 0) { /* HPD change */
Jean-Francois Moine6833d262014-11-29 08:57:15 +0100587 schedule_delayed_work(&priv->dwork, HZ/10);
Jean-Francois Moine12473b72014-01-25 18:14:38 +0100588 }
589 return IRQ_HANDLED;
590}
591
Russell Kingc4c11dd2013-08-14 21:43:30 +0200592static uint8_t tda998x_cksum(uint8_t *buf, size_t bytes)
593{
Daniel Vetter8268bd42014-04-05 18:24:29 +0200594 int sum = 0;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200595
596 while (bytes--)
Daniel Vetter8268bd42014-04-05 18:24:29 +0200597 sum -= *buf++;
598 return sum;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200599}
600
601#define HB(x) (x)
602#define PB(x) (HB(2) + 1 + (x))
603
604static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100605tda998x_write_if(struct tda998x_priv *priv, uint8_t bit, uint16_t addr,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200606 uint8_t *buf, size_t size)
607{
608 buf[PB(0)] = tda998x_cksum(buf, size);
609
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100610 reg_clear(priv, REG_DIP_IF_FLAGS, bit);
611 reg_write_range(priv, addr, buf, size);
612 reg_set(priv, REG_DIP_IF_FLAGS, bit);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200613}
614
615static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100616tda998x_write_aif(struct tda998x_priv *priv, struct tda998x_encoder_params *p)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200617{
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100618 u8 buf[PB(HDMI_AUDIO_INFOFRAME_SIZE) + 1];
Russell Kingc4c11dd2013-08-14 21:43:30 +0200619
Jean-Francois Moine7288ca02014-01-25 18:14:44 +0100620 memset(buf, 0, sizeof(buf));
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100621 buf[HB(0)] = HDMI_INFOFRAME_TYPE_AUDIO;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200622 buf[HB(1)] = 0x01;
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100623 buf[HB(2)] = HDMI_AUDIO_INFOFRAME_SIZE;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200624 buf[PB(1)] = p->audio_frame[1] & 0x07; /* CC */
625 buf[PB(2)] = p->audio_frame[2] & 0x1c; /* SF */
626 buf[PB(4)] = p->audio_frame[4];
627 buf[PB(5)] = p->audio_frame[5] & 0xf8; /* DM_INH + LSV */
628
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100629 tda998x_write_if(priv, DIP_IF_FLAGS_IF4, REG_IF4_HB0, buf,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200630 sizeof(buf));
631}
632
633static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100634tda998x_write_avi(struct tda998x_priv *priv, struct drm_display_mode *mode)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200635{
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100636 u8 buf[PB(HDMI_AVI_INFOFRAME_SIZE) + 1];
Russell Kingc4c11dd2013-08-14 21:43:30 +0200637
638 memset(buf, 0, sizeof(buf));
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100639 buf[HB(0)] = HDMI_INFOFRAME_TYPE_AVI;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200640 buf[HB(1)] = 0x02;
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100641 buf[HB(2)] = HDMI_AVI_INFOFRAME_SIZE;
Russell King893c3e52013-08-27 01:27:42 +0100642 buf[PB(1)] = HDMI_SCAN_MODE_UNDERSCAN;
Jean-Francois Moinebdf63452014-01-25 18:14:40 +0100643 buf[PB(2)] = HDMI_ACTIVE_ASPECT_PICTURE;
Russell King893c3e52013-08-27 01:27:42 +0100644 buf[PB(3)] = HDMI_QUANTIZATION_RANGE_FULL << 2;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200645 buf[PB(4)] = drm_match_cea_mode(mode);
646
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100647 tda998x_write_if(priv, DIP_IF_FLAGS_IF2, REG_IF2_HB0, buf,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200648 sizeof(buf));
649}
650
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100651static void tda998x_audio_mute(struct tda998x_priv *priv, bool on)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200652{
653 if (on) {
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100654 reg_set(priv, REG_SOFTRESET, SOFTRESET_AUDIO);
655 reg_clear(priv, REG_SOFTRESET, SOFTRESET_AUDIO);
656 reg_set(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_FIFO);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200657 } else {
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100658 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_FIFO);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200659 }
660}
661
662static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100663tda998x_configure_audio(struct tda998x_priv *priv,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200664 struct drm_display_mode *mode, struct tda998x_encoder_params *p)
665{
Jean-Francois Moine85c988b2014-01-25 18:14:40 +0100666 uint8_t buf[6], clksel_aip, clksel_fs, cts_n, adiv;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200667 uint32_t n;
668
669 /* Enable audio ports */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100670 reg_write(priv, REG_ENA_AP, p->audio_cfg);
671 reg_write(priv, REG_ENA_ACLK, p->audio_clk_cfg);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200672
673 /* Set audio input source */
674 switch (p->audio_format) {
675 case AFMT_SPDIF:
Jean-Francois Moine10df1a92014-01-25 18:14:40 +0100676 reg_write(priv, REG_MUX_AP, MUX_AP_SELECT_SPDIF);
677 clksel_aip = AIP_CLKSEL_AIP_SPDIF;
678 clksel_fs = AIP_CLKSEL_FS_FS64SPDIF;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200679 cts_n = CTS_N_M(3) | CTS_N_K(3);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200680 break;
681
682 case AFMT_I2S:
Jean-Francois Moine10df1a92014-01-25 18:14:40 +0100683 reg_write(priv, REG_MUX_AP, MUX_AP_SELECT_I2S);
684 clksel_aip = AIP_CLKSEL_AIP_I2S;
685 clksel_fs = AIP_CLKSEL_FS_ACLK;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200686 cts_n = CTS_N_M(3) | CTS_N_K(3);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200687 break;
David Herrmann3b288022013-09-01 15:23:04 +0200688
689 default:
690 BUG();
691 return;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200692 }
693
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100694 reg_write(priv, REG_AIP_CLKSEL, clksel_aip);
Jean-Francois Moinea8b517e2014-01-25 18:14:39 +0100695 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_LAYOUT |
696 AIP_CNTRL_0_ACR_MAN); /* auto CTS */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100697 reg_write(priv, REG_CTS_N, cts_n);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200698
699 /*
700 * Audio input somehow depends on HDMI line rate which is
701 * related to pixclk. Testing showed that modes with pixclk
702 * >100MHz need a larger divider while <40MHz need the default.
703 * There is no detailed info in the datasheet, so we just
704 * assume 100MHz requires larger divider.
705 */
Jean-Francois Moine2470fec2014-01-25 18:14:36 +0100706 adiv = AUDIO_DIV_SERCLK_8;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200707 if (mode->clock > 100000)
Jean-Francois Moine2470fec2014-01-25 18:14:36 +0100708 adiv++; /* AUDIO_DIV_SERCLK_16 */
709
710 /* S/PDIF asks for a larger divider */
711 if (p->audio_format == AFMT_SPDIF)
712 adiv++; /* AUDIO_DIV_SERCLK_16 or _32 */
713
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100714 reg_write(priv, REG_AUDIO_DIV, adiv);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200715
716 /*
717 * This is the approximate value of N, which happens to be
718 * the recommended values for non-coherent clocks.
719 */
720 n = 128 * p->audio_sample_rate / 1000;
721
722 /* Write the CTS and N values */
723 buf[0] = 0x44;
724 buf[1] = 0x42;
725 buf[2] = 0x01;
726 buf[3] = n;
727 buf[4] = n >> 8;
728 buf[5] = n >> 16;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100729 reg_write_range(priv, REG_ACR_CTS_0, buf, 6);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200730
731 /* Set CTS clock reference */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100732 reg_write(priv, REG_AIP_CLKSEL, clksel_aip | clksel_fs);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200733
734 /* Reset CTS generator */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100735 reg_set(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_CTS);
736 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_CTS);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200737
738 /* Write the channel status */
Jean-Francois Moinef0b33b22014-01-25 18:14:39 +0100739 buf[0] = IEC958_AES0_CON_NOT_COPYRIGHT;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200740 buf[1] = 0x00;
Jean-Francois Moinef0b33b22014-01-25 18:14:39 +0100741 buf[2] = IEC958_AES3_CON_FS_NOTID;
742 buf[3] = IEC958_AES4_CON_ORIGFS_NOTID |
743 IEC958_AES4_CON_MAX_WORDLEN_24;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100744 reg_write_range(priv, REG_CH_STAT_B(0), buf, 4);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200745
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100746 tda998x_audio_mute(priv, true);
Jean-Francois Moine73d5e252014-01-25 18:14:44 +0100747 msleep(20);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100748 tda998x_audio_mute(priv, false);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200749
750 /* Write the audio information packet */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100751 tda998x_write_aif(priv, p);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200752}
753
Rob Clarke7792ce2013-01-08 19:21:02 -0600754/* DRM encoder functions */
755
Russell Kinga8f4d4d62014-02-07 19:17:21 +0000756static void tda998x_encoder_set_config(struct tda998x_priv *priv,
757 const struct tda998x_encoder_params *p)
Rob Clarke7792ce2013-01-08 19:21:02 -0600758{
Russell Kingc4c11dd2013-08-14 21:43:30 +0200759 priv->vip_cntrl_0 = VIP_CNTRL_0_SWAP_A(p->swap_a) |
760 (p->mirr_a ? VIP_CNTRL_0_MIRR_A : 0) |
761 VIP_CNTRL_0_SWAP_B(p->swap_b) |
762 (p->mirr_b ? VIP_CNTRL_0_MIRR_B : 0);
763 priv->vip_cntrl_1 = VIP_CNTRL_1_SWAP_C(p->swap_c) |
764 (p->mirr_c ? VIP_CNTRL_1_MIRR_C : 0) |
765 VIP_CNTRL_1_SWAP_D(p->swap_d) |
766 (p->mirr_d ? VIP_CNTRL_1_MIRR_D : 0);
767 priv->vip_cntrl_2 = VIP_CNTRL_2_SWAP_E(p->swap_e) |
768 (p->mirr_e ? VIP_CNTRL_2_MIRR_E : 0) |
769 VIP_CNTRL_2_SWAP_F(p->swap_f) |
770 (p->mirr_f ? VIP_CNTRL_2_MIRR_F : 0);
771
772 priv->params = *p;
Rob Clarke7792ce2013-01-08 19:21:02 -0600773}
774
Russell Kinga8f4d4d62014-02-07 19:17:21 +0000775static void tda998x_encoder_dpms(struct tda998x_priv *priv, int mode)
Rob Clarke7792ce2013-01-08 19:21:02 -0600776{
Rob Clarke7792ce2013-01-08 19:21:02 -0600777 /* we only care about on or off: */
778 if (mode != DRM_MODE_DPMS_ON)
779 mode = DRM_MODE_DPMS_OFF;
780
781 if (mode == priv->dpms)
782 return;
783
784 switch (mode) {
785 case DRM_MODE_DPMS_ON:
Russell Kingc4c11dd2013-08-14 21:43:30 +0200786 /* enable video ports, audio will be enabled later */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100787 reg_write(priv, REG_ENA_VP_0, 0xff);
788 reg_write(priv, REG_ENA_VP_1, 0xff);
789 reg_write(priv, REG_ENA_VP_2, 0xff);
Rob Clarke7792ce2013-01-08 19:21:02 -0600790 /* set muxing after enabling ports: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100791 reg_write(priv, REG_VIP_CNTRL_0, priv->vip_cntrl_0);
792 reg_write(priv, REG_VIP_CNTRL_1, priv->vip_cntrl_1);
793 reg_write(priv, REG_VIP_CNTRL_2, priv->vip_cntrl_2);
Rob Clarke7792ce2013-01-08 19:21:02 -0600794 break;
795 case DRM_MODE_DPMS_OFF:
Russell Kingdb6aaf42013-09-24 10:37:13 +0100796 /* disable video ports */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100797 reg_write(priv, REG_ENA_VP_0, 0x00);
798 reg_write(priv, REG_ENA_VP_1, 0x00);
799 reg_write(priv, REG_ENA_VP_2, 0x00);
Rob Clarke7792ce2013-01-08 19:21:02 -0600800 break;
801 }
802
803 priv->dpms = mode;
804}
805
806static void
807tda998x_encoder_save(struct drm_encoder *encoder)
808{
809 DBG("");
810}
811
812static void
813tda998x_encoder_restore(struct drm_encoder *encoder)
814{
815 DBG("");
816}
817
818static bool
819tda998x_encoder_mode_fixup(struct drm_encoder *encoder,
820 const struct drm_display_mode *mode,
821 struct drm_display_mode *adjusted_mode)
822{
823 return true;
824}
825
Russell Kinga8f4d4d62014-02-07 19:17:21 +0000826static int tda998x_encoder_mode_valid(struct tda998x_priv *priv,
827 struct drm_display_mode *mode)
Rob Clarke7792ce2013-01-08 19:21:02 -0600828{
Russell King92fbdfc2014-02-07 19:52:33 +0000829 if (mode->clock > 150000)
830 return MODE_CLOCK_HIGH;
831 if (mode->htotal >= BIT(13))
832 return MODE_BAD_HVALUE;
833 if (mode->vtotal >= BIT(11))
834 return MODE_BAD_VVALUE;
Rob Clarke7792ce2013-01-08 19:21:02 -0600835 return MODE_OK;
836}
837
838static void
Russell Kinga8f4d4d62014-02-07 19:17:21 +0000839tda998x_encoder_mode_set(struct tda998x_priv *priv,
840 struct drm_display_mode *mode,
841 struct drm_display_mode *adjusted_mode)
Rob Clarke7792ce2013-01-08 19:21:02 -0600842{
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200843 uint16_t ref_pix, ref_line, n_pix, n_line;
844 uint16_t hs_pix_s, hs_pix_e;
845 uint16_t vs1_pix_s, vs1_pix_e, vs1_line_s, vs1_line_e;
846 uint16_t vs2_pix_s, vs2_pix_e, vs2_line_s, vs2_line_e;
847 uint16_t vwin1_line_s, vwin1_line_e;
848 uint16_t vwin2_line_s, vwin2_line_e;
849 uint16_t de_pix_s, de_pix_e;
Rob Clarke7792ce2013-01-08 19:21:02 -0600850 uint8_t reg, div, rep;
851
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200852 /*
853 * Internally TDA998x is using ITU-R BT.656 style sync but
854 * we get VESA style sync. TDA998x is using a reference pixel
855 * relative to ITU to sync to the input frame and for output
856 * sync generation. Currently, we are using reference detection
857 * from HS/VS, i.e. REFPIX/REFLINE denote frame start sync point
858 * which is position of rising VS with coincident rising HS.
859 *
860 * Now there is some issues to take care of:
861 * - HDMI data islands require sync-before-active
862 * - TDA998x register values must be > 0 to be enabled
863 * - REFLINE needs an additional offset of +1
864 * - REFPIX needs an addtional offset of +1 for UYUV and +3 for RGB
865 *
866 * So we add +1 to all horizontal and vertical register values,
867 * plus an additional +3 for REFPIX as we are using RGB input only.
Rob Clarke7792ce2013-01-08 19:21:02 -0600868 */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200869 n_pix = mode->htotal;
870 n_line = mode->vtotal;
Rob Clarke7792ce2013-01-08 19:21:02 -0600871
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200872 hs_pix_e = mode->hsync_end - mode->hdisplay;
873 hs_pix_s = mode->hsync_start - mode->hdisplay;
874 de_pix_e = mode->htotal;
875 de_pix_s = mode->htotal - mode->hdisplay;
876 ref_pix = 3 + hs_pix_s;
877
Sebastian Hesselbarth179f1aa2013-08-14 21:43:32 +0200878 /*
879 * Attached LCD controllers may generate broken sync. Allow
880 * those to adjust the position of the rising VS edge by adding
881 * HSKEW to ref_pix.
882 */
883 if (adjusted_mode->flags & DRM_MODE_FLAG_HSKEW)
884 ref_pix += adjusted_mode->hskew;
885
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200886 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) == 0) {
887 ref_line = 1 + mode->vsync_start - mode->vdisplay;
888 vwin1_line_s = mode->vtotal - mode->vdisplay - 1;
889 vwin1_line_e = vwin1_line_s + mode->vdisplay;
890 vs1_pix_s = vs1_pix_e = hs_pix_s;
891 vs1_line_s = mode->vsync_start - mode->vdisplay;
892 vs1_line_e = vs1_line_s +
893 mode->vsync_end - mode->vsync_start;
894 vwin2_line_s = vwin2_line_e = 0;
895 vs2_pix_s = vs2_pix_e = 0;
896 vs2_line_s = vs2_line_e = 0;
897 } else {
898 ref_line = 1 + (mode->vsync_start - mode->vdisplay)/2;
899 vwin1_line_s = (mode->vtotal - mode->vdisplay)/2;
900 vwin1_line_e = vwin1_line_s + mode->vdisplay/2;
901 vs1_pix_s = vs1_pix_e = hs_pix_s;
902 vs1_line_s = (mode->vsync_start - mode->vdisplay)/2;
903 vs1_line_e = vs1_line_s +
904 (mode->vsync_end - mode->vsync_start)/2;
905 vwin2_line_s = vwin1_line_s + mode->vtotal/2;
906 vwin2_line_e = vwin2_line_s + mode->vdisplay/2;
907 vs2_pix_s = vs2_pix_e = hs_pix_s + mode->htotal/2;
908 vs2_line_s = vs1_line_s + mode->vtotal/2 ;
909 vs2_line_e = vs2_line_s +
910 (mode->vsync_end - mode->vsync_start)/2;
911 }
Rob Clarke7792ce2013-01-08 19:21:02 -0600912
913 div = 148500 / mode->clock;
Jean-Francois Moine3ae471f2014-01-25 18:14:36 +0100914 if (div != 0) {
915 div--;
916 if (div > 3)
917 div = 3;
918 }
Rob Clarke7792ce2013-01-08 19:21:02 -0600919
Rob Clarke7792ce2013-01-08 19:21:02 -0600920 /* mute the audio FIFO: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100921 reg_set(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_FIFO);
Rob Clarke7792ce2013-01-08 19:21:02 -0600922
923 /* set HDMI HDCP mode off: */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100924 reg_write(priv, REG_TBG_CNTRL_1, TBG_CNTRL_1_DWIN_DIS);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100925 reg_clear(priv, REG_TX33, TX33_HDMI);
926 reg_write(priv, REG_ENC_CNTRL, ENC_CNTRL_CTL_CODE(0));
Rob Clarke7792ce2013-01-08 19:21:02 -0600927
Rob Clarke7792ce2013-01-08 19:21:02 -0600928 /* no pre-filter or interpolator: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100929 reg_write(priv, REG_HVF_CNTRL_0, HVF_CNTRL_0_PREFIL(0) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600930 HVF_CNTRL_0_INTPOL(0));
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100931 reg_write(priv, REG_VIP_CNTRL_5, VIP_CNTRL_5_SP_CNT(0));
932 reg_write(priv, REG_VIP_CNTRL_4, VIP_CNTRL_4_BLANKIT(0) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600933 VIP_CNTRL_4_BLC(0));
Rob Clarke7792ce2013-01-08 19:21:02 -0600934
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100935 reg_clear(priv, REG_PLL_SERIAL_1, PLL_SERIAL_1_SRL_MAN_IZ);
Jean-Francois Moinea8b517e2014-01-25 18:14:39 +0100936 reg_clear(priv, REG_PLL_SERIAL_3, PLL_SERIAL_3_SRL_CCIR |
937 PLL_SERIAL_3_SRL_DE);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100938 reg_write(priv, REG_SERIALIZER, 0);
939 reg_write(priv, REG_HVF_CNTRL_1, HVF_CNTRL_1_VQR(0));
Rob Clarke7792ce2013-01-08 19:21:02 -0600940
941 /* TODO enable pixel repeat for pixel rates less than 25Msamp/s */
942 rep = 0;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100943 reg_write(priv, REG_RPT_CNTRL, 0);
944 reg_write(priv, REG_SEL_CLK, SEL_CLK_SEL_VRF_CLK(0) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600945 SEL_CLK_SEL_CLK1 | SEL_CLK_ENA_SC_CLK);
946
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100947 reg_write(priv, REG_PLL_SERIAL_2, PLL_SERIAL_2_SRL_NOSC(div) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600948 PLL_SERIAL_2_SRL_PR(rep));
949
Rob Clarke7792ce2013-01-08 19:21:02 -0600950 /* set color matrix bypass flag: */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100951 reg_write(priv, REG_MAT_CONTRL, MAT_CONTRL_MAT_BP |
952 MAT_CONTRL_MAT_SC(1));
Rob Clarke7792ce2013-01-08 19:21:02 -0600953
954 /* set BIAS tmds value: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100955 reg_write(priv, REG_ANA_GENERAL, 0x09);
Rob Clarke7792ce2013-01-08 19:21:02 -0600956
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200957 /*
958 * Sync on rising HSYNC/VSYNC
959 */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100960 reg = VIP_CNTRL_3_SYNC_HS;
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200961
962 /*
963 * TDA19988 requires high-active sync at input stage,
964 * so invert low-active sync provided by master encoder here
965 */
966 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100967 reg |= VIP_CNTRL_3_H_TGL;
Rob Clarke7792ce2013-01-08 19:21:02 -0600968 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100969 reg |= VIP_CNTRL_3_V_TGL;
970 reg_write(priv, REG_VIP_CNTRL_3, reg);
Rob Clarke7792ce2013-01-08 19:21:02 -0600971
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100972 reg_write(priv, REG_VIDFORMAT, 0x00);
973 reg_write16(priv, REG_REFPIX_MSB, ref_pix);
974 reg_write16(priv, REG_REFLINE_MSB, ref_line);
975 reg_write16(priv, REG_NPIX_MSB, n_pix);
976 reg_write16(priv, REG_NLINE_MSB, n_line);
977 reg_write16(priv, REG_VS_LINE_STRT_1_MSB, vs1_line_s);
978 reg_write16(priv, REG_VS_PIX_STRT_1_MSB, vs1_pix_s);
979 reg_write16(priv, REG_VS_LINE_END_1_MSB, vs1_line_e);
980 reg_write16(priv, REG_VS_PIX_END_1_MSB, vs1_pix_e);
981 reg_write16(priv, REG_VS_LINE_STRT_2_MSB, vs2_line_s);
982 reg_write16(priv, REG_VS_PIX_STRT_2_MSB, vs2_pix_s);
983 reg_write16(priv, REG_VS_LINE_END_2_MSB, vs2_line_e);
984 reg_write16(priv, REG_VS_PIX_END_2_MSB, vs2_pix_e);
985 reg_write16(priv, REG_HS_PIX_START_MSB, hs_pix_s);
986 reg_write16(priv, REG_HS_PIX_STOP_MSB, hs_pix_e);
987 reg_write16(priv, REG_VWIN_START_1_MSB, vwin1_line_s);
988 reg_write16(priv, REG_VWIN_END_1_MSB, vwin1_line_e);
989 reg_write16(priv, REG_VWIN_START_2_MSB, vwin2_line_s);
990 reg_write16(priv, REG_VWIN_END_2_MSB, vwin2_line_e);
991 reg_write16(priv, REG_DE_START_MSB, de_pix_s);
992 reg_write16(priv, REG_DE_STOP_MSB, de_pix_e);
Rob Clarke7792ce2013-01-08 19:21:02 -0600993
994 if (priv->rev == TDA19988) {
995 /* let incoming pixels fill the active space (if any) */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100996 reg_write(priv, REG_ENABLE_SPACE, 0x00);
Rob Clarke7792ce2013-01-08 19:21:02 -0600997 }
998
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100999 /*
1000 * Always generate sync polarity relative to input sync and
1001 * revert input stage toggled sync at output stage
1002 */
1003 reg = TBG_CNTRL_1_DWIN_DIS | TBG_CNTRL_1_TGL_EN;
1004 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1005 reg |= TBG_CNTRL_1_H_TGL;
1006 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1007 reg |= TBG_CNTRL_1_V_TGL;
1008 reg_write(priv, REG_TBG_CNTRL_1, reg);
1009
Rob Clarke7792ce2013-01-08 19:21:02 -06001010 /* must be last register set: */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +01001011 reg_write(priv, REG_TBG_CNTRL_0, 0);
Russell Kingc4c11dd2013-08-14 21:43:30 +02001012
1013 /* Only setup the info frames if the sink is HDMI */
1014 if (priv->is_hdmi_sink) {
1015 /* We need to turn HDMI HDCP stuff on to get audio through */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +01001016 reg &= ~TBG_CNTRL_1_DWIN_DIS;
1017 reg_write(priv, REG_TBG_CNTRL_1, reg);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001018 reg_write(priv, REG_ENC_CNTRL, ENC_CNTRL_CTL_CODE(1));
1019 reg_set(priv, REG_TX33, TX33_HDMI);
Russell Kingc4c11dd2013-08-14 21:43:30 +02001020
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001021 tda998x_write_avi(priv, adjusted_mode);
Russell Kingc4c11dd2013-08-14 21:43:30 +02001022
1023 if (priv->params.audio_cfg)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001024 tda998x_configure_audio(priv, adjusted_mode,
Russell Kingc4c11dd2013-08-14 21:43:30 +02001025 &priv->params);
1026 }
Rob Clarke7792ce2013-01-08 19:21:02 -06001027}
1028
1029static enum drm_connector_status
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001030tda998x_encoder_detect(struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -06001031{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001032 uint8_t val = cec_read(priv, REG_CEC_RXSHPDLEV);
1033
Rob Clarke7792ce2013-01-08 19:21:02 -06001034 return (val & CEC_RXSHPDLEV_HPD) ? connector_status_connected :
1035 connector_status_disconnected;
1036}
1037
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001038static int read_edid_block(struct tda998x_priv *priv, uint8_t *buf, int blk)
Rob Clarke7792ce2013-01-08 19:21:02 -06001039{
1040 uint8_t offset, segptr;
1041 int ret, i;
1042
Rob Clarke7792ce2013-01-08 19:21:02 -06001043 offset = (blk & 1) ? 128 : 0;
1044 segptr = blk / 2;
1045
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001046 reg_write(priv, REG_DDC_ADDR, 0xa0);
1047 reg_write(priv, REG_DDC_OFFS, offset);
1048 reg_write(priv, REG_DDC_SEGM_ADDR, 0x60);
1049 reg_write(priv, REG_DDC_SEGM, segptr);
Rob Clarke7792ce2013-01-08 19:21:02 -06001050
1051 /* enable reading EDID: */
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001052 priv->wq_edid_wait = 1;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001053 reg_write(priv, REG_EDID_CTRL, 0x1);
Rob Clarke7792ce2013-01-08 19:21:02 -06001054
1055 /* flag must be cleared by sw: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001056 reg_write(priv, REG_EDID_CTRL, 0x0);
Rob Clarke7792ce2013-01-08 19:21:02 -06001057
1058 /* wait for block read to complete: */
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001059 if (priv->hdmi->irq) {
1060 i = wait_event_timeout(priv->wq_edid,
1061 !priv->wq_edid_wait,
1062 msecs_to_jiffies(100));
1063 if (i < 0) {
Russell King5e7fe2f2014-02-07 19:13:23 +00001064 dev_err(&priv->hdmi->dev, "read edid wait err %d\n", i);
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001065 return i;
1066 }
1067 } else {
Russell King713456d2014-03-03 14:09:36 +00001068 for (i = 100; i > 0; i--) {
1069 msleep(1);
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001070 ret = reg_read(priv, REG_INT_FLAGS_2);
1071 if (ret < 0)
1072 return ret;
1073 if (ret & INT_FLAGS_2_EDID_BLK_RD)
1074 break;
1075 }
Rob Clarke7792ce2013-01-08 19:21:02 -06001076 }
1077
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001078 if (i == 0) {
Russell King5e7fe2f2014-02-07 19:13:23 +00001079 dev_err(&priv->hdmi->dev, "read edid timeout\n");
Rob Clarke7792ce2013-01-08 19:21:02 -06001080 return -ETIMEDOUT;
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001081 }
Rob Clarke7792ce2013-01-08 19:21:02 -06001082
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001083 ret = reg_read_range(priv, REG_EDID_DATA_0, buf, EDID_LENGTH);
Rob Clarke7792ce2013-01-08 19:21:02 -06001084 if (ret != EDID_LENGTH) {
Russell King5e7fe2f2014-02-07 19:13:23 +00001085 dev_err(&priv->hdmi->dev, "failed to read edid block %d: %d\n",
1086 blk, ret);
Rob Clarke7792ce2013-01-08 19:21:02 -06001087 return ret;
1088 }
1089
Rob Clarke7792ce2013-01-08 19:21:02 -06001090 return 0;
1091}
1092
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001093static uint8_t *do_get_edid(struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -06001094{
Jean-Francois Moine704d63f2014-01-25 18:14:46 +01001095 int j, valid_extensions = 0;
Rob Clarke7792ce2013-01-08 19:21:02 -06001096 uint8_t *block, *new;
1097 bool print_bad_edid = drm_debug & DRM_UT_KMS;
1098
1099 if ((block = kmalloc(EDID_LENGTH, GFP_KERNEL)) == NULL)
1100 return NULL;
1101
Russell King063b4722013-08-14 21:43:26 +02001102 if (priv->rev == TDA19988)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001103 reg_clear(priv, REG_TX4, TX4_PD_RAM);
Russell King063b4722013-08-14 21:43:26 +02001104
Rob Clarke7792ce2013-01-08 19:21:02 -06001105 /* base block fetch */
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001106 if (read_edid_block(priv, block, 0))
Rob Clarke7792ce2013-01-08 19:21:02 -06001107 goto fail;
1108
1109 if (!drm_edid_block_valid(block, 0, print_bad_edid))
1110 goto fail;
1111
1112 /* if there's no extensions, we're done */
1113 if (block[0x7e] == 0)
Russell King063b4722013-08-14 21:43:26 +02001114 goto done;
Rob Clarke7792ce2013-01-08 19:21:02 -06001115
1116 new = krealloc(block, (block[0x7e] + 1) * EDID_LENGTH, GFP_KERNEL);
1117 if (!new)
1118 goto fail;
1119 block = new;
1120
1121 for (j = 1; j <= block[0x7e]; j++) {
1122 uint8_t *ext_block = block + (valid_extensions + 1) * EDID_LENGTH;
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001123 if (read_edid_block(priv, ext_block, j))
Rob Clarke7792ce2013-01-08 19:21:02 -06001124 goto fail;
1125
1126 if (!drm_edid_block_valid(ext_block, j, print_bad_edid))
1127 goto fail;
1128
1129 valid_extensions++;
1130 }
1131
1132 if (valid_extensions != block[0x7e]) {
1133 block[EDID_LENGTH-1] += block[0x7e] - valid_extensions;
1134 block[0x7e] = valid_extensions;
1135 new = krealloc(block, (valid_extensions + 1) * EDID_LENGTH, GFP_KERNEL);
1136 if (!new)
1137 goto fail;
1138 block = new;
1139 }
1140
Russell King063b4722013-08-14 21:43:26 +02001141done:
1142 if (priv->rev == TDA19988)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001143 reg_set(priv, REG_TX4, TX4_PD_RAM);
Russell King063b4722013-08-14 21:43:26 +02001144
Rob Clarke7792ce2013-01-08 19:21:02 -06001145 return block;
1146
1147fail:
Russell King063b4722013-08-14 21:43:26 +02001148 if (priv->rev == TDA19988)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001149 reg_set(priv, REG_TX4, TX4_PD_RAM);
Russell King5e7fe2f2014-02-07 19:13:23 +00001150 dev_warn(&priv->hdmi->dev, "failed to read EDID\n");
Rob Clarke7792ce2013-01-08 19:21:02 -06001151 kfree(block);
1152 return NULL;
1153}
1154
1155static int
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001156tda998x_encoder_get_modes(struct tda998x_priv *priv,
1157 struct drm_connector *connector)
Rob Clarke7792ce2013-01-08 19:21:02 -06001158{
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001159 struct edid *edid = (struct edid *)do_get_edid(priv);
Rob Clarke7792ce2013-01-08 19:21:02 -06001160 int n = 0;
1161
1162 if (edid) {
1163 drm_mode_connector_update_edid_property(connector, edid);
1164 n = drm_add_edid_modes(connector, edid);
Russell Kingc4c11dd2013-08-14 21:43:30 +02001165 priv->is_hdmi_sink = drm_detect_hdmi_monitor(edid);
Rob Clarke7792ce2013-01-08 19:21:02 -06001166 kfree(edid);
1167 }
1168
1169 return n;
1170}
1171
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001172static void tda998x_encoder_set_polling(struct tda998x_priv *priv,
1173 struct drm_connector *connector)
Rob Clarke7792ce2013-01-08 19:21:02 -06001174{
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001175 if (priv->hdmi->irq)
1176 connector->polled = DRM_CONNECTOR_POLL_HPD;
1177 else
1178 connector->polled = DRM_CONNECTOR_POLL_CONNECT |
1179 DRM_CONNECTOR_POLL_DISCONNECT;
Rob Clarke7792ce2013-01-08 19:21:02 -06001180}
1181
1182static int
1183tda998x_encoder_set_property(struct drm_encoder *encoder,
1184 struct drm_connector *connector,
1185 struct drm_property *property,
1186 uint64_t val)
1187{
1188 DBG("");
1189 return 0;
1190}
1191
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001192static void tda998x_destroy(struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -06001193{
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001194 /* disable all IRQs and free the IRQ handler */
1195 cec_write(priv, REG_CEC_RXSHPDINTENA, 0);
1196 reg_clear(priv, REG_INT_FLAGS_2, INT_FLAGS_2_EDID_BLK_RD);
Jean-Francois Moine6833d262014-11-29 08:57:15 +01001197 if (priv->hdmi->irq) {
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001198 free_irq(priv->hdmi->irq, priv);
Jean-Francois Moine6833d262014-11-29 08:57:15 +01001199 cancel_delayed_work_sync(&priv->dwork);
1200 }
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001201
Jean-Francois Moine89fc8682014-07-07 17:59:51 +02001202 i2c_unregister_device(priv->cec);
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001203}
1204
1205/* Slave encoder support */
1206
1207static void
1208tda998x_encoder_slave_set_config(struct drm_encoder *encoder, void *params)
1209{
1210 tda998x_encoder_set_config(to_tda998x_priv(encoder), params);
1211}
1212
1213static void tda998x_encoder_slave_destroy(struct drm_encoder *encoder)
1214{
1215 struct tda998x_priv *priv = to_tda998x_priv(encoder);
1216
1217 tda998x_destroy(priv);
Guido Martínez2e48cec2014-06-17 11:17:03 -03001218 drm_i2c_encoder_destroy(encoder);
Rob Clarke7792ce2013-01-08 19:21:02 -06001219 kfree(priv);
1220}
1221
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001222static void tda998x_encoder_slave_dpms(struct drm_encoder *encoder, int mode)
1223{
1224 tda998x_encoder_dpms(to_tda998x_priv(encoder), mode);
1225}
1226
1227static int tda998x_encoder_slave_mode_valid(struct drm_encoder *encoder,
1228 struct drm_display_mode *mode)
1229{
1230 return tda998x_encoder_mode_valid(to_tda998x_priv(encoder), mode);
1231}
1232
1233static void
1234tda998x_encoder_slave_mode_set(struct drm_encoder *encoder,
1235 struct drm_display_mode *mode,
1236 struct drm_display_mode *adjusted_mode)
1237{
1238 tda998x_encoder_mode_set(to_tda998x_priv(encoder), mode, adjusted_mode);
1239}
1240
1241static enum drm_connector_status
1242tda998x_encoder_slave_detect(struct drm_encoder *encoder,
1243 struct drm_connector *connector)
1244{
1245 return tda998x_encoder_detect(to_tda998x_priv(encoder));
1246}
1247
1248static int tda998x_encoder_slave_get_modes(struct drm_encoder *encoder,
1249 struct drm_connector *connector)
1250{
1251 return tda998x_encoder_get_modes(to_tda998x_priv(encoder), connector);
1252}
1253
1254static int
1255tda998x_encoder_slave_create_resources(struct drm_encoder *encoder,
1256 struct drm_connector *connector)
1257{
1258 tda998x_encoder_set_polling(to_tda998x_priv(encoder), connector);
1259 return 0;
1260}
1261
1262static struct drm_encoder_slave_funcs tda998x_encoder_slave_funcs = {
1263 .set_config = tda998x_encoder_slave_set_config,
1264 .destroy = tda998x_encoder_slave_destroy,
1265 .dpms = tda998x_encoder_slave_dpms,
Rob Clarke7792ce2013-01-08 19:21:02 -06001266 .save = tda998x_encoder_save,
1267 .restore = tda998x_encoder_restore,
1268 .mode_fixup = tda998x_encoder_mode_fixup,
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001269 .mode_valid = tda998x_encoder_slave_mode_valid,
1270 .mode_set = tda998x_encoder_slave_mode_set,
1271 .detect = tda998x_encoder_slave_detect,
1272 .get_modes = tda998x_encoder_slave_get_modes,
1273 .create_resources = tda998x_encoder_slave_create_resources,
Rob Clarke7792ce2013-01-08 19:21:02 -06001274 .set_property = tda998x_encoder_set_property,
1275};
1276
1277/* I2C driver functions */
1278
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001279static int tda998x_create(struct i2c_client *client, struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -06001280{
Jean-Francois Moine0d44ea12014-01-25 18:14:41 +01001281 struct device_node *np = client->dev.of_node;
1282 u32 video;
Russell Kingfb7544d2014-02-02 16:18:24 +00001283 int rev_lo, rev_hi, ret;
Rob Clarke7792ce2013-01-08 19:21:02 -06001284
Russell King5e74c222013-08-14 21:43:29 +02001285 priv->vip_cntrl_0 = VIP_CNTRL_0_SWAP_A(2) | VIP_CNTRL_0_SWAP_B(3);
1286 priv->vip_cntrl_1 = VIP_CNTRL_1_SWAP_C(0) | VIP_CNTRL_1_SWAP_D(1);
1287 priv->vip_cntrl_2 = VIP_CNTRL_2_SWAP_E(4) | VIP_CNTRL_2_SWAP_F(5);
1288
Jean-Francois Moine2eb4c7b2014-01-25 18:14:45 +01001289 priv->current_page = 0xff;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001290 priv->hdmi = client;
Rob Clarke7792ce2013-01-08 19:21:02 -06001291 priv->cec = i2c_new_dummy(client->adapter, 0x34);
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001292 if (!priv->cec)
Jean-Francois Moine6ae668c2014-01-25 18:14:43 +01001293 return -ENODEV;
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001294
Rob Clarke7792ce2013-01-08 19:21:02 -06001295 priv->dpms = DRM_MODE_DPMS_OFF;
1296
Jean-Francois Moineed9a8422014-11-29 08:30:51 +01001297 mutex_init(&priv->mutex); /* protect the page access */
1298
Rob Clarke7792ce2013-01-08 19:21:02 -06001299 /* wake up the device: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001300 cec_write(priv, REG_CEC_ENAMODS,
Rob Clarke7792ce2013-01-08 19:21:02 -06001301 CEC_ENAMODS_EN_RXSENS | CEC_ENAMODS_EN_HDMI);
1302
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001303 tda998x_reset(priv);
Rob Clarke7792ce2013-01-08 19:21:02 -06001304
1305 /* read version: */
Russell Kingfb7544d2014-02-02 16:18:24 +00001306 rev_lo = reg_read(priv, REG_VERSION_LSB);
1307 rev_hi = reg_read(priv, REG_VERSION_MSB);
1308 if (rev_lo < 0 || rev_hi < 0) {
1309 ret = rev_lo < 0 ? rev_lo : rev_hi;
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +01001310 goto fail;
Russell Kingfb7544d2014-02-02 16:18:24 +00001311 }
1312
1313 priv->rev = rev_lo | rev_hi << 8;
Rob Clarke7792ce2013-01-08 19:21:02 -06001314
1315 /* mask off feature bits: */
1316 priv->rev &= ~0x30; /* not-hdcp and not-scalar bit */
1317
1318 switch (priv->rev) {
Jean-Francois Moineb728fab2014-01-25 18:14:46 +01001319 case TDA9989N2:
1320 dev_info(&client->dev, "found TDA9989 n2");
1321 break;
1322 case TDA19989:
1323 dev_info(&client->dev, "found TDA19989");
1324 break;
1325 case TDA19989N2:
1326 dev_info(&client->dev, "found TDA19989 n2");
1327 break;
1328 case TDA19988:
1329 dev_info(&client->dev, "found TDA19988");
1330 break;
Rob Clarke7792ce2013-01-08 19:21:02 -06001331 default:
Jean-Francois Moineb728fab2014-01-25 18:14:46 +01001332 dev_err(&client->dev, "found unsupported device: %04x\n",
1333 priv->rev);
Rob Clarke7792ce2013-01-08 19:21:02 -06001334 goto fail;
1335 }
1336
1337 /* after reset, enable DDC: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001338 reg_write(priv, REG_DDC_DISABLE, 0x00);
Rob Clarke7792ce2013-01-08 19:21:02 -06001339
1340 /* set clock on DDC channel: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001341 reg_write(priv, REG_TX3, 39);
Rob Clarke7792ce2013-01-08 19:21:02 -06001342
1343 /* if necessary, disable multi-master: */
1344 if (priv->rev == TDA19989)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001345 reg_set(priv, REG_I2C_MASTER, I2C_MASTER_DIS_MM);
Rob Clarke7792ce2013-01-08 19:21:02 -06001346
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001347 cec_write(priv, REG_CEC_FRO_IM_CLK_CTRL,
Rob Clarke7792ce2013-01-08 19:21:02 -06001348 CEC_FRO_IM_CLK_CTRL_GHOST_DIS | CEC_FRO_IM_CLK_CTRL_IMCLK_SEL);
1349
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001350 /* initialize the optional IRQ */
1351 if (client->irq) {
1352 int irqf_trigger;
1353
Jean-Francois Moine6833d262014-11-29 08:57:15 +01001354 /* init read EDID waitqueue and HDP work */
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001355 init_waitqueue_head(&priv->wq_edid);
Jean-Francois Moine6833d262014-11-29 08:57:15 +01001356 INIT_DELAYED_WORK(&priv->dwork, tda998x_hpd);
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001357
1358 /* clear pending interrupts */
1359 reg_read(priv, REG_INT_FLAGS_0);
1360 reg_read(priv, REG_INT_FLAGS_1);
1361 reg_read(priv, REG_INT_FLAGS_2);
1362
1363 irqf_trigger =
1364 irqd_get_trigger_type(irq_get_irq_data(client->irq));
1365 ret = request_threaded_irq(client->irq, NULL,
1366 tda998x_irq_thread,
1367 irqf_trigger | IRQF_ONESHOT,
1368 "tda998x", priv);
1369 if (ret) {
1370 dev_err(&client->dev,
1371 "failed to request IRQ#%u: %d\n",
1372 client->irq, ret);
1373 goto fail;
1374 }
1375
1376 /* enable HPD irq */
1377 cec_write(priv, REG_CEC_RXSHPDINTENA, CEC_RXSHPDLEV_HPD);
1378 }
1379
Jean-Francois Moinee4782622014-01-25 18:14:38 +01001380 /* enable EDID read irq: */
1381 reg_set(priv, REG_INT_FLAGS_2, INT_FLAGS_2_EDID_BLK_RD);
1382
Jean-Francois Moine0d44ea12014-01-25 18:14:41 +01001383 if (!np)
1384 return 0; /* non-DT */
1385
1386 /* get the optional video properties */
1387 ret = of_property_read_u32(np, "video-ports", &video);
1388 if (ret == 0) {
1389 priv->vip_cntrl_0 = video >> 16;
1390 priv->vip_cntrl_1 = video >> 8;
1391 priv->vip_cntrl_2 = video;
1392 }
1393
Rob Clarke7792ce2013-01-08 19:21:02 -06001394 return 0;
1395
1396fail:
1397 /* if encoder_init fails, the encoder slave is never registered,
1398 * so cleanup here:
1399 */
1400 if (priv->cec)
1401 i2c_unregister_device(priv->cec);
Rob Clarke7792ce2013-01-08 19:21:02 -06001402 return -ENXIO;
1403}
1404
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001405static int tda998x_encoder_init(struct i2c_client *client,
1406 struct drm_device *dev,
1407 struct drm_encoder_slave *encoder_slave)
1408{
1409 struct tda998x_priv *priv;
1410 int ret;
1411
1412 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1413 if (!priv)
1414 return -ENOMEM;
1415
1416 priv->encoder = &encoder_slave->base;
1417
1418 ret = tda998x_create(client, priv);
1419 if (ret) {
1420 kfree(priv);
1421 return ret;
1422 }
1423
1424 encoder_slave->slave_priv = priv;
1425 encoder_slave->slave_funcs = &tda998x_encoder_slave_funcs;
1426
1427 return 0;
1428}
1429
Russell Kingc707c362014-02-07 19:49:44 +00001430struct tda998x_priv2 {
1431 struct tda998x_priv base;
1432 struct drm_encoder encoder;
1433 struct drm_connector connector;
1434};
1435
1436#define conn_to_tda998x_priv2(x) \
1437 container_of(x, struct tda998x_priv2, connector);
1438
1439#define enc_to_tda998x_priv2(x) \
1440 container_of(x, struct tda998x_priv2, encoder);
1441
1442static void tda998x_encoder2_dpms(struct drm_encoder *encoder, int mode)
1443{
1444 struct tda998x_priv2 *priv = enc_to_tda998x_priv2(encoder);
1445
1446 tda998x_encoder_dpms(&priv->base, mode);
1447}
1448
1449static void tda998x_encoder_prepare(struct drm_encoder *encoder)
1450{
1451 tda998x_encoder2_dpms(encoder, DRM_MODE_DPMS_OFF);
1452}
1453
1454static void tda998x_encoder_commit(struct drm_encoder *encoder)
1455{
1456 tda998x_encoder2_dpms(encoder, DRM_MODE_DPMS_ON);
1457}
1458
1459static void tda998x_encoder2_mode_set(struct drm_encoder *encoder,
1460 struct drm_display_mode *mode,
1461 struct drm_display_mode *adjusted_mode)
1462{
1463 struct tda998x_priv2 *priv = enc_to_tda998x_priv2(encoder);
1464
1465 tda998x_encoder_mode_set(&priv->base, mode, adjusted_mode);
1466}
1467
1468static const struct drm_encoder_helper_funcs tda998x_encoder_helper_funcs = {
1469 .dpms = tda998x_encoder2_dpms,
1470 .save = tda998x_encoder_save,
1471 .restore = tda998x_encoder_restore,
1472 .mode_fixup = tda998x_encoder_mode_fixup,
1473 .prepare = tda998x_encoder_prepare,
1474 .commit = tda998x_encoder_commit,
1475 .mode_set = tda998x_encoder2_mode_set,
1476};
1477
1478static void tda998x_encoder_destroy(struct drm_encoder *encoder)
1479{
1480 struct tda998x_priv2 *priv = enc_to_tda998x_priv2(encoder);
1481
1482 tda998x_destroy(&priv->base);
1483 drm_encoder_cleanup(encoder);
1484}
1485
1486static const struct drm_encoder_funcs tda998x_encoder_funcs = {
1487 .destroy = tda998x_encoder_destroy,
1488};
1489
1490static int tda998x_connector_get_modes(struct drm_connector *connector)
1491{
1492 struct tda998x_priv2 *priv = conn_to_tda998x_priv2(connector);
1493
1494 return tda998x_encoder_get_modes(&priv->base, connector);
1495}
1496
1497static int tda998x_connector_mode_valid(struct drm_connector *connector,
1498 struct drm_display_mode *mode)
1499{
1500 struct tda998x_priv2 *priv = conn_to_tda998x_priv2(connector);
1501
1502 return tda998x_encoder_mode_valid(&priv->base, mode);
1503}
1504
1505static struct drm_encoder *
1506tda998x_connector_best_encoder(struct drm_connector *connector)
1507{
1508 struct tda998x_priv2 *priv = conn_to_tda998x_priv2(connector);
1509
1510 return &priv->encoder;
1511}
1512
1513static
1514const struct drm_connector_helper_funcs tda998x_connector_helper_funcs = {
1515 .get_modes = tda998x_connector_get_modes,
1516 .mode_valid = tda998x_connector_mode_valid,
1517 .best_encoder = tda998x_connector_best_encoder,
1518};
1519
1520static enum drm_connector_status
1521tda998x_connector_detect(struct drm_connector *connector, bool force)
1522{
1523 struct tda998x_priv2 *priv = conn_to_tda998x_priv2(connector);
1524
1525 return tda998x_encoder_detect(&priv->base);
1526}
1527
1528static void tda998x_connector_destroy(struct drm_connector *connector)
1529{
Dave Airlie74cd62e2014-08-05 10:34:33 +10001530 drm_connector_unregister(connector);
Russell Kingc707c362014-02-07 19:49:44 +00001531 drm_connector_cleanup(connector);
1532}
1533
1534static const struct drm_connector_funcs tda998x_connector_funcs = {
1535 .dpms = drm_helper_connector_dpms,
1536 .fill_modes = drm_helper_probe_single_connector_modes,
1537 .detect = tda998x_connector_detect,
1538 .destroy = tda998x_connector_destroy,
1539};
1540
1541static int tda998x_bind(struct device *dev, struct device *master, void *data)
1542{
1543 struct tda998x_encoder_params *params = dev->platform_data;
1544 struct i2c_client *client = to_i2c_client(dev);
1545 struct drm_device *drm = data;
1546 struct tda998x_priv2 *priv;
1547 int ret;
1548
1549 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
1550 if (!priv)
1551 return -ENOMEM;
1552
1553 dev_set_drvdata(dev, priv);
1554
1555 priv->base.encoder = &priv->encoder;
1556 priv->connector.interlace_allowed = 1;
1557 priv->encoder.possible_crtcs = 1 << 0;
1558
1559 ret = tda998x_create(client, &priv->base);
1560 if (ret)
1561 return ret;
1562
1563 if (!dev->of_node && params)
1564 tda998x_encoder_set_config(&priv->base, params);
1565
1566 tda998x_encoder_set_polling(&priv->base, &priv->connector);
1567
1568 drm_encoder_helper_add(&priv->encoder, &tda998x_encoder_helper_funcs);
1569 ret = drm_encoder_init(drm, &priv->encoder, &tda998x_encoder_funcs,
1570 DRM_MODE_ENCODER_TMDS);
1571 if (ret)
1572 goto err_encoder;
1573
1574 drm_connector_helper_add(&priv->connector,
1575 &tda998x_connector_helper_funcs);
1576 ret = drm_connector_init(drm, &priv->connector,
1577 &tda998x_connector_funcs,
1578 DRM_MODE_CONNECTOR_HDMIA);
1579 if (ret)
1580 goto err_connector;
1581
Dave Airlie74cd62e2014-08-05 10:34:33 +10001582 ret = drm_connector_register(&priv->connector);
Russell Kingc707c362014-02-07 19:49:44 +00001583 if (ret)
1584 goto err_sysfs;
1585
1586 priv->connector.encoder = &priv->encoder;
1587 drm_mode_connector_attach_encoder(&priv->connector, &priv->encoder);
1588
1589 return 0;
1590
1591err_sysfs:
1592 drm_connector_cleanup(&priv->connector);
1593err_connector:
1594 drm_encoder_cleanup(&priv->encoder);
1595err_encoder:
1596 tda998x_destroy(&priv->base);
1597 return ret;
1598}
1599
1600static void tda998x_unbind(struct device *dev, struct device *master,
1601 void *data)
1602{
1603 struct tda998x_priv2 *priv = dev_get_drvdata(dev);
1604
1605 drm_connector_cleanup(&priv->connector);
1606 drm_encoder_cleanup(&priv->encoder);
1607 tda998x_destroy(&priv->base);
1608}
1609
1610static const struct component_ops tda998x_ops = {
1611 .bind = tda998x_bind,
1612 .unbind = tda998x_unbind,
1613};
1614
1615static int
1616tda998x_probe(struct i2c_client *client, const struct i2c_device_id *id)
1617{
1618 return component_add(&client->dev, &tda998x_ops);
1619}
1620
1621static int tda998x_remove(struct i2c_client *client)
1622{
1623 component_del(&client->dev, &tda998x_ops);
1624 return 0;
1625}
1626
Jean-Francois Moine0d44ea12014-01-25 18:14:41 +01001627#ifdef CONFIG_OF
1628static const struct of_device_id tda998x_dt_ids[] = {
1629 { .compatible = "nxp,tda998x", },
1630 { }
1631};
1632MODULE_DEVICE_TABLE(of, tda998x_dt_ids);
1633#endif
1634
Rob Clarke7792ce2013-01-08 19:21:02 -06001635static struct i2c_device_id tda998x_ids[] = {
1636 { "tda998x", 0 },
1637 { }
1638};
1639MODULE_DEVICE_TABLE(i2c, tda998x_ids);
1640
1641static struct drm_i2c_encoder_driver tda998x_driver = {
1642 .i2c_driver = {
1643 .probe = tda998x_probe,
1644 .remove = tda998x_remove,
1645 .driver = {
1646 .name = "tda998x",
Jean-Francois Moine0d44ea12014-01-25 18:14:41 +01001647 .of_match_table = of_match_ptr(tda998x_dt_ids),
Rob Clarke7792ce2013-01-08 19:21:02 -06001648 },
1649 .id_table = tda998x_ids,
1650 },
1651 .encoder_init = tda998x_encoder_init,
1652};
1653
1654/* Module initialization */
1655
1656static int __init
1657tda998x_init(void)
1658{
1659 DBG("");
1660 return drm_i2c_encoder_register(THIS_MODULE, &tda998x_driver);
1661}
1662
1663static void __exit
1664tda998x_exit(void)
1665{
1666 DBG("");
1667 drm_i2c_encoder_unregister(&tda998x_driver);
1668}
1669
1670MODULE_AUTHOR("Rob Clark <robdclark@gmail.com");
1671MODULE_DESCRIPTION("NXP Semiconductors TDA998X HDMI Encoder");
1672MODULE_LICENSE("GPL");
1673
1674module_init(tda998x_init);
1675module_exit(tda998x_exit);