blob: f3a8790a07e8fed578c3665c85ab9c085a6101dd [file] [log] [blame]
Russell King6b65cd72006-12-10 21:21:32 +01001/*
2 * i2c-versatile.c
3 *
4 * Copyright (C) 2006 ARM Ltd.
5 * written by Russell King, Deep Blue Solutions Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/i2c.h>
14#include <linux/i2c-algo-bit.h>
15#include <linux/init.h>
16#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
H Hartley Sweeten21782182010-05-21 18:41:01 +020018#include <linux/io.h>
Pawel Moll237ab402012-02-23 18:17:21 +000019#include <linux/of_i2c.h>
Russell King6b65cd72006-12-10 21:21:32 +010020
21#define I2C_CONTROL 0x00
22#define I2C_CONTROLS 0x00
23#define I2C_CONTROLC 0x04
24#define SCL (1 << 0)
25#define SDA (1 << 1)
26
27struct i2c_versatile {
28 struct i2c_adapter adap;
29 struct i2c_algo_bit_data algo;
30 void __iomem *base;
31};
32
33static void i2c_versatile_setsda(void *data, int state)
34{
35 struct i2c_versatile *i2c = data;
36
37 writel(SDA, i2c->base + (state ? I2C_CONTROLS : I2C_CONTROLC));
38}
39
40static void i2c_versatile_setscl(void *data, int state)
41{
42 struct i2c_versatile *i2c = data;
43
44 writel(SCL, i2c->base + (state ? I2C_CONTROLS : I2C_CONTROLC));
45}
46
47static int i2c_versatile_getsda(void *data)
48{
49 struct i2c_versatile *i2c = data;
50 return !!(readl(i2c->base + I2C_CONTROL) & SDA);
51}
52
53static int i2c_versatile_getscl(void *data)
54{
55 struct i2c_versatile *i2c = data;
56 return !!(readl(i2c->base + I2C_CONTROL) & SCL);
57}
58
59static struct i2c_algo_bit_data i2c_versatile_algo = {
60 .setsda = i2c_versatile_setsda,
61 .setscl = i2c_versatile_setscl,
62 .getsda = i2c_versatile_getsda,
63 .getscl = i2c_versatile_getscl,
64 .udelay = 30,
65 .timeout = HZ,
66};
67
68static int i2c_versatile_probe(struct platform_device *dev)
69{
70 struct i2c_versatile *i2c;
71 struct resource *r;
72 int ret;
73
74 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
75 if (!r) {
76 ret = -EINVAL;
77 goto err_out;
78 }
79
Linus Walleijc6ffdde2009-06-14 00:20:36 +020080 if (!request_mem_region(r->start, resource_size(r), "versatile-i2c")) {
Russell King6b65cd72006-12-10 21:21:32 +010081 ret = -EBUSY;
82 goto err_out;
83 }
84
85 i2c = kzalloc(sizeof(struct i2c_versatile), GFP_KERNEL);
86 if (!i2c) {
87 ret = -ENOMEM;
88 goto err_release;
89 }
90
Linus Walleijc6ffdde2009-06-14 00:20:36 +020091 i2c->base = ioremap(r->start, resource_size(r));
Russell King6b65cd72006-12-10 21:21:32 +010092 if (!i2c->base) {
93 ret = -ENOMEM;
94 goto err_free;
95 }
96
97 writel(SCL | SDA, i2c->base + I2C_CONTROLS);
98
99 i2c->adap.owner = THIS_MODULE;
100 strlcpy(i2c->adap.name, "Versatile I2C adapter", sizeof(i2c->adap.name));
101 i2c->adap.algo_data = &i2c->algo;
102 i2c->adap.dev.parent = &dev->dev;
Pawel Moll237ab402012-02-23 18:17:21 +0000103 i2c->adap.dev.of_node = dev->dev.of_node;
Russell King6b65cd72006-12-10 21:21:32 +0100104 i2c->algo = i2c_versatile_algo;
105 i2c->algo.data = i2c;
106
Karol Lewandowski44454ba2012-03-27 11:10:28 +0200107 i2c->adap.nr = dev->id;
108 ret = i2c_bit_add_numbered_bus(&i2c->adap);
Russell King6b65cd72006-12-10 21:21:32 +0100109 if (ret >= 0) {
110 platform_set_drvdata(dev, i2c);
Pawel Moll237ab402012-02-23 18:17:21 +0000111 of_i2c_register_devices(&i2c->adap);
Russell King6b65cd72006-12-10 21:21:32 +0100112 return 0;
113 }
114
115 iounmap(i2c->base);
116 err_free:
117 kfree(i2c);
118 err_release:
Linus Walleijc6ffdde2009-06-14 00:20:36 +0200119 release_mem_region(r->start, resource_size(r));
Russell King6b65cd72006-12-10 21:21:32 +0100120 err_out:
121 return ret;
122}
123
124static int i2c_versatile_remove(struct platform_device *dev)
125{
126 struct i2c_versatile *i2c = platform_get_drvdata(dev);
127
Russell King6b65cd72006-12-10 21:21:32 +0100128 i2c_del_adapter(&i2c->adap);
129 return 0;
130}
131
Pawel Moll237ab402012-02-23 18:17:21 +0000132static const struct of_device_id i2c_versatile_match[] = {
133 { .compatible = "arm,versatile-i2c", },
134 {},
135};
136MODULE_DEVICE_TABLE(of, i2c_versatile_match);
137
Russell King6b65cd72006-12-10 21:21:32 +0100138static struct platform_driver i2c_versatile_driver = {
139 .probe = i2c_versatile_probe,
140 .remove = i2c_versatile_remove,
141 .driver = {
142 .name = "versatile-i2c",
143 .owner = THIS_MODULE,
Pawel Moll237ab402012-02-23 18:17:21 +0000144 .of_match_table = i2c_versatile_match,
Russell King6b65cd72006-12-10 21:21:32 +0100145 },
146};
147
148static int __init i2c_versatile_init(void)
149{
150 return platform_driver_register(&i2c_versatile_driver);
151}
152
153static void __exit i2c_versatile_exit(void)
154{
155 platform_driver_unregister(&i2c_versatile_driver);
156}
157
Catalin Marinas2514cca2009-02-12 15:57:20 +0100158subsys_initcall(i2c_versatile_init);
Russell King6b65cd72006-12-10 21:21:32 +0100159module_exit(i2c_versatile_exit);
160
161MODULE_DESCRIPTION("ARM Versatile I2C bus driver");
162MODULE_LICENSE("GPL");
Kay Sieversadd8eda2008-04-22 22:16:49 +0200163MODULE_ALIAS("platform:versatile-i2c");