2 * Copyright (c) 2002-2010, Intel Corporation.
3 * Copyright (c) 2014 ATRON electronic GmbH
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include <linux/delay.h>
27 #include <linux/i2c-algo-bit.h>
28 #include <linux/i2c.h>
29 #include <linux/init.h>
31 #include <linux/kernel.h>
32 #include <linux/module.h>
33 #include <linux/pci.h>
34 #include <linux/types.h>
37 #include "psb_intel_reg.h"
41 * LPC GPIO based I2C bus for LVDS of Atom E6xx
44 /*-----------------------------------------------------------------------------
45 * LPC Register Offsets. Used for LVDS GPIO Bit Bashing. Registers are part
47 ----------------------------------------------------------------------------*/
57 /* The LVDS GPIO clock lines are GPIOSUS[3]
58 * The LVDS GPIO data lines are GPIOSUS[4]
60 #define GPIO_CLOCK 0x08
61 #define GPIO_DATA 0x10
63 #define LPC_READ_REG(chan, r) inl((chan)->reg + (r))
64 #define LPC_WRITE_REG(chan, r, val) outl((val), (chan)->reg + (r))
66 static int get_clock(void *data)
68 struct gma_i2c_chan *chan = data;
71 val = LPC_READ_REG(chan, RGIO);
73 LPC_WRITE_REG(chan, RGIO, val);
74 LPC_READ_REG(chan, RGLVL);
75 val = (LPC_READ_REG(chan, RGLVL) & GPIO_CLOCK) ? 1 : 0;
80 static int get_data(void *data)
82 struct gma_i2c_chan *chan = data;
85 val = LPC_READ_REG(chan, RGIO);
87 LPC_WRITE_REG(chan, RGIO, val);
88 LPC_READ_REG(chan, RGLVL);
89 val = (LPC_READ_REG(chan, RGLVL) & GPIO_DATA) ? 1 : 0;
94 static void set_clock(void *data, int state_high)
96 struct gma_i2c_chan *chan = data;
100 val = LPC_READ_REG(chan, RGIO);
102 LPC_WRITE_REG(chan, RGIO, val);
104 val = LPC_READ_REG(chan, RGIO);
106 LPC_WRITE_REG(chan, RGIO, val);
107 val = LPC_READ_REG(chan, RGLVL);
109 LPC_WRITE_REG(chan, RGLVL, val);
113 static void set_data(void *data, int state_high)
115 struct gma_i2c_chan *chan = data;
119 val = LPC_READ_REG(chan, RGIO);
121 LPC_WRITE_REG(chan, RGIO, val);
123 val = LPC_READ_REG(chan, RGIO);
125 LPC_WRITE_REG(chan, RGIO, val);
126 val = LPC_READ_REG(chan, RGLVL);
128 LPC_WRITE_REG(chan, RGLVL, val);
132 struct gma_i2c_chan *oaktrail_lvds_i2c_init(struct drm_device *dev)
134 struct drm_psb_private *dev_priv = to_drm_psb_private(dev);
135 struct gma_i2c_chan *chan;
138 chan = kzalloc(sizeof(struct gma_i2c_chan), GFP_KERNEL);
140 return ERR_PTR(-ENOMEM);
143 chan->reg = dev_priv->lpc_gpio_base;
144 strscpy(chan->base.name, "gma500 LPC", sizeof(chan->base.name));
145 chan->base.owner = THIS_MODULE;
146 chan->base.algo_data = &chan->algo;
147 chan->base.dev.parent = dev->dev;
148 chan->algo.setsda = set_data;
149 chan->algo.setscl = set_clock;
150 chan->algo.getsda = get_data;
151 chan->algo.getscl = get_clock;
152 chan->algo.udelay = 100;
153 chan->algo.timeout = usecs_to_jiffies(2200);
154 chan->algo.data = chan;
156 i2c_set_adapdata(&chan->base, chan);
162 ret = i2c_bit_add_bus(&chan->base);