mfd-core.c 2.5 KB

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