blob: d33b61d0dd3331b6bd073806d0482b19aeb0eb08 [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
Chon Ming Lee24eb2d52013-09-27 15:31:00 +080037enum disp_clk {
38 CDCLK,
39 CZCLK
40};
41
Daniel Kurtz2ed06c92012-03-28 02:36:15 +080042struct gmbus_port {
43 const char *name;
44 int reg;
45};
46
47static const struct gmbus_port gmbus_ports[] = {
48 { "ssc", GPIOB },
49 { "vga", GPIOA },
50 { "panel", GPIOC },
51 { "dpc", GPIOD },
52 { "dpb", GPIOE },
53 { "dpd", GPIOF },
54};
55
Chris Wilsonf899fc62010-07-20 15:44:45 -070056/* Intel GPIO access functions */
57
Jean Delvare1849ecb2012-01-28 11:07:09 +010058#define I2C_RISEFALL_TIME 10
Chris Wilsonf899fc62010-07-20 15:44:45 -070059
Chris Wilsone957d772010-09-24 12:52:03 +010060static inline struct intel_gmbus *
61to_intel_gmbus(struct i2c_adapter *i2c)
62{
63 return container_of(i2c, struct intel_gmbus, adapter);
64}
65
Chon Ming Lee24eb2d52013-09-27 15:31:00 +080066static int get_disp_clk_div(struct drm_i915_private *dev_priv,
67 enum disp_clk clk)
68{
69 u32 reg_val;
70 int clk_ratio;
71
72 reg_val = I915_READ(CZCLK_CDCLK_FREQ_RATIO);
73
74 if (clk == CDCLK)
75 clk_ratio =
76 ((reg_val & CDCLK_FREQ_MASK) >> CDCLK_FREQ_SHIFT) + 1;
77 else
78 clk_ratio = (reg_val & CZCLK_FREQ_MASK) + 1;
79
80 return clk_ratio;
81}
82
83static void gmbus_set_freq(struct drm_i915_private *dev_priv)
84{
Jesse Barnes586f49d2013-11-04 16:06:59 -080085 int vco, gmbus_freq = 0, cdclk_div;
Chon Ming Lee24eb2d52013-09-27 15:31:00 +080086
87 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
88
Jesse Barnes586f49d2013-11-04 16:06:59 -080089 vco = valleyview_get_vco(dev_priv);
Chon Ming Lee24eb2d52013-09-27 15:31:00 +080090
91 /* Get the CDCLK divide ratio */
92 cdclk_div = get_disp_clk_div(dev_priv, CDCLK);
93
94 /*
95 * Program the gmbus_freq based on the cdclk frequency.
96 * BSpec erroneously claims we should aim for 4MHz, but
97 * in fact 1MHz is the correct frequency.
98 */
99 if (cdclk_div)
Jesse Barnes586f49d2013-11-04 16:06:59 -0800100 gmbus_freq = (vco << 1) / cdclk_div;
Chon Ming Lee24eb2d52013-09-27 15:31:00 +0800101
102 if (WARN_ON(gmbus_freq == 0))
103 return;
104
105 I915_WRITE(GMBUSFREQ_VLV, gmbus_freq);
106}
107
Chris Wilsonf899fc62010-07-20 15:44:45 -0700108void
109intel_i2c_reset(struct drm_device *dev)
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800110{
111 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee24eb2d52013-09-27 15:31:00 +0800112
113 /*
114 * In BIOS-less system, program the correct gmbus frequency
115 * before reading edid.
116 */
117 if (IS_VALLEYVIEW(dev))
118 gmbus_set_freq(dev_priv);
119
Daniel Vetter110447fc2012-03-23 23:43:36 +0100120 I915_WRITE(dev_priv->gpio_mmio_base + GMBUS0, 0);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100121 I915_WRITE(dev_priv->gpio_mmio_base + GMBUS4, 0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700122}
123
124static void intel_i2c_quirk_set(struct drm_i915_private *dev_priv, bool enable)
125{
Chris Wilsonb222f262010-09-11 21:48:25 +0100126 u32 val;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800127
128 /* When using bit bashing for I2C, this bit needs to be set to 1 */
Chris Wilsonf899fc62010-07-20 15:44:45 -0700129 if (!IS_PINEVIEW(dev_priv->dev))
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800130 return;
Chris Wilsonb222f262010-09-11 21:48:25 +0100131
132 val = I915_READ(DSPCLK_GATE_D);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800133 if (enable)
Chris Wilsonb222f262010-09-11 21:48:25 +0100134 val |= DPCUNIT_CLOCK_GATE_DISABLE;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800135 else
Chris Wilsonb222f262010-09-11 21:48:25 +0100136 val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
137 I915_WRITE(DSPCLK_GATE_D, val);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800138}
139
Daniel Vetter36c785f2012-02-14 22:37:22 +0100140static u32 get_reserved(struct intel_gmbus *bus)
Chris Wilsone957d772010-09-24 12:52:03 +0100141{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100142 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsone957d772010-09-24 12:52:03 +0100143 struct drm_device *dev = dev_priv->dev;
144 u32 reserved = 0;
145
146 /* On most chips, these bits must be preserved in software. */
147 if (!IS_I830(dev) && !IS_845G(dev))
Daniel Vetter36c785f2012-02-14 22:37:22 +0100148 reserved = I915_READ_NOTRACE(bus->gpio_reg) &
Yuanhan Liudb5e4172010-11-08 09:58:16 +0000149 (GPIO_DATA_PULLUP_DISABLE |
150 GPIO_CLOCK_PULLUP_DISABLE);
Chris Wilsone957d772010-09-24 12:52:03 +0100151
152 return reserved;
153}
154
Jesse Barnes79e53942008-11-07 14:24:08 -0800155static int get_clock(void *data)
156{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100157 struct intel_gmbus *bus = data;
158 struct drm_i915_private *dev_priv = bus->dev_priv;
159 u32 reserved = get_reserved(bus);
160 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_CLOCK_DIR_MASK);
161 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
162 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_CLOCK_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800163}
164
165static int get_data(void *data)
166{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100167 struct intel_gmbus *bus = data;
168 struct drm_i915_private *dev_priv = bus->dev_priv;
169 u32 reserved = get_reserved(bus);
170 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_DATA_DIR_MASK);
171 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
172 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_DATA_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800173}
174
175static void set_clock(void *data, int state_high)
176{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100177 struct intel_gmbus *bus = data;
178 struct drm_i915_private *dev_priv = bus->dev_priv;
179 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100180 u32 clock_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800181
182 if (state_high)
183 clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
184 else
185 clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
186 GPIO_CLOCK_VAL_MASK;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700187
Daniel Vetter36c785f2012-02-14 22:37:22 +0100188 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
189 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800190}
191
192static void set_data(void *data, int state_high)
193{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100194 struct intel_gmbus *bus = data;
195 struct drm_i915_private *dev_priv = bus->dev_priv;
196 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100197 u32 data_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800198
199 if (state_high)
200 data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
201 else
202 data_bits = GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
203 GPIO_DATA_VAL_MASK;
204
Daniel Vetter36c785f2012-02-14 22:37:22 +0100205 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
206 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800207}
208
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800209static int
210intel_gpio_pre_xfer(struct i2c_adapter *adapter)
211{
212 struct intel_gmbus *bus = container_of(adapter,
213 struct intel_gmbus,
214 adapter);
215 struct drm_i915_private *dev_priv = bus->dev_priv;
216
217 intel_i2c_reset(dev_priv->dev);
218 intel_i2c_quirk_set(dev_priv, true);
219 set_data(bus, 1);
220 set_clock(bus, 1);
221 udelay(I2C_RISEFALL_TIME);
222 return 0;
223}
224
225static void
226intel_gpio_post_xfer(struct i2c_adapter *adapter)
227{
228 struct intel_gmbus *bus = container_of(adapter,
229 struct intel_gmbus,
230 adapter);
231 struct drm_i915_private *dev_priv = bus->dev_priv;
232
233 set_data(bus, 1);
234 set_clock(bus, 1);
235 intel_i2c_quirk_set(dev_priv, false);
236}
237
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800238static void
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100239intel_gpio_setup(struct intel_gmbus *bus, u32 pin)
Eric Anholtf0217c42009-12-01 11:56:30 -0800240{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100241 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100242 struct i2c_algo_bit_data *algo;
Eric Anholtf0217c42009-12-01 11:56:30 -0800243
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100244 algo = &bus->bit_algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100245
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800246 /* -1 to map pin pair to gmbus index */
247 bus->gpio_reg = dev_priv->gpio_mmio_base + gmbus_ports[pin - 1].reg;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700248
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100249 bus->adapter.algo_data = algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100250 algo->setsda = set_data;
251 algo->setscl = set_clock;
252 algo->getsda = get_data;
253 algo->getscl = get_clock;
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800254 algo->pre_xfer = intel_gpio_pre_xfer;
255 algo->post_xfer = intel_gpio_post_xfer;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100256 algo->udelay = I2C_RISEFALL_TIME;
257 algo->timeout = usecs_to_jiffies(2200);
258 algo->data = bus;
Jesse Barnes79e53942008-11-07 14:24:08 -0800259}
260
Chris Wilsonf899fc62010-07-20 15:44:45 -0700261static int
Daniel Vetter61168c52012-12-01 13:53:43 +0100262gmbus_wait_hw_status(struct drm_i915_private *dev_priv,
Daniel Vetter28c70f12012-12-01 13:53:45 +0100263 u32 gmbus2_status,
264 u32 gmbus4_irq_en)
Daniel Vetter61168c52012-12-01 13:53:43 +0100265{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100266 int i;
Daniel Vetter61168c52012-12-01 13:53:43 +0100267 int reg_offset = dev_priv->gpio_mmio_base;
Daniel Vetter28c70f12012-12-01 13:53:45 +0100268 u32 gmbus2 = 0;
269 DEFINE_WAIT(wait);
Daniel Vetter61168c52012-12-01 13:53:43 +0100270
Jiri Kosinac12aba52013-03-19 09:56:57 +0100271 if (!HAS_GMBUS_IRQ(dev_priv->dev))
272 gmbus4_irq_en = 0;
273
Daniel Vetter28c70f12012-12-01 13:53:45 +0100274 /* Important: The hw handles only the first bit, so set only one! Since
275 * we also need to check for NAKs besides the hw ready/idle signal, we
276 * need to wake up periodically and check that ourselves. */
277 I915_WRITE(GMBUS4 + reg_offset, gmbus4_irq_en);
278
Imre Deak2554fc12013-05-21 20:03:18 +0300279 for (i = 0; i < msecs_to_jiffies_timeout(50); i++) {
Daniel Vetter28c70f12012-12-01 13:53:45 +0100280 prepare_to_wait(&dev_priv->gmbus_wait_queue, &wait,
281 TASK_UNINTERRUPTIBLE);
282
Daniel Vetteref04f002012-12-01 21:03:59 +0100283 gmbus2 = I915_READ_NOTRACE(GMBUS2 + reg_offset);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100284 if (gmbus2 & (GMBUS_SATOER | gmbus2_status))
285 break;
286
287 schedule_timeout(1);
288 }
289 finish_wait(&dev_priv->gmbus_wait_queue, &wait);
290
291 I915_WRITE(GMBUS4 + reg_offset, 0);
Daniel Vetter61168c52012-12-01 13:53:43 +0100292
293 if (gmbus2 & GMBUS_SATOER)
294 return -ENXIO;
Daniel Vetter28c70f12012-12-01 13:53:45 +0100295 if (gmbus2 & gmbus2_status)
296 return 0;
297 return -ETIMEDOUT;
Daniel Vetter61168c52012-12-01 13:53:43 +0100298}
299
300static int
Daniel Vetter2c438c02012-12-01 13:53:46 +0100301gmbus_wait_idle(struct drm_i915_private *dev_priv)
302{
303 int ret;
304 int reg_offset = dev_priv->gpio_mmio_base;
305
Daniel Vetteref04f002012-12-01 21:03:59 +0100306#define C ((I915_READ_NOTRACE(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0)
Daniel Vetter2c438c02012-12-01 13:53:46 +0100307
308 if (!HAS_GMBUS_IRQ(dev_priv->dev))
309 return wait_for(C, 10);
310
311 /* Important: The hw handles only the first bit, so set only one! */
312 I915_WRITE(GMBUS4 + reg_offset, GMBUS_IDLE_EN);
313
Imre Deak35987062013-05-21 20:03:20 +0300314 ret = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
315 msecs_to_jiffies_timeout(10));
Daniel Vetter2c438c02012-12-01 13:53:46 +0100316
317 I915_WRITE(GMBUS4 + reg_offset, 0);
318
319 if (ret)
320 return 0;
321 else
322 return -ETIMEDOUT;
323#undef C
324}
325
326static int
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800327gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
328 u32 gmbus1_index)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800329{
330 int reg_offset = dev_priv->gpio_mmio_base;
331 u16 len = msg->len;
332 u8 *buf = msg->buf;
333
334 I915_WRITE(GMBUS1 + reg_offset,
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800335 gmbus1_index |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800336 GMBUS_CYCLE_WAIT |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800337 (len << GMBUS_BYTE_COUNT_SHIFT) |
338 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
339 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800340 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800341 int ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800342 u32 val, loop = 0;
343
Daniel Vetter28c70f12012-12-01 13:53:45 +0100344 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
345 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800346 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100347 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800348
349 val = I915_READ(GMBUS3 + reg_offset);
350 do {
351 *buf++ = val & 0xff;
352 val >>= 8;
353 } while (--len && ++loop < 4);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800354 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800355
356 return 0;
357}
358
359static int
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800360gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800361{
362 int reg_offset = dev_priv->gpio_mmio_base;
363 u16 len = msg->len;
364 u8 *buf = msg->buf;
365 u32 val, loop;
366
367 val = loop = 0;
Daniel Kurtz26883c32012-03-30 19:46:36 +0800368 while (len && loop < 4) {
369 val |= *buf++ << (8 * loop++);
370 len -= 1;
371 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800372
373 I915_WRITE(GMBUS3 + reg_offset, val);
374 I915_WRITE(GMBUS1 + reg_offset,
375 GMBUS_CYCLE_WAIT |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800376 (msg->len << GMBUS_BYTE_COUNT_SHIFT) |
377 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
378 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800379 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800380 int ret;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800381
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800382 val = loop = 0;
383 do {
384 val |= *buf++ << (8 * loop);
385 } while (--len && ++loop < 4);
386
387 I915_WRITE(GMBUS3 + reg_offset, val);
Daniel Kurtz7a39a9d2012-03-30 19:46:37 +0800388
Daniel Vetter28c70f12012-12-01 13:53:45 +0100389 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
390 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800391 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100392 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800393 }
394 return 0;
395}
396
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800397/*
398 * The gmbus controller can combine a 1 or 2 byte write with a read that
399 * immediately follows it by using an "INDEX" cycle.
400 */
401static bool
402gmbus_is_index_read(struct i2c_msg *msgs, int i, int num)
403{
404 return (i + 1 < num &&
405 !(msgs[i].flags & I2C_M_RD) && msgs[i].len <= 2 &&
406 (msgs[i + 1].flags & I2C_M_RD));
407}
408
409static int
410gmbus_xfer_index_read(struct drm_i915_private *dev_priv, struct i2c_msg *msgs)
411{
412 int reg_offset = dev_priv->gpio_mmio_base;
413 u32 gmbus1_index = 0;
414 u32 gmbus5 = 0;
415 int ret;
416
417 if (msgs[0].len == 2)
418 gmbus5 = GMBUS_2BYTE_INDEX_EN |
419 msgs[0].buf[1] | (msgs[0].buf[0] << 8);
420 if (msgs[0].len == 1)
421 gmbus1_index = GMBUS_CYCLE_INDEX |
422 (msgs[0].buf[0] << GMBUS_SLAVE_INDEX_SHIFT);
423
424 /* GMBUS5 holds 16-bit index */
425 if (gmbus5)
426 I915_WRITE(GMBUS5 + reg_offset, gmbus5);
427
428 ret = gmbus_xfer_read(dev_priv, &msgs[1], gmbus1_index);
429
430 /* Clear GMBUS5 after each index transfer */
431 if (gmbus5)
432 I915_WRITE(GMBUS5 + reg_offset, 0);
433
434 return ret;
435}
436
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800437static int
Chris Wilsonf899fc62010-07-20 15:44:45 -0700438gmbus_xfer(struct i2c_adapter *adapter,
439 struct i2c_msg *msgs,
440 int num)
441{
442 struct intel_gmbus *bus = container_of(adapter,
443 struct intel_gmbus,
444 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100445 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800446 int i, reg_offset;
447 int ret = 0;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700448
Paulo Zanonic67a4702013-08-19 13:18:09 -0300449 intel_aux_display_runtime_get(dev_priv);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500450 mutex_lock(&dev_priv->gmbus_mutex);
451
452 if (bus->force_bit) {
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800453 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500454 goto out;
455 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700456
Daniel Vetter110447fc2012-03-23 23:43:36 +0100457 reg_offset = dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700458
Chris Wilsone957d772010-09-24 12:52:03 +0100459 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700460
461 for (i = 0; i < num; i++) {
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800462 if (gmbus_is_index_read(msgs, i, num)) {
463 ret = gmbus_xfer_index_read(dev_priv, &msgs[i]);
464 i += 1; /* set i to the index of the read xfer */
465 } else if (msgs[i].flags & I2C_M_RD) {
466 ret = gmbus_xfer_read(dev_priv, &msgs[i], 0);
467 } else {
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800468 ret = gmbus_xfer_write(dev_priv, &msgs[i]);
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800469 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700470
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800471 if (ret == -ETIMEDOUT)
472 goto timeout;
473 if (ret == -ENXIO)
474 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700475
Daniel Vetter28c70f12012-12-01 13:53:45 +0100476 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_WAIT_PHASE,
477 GMBUS_HW_WAIT_EN);
Daniel Vetter61168c52012-12-01 13:53:43 +0100478 if (ret == -ENXIO)
479 goto clear_err;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800480 if (ret)
Chris Wilsonf899fc62010-07-20 15:44:45 -0700481 goto timeout;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700482 }
483
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800484 /* Generate a STOP condition on the bus. Note that gmbus can't generata
485 * a STOP on the very first cycle. To simplify the code we
486 * unconditionally generate the STOP condition with an additional gmbus
487 * cycle. */
488 I915_WRITE(GMBUS1 + reg_offset, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
489
Benson Leungcaae7452012-02-09 12:03:17 -0800490 /* Mark the GMBUS interface as disabled after waiting for idle.
491 * We will re-enable it at the start of the next xfer,
492 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100493 */
Daniel Vetter2c438c02012-12-01 13:53:46 +0100494 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800495 DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800496 adapter->name);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800497 ret = -ETIMEDOUT;
498 }
Chris Wilson7f58aab2011-03-30 16:20:43 +0100499 I915_WRITE(GMBUS0 + reg_offset, 0);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800500 ret = ret ?: i;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500501 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700502
Daniel Kurtze646d572012-03-30 19:46:38 +0800503clear_err:
504 /*
505 * Wait for bus to IDLE before clearing NAK.
506 * If we clear the NAK while bus is still active, then it will stay
507 * active and the next transaction may fail.
Daniel Vetter65e81862012-05-21 20:19:48 +0200508 *
509 * If no ACK is received during the address phase of a transaction, the
510 * adapter must report -ENXIO. It is not clear what to return if no ACK
511 * is received at other times. But we have to be careful to not return
512 * spurious -ENXIO because that will prevent i2c and drm edid functions
513 * from retrying. So return -ENXIO only when gmbus properly quiescents -
514 * timing out seems to happen when there _is_ a ddc chip present, but
515 * it's slow responding and only answers on the 2nd retry.
Daniel Kurtze646d572012-03-30 19:46:38 +0800516 */
Daniel Vetter65e81862012-05-21 20:19:48 +0200517 ret = -ENXIO;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100518 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800519 DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
520 adapter->name);
Daniel Vetter65e81862012-05-21 20:19:48 +0200521 ret = -ETIMEDOUT;
522 }
Daniel Kurtze646d572012-03-30 19:46:38 +0800523
524 /* Toggle the Software Clear Interrupt bit. This has the effect
525 * of resetting the GMBUS controller and so clearing the
526 * BUS_ERROR raised by the slave's NAK.
527 */
528 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
529 I915_WRITE(GMBUS1 + reg_offset, 0);
530 I915_WRITE(GMBUS0 + reg_offset, 0);
531
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800532 DRM_DEBUG_KMS("GMBUS [%s] NAK for addr: %04x %c(%d)\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800533 adapter->name, msgs[i].addr,
534 (msgs[i].flags & I2C_M_RD) ? 'r' : 'w', msgs[i].len);
535
Daniel Kurtze646d572012-03-30 19:46:38 +0800536 goto out;
537
Chris Wilsonf899fc62010-07-20 15:44:45 -0700538timeout:
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800539 DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
540 bus->adapter.name, bus->reg0 & 0xff);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100541 I915_WRITE(GMBUS0 + reg_offset, 0);
542
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800543 /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000544 bus->force_bit = 1;
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800545 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800546
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500547out:
548 mutex_unlock(&dev_priv->gmbus_mutex);
Paulo Zanonic67a4702013-08-19 13:18:09 -0300549 intel_aux_display_runtime_put(dev_priv);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500550 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700551}
552
553static u32 gmbus_func(struct i2c_adapter *adapter)
554{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100555 return i2c_bit_algo.functionality(adapter) &
556 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700557 /* I2C_FUNC_10BIT_ADDR | */
558 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
559 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
560}
561
562static const struct i2c_algorithm gmbus_algorithm = {
563 .master_xfer = gmbus_xfer,
564 .functionality = gmbus_func
565};
566
567/**
568 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
569 * @dev: DRM device
570 */
571int intel_setup_gmbus(struct drm_device *dev)
572{
Chris Wilsonf899fc62010-07-20 15:44:45 -0700573 struct drm_i915_private *dev_priv = dev->dev_private;
574 int ret, i;
575
Ben Widawskyab5c6082013-04-05 13:12:41 -0700576 if (HAS_PCH_NOP(dev))
577 return 0;
578 else if (HAS_PCH_SPLIT(dev))
Daniel Vetter110447fc2012-03-23 23:43:36 +0100579 dev_priv->gpio_mmio_base = PCH_GPIOA - GPIOA;
Ville Syrjäläd8112152013-01-24 15:29:55 +0200580 else if (IS_VALLEYVIEW(dev))
581 dev_priv->gpio_mmio_base = VLV_DISPLAY_BASE;
Daniel Vetter110447fc2012-03-23 23:43:36 +0100582 else
583 dev_priv->gpio_mmio_base = 0;
584
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500585 mutex_init(&dev_priv->gmbus_mutex);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100586 init_waitqueue_head(&dev_priv->gmbus_wait_queue);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500587
Chris Wilsonf899fc62010-07-20 15:44:45 -0700588 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
589 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800590 u32 port = i + 1; /* +1 to map gmbus index to pin pair */
Chris Wilsonf899fc62010-07-20 15:44:45 -0700591
592 bus->adapter.owner = THIS_MODULE;
593 bus->adapter.class = I2C_CLASS_DDC;
594 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100595 sizeof(bus->adapter.name),
596 "i915 gmbus %s",
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800597 gmbus_ports[i].name);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700598
599 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100600 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700601
602 bus->adapter.algo = &gmbus_algorithm;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700603
Chris Wilsone957d772010-09-24 12:52:03 +0100604 /* By default use a conservative clock rate */
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800605 bus->reg0 = port | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100606
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200607 /* gmbus seems to be broken on i830 */
608 if (IS_I830(dev))
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000609 bus->force_bit = 1;
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200610
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800611 intel_gpio_setup(bus, port);
Jani Nikulacee25162012-08-13 17:33:02 +0300612
613 ret = i2c_add_adapter(&bus->adapter);
614 if (ret)
615 goto err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700616 }
617
618 intel_i2c_reset(dev_priv->dev);
619
620 return 0;
621
622err:
623 while (--i) {
624 struct intel_gmbus *bus = &dev_priv->gmbus[i];
625 i2c_del_adapter(&bus->adapter);
626 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700627 return ret;
628}
629
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800630struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
631 unsigned port)
632{
633 WARN_ON(!intel_gmbus_is_port_valid(port));
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800634 /* -1 to map pin pair to gmbus index */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800635 return (intel_gmbus_is_port_valid(port)) ?
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800636 &dev_priv->gmbus[port - 1].adapter : NULL;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800637}
638
Chris Wilsone957d772010-09-24 12:52:03 +0100639void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
640{
641 struct intel_gmbus *bus = to_intel_gmbus(adapter);
642
Adam Jacksond5090b92011-06-16 16:36:28 -0400643 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100644}
645
646void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
647{
648 struct intel_gmbus *bus = to_intel_gmbus(adapter);
649
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000650 bus->force_bit += force_bit ? 1 : -1;
651 DRM_DEBUG_KMS("%sabling bit-banging on %s. force bit now %d\n",
652 force_bit ? "en" : "dis", adapter->name,
653 bus->force_bit);
Chris Wilsone957d772010-09-24 12:52:03 +0100654}
655
Chris Wilsonf899fc62010-07-20 15:44:45 -0700656void intel_teardown_gmbus(struct drm_device *dev)
657{
658 struct drm_i915_private *dev_priv = dev->dev_private;
659 int i;
660
Chris Wilsonf899fc62010-07-20 15:44:45 -0700661 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
662 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700663 i2c_del_adapter(&bus->adapter);
664 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800665}