mfd-core.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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/mfd/core.h>
  16. static int mfd_add_device(struct device *parent, int id,
  17. const struct mfd_cell *cell,
  18. struct resource *mem_base,
  19. int irq_base)
  20. {
  21. struct resource *res;
  22. struct platform_device *pdev;
  23. int ret = -ENOMEM;
  24. int r;
  25. pdev = platform_device_alloc(cell->name, id);
  26. if (!pdev)
  27. goto fail_alloc;
  28. res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL);
  29. if (!res)
  30. goto fail_device;
  31. pdev->dev.parent = parent;
  32. platform_set_drvdata(pdev, cell->driver_data);
  33. ret = platform_device_add_data(pdev,
  34. cell->platform_data, cell->data_size);
  35. if (ret)
  36. goto fail_res;
  37. for (r = 0; r < cell->num_resources; r++) {
  38. res[r].name = cell->resources[r].name;
  39. res[r].flags = cell->resources[r].flags;
  40. /* Find out base to use */
  41. if (cell->resources[r].flags & IORESOURCE_MEM) {
  42. res[r].parent = mem_base;
  43. res[r].start = mem_base->start +
  44. cell->resources[r].start;
  45. res[r].end = mem_base->start +
  46. cell->resources[r].end;
  47. } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
  48. res[r].start = irq_base +
  49. cell->resources[r].start;
  50. res[r].end = irq_base +
  51. cell->resources[r].end;
  52. } else {
  53. res[r].parent = cell->resources[r].parent;
  54. res[r].start = cell->resources[r].start;
  55. res[r].end = cell->resources[r].end;
  56. }
  57. }
  58. platform_device_add_resources(pdev, res, cell->num_resources);
  59. ret = platform_device_add(pdev);
  60. if (ret)
  61. goto fail_res;
  62. kfree(res);
  63. return 0;
  64. /* platform_device_del(pdev); */
  65. fail_res:
  66. kfree(res);
  67. fail_device:
  68. platform_device_put(pdev);
  69. fail_alloc:
  70. return ret;
  71. }
  72. int mfd_add_devices(struct device *parent, int id,
  73. const struct mfd_cell *cells, int n_devs,
  74. struct resource *mem_base,
  75. int irq_base)
  76. {
  77. int i;
  78. int ret = 0;
  79. for (i = 0; i < n_devs; i++) {
  80. ret = mfd_add_device(parent, id, cells + i, mem_base, irq_base);
  81. if (ret)
  82. break;
  83. }
  84. if (ret)
  85. mfd_remove_devices(parent);
  86. return ret;
  87. }
  88. EXPORT_SYMBOL(mfd_add_devices);
  89. static int mfd_remove_devices_fn(struct device *dev, void *unused)
  90. {
  91. platform_device_unregister(to_platform_device(dev));
  92. return 0;
  93. }
  94. void mfd_remove_devices(struct device *parent)
  95. {
  96. device_for_each_child(parent, NULL, mfd_remove_devices_fn);
  97. }
  98. EXPORT_SYMBOL(mfd_remove_devices);
  99. MODULE_LICENSE("GPL");
  100. MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");