Merge branches 'acpi-smbus', 'acpi-ec' and 'acpi-pci'
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_i2c.c
CommitLineData
79e53945
JB
1/*
2 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
f899fc64 3 * Copyright © 2006-2008,2010 Intel Corporation
79e53945
JB
4 * 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>
f899fc64 27 * Chris Wilson <chris@chris-wilson.co.uk>
79e53945
JB
28 */
29#include <linux/i2c.h>
79e53945 30#include <linux/i2c-algo-bit.h>
2d1a8a48 31#include <linux/export.h>
760285e7 32#include <drm/drmP.h>
79e53945 33#include "intel_drv.h"
760285e7 34#include <drm/i915_drm.h>
79e53945
JB
35#include "i915_drv.h"
36
5ea6e5e3 37struct gmbus_pin {
2ed06c93
DK
38 const char *name;
39 int reg;
40};
41
5ea6e5e3
JN
42/* Map gmbus pin pairs to names and registers. */
43static const struct gmbus_pin gmbus_pins[] = {
44 [GMBUS_PIN_SSC] = { "ssc", GPIOB },
45 [GMBUS_PIN_VGADDC] = { "vga", GPIOA },
46 [GMBUS_PIN_PANEL] = { "panel", GPIOC },
47 [GMBUS_PIN_DPC] = { "dpc", GPIOD },
48 [GMBUS_PIN_DPB] = { "dpb", GPIOE },
49 [GMBUS_PIN_DPD] = { "dpd", GPIOF },
2ed06c93
DK
50};
51
c1bad5b6
JN
52static const struct gmbus_pin gmbus_pins_bdw[] = {
53 [GMBUS_PIN_VGADDC] = { "vga", GPIOA },
54 [GMBUS_PIN_DPC] = { "dpc", GPIOD },
55 [GMBUS_PIN_DPB] = { "dpb", GPIOE },
56 [GMBUS_PIN_DPD] = { "dpd", GPIOF },
57};
58
6364e67e
JN
59static const struct gmbus_pin gmbus_pins_skl[] = {
60 [GMBUS_PIN_DPC] = { "dpc", GPIOD },
61 [GMBUS_PIN_DPB] = { "dpb", GPIOE },
62 [GMBUS_PIN_DPD] = { "dpd", GPIOF },
63};
64
4c272834
JN
65static const struct gmbus_pin gmbus_pins_bxt[] = {
66 [GMBUS_PIN_1_BXT] = { "dpb", PCH_GPIOB },
67 [GMBUS_PIN_2_BXT] = { "dpc", PCH_GPIOC },
68 [GMBUS_PIN_3_BXT] = { "misc", PCH_GPIOD },
69};
70
71/* pin is expected to be valid */
72static const struct gmbus_pin *get_gmbus_pin(struct drm_i915_private *dev_priv,
73 unsigned int pin)
74{
75 if (IS_BROXTON(dev_priv))
76 return &gmbus_pins_bxt[pin];
6364e67e
JN
77 else if (IS_SKYLAKE(dev_priv))
78 return &gmbus_pins_skl[pin];
c1bad5b6
JN
79 else if (IS_BROADWELL(dev_priv))
80 return &gmbus_pins_bdw[pin];
4c272834
JN
81 else
82 return &gmbus_pins[pin];
83}
84
88ac7939
JN
85bool intel_gmbus_is_valid_pin(struct drm_i915_private *dev_priv,
86 unsigned int pin)
87{
4c272834
JN
88 unsigned int size;
89
90 if (IS_BROXTON(dev_priv))
91 size = ARRAY_SIZE(gmbus_pins_bxt);
6364e67e
JN
92 else if (IS_SKYLAKE(dev_priv))
93 size = ARRAY_SIZE(gmbus_pins_skl);
c1bad5b6
JN
94 else if (IS_BROADWELL(dev_priv))
95 size = ARRAY_SIZE(gmbus_pins_bdw);
4c272834
JN
96 else
97 size = ARRAY_SIZE(gmbus_pins);
98
99 return pin < size && get_gmbus_pin(dev_priv, pin)->reg;
88ac7939
JN
100}
101
f899fc64
CW
102/* Intel GPIO access functions */
103
1849ecb2 104#define I2C_RISEFALL_TIME 10
f899fc64 105
e957d772
CW
106static inline struct intel_gmbus *
107to_intel_gmbus(struct i2c_adapter *i2c)
108{
109 return container_of(i2c, struct intel_gmbus, adapter);
110}
111
f899fc64
CW
112void
113intel_i2c_reset(struct drm_device *dev)
0ba0e9e1
SL
114{
115 struct drm_i915_private *dev_priv = dev->dev_private;
24eb2d59 116
699fc401
VS
117 I915_WRITE(GMBUS0, 0);
118 I915_WRITE(GMBUS4, 0);
f899fc64
CW
119}
120
121static void intel_i2c_quirk_set(struct drm_i915_private *dev_priv, bool enable)
122{
b222f267 123 u32 val;
0ba0e9e1
SL
124
125 /* When using bit bashing for I2C, this bit needs to be set to 1 */
f899fc64 126 if (!IS_PINEVIEW(dev_priv->dev))
0ba0e9e1 127 return;
b222f267
CW
128
129 val = I915_READ(DSPCLK_GATE_D);
0ba0e9e1 130 if (enable)
b222f267 131 val |= DPCUNIT_CLOCK_GATE_DISABLE;
0ba0e9e1 132 else
b222f267
CW
133 val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
134 I915_WRITE(DSPCLK_GATE_D, val);
0ba0e9e1
SL
135}
136
36c785f0 137static u32 get_reserved(struct intel_gmbus *bus)
e957d772 138{
36c785f0 139 struct drm_i915_private *dev_priv = bus->dev_priv;
e957d772
CW
140 struct drm_device *dev = dev_priv->dev;
141 u32 reserved = 0;
142
143 /* On most chips, these bits must be preserved in software. */
144 if (!IS_I830(dev) && !IS_845G(dev))
36c785f0 145 reserved = I915_READ_NOTRACE(bus->gpio_reg) &
db5e4172
YL
146 (GPIO_DATA_PULLUP_DISABLE |
147 GPIO_CLOCK_PULLUP_DISABLE);
e957d772
CW
148
149 return reserved;
150}
151
79e53945
JB
152static int get_clock(void *data)
153{
36c785f0
DV
154 struct intel_gmbus *bus = data;
155 struct drm_i915_private *dev_priv = bus->dev_priv;
156 u32 reserved = get_reserved(bus);
157 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_CLOCK_DIR_MASK);
158 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
159 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_CLOCK_VAL_IN) != 0;
79e53945
JB
160}
161
162static int get_data(void *data)
163{
36c785f0
DV
164 struct intel_gmbus *bus = data;
165 struct drm_i915_private *dev_priv = bus->dev_priv;
166 u32 reserved = get_reserved(bus);
167 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_DATA_DIR_MASK);
168 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
169 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_DATA_VAL_IN) != 0;
79e53945
JB
170}
171
172static void set_clock(void *data, int state_high)
173{
36c785f0
DV
174 struct intel_gmbus *bus = data;
175 struct drm_i915_private *dev_priv = bus->dev_priv;
176 u32 reserved = get_reserved(bus);
e957d772 177 u32 clock_bits;
79e53945
JB
178
179 if (state_high)
180 clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
181 else
182 clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
183 GPIO_CLOCK_VAL_MASK;
f899fc64 184
36c785f0
DV
185 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
186 POSTING_READ(bus->gpio_reg);
79e53945
JB
187}
188
189static void set_data(void *data, int state_high)
190{
36c785f0
DV
191 struct intel_gmbus *bus = data;
192 struct drm_i915_private *dev_priv = bus->dev_priv;
193 u32 reserved = get_reserved(bus);
e957d772 194 u32 data_bits;
79e53945
JB
195
196 if (state_high)
197 data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
198 else
199 data_bits = GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
200 GPIO_DATA_VAL_MASK;
201
36c785f0
DV
202 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
203 POSTING_READ(bus->gpio_reg);
79e53945
JB
204}
205
489fbc10
DK
206static int
207intel_gpio_pre_xfer(struct i2c_adapter *adapter)
208{
209 struct intel_gmbus *bus = container_of(adapter,
210 struct intel_gmbus,
211 adapter);
212 struct drm_i915_private *dev_priv = bus->dev_priv;
213
214 intel_i2c_reset(dev_priv->dev);
215 intel_i2c_quirk_set(dev_priv, true);
216 set_data(bus, 1);
217 set_clock(bus, 1);
218 udelay(I2C_RISEFALL_TIME);
219 return 0;
220}
221
222static void
223intel_gpio_post_xfer(struct i2c_adapter *adapter)
224{
225 struct intel_gmbus *bus = container_of(adapter,
226 struct intel_gmbus,
227 adapter);
228 struct drm_i915_private *dev_priv = bus->dev_priv;
229
230 set_data(bus, 1);
231 set_clock(bus, 1);
232 intel_i2c_quirk_set(dev_priv, false);
233}
234
2ed06c93 235static void
5ea6e5e3 236intel_gpio_setup(struct intel_gmbus *bus, unsigned int pin)
f0217c42 237{
36c785f0 238 struct drm_i915_private *dev_priv = bus->dev_priv;
36c785f0 239 struct i2c_algo_bit_data *algo;
f0217c42 240
c167a6fc 241 algo = &bus->bit_algo;
36c785f0 242
4c272834
JN
243 bus->gpio_reg = dev_priv->gpio_mmio_base +
244 get_gmbus_pin(dev_priv, pin)->reg;
79e53945 245
c167a6fc 246 bus->adapter.algo_data = algo;
36c785f0
DV
247 algo->setsda = set_data;
248 algo->setscl = set_clock;
249 algo->getsda = get_data;
250 algo->getscl = get_clock;
489fbc10
DK
251 algo->pre_xfer = intel_gpio_pre_xfer;
252 algo->post_xfer = intel_gpio_post_xfer;
36c785f0
DV
253 algo->udelay = I2C_RISEFALL_TIME;
254 algo->timeout = usecs_to_jiffies(2200);
255 algo->data = bus;
79e53945
JB
256}
257
61168c53
DV
258static int
259gmbus_wait_hw_status(struct drm_i915_private *dev_priv,
28c70f16
DV
260 u32 gmbus2_status,
261 u32 gmbus4_irq_en)
61168c53 262{
28c70f16 263 int i;
28c70f16
DV
264 u32 gmbus2 = 0;
265 DEFINE_WAIT(wait);
266
c12aba5a
JK
267 if (!HAS_GMBUS_IRQ(dev_priv->dev))
268 gmbus4_irq_en = 0;
269
28c70f16
DV
270 /* Important: The hw handles only the first bit, so set only one! Since
271 * we also need to check for NAKs besides the hw ready/idle signal, we
272 * need to wake up periodically and check that ourselves. */
699fc401 273 I915_WRITE(GMBUS4, gmbus4_irq_en);
28c70f16 274
2554fc1f 275 for (i = 0; i < msecs_to_jiffies_timeout(50); i++) {
28c70f16
DV
276 prepare_to_wait(&dev_priv->gmbus_wait_queue, &wait,
277 TASK_UNINTERRUPTIBLE);
278
699fc401 279 gmbus2 = I915_READ_NOTRACE(GMBUS2);
28c70f16
DV
280 if (gmbus2 & (GMBUS_SATOER | gmbus2_status))
281 break;
61168c53 282
28c70f16
DV
283 schedule_timeout(1);
284 }
285 finish_wait(&dev_priv->gmbus_wait_queue, &wait);
286
699fc401 287 I915_WRITE(GMBUS4, 0);
61168c53
DV
288
289 if (gmbus2 & GMBUS_SATOER)
290 return -ENXIO;
28c70f16
DV
291 if (gmbus2 & gmbus2_status)
292 return 0;
293 return -ETIMEDOUT;
61168c53
DV
294}
295
2c438c02
DV
296static int
297gmbus_wait_idle(struct drm_i915_private *dev_priv)
298{
299 int ret;
2c438c02 300
699fc401 301#define C ((I915_READ_NOTRACE(GMBUS2) & GMBUS_ACTIVE) == 0)
2c438c02
DV
302
303 if (!HAS_GMBUS_IRQ(dev_priv->dev))
304 return wait_for(C, 10);
305
306 /* Important: The hw handles only the first bit, so set only one! */
699fc401 307 I915_WRITE(GMBUS4, GMBUS_IDLE_EN);
2c438c02 308
3598706b
ID
309 ret = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
310 msecs_to_jiffies_timeout(10));
2c438c02 311
699fc401 312 I915_WRITE(GMBUS4, 0);
2c438c02
DV
313
314 if (ret)
315 return 0;
316 else
317 return -ETIMEDOUT;
318#undef C
319}
320
924a93ed 321static int
9535c475
DT
322gmbus_xfer_read_chunk(struct drm_i915_private *dev_priv,
323 unsigned short addr, u8 *buf, unsigned int len,
324 u32 gmbus1_index)
924a93ed 325{
699fc401 326 I915_WRITE(GMBUS1,
56f9eac0 327 gmbus1_index |
924a93ed 328 GMBUS_CYCLE_WAIT |
924a93ed 329 (len << GMBUS_BYTE_COUNT_SHIFT) |
9535c475 330 (addr << GMBUS_SLAVE_ADDR_SHIFT) |
924a93ed 331 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
79985eee 332 while (len) {
90e6b26d 333 int ret;
924a93ed
DK
334 u32 val, loop = 0;
335
28c70f16
DV
336 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
337 GMBUS_HW_RDY_EN);
90e6b26d 338 if (ret)
61168c53 339 return ret;
924a93ed 340
699fc401 341 val = I915_READ(GMBUS3);
924a93ed
DK
342 do {
343 *buf++ = val & 0xff;
344 val >>= 8;
345 } while (--len && ++loop < 4);
79985eee 346 }
924a93ed
DK
347
348 return 0;
349}
350
351static int
9535c475
DT
352gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
353 u32 gmbus1_index)
924a93ed 354{
924a93ed 355 u8 *buf = msg->buf;
9535c475
DT
356 unsigned int rx_size = msg->len;
357 unsigned int len;
358 int ret;
359
360 do {
361 len = min(rx_size, GMBUS_BYTE_COUNT_MAX);
362
363 ret = gmbus_xfer_read_chunk(dev_priv, msg->addr,
364 buf, len, gmbus1_index);
365 if (ret)
366 return ret;
367
368 rx_size -= len;
369 buf += len;
370 } while (rx_size != 0);
371
372 return 0;
373}
374
375static int
376gmbus_xfer_write_chunk(struct drm_i915_private *dev_priv,
377 unsigned short addr, u8 *buf, unsigned int len)
378{
9535c475 379 unsigned int chunk_size = len;
924a93ed
DK
380 u32 val, loop;
381
382 val = loop = 0;
26883c31
DK
383 while (len && loop < 4) {
384 val |= *buf++ << (8 * loop++);
385 len -= 1;
386 }
924a93ed 387
699fc401
VS
388 I915_WRITE(GMBUS3, val);
389 I915_WRITE(GMBUS1,
924a93ed 390 GMBUS_CYCLE_WAIT |
9535c475
DT
391 (chunk_size << GMBUS_BYTE_COUNT_SHIFT) |
392 (addr << GMBUS_SLAVE_ADDR_SHIFT) |
924a93ed 393 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
924a93ed 394 while (len) {
90e6b26d 395 int ret;
90e6b26d 396
924a93ed
DK
397 val = loop = 0;
398 do {
399 val |= *buf++ << (8 * loop);
400 } while (--len && ++loop < 4);
401
699fc401 402 I915_WRITE(GMBUS3, val);
7a39a9d4 403
28c70f16
DV
404 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
405 GMBUS_HW_RDY_EN);
90e6b26d 406 if (ret)
61168c53 407 return ret;
924a93ed 408 }
9535c475
DT
409
410 return 0;
411}
412
413static int
414gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg)
415{
416 u8 *buf = msg->buf;
417 unsigned int tx_size = msg->len;
418 unsigned int len;
419 int ret;
420
421 do {
422 len = min(tx_size, GMBUS_BYTE_COUNT_MAX);
423
424 ret = gmbus_xfer_write_chunk(dev_priv, msg->addr, buf, len);
425 if (ret)
426 return ret;
427
428 buf += len;
429 tx_size -= len;
430 } while (tx_size != 0);
431
924a93ed
DK
432 return 0;
433}
434
56f9eac0
DK
435/*
436 * The gmbus controller can combine a 1 or 2 byte write with a read that
437 * immediately follows it by using an "INDEX" cycle.
438 */
439static bool
440gmbus_is_index_read(struct i2c_msg *msgs, int i, int num)
441{
442 return (i + 1 < num &&
443 !(msgs[i].flags & I2C_M_RD) && msgs[i].len <= 2 &&
444 (msgs[i + 1].flags & I2C_M_RD));
445}
446
447static int
448gmbus_xfer_index_read(struct drm_i915_private *dev_priv, struct i2c_msg *msgs)
449{
56f9eac0
DK
450 u32 gmbus1_index = 0;
451 u32 gmbus5 = 0;
452 int ret;
453
454 if (msgs[0].len == 2)
455 gmbus5 = GMBUS_2BYTE_INDEX_EN |
456 msgs[0].buf[1] | (msgs[0].buf[0] << 8);
457 if (msgs[0].len == 1)
458 gmbus1_index = GMBUS_CYCLE_INDEX |
459 (msgs[0].buf[0] << GMBUS_SLAVE_INDEX_SHIFT);
460
461 /* GMBUS5 holds 16-bit index */
462 if (gmbus5)
699fc401 463 I915_WRITE(GMBUS5, gmbus5);
56f9eac0
DK
464
465 ret = gmbus_xfer_read(dev_priv, &msgs[1], gmbus1_index);
466
467 /* Clear GMBUS5 after each index transfer */
468 if (gmbus5)
699fc401 469 I915_WRITE(GMBUS5, 0);
56f9eac0
DK
470
471 return ret;
472}
473
f899fc64
CW
474static int
475gmbus_xfer(struct i2c_adapter *adapter,
476 struct i2c_msg *msgs,
477 int num)
478{
479 struct intel_gmbus *bus = container_of(adapter,
480 struct intel_gmbus,
481 adapter);
c2b9152f 482 struct drm_i915_private *dev_priv = bus->dev_priv;
699fc401 483 int i = 0, inc, try = 0;
72d66afd 484 int ret = 0;
f899fc64 485
c67a470b 486 intel_aux_display_runtime_get(dev_priv);
8a8ed1f5
YS
487 mutex_lock(&dev_priv->gmbus_mutex);
488
489 if (bus->force_bit) {
489fbc10 490 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
8a8ed1f5
YS
491 goto out;
492 }
f899fc64 493
3f5f1554 494retry:
699fc401 495 I915_WRITE(GMBUS0, bus->reg0);
f899fc64 496
3f5f1554
JN
497 for (; i < num; i += inc) {
498 inc = 1;
56f9eac0
DK
499 if (gmbus_is_index_read(msgs, i, num)) {
500 ret = gmbus_xfer_index_read(dev_priv, &msgs[i]);
3f5f1554 501 inc = 2; /* an index read is two msgs */
56f9eac0
DK
502 } else if (msgs[i].flags & I2C_M_RD) {
503 ret = gmbus_xfer_read(dev_priv, &msgs[i], 0);
504 } else {
72d66afd 505 ret = gmbus_xfer_write(dev_priv, &msgs[i]);
56f9eac0 506 }
924a93ed
DK
507
508 if (ret == -ETIMEDOUT)
509 goto timeout;
510 if (ret == -ENXIO)
511 goto clear_err;
512
28c70f16
DV
513 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_WAIT_PHASE,
514 GMBUS_HW_WAIT_EN);
61168c53
DV
515 if (ret == -ENXIO)
516 goto clear_err;
90e6b26d 517 if (ret)
f899fc64 518 goto timeout;
f899fc64
CW
519 }
520
72d66afd
DK
521 /* Generate a STOP condition on the bus. Note that gmbus can't generata
522 * a STOP on the very first cycle. To simplify the code we
523 * unconditionally generate the STOP condition with an additional gmbus
524 * cycle. */
699fc401 525 I915_WRITE(GMBUS1, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
72d66afd 526
e646d577
DK
527 /* Mark the GMBUS interface as disabled after waiting for idle.
528 * We will re-enable it at the start of the next xfer,
529 * till then let it sleep.
530 */
2c438c02 531 if (gmbus_wait_idle(dev_priv)) {
56fa6d6f 532 DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
e646d577 533 adapter->name);
72d66afd
DK
534 ret = -ETIMEDOUT;
535 }
699fc401 536 I915_WRITE(GMBUS0, 0);
72d66afd 537 ret = ret ?: i;
e646d577 538 goto out;
7f58aabc
CW
539
540clear_err:
e646d577
DK
541 /*
542 * Wait for bus to IDLE before clearing NAK.
543 * If we clear the NAK while bus is still active, then it will stay
544 * active and the next transaction may fail.
65e81866
DV
545 *
546 * If no ACK is received during the address phase of a transaction, the
547 * adapter must report -ENXIO. It is not clear what to return if no ACK
548 * is received at other times. But we have to be careful to not return
549 * spurious -ENXIO because that will prevent i2c and drm edid functions
550 * from retrying. So return -ENXIO only when gmbus properly quiescents -
551 * timing out seems to happen when there _is_ a ddc chip present, but
552 * it's slow responding and only answers on the 2nd retry.
e646d577 553 */
65e81866 554 ret = -ENXIO;
2c438c02 555 if (gmbus_wait_idle(dev_priv)) {
56fa6d6f
DK
556 DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
557 adapter->name);
65e81866
DV
558 ret = -ETIMEDOUT;
559 }
e646d577 560
7f58aabc
CW
561 /* Toggle the Software Clear Interrupt bit. This has the effect
562 * of resetting the GMBUS controller and so clearing the
563 * BUS_ERROR raised by the slave's NAK.
564 */
699fc401
VS
565 I915_WRITE(GMBUS1, GMBUS_SW_CLR_INT);
566 I915_WRITE(GMBUS1, 0);
567 I915_WRITE(GMBUS0, 0);
7f58aabc 568
56fa6d6f 569 DRM_DEBUG_KMS("GMBUS [%s] NAK for addr: %04x %c(%d)\n",
e646d577
DK
570 adapter->name, msgs[i].addr,
571 (msgs[i].flags & I2C_M_RD) ? 'r' : 'w', msgs[i].len);
572
3f5f1554
JN
573 /*
574 * Passive adapters sometimes NAK the first probe. Retry the first
575 * message once on -ENXIO for GMBUS transfers; the bit banging algorithm
576 * has retries internally. See also the retry loop in
577 * drm_do_probe_ddc_edid, which bails out on the first -ENXIO.
578 */
579 if (ret == -ENXIO && i == 0 && try++ == 0) {
580 DRM_DEBUG_KMS("GMBUS [%s] NAK on first message, retry\n",
581 adapter->name);
582 goto retry;
583 }
584
8a8ed1f5 585 goto out;
f899fc64
CW
586
587timeout:
874e3cc9
DK
588 DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
589 bus->adapter.name, bus->reg0 & 0xff);
699fc401 590 I915_WRITE(GMBUS0, 0);
7f58aabc 591
2ed06c93 592 /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
f2ce9faf 593 bus->force_bit = 1;
2ed06c93 594 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
489fbc10 595
8a8ed1f5
YS
596out:
597 mutex_unlock(&dev_priv->gmbus_mutex);
c67a470b 598 intel_aux_display_runtime_put(dev_priv);
8a8ed1f5 599 return ret;
f899fc64
CW
600}
601
602static u32 gmbus_func(struct i2c_adapter *adapter)
603{
f6f808c8
DV
604 return i2c_bit_algo.functionality(adapter) &
605 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
f899fc64
CW
606 /* I2C_FUNC_10BIT_ADDR | */
607 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
608 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
609}
610
611static const struct i2c_algorithm gmbus_algorithm = {
612 .master_xfer = gmbus_xfer,
613 .functionality = gmbus_func
614};
615
79e53945 616/**
f899fc64
CW
617 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
618 * @dev: DRM device
79e53945 619 */
f899fc64
CW
620int intel_setup_gmbus(struct drm_device *dev)
621{
f899fc64 622 struct drm_i915_private *dev_priv = dev->dev_private;
5ea6e5e3
JN
623 struct intel_gmbus *bus;
624 unsigned int pin;
625 int ret;
f899fc64 626
ab5c608b
BW
627 if (HAS_PCH_NOP(dev))
628 return 0;
629 else if (HAS_PCH_SPLIT(dev))
110447fc 630 dev_priv->gpio_mmio_base = PCH_GPIOA - GPIOA;
d8112150
VS
631 else if (IS_VALLEYVIEW(dev))
632 dev_priv->gpio_mmio_base = VLV_DISPLAY_BASE;
110447fc
DV
633 else
634 dev_priv->gpio_mmio_base = 0;
635
8a8ed1f5 636 mutex_init(&dev_priv->gmbus_mutex);
28c70f16 637 init_waitqueue_head(&dev_priv->gmbus_wait_queue);
8a8ed1f5 638
5ea6e5e3 639 for (pin = 0; pin < ARRAY_SIZE(dev_priv->gmbus); pin++) {
88ac7939 640 if (!intel_gmbus_is_valid_pin(dev_priv, pin))
5ea6e5e3
JN
641 continue;
642
643 bus = &dev_priv->gmbus[pin];
f899fc64
CW
644
645 bus->adapter.owner = THIS_MODULE;
646 bus->adapter.class = I2C_CLASS_DDC;
647 snprintf(bus->adapter.name,
69669455
JD
648 sizeof(bus->adapter.name),
649 "i915 gmbus %s",
4c272834 650 get_gmbus_pin(dev_priv, pin)->name);
f899fc64
CW
651
652 bus->adapter.dev.parent = &dev->pdev->dev;
c2b9152f 653 bus->dev_priv = dev_priv;
f899fc64
CW
654
655 bus->adapter.algo = &gmbus_algorithm;
f899fc64 656
e957d772 657 /* By default use a conservative clock rate */
5ea6e5e3 658 bus->reg0 = pin | GMBUS_RATE_100KHZ;
cb8ea752 659
83ee9e64
DV
660 /* gmbus seems to be broken on i830 */
661 if (IS_I830(dev))
f2ce9faf 662 bus->force_bit = 1;
83ee9e64 663
5ea6e5e3 664 intel_gpio_setup(bus, pin);
cee25168
JN
665
666 ret = i2c_add_adapter(&bus->adapter);
667 if (ret)
668 goto err;
f899fc64
CW
669 }
670
671 intel_i2c_reset(dev_priv->dev);
672
673 return 0;
674
675err:
5ea6e5e3 676 while (--pin) {
88ac7939 677 if (!intel_gmbus_is_valid_pin(dev_priv, pin))
5ea6e5e3
JN
678 continue;
679
680 bus = &dev_priv->gmbus[pin];
f899fc64
CW
681 i2c_del_adapter(&bus->adapter);
682 }
f899fc64
CW
683 return ret;
684}
685
3bd7d909 686struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
0184df46 687 unsigned int pin)
3bd7d909 688{
88ac7939 689 if (WARN_ON(!intel_gmbus_is_valid_pin(dev_priv, pin)))
5ea6e5e3
JN
690 return NULL;
691
692 return &dev_priv->gmbus[pin].adapter;
3bd7d909
DK
693}
694
e957d772
CW
695void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
696{
697 struct intel_gmbus *bus = to_intel_gmbus(adapter);
698
d5090b96 699 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
e957d772
CW
700}
701
702void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
703{
704 struct intel_gmbus *bus = to_intel_gmbus(adapter);
705
f2ce9faf
CW
706 bus->force_bit += force_bit ? 1 : -1;
707 DRM_DEBUG_KMS("%sabling bit-banging on %s. force bit now %d\n",
708 force_bit ? "en" : "dis", adapter->name,
709 bus->force_bit);
e957d772
CW
710}
711
f899fc64 712void intel_teardown_gmbus(struct drm_device *dev)
79e53945 713{
f899fc64 714 struct drm_i915_private *dev_priv = dev->dev_private;
5ea6e5e3
JN
715 struct intel_gmbus *bus;
716 unsigned int pin;
717
718 for (pin = 0; pin < ARRAY_SIZE(dev_priv->gmbus); pin++) {
88ac7939 719 if (!intel_gmbus_is_valid_pin(dev_priv, pin))
5ea6e5e3 720 continue;
f9c10a9b 721
5ea6e5e3 722 bus = &dev_priv->gmbus[pin];
f899fc64
CW
723 i2c_del_adapter(&bus->adapter);
724 }
79e53945 725}
This page took 0.426608 seconds and 5 git commands to generate.