blob: 7f0904170963598c565b008126dbb116a8dccea0 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
Chris Wilsonf899fc62010-07-20 15:44:45 -07003 * Copyright © 2006-2008,2010 Intel Corporation
Jesse Barnes79e53942008-11-07 14:24:08 -08004 * Jesse Barnes <jesse.barnes@intel.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 *
25 * Authors:
26 * Eric Anholt <eric@anholt.net>
Chris Wilsonf899fc62010-07-20 15:44:45 -070027 * Chris Wilson <chris@chris-wilson.co.uk>
Jesse Barnes79e53942008-11-07 14:24:08 -080028 */
29#include <linux/i2c.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c-algo-bit.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040031#include <linux/export.h>
David Howells760285e2012-10-02 18:01:07 +010032#include <drm/drmP.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010034#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include "i915_drv.h"
36
Daniel Kurtz2ed06c92012-03-28 02:36:15 +080037struct gmbus_port {
38 const char *name;
39 int reg;
40};
41
42static const struct gmbus_port gmbus_ports[] = {
43 { "ssc", GPIOB },
44 { "vga", GPIOA },
45 { "panel", GPIOC },
46 { "dpc", GPIOD },
47 { "dpb", GPIOE },
48 { "dpd", GPIOF },
49};
50
Chris Wilsonf899fc62010-07-20 15:44:45 -070051/* Intel GPIO access functions */
52
Jean Delvare1849ecb2012-01-28 11:07:09 +010053#define I2C_RISEFALL_TIME 10
Chris Wilsonf899fc62010-07-20 15:44:45 -070054
Chris Wilsone957d772010-09-24 12:52:03 +010055static inline struct intel_gmbus *
56to_intel_gmbus(struct i2c_adapter *i2c)
57{
58 return container_of(i2c, struct intel_gmbus, adapter);
59}
60
Chris Wilsonf899fc62010-07-20 15:44:45 -070061void
62intel_i2c_reset(struct drm_device *dev)
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080063{
64 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter110447fc2012-03-23 23:43:36 +010065 I915_WRITE(dev_priv->gpio_mmio_base + GMBUS0, 0);
Daniel Vetter28c70f12012-12-01 13:53:45 +010066 I915_WRITE(dev_priv->gpio_mmio_base + GMBUS4, 0);
Chris Wilsonf899fc62010-07-20 15:44:45 -070067}
68
69static void intel_i2c_quirk_set(struct drm_i915_private *dev_priv, bool enable)
70{
Chris Wilsonb222f262010-09-11 21:48:25 +010071 u32 val;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080072
73 /* When using bit bashing for I2C, this bit needs to be set to 1 */
Chris Wilsonf899fc62010-07-20 15:44:45 -070074 if (!IS_PINEVIEW(dev_priv->dev))
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080075 return;
Chris Wilsonb222f262010-09-11 21:48:25 +010076
77 val = I915_READ(DSPCLK_GATE_D);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080078 if (enable)
Chris Wilsonb222f262010-09-11 21:48:25 +010079 val |= DPCUNIT_CLOCK_GATE_DISABLE;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080080 else
Chris Wilsonb222f262010-09-11 21:48:25 +010081 val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
82 I915_WRITE(DSPCLK_GATE_D, val);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080083}
84
Daniel Vetter36c785f2012-02-14 22:37:22 +010085static u32 get_reserved(struct intel_gmbus *bus)
Chris Wilsone957d772010-09-24 12:52:03 +010086{
Daniel Vetter36c785f2012-02-14 22:37:22 +010087 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsone957d772010-09-24 12:52:03 +010088 struct drm_device *dev = dev_priv->dev;
89 u32 reserved = 0;
90
91 /* On most chips, these bits must be preserved in software. */
92 if (!IS_I830(dev) && !IS_845G(dev))
Daniel Vetter36c785f2012-02-14 22:37:22 +010093 reserved = I915_READ_NOTRACE(bus->gpio_reg) &
Yuanhan Liudb5e4172010-11-08 09:58:16 +000094 (GPIO_DATA_PULLUP_DISABLE |
95 GPIO_CLOCK_PULLUP_DISABLE);
Chris Wilsone957d772010-09-24 12:52:03 +010096
97 return reserved;
98}
99
Jesse Barnes79e53942008-11-07 14:24:08 -0800100static int get_clock(void *data)
101{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100102 struct intel_gmbus *bus = data;
103 struct drm_i915_private *dev_priv = bus->dev_priv;
104 u32 reserved = get_reserved(bus);
105 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_CLOCK_DIR_MASK);
106 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
107 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_CLOCK_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800108}
109
110static int get_data(void *data)
111{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100112 struct intel_gmbus *bus = data;
113 struct drm_i915_private *dev_priv = bus->dev_priv;
114 u32 reserved = get_reserved(bus);
115 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_DATA_DIR_MASK);
116 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
117 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_DATA_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800118}
119
120static void set_clock(void *data, int state_high)
121{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100122 struct intel_gmbus *bus = data;
123 struct drm_i915_private *dev_priv = bus->dev_priv;
124 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100125 u32 clock_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800126
127 if (state_high)
128 clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
129 else
130 clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
131 GPIO_CLOCK_VAL_MASK;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700132
Daniel Vetter36c785f2012-02-14 22:37:22 +0100133 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
134 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800135}
136
137static void set_data(void *data, int state_high)
138{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100139 struct intel_gmbus *bus = data;
140 struct drm_i915_private *dev_priv = bus->dev_priv;
141 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100142 u32 data_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800143
144 if (state_high)
145 data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
146 else
147 data_bits = GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
148 GPIO_DATA_VAL_MASK;
149
Daniel Vetter36c785f2012-02-14 22:37:22 +0100150 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
151 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800152}
153
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800154static int
155intel_gpio_pre_xfer(struct i2c_adapter *adapter)
156{
157 struct intel_gmbus *bus = container_of(adapter,
158 struct intel_gmbus,
159 adapter);
160 struct drm_i915_private *dev_priv = bus->dev_priv;
161
162 intel_i2c_reset(dev_priv->dev);
163 intel_i2c_quirk_set(dev_priv, true);
164 set_data(bus, 1);
165 set_clock(bus, 1);
166 udelay(I2C_RISEFALL_TIME);
167 return 0;
168}
169
170static void
171intel_gpio_post_xfer(struct i2c_adapter *adapter)
172{
173 struct intel_gmbus *bus = container_of(adapter,
174 struct intel_gmbus,
175 adapter);
176 struct drm_i915_private *dev_priv = bus->dev_priv;
177
178 set_data(bus, 1);
179 set_clock(bus, 1);
180 intel_i2c_quirk_set(dev_priv, false);
181}
182
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800183static void
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100184intel_gpio_setup(struct intel_gmbus *bus, u32 pin)
Eric Anholtf0217c42009-12-01 11:56:30 -0800185{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100186 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100187 struct i2c_algo_bit_data *algo;
Eric Anholtf0217c42009-12-01 11:56:30 -0800188
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100189 algo = &bus->bit_algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100190
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800191 /* -1 to map pin pair to gmbus index */
192 bus->gpio_reg = dev_priv->gpio_mmio_base + gmbus_ports[pin - 1].reg;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700193
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100194 bus->adapter.algo_data = algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100195 algo->setsda = set_data;
196 algo->setscl = set_clock;
197 algo->getsda = get_data;
198 algo->getscl = get_clock;
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800199 algo->pre_xfer = intel_gpio_pre_xfer;
200 algo->post_xfer = intel_gpio_post_xfer;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100201 algo->udelay = I2C_RISEFALL_TIME;
202 algo->timeout = usecs_to_jiffies(2200);
203 algo->data = bus;
Jesse Barnes79e53942008-11-07 14:24:08 -0800204}
205
Daniel Vetter2c438c02012-12-01 13:53:46 +0100206#define HAS_GMBUS_IRQ(dev) (INTEL_INFO(dev)->gen >= 4)
Chris Wilsonf899fc62010-07-20 15:44:45 -0700207static int
Daniel Vetter61168c52012-12-01 13:53:43 +0100208gmbus_wait_hw_status(struct drm_i915_private *dev_priv,
Daniel Vetter28c70f12012-12-01 13:53:45 +0100209 u32 gmbus2_status,
210 u32 gmbus4_irq_en)
Daniel Vetter61168c52012-12-01 13:53:43 +0100211{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100212 int i;
Daniel Vetter61168c52012-12-01 13:53:43 +0100213 int reg_offset = dev_priv->gpio_mmio_base;
Daniel Vetter28c70f12012-12-01 13:53:45 +0100214 u32 gmbus2 = 0;
215 DEFINE_WAIT(wait);
Daniel Vetter61168c52012-12-01 13:53:43 +0100216
Daniel Vetter28c70f12012-12-01 13:53:45 +0100217 /* Important: The hw handles only the first bit, so set only one! Since
218 * we also need to check for NAKs besides the hw ready/idle signal, we
219 * need to wake up periodically and check that ourselves. */
220 I915_WRITE(GMBUS4 + reg_offset, gmbus4_irq_en);
221
222 for (i = 0; i < msecs_to_jiffies(50) + 1; i++) {
223 prepare_to_wait(&dev_priv->gmbus_wait_queue, &wait,
224 TASK_UNINTERRUPTIBLE);
225
Daniel Vetteref04f002012-12-01 21:03:59 +0100226 gmbus2 = I915_READ_NOTRACE(GMBUS2 + reg_offset);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100227 if (gmbus2 & (GMBUS_SATOER | gmbus2_status))
228 break;
229
230 schedule_timeout(1);
231 }
232 finish_wait(&dev_priv->gmbus_wait_queue, &wait);
233
234 I915_WRITE(GMBUS4 + reg_offset, 0);
Daniel Vetter61168c52012-12-01 13:53:43 +0100235
236 if (gmbus2 & GMBUS_SATOER)
237 return -ENXIO;
Daniel Vetter28c70f12012-12-01 13:53:45 +0100238 if (gmbus2 & gmbus2_status)
239 return 0;
240 return -ETIMEDOUT;
Daniel Vetter61168c52012-12-01 13:53:43 +0100241}
242
243static int
Daniel Vetter2c438c02012-12-01 13:53:46 +0100244gmbus_wait_idle(struct drm_i915_private *dev_priv)
245{
246 int ret;
247 int reg_offset = dev_priv->gpio_mmio_base;
248
Daniel Vetteref04f002012-12-01 21:03:59 +0100249#define C ((I915_READ_NOTRACE(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0)
Daniel Vetter2c438c02012-12-01 13:53:46 +0100250
251 if (!HAS_GMBUS_IRQ(dev_priv->dev))
252 return wait_for(C, 10);
253
254 /* Important: The hw handles only the first bit, so set only one! */
255 I915_WRITE(GMBUS4 + reg_offset, GMBUS_IDLE_EN);
256
257 ret = wait_event_timeout(dev_priv->gmbus_wait_queue, C, 10);
258
259 I915_WRITE(GMBUS4 + reg_offset, 0);
260
261 if (ret)
262 return 0;
263 else
264 return -ETIMEDOUT;
265#undef C
266}
267
268static int
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800269gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
270 u32 gmbus1_index)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800271{
272 int reg_offset = dev_priv->gpio_mmio_base;
273 u16 len = msg->len;
274 u8 *buf = msg->buf;
275
276 I915_WRITE(GMBUS1 + reg_offset,
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800277 gmbus1_index |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800278 GMBUS_CYCLE_WAIT |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800279 (len << GMBUS_BYTE_COUNT_SHIFT) |
280 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
281 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800282 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800283 int ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800284 u32 val, loop = 0;
285
Daniel Vetter28c70f12012-12-01 13:53:45 +0100286 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
287 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800288 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100289 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800290
291 val = I915_READ(GMBUS3 + reg_offset);
292 do {
293 *buf++ = val & 0xff;
294 val >>= 8;
295 } while (--len && ++loop < 4);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800296 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800297
298 return 0;
299}
300
301static int
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800302gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800303{
304 int reg_offset = dev_priv->gpio_mmio_base;
305 u16 len = msg->len;
306 u8 *buf = msg->buf;
307 u32 val, loop;
308
309 val = loop = 0;
Daniel Kurtz26883c32012-03-30 19:46:36 +0800310 while (len && loop < 4) {
311 val |= *buf++ << (8 * loop++);
312 len -= 1;
313 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800314
315 I915_WRITE(GMBUS3 + reg_offset, val);
316 I915_WRITE(GMBUS1 + reg_offset,
317 GMBUS_CYCLE_WAIT |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800318 (msg->len << GMBUS_BYTE_COUNT_SHIFT) |
319 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
320 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800321 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800322 int ret;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800323
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800324 val = loop = 0;
325 do {
326 val |= *buf++ << (8 * loop);
327 } while (--len && ++loop < 4);
328
329 I915_WRITE(GMBUS3 + reg_offset, val);
Daniel Kurtz7a39a9d2012-03-30 19:46:37 +0800330
Daniel Vetter28c70f12012-12-01 13:53:45 +0100331 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
332 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800333 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100334 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800335 }
336 return 0;
337}
338
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800339/*
340 * The gmbus controller can combine a 1 or 2 byte write with a read that
341 * immediately follows it by using an "INDEX" cycle.
342 */
343static bool
344gmbus_is_index_read(struct i2c_msg *msgs, int i, int num)
345{
346 return (i + 1 < num &&
347 !(msgs[i].flags & I2C_M_RD) && msgs[i].len <= 2 &&
348 (msgs[i + 1].flags & I2C_M_RD));
349}
350
351static int
352gmbus_xfer_index_read(struct drm_i915_private *dev_priv, struct i2c_msg *msgs)
353{
354 int reg_offset = dev_priv->gpio_mmio_base;
355 u32 gmbus1_index = 0;
356 u32 gmbus5 = 0;
357 int ret;
358
359 if (msgs[0].len == 2)
360 gmbus5 = GMBUS_2BYTE_INDEX_EN |
361 msgs[0].buf[1] | (msgs[0].buf[0] << 8);
362 if (msgs[0].len == 1)
363 gmbus1_index = GMBUS_CYCLE_INDEX |
364 (msgs[0].buf[0] << GMBUS_SLAVE_INDEX_SHIFT);
365
366 /* GMBUS5 holds 16-bit index */
367 if (gmbus5)
368 I915_WRITE(GMBUS5 + reg_offset, gmbus5);
369
370 ret = gmbus_xfer_read(dev_priv, &msgs[1], gmbus1_index);
371
372 /* Clear GMBUS5 after each index transfer */
373 if (gmbus5)
374 I915_WRITE(GMBUS5 + reg_offset, 0);
375
376 return ret;
377}
378
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800379static int
Chris Wilsonf899fc62010-07-20 15:44:45 -0700380gmbus_xfer(struct i2c_adapter *adapter,
381 struct i2c_msg *msgs,
382 int num)
383{
384 struct intel_gmbus *bus = container_of(adapter,
385 struct intel_gmbus,
386 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100387 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800388 int i, reg_offset;
389 int ret = 0;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700390
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500391 mutex_lock(&dev_priv->gmbus_mutex);
392
393 if (bus->force_bit) {
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800394 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500395 goto out;
396 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700397
Daniel Vetter110447fc2012-03-23 23:43:36 +0100398 reg_offset = dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700399
Chris Wilsone957d772010-09-24 12:52:03 +0100400 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700401
402 for (i = 0; i < num; i++) {
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800403 if (gmbus_is_index_read(msgs, i, num)) {
404 ret = gmbus_xfer_index_read(dev_priv, &msgs[i]);
405 i += 1; /* set i to the index of the read xfer */
406 } else if (msgs[i].flags & I2C_M_RD) {
407 ret = gmbus_xfer_read(dev_priv, &msgs[i], 0);
408 } else {
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800409 ret = gmbus_xfer_write(dev_priv, &msgs[i]);
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800410 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700411
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800412 if (ret == -ETIMEDOUT)
413 goto timeout;
414 if (ret == -ENXIO)
415 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700416
Daniel Vetter28c70f12012-12-01 13:53:45 +0100417 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_WAIT_PHASE,
418 GMBUS_HW_WAIT_EN);
Daniel Vetter61168c52012-12-01 13:53:43 +0100419 if (ret == -ENXIO)
420 goto clear_err;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800421 if (ret)
Chris Wilsonf899fc62010-07-20 15:44:45 -0700422 goto timeout;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700423 }
424
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800425 /* Generate a STOP condition on the bus. Note that gmbus can't generata
426 * a STOP on the very first cycle. To simplify the code we
427 * unconditionally generate the STOP condition with an additional gmbus
428 * cycle. */
429 I915_WRITE(GMBUS1 + reg_offset, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
430
Benson Leungcaae7452012-02-09 12:03:17 -0800431 /* Mark the GMBUS interface as disabled after waiting for idle.
432 * We will re-enable it at the start of the next xfer,
433 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100434 */
Daniel Vetter2c438c02012-12-01 13:53:46 +0100435 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800436 DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800437 adapter->name);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800438 ret = -ETIMEDOUT;
439 }
Chris Wilson7f58aab2011-03-30 16:20:43 +0100440 I915_WRITE(GMBUS0 + reg_offset, 0);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800441 ret = ret ?: i;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500442 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700443
Daniel Kurtze646d572012-03-30 19:46:38 +0800444clear_err:
445 /*
446 * Wait for bus to IDLE before clearing NAK.
447 * If we clear the NAK while bus is still active, then it will stay
448 * active and the next transaction may fail.
Daniel Vetter65e81862012-05-21 20:19:48 +0200449 *
450 * If no ACK is received during the address phase of a transaction, the
451 * adapter must report -ENXIO. It is not clear what to return if no ACK
452 * is received at other times. But we have to be careful to not return
453 * spurious -ENXIO because that will prevent i2c and drm edid functions
454 * from retrying. So return -ENXIO only when gmbus properly quiescents -
455 * timing out seems to happen when there _is_ a ddc chip present, but
456 * it's slow responding and only answers on the 2nd retry.
Daniel Kurtze646d572012-03-30 19:46:38 +0800457 */
Daniel Vetter65e81862012-05-21 20:19:48 +0200458 ret = -ENXIO;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100459 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800460 DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
461 adapter->name);
Daniel Vetter65e81862012-05-21 20:19:48 +0200462 ret = -ETIMEDOUT;
463 }
Daniel Kurtze646d572012-03-30 19:46:38 +0800464
465 /* Toggle the Software Clear Interrupt bit. This has the effect
466 * of resetting the GMBUS controller and so clearing the
467 * BUS_ERROR raised by the slave's NAK.
468 */
469 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
470 I915_WRITE(GMBUS1 + reg_offset, 0);
471 I915_WRITE(GMBUS0 + reg_offset, 0);
472
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800473 DRM_DEBUG_KMS("GMBUS [%s] NAK for addr: %04x %c(%d)\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800474 adapter->name, msgs[i].addr,
475 (msgs[i].flags & I2C_M_RD) ? 'r' : 'w', msgs[i].len);
476
Daniel Kurtze646d572012-03-30 19:46:38 +0800477 goto out;
478
Chris Wilsonf899fc62010-07-20 15:44:45 -0700479timeout:
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800480 DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
481 bus->adapter.name, bus->reg0 & 0xff);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100482 I915_WRITE(GMBUS0 + reg_offset, 0);
483
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800484 /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000485 bus->force_bit = 1;
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800486 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800487
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500488out:
489 mutex_unlock(&dev_priv->gmbus_mutex);
490 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700491}
492
493static u32 gmbus_func(struct i2c_adapter *adapter)
494{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100495 return i2c_bit_algo.functionality(adapter) &
496 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700497 /* I2C_FUNC_10BIT_ADDR | */
498 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
499 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
500}
501
502static const struct i2c_algorithm gmbus_algorithm = {
503 .master_xfer = gmbus_xfer,
504 .functionality = gmbus_func
505};
506
507/**
508 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
509 * @dev: DRM device
510 */
511int intel_setup_gmbus(struct drm_device *dev)
512{
Chris Wilsonf899fc62010-07-20 15:44:45 -0700513 struct drm_i915_private *dev_priv = dev->dev_private;
514 int ret, i;
515
Daniel Vetter110447fc2012-03-23 23:43:36 +0100516 if (HAS_PCH_SPLIT(dev))
517 dev_priv->gpio_mmio_base = PCH_GPIOA - GPIOA;
518 else
519 dev_priv->gpio_mmio_base = 0;
520
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500521 mutex_init(&dev_priv->gmbus_mutex);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100522 init_waitqueue_head(&dev_priv->gmbus_wait_queue);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500523
Chris Wilsonf899fc62010-07-20 15:44:45 -0700524 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
525 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800526 u32 port = i + 1; /* +1 to map gmbus index to pin pair */
Chris Wilsonf899fc62010-07-20 15:44:45 -0700527
528 bus->adapter.owner = THIS_MODULE;
529 bus->adapter.class = I2C_CLASS_DDC;
530 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100531 sizeof(bus->adapter.name),
532 "i915 gmbus %s",
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800533 gmbus_ports[i].name);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700534
535 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100536 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700537
538 bus->adapter.algo = &gmbus_algorithm;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700539
Chris Wilsone957d772010-09-24 12:52:03 +0100540 /* By default use a conservative clock rate */
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800541 bus->reg0 = port | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100542
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200543 /* gmbus seems to be broken on i830 */
544 if (IS_I830(dev))
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000545 bus->force_bit = 1;
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200546
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800547 intel_gpio_setup(bus, port);
Jani Nikulacee25162012-08-13 17:33:02 +0300548
549 ret = i2c_add_adapter(&bus->adapter);
550 if (ret)
551 goto err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700552 }
553
554 intel_i2c_reset(dev_priv->dev);
555
556 return 0;
557
558err:
559 while (--i) {
560 struct intel_gmbus *bus = &dev_priv->gmbus[i];
561 i2c_del_adapter(&bus->adapter);
562 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700563 return ret;
564}
565
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800566struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
567 unsigned port)
568{
569 WARN_ON(!intel_gmbus_is_port_valid(port));
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800570 /* -1 to map pin pair to gmbus index */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800571 return (intel_gmbus_is_port_valid(port)) ?
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800572 &dev_priv->gmbus[port - 1].adapter : NULL;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800573}
574
Chris Wilsone957d772010-09-24 12:52:03 +0100575void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
576{
577 struct intel_gmbus *bus = to_intel_gmbus(adapter);
578
Adam Jacksond5090b92011-06-16 16:36:28 -0400579 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100580}
581
582void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
583{
584 struct intel_gmbus *bus = to_intel_gmbus(adapter);
585
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000586 bus->force_bit += force_bit ? 1 : -1;
587 DRM_DEBUG_KMS("%sabling bit-banging on %s. force bit now %d\n",
588 force_bit ? "en" : "dis", adapter->name,
589 bus->force_bit);
Chris Wilsone957d772010-09-24 12:52:03 +0100590}
591
Chris Wilsonf899fc62010-07-20 15:44:45 -0700592void intel_teardown_gmbus(struct drm_device *dev)
593{
594 struct drm_i915_private *dev_priv = dev->dev_private;
595 int i;
596
Chris Wilsonf899fc62010-07-20 15:44:45 -0700597 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
598 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700599 i2c_del_adapter(&bus->adapter);
600 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800601}