radeon_i2c.c 8.6 KB
Newer Older
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 59 60 61
/*
 * Copyright 2007-8 Advanced Micro Devices, Inc.
 * Copyright 2008 Red Hat Inc.
 *
 * 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 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) 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 Airlie
 *          Alex Deucher
 */
#include "drmP.h"
#include "radeon_drm.h"
#include "radeon.h"

/**
 * radeon_ddc_probe
 *
 */
bool radeon_ddc_probe(struct radeon_connector *radeon_connector)
{
	u8 out_buf[] = { 0x0, 0x0};
	u8 buf[2];
	int ret;
	struct i2c_msg msgs[] = {
		{
			.addr = 0x50,
			.flags = 0,
			.len = 1,
			.buf = out_buf,
		},
		{
			.addr = 0x50,
			.flags = I2C_M_RD,
			.len = 1,
			.buf = buf,
		}
	};

	ret = i2c_transfer(&radeon_connector->ddc_bus->adapter, msgs, 2);
	if (ret == 2)
		return true;

	return false;
}


62
static void radeon_i2c_do_lock(struct radeon_i2c_chan *i2c, int lock_state)
63
{
64 65
	struct radeon_device *rdev = i2c->dev->dev_private;
	struct radeon_i2c_bus_rec *rec = &i2c->rec;
66 67 68 69 70 71
	uint32_t temp;

	/* RV410 appears to have a bug where the hw i2c in reset
	 * holds the i2c port in a bad state - switch hw i2c away before
	 * doing DDC - do this for all r200s/r300s/r400s for safety sake
	 */
A
Alex Deucher 已提交
72 73 74 75 76 77 78 79 80
	if (rec->hw_capable) {
		if ((rdev->family >= CHIP_R200) && !ASIC_IS_AVIVO(rdev)) {
			if (rec->a_clk_reg == RADEON_GPIO_MONID) {
				WREG32(RADEON_DVI_I2C_CNTL_0, (RADEON_I2C_SOFT_RST |
							       R200_DVI_I2C_PIN_SEL(R200_SEL_DDC1)));
			} else {
				WREG32(RADEON_DVI_I2C_CNTL_0, (RADEON_I2C_SOFT_RST |
							       R200_DVI_I2C_PIN_SEL(R200_SEL_DDC3)));
			}
81 82 83
		}
	}

A
Alex Deucher 已提交
84 85 86 87 88 89 90
	/* clear the output pin values */
	temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
	WREG32(rec->a_clk_reg, temp);

	temp = RREG32(rec->a_data_reg) & ~rec->a_data_mask;
	WREG32(rec->a_data_reg, temp);

A
Alex Deucher 已提交
91 92 93 94 95 96
	/* set the pins to input */
	temp = RREG32(rec->en_clk_reg) & ~rec->en_clk_mask;
	WREG32(rec->en_clk_reg, temp);

	temp = RREG32(rec->en_data_reg) & ~rec->en_data_mask;
	WREG32(rec->en_data_reg, temp);
A
Alex Deucher 已提交
97 98

	/* mask the gpio pins for software use */
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
	temp = RREG32(rec->mask_clk_reg);
	if (lock_state)
		temp |= rec->mask_clk_mask;
	else
		temp &= ~rec->mask_clk_mask;
	WREG32(rec->mask_clk_reg, temp);
	temp = RREG32(rec->mask_clk_reg);

	temp = RREG32(rec->mask_data_reg);
	if (lock_state)
		temp |= rec->mask_data_mask;
	else
		temp &= ~rec->mask_data_mask;
	WREG32(rec->mask_data_reg, temp);
	temp = RREG32(rec->mask_data_reg);
}

static int get_clock(void *i2c_priv)
{
	struct radeon_i2c_chan *i2c = i2c_priv;
	struct radeon_device *rdev = i2c->dev->dev_private;
	struct radeon_i2c_bus_rec *rec = &i2c->rec;
	uint32_t val;

A
Alex Deucher 已提交
123 124 125
	/* read the value off the pin */
	val = RREG32(rec->y_clk_reg);
	val &= rec->y_clk_mask;
126 127 128 129 130 131 132 133 134 135 136 137

	return (val != 0);
}


static int get_data(void *i2c_priv)
{
	struct radeon_i2c_chan *i2c = i2c_priv;
	struct radeon_device *rdev = i2c->dev->dev_private;
	struct radeon_i2c_bus_rec *rec = &i2c->rec;
	uint32_t val;

A
Alex Deucher 已提交
138 139 140 141
	/* read the value off the pin */
	val = RREG32(rec->y_data_reg);
	val &= rec->y_data_mask;

142 143 144 145 146 147 148 149 150 151
	return (val != 0);
}

static void set_clock(void *i2c_priv, int clock)
{
	struct radeon_i2c_chan *i2c = i2c_priv;
	struct radeon_device *rdev = i2c->dev->dev_private;
	struct radeon_i2c_bus_rec *rec = &i2c->rec;
	uint32_t val;

A
Alex Deucher 已提交
152 153 154 155
	/* set pin direction */
	val = RREG32(rec->en_clk_reg) & ~rec->en_clk_mask;
	val |= clock ? 0 : rec->en_clk_mask;
	WREG32(rec->en_clk_reg, val);
156 157 158 159 160 161 162 163 164
}

static void set_data(void *i2c_priv, int data)
{
	struct radeon_i2c_chan *i2c = i2c_priv;
	struct radeon_device *rdev = i2c->dev->dev_private;
	struct radeon_i2c_bus_rec *rec = &i2c->rec;
	uint32_t val;

A
Alex Deucher 已提交
165 166 167 168
	/* set pin direction */
	val = RREG32(rec->en_data_reg) & ~rec->en_data_mask;
	val |= data ? 0 : rec->en_data_mask;
	WREG32(rec->en_data_reg, val);
169 170
}

171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
static int radeon_i2c_xfer(struct i2c_adapter *i2c_adap,
			   struct i2c_msg *msgs, int num)
{
	struct radeon_i2c_chan *i2c = i2c_get_adapdata(i2c_adap);
	int ret;

	radeon_i2c_do_lock(i2c, 1);
	if (i2c_transfer(&i2c->algo.radeon.bit_adapter, msgs, num) == num)
		ret = num;
	else
		ret = -1;
	radeon_i2c_do_lock(i2c, 0);

	return ret;
}

static u32 radeon_i2c_func(struct i2c_adapter *adap)
{
	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
}

static const struct i2c_algorithm radeon_i2c_algo = {
	.master_xfer = radeon_i2c_xfer,
	.functionality = radeon_i2c_func,
};

197
struct radeon_i2c_chan *radeon_i2c_create(struct drm_device *dev,
198 199
					  struct radeon_i2c_bus_rec *rec,
					  const char *name)
200 201 202 203
{
	struct radeon_i2c_chan *i2c;
	int ret;

204
	i2c = kzalloc(sizeof(struct radeon_i2c_chan), GFP_KERNEL);
205 206 207 208
	if (i2c == NULL)
		return NULL;

	i2c->dev = dev;
209 210 211 212 213 214 215 216 217 218 219
	i2c->rec = *rec;
	/* set the internal bit adapter */
	i2c->algo.radeon.bit_adapter.owner = THIS_MODULE;
	i2c_set_adapdata(&i2c->algo.radeon.bit_adapter, i2c);
	sprintf(i2c->algo.radeon.bit_adapter.name, "Radeon internal i2c bit bus %s", name);
	i2c->algo.radeon.bit_adapter.algo_data = &i2c->algo.radeon.bit_data;
	i2c->algo.radeon.bit_data.setsda = set_data;
	i2c->algo.radeon.bit_data.setscl = set_clock;
	i2c->algo.radeon.bit_data.getsda = get_data;
	i2c->algo.radeon.bit_data.getscl = get_clock;
	i2c->algo.radeon.bit_data.udelay = 20;
220 221
	/* vesa says 2.2 ms is enough, 1 jiffy doesn't seem to always
	 * make this, 2 jiffies is a lot more reliable */
222 223 224 225 226 227 228 229 230 231 232 233 234 235
	i2c->algo.radeon.bit_data.timeout = 2;
	i2c->algo.radeon.bit_data.data = i2c;
	ret = i2c_bit_add_bus(&i2c->algo.radeon.bit_adapter);
	if (ret) {
		DRM_INFO("Failed to register internal bit i2c %s\n", name);
		goto out_free;
	}
	/* set the radeon i2c adapter */
	i2c->adapter.owner = THIS_MODULE;
	i2c_set_adapdata(&i2c->adapter, i2c);
	sprintf(i2c->adapter.name, "Radeon i2c %s", name);
	i2c->adapter.algo_data = &i2c->algo.radeon;
	i2c->adapter.algo = &radeon_i2c_algo;
	ret = i2c_add_adapter(&i2c->adapter);
236 237 238 239 240 241 242
	if (ret) {
		DRM_INFO("Failed to register i2c %s\n", name);
		goto out_free;
	}

	return i2c;
out_free:
243
	kfree(i2c);
244 245 246 247
	return NULL;

}

248
struct radeon_i2c_chan *radeon_i2c_create_dp(struct drm_device *dev,
A
Alex Deucher 已提交
249 250
					     struct radeon_i2c_bus_rec *rec,
					     const char *name)
251 252 253 254 255 256 257 258
{
	struct radeon_i2c_chan *i2c;
	int ret;

	i2c = kzalloc(sizeof(struct radeon_i2c_chan), GFP_KERNEL);
	if (i2c == NULL)
		return NULL;

A
Alex Deucher 已提交
259
	i2c->rec = *rec;
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
	i2c->adapter.owner = THIS_MODULE;
	i2c->dev = dev;
	i2c_set_adapdata(&i2c->adapter, i2c);
	i2c->adapter.algo_data = &i2c->algo.dp;
	i2c->algo.dp.aux_ch = radeon_dp_i2c_aux_ch;
	i2c->algo.dp.address = 0;
	ret = i2c_dp_aux_add_bus(&i2c->adapter);
	if (ret) {
		DRM_INFO("Failed to register i2c %s\n", name);
		goto out_free;
	}

	return i2c;
out_free:
	kfree(i2c);
	return NULL;

}

279
void radeon_i2c_destroy(struct radeon_i2c_chan *i2c)
280 281 282 283 284 285 286 287 288
{
	if (!i2c)
		return;
	i2c_del_adapter(&i2c->algo.radeon.bit_adapter);
	i2c_del_adapter(&i2c->adapter);
	kfree(i2c);
}

void radeon_i2c_destroy_dp(struct radeon_i2c_chan *i2c)
289 290 291 292 293
{
	if (!i2c)
		return;

	i2c_del_adapter(&i2c->adapter);
294
	kfree(i2c);
295 296 297 298 299 300
}

struct drm_encoder *radeon_best_encoder(struct drm_connector *connector)
{
	return NULL;
}
301

302 303 304 305
void radeon_i2c_get_byte(struct radeon_i2c_chan *i2c_bus,
			 u8 slave_addr,
			 u8 addr,
			 u8 *val)
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
{
	u8 out_buf[2];
	u8 in_buf[2];
	struct i2c_msg msgs[] = {
		{
			.addr = slave_addr,
			.flags = 0,
			.len = 1,
			.buf = out_buf,
		},
		{
			.addr = slave_addr,
			.flags = I2C_M_RD,
			.len = 1,
			.buf = in_buf,
		}
	};

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

	if (i2c_transfer(&i2c_bus->adapter, msgs, 2) == 2) {
		*val = in_buf[0];
		DRM_DEBUG("val = 0x%02x\n", *val);
	} else {
		DRM_ERROR("i2c 0x%02x 0x%02x read failed\n",
			  addr, *val);
	}
}

336 337 338 339
void radeon_i2c_put_byte(struct radeon_i2c_chan *i2c_bus,
			 u8 slave_addr,
			 u8 addr,
			 u8 val)
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
{
	uint8_t out_buf[2];
	struct i2c_msg msg = {
		.addr = slave_addr,
		.flags = 0,
		.len = 2,
		.buf = out_buf,
	};

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

	if (i2c_transfer(&i2c_bus->adapter, &msg, 1) != 1)
		DRM_ERROR("i2c 0x%02x 0x%02x write failed\n",
			  addr, val);
}