blob: 5febffdb027d9ae72d0e5e4b2725b7bb6d5d4274 [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 King5dbcf312014-06-15 11:11:10 +010028#include <drm/drm_of.h>
Russell Kingc4c11dd2013-08-14 21:43:30 +020029#include <drm/i2c/tda998x.h>
Rob Clarke7792ce2013-01-08 19:21:02 -060030
31#define DBG(fmt, ...) DRM_DEBUG(fmt"\n", ##__VA_ARGS__)
32
33struct tda998x_priv {
34 struct i2c_client *cec;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +010035 struct i2c_client *hdmi;
Jean-Francois Moineed9a8422014-11-29 08:30:51 +010036 struct mutex mutex;
Jean-Francois Moine6833d262014-11-29 08:57:15 +010037 struct delayed_work dwork;
Rob Clarke7792ce2013-01-08 19:21:02 -060038 uint16_t rev;
39 uint8_t current_page;
40 int dpms;
Russell Kingc4c11dd2013-08-14 21:43:30 +020041 bool is_hdmi_sink;
Russell King5e74c222013-08-14 21:43:29 +020042 u8 vip_cntrl_0;
43 u8 vip_cntrl_1;
44 u8 vip_cntrl_2;
Russell Kingc4c11dd2013-08-14 21:43:30 +020045 struct tda998x_encoder_params params;
Jean-Francois Moine12473b72014-01-25 18:14:38 +010046
47 wait_queue_head_t wq_edid;
48 volatile int wq_edid_wait;
49 struct drm_encoder *encoder;
Rob Clarke7792ce2013-01-08 19:21:02 -060050};
51
52#define to_tda998x_priv(x) ((struct tda998x_priv *)to_encoder_slave(x)->slave_priv)
53
54/* The TDA9988 series of devices use a paged register scheme.. to simplify
55 * things we encode the page # in upper bits of the register #. To read/
56 * write a given register, we need to make sure CURPAGE register is set
57 * appropriately. Which implies reads/writes are not atomic. Fun!
58 */
59
60#define REG(page, addr) (((page) << 8) | (addr))
61#define REG2ADDR(reg) ((reg) & 0xff)
62#define REG2PAGE(reg) (((reg) >> 8) & 0xff)
63
64#define REG_CURPAGE 0xff /* write */
65
66
67/* Page 00h: General Control */
68#define REG_VERSION_LSB REG(0x00, 0x00) /* read */
69#define REG_MAIN_CNTRL0 REG(0x00, 0x01) /* read/write */
70# define MAIN_CNTRL0_SR (1 << 0)
71# define MAIN_CNTRL0_DECS (1 << 1)
72# define MAIN_CNTRL0_DEHS (1 << 2)
73# define MAIN_CNTRL0_CECS (1 << 3)
74# define MAIN_CNTRL0_CEHS (1 << 4)
75# define MAIN_CNTRL0_SCALER (1 << 7)
76#define REG_VERSION_MSB REG(0x00, 0x02) /* read */
77#define REG_SOFTRESET REG(0x00, 0x0a) /* write */
78# define SOFTRESET_AUDIO (1 << 0)
79# define SOFTRESET_I2C_MASTER (1 << 1)
80#define REG_DDC_DISABLE REG(0x00, 0x0b) /* read/write */
81#define REG_CCLK_ON REG(0x00, 0x0c) /* read/write */
82#define REG_I2C_MASTER REG(0x00, 0x0d) /* read/write */
83# define I2C_MASTER_DIS_MM (1 << 0)
84# define I2C_MASTER_DIS_FILT (1 << 1)
85# define I2C_MASTER_APP_STRT_LAT (1 << 2)
Russell Kingc4c11dd2013-08-14 21:43:30 +020086#define REG_FEAT_POWERDOWN REG(0x00, 0x0e) /* read/write */
87# define FEAT_POWERDOWN_SPDIF (1 << 3)
Rob Clarke7792ce2013-01-08 19:21:02 -060088#define REG_INT_FLAGS_0 REG(0x00, 0x0f) /* read/write */
89#define REG_INT_FLAGS_1 REG(0x00, 0x10) /* read/write */
90#define REG_INT_FLAGS_2 REG(0x00, 0x11) /* read/write */
91# define INT_FLAGS_2_EDID_BLK_RD (1 << 1)
Russell Kingc4c11dd2013-08-14 21:43:30 +020092#define REG_ENA_ACLK REG(0x00, 0x16) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -060093#define REG_ENA_VP_0 REG(0x00, 0x18) /* read/write */
94#define REG_ENA_VP_1 REG(0x00, 0x19) /* read/write */
95#define REG_ENA_VP_2 REG(0x00, 0x1a) /* read/write */
96#define REG_ENA_AP REG(0x00, 0x1e) /* read/write */
97#define REG_VIP_CNTRL_0 REG(0x00, 0x20) /* write */
98# define VIP_CNTRL_0_MIRR_A (1 << 7)
99# define VIP_CNTRL_0_SWAP_A(x) (((x) & 7) << 4)
100# define VIP_CNTRL_0_MIRR_B (1 << 3)
101# define VIP_CNTRL_0_SWAP_B(x) (((x) & 7) << 0)
102#define REG_VIP_CNTRL_1 REG(0x00, 0x21) /* write */
103# define VIP_CNTRL_1_MIRR_C (1 << 7)
104# define VIP_CNTRL_1_SWAP_C(x) (((x) & 7) << 4)
105# define VIP_CNTRL_1_MIRR_D (1 << 3)
106# define VIP_CNTRL_1_SWAP_D(x) (((x) & 7) << 0)
107#define REG_VIP_CNTRL_2 REG(0x00, 0x22) /* write */
108# define VIP_CNTRL_2_MIRR_E (1 << 7)
109# define VIP_CNTRL_2_SWAP_E(x) (((x) & 7) << 4)
110# define VIP_CNTRL_2_MIRR_F (1 << 3)
111# define VIP_CNTRL_2_SWAP_F(x) (((x) & 7) << 0)
112#define REG_VIP_CNTRL_3 REG(0x00, 0x23) /* write */
113# define VIP_CNTRL_3_X_TGL (1 << 0)
114# define VIP_CNTRL_3_H_TGL (1 << 1)
115# define VIP_CNTRL_3_V_TGL (1 << 2)
116# define VIP_CNTRL_3_EMB (1 << 3)
117# define VIP_CNTRL_3_SYNC_DE (1 << 4)
118# define VIP_CNTRL_3_SYNC_HS (1 << 5)
119# define VIP_CNTRL_3_DE_INT (1 << 6)
120# define VIP_CNTRL_3_EDGE (1 << 7)
121#define REG_VIP_CNTRL_4 REG(0x00, 0x24) /* write */
122# define VIP_CNTRL_4_BLC(x) (((x) & 3) << 0)
123# define VIP_CNTRL_4_BLANKIT(x) (((x) & 3) << 2)
124# define VIP_CNTRL_4_CCIR656 (1 << 4)
125# define VIP_CNTRL_4_656_ALT (1 << 5)
126# define VIP_CNTRL_4_TST_656 (1 << 6)
127# define VIP_CNTRL_4_TST_PAT (1 << 7)
128#define REG_VIP_CNTRL_5 REG(0x00, 0x25) /* write */
129# define VIP_CNTRL_5_CKCASE (1 << 0)
130# define VIP_CNTRL_5_SP_CNT(x) (((x) & 3) << 1)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200131#define REG_MUX_AP REG(0x00, 0x26) /* read/write */
Jean-Francois Moine10df1a92014-01-25 18:14:40 +0100132# define MUX_AP_SELECT_I2S 0x64
133# define MUX_AP_SELECT_SPDIF 0x40
Russell Kingbcb24812013-08-14 21:43:27 +0200134#define REG_MUX_VP_VIP_OUT REG(0x00, 0x27) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600135#define REG_MAT_CONTRL REG(0x00, 0x80) /* write */
136# define MAT_CONTRL_MAT_SC(x) (((x) & 3) << 0)
137# define MAT_CONTRL_MAT_BP (1 << 2)
138#define REG_VIDFORMAT REG(0x00, 0xa0) /* write */
139#define REG_REFPIX_MSB REG(0x00, 0xa1) /* write */
140#define REG_REFPIX_LSB REG(0x00, 0xa2) /* write */
141#define REG_REFLINE_MSB REG(0x00, 0xa3) /* write */
142#define REG_REFLINE_LSB REG(0x00, 0xa4) /* write */
143#define REG_NPIX_MSB REG(0x00, 0xa5) /* write */
144#define REG_NPIX_LSB REG(0x00, 0xa6) /* write */
145#define REG_NLINE_MSB REG(0x00, 0xa7) /* write */
146#define REG_NLINE_LSB REG(0x00, 0xa8) /* write */
147#define REG_VS_LINE_STRT_1_MSB REG(0x00, 0xa9) /* write */
148#define REG_VS_LINE_STRT_1_LSB REG(0x00, 0xaa) /* write */
149#define REG_VS_PIX_STRT_1_MSB REG(0x00, 0xab) /* write */
150#define REG_VS_PIX_STRT_1_LSB REG(0x00, 0xac) /* write */
151#define REG_VS_LINE_END_1_MSB REG(0x00, 0xad) /* write */
152#define REG_VS_LINE_END_1_LSB REG(0x00, 0xae) /* write */
153#define REG_VS_PIX_END_1_MSB REG(0x00, 0xaf) /* write */
154#define REG_VS_PIX_END_1_LSB REG(0x00, 0xb0) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200155#define REG_VS_LINE_STRT_2_MSB REG(0x00, 0xb1) /* write */
156#define REG_VS_LINE_STRT_2_LSB REG(0x00, 0xb2) /* write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600157#define REG_VS_PIX_STRT_2_MSB REG(0x00, 0xb3) /* write */
158#define REG_VS_PIX_STRT_2_LSB REG(0x00, 0xb4) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200159#define REG_VS_LINE_END_2_MSB REG(0x00, 0xb5) /* write */
160#define REG_VS_LINE_END_2_LSB REG(0x00, 0xb6) /* write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600161#define REG_VS_PIX_END_2_MSB REG(0x00, 0xb7) /* write */
162#define REG_VS_PIX_END_2_LSB REG(0x00, 0xb8) /* write */
163#define REG_HS_PIX_START_MSB REG(0x00, 0xb9) /* write */
164#define REG_HS_PIX_START_LSB REG(0x00, 0xba) /* write */
165#define REG_HS_PIX_STOP_MSB REG(0x00, 0xbb) /* write */
166#define REG_HS_PIX_STOP_LSB REG(0x00, 0xbc) /* write */
167#define REG_VWIN_START_1_MSB REG(0x00, 0xbd) /* write */
168#define REG_VWIN_START_1_LSB REG(0x00, 0xbe) /* write */
169#define REG_VWIN_END_1_MSB REG(0x00, 0xbf) /* write */
170#define REG_VWIN_END_1_LSB REG(0x00, 0xc0) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200171#define REG_VWIN_START_2_MSB REG(0x00, 0xc1) /* write */
172#define REG_VWIN_START_2_LSB REG(0x00, 0xc2) /* write */
173#define REG_VWIN_END_2_MSB REG(0x00, 0xc3) /* write */
174#define REG_VWIN_END_2_LSB REG(0x00, 0xc4) /* write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600175#define REG_DE_START_MSB REG(0x00, 0xc5) /* write */
176#define REG_DE_START_LSB REG(0x00, 0xc6) /* write */
177#define REG_DE_STOP_MSB REG(0x00, 0xc7) /* write */
178#define REG_DE_STOP_LSB REG(0x00, 0xc8) /* write */
179#define REG_TBG_CNTRL_0 REG(0x00, 0xca) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200180# define TBG_CNTRL_0_TOP_TGL (1 << 0)
181# define TBG_CNTRL_0_TOP_SEL (1 << 1)
182# define TBG_CNTRL_0_DE_EXT (1 << 2)
183# define TBG_CNTRL_0_TOP_EXT (1 << 3)
Rob Clarke7792ce2013-01-08 19:21:02 -0600184# define TBG_CNTRL_0_FRAME_DIS (1 << 5)
185# define TBG_CNTRL_0_SYNC_MTHD (1 << 6)
186# define TBG_CNTRL_0_SYNC_ONCE (1 << 7)
187#define REG_TBG_CNTRL_1 REG(0x00, 0xcb) /* write */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200188# define TBG_CNTRL_1_H_TGL (1 << 0)
189# define TBG_CNTRL_1_V_TGL (1 << 1)
190# define TBG_CNTRL_1_TGL_EN (1 << 2)
191# define TBG_CNTRL_1_X_EXT (1 << 3)
192# define TBG_CNTRL_1_H_EXT (1 << 4)
193# define TBG_CNTRL_1_V_EXT (1 << 5)
Rob Clarke7792ce2013-01-08 19:21:02 -0600194# define TBG_CNTRL_1_DWIN_DIS (1 << 6)
195#define REG_ENABLE_SPACE REG(0x00, 0xd6) /* write */
196#define REG_HVF_CNTRL_0 REG(0x00, 0xe4) /* write */
197# define HVF_CNTRL_0_SM (1 << 7)
198# define HVF_CNTRL_0_RWB (1 << 6)
199# define HVF_CNTRL_0_PREFIL(x) (((x) & 3) << 2)
200# define HVF_CNTRL_0_INTPOL(x) (((x) & 3) << 0)
201#define REG_HVF_CNTRL_1 REG(0x00, 0xe5) /* write */
202# define HVF_CNTRL_1_FOR (1 << 0)
203# define HVF_CNTRL_1_YUVBLK (1 << 1)
204# define HVF_CNTRL_1_VQR(x) (((x) & 3) << 2)
205# define HVF_CNTRL_1_PAD(x) (((x) & 3) << 4)
206# define HVF_CNTRL_1_SEMI_PLANAR (1 << 6)
207#define REG_RPT_CNTRL REG(0x00, 0xf0) /* write */
Russell Kingc4c11dd2013-08-14 21:43:30 +0200208#define REG_I2S_FORMAT REG(0x00, 0xfc) /* read/write */
209# define I2S_FORMAT(x) (((x) & 3) << 0)
210#define REG_AIP_CLKSEL REG(0x00, 0xfd) /* write */
Jean-Francois Moine10df1a92014-01-25 18:14:40 +0100211# define AIP_CLKSEL_AIP_SPDIF (0 << 3)
212# define AIP_CLKSEL_AIP_I2S (1 << 3)
213# define AIP_CLKSEL_FS_ACLK (0 << 0)
214# define AIP_CLKSEL_FS_MCLK (1 << 0)
215# define AIP_CLKSEL_FS_FS64SPDIF (2 << 0)
Rob Clarke7792ce2013-01-08 19:21:02 -0600216
217/* Page 02h: PLL settings */
218#define REG_PLL_SERIAL_1 REG(0x02, 0x00) /* read/write */
219# define PLL_SERIAL_1_SRL_FDN (1 << 0)
220# define PLL_SERIAL_1_SRL_IZ(x) (((x) & 3) << 1)
221# define PLL_SERIAL_1_SRL_MAN_IZ (1 << 6)
222#define REG_PLL_SERIAL_2 REG(0x02, 0x01) /* read/write */
Jean-Francois Moine3ae471f2014-01-25 18:14:36 +0100223# define PLL_SERIAL_2_SRL_NOSC(x) ((x) << 0)
Rob Clarke7792ce2013-01-08 19:21:02 -0600224# define PLL_SERIAL_2_SRL_PR(x) (((x) & 0xf) << 4)
225#define REG_PLL_SERIAL_3 REG(0x02, 0x02) /* read/write */
226# define PLL_SERIAL_3_SRL_CCIR (1 << 0)
227# define PLL_SERIAL_3_SRL_DE (1 << 2)
228# define PLL_SERIAL_3_SRL_PXIN_SEL (1 << 4)
229#define REG_SERIALIZER REG(0x02, 0x03) /* read/write */
230#define REG_BUFFER_OUT REG(0x02, 0x04) /* read/write */
231#define REG_PLL_SCG1 REG(0x02, 0x05) /* read/write */
232#define REG_PLL_SCG2 REG(0x02, 0x06) /* read/write */
233#define REG_PLL_SCGN1 REG(0x02, 0x07) /* read/write */
234#define REG_PLL_SCGN2 REG(0x02, 0x08) /* read/write */
235#define REG_PLL_SCGR1 REG(0x02, 0x09) /* read/write */
236#define REG_PLL_SCGR2 REG(0x02, 0x0a) /* read/write */
237#define REG_AUDIO_DIV REG(0x02, 0x0e) /* read/write */
Russell Kingc4c11dd2013-08-14 21:43:30 +0200238# define AUDIO_DIV_SERCLK_1 0
239# define AUDIO_DIV_SERCLK_2 1
240# define AUDIO_DIV_SERCLK_4 2
241# define AUDIO_DIV_SERCLK_8 3
242# define AUDIO_DIV_SERCLK_16 4
243# define AUDIO_DIV_SERCLK_32 5
Rob Clarke7792ce2013-01-08 19:21:02 -0600244#define REG_SEL_CLK REG(0x02, 0x11) /* read/write */
245# define SEL_CLK_SEL_CLK1 (1 << 0)
246# define SEL_CLK_SEL_VRF_CLK(x) (((x) & 3) << 1)
247# define SEL_CLK_ENA_SC_CLK (1 << 3)
248#define REG_ANA_GENERAL REG(0x02, 0x12) /* read/write */
249
250
251/* Page 09h: EDID Control */
252#define REG_EDID_DATA_0 REG(0x09, 0x00) /* read */
253/* next 127 successive registers are the EDID block */
254#define REG_EDID_CTRL REG(0x09, 0xfa) /* read/write */
255#define REG_DDC_ADDR REG(0x09, 0xfb) /* read/write */
256#define REG_DDC_OFFS REG(0x09, 0xfc) /* read/write */
257#define REG_DDC_SEGM_ADDR REG(0x09, 0xfd) /* read/write */
258#define REG_DDC_SEGM REG(0x09, 0xfe) /* read/write */
259
260
261/* Page 10h: information frames and packets */
Russell Kingc4c11dd2013-08-14 21:43:30 +0200262#define REG_IF1_HB0 REG(0x10, 0x20) /* read/write */
263#define REG_IF2_HB0 REG(0x10, 0x40) /* read/write */
264#define REG_IF3_HB0 REG(0x10, 0x60) /* read/write */
265#define REG_IF4_HB0 REG(0x10, 0x80) /* read/write */
266#define REG_IF5_HB0 REG(0x10, 0xa0) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600267
268
269/* Page 11h: audio settings and content info packets */
270#define REG_AIP_CNTRL_0 REG(0x11, 0x00) /* read/write */
271# define AIP_CNTRL_0_RST_FIFO (1 << 0)
272# define AIP_CNTRL_0_SWAP (1 << 1)
273# define AIP_CNTRL_0_LAYOUT (1 << 2)
274# define AIP_CNTRL_0_ACR_MAN (1 << 5)
275# define AIP_CNTRL_0_RST_CTS (1 << 6)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200276#define REG_CA_I2S REG(0x11, 0x01) /* read/write */
277# define CA_I2S_CA_I2S(x) (((x) & 31) << 0)
278# define CA_I2S_HBR_CHSTAT (1 << 6)
279#define REG_LATENCY_RD REG(0x11, 0x04) /* read/write */
280#define REG_ACR_CTS_0 REG(0x11, 0x05) /* read/write */
281#define REG_ACR_CTS_1 REG(0x11, 0x06) /* read/write */
282#define REG_ACR_CTS_2 REG(0x11, 0x07) /* read/write */
283#define REG_ACR_N_0 REG(0x11, 0x08) /* read/write */
284#define REG_ACR_N_1 REG(0x11, 0x09) /* read/write */
285#define REG_ACR_N_2 REG(0x11, 0x0a) /* read/write */
286#define REG_CTS_N REG(0x11, 0x0c) /* read/write */
287# define CTS_N_K(x) (((x) & 7) << 0)
288# define CTS_N_M(x) (((x) & 3) << 4)
Rob Clarke7792ce2013-01-08 19:21:02 -0600289#define REG_ENC_CNTRL REG(0x11, 0x0d) /* read/write */
290# define ENC_CNTRL_RST_ENC (1 << 0)
291# define ENC_CNTRL_RST_SEL (1 << 1)
292# define ENC_CNTRL_CTL_CODE(x) (((x) & 3) << 2)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200293#define REG_DIP_FLAGS REG(0x11, 0x0e) /* read/write */
294# define DIP_FLAGS_ACR (1 << 0)
295# define DIP_FLAGS_GC (1 << 1)
296#define REG_DIP_IF_FLAGS REG(0x11, 0x0f) /* read/write */
297# define DIP_IF_FLAGS_IF1 (1 << 1)
298# define DIP_IF_FLAGS_IF2 (1 << 2)
299# define DIP_IF_FLAGS_IF3 (1 << 3)
300# define DIP_IF_FLAGS_IF4 (1 << 4)
301# define DIP_IF_FLAGS_IF5 (1 << 5)
302#define REG_CH_STAT_B(x) REG(0x11, 0x14 + (x)) /* read/write */
Rob Clarke7792ce2013-01-08 19:21:02 -0600303
304
305/* Page 12h: HDCP and OTP */
306#define REG_TX3 REG(0x12, 0x9a) /* read/write */
Russell King063b4722013-08-14 21:43:26 +0200307#define REG_TX4 REG(0x12, 0x9b) /* read/write */
308# define TX4_PD_RAM (1 << 1)
Rob Clarke7792ce2013-01-08 19:21:02 -0600309#define REG_TX33 REG(0x12, 0xb8) /* read/write */
310# define TX33_HDMI (1 << 1)
311
312
313/* Page 13h: Gamut related metadata packets */
314
315
316
317/* CEC registers: (not paged)
318 */
Jean-Francois Moine12473b72014-01-25 18:14:38 +0100319#define REG_CEC_INTSTATUS 0xee /* read */
320# define CEC_INTSTATUS_CEC (1 << 0)
321# define CEC_INTSTATUS_HDMI (1 << 1)
Rob Clarke7792ce2013-01-08 19:21:02 -0600322#define REG_CEC_FRO_IM_CLK_CTRL 0xfb /* read/write */
323# define CEC_FRO_IM_CLK_CTRL_GHOST_DIS (1 << 7)
324# define CEC_FRO_IM_CLK_CTRL_ENA_OTP (1 << 6)
325# define CEC_FRO_IM_CLK_CTRL_IMCLK_SEL (1 << 1)
326# define CEC_FRO_IM_CLK_CTRL_FRO_DIV (1 << 0)
Jean-Francois Moine12473b72014-01-25 18:14:38 +0100327#define REG_CEC_RXSHPDINTENA 0xfc /* read/write */
328#define REG_CEC_RXSHPDINT 0xfd /* read */
Rob Clarke7792ce2013-01-08 19:21:02 -0600329#define REG_CEC_RXSHPDLEV 0xfe /* read */
330# define CEC_RXSHPDLEV_RXSENS (1 << 0)
331# define CEC_RXSHPDLEV_HPD (1 << 1)
332
333#define REG_CEC_ENAMODS 0xff /* read/write */
334# define CEC_ENAMODS_DIS_FRO (1 << 6)
335# define CEC_ENAMODS_DIS_CCLK (1 << 5)
336# define CEC_ENAMODS_EN_RXSENS (1 << 2)
337# define CEC_ENAMODS_EN_HDMI (1 << 1)
338# define CEC_ENAMODS_EN_CEC (1 << 0)
339
340
341/* Device versions: */
342#define TDA9989N2 0x0101
343#define TDA19989 0x0201
344#define TDA19989N2 0x0202
345#define TDA19988 0x0301
346
347static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100348cec_write(struct tda998x_priv *priv, uint16_t addr, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600349{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100350 struct i2c_client *client = priv->cec;
Rob Clarke7792ce2013-01-08 19:21:02 -0600351 uint8_t buf[] = {addr, val};
352 int ret;
353
Jean-Francois Moine704d63f2014-01-25 18:14:46 +0100354 ret = i2c_master_send(client, buf, sizeof(buf));
Rob Clarke7792ce2013-01-08 19:21:02 -0600355 if (ret < 0)
356 dev_err(&client->dev, "Error %d writing to cec:0x%x\n", ret, addr);
357}
358
359static uint8_t
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100360cec_read(struct tda998x_priv *priv, uint8_t addr)
Rob Clarke7792ce2013-01-08 19:21:02 -0600361{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100362 struct i2c_client *client = priv->cec;
Rob Clarke7792ce2013-01-08 19:21:02 -0600363 uint8_t val;
364 int ret;
365
366 ret = i2c_master_send(client, &addr, sizeof(addr));
367 if (ret < 0)
368 goto fail;
369
370 ret = i2c_master_recv(client, &val, sizeof(val));
371 if (ret < 0)
372 goto fail;
373
374 return val;
375
376fail:
377 dev_err(&client->dev, "Error %d reading from cec:0x%x\n", ret, addr);
378 return 0;
379}
380
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100381static int
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100382set_page(struct tda998x_priv *priv, uint16_t reg)
Rob Clarke7792ce2013-01-08 19:21:02 -0600383{
Rob Clarke7792ce2013-01-08 19:21:02 -0600384 if (REG2PAGE(reg) != priv->current_page) {
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 buf[] = {
387 REG_CURPAGE, REG2PAGE(reg)
388 };
389 int ret = i2c_master_send(client, buf, sizeof(buf));
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100390 if (ret < 0) {
Julia Lawall288ffc72014-12-07 20:20:59 +0100391 dev_err(&client->dev, "%s %04x err %d\n", __func__,
Jean-Francois Moine704d63f2014-01-25 18:14:46 +0100392 reg, ret);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100393 return ret;
394 }
Rob Clarke7792ce2013-01-08 19:21:02 -0600395
396 priv->current_page = REG2PAGE(reg);
397 }
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100398 return 0;
Rob Clarke7792ce2013-01-08 19:21:02 -0600399}
400
401static int
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100402reg_read_range(struct tda998x_priv *priv, uint16_t reg, char *buf, int cnt)
Rob Clarke7792ce2013-01-08 19:21:02 -0600403{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100404 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600405 uint8_t addr = REG2ADDR(reg);
406 int ret;
407
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100408 mutex_lock(&priv->mutex);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100409 ret = set_page(priv, reg);
410 if (ret < 0)
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100411 goto out;
Rob Clarke7792ce2013-01-08 19:21:02 -0600412
413 ret = i2c_master_send(client, &addr, sizeof(addr));
414 if (ret < 0)
415 goto fail;
416
417 ret = i2c_master_recv(client, buf, cnt);
418 if (ret < 0)
419 goto fail;
420
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100421 goto out;
Rob Clarke7792ce2013-01-08 19:21:02 -0600422
423fail:
424 dev_err(&client->dev, "Error %d reading from 0x%x\n", ret, reg);
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100425out:
426 mutex_unlock(&priv->mutex);
Rob Clarke7792ce2013-01-08 19:21:02 -0600427 return ret;
428}
429
Russell Kingc4c11dd2013-08-14 21:43:30 +0200430static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100431reg_write_range(struct tda998x_priv *priv, uint16_t reg, uint8_t *p, int cnt)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200432{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100433 struct i2c_client *client = priv->hdmi;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200434 uint8_t buf[cnt+1];
435 int ret;
436
437 buf[0] = REG2ADDR(reg);
438 memcpy(&buf[1], p, cnt);
439
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100440 mutex_lock(&priv->mutex);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100441 ret = set_page(priv, reg);
442 if (ret < 0)
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100443 goto out;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200444
445 ret = i2c_master_send(client, buf, cnt + 1);
446 if (ret < 0)
447 dev_err(&client->dev, "Error %d writing to 0x%x\n", ret, reg);
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100448out:
449 mutex_unlock(&priv->mutex);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200450}
451
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100452static int
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100453reg_read(struct tda998x_priv *priv, uint16_t reg)
Rob Clarke7792ce2013-01-08 19:21:02 -0600454{
455 uint8_t val = 0;
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100456 int ret;
457
458 ret = reg_read_range(priv, reg, &val, sizeof(val));
459 if (ret < 0)
460 return ret;
Rob Clarke7792ce2013-01-08 19:21:02 -0600461 return val;
462}
463
464static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100465reg_write(struct tda998x_priv *priv, uint16_t reg, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600466{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100467 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600468 uint8_t buf[] = {REG2ADDR(reg), val};
469 int ret;
470
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100471 mutex_lock(&priv->mutex);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100472 ret = set_page(priv, reg);
473 if (ret < 0)
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100474 goto out;
Rob Clarke7792ce2013-01-08 19:21:02 -0600475
Jean-Francois Moine704d63f2014-01-25 18:14:46 +0100476 ret = i2c_master_send(client, buf, sizeof(buf));
Rob Clarke7792ce2013-01-08 19:21:02 -0600477 if (ret < 0)
478 dev_err(&client->dev, "Error %d writing to 0x%x\n", ret, reg);
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100479out:
480 mutex_unlock(&priv->mutex);
Rob Clarke7792ce2013-01-08 19:21:02 -0600481}
482
483static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100484reg_write16(struct tda998x_priv *priv, uint16_t reg, uint16_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600485{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100486 struct i2c_client *client = priv->hdmi;
Rob Clarke7792ce2013-01-08 19:21:02 -0600487 uint8_t buf[] = {REG2ADDR(reg), val >> 8, val};
488 int ret;
489
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100490 mutex_lock(&priv->mutex);
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100491 ret = set_page(priv, reg);
492 if (ret < 0)
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100493 goto out;
Rob Clarke7792ce2013-01-08 19:21:02 -0600494
Jean-Francois Moine704d63f2014-01-25 18:14:46 +0100495 ret = i2c_master_send(client, buf, sizeof(buf));
Rob Clarke7792ce2013-01-08 19:21:02 -0600496 if (ret < 0)
497 dev_err(&client->dev, "Error %d writing to 0x%x\n", ret, reg);
Jean-Francois Moineed9a8422014-11-29 08:30:51 +0100498out:
499 mutex_unlock(&priv->mutex);
Rob Clarke7792ce2013-01-08 19:21:02 -0600500}
501
502static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100503reg_set(struct tda998x_priv *priv, uint16_t reg, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600504{
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100505 int old_val;
506
507 old_val = reg_read(priv, reg);
508 if (old_val >= 0)
509 reg_write(priv, reg, old_val | val);
Rob Clarke7792ce2013-01-08 19:21:02 -0600510}
511
512static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100513reg_clear(struct tda998x_priv *priv, uint16_t reg, uint8_t val)
Rob Clarke7792ce2013-01-08 19:21:02 -0600514{
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +0100515 int old_val;
516
517 old_val = reg_read(priv, reg);
518 if (old_val >= 0)
519 reg_write(priv, reg, old_val & ~val);
Rob Clarke7792ce2013-01-08 19:21:02 -0600520}
521
522static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100523tda998x_reset(struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -0600524{
525 /* reset audio and i2c master: */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100526 reg_write(priv, REG_SOFTRESET, SOFTRESET_AUDIO | SOFTRESET_I2C_MASTER);
Rob Clarke7792ce2013-01-08 19:21:02 -0600527 msleep(50);
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100528 reg_write(priv, REG_SOFTRESET, 0);
Rob Clarke7792ce2013-01-08 19:21:02 -0600529 msleep(50);
530
531 /* reset transmitter: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100532 reg_set(priv, REG_MAIN_CNTRL0, MAIN_CNTRL0_SR);
533 reg_clear(priv, REG_MAIN_CNTRL0, MAIN_CNTRL0_SR);
Rob Clarke7792ce2013-01-08 19:21:02 -0600534
535 /* PLL registers common configuration */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100536 reg_write(priv, REG_PLL_SERIAL_1, 0x00);
537 reg_write(priv, REG_PLL_SERIAL_2, PLL_SERIAL_2_SRL_NOSC(1));
538 reg_write(priv, REG_PLL_SERIAL_3, 0x00);
539 reg_write(priv, REG_SERIALIZER, 0x00);
540 reg_write(priv, REG_BUFFER_OUT, 0x00);
541 reg_write(priv, REG_PLL_SCG1, 0x00);
542 reg_write(priv, REG_AUDIO_DIV, AUDIO_DIV_SERCLK_8);
543 reg_write(priv, REG_SEL_CLK, SEL_CLK_SEL_CLK1 | SEL_CLK_ENA_SC_CLK);
544 reg_write(priv, REG_PLL_SCGN1, 0xfa);
545 reg_write(priv, REG_PLL_SCGN2, 0x00);
546 reg_write(priv, REG_PLL_SCGR1, 0x5b);
547 reg_write(priv, REG_PLL_SCGR2, 0x00);
548 reg_write(priv, REG_PLL_SCG2, 0x10);
Russell Kingbcb24812013-08-14 21:43:27 +0200549
550 /* Write the default value MUX register */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100551 reg_write(priv, REG_MUX_VP_VIP_OUT, 0x24);
Rob Clarke7792ce2013-01-08 19:21:02 -0600552}
553
Jean-Francois Moine6833d262014-11-29 08:57:15 +0100554/* handle HDMI connect/disconnect */
555static void tda998x_hpd(struct work_struct *work)
556{
557 struct delayed_work *dwork = to_delayed_work(work);
558 struct tda998x_priv *priv =
559 container_of(dwork, struct tda998x_priv, dwork);
560
561 if (priv->encoder && priv->encoder->dev)
562 drm_kms_helper_hotplug_event(priv->encoder->dev);
563}
564
Jean-Francois Moine12473b72014-01-25 18:14:38 +0100565/*
566 * only 2 interrupts may occur: screen plug/unplug and EDID read
567 */
568static irqreturn_t tda998x_irq_thread(int irq, void *data)
569{
570 struct tda998x_priv *priv = data;
571 u8 sta, cec, lvl, flag0, flag1, flag2;
572
573 if (!priv)
574 return IRQ_HANDLED;
575 sta = cec_read(priv, REG_CEC_INTSTATUS);
576 cec = cec_read(priv, REG_CEC_RXSHPDINT);
577 lvl = cec_read(priv, REG_CEC_RXSHPDLEV);
578 flag0 = reg_read(priv, REG_INT_FLAGS_0);
579 flag1 = reg_read(priv, REG_INT_FLAGS_1);
580 flag2 = reg_read(priv, REG_INT_FLAGS_2);
581 DRM_DEBUG_DRIVER(
582 "tda irq sta %02x cec %02x lvl %02x f0 %02x f1 %02x f2 %02x\n",
583 sta, cec, lvl, flag0, flag1, flag2);
584 if ((flag2 & INT_FLAGS_2_EDID_BLK_RD) && priv->wq_edid_wait) {
585 priv->wq_edid_wait = 0;
586 wake_up(&priv->wq_edid);
587 } else if (cec != 0) { /* HPD change */
Jean-Francois Moine6833d262014-11-29 08:57:15 +0100588 schedule_delayed_work(&priv->dwork, HZ/10);
Jean-Francois Moine12473b72014-01-25 18:14:38 +0100589 }
590 return IRQ_HANDLED;
591}
592
Russell Kingc4c11dd2013-08-14 21:43:30 +0200593static uint8_t tda998x_cksum(uint8_t *buf, size_t bytes)
594{
Daniel Vetter8268bd42014-04-05 18:24:29 +0200595 int sum = 0;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200596
597 while (bytes--)
Daniel Vetter8268bd42014-04-05 18:24:29 +0200598 sum -= *buf++;
599 return sum;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200600}
601
602#define HB(x) (x)
603#define PB(x) (HB(2) + 1 + (x))
604
605static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100606tda998x_write_if(struct tda998x_priv *priv, uint8_t bit, uint16_t addr,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200607 uint8_t *buf, size_t size)
608{
609 buf[PB(0)] = tda998x_cksum(buf, size);
610
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100611 reg_clear(priv, REG_DIP_IF_FLAGS, bit);
612 reg_write_range(priv, addr, buf, size);
613 reg_set(priv, REG_DIP_IF_FLAGS, bit);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200614}
615
616static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100617tda998x_write_aif(struct tda998x_priv *priv, struct tda998x_encoder_params *p)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200618{
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100619 u8 buf[PB(HDMI_AUDIO_INFOFRAME_SIZE) + 1];
Russell Kingc4c11dd2013-08-14 21:43:30 +0200620
Jean-Francois Moine7288ca02014-01-25 18:14:44 +0100621 memset(buf, 0, sizeof(buf));
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100622 buf[HB(0)] = HDMI_INFOFRAME_TYPE_AUDIO;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200623 buf[HB(1)] = 0x01;
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100624 buf[HB(2)] = HDMI_AUDIO_INFOFRAME_SIZE;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200625 buf[PB(1)] = p->audio_frame[1] & 0x07; /* CC */
626 buf[PB(2)] = p->audio_frame[2] & 0x1c; /* SF */
627 buf[PB(4)] = p->audio_frame[4];
628 buf[PB(5)] = p->audio_frame[5] & 0xf8; /* DM_INH + LSV */
629
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100630 tda998x_write_if(priv, DIP_IF_FLAGS_IF4, REG_IF4_HB0, buf,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200631 sizeof(buf));
632}
633
634static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100635tda998x_write_avi(struct tda998x_priv *priv, struct drm_display_mode *mode)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200636{
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100637 u8 buf[PB(HDMI_AVI_INFOFRAME_SIZE) + 1];
Russell Kingc4c11dd2013-08-14 21:43:30 +0200638
639 memset(buf, 0, sizeof(buf));
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100640 buf[HB(0)] = HDMI_INFOFRAME_TYPE_AVI;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200641 buf[HB(1)] = 0x02;
Jean-Francois Moine9e541462014-01-25 18:14:41 +0100642 buf[HB(2)] = HDMI_AVI_INFOFRAME_SIZE;
Russell King893c3e52013-08-27 01:27:42 +0100643 buf[PB(1)] = HDMI_SCAN_MODE_UNDERSCAN;
Jean-Francois Moinebdf63452014-01-25 18:14:40 +0100644 buf[PB(2)] = HDMI_ACTIVE_ASPECT_PICTURE;
Russell King893c3e52013-08-27 01:27:42 +0100645 buf[PB(3)] = HDMI_QUANTIZATION_RANGE_FULL << 2;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200646 buf[PB(4)] = drm_match_cea_mode(mode);
647
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100648 tda998x_write_if(priv, DIP_IF_FLAGS_IF2, REG_IF2_HB0, buf,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200649 sizeof(buf));
650}
651
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100652static void tda998x_audio_mute(struct tda998x_priv *priv, bool on)
Russell Kingc4c11dd2013-08-14 21:43:30 +0200653{
654 if (on) {
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100655 reg_set(priv, REG_SOFTRESET, SOFTRESET_AUDIO);
656 reg_clear(priv, REG_SOFTRESET, SOFTRESET_AUDIO);
657 reg_set(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_FIFO);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200658 } else {
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100659 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_FIFO);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200660 }
661}
662
663static void
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100664tda998x_configure_audio(struct tda998x_priv *priv,
Russell Kingc4c11dd2013-08-14 21:43:30 +0200665 struct drm_display_mode *mode, struct tda998x_encoder_params *p)
666{
Jean-Francois Moine85c988b2014-01-25 18:14:40 +0100667 uint8_t buf[6], clksel_aip, clksel_fs, cts_n, adiv;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200668 uint32_t n;
669
670 /* Enable audio ports */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100671 reg_write(priv, REG_ENA_AP, p->audio_cfg);
672 reg_write(priv, REG_ENA_ACLK, p->audio_clk_cfg);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200673
674 /* Set audio input source */
675 switch (p->audio_format) {
676 case AFMT_SPDIF:
Jean-Francois Moine10df1a92014-01-25 18:14:40 +0100677 reg_write(priv, REG_MUX_AP, MUX_AP_SELECT_SPDIF);
678 clksel_aip = AIP_CLKSEL_AIP_SPDIF;
679 clksel_fs = AIP_CLKSEL_FS_FS64SPDIF;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200680 cts_n = CTS_N_M(3) | CTS_N_K(3);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200681 break;
682
683 case AFMT_I2S:
Jean-Francois Moine10df1a92014-01-25 18:14:40 +0100684 reg_write(priv, REG_MUX_AP, MUX_AP_SELECT_I2S);
685 clksel_aip = AIP_CLKSEL_AIP_I2S;
686 clksel_fs = AIP_CLKSEL_FS_ACLK;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200687 cts_n = CTS_N_M(3) | CTS_N_K(3);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200688 break;
David Herrmann3b288022013-09-01 15:23:04 +0200689
690 default:
691 BUG();
692 return;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200693 }
694
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100695 reg_write(priv, REG_AIP_CLKSEL, clksel_aip);
Jean-Francois Moinea8b517e2014-01-25 18:14:39 +0100696 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_LAYOUT |
697 AIP_CNTRL_0_ACR_MAN); /* auto CTS */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100698 reg_write(priv, REG_CTS_N, cts_n);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200699
700 /*
701 * Audio input somehow depends on HDMI line rate which is
702 * related to pixclk. Testing showed that modes with pixclk
703 * >100MHz need a larger divider while <40MHz need the default.
704 * There is no detailed info in the datasheet, so we just
705 * assume 100MHz requires larger divider.
706 */
Jean-Francois Moine2470fec2014-01-25 18:14:36 +0100707 adiv = AUDIO_DIV_SERCLK_8;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200708 if (mode->clock > 100000)
Jean-Francois Moine2470fec2014-01-25 18:14:36 +0100709 adiv++; /* AUDIO_DIV_SERCLK_16 */
710
711 /* S/PDIF asks for a larger divider */
712 if (p->audio_format == AFMT_SPDIF)
713 adiv++; /* AUDIO_DIV_SERCLK_16 or _32 */
714
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100715 reg_write(priv, REG_AUDIO_DIV, adiv);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200716
717 /*
718 * This is the approximate value of N, which happens to be
719 * the recommended values for non-coherent clocks.
720 */
721 n = 128 * p->audio_sample_rate / 1000;
722
723 /* Write the CTS and N values */
724 buf[0] = 0x44;
725 buf[1] = 0x42;
726 buf[2] = 0x01;
727 buf[3] = n;
728 buf[4] = n >> 8;
729 buf[5] = n >> 16;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100730 reg_write_range(priv, REG_ACR_CTS_0, buf, 6);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200731
732 /* Set CTS clock reference */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100733 reg_write(priv, REG_AIP_CLKSEL, clksel_aip | clksel_fs);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200734
735 /* Reset CTS generator */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100736 reg_set(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_CTS);
737 reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_CTS);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200738
739 /* Write the channel status */
Jean-Francois Moinef0b33b22014-01-25 18:14:39 +0100740 buf[0] = IEC958_AES0_CON_NOT_COPYRIGHT;
Russell Kingc4c11dd2013-08-14 21:43:30 +0200741 buf[1] = 0x00;
Jean-Francois Moinef0b33b22014-01-25 18:14:39 +0100742 buf[2] = IEC958_AES3_CON_FS_NOTID;
743 buf[3] = IEC958_AES4_CON_ORIGFS_NOTID |
744 IEC958_AES4_CON_MAX_WORDLEN_24;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100745 reg_write_range(priv, REG_CH_STAT_B(0), buf, 4);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200746
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100747 tda998x_audio_mute(priv, true);
Jean-Francois Moine73d5e252014-01-25 18:14:44 +0100748 msleep(20);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100749 tda998x_audio_mute(priv, false);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200750
751 /* Write the audio information packet */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100752 tda998x_write_aif(priv, p);
Russell Kingc4c11dd2013-08-14 21:43:30 +0200753}
754
Rob Clarke7792ce2013-01-08 19:21:02 -0600755/* DRM encoder functions */
756
Russell Kinga8f4d4d62014-02-07 19:17:21 +0000757static void tda998x_encoder_set_config(struct tda998x_priv *priv,
758 const struct tda998x_encoder_params *p)
Rob Clarke7792ce2013-01-08 19:21:02 -0600759{
Russell Kingc4c11dd2013-08-14 21:43:30 +0200760 priv->vip_cntrl_0 = VIP_CNTRL_0_SWAP_A(p->swap_a) |
761 (p->mirr_a ? VIP_CNTRL_0_MIRR_A : 0) |
762 VIP_CNTRL_0_SWAP_B(p->swap_b) |
763 (p->mirr_b ? VIP_CNTRL_0_MIRR_B : 0);
764 priv->vip_cntrl_1 = VIP_CNTRL_1_SWAP_C(p->swap_c) |
765 (p->mirr_c ? VIP_CNTRL_1_MIRR_C : 0) |
766 VIP_CNTRL_1_SWAP_D(p->swap_d) |
767 (p->mirr_d ? VIP_CNTRL_1_MIRR_D : 0);
768 priv->vip_cntrl_2 = VIP_CNTRL_2_SWAP_E(p->swap_e) |
769 (p->mirr_e ? VIP_CNTRL_2_MIRR_E : 0) |
770 VIP_CNTRL_2_SWAP_F(p->swap_f) |
771 (p->mirr_f ? VIP_CNTRL_2_MIRR_F : 0);
772
773 priv->params = *p;
Rob Clarke7792ce2013-01-08 19:21:02 -0600774}
775
Russell Kinga8f4d4d62014-02-07 19:17:21 +0000776static void tda998x_encoder_dpms(struct tda998x_priv *priv, int mode)
Rob Clarke7792ce2013-01-08 19:21:02 -0600777{
Rob Clarke7792ce2013-01-08 19:21:02 -0600778 /* we only care about on or off: */
779 if (mode != DRM_MODE_DPMS_ON)
780 mode = DRM_MODE_DPMS_OFF;
781
782 if (mode == priv->dpms)
783 return;
784
785 switch (mode) {
786 case DRM_MODE_DPMS_ON:
Russell Kingc4c11dd2013-08-14 21:43:30 +0200787 /* enable video ports, audio will be enabled later */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100788 reg_write(priv, REG_ENA_VP_0, 0xff);
789 reg_write(priv, REG_ENA_VP_1, 0xff);
790 reg_write(priv, REG_ENA_VP_2, 0xff);
Rob Clarke7792ce2013-01-08 19:21:02 -0600791 /* set muxing after enabling ports: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100792 reg_write(priv, REG_VIP_CNTRL_0, priv->vip_cntrl_0);
793 reg_write(priv, REG_VIP_CNTRL_1, priv->vip_cntrl_1);
794 reg_write(priv, REG_VIP_CNTRL_2, priv->vip_cntrl_2);
Rob Clarke7792ce2013-01-08 19:21:02 -0600795 break;
796 case DRM_MODE_DPMS_OFF:
Russell Kingdb6aaf42013-09-24 10:37:13 +0100797 /* disable video ports */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100798 reg_write(priv, REG_ENA_VP_0, 0x00);
799 reg_write(priv, REG_ENA_VP_1, 0x00);
800 reg_write(priv, REG_ENA_VP_2, 0x00);
Rob Clarke7792ce2013-01-08 19:21:02 -0600801 break;
802 }
803
804 priv->dpms = mode;
805}
806
807static void
808tda998x_encoder_save(struct drm_encoder *encoder)
809{
810 DBG("");
811}
812
813static void
814tda998x_encoder_restore(struct drm_encoder *encoder)
815{
816 DBG("");
817}
818
819static bool
820tda998x_encoder_mode_fixup(struct drm_encoder *encoder,
821 const struct drm_display_mode *mode,
822 struct drm_display_mode *adjusted_mode)
823{
824 return true;
825}
826
Russell Kinga8f4d4d62014-02-07 19:17:21 +0000827static int tda998x_encoder_mode_valid(struct tda998x_priv *priv,
828 struct drm_display_mode *mode)
Rob Clarke7792ce2013-01-08 19:21:02 -0600829{
Russell King92fbdfc2014-02-07 19:52:33 +0000830 if (mode->clock > 150000)
831 return MODE_CLOCK_HIGH;
832 if (mode->htotal >= BIT(13))
833 return MODE_BAD_HVALUE;
834 if (mode->vtotal >= BIT(11))
835 return MODE_BAD_VVALUE;
Rob Clarke7792ce2013-01-08 19:21:02 -0600836 return MODE_OK;
837}
838
839static void
Russell Kinga8f4d4d62014-02-07 19:17:21 +0000840tda998x_encoder_mode_set(struct tda998x_priv *priv,
841 struct drm_display_mode *mode,
842 struct drm_display_mode *adjusted_mode)
Rob Clarke7792ce2013-01-08 19:21:02 -0600843{
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200844 uint16_t ref_pix, ref_line, n_pix, n_line;
845 uint16_t hs_pix_s, hs_pix_e;
846 uint16_t vs1_pix_s, vs1_pix_e, vs1_line_s, vs1_line_e;
847 uint16_t vs2_pix_s, vs2_pix_e, vs2_line_s, vs2_line_e;
848 uint16_t vwin1_line_s, vwin1_line_e;
849 uint16_t vwin2_line_s, vwin2_line_e;
850 uint16_t de_pix_s, de_pix_e;
Rob Clarke7792ce2013-01-08 19:21:02 -0600851 uint8_t reg, div, rep;
852
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200853 /*
854 * Internally TDA998x is using ITU-R BT.656 style sync but
855 * we get VESA style sync. TDA998x is using a reference pixel
856 * relative to ITU to sync to the input frame and for output
857 * sync generation. Currently, we are using reference detection
858 * from HS/VS, i.e. REFPIX/REFLINE denote frame start sync point
859 * which is position of rising VS with coincident rising HS.
860 *
861 * Now there is some issues to take care of:
862 * - HDMI data islands require sync-before-active
863 * - TDA998x register values must be > 0 to be enabled
864 * - REFLINE needs an additional offset of +1
865 * - REFPIX needs an addtional offset of +1 for UYUV and +3 for RGB
866 *
867 * So we add +1 to all horizontal and vertical register values,
868 * plus an additional +3 for REFPIX as we are using RGB input only.
Rob Clarke7792ce2013-01-08 19:21:02 -0600869 */
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200870 n_pix = mode->htotal;
871 n_line = mode->vtotal;
Rob Clarke7792ce2013-01-08 19:21:02 -0600872
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200873 hs_pix_e = mode->hsync_end - mode->hdisplay;
874 hs_pix_s = mode->hsync_start - mode->hdisplay;
875 de_pix_e = mode->htotal;
876 de_pix_s = mode->htotal - mode->hdisplay;
877 ref_pix = 3 + hs_pix_s;
878
Sebastian Hesselbarth179f1aa2013-08-14 21:43:32 +0200879 /*
880 * Attached LCD controllers may generate broken sync. Allow
881 * those to adjust the position of the rising VS edge by adding
882 * HSKEW to ref_pix.
883 */
884 if (adjusted_mode->flags & DRM_MODE_FLAG_HSKEW)
885 ref_pix += adjusted_mode->hskew;
886
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200887 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) == 0) {
888 ref_line = 1 + mode->vsync_start - mode->vdisplay;
889 vwin1_line_s = mode->vtotal - mode->vdisplay - 1;
890 vwin1_line_e = vwin1_line_s + mode->vdisplay;
891 vs1_pix_s = vs1_pix_e = hs_pix_s;
892 vs1_line_s = mode->vsync_start - mode->vdisplay;
893 vs1_line_e = vs1_line_s +
894 mode->vsync_end - mode->vsync_start;
895 vwin2_line_s = vwin2_line_e = 0;
896 vs2_pix_s = vs2_pix_e = 0;
897 vs2_line_s = vs2_line_e = 0;
898 } else {
899 ref_line = 1 + (mode->vsync_start - mode->vdisplay)/2;
900 vwin1_line_s = (mode->vtotal - mode->vdisplay)/2;
901 vwin1_line_e = vwin1_line_s + mode->vdisplay/2;
902 vs1_pix_s = vs1_pix_e = hs_pix_s;
903 vs1_line_s = (mode->vsync_start - mode->vdisplay)/2;
904 vs1_line_e = vs1_line_s +
905 (mode->vsync_end - mode->vsync_start)/2;
906 vwin2_line_s = vwin1_line_s + mode->vtotal/2;
907 vwin2_line_e = vwin2_line_s + mode->vdisplay/2;
908 vs2_pix_s = vs2_pix_e = hs_pix_s + mode->htotal/2;
909 vs2_line_s = vs1_line_s + mode->vtotal/2 ;
910 vs2_line_e = vs2_line_s +
911 (mode->vsync_end - mode->vsync_start)/2;
912 }
Rob Clarke7792ce2013-01-08 19:21:02 -0600913
914 div = 148500 / mode->clock;
Jean-Francois Moine3ae471f2014-01-25 18:14:36 +0100915 if (div != 0) {
916 div--;
917 if (div > 3)
918 div = 3;
919 }
Rob Clarke7792ce2013-01-08 19:21:02 -0600920
Rob Clarke7792ce2013-01-08 19:21:02 -0600921 /* mute the audio FIFO: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100922 reg_set(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_RST_FIFO);
Rob Clarke7792ce2013-01-08 19:21:02 -0600923
924 /* set HDMI HDCP mode off: */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100925 reg_write(priv, REG_TBG_CNTRL_1, TBG_CNTRL_1_DWIN_DIS);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100926 reg_clear(priv, REG_TX33, TX33_HDMI);
927 reg_write(priv, REG_ENC_CNTRL, ENC_CNTRL_CTL_CODE(0));
Rob Clarke7792ce2013-01-08 19:21:02 -0600928
Rob Clarke7792ce2013-01-08 19:21:02 -0600929 /* no pre-filter or interpolator: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100930 reg_write(priv, REG_HVF_CNTRL_0, HVF_CNTRL_0_PREFIL(0) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600931 HVF_CNTRL_0_INTPOL(0));
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100932 reg_write(priv, REG_VIP_CNTRL_5, VIP_CNTRL_5_SP_CNT(0));
933 reg_write(priv, REG_VIP_CNTRL_4, VIP_CNTRL_4_BLANKIT(0) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600934 VIP_CNTRL_4_BLC(0));
Rob Clarke7792ce2013-01-08 19:21:02 -0600935
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100936 reg_clear(priv, REG_PLL_SERIAL_1, PLL_SERIAL_1_SRL_MAN_IZ);
Jean-Francois Moinea8b517e2014-01-25 18:14:39 +0100937 reg_clear(priv, REG_PLL_SERIAL_3, PLL_SERIAL_3_SRL_CCIR |
938 PLL_SERIAL_3_SRL_DE);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100939 reg_write(priv, REG_SERIALIZER, 0);
940 reg_write(priv, REG_HVF_CNTRL_1, HVF_CNTRL_1_VQR(0));
Rob Clarke7792ce2013-01-08 19:21:02 -0600941
942 /* TODO enable pixel repeat for pixel rates less than 25Msamp/s */
943 rep = 0;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100944 reg_write(priv, REG_RPT_CNTRL, 0);
945 reg_write(priv, REG_SEL_CLK, SEL_CLK_SEL_VRF_CLK(0) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600946 SEL_CLK_SEL_CLK1 | SEL_CLK_ENA_SC_CLK);
947
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100948 reg_write(priv, REG_PLL_SERIAL_2, PLL_SERIAL_2_SRL_NOSC(div) |
Rob Clarke7792ce2013-01-08 19:21:02 -0600949 PLL_SERIAL_2_SRL_PR(rep));
950
Rob Clarke7792ce2013-01-08 19:21:02 -0600951 /* set color matrix bypass flag: */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100952 reg_write(priv, REG_MAT_CONTRL, MAT_CONTRL_MAT_BP |
953 MAT_CONTRL_MAT_SC(1));
Rob Clarke7792ce2013-01-08 19:21:02 -0600954
955 /* set BIAS tmds value: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100956 reg_write(priv, REG_ANA_GENERAL, 0x09);
Rob Clarke7792ce2013-01-08 19:21:02 -0600957
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200958 /*
959 * Sync on rising HSYNC/VSYNC
960 */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100961 reg = VIP_CNTRL_3_SYNC_HS;
Sebastian Hesselbarth088d61d2013-08-14 21:43:31 +0200962
963 /*
964 * TDA19988 requires high-active sync at input stage,
965 * so invert low-active sync provided by master encoder here
966 */
967 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100968 reg |= VIP_CNTRL_3_H_TGL;
Rob Clarke7792ce2013-01-08 19:21:02 -0600969 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
Jean-Francois Moine81b53a12014-01-25 18:14:42 +0100970 reg |= VIP_CNTRL_3_V_TGL;
971 reg_write(priv, REG_VIP_CNTRL_3, reg);
Rob Clarke7792ce2013-01-08 19:21:02 -0600972
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100973 reg_write(priv, REG_VIDFORMAT, 0x00);
974 reg_write16(priv, REG_REFPIX_MSB, ref_pix);
975 reg_write16(priv, REG_REFLINE_MSB, ref_line);
976 reg_write16(priv, REG_NPIX_MSB, n_pix);
977 reg_write16(priv, REG_NLINE_MSB, n_line);
978 reg_write16(priv, REG_VS_LINE_STRT_1_MSB, vs1_line_s);
979 reg_write16(priv, REG_VS_PIX_STRT_1_MSB, vs1_pix_s);
980 reg_write16(priv, REG_VS_LINE_END_1_MSB, vs1_line_e);
981 reg_write16(priv, REG_VS_PIX_END_1_MSB, vs1_pix_e);
982 reg_write16(priv, REG_VS_LINE_STRT_2_MSB, vs2_line_s);
983 reg_write16(priv, REG_VS_PIX_STRT_2_MSB, vs2_pix_s);
984 reg_write16(priv, REG_VS_LINE_END_2_MSB, vs2_line_e);
985 reg_write16(priv, REG_VS_PIX_END_2_MSB, vs2_pix_e);
986 reg_write16(priv, REG_HS_PIX_START_MSB, hs_pix_s);
987 reg_write16(priv, REG_HS_PIX_STOP_MSB, hs_pix_e);
988 reg_write16(priv, REG_VWIN_START_1_MSB, vwin1_line_s);
989 reg_write16(priv, REG_VWIN_END_1_MSB, vwin1_line_e);
990 reg_write16(priv, REG_VWIN_START_2_MSB, vwin2_line_s);
991 reg_write16(priv, REG_VWIN_END_2_MSB, vwin2_line_e);
992 reg_write16(priv, REG_DE_START_MSB, de_pix_s);
993 reg_write16(priv, REG_DE_STOP_MSB, de_pix_e);
Rob Clarke7792ce2013-01-08 19:21:02 -0600994
995 if (priv->rev == TDA19988) {
996 /* let incoming pixels fill the active space (if any) */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +0100997 reg_write(priv, REG_ENABLE_SPACE, 0x00);
Rob Clarke7792ce2013-01-08 19:21:02 -0600998 }
999
Jean-Francois Moine81b53a12014-01-25 18:14:42 +01001000 /*
1001 * Always generate sync polarity relative to input sync and
1002 * revert input stage toggled sync at output stage
1003 */
1004 reg = TBG_CNTRL_1_DWIN_DIS | TBG_CNTRL_1_TGL_EN;
1005 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1006 reg |= TBG_CNTRL_1_H_TGL;
1007 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1008 reg |= TBG_CNTRL_1_V_TGL;
1009 reg_write(priv, REG_TBG_CNTRL_1, reg);
1010
Rob Clarke7792ce2013-01-08 19:21:02 -06001011 /* must be last register set: */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +01001012 reg_write(priv, REG_TBG_CNTRL_0, 0);
Russell Kingc4c11dd2013-08-14 21:43:30 +02001013
1014 /* Only setup the info frames if the sink is HDMI */
1015 if (priv->is_hdmi_sink) {
1016 /* We need to turn HDMI HDCP stuff on to get audio through */
Jean-Francois Moine81b53a12014-01-25 18:14:42 +01001017 reg &= ~TBG_CNTRL_1_DWIN_DIS;
1018 reg_write(priv, REG_TBG_CNTRL_1, reg);
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001019 reg_write(priv, REG_ENC_CNTRL, ENC_CNTRL_CTL_CODE(1));
1020 reg_set(priv, REG_TX33, TX33_HDMI);
Russell Kingc4c11dd2013-08-14 21:43:30 +02001021
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001022 tda998x_write_avi(priv, adjusted_mode);
Russell Kingc4c11dd2013-08-14 21:43:30 +02001023
1024 if (priv->params.audio_cfg)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001025 tda998x_configure_audio(priv, adjusted_mode,
Russell Kingc4c11dd2013-08-14 21:43:30 +02001026 &priv->params);
1027 }
Rob Clarke7792ce2013-01-08 19:21:02 -06001028}
1029
1030static enum drm_connector_status
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001031tda998x_encoder_detect(struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -06001032{
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001033 uint8_t val = cec_read(priv, REG_CEC_RXSHPDLEV);
1034
Rob Clarke7792ce2013-01-08 19:21:02 -06001035 return (val & CEC_RXSHPDLEV_HPD) ? connector_status_connected :
1036 connector_status_disconnected;
1037}
1038
Laurent Pinchart07259f82015-01-16 18:37:43 +02001039static int read_edid_block(void *data, u8 *buf, unsigned int blk, size_t length)
Rob Clarke7792ce2013-01-08 19:21:02 -06001040{
Laurent Pinchart07259f82015-01-16 18:37:43 +02001041 struct tda998x_priv *priv = data;
Rob Clarke7792ce2013-01-08 19:21:02 -06001042 uint8_t offset, segptr;
1043 int ret, i;
1044
Rob Clarke7792ce2013-01-08 19:21:02 -06001045 offset = (blk & 1) ? 128 : 0;
1046 segptr = blk / 2;
1047
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001048 reg_write(priv, REG_DDC_ADDR, 0xa0);
1049 reg_write(priv, REG_DDC_OFFS, offset);
1050 reg_write(priv, REG_DDC_SEGM_ADDR, 0x60);
1051 reg_write(priv, REG_DDC_SEGM, segptr);
Rob Clarke7792ce2013-01-08 19:21:02 -06001052
1053 /* enable reading EDID: */
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001054 priv->wq_edid_wait = 1;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001055 reg_write(priv, REG_EDID_CTRL, 0x1);
Rob Clarke7792ce2013-01-08 19:21:02 -06001056
1057 /* flag must be cleared by sw: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001058 reg_write(priv, REG_EDID_CTRL, 0x0);
Rob Clarke7792ce2013-01-08 19:21:02 -06001059
1060 /* wait for block read to complete: */
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001061 if (priv->hdmi->irq) {
1062 i = wait_event_timeout(priv->wq_edid,
1063 !priv->wq_edid_wait,
1064 msecs_to_jiffies(100));
1065 if (i < 0) {
Russell King5e7fe2f2014-02-07 19:13:23 +00001066 dev_err(&priv->hdmi->dev, "read edid wait err %d\n", i);
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001067 return i;
1068 }
1069 } else {
Russell King713456d2014-03-03 14:09:36 +00001070 for (i = 100; i > 0; i--) {
1071 msleep(1);
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001072 ret = reg_read(priv, REG_INT_FLAGS_2);
1073 if (ret < 0)
1074 return ret;
1075 if (ret & INT_FLAGS_2_EDID_BLK_RD)
1076 break;
1077 }
Rob Clarke7792ce2013-01-08 19:21:02 -06001078 }
1079
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001080 if (i == 0) {
Russell King5e7fe2f2014-02-07 19:13:23 +00001081 dev_err(&priv->hdmi->dev, "read edid timeout\n");
Rob Clarke7792ce2013-01-08 19:21:02 -06001082 return -ETIMEDOUT;
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001083 }
Rob Clarke7792ce2013-01-08 19:21:02 -06001084
Laurent Pinchart07259f82015-01-16 18:37:43 +02001085 ret = reg_read_range(priv, REG_EDID_DATA_0, buf, length);
1086 if (ret != length) {
Russell King5e7fe2f2014-02-07 19:13:23 +00001087 dev_err(&priv->hdmi->dev, "failed to read edid block %d: %d\n",
1088 blk, ret);
Rob Clarke7792ce2013-01-08 19:21:02 -06001089 return ret;
1090 }
1091
Rob Clarke7792ce2013-01-08 19:21:02 -06001092 return 0;
1093}
1094
Rob Clarke7792ce2013-01-08 19:21:02 -06001095static int
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001096tda998x_encoder_get_modes(struct tda998x_priv *priv,
1097 struct drm_connector *connector)
Rob Clarke7792ce2013-01-08 19:21:02 -06001098{
Laurent Pinchart07259f82015-01-16 18:37:43 +02001099 struct edid *edid;
1100 int n;
Rob Clarke7792ce2013-01-08 19:21:02 -06001101
Laurent Pinchart07259f82015-01-16 18:37:43 +02001102 if (priv->rev == TDA19988)
1103 reg_clear(priv, REG_TX4, TX4_PD_RAM);
1104
1105 edid = drm_do_get_edid(connector, read_edid_block, priv);
1106
1107 if (priv->rev == TDA19988)
1108 reg_set(priv, REG_TX4, TX4_PD_RAM);
1109
1110 if (!edid) {
1111 dev_warn(&priv->hdmi->dev, "failed to read EDID\n");
1112 return 0;
Rob Clarke7792ce2013-01-08 19:21:02 -06001113 }
1114
Laurent Pinchart07259f82015-01-16 18:37:43 +02001115 drm_mode_connector_update_edid_property(connector, edid);
1116 n = drm_add_edid_modes(connector, edid);
1117 priv->is_hdmi_sink = drm_detect_hdmi_monitor(edid);
1118 kfree(edid);
1119
Rob Clarke7792ce2013-01-08 19:21:02 -06001120 return n;
1121}
1122
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001123static void tda998x_encoder_set_polling(struct tda998x_priv *priv,
1124 struct drm_connector *connector)
Rob Clarke7792ce2013-01-08 19:21:02 -06001125{
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001126 if (priv->hdmi->irq)
1127 connector->polled = DRM_CONNECTOR_POLL_HPD;
1128 else
1129 connector->polled = DRM_CONNECTOR_POLL_CONNECT |
1130 DRM_CONNECTOR_POLL_DISCONNECT;
Rob Clarke7792ce2013-01-08 19:21:02 -06001131}
1132
1133static int
1134tda998x_encoder_set_property(struct drm_encoder *encoder,
1135 struct drm_connector *connector,
1136 struct drm_property *property,
1137 uint64_t val)
1138{
1139 DBG("");
1140 return 0;
1141}
1142
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001143static void tda998x_destroy(struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -06001144{
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001145 /* disable all IRQs and free the IRQ handler */
1146 cec_write(priv, REG_CEC_RXSHPDINTENA, 0);
1147 reg_clear(priv, REG_INT_FLAGS_2, INT_FLAGS_2_EDID_BLK_RD);
Jean-Francois Moine6833d262014-11-29 08:57:15 +01001148 if (priv->hdmi->irq) {
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001149 free_irq(priv->hdmi->irq, priv);
Jean-Francois Moine6833d262014-11-29 08:57:15 +01001150 cancel_delayed_work_sync(&priv->dwork);
1151 }
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001152
Jean-Francois Moine89fc8682014-07-07 17:59:51 +02001153 i2c_unregister_device(priv->cec);
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001154}
1155
1156/* Slave encoder support */
1157
1158static void
1159tda998x_encoder_slave_set_config(struct drm_encoder *encoder, void *params)
1160{
1161 tda998x_encoder_set_config(to_tda998x_priv(encoder), params);
1162}
1163
1164static void tda998x_encoder_slave_destroy(struct drm_encoder *encoder)
1165{
1166 struct tda998x_priv *priv = to_tda998x_priv(encoder);
1167
1168 tda998x_destroy(priv);
Guido Martínez2e48cec2014-06-17 11:17:03 -03001169 drm_i2c_encoder_destroy(encoder);
Rob Clarke7792ce2013-01-08 19:21:02 -06001170 kfree(priv);
1171}
1172
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001173static void tda998x_encoder_slave_dpms(struct drm_encoder *encoder, int mode)
1174{
1175 tda998x_encoder_dpms(to_tda998x_priv(encoder), mode);
1176}
1177
1178static int tda998x_encoder_slave_mode_valid(struct drm_encoder *encoder,
1179 struct drm_display_mode *mode)
1180{
1181 return tda998x_encoder_mode_valid(to_tda998x_priv(encoder), mode);
1182}
1183
1184static void
1185tda998x_encoder_slave_mode_set(struct drm_encoder *encoder,
1186 struct drm_display_mode *mode,
1187 struct drm_display_mode *adjusted_mode)
1188{
1189 tda998x_encoder_mode_set(to_tda998x_priv(encoder), mode, adjusted_mode);
1190}
1191
1192static enum drm_connector_status
1193tda998x_encoder_slave_detect(struct drm_encoder *encoder,
1194 struct drm_connector *connector)
1195{
1196 return tda998x_encoder_detect(to_tda998x_priv(encoder));
1197}
1198
1199static int tda998x_encoder_slave_get_modes(struct drm_encoder *encoder,
1200 struct drm_connector *connector)
1201{
1202 return tda998x_encoder_get_modes(to_tda998x_priv(encoder), connector);
1203}
1204
1205static int
1206tda998x_encoder_slave_create_resources(struct drm_encoder *encoder,
1207 struct drm_connector *connector)
1208{
1209 tda998x_encoder_set_polling(to_tda998x_priv(encoder), connector);
1210 return 0;
1211}
1212
1213static struct drm_encoder_slave_funcs tda998x_encoder_slave_funcs = {
1214 .set_config = tda998x_encoder_slave_set_config,
1215 .destroy = tda998x_encoder_slave_destroy,
1216 .dpms = tda998x_encoder_slave_dpms,
Rob Clarke7792ce2013-01-08 19:21:02 -06001217 .save = tda998x_encoder_save,
1218 .restore = tda998x_encoder_restore,
1219 .mode_fixup = tda998x_encoder_mode_fixup,
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001220 .mode_valid = tda998x_encoder_slave_mode_valid,
1221 .mode_set = tda998x_encoder_slave_mode_set,
1222 .detect = tda998x_encoder_slave_detect,
1223 .get_modes = tda998x_encoder_slave_get_modes,
1224 .create_resources = tda998x_encoder_slave_create_resources,
Rob Clarke7792ce2013-01-08 19:21:02 -06001225 .set_property = tda998x_encoder_set_property,
1226};
1227
1228/* I2C driver functions */
1229
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001230static int tda998x_create(struct i2c_client *client, struct tda998x_priv *priv)
Rob Clarke7792ce2013-01-08 19:21:02 -06001231{
Jean-Francois Moine0d44ea12014-01-25 18:14:41 +01001232 struct device_node *np = client->dev.of_node;
1233 u32 video;
Russell Kingfb7544d2014-02-02 16:18:24 +00001234 int rev_lo, rev_hi, ret;
Andrew Jacksoncfe38752014-11-07 08:31:25 +00001235 unsigned short cec_addr;
Rob Clarke7792ce2013-01-08 19:21:02 -06001236
Russell King5e74c222013-08-14 21:43:29 +02001237 priv->vip_cntrl_0 = VIP_CNTRL_0_SWAP_A(2) | VIP_CNTRL_0_SWAP_B(3);
1238 priv->vip_cntrl_1 = VIP_CNTRL_1_SWAP_C(0) | VIP_CNTRL_1_SWAP_D(1);
1239 priv->vip_cntrl_2 = VIP_CNTRL_2_SWAP_E(4) | VIP_CNTRL_2_SWAP_F(5);
1240
Jean-Francois Moine2eb4c7b2014-01-25 18:14:45 +01001241 priv->current_page = 0xff;
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001242 priv->hdmi = client;
Andrew Jacksoncfe38752014-11-07 08:31:25 +00001243 /* CEC I2C address bound to TDA998x I2C addr by configuration pins */
1244 cec_addr = 0x34 + (client->addr & 0x03);
1245 priv->cec = i2c_new_dummy(client->adapter, cec_addr);
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001246 if (!priv->cec)
Jean-Francois Moine6ae668c2014-01-25 18:14:43 +01001247 return -ENODEV;
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001248
Rob Clarke7792ce2013-01-08 19:21:02 -06001249 priv->dpms = DRM_MODE_DPMS_OFF;
1250
Jean-Francois Moineed9a8422014-11-29 08:30:51 +01001251 mutex_init(&priv->mutex); /* protect the page access */
1252
Rob Clarke7792ce2013-01-08 19:21:02 -06001253 /* wake up the device: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001254 cec_write(priv, REG_CEC_ENAMODS,
Rob Clarke7792ce2013-01-08 19:21:02 -06001255 CEC_ENAMODS_EN_RXSENS | CEC_ENAMODS_EN_HDMI);
1256
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001257 tda998x_reset(priv);
Rob Clarke7792ce2013-01-08 19:21:02 -06001258
1259 /* read version: */
Russell Kingfb7544d2014-02-02 16:18:24 +00001260 rev_lo = reg_read(priv, REG_VERSION_LSB);
1261 rev_hi = reg_read(priv, REG_VERSION_MSB);
1262 if (rev_lo < 0 || rev_hi < 0) {
1263 ret = rev_lo < 0 ? rev_lo : rev_hi;
Jean-Francois Moine7d2eadc2014-01-25 18:14:45 +01001264 goto fail;
Russell Kingfb7544d2014-02-02 16:18:24 +00001265 }
1266
1267 priv->rev = rev_lo | rev_hi << 8;
Rob Clarke7792ce2013-01-08 19:21:02 -06001268
1269 /* mask off feature bits: */
1270 priv->rev &= ~0x30; /* not-hdcp and not-scalar bit */
1271
1272 switch (priv->rev) {
Jean-Francois Moineb728fab2014-01-25 18:14:46 +01001273 case TDA9989N2:
1274 dev_info(&client->dev, "found TDA9989 n2");
1275 break;
1276 case TDA19989:
1277 dev_info(&client->dev, "found TDA19989");
1278 break;
1279 case TDA19989N2:
1280 dev_info(&client->dev, "found TDA19989 n2");
1281 break;
1282 case TDA19988:
1283 dev_info(&client->dev, "found TDA19988");
1284 break;
Rob Clarke7792ce2013-01-08 19:21:02 -06001285 default:
Jean-Francois Moineb728fab2014-01-25 18:14:46 +01001286 dev_err(&client->dev, "found unsupported device: %04x\n",
1287 priv->rev);
Rob Clarke7792ce2013-01-08 19:21:02 -06001288 goto fail;
1289 }
1290
1291 /* after reset, enable DDC: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001292 reg_write(priv, REG_DDC_DISABLE, 0x00);
Rob Clarke7792ce2013-01-08 19:21:02 -06001293
1294 /* set clock on DDC channel: */
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001295 reg_write(priv, REG_TX3, 39);
Rob Clarke7792ce2013-01-08 19:21:02 -06001296
1297 /* if necessary, disable multi-master: */
1298 if (priv->rev == TDA19989)
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001299 reg_set(priv, REG_I2C_MASTER, I2C_MASTER_DIS_MM);
Rob Clarke7792ce2013-01-08 19:21:02 -06001300
Jean-Francois Moine2f7f7302014-01-25 18:14:47 +01001301 cec_write(priv, REG_CEC_FRO_IM_CLK_CTRL,
Rob Clarke7792ce2013-01-08 19:21:02 -06001302 CEC_FRO_IM_CLK_CTRL_GHOST_DIS | CEC_FRO_IM_CLK_CTRL_IMCLK_SEL);
1303
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001304 /* initialize the optional IRQ */
1305 if (client->irq) {
1306 int irqf_trigger;
1307
Jean-Francois Moine6833d262014-11-29 08:57:15 +01001308 /* init read EDID waitqueue and HDP work */
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001309 init_waitqueue_head(&priv->wq_edid);
Jean-Francois Moine6833d262014-11-29 08:57:15 +01001310 INIT_DELAYED_WORK(&priv->dwork, tda998x_hpd);
Jean-Francois Moine12473b72014-01-25 18:14:38 +01001311
1312 /* clear pending interrupts */
1313 reg_read(priv, REG_INT_FLAGS_0);
1314 reg_read(priv, REG_INT_FLAGS_1);
1315 reg_read(priv, REG_INT_FLAGS_2);
1316
1317 irqf_trigger =
1318 irqd_get_trigger_type(irq_get_irq_data(client->irq));
1319 ret = request_threaded_irq(client->irq, NULL,
1320 tda998x_irq_thread,
1321 irqf_trigger | IRQF_ONESHOT,
1322 "tda998x", priv);
1323 if (ret) {
1324 dev_err(&client->dev,
1325 "failed to request IRQ#%u: %d\n",
1326 client->irq, ret);
1327 goto fail;
1328 }
1329
1330 /* enable HPD irq */
1331 cec_write(priv, REG_CEC_RXSHPDINTENA, CEC_RXSHPDLEV_HPD);
1332 }
1333
Jean-Francois Moinee4782622014-01-25 18:14:38 +01001334 /* enable EDID read irq: */
1335 reg_set(priv, REG_INT_FLAGS_2, INT_FLAGS_2_EDID_BLK_RD);
1336
Jean-Francois Moine0d44ea12014-01-25 18:14:41 +01001337 if (!np)
1338 return 0; /* non-DT */
1339
1340 /* get the optional video properties */
1341 ret = of_property_read_u32(np, "video-ports", &video);
1342 if (ret == 0) {
1343 priv->vip_cntrl_0 = video >> 16;
1344 priv->vip_cntrl_1 = video >> 8;
1345 priv->vip_cntrl_2 = video;
1346 }
1347
Rob Clarke7792ce2013-01-08 19:21:02 -06001348 return 0;
1349
1350fail:
1351 /* if encoder_init fails, the encoder slave is never registered,
1352 * so cleanup here:
1353 */
1354 if (priv->cec)
1355 i2c_unregister_device(priv->cec);
Rob Clarke7792ce2013-01-08 19:21:02 -06001356 return -ENXIO;
1357}
1358
Russell Kinga8f4d4d62014-02-07 19:17:21 +00001359static int tda998x_encoder_init(struct i2c_client *client,
1360 struct drm_device *dev,
1361 struct drm_encoder_slave *encoder_slave)
1362{
1363 struct tda998x_priv *priv;
1364 int ret;
1365
1366 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1367 if (!priv)
1368 return -ENOMEM;
1369
1370 priv->encoder = &encoder_slave->base;
1371
1372 ret = tda998x_create(client, priv);
1373 if (ret) {
1374 kfree(priv);
1375 return ret;
1376 }
1377
1378 encoder_slave->slave_priv = priv;
1379 encoder_slave->slave_funcs = &tda998x_encoder_slave_funcs;
1380
1381 return 0;
1382}
1383
Russell Kingc707c362014-02-07 19:49:44 +00001384struct tda998x_priv2 {
1385 struct tda998x_priv base;
1386 struct drm_encoder encoder;
1387 struct drm_connector connector;
1388};
1389
1390#define conn_to_tda998x_priv2(x) \
1391 container_of(x, struct tda998x_priv2, connector);
1392
1393#define enc_to_tda998x_priv2(x) \
1394 container_of(x, struct tda998x_priv2, encoder);
1395
1396static void tda998x_encoder2_dpms(struct drm_encoder *encoder, int mode)
1397{
1398 struct tda998x_priv2 *priv = enc_to_tda998x_priv2(encoder);
1399
1400 tda998x_encoder_dpms(&priv->base, mode);
1401}
1402
1403static void tda998x_encoder_prepare(struct drm_encoder *encoder)
1404{
1405 tda998x_encoder2_dpms(encoder, DRM_MODE_DPMS_OFF);
1406}
1407
1408static void tda998x_encoder_commit(struct drm_encoder *encoder)
1409{
1410 tda998x_encoder2_dpms(encoder, DRM_MODE_DPMS_ON);
1411}
1412
1413static void tda998x_encoder2_mode_set(struct drm_encoder *encoder,
1414 struct drm_display_mode *mode,
1415 struct drm_display_mode *adjusted_mode)
1416{
1417 struct tda998x_priv2 *priv = enc_to_tda998x_priv2(encoder);
1418
1419 tda998x_encoder_mode_set(&priv->base, mode, adjusted_mode);
1420}
1421
1422static const struct drm_encoder_helper_funcs tda998x_encoder_helper_funcs = {
1423 .dpms = tda998x_encoder2_dpms,
1424 .save = tda998x_encoder_save,
1425 .restore = tda998x_encoder_restore,
1426 .mode_fixup = tda998x_encoder_mode_fixup,
1427 .prepare = tda998x_encoder_prepare,
1428 .commit = tda998x_encoder_commit,
1429 .mode_set = tda998x_encoder2_mode_set,
1430};
1431
1432static void tda998x_encoder_destroy(struct drm_encoder *encoder)
1433{
1434 struct tda998x_priv2 *priv = enc_to_tda998x_priv2(encoder);
1435
1436 tda998x_destroy(&priv->base);
1437 drm_encoder_cleanup(encoder);
1438}
1439
1440static const struct drm_encoder_funcs tda998x_encoder_funcs = {
1441 .destroy = tda998x_encoder_destroy,
1442};
1443
1444static int tda998x_connector_get_modes(struct drm_connector *connector)
1445{
1446 struct tda998x_priv2 *priv = conn_to_tda998x_priv2(connector);
1447
1448 return tda998x_encoder_get_modes(&priv->base, connector);
1449}
1450
1451static int tda998x_connector_mode_valid(struct drm_connector *connector,
1452 struct drm_display_mode *mode)
1453{
1454 struct tda998x_priv2 *priv = conn_to_tda998x_priv2(connector);
1455
1456 return tda998x_encoder_mode_valid(&priv->base, mode);
1457}
1458
1459static struct drm_encoder *
1460tda998x_connector_best_encoder(struct drm_connector *connector)
1461{
1462 struct tda998x_priv2 *priv = conn_to_tda998x_priv2(connector);
1463
1464 return &priv->encoder;
1465}
1466
1467static
1468const struct drm_connector_helper_funcs tda998x_connector_helper_funcs = {
1469 .get_modes = tda998x_connector_get_modes,
1470 .mode_valid = tda998x_connector_mode_valid,
1471 .best_encoder = tda998x_connector_best_encoder,
1472};
1473
1474static enum drm_connector_status
1475tda998x_connector_detect(struct drm_connector *connector, bool force)
1476{
1477 struct tda998x_priv2 *priv = conn_to_tda998x_priv2(connector);
1478
1479 return tda998x_encoder_detect(&priv->base);
1480}
1481
1482static void tda998x_connector_destroy(struct drm_connector *connector)
1483{
Dave Airlie74cd62e2014-08-05 10:34:33 +10001484 drm_connector_unregister(connector);
Russell Kingc707c362014-02-07 19:49:44 +00001485 drm_connector_cleanup(connector);
1486}
1487
1488static const struct drm_connector_funcs tda998x_connector_funcs = {
1489 .dpms = drm_helper_connector_dpms,
1490 .fill_modes = drm_helper_probe_single_connector_modes,
1491 .detect = tda998x_connector_detect,
1492 .destroy = tda998x_connector_destroy,
1493};
1494
1495static int tda998x_bind(struct device *dev, struct device *master, void *data)
1496{
1497 struct tda998x_encoder_params *params = dev->platform_data;
1498 struct i2c_client *client = to_i2c_client(dev);
1499 struct drm_device *drm = data;
1500 struct tda998x_priv2 *priv;
Russell King5dbcf312014-06-15 11:11:10 +01001501 uint32_t crtcs = 0;
Russell Kingc707c362014-02-07 19:49:44 +00001502 int ret;
1503
1504 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
1505 if (!priv)
1506 return -ENOMEM;
1507
1508 dev_set_drvdata(dev, priv);
1509
Russell King5dbcf312014-06-15 11:11:10 +01001510 if (dev->of_node)
1511 crtcs = drm_of_find_possible_crtcs(drm, dev->of_node);
1512
1513 /* If no CRTCs were found, fall back to our old behaviour */
1514 if (crtcs == 0) {
1515 dev_warn(dev, "Falling back to first CRTC\n");
1516 crtcs = 1 << 0;
1517 }
1518
Russell Kingc707c362014-02-07 19:49:44 +00001519 priv->base.encoder = &priv->encoder;
1520 priv->connector.interlace_allowed = 1;
Russell King5dbcf312014-06-15 11:11:10 +01001521 priv->encoder.possible_crtcs = crtcs;
Russell Kingc707c362014-02-07 19:49:44 +00001522
1523 ret = tda998x_create(client, &priv->base);
1524 if (ret)
1525 return ret;
1526
1527 if (!dev->of_node && params)
1528 tda998x_encoder_set_config(&priv->base, params);
1529
1530 tda998x_encoder_set_polling(&priv->base, &priv->connector);
1531
1532 drm_encoder_helper_add(&priv->encoder, &tda998x_encoder_helper_funcs);
1533 ret = drm_encoder_init(drm, &priv->encoder, &tda998x_encoder_funcs,
1534 DRM_MODE_ENCODER_TMDS);
1535 if (ret)
1536 goto err_encoder;
1537
1538 drm_connector_helper_add(&priv->connector,
1539 &tda998x_connector_helper_funcs);
1540 ret = drm_connector_init(drm, &priv->connector,
1541 &tda998x_connector_funcs,
1542 DRM_MODE_CONNECTOR_HDMIA);
1543 if (ret)
1544 goto err_connector;
1545
Dave Airlie74cd62e2014-08-05 10:34:33 +10001546 ret = drm_connector_register(&priv->connector);
Russell Kingc707c362014-02-07 19:49:44 +00001547 if (ret)
1548 goto err_sysfs;
1549
1550 priv->connector.encoder = &priv->encoder;
1551 drm_mode_connector_attach_encoder(&priv->connector, &priv->encoder);
1552
1553 return 0;
1554
1555err_sysfs:
1556 drm_connector_cleanup(&priv->connector);
1557err_connector:
1558 drm_encoder_cleanup(&priv->encoder);
1559err_encoder:
1560 tda998x_destroy(&priv->base);
1561 return ret;
1562}
1563
1564static void tda998x_unbind(struct device *dev, struct device *master,
1565 void *data)
1566{
1567 struct tda998x_priv2 *priv = dev_get_drvdata(dev);
1568
1569 drm_connector_cleanup(&priv->connector);
1570 drm_encoder_cleanup(&priv->encoder);
1571 tda998x_destroy(&priv->base);
1572}
1573
1574static const struct component_ops tda998x_ops = {
1575 .bind = tda998x_bind,
1576 .unbind = tda998x_unbind,
1577};
1578
1579static int
1580tda998x_probe(struct i2c_client *client, const struct i2c_device_id *id)
1581{
1582 return component_add(&client->dev, &tda998x_ops);
1583}
1584
1585static int tda998x_remove(struct i2c_client *client)
1586{
1587 component_del(&client->dev, &tda998x_ops);
1588 return 0;
1589}
1590
Jean-Francois Moine0d44ea12014-01-25 18:14:41 +01001591#ifdef CONFIG_OF
1592static const struct of_device_id tda998x_dt_ids[] = {
1593 { .compatible = "nxp,tda998x", },
1594 { }
1595};
1596MODULE_DEVICE_TABLE(of, tda998x_dt_ids);
1597#endif
1598
Rob Clarke7792ce2013-01-08 19:21:02 -06001599static struct i2c_device_id tda998x_ids[] = {
1600 { "tda998x", 0 },
1601 { }
1602};
1603MODULE_DEVICE_TABLE(i2c, tda998x_ids);
1604
1605static struct drm_i2c_encoder_driver tda998x_driver = {
1606 .i2c_driver = {
1607 .probe = tda998x_probe,
1608 .remove = tda998x_remove,
1609 .driver = {
1610 .name = "tda998x",
Jean-Francois Moine0d44ea12014-01-25 18:14:41 +01001611 .of_match_table = of_match_ptr(tda998x_dt_ids),
Rob Clarke7792ce2013-01-08 19:21:02 -06001612 },
1613 .id_table = tda998x_ids,
1614 },
1615 .encoder_init = tda998x_encoder_init,
1616};
1617
1618/* Module initialization */
1619
1620static int __init
1621tda998x_init(void)
1622{
1623 DBG("");
1624 return drm_i2c_encoder_register(THIS_MODULE, &tda998x_driver);
1625}
1626
1627static void __exit
1628tda998x_exit(void)
1629{
1630 DBG("");
1631 drm_i2c_encoder_unregister(&tda998x_driver);
1632}
1633
1634MODULE_AUTHOR("Rob Clark <robdclark@gmail.com");
1635MODULE_DESCRIPTION("NXP Semiconductors TDA998X HDMI Encoder");
1636MODULE_LICENSE("GPL");
1637
1638module_init(tda998x_init);
1639module_exit(tda998x_exit);