mfd-core.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * drivers/mfd/mfd-core.c
  3. *
  4. * core MFD support
  5. * Copyright (c) 2006 Ian Molton
  6. * Copyright (c) 2007,2008 Dmitry Baryshkov
  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 version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/acpi.h>
  16. #include <linux/mfd/core.h>
  17. #include <linux/slab.h>
  18. static int mfd_add_device(struct device *parent, int id,
  19. const struct mfd_cell *cell,
  20. struct resource *mem_base,
  21. int irq_base)
  22. {
  23. struct resource *res;
  24. struct platform_device *pdev;
  25. int ret = -ENOMEM;
  26. int r;
  27. pdev = platform_device_alloc(cell->name, id + cell->id);
  28. if (!pdev)
  29. goto fail_alloc;
  30. res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL);
  31. if (!res)
  32. goto fail_device;
  33. pdev->dev.parent = parent;
  34. platform_set_drvdata(pdev, cell->driver_data);
  35. if (cell->data_size) {
  36. ret = platform_device_add_data(pdev,
  37. cell->platform_data, cell->data_size);
  38. if (ret)
  39. goto fail_res;
  40. }
  41. for (r = 0; r < cell->num_resources; r++) {
  42. res[r].name = cell->resources[r].name;
  43. res[r].flags = cell->resources[r].flags;
  44. /* Find out base to use */
  45. if ((cell->resources[r].flags & IORESOURCE_MEM) && mem_base) {
  46. res[r].parent = mem_base;
  47. res[r].start = mem_base->start +
  48. cell->resources[r].start;
  49. res[r].end = mem_base->start +
  50. cell->resources[r].end;
  51. } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
  52. res[r].start = irq_base +
  53. cell->resources[r].start;
  54. res[r].end = irq_base +
  55. cell->resources[r].end;
  56. } else {
  57. res[r].parent = cell->resources[r].parent;
  58. res[r].start = cell->resources[r].start;
  59. res[r].end = cell->resources[r].end;
  60. }
  61. if (!cell->ignore_resource_conflicts) {
  62. ret = acpi_check_resource_conflict(res);
  63. if (ret)
  64. goto fail_res;
  65. }
  66. }
  67. ret = platform_device_add_resources(pdev, res, cell->num_resources);
  68. if (ret)
  69. goto fail_res;
  70. ret = platform_device_add(pdev);
  71. if (ret)
  72. goto fail_res;
  73. kfree(res);
  74. return 0;
  75. /* platform_device_del(pdev); */
  76. fail_res:
  77. kfree(res);
  78. fail_device:
  79. platform_device_put(pdev);
  80. fail_alloc:
  81. return ret;
  82. }
  83. int mfd_add_devices(struct device *parent, int id,
  84. const struct mfd_cell *cells, int n_devs,
  85. struct resource *mem_base,
  86. int irq_base)
  87. {
  88. int i;
  89. int ret = 0;
  90. for (i = 0; i < n_devs; i++) {
  91. ret = mfd_add_device(parent, id, cells + i, mem_base, irq_base);
  92. if (ret)
  93. break;
  94. }
  95. if (ret)
  96. mfd_remove_devices(parent);
  97. return ret;
  98. }
  99. EXPORT_SYMBOL(mfd_add_devices);
  100. static int mfd_remove_devices_fn(struct device *dev, void *unused)
  101. {
  102. platform_device_unregister(to_platform_device(dev));
  103. return 0;
  104. }
  105. void mfd_remove_devices(struct device *parent)
  106. {
  107. device_for_each_child(parent, NULL, mfd_remove_devices_fn);
  108. }
  109. EXPORT_SYMBOL(mfd_remove_devices);
  110. MODULE_LICENSE("GPL");
  111. MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");