blob: b1dc33f478991755ec114fe66fbad7bc40fec4c0 [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
Jiri Kosinac12aba52013-03-19 09:56:57 +0100261/*
262 * gmbus on gen4 seems to be able to generate legacy interrupts even when in MSI
263 * mode. This results in spurious interrupt warnings if the legacy irq no. is
264 * shared with another device. The kernel then disables that interrupt source
265 * and so prevents the other device from working properly.
266 */
267#define HAS_GMBUS_IRQ(dev) (INTEL_INFO(dev)->gen >= 5)
Chris Wilsonf899fc62010-07-20 15:44:45 -0700268static int
Daniel Vetter61168c52012-12-01 13:53:43 +0100269gmbus_wait_hw_status(struct drm_i915_private *dev_priv,
Daniel Vetter28c70f12012-12-01 13:53:45 +0100270 u32 gmbus2_status,
271 u32 gmbus4_irq_en)
Daniel Vetter61168c52012-12-01 13:53:43 +0100272{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100273 int i;
Daniel Vetter61168c52012-12-01 13:53:43 +0100274 int reg_offset = dev_priv->gpio_mmio_base;
Daniel Vetter28c70f12012-12-01 13:53:45 +0100275 u32 gmbus2 = 0;
276 DEFINE_WAIT(wait);
Daniel Vetter61168c52012-12-01 13:53:43 +0100277
Jiri Kosinac12aba52013-03-19 09:56:57 +0100278 if (!HAS_GMBUS_IRQ(dev_priv->dev))
279 gmbus4_irq_en = 0;
280
Daniel Vetter28c70f12012-12-01 13:53:45 +0100281 /* Important: The hw handles only the first bit, so set only one! Since
282 * we also need to check for NAKs besides the hw ready/idle signal, we
283 * need to wake up periodically and check that ourselves. */
284 I915_WRITE(GMBUS4 + reg_offset, gmbus4_irq_en);
285
Imre Deak2554fc12013-05-21 20:03:18 +0300286 for (i = 0; i < msecs_to_jiffies_timeout(50); i++) {
Daniel Vetter28c70f12012-12-01 13:53:45 +0100287 prepare_to_wait(&dev_priv->gmbus_wait_queue, &wait,
288 TASK_UNINTERRUPTIBLE);
289
Daniel Vetteref04f002012-12-01 21:03:59 +0100290 gmbus2 = I915_READ_NOTRACE(GMBUS2 + reg_offset);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100291 if (gmbus2 & (GMBUS_SATOER | gmbus2_status))
292 break;
293
294 schedule_timeout(1);
295 }
296 finish_wait(&dev_priv->gmbus_wait_queue, &wait);
297
298 I915_WRITE(GMBUS4 + reg_offset, 0);
Daniel Vetter61168c52012-12-01 13:53:43 +0100299
300 if (gmbus2 & GMBUS_SATOER)
301 return -ENXIO;
Daniel Vetter28c70f12012-12-01 13:53:45 +0100302 if (gmbus2 & gmbus2_status)
303 return 0;
304 return -ETIMEDOUT;
Daniel Vetter61168c52012-12-01 13:53:43 +0100305}
306
307static int
Daniel Vetter2c438c02012-12-01 13:53:46 +0100308gmbus_wait_idle(struct drm_i915_private *dev_priv)
309{
310 int ret;
311 int reg_offset = dev_priv->gpio_mmio_base;
312
Daniel Vetteref04f002012-12-01 21:03:59 +0100313#define C ((I915_READ_NOTRACE(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0)
Daniel Vetter2c438c02012-12-01 13:53:46 +0100314
315 if (!HAS_GMBUS_IRQ(dev_priv->dev))
316 return wait_for(C, 10);
317
318 /* Important: The hw handles only the first bit, so set only one! */
319 I915_WRITE(GMBUS4 + reg_offset, GMBUS_IDLE_EN);
320
Imre Deak35987062013-05-21 20:03:20 +0300321 ret = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
322 msecs_to_jiffies_timeout(10));
Daniel Vetter2c438c02012-12-01 13:53:46 +0100323
324 I915_WRITE(GMBUS4 + reg_offset, 0);
325
326 if (ret)
327 return 0;
328 else
329 return -ETIMEDOUT;
330#undef C
331}
332
333static int
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800334gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
335 u32 gmbus1_index)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800336{
337 int reg_offset = dev_priv->gpio_mmio_base;
338 u16 len = msg->len;
339 u8 *buf = msg->buf;
340
341 I915_WRITE(GMBUS1 + reg_offset,
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800342 gmbus1_index |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800343 GMBUS_CYCLE_WAIT |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800344 (len << GMBUS_BYTE_COUNT_SHIFT) |
345 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
346 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800347 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800348 int ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800349 u32 val, loop = 0;
350
Daniel Vetter28c70f12012-12-01 13:53:45 +0100351 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
352 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800353 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100354 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800355
356 val = I915_READ(GMBUS3 + reg_offset);
357 do {
358 *buf++ = val & 0xff;
359 val >>= 8;
360 } while (--len && ++loop < 4);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800361 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800362
363 return 0;
364}
365
366static int
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800367gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800368{
369 int reg_offset = dev_priv->gpio_mmio_base;
370 u16 len = msg->len;
371 u8 *buf = msg->buf;
372 u32 val, loop;
373
374 val = loop = 0;
Daniel Kurtz26883c32012-03-30 19:46:36 +0800375 while (len && loop < 4) {
376 val |= *buf++ << (8 * loop++);
377 len -= 1;
378 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800379
380 I915_WRITE(GMBUS3 + reg_offset, val);
381 I915_WRITE(GMBUS1 + reg_offset,
382 GMBUS_CYCLE_WAIT |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800383 (msg->len << GMBUS_BYTE_COUNT_SHIFT) |
384 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
385 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800386 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800387 int ret;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800388
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800389 val = loop = 0;
390 do {
391 val |= *buf++ << (8 * loop);
392 } while (--len && ++loop < 4);
393
394 I915_WRITE(GMBUS3 + reg_offset, val);
Daniel Kurtz7a39a9d2012-03-30 19:46:37 +0800395
Daniel Vetter28c70f12012-12-01 13:53:45 +0100396 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
397 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800398 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100399 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800400 }
401 return 0;
402}
403
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800404/*
405 * The gmbus controller can combine a 1 or 2 byte write with a read that
406 * immediately follows it by using an "INDEX" cycle.
407 */
408static bool
409gmbus_is_index_read(struct i2c_msg *msgs, int i, int num)
410{
411 return (i + 1 < num &&
412 !(msgs[i].flags & I2C_M_RD) && msgs[i].len <= 2 &&
413 (msgs[i + 1].flags & I2C_M_RD));
414}
415
416static int
417gmbus_xfer_index_read(struct drm_i915_private *dev_priv, struct i2c_msg *msgs)
418{
419 int reg_offset = dev_priv->gpio_mmio_base;
420 u32 gmbus1_index = 0;
421 u32 gmbus5 = 0;
422 int ret;
423
424 if (msgs[0].len == 2)
425 gmbus5 = GMBUS_2BYTE_INDEX_EN |
426 msgs[0].buf[1] | (msgs[0].buf[0] << 8);
427 if (msgs[0].len == 1)
428 gmbus1_index = GMBUS_CYCLE_INDEX |
429 (msgs[0].buf[0] << GMBUS_SLAVE_INDEX_SHIFT);
430
431 /* GMBUS5 holds 16-bit index */
432 if (gmbus5)
433 I915_WRITE(GMBUS5 + reg_offset, gmbus5);
434
435 ret = gmbus_xfer_read(dev_priv, &msgs[1], gmbus1_index);
436
437 /* Clear GMBUS5 after each index transfer */
438 if (gmbus5)
439 I915_WRITE(GMBUS5 + reg_offset, 0);
440
441 return ret;
442}
443
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800444static int
Chris Wilsonf899fc62010-07-20 15:44:45 -0700445gmbus_xfer(struct i2c_adapter *adapter,
446 struct i2c_msg *msgs,
447 int num)
448{
449 struct intel_gmbus *bus = container_of(adapter,
450 struct intel_gmbus,
451 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100452 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800453 int i, reg_offset;
454 int ret = 0;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700455
Paulo Zanonic67a4702013-08-19 13:18:09 -0300456 intel_aux_display_runtime_get(dev_priv);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500457 mutex_lock(&dev_priv->gmbus_mutex);
458
459 if (bus->force_bit) {
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800460 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500461 goto out;
462 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700463
Daniel Vetter110447fc2012-03-23 23:43:36 +0100464 reg_offset = dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700465
Chris Wilsone957d772010-09-24 12:52:03 +0100466 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700467
468 for (i = 0; i < num; i++) {
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800469 if (gmbus_is_index_read(msgs, i, num)) {
470 ret = gmbus_xfer_index_read(dev_priv, &msgs[i]);
471 i += 1; /* set i to the index of the read xfer */
472 } else if (msgs[i].flags & I2C_M_RD) {
473 ret = gmbus_xfer_read(dev_priv, &msgs[i], 0);
474 } else {
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800475 ret = gmbus_xfer_write(dev_priv, &msgs[i]);
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800476 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700477
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800478 if (ret == -ETIMEDOUT)
479 goto timeout;
480 if (ret == -ENXIO)
481 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700482
Daniel Vetter28c70f12012-12-01 13:53:45 +0100483 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_WAIT_PHASE,
484 GMBUS_HW_WAIT_EN);
Daniel Vetter61168c52012-12-01 13:53:43 +0100485 if (ret == -ENXIO)
486 goto clear_err;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800487 if (ret)
Chris Wilsonf899fc62010-07-20 15:44:45 -0700488 goto timeout;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700489 }
490
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800491 /* Generate a STOP condition on the bus. Note that gmbus can't generata
492 * a STOP on the very first cycle. To simplify the code we
493 * unconditionally generate the STOP condition with an additional gmbus
494 * cycle. */
495 I915_WRITE(GMBUS1 + reg_offset, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
496
Benson Leungcaae7452012-02-09 12:03:17 -0800497 /* Mark the GMBUS interface as disabled after waiting for idle.
498 * We will re-enable it at the start of the next xfer,
499 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100500 */
Daniel Vetter2c438c02012-12-01 13:53:46 +0100501 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800502 DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800503 adapter->name);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800504 ret = -ETIMEDOUT;
505 }
Chris Wilson7f58aab2011-03-30 16:20:43 +0100506 I915_WRITE(GMBUS0 + reg_offset, 0);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800507 ret = ret ?: i;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500508 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700509
Daniel Kurtze646d572012-03-30 19:46:38 +0800510clear_err:
511 /*
512 * Wait for bus to IDLE before clearing NAK.
513 * If we clear the NAK while bus is still active, then it will stay
514 * active and the next transaction may fail.
Daniel Vetter65e81862012-05-21 20:19:48 +0200515 *
516 * If no ACK is received during the address phase of a transaction, the
517 * adapter must report -ENXIO. It is not clear what to return if no ACK
518 * is received at other times. But we have to be careful to not return
519 * spurious -ENXIO because that will prevent i2c and drm edid functions
520 * from retrying. So return -ENXIO only when gmbus properly quiescents -
521 * timing out seems to happen when there _is_ a ddc chip present, but
522 * it's slow responding and only answers on the 2nd retry.
Daniel Kurtze646d572012-03-30 19:46:38 +0800523 */
Daniel Vetter65e81862012-05-21 20:19:48 +0200524 ret = -ENXIO;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100525 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800526 DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
527 adapter->name);
Daniel Vetter65e81862012-05-21 20:19:48 +0200528 ret = -ETIMEDOUT;
529 }
Daniel Kurtze646d572012-03-30 19:46:38 +0800530
531 /* Toggle the Software Clear Interrupt bit. This has the effect
532 * of resetting the GMBUS controller and so clearing the
533 * BUS_ERROR raised by the slave's NAK.
534 */
535 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
536 I915_WRITE(GMBUS1 + reg_offset, 0);
537 I915_WRITE(GMBUS0 + reg_offset, 0);
538
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800539 DRM_DEBUG_KMS("GMBUS [%s] NAK for addr: %04x %c(%d)\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800540 adapter->name, msgs[i].addr,
541 (msgs[i].flags & I2C_M_RD) ? 'r' : 'w', msgs[i].len);
542
Daniel Kurtze646d572012-03-30 19:46:38 +0800543 goto out;
544
Chris Wilsonf899fc62010-07-20 15:44:45 -0700545timeout:
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800546 DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
547 bus->adapter.name, bus->reg0 & 0xff);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100548 I915_WRITE(GMBUS0 + reg_offset, 0);
549
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800550 /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000551 bus->force_bit = 1;
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800552 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800553
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500554out:
555 mutex_unlock(&dev_priv->gmbus_mutex);
Paulo Zanonic67a4702013-08-19 13:18:09 -0300556 intel_aux_display_runtime_put(dev_priv);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500557 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700558}
559
560static u32 gmbus_func(struct i2c_adapter *adapter)
561{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100562 return i2c_bit_algo.functionality(adapter) &
563 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700564 /* I2C_FUNC_10BIT_ADDR | */
565 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
566 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
567}
568
569static const struct i2c_algorithm gmbus_algorithm = {
570 .master_xfer = gmbus_xfer,
571 .functionality = gmbus_func
572};
573
574/**
575 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
576 * @dev: DRM device
577 */
578int intel_setup_gmbus(struct drm_device *dev)
579{
Chris Wilsonf899fc62010-07-20 15:44:45 -0700580 struct drm_i915_private *dev_priv = dev->dev_private;
581 int ret, i;
582
Ben Widawskyab5c6082013-04-05 13:12:41 -0700583 if (HAS_PCH_NOP(dev))
584 return 0;
585 else if (HAS_PCH_SPLIT(dev))
Daniel Vetter110447fc2012-03-23 23:43:36 +0100586 dev_priv->gpio_mmio_base = PCH_GPIOA - GPIOA;
Ville Syrjäläd8112152013-01-24 15:29:55 +0200587 else if (IS_VALLEYVIEW(dev))
588 dev_priv->gpio_mmio_base = VLV_DISPLAY_BASE;
Daniel Vetter110447fc2012-03-23 23:43:36 +0100589 else
590 dev_priv->gpio_mmio_base = 0;
591
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500592 mutex_init(&dev_priv->gmbus_mutex);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100593 init_waitqueue_head(&dev_priv->gmbus_wait_queue);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500594
Chris Wilsonf899fc62010-07-20 15:44:45 -0700595 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
596 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800597 u32 port = i + 1; /* +1 to map gmbus index to pin pair */
Chris Wilsonf899fc62010-07-20 15:44:45 -0700598
599 bus->adapter.owner = THIS_MODULE;
600 bus->adapter.class = I2C_CLASS_DDC;
601 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100602 sizeof(bus->adapter.name),
603 "i915 gmbus %s",
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800604 gmbus_ports[i].name);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700605
606 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100607 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700608
609 bus->adapter.algo = &gmbus_algorithm;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700610
Chris Wilsone957d772010-09-24 12:52:03 +0100611 /* By default use a conservative clock rate */
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800612 bus->reg0 = port | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100613
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200614 /* gmbus seems to be broken on i830 */
615 if (IS_I830(dev))
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000616 bus->force_bit = 1;
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200617
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800618 intel_gpio_setup(bus, port);
Jani Nikulacee25162012-08-13 17:33:02 +0300619
620 ret = i2c_add_adapter(&bus->adapter);
621 if (ret)
622 goto err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700623 }
624
625 intel_i2c_reset(dev_priv->dev);
626
627 return 0;
628
629err:
630 while (--i) {
631 struct intel_gmbus *bus = &dev_priv->gmbus[i];
632 i2c_del_adapter(&bus->adapter);
633 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700634 return ret;
635}
636
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800637struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
638 unsigned port)
639{
640 WARN_ON(!intel_gmbus_is_port_valid(port));
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800641 /* -1 to map pin pair to gmbus index */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800642 return (intel_gmbus_is_port_valid(port)) ?
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800643 &dev_priv->gmbus[port - 1].adapter : NULL;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800644}
645
Chris Wilsone957d772010-09-24 12:52:03 +0100646void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
647{
648 struct intel_gmbus *bus = to_intel_gmbus(adapter);
649
Adam Jacksond5090b92011-06-16 16:36:28 -0400650 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100651}
652
653void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
654{
655 struct intel_gmbus *bus = to_intel_gmbus(adapter);
656
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000657 bus->force_bit += force_bit ? 1 : -1;
658 DRM_DEBUG_KMS("%sabling bit-banging on %s. force bit now %d\n",
659 force_bit ? "en" : "dis", adapter->name,
660 bus->force_bit);
Chris Wilsone957d772010-09-24 12:52:03 +0100661}
662
Chris Wilsonf899fc62010-07-20 15:44:45 -0700663void intel_teardown_gmbus(struct drm_device *dev)
664{
665 struct drm_i915_private *dev_priv = dev->dev_private;
666 int i;
667
Chris Wilsonf899fc62010-07-20 15:44:45 -0700668 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
669 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700670 i2c_del_adapter(&bus->adapter);
671 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800672}