of_i2c.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. #include <linux/i2c.h>
  14. #include <linux/irq.h>
  15. #include <linux/of.h>
  16. #include <linux/of_i2c.h>
  17. #include <linux/of_irq.h>
  18. #include <linux/module.h>
  19. void of_i2c_register_devices(struct i2c_adapter *adap)
  20. {
  21. void *result;
  22. struct device_node *node;
  23. /* Only register child devices if the adapter has a node pointer set */
  24. if (!adap->dev.of_node)
  25. return;
  26. dev_dbg(&adap->dev, "of_i2c: walking child nodes\n");
  27. for_each_child_of_node(adap->dev.of_node, node) {
  28. struct i2c_board_info info = {};
  29. struct dev_archdata dev_ad = {};
  30. const __be32 *addr;
  31. int len;
  32. dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
  33. if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) {
  34. dev_err(&adap->dev, "of_i2c: modalias failure on %s\n",
  35. node->full_name);
  36. continue;
  37. }
  38. addr = of_get_property(node, "reg", &len);
  39. if (!addr || (len < sizeof(int))) {
  40. dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
  41. node->full_name);
  42. continue;
  43. }
  44. info.addr = be32_to_cpup(addr);
  45. if (info.addr > (1 << 10) - 1) {
  46. dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
  47. info.addr, node->full_name);
  48. continue;
  49. }
  50. info.irq = irq_of_parse_and_map(node, 0);
  51. info.of_node = of_node_get(node);
  52. info.archdata = &dev_ad;
  53. if (of_get_property(node, "wakeup-source", NULL))
  54. info.flags |= I2C_CLIENT_WAKE;
  55. request_module("%s%s", I2C_MODULE_PREFIX, info.type);
  56. result = i2c_new_device(adap, &info);
  57. if (result == NULL) {
  58. dev_err(&adap->dev, "of_i2c: Failure registering %s\n",
  59. node->full_name);
  60. of_node_put(node);
  61. irq_dispose_mapping(info.irq);
  62. continue;
  63. }
  64. }
  65. }
  66. EXPORT_SYMBOL(of_i2c_register_devices);
  67. static int of_dev_node_match(struct device *dev, void *data)
  68. {
  69. return dev->of_node == data;
  70. }
  71. /* must call put_device() when done with returned i2c_client device */
  72. struct i2c_client *of_find_i2c_device_by_node(struct device_node *node)
  73. {
  74. struct device *dev;
  75. dev = bus_find_device(&i2c_bus_type, NULL, node,
  76. of_dev_node_match);
  77. if (!dev)
  78. return NULL;
  79. return to_i2c_client(dev);
  80. }
  81. EXPORT_SYMBOL(of_find_i2c_device_by_node);
  82. MODULE_LICENSE("GPL");