blob: 0a694debd226b8dbc066789f198b2de0017c30d8 [file] [log] [blame]
Jochen Friedrich612212a2008-04-12 05:22:35 +10001/*
2 * OF helpers for the I2C API
3 *
4 * Copyright (c) 2008 Jochen Friedrich <jochen@scram.de>
5 *
6 * Based on a previous patch from Jon Smirl <jonsmirl@gmail.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/i2c.h>
15#include <linux/of.h>
Robert P. J. Dayf40987b2008-07-08 06:38:24 -040016#include <linux/of_i2c.h>
Grant Likely9fd04992010-06-08 07:48:18 -060017#include <linux/of_irq.h>
Adrian Bunk138decf2008-04-23 19:51:34 +100018#include <linux/module.h>
Jochen Friedrich612212a2008-04-12 05:22:35 +100019
Grant Likely9fd04992010-06-08 07:48:18 -060020void of_i2c_register_devices(struct i2c_adapter *adap)
Jochen Friedrich612212a2008-04-12 05:22:35 +100021{
22 void *result;
23 struct device_node *node;
24
Grant Likely9fd04992010-06-08 07:48:18 -060025 /* Only register child devices if the adapter has a node pointer set */
26 if (!adap->dev.of_node)
27 return;
28
29 dev_dbg(&adap->dev, "of_i2c: walking child nodes\n");
30
31 for_each_child_of_node(adap->dev.of_node, node) {
Jochen Friedrich612212a2008-04-12 05:22:35 +100032 struct i2c_board_info info = {};
Anton Vorontsove6a437e2008-11-28 09:13:45 +000033 struct dev_archdata dev_ad = {};
Jeremy Kerr33714882010-01-30 01:45:26 -070034 const __be32 *addr;
Jochen Friedrich612212a2008-04-12 05:22:35 +100035 int len;
36
Grant Likely9fd04992010-06-08 07:48:18 -060037 dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
38
39 if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) {
40 dev_err(&adap->dev, "of_i2c: modalias failure on %s\n",
41 node->full_name);
Grant Likely3f07af42008-07-25 22:25:13 -040042 continue;
Grant Likely9fd04992010-06-08 07:48:18 -060043 }
Grant Likely3f07af42008-07-25 22:25:13 -040044
Jochen Friedrich612212a2008-04-12 05:22:35 +100045 addr = of_get_property(node, "reg", &len);
Grant Likely9fd04992010-06-08 07:48:18 -060046 if (!addr || (len < sizeof(int))) {
47 dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
48 node->full_name);
49 continue;
50 }
51
52 info.addr = be32_to_cpup(addr);
53 if (info.addr > (1 << 10) - 1) {
54 dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
55 info.addr, node->full_name);
Jochen Friedrich612212a2008-04-12 05:22:35 +100056 continue;
57 }
58
59 info.irq = irq_of_parse_and_map(node, 0);
Grant Likely9fd04992010-06-08 07:48:18 -060060 info.of_node = of_node_get(node);
Anton Vorontsove6a437e2008-11-28 09:13:45 +000061 info.archdata = &dev_ad;
62
Jon Smirl07213572008-10-20 02:13:15 +000063 request_module("%s", info.type);
Jochen Friedrich612212a2008-04-12 05:22:35 +100064
65 result = i2c_new_device(adap, &info);
66 if (result == NULL) {
Grant Likely9fd04992010-06-08 07:48:18 -060067 dev_err(&adap->dev, "of_i2c: Failure registering %s\n",
68 node->full_name);
69 of_node_put(node);
Jochen Friedrich612212a2008-04-12 05:22:35 +100070 irq_dispose_mapping(info.irq);
71 continue;
72 }
73 }
74}
Grant Likely9fd04992010-06-08 07:48:18 -060075EXPORT_SYMBOL(of_i2c_register_devices);
Adrian Bunk138decf2008-04-23 19:51:34 +100076
Jon Smirl2526c152009-01-09 15:49:06 -070077static int of_dev_node_match(struct device *dev, void *data)
78{
Grant Likely61c7a082010-04-13 16:12:29 -070079 return dev->of_node == data;
Jon Smirl2526c152009-01-09 15:49:06 -070080}
81
82/* must call put_device() when done with returned i2c_client device */
83struct i2c_client *of_find_i2c_device_by_node(struct device_node *node)
84{
85 struct device *dev;
86
87 dev = bus_find_device(&i2c_bus_type, NULL, node,
88 of_dev_node_match);
89 if (!dev)
90 return NULL;
91
92 return to_i2c_client(dev);
93}
94EXPORT_SYMBOL(of_find_i2c_device_by_node);
95
Adrian Bunk138decf2008-04-23 19:51:34 +100096MODULE_LICENSE("GPL");