dvo_tfp410.c 8.0 KB
Newer Older
J
Jesse Barnes 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
/*
 * Copyright © 2007 Dave Mueller
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 *
 * Authors:
 *    Dave Mueller <dave.mueller@gmx.ch>
 *
 */

#include "dvo.h"

/* register definitions according to the TFP410 data sheet */
#define TFP410_VID		0x014C
#define TFP410_DID		0x0410

#define TFP410_VID_LO		0x00
#define TFP410_VID_HI		0x01
#define TFP410_DID_LO		0x02
#define TFP410_DID_HI		0x03
#define TFP410_REV		0x04

#define TFP410_CTL_1		0x08
#define TFP410_CTL_1_TDIS	(1<<6)
#define TFP410_CTL_1_VEN	(1<<5)
#define TFP410_CTL_1_HEN	(1<<4)
#define TFP410_CTL_1_DSEL	(1<<3)
#define TFP410_CTL_1_BSEL	(1<<2)
#define TFP410_CTL_1_EDGE	(1<<1)
#define TFP410_CTL_1_PD		(1<<0)

#define TFP410_CTL_2		0x09
#define TFP410_CTL_2_VLOW	(1<<7)
#define TFP410_CTL_2_MSEL_MASK	(0x7<<4)
#define TFP410_CTL_2_MSEL	(1<<4)
#define TFP410_CTL_2_TSEL	(1<<3)
#define TFP410_CTL_2_RSEN	(1<<2)
#define TFP410_CTL_2_HTPLG	(1<<1)
#define TFP410_CTL_2_MDI	(1<<0)

#define TFP410_CTL_3		0x0A
59
#define TFP410_CTL_3_DK_MASK	(0x7<<5)
J
Jesse Barnes 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
#define TFP410_CTL_3_DK		(1<<5)
#define TFP410_CTL_3_DKEN	(1<<4)
#define TFP410_CTL_3_CTL_MASK	(0x7<<1)
#define TFP410_CTL_3_CTL	(1<<1)

#define TFP410_USERCFG		0x0B

#define TFP410_DE_DLY		0x32

#define TFP410_DE_CTL		0x33
#define TFP410_DE_CTL_DEGEN	(1<<6)
#define TFP410_DE_CTL_VSPOL	(1<<5)
#define TFP410_DE_CTL_HSPOL	(1<<4)
#define TFP410_DE_CTL_DEDLY8	(1<<0)

#define TFP410_DE_TOP		0x34

#define TFP410_DE_CNT_LO	0x36
#define TFP410_DE_CNT_HI	0x37

#define TFP410_DE_LIN_LO	0x38
#define TFP410_DE_LIN_HI	0x39

#define TFP410_H_RES_LO		0x3A
#define TFP410_H_RES_HI		0x3B

#define TFP410_V_RES_LO		0x3C
#define TFP410_V_RES_HI		0x3D

struct tfp410_priv {
	bool quiet;
};

static bool tfp410_readb(struct intel_dvo_device *dvo, int addr, uint8_t *ch)
{
	struct tfp410_priv *tfp = dvo->dev_priv;
96
	struct i2c_adapter *adapter = dvo->i2c_bus;
J
Jesse Barnes 已提交
97 98 99 100 101
	u8 out_buf[2];
	u8 in_buf[2];

	struct i2c_msg msgs[] = {
		{
102
			.addr = dvo->slave_addr,
J
Jesse Barnes 已提交
103 104 105 106 107
			.flags = 0,
			.len = 1,
			.buf = out_buf,
		},
		{
108
			.addr = dvo->slave_addr,
J
Jesse Barnes 已提交
109 110 111 112 113 114 115 116 117
			.flags = I2C_M_RD,
			.len = 1,
			.buf = in_buf,
		}
	};

	out_buf[0] = addr;
	out_buf[1] = 0;

118
	if (i2c_transfer(adapter, msgs, 2) == 2) {
J
Jesse Barnes 已提交
119 120
		*ch = in_buf[0];
		return true;
121
	}
J
Jesse Barnes 已提交
122 123

	if (!tfp->quiet) {
124
		DRM_DEBUG_KMS("Unable to read register 0x%02x from %s:%02x.\n",
125
			  addr, adapter->name, dvo->slave_addr);
J
Jesse Barnes 已提交
126 127 128 129 130 131 132
	}
	return false;
}

static bool tfp410_writeb(struct intel_dvo_device *dvo, int addr, uint8_t ch)
{
	struct tfp410_priv *tfp = dvo->dev_priv;
133
	struct i2c_adapter *adapter = dvo->i2c_bus;
J
Jesse Barnes 已提交
134 135
	uint8_t out_buf[2];
	struct i2c_msg msg = {
136
		.addr = dvo->slave_addr,
J
Jesse Barnes 已提交
137 138 139 140 141 142 143 144
		.flags = 0,
		.len = 2,
		.buf = out_buf,
	};

	out_buf[0] = addr;
	out_buf[1] = ch;

145
	if (i2c_transfer(adapter, &msg, 1) == 1)
J
Jesse Barnes 已提交
146 147 148
		return true;

	if (!tfp->quiet) {
149
		DRM_DEBUG_KMS("Unable to write register 0x%02x to %s:%d.\n",
150
			  addr, adapter->name, dvo->slave_addr);
J
Jesse Barnes 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
	}

	return false;
}

static int tfp410_getid(struct intel_dvo_device *dvo, int addr)
{
	uint8_t ch1, ch2;

	if (tfp410_readb(dvo, addr+0, &ch1) &&
	    tfp410_readb(dvo, addr+1, &ch2))
		return ((ch2 << 8) & 0xFF00) | (ch1 & 0x00FF);

	return -1;
}

/* Ti TFP410 driver for chip on i2c bus */
static bool tfp410_init(struct intel_dvo_device *dvo,
169
			struct i2c_adapter *adapter)
J
Jesse Barnes 已提交
170 171 172 173 174 175 176 177 178
{
	/* this will detect the tfp410 chip on the specified i2c bus */
	struct tfp410_priv *tfp;
	int id;

	tfp = kzalloc(sizeof(struct tfp410_priv), GFP_KERNEL);
	if (tfp == NULL)
		return false;

179
	dvo->i2c_bus = adapter;
J
Jesse Barnes 已提交
180 181 182 183
	dvo->dev_priv = tfp;
	tfp->quiet = true;

	if ((id = tfp410_getid(dvo, TFP410_VID_LO)) != TFP410_VID) {
184 185
		DRM_DEBUG_KMS("tfp410 not detected got VID %X: from %s "
				"Slave %d.\n",
186
			  id, adapter->name, dvo->slave_addr);
J
Jesse Barnes 已提交
187 188 189 190
		goto out;
	}

	if ((id = tfp410_getid(dvo, TFP410_DID_LO)) != TFP410_DID) {
191 192
		DRM_DEBUG_KMS("tfp410 not detected got DID %X: from %s "
				"Slave %d.\n",
193
			  id, adapter->name, dvo->slave_addr);
J
Jesse Barnes 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
		goto out;
	}
	tfp->quiet = false;
	return true;
out:
	kfree(tfp);
	return false;
}

static enum drm_connector_status tfp410_detect(struct intel_dvo_device *dvo)
{
	enum drm_connector_status ret = connector_status_disconnected;
	uint8_t ctl2;

	if (tfp410_readb(dvo, TFP410_CTL_2, &ctl2)) {
209
		if (ctl2 & TFP410_CTL_2_RSEN)
J
Jesse Barnes 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
			ret = connector_status_connected;
		else
			ret = connector_status_disconnected;
	}

	return ret;
}

static enum drm_mode_status tfp410_mode_valid(struct intel_dvo_device *dvo,
					      struct drm_display_mode *mode)
{
	return MODE_OK;
}

static void tfp410_mode_set(struct intel_dvo_device *dvo,
225 226
			    const struct drm_display_mode *mode,
			    const struct drm_display_mode *adjusted_mode)
J
Jesse Barnes 已提交
227
{
228 229 230 231 232 233
	/* As long as the basics are set up, since we don't have clock dependencies
	* in the mode setup, we can just leave the registers alone and everything
	* will work fine.
	*/
	/* don't do much */
	return;
J
Jesse Barnes 已提交
234 235 236
}

/* set the tfp410 power state */
237
static void tfp410_dpms(struct intel_dvo_device *dvo, bool enable)
J
Jesse Barnes 已提交
238 239 240 241 242 243
{
	uint8_t ctl1;

	if (!tfp410_readb(dvo, TFP410_CTL_1, &ctl1))
		return;

244
	if (enable)
J
Jesse Barnes 已提交
245 246 247 248 249 250 251
		ctl1 |= TFP410_CTL_1_PD;
	else
		ctl1 &= ~TFP410_CTL_1_PD;

	tfp410_writeb(dvo, TFP410_CTL_1, ctl1);
}

252 253 254 255 256 257 258 259 260 261 262 263 264
static bool tfp410_get_hw_state(struct intel_dvo_device *dvo)
{
	uint8_t ctl1;

	if (!tfp410_readb(dvo, TFP410_CTL_1, &ctl1))
		return false;

	if (ctl1 & TFP410_CTL_1_PD)
		return true;
	else
		return false;
}

J
Jesse Barnes 已提交
265 266 267 268 269
static void tfp410_dump_regs(struct intel_dvo_device *dvo)
{
	uint8_t val, val2;

	tfp410_readb(dvo, TFP410_REV, &val);
270
	DRM_DEBUG_KMS("TFP410_REV: 0x%02X\n", val);
J
Jesse Barnes 已提交
271
	tfp410_readb(dvo, TFP410_CTL_1, &val);
272
	DRM_DEBUG_KMS("TFP410_CTL1: 0x%02X\n", val);
J
Jesse Barnes 已提交
273
	tfp410_readb(dvo, TFP410_CTL_2, &val);
274
	DRM_DEBUG_KMS("TFP410_CTL2: 0x%02X\n", val);
J
Jesse Barnes 已提交
275
	tfp410_readb(dvo, TFP410_CTL_3, &val);
276
	DRM_DEBUG_KMS("TFP410_CTL3: 0x%02X\n", val);
J
Jesse Barnes 已提交
277
	tfp410_readb(dvo, TFP410_USERCFG, &val);
278
	DRM_DEBUG_KMS("TFP410_USERCFG: 0x%02X\n", val);
J
Jesse Barnes 已提交
279
	tfp410_readb(dvo, TFP410_DE_DLY, &val);
280
	DRM_DEBUG_KMS("TFP410_DE_DLY: 0x%02X\n", val);
J
Jesse Barnes 已提交
281
	tfp410_readb(dvo, TFP410_DE_CTL, &val);
282
	DRM_DEBUG_KMS("TFP410_DE_CTL: 0x%02X\n", val);
J
Jesse Barnes 已提交
283
	tfp410_readb(dvo, TFP410_DE_TOP, &val);
284
	DRM_DEBUG_KMS("TFP410_DE_TOP: 0x%02X\n", val);
J
Jesse Barnes 已提交
285 286
	tfp410_readb(dvo, TFP410_DE_CNT_LO, &val);
	tfp410_readb(dvo, TFP410_DE_CNT_HI, &val2);
287
	DRM_DEBUG_KMS("TFP410_DE_CNT: 0x%02X%02X\n", val2, val);
J
Jesse Barnes 已提交
288 289
	tfp410_readb(dvo, TFP410_DE_LIN_LO, &val);
	tfp410_readb(dvo, TFP410_DE_LIN_HI, &val2);
290
	DRM_DEBUG_KMS("TFP410_DE_LIN: 0x%02X%02X\n", val2, val);
J
Jesse Barnes 已提交
291 292
	tfp410_readb(dvo, TFP410_H_RES_LO, &val);
	tfp410_readb(dvo, TFP410_H_RES_HI, &val2);
293
	DRM_DEBUG_KMS("TFP410_H_RES: 0x%02X%02X\n", val2, val);
J
Jesse Barnes 已提交
294 295
	tfp410_readb(dvo, TFP410_V_RES_LO, &val);
	tfp410_readb(dvo, TFP410_V_RES_HI, &val2);
296
	DRM_DEBUG_KMS("TFP410_V_RES: 0x%02X%02X\n", val2, val);
J
Jesse Barnes 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
}

static void tfp410_destroy(struct intel_dvo_device *dvo)
{
	struct tfp410_priv *tfp = dvo->dev_priv;

	if (tfp) {
		kfree(tfp);
		dvo->dev_priv = NULL;
	}
}

struct intel_dvo_dev_ops tfp410_ops = {
	.init = tfp410_init,
	.detect = tfp410_detect,
	.mode_valid = tfp410_mode_valid,
	.mode_set = tfp410_mode_set,
	.dpms = tfp410_dpms,
315
	.get_hw_state = tfp410_get_hw_state,
J
Jesse Barnes 已提交
316 317 318
	.dump_regs = tfp410_dump_regs,
	.destroy = tfp410_destroy,
};