2 i2c Support for Apple SMU Controller
4 Copyright (c) 2005 Benjamin Herrenschmidt, IBM Corp.
5 <benh@kernel.crashing.org>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/types.h>
26 #include <linux/i2c.h>
27 #include <linux/init.h>
28 #include <linux/completion.h>
29 #include <linux/device.h>
30 #include <linux/platform_device.h>
32 #include <asm/pmac_low_i2c.h>
34 MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
35 MODULE_DESCRIPTION("I2C driver for Apple PowerMac");
36 MODULE_LICENSE("GPL");
39 * SMBUS-type transfer entrypoint
41 static s32 i2c_powermac_smbus_xfer( struct i2c_adapter* adap,
47 union i2c_smbus_data* data)
49 struct pmac_i2c_bus *bus = i2c_get_adapdata(adap);
51 int read = (read_write == I2C_SMBUS_READ);
52 int addrdir = (addr << 1) | read;
55 rc = pmac_i2c_open(bus, 0);
61 rc = pmac_i2c_setmode(bus, pmac_i2c_mode_std);
64 rc = pmac_i2c_xfer(bus, addrdir, 0, 0, NULL, 0);
67 rc = pmac_i2c_setmode(bus, pmac_i2c_mode_std);
70 rc = pmac_i2c_xfer(bus, addrdir, 0, 0, &data->byte, 1);
72 case I2C_SMBUS_BYTE_DATA:
73 rc = pmac_i2c_setmode(bus, read ?
74 pmac_i2c_mode_combined :
75 pmac_i2c_mode_stdsub);
78 rc = pmac_i2c_xfer(bus, addrdir, 1, command, &data->byte, 1);
80 case I2C_SMBUS_WORD_DATA:
81 rc = pmac_i2c_setmode(bus, read ?
82 pmac_i2c_mode_combined :
83 pmac_i2c_mode_stdsub);
87 local[0] = data->word & 0xff;
88 local[1] = (data->word >> 8) & 0xff;
90 rc = pmac_i2c_xfer(bus, addrdir, 1, command, local, 2);
91 if (rc == 0 && read) {
92 data->word = ((u16)local[1]) << 8;
93 data->word |= local[0];
97 /* Note that these are broken vs. the expected smbus API where
98 * on reads, the lenght is actually returned from the function,
99 * but I think the current API makes no sense and I don't want
100 * any driver that I haven't verified for correctness to go
101 * anywhere near a pmac i2c bus anyway ...
103 * I'm also not completely sure what kind of phases to do between
104 * the actual command and the data (what I am _supposed_ to do that
105 * is). For now, I assume writes are a single stream and reads have
106 * a repeat start/addr phase (but not stop in between)
108 case I2C_SMBUS_BLOCK_DATA:
109 rc = pmac_i2c_setmode(bus, read ?
110 pmac_i2c_mode_combined :
111 pmac_i2c_mode_stdsub);
114 rc = pmac_i2c_xfer(bus, addrdir, 1, command, data->block,
118 case I2C_SMBUS_I2C_BLOCK_DATA:
119 rc = pmac_i2c_setmode(bus, read ?
120 pmac_i2c_mode_combined :
121 pmac_i2c_mode_stdsub);
124 rc = pmac_i2c_xfer(bus, addrdir, 1, command,
125 read ? data->block : &data->block[1],
138 * Generic i2c master transfer entrypoint. This driver only support single
139 * messages (for "lame i2c" transfers). Anything else should use the smbus
142 static int i2c_powermac_master_xfer( struct i2c_adapter *adap,
143 struct i2c_msg *msgs,
146 struct pmac_i2c_bus *bus = i2c_get_adapdata(adap);
153 if (msgs->flags & I2C_M_TEN)
155 read = (msgs->flags & I2C_M_RD) != 0;
156 addrdir = (msgs->addr << 1) | read;
157 if (msgs->flags & I2C_M_REV_DIR_ADDR)
160 rc = pmac_i2c_open(bus, 0);
163 rc = pmac_i2c_setmode(bus, pmac_i2c_mode_std);
166 rc = pmac_i2c_xfer(bus, addrdir, 0, 0, msgs->buf, msgs->len);
169 return rc < 0 ? rc : msgs->len;
172 static u32 i2c_powermac_func(struct i2c_adapter * adapter)
174 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
175 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
176 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_I2C;
179 /* For now, we only handle smbus */
180 static struct i2c_algorithm i2c_powermac_algorithm = {
181 .smbus_xfer = i2c_powermac_smbus_xfer,
182 .master_xfer = i2c_powermac_master_xfer,
183 .functionality = i2c_powermac_func,
187 static int i2c_powermac_remove(struct device *dev)
189 struct i2c_adapter *adapter = dev_get_drvdata(dev);
190 struct pmac_i2c_bus *bus = i2c_get_adapdata(adapter);
193 rc = i2c_del_adapter(adapter);
194 pmac_i2c_detach_adapter(bus, adapter);
195 i2c_set_adapdata(adapter, NULL);
196 /* We aren't that prepared to deal with this... */
198 printk("i2c-powermac.c: Failed to remove bus %s !\n",
200 dev_set_drvdata(dev, NULL);
207 static int i2c_powermac_probe(struct device *dev)
209 struct pmac_i2c_bus *bus = dev->platform_data;
210 struct device_node *parent = NULL;
211 struct i2c_adapter *adapter;
212 char name[32], *basename;
218 /* Ok, now we need to make up a name for the interface that will
219 * match what we used to do in the past, that is basically the
220 * controller's parent device node for keywest. PMU didn't have a
221 * naming convention and SMU has a different one
223 switch(pmac_i2c_get_type(bus)) {
224 case pmac_i2c_bus_keywest:
225 parent = of_get_parent(pmac_i2c_get_controller(bus));
228 basename = parent->name;
230 case pmac_i2c_bus_pmu:
233 case pmac_i2c_bus_smu:
234 /* This is not what we used to do but I'm fixing drivers at
235 * the same time as this change
242 snprintf(name, 32, "%s %d", basename, pmac_i2c_get_channel(bus));
245 adapter = kzalloc(sizeof(struct i2c_adapter), GFP_KERNEL);
246 if (adapter == NULL) {
247 printk(KERN_ERR "i2c-powermac: can't allocate inteface !\n");
250 dev_set_drvdata(dev, adapter);
251 strcpy(adapter->name, name);
252 adapter->algo = &i2c_powermac_algorithm;
253 i2c_set_adapdata(adapter, bus);
254 adapter->dev.parent = dev;
255 pmac_i2c_attach_adapter(bus, adapter);
256 rc = i2c_add_adapter(adapter);
258 printk(KERN_ERR "i2c-powermac: Adapter %s registration "
260 i2c_set_adapdata(adapter, NULL);
261 pmac_i2c_detach_adapter(bus, adapter);
264 printk(KERN_INFO "PowerMac i2c bus %s registered\n", name);
269 static struct device_driver i2c_powermac_driver = {
270 .name = "i2c-powermac",
271 .bus = &platform_bus_type,
272 .probe = i2c_powermac_probe,
273 .remove = i2c_powermac_remove,
276 static int __init i2c_powermac_init(void)
278 driver_register(&i2c_powermac_driver);
283 static void __exit i2c_powermac_cleanup(void)
285 driver_unregister(&i2c_powermac_driver);
288 module_init(i2c_powermac_init);
289 module_exit(i2c_powermac_cleanup);