Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 1 | /* |
| 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> |
David Daney | 4c60071 | 2010-10-19 15:50:31 -0700 | [diff] [blame] | 15 | #include <linux/irq.h> |
Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 16 | #include <linux/of.h> |
Robert P. J. Day | f40987b | 2008-07-08 06:38:24 -0400 | [diff] [blame] | 17 | #include <linux/of_i2c.h> |
Grant Likely | 9fd0499 | 2010-06-08 07:48:18 -0600 | [diff] [blame] | 18 | #include <linux/of_irq.h> |
Adrian Bunk | 138decf | 2008-04-23 19:51:34 +1000 | [diff] [blame] | 19 | #include <linux/module.h> |
Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 20 | |
Grant Likely | 9fd0499 | 2010-06-08 07:48:18 -0600 | [diff] [blame] | 21 | void of_i2c_register_devices(struct i2c_adapter *adap) |
Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 22 | { |
| 23 | void *result; |
| 24 | struct device_node *node; |
| 25 | |
Grant Likely | 9fd0499 | 2010-06-08 07:48:18 -0600 | [diff] [blame] | 26 | /* Only register child devices if the adapter has a node pointer set */ |
| 27 | if (!adap->dev.of_node) |
| 28 | return; |
| 29 | |
| 30 | dev_dbg(&adap->dev, "of_i2c: walking child nodes\n"); |
| 31 | |
Alexander Sverdlin | 4447ca1 | 2012-11-28 15:21:14 +0100 | [diff] [blame] | 32 | for_each_available_child_of_node(adap->dev.of_node, node) { |
Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 33 | struct i2c_board_info info = {}; |
Anton Vorontsov | e6a437e | 2008-11-28 09:13:45 +0000 | [diff] [blame] | 34 | struct dev_archdata dev_ad = {}; |
Jeremy Kerr | 3371488 | 2010-01-30 01:45:26 -0700 | [diff] [blame] | 35 | const __be32 *addr; |
Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 36 | int len; |
| 37 | |
Grant Likely | 9fd0499 | 2010-06-08 07:48:18 -0600 | [diff] [blame] | 38 | dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name); |
| 39 | |
| 40 | if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) { |
| 41 | dev_err(&adap->dev, "of_i2c: modalias failure on %s\n", |
| 42 | node->full_name); |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 43 | continue; |
Grant Likely | 9fd0499 | 2010-06-08 07:48:18 -0600 | [diff] [blame] | 44 | } |
Grant Likely | 3f07af4 | 2008-07-25 22:25:13 -0400 | [diff] [blame] | 45 | |
Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 46 | addr = of_get_property(node, "reg", &len); |
Grant Likely | 9fd0499 | 2010-06-08 07:48:18 -0600 | [diff] [blame] | 47 | if (!addr || (len < sizeof(int))) { |
| 48 | dev_err(&adap->dev, "of_i2c: invalid reg on %s\n", |
| 49 | node->full_name); |
| 50 | continue; |
| 51 | } |
| 52 | |
| 53 | info.addr = be32_to_cpup(addr); |
| 54 | if (info.addr > (1 << 10) - 1) { |
| 55 | dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n", |
| 56 | info.addr, node->full_name); |
Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 57 | continue; |
| 58 | } |
| 59 | |
| 60 | info.irq = irq_of_parse_and_map(node, 0); |
Grant Likely | 9fd0499 | 2010-06-08 07:48:18 -0600 | [diff] [blame] | 61 | info.of_node = of_node_get(node); |
Anton Vorontsov | e6a437e | 2008-11-28 09:13:45 +0000 | [diff] [blame] | 62 | info.archdata = &dev_ad; |
| 63 | |
Olof Johansson | ee67016 | 2012-07-21 11:47:25 -0700 | [diff] [blame] | 64 | if (of_get_property(node, "wakeup-source", NULL)) |
| 65 | info.flags |= I2C_CLIENT_WAKE; |
| 66 | |
David Daney | 0208626 | 2010-11-16 14:42:14 -0800 | [diff] [blame] | 67 | request_module("%s%s", I2C_MODULE_PREFIX, info.type); |
Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 68 | |
| 69 | result = i2c_new_device(adap, &info); |
| 70 | if (result == NULL) { |
Grant Likely | 9fd0499 | 2010-06-08 07:48:18 -0600 | [diff] [blame] | 71 | dev_err(&adap->dev, "of_i2c: Failure registering %s\n", |
| 72 | node->full_name); |
| 73 | of_node_put(node); |
Jochen Friedrich | 612212a | 2008-04-12 05:22:35 +1000 | [diff] [blame] | 74 | irq_dispose_mapping(info.irq); |
| 75 | continue; |
| 76 | } |
| 77 | } |
| 78 | } |
Grant Likely | 9fd0499 | 2010-06-08 07:48:18 -0600 | [diff] [blame] | 79 | EXPORT_SYMBOL(of_i2c_register_devices); |
Adrian Bunk | 138decf | 2008-04-23 19:51:34 +1000 | [diff] [blame] | 80 | |
Jon Smirl | 2526c15 | 2009-01-09 15:49:06 -0700 | [diff] [blame] | 81 | static int of_dev_node_match(struct device *dev, void *data) |
| 82 | { |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 83 | return dev->of_node == data; |
Jon Smirl | 2526c15 | 2009-01-09 15:49:06 -0700 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | /* must call put_device() when done with returned i2c_client device */ |
| 87 | struct i2c_client *of_find_i2c_device_by_node(struct device_node *node) |
| 88 | { |
| 89 | struct device *dev; |
| 90 | |
| 91 | dev = bus_find_device(&i2c_bus_type, NULL, node, |
| 92 | of_dev_node_match); |
| 93 | if (!dev) |
| 94 | return NULL; |
| 95 | |
Stephen Warren | d9afca3 | 2012-04-17 12:42:15 -0600 | [diff] [blame] | 96 | return i2c_verify_client(dev); |
Jon Smirl | 2526c15 | 2009-01-09 15:49:06 -0700 | [diff] [blame] | 97 | } |
| 98 | EXPORT_SYMBOL(of_find_i2c_device_by_node); |
| 99 | |
Stephen Warren | 0938643 | 2012-04-17 12:43:34 -0600 | [diff] [blame] | 100 | /* must call put_device() when done with returned i2c_adapter device */ |
| 101 | struct i2c_adapter *of_find_i2c_adapter_by_node(struct device_node *node) |
| 102 | { |
| 103 | struct device *dev; |
| 104 | |
| 105 | dev = bus_find_device(&i2c_bus_type, NULL, node, |
| 106 | of_dev_node_match); |
| 107 | if (!dev) |
| 108 | return NULL; |
| 109 | |
| 110 | return i2c_verify_adapter(dev); |
| 111 | } |
| 112 | EXPORT_SYMBOL(of_find_i2c_adapter_by_node); |
| 113 | |
Adrian Bunk | 138decf | 2008-04-23 19:51:34 +1000 | [diff] [blame] | 114 | MODULE_LICENSE("GPL"); |