i2c-ocores.c 9.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * i2c-ocores.c: I2C bus driver for OpenCores I2C controller
 * (http://www.opencores.org/projects.cgi/web/i2c/overview).
 *
 * Peter Korsgaard <jacmet@sunsite.dk>
 *
 * This file is licensed under the terms of the GNU General Public License
 * version 2.  This program is licensed "as is" without any warranty of any
 * kind, whether express or implied.
 */

12
/*
13 14
 * This driver can be used from the device tree, see
 *     Documentation/devicetree/bindings/i2c/ocore-i2c.txt
15
 */
16 17 18 19 20 21 22 23 24
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/errno.h>
#include <linux/platform_device.h>
#include <linux/i2c.h>
#include <linux/interrupt.h>
#include <linux/wait.h>
#include <linux/i2c-ocores.h>
25
#include <linux/slab.h>
26
#include <linux/io.h>
27
#include <linux/of_i2c.h>
28
#include <linux/log2.h>
29 30 31

struct ocores_i2c {
	void __iomem *base;
32
	u32 reg_shift;
33
	u32 reg_io_width;
34 35 36 37 38 39
	wait_queue_head_t wait;
	struct i2c_adapter adap;
	struct i2c_msg *msg;
	int pos;
	int nmsgs;
	int state; /* see STATE_ */
M
Manuel Lauss 已提交
40
	int clock_khz;
41 42 43 44 45 46 47
};

/* registers */
#define OCI2C_PRELOW		0
#define OCI2C_PREHIGH		1
#define OCI2C_CONTROL		2
#define OCI2C_DATA		3
48 49
#define OCI2C_CMD		4 /* write only */
#define OCI2C_STATUS		4 /* read only, same address as OCI2C_CMD */
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

#define OCI2C_CTRL_IEN		0x40
#define OCI2C_CTRL_EN		0x80

#define OCI2C_CMD_START		0x91
#define OCI2C_CMD_STOP		0x41
#define OCI2C_CMD_READ		0x21
#define OCI2C_CMD_WRITE		0x11
#define OCI2C_CMD_READ_ACK	0x21
#define OCI2C_CMD_READ_NACK	0x29
#define OCI2C_CMD_IACK		0x01

#define OCI2C_STAT_IF		0x01
#define OCI2C_STAT_TIP		0x02
#define OCI2C_STAT_ARBLOST	0x20
#define OCI2C_STAT_BUSY		0x40
#define OCI2C_STAT_NACK		0x80

#define STATE_DONE		0
#define STATE_START		1
#define STATE_WRITE		2
#define STATE_READ		3
#define STATE_ERROR		4

static inline void oc_setreg(struct ocores_i2c *i2c, int reg, u8 value)
{
76 77 78 79 80 81
	if (i2c->reg_io_width == 4)
		iowrite32(value, i2c->base + (reg << i2c->reg_shift));
	else if (i2c->reg_io_width == 2)
		iowrite16(value, i2c->base + (reg << i2c->reg_shift));
	else
		iowrite8(value, i2c->base + (reg << i2c->reg_shift));
82 83 84 85
}

static inline u8 oc_getreg(struct ocores_i2c *i2c, int reg)
{
86 87 88 89 90 91
	if (i2c->reg_io_width == 4)
		return ioread32(i2c->base + (reg << i2c->reg_shift));
	else if (i2c->reg_io_width == 2)
		return ioread16(i2c->base + (reg << i2c->reg_shift));
	else
		return ioread8(i2c->base + (reg << i2c->reg_shift));
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
}

static void ocores_process(struct ocores_i2c *i2c)
{
	struct i2c_msg *msg = i2c->msg;
	u8 stat = oc_getreg(i2c, OCI2C_STATUS);

	if ((i2c->state == STATE_DONE) || (i2c->state == STATE_ERROR)) {
		/* stop has been sent */
		oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_IACK);
		wake_up(&i2c->wait);
		return;
	}

	/* error? */
	if (stat & OCI2C_STAT_ARBLOST) {
		i2c->state = STATE_ERROR;
		oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
		return;
	}

	if ((i2c->state == STATE_START) || (i2c->state == STATE_WRITE)) {
		i2c->state =
			(msg->flags & I2C_M_RD) ? STATE_READ : STATE_WRITE;

		if (stat & OCI2C_STAT_NACK) {
			i2c->state = STATE_ERROR;
			oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
			return;
		}
	} else
		msg->buf[i2c->pos++] = oc_getreg(i2c, OCI2C_DATA);

	/* end of msg? */
	if (i2c->pos == msg->len) {
		i2c->nmsgs--;
		i2c->msg++;
		i2c->pos = 0;
		msg = i2c->msg;

		if (i2c->nmsgs) {	/* end? */
			/* send start? */
			if (!(msg->flags & I2C_M_NOSTART)) {
				u8 addr = (msg->addr << 1);

				if (msg->flags & I2C_M_RD)
					addr |= 1;

				i2c->state = STATE_START;

				oc_setreg(i2c, OCI2C_DATA, addr);
				oc_setreg(i2c, OCI2C_CMD,  OCI2C_CMD_START);
				return;
			} else
				i2c->state = (msg->flags & I2C_M_RD)
					? STATE_READ : STATE_WRITE;
		} else {
			i2c->state = STATE_DONE;
			oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
			return;
		}
	}

	if (i2c->state == STATE_READ) {
		oc_setreg(i2c, OCI2C_CMD, i2c->pos == (msg->len-1) ?
			  OCI2C_CMD_READ_NACK : OCI2C_CMD_READ_ACK);
	} else {
		oc_setreg(i2c, OCI2C_DATA, msg->buf[i2c->pos++]);
		oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_WRITE);
	}
}

164
static irqreturn_t ocores_isr(int irq, void *dev_id)
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
{
	struct ocores_i2c *i2c = dev_id;

	ocores_process(i2c);

	return IRQ_HANDLED;
}

static int ocores_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
{
	struct ocores_i2c *i2c = i2c_get_adapdata(adap);

	i2c->msg = msgs;
	i2c->pos = 0;
	i2c->nmsgs = num;
	i2c->state = STATE_START;

	oc_setreg(i2c, OCI2C_DATA,
			(i2c->msg->addr << 1) |
			((i2c->msg->flags & I2C_M_RD) ? 1:0));

	oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_START);

	if (wait_event_timeout(i2c->wait, (i2c->state == STATE_ERROR) ||
			       (i2c->state == STATE_DONE), HZ))
		return (i2c->state == STATE_DONE) ? num : -EIO;
	else
		return -ETIMEDOUT;
}

M
Manuel Lauss 已提交
195
static void ocores_init(struct ocores_i2c *i2c)
196 197 198 199 200 201 202
{
	int prescale;
	u8 ctrl = oc_getreg(i2c, OCI2C_CONTROL);

	/* make sure the device is disabled */
	oc_setreg(i2c, OCI2C_CONTROL, ctrl & ~(OCI2C_CTRL_EN|OCI2C_CTRL_IEN));

M
Manuel Lauss 已提交
203
	prescale = (i2c->clock_khz / (5*100)) - 1;
204 205 206 207 208 209 210 211 212 213 214 215 216 217
	oc_setreg(i2c, OCI2C_PRELOW, prescale & 0xff);
	oc_setreg(i2c, OCI2C_PREHIGH, prescale >> 8);

	/* Init the device */
	oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_IACK);
	oc_setreg(i2c, OCI2C_CONTROL, ctrl | OCI2C_CTRL_IEN | OCI2C_CTRL_EN);
}


static u32 ocores_func(struct i2c_adapter *adap)
{
	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
}

218
static const struct i2c_algorithm ocores_algorithm = {
219 220 221 222 223 224 225
	.master_xfer	= ocores_xfer,
	.functionality	= ocores_func,
};

static struct i2c_adapter ocores_adapter = {
	.owner		= THIS_MODULE,
	.name		= "i2c-ocores",
226
	.class		= I2C_CLASS_HWMON | I2C_CLASS_SPD,
227 228 229
	.algo		= &ocores_algorithm,
};

J
Jonas Bonn 已提交
230
#ifdef CONFIG_OF
231 232
static int ocores_i2c_of_probe(struct platform_device *pdev,
				struct ocores_i2c *i2c)
J
Jonas Bonn 已提交
233
{
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
	struct device_node *np = pdev->dev.of_node;
	u32 val;

	if (of_property_read_u32(np, "reg-shift", &i2c->reg_shift)) {
		/* no 'reg-shift', check for deprecated 'regstep' */
		if (!of_property_read_u32(np, "regstep", &val)) {
			if (!is_power_of_2(val)) {
				dev_err(&pdev->dev, "invalid regstep %d\n",
					val);
				return -EINVAL;
			}
			i2c->reg_shift = ilog2(val);
			dev_warn(&pdev->dev,
				"regstep property deprecated, use reg-shift\n");
		}
J
Jonas Bonn 已提交
249 250
	}

251
	if (of_property_read_u32(np, "clock-frequency", &val)) {
J
Jonas Bonn 已提交
252
		dev_err(&pdev->dev,
253
			"Missing required parameter 'clock-frequency'\n");
J
Jonas Bonn 已提交
254 255
		return -ENODEV;
	}
256
	i2c->clock_khz = val / 1000;
J
Jonas Bonn 已提交
257

258 259
	of_property_read_u32(pdev->dev.of_node, "reg-io-width",
				&i2c->reg_io_width);
J
Jonas Bonn 已提交
260 261 262 263 264
	return 0;
}
#else
#define ocores_i2c_of_probe(pdev,i2c) -ENODEV
#endif
265 266 267 268 269

static int __devinit ocores_i2c_probe(struct platform_device *pdev)
{
	struct ocores_i2c *i2c;
	struct ocores_i2c_platform_data *pdata;
270 271
	struct resource *res;
	int irq;
272
	int ret;
273
	int i;
274 275 276 277 278

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res)
		return -ENODEV;

279 280 281
	irq = platform_get_irq(pdev, 0);
	if (irq < 0)
		return irq;
282

283
	i2c = devm_kzalloc(&pdev->dev, sizeof(*i2c), GFP_KERNEL);
284 285 286
	if (!i2c)
		return -ENOMEM;

287 288 289
	i2c->base = devm_request_and_ioremap(&pdev->dev, res);
	if (!i2c->base)
		return -EADDRNOTAVAIL;
290

291
	pdata = pdev->dev.platform_data;
J
Jonas Bonn 已提交
292
	if (pdata) {
293
		i2c->reg_shift = pdata->reg_shift;
294
		i2c->reg_io_width = pdata->reg_io_width;
J
Jonas Bonn 已提交
295 296 297 298 299 300 301
		i2c->clock_khz = pdata->clock_khz;
	} else {
		ret = ocores_i2c_of_probe(pdev, i2c);
		if (ret)
			return ret;
	}

302 303 304
	if (i2c->reg_io_width == 0)
		i2c->reg_io_width = 1; /* Set to default value */

M
Manuel Lauss 已提交
305
	ocores_init(i2c);
306 307

	init_waitqueue_head(&i2c->wait);
308
	ret = devm_request_irq(&pdev->dev, irq, ocores_isr, 0,
309
			       pdev->name, i2c);
310 311
	if (ret) {
		dev_err(&pdev->dev, "Cannot claim IRQ\n");
312
		return ret;
313 314 315 316 317 318 319
	}

	/* hook up driver to tree */
	platform_set_drvdata(pdev, i2c);
	i2c->adap = ocores_adapter;
	i2c_set_adapdata(&i2c->adap, i2c);
	i2c->adap.dev.parent = &pdev->dev;
J
Jonas Bonn 已提交
320
	i2c->adap.dev.of_node = pdev->dev.of_node;
321 322 323 324 325

	/* add i2c adapter to i2c tree */
	ret = i2c_add_adapter(&i2c->adap);
	if (ret) {
		dev_err(&pdev->dev, "Failed to add adapter\n");
326
		return ret;
327 328
	}

329
	/* add in known devices to the bus */
J
Jonas Bonn 已提交
330 331 332
	if (pdata) {
		for (i = 0; i < pdata->num_devices; i++)
			i2c_new_device(&i2c->adap, pdata->devices + i);
333 334
	} else {
		of_i2c_register_devices(&i2c->adap);
J
Jonas Bonn 已提交
335
	}
336

337 338 339
	return 0;
}

340
static int __devexit ocores_i2c_remove(struct platform_device *pdev)
341 342 343 344 345 346 347 348 349 350 351 352 353 354
{
	struct ocores_i2c *i2c = platform_get_drvdata(pdev);

	/* disable i2c logic */
	oc_setreg(i2c, OCI2C_CONTROL, oc_getreg(i2c, OCI2C_CONTROL)
		  & ~(OCI2C_CTRL_EN|OCI2C_CTRL_IEN));

	/* remove adapter & data */
	i2c_del_adapter(&i2c->adap);
	platform_set_drvdata(pdev, NULL);

	return 0;
}

M
Manuel Lauss 已提交
355
#ifdef CONFIG_PM
356
static int ocores_i2c_suspend(struct device *dev)
M
Manuel Lauss 已提交
357
{
358
	struct ocores_i2c *i2c = dev_get_drvdata(dev);
M
Manuel Lauss 已提交
359 360 361 362 363 364 365 366
	u8 ctrl = oc_getreg(i2c, OCI2C_CONTROL);

	/* make sure the device is disabled */
	oc_setreg(i2c, OCI2C_CONTROL, ctrl & ~(OCI2C_CTRL_EN|OCI2C_CTRL_IEN));

	return 0;
}

367
static int ocores_i2c_resume(struct device *dev)
M
Manuel Lauss 已提交
368
{
369
	struct ocores_i2c *i2c = dev_get_drvdata(dev);
M
Manuel Lauss 已提交
370 371 372 373 374

	ocores_init(i2c);

	return 0;
}
375 376 377

static SIMPLE_DEV_PM_OPS(ocores_i2c_pm, ocores_i2c_suspend, ocores_i2c_resume);
#define OCORES_I2C_PM	(&ocores_i2c_pm)
M
Manuel Lauss 已提交
378
#else
379
#define OCORES_I2C_PM	NULL
M
Manuel Lauss 已提交
380 381
#endif

J
Jonas Bonn 已提交
382
static struct of_device_id ocores_i2c_match[] = {
383 384
	{ .compatible = "opencores,i2c-ocores", },
	{},
J
Jonas Bonn 已提交
385 386 387
};
MODULE_DEVICE_TABLE(of, ocores_i2c_match);

388
static struct platform_driver ocores_i2c_driver = {
M
Manuel Lauss 已提交
389 390 391
	.probe   = ocores_i2c_probe,
	.remove  = __devexit_p(ocores_i2c_remove),
	.driver  = {
392 393
		.owner = THIS_MODULE,
		.name = "ocores-i2c",
394
		.of_match_table = ocores_i2c_match,
395
		.pm = OCORES_I2C_PM,
396 397 398
	},
};

399
module_platform_driver(ocores_i2c_driver);
400 401 402 403

MODULE_AUTHOR("Peter Korsgaard <jacmet@sunsite.dk>");
MODULE_DESCRIPTION("OpenCores I2C bus driver");
MODULE_LICENSE("GPL");
404
MODULE_ALIAS("platform:ocores-i2c");