mfd-core.c 2.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * drivers/mfd/mfd-core.c
 *
 * core MFD support
 * Copyright (c) 2006 Ian Molton
 * Copyright (c) 2007,2008 Dmitry Baryshkov
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */

#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/mfd/core.h>

static int mfd_add_device(struct platform_device *parent,
B
Ben Dooks 已提交
19 20 21
			  const struct mfd_cell *cell,
			  struct resource *mem_base,
			  int irq_base)
22 23 24 25 26 27 28 29 30 31 32 33 34
{
	struct resource res[cell->num_resources];
	struct platform_device *pdev;
	int ret = -ENOMEM;
	int r;

	pdev = platform_device_alloc(cell->name, parent->id);
	if (!pdev)
		goto fail_alloc;

	pdev->dev.parent = &parent->dev;

	ret = platform_device_add_data(pdev,
35
			cell->platform_data, cell->data_size);
36 37 38
	if (ret)
		goto fail_device;

A
Andrew Morton 已提交
39
	memset(res, 0, sizeof(res));
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
	for (r = 0; r < cell->num_resources; r++) {
		res[r].name = cell->resources[r].name;
		res[r].flags = cell->resources[r].flags;

		/* Find out base to use */
		if (cell->resources[r].flags & IORESOURCE_MEM) {
			res[r].parent = mem_base;
			res[r].start = mem_base->start +
				cell->resources[r].start;
			res[r].end = mem_base->start +
				cell->resources[r].end;
		} else if (cell->resources[r].flags & IORESOURCE_IRQ) {
			res[r].start = irq_base +
				cell->resources[r].start;
			res[r].end   = irq_base +
				cell->resources[r].end;
		} else {
			res[r].parent = cell->resources[r].parent;
			res[r].start = cell->resources[r].start;
			res[r].end   = cell->resources[r].end;
		}
	}

	platform_device_add_resources(pdev, res, cell->num_resources);

	ret = platform_device_add(pdev);
	if (ret)
		goto fail_device;

	return 0;

/*	platform_device_del(pdev); */
fail_device:
	platform_device_put(pdev);
fail_alloc:
	return ret;
}

B
Ben Dooks 已提交
78 79 80 81
int mfd_add_devices(struct platform_device *parent,
		    const struct mfd_cell *cells, int n_devs,
		    struct resource *mem_base,
		    int irq_base)
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
{
	int i;
	int ret = 0;

	for (i = 0; i < n_devs; i++) {
		ret = mfd_add_device(parent, cells + i, mem_base, irq_base);
		if (ret)
			break;
	}

	if (ret)
		mfd_remove_devices(parent);

	return ret;
}
EXPORT_SYMBOL(mfd_add_devices);

static int mfd_remove_devices_fn(struct device *dev, void *unused)
{
101
	platform_device_unregister(to_platform_device(dev));
102 103 104 105 106 107 108 109 110 111 112
	return 0;
}

void mfd_remove_devices(struct platform_device *parent)
{
	device_for_each_child(&parent->dev, NULL, mfd_remove_devices_fn);
}
EXPORT_SYMBOL(mfd_remove_devices);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");