core.h 4.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * drivers/mfd/mfd-core.h
 *
 * core MFD support
 * Copyright (c) 2006 Ian Molton
 * Copyright (c) 2007 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.
 *
 */

B
Ben Dooks 已提交
14 15 16
#ifndef MFD_CORE_H
#define MFD_CORE_H

17 18
#include <linux/platform_device.h>

19
struct irq_domain;
20
struct property_entry;
21

22 23 24 25 26 27
/* Matches ACPI PNP id, either _HID or _CID, or ACPI _ADR */
struct mfd_cell_acpi_match {
	const char			*pnpid;
	const unsigned long long	adr;
};

28 29 30 31 32 33 34
/*
 * This struct describes the MFD part ("cell").
 * After registration the copy of this structure will become the platform data
 * of the resulting platform_device
 */
struct mfd_cell {
	const char		*name;
35
	int			id;
36

37 38
	/* refcounting for multiple drivers to use a single cell */
	atomic_t		*usage_count;
39 40
	int			(*enable)(struct platform_device *dev);
	int			(*disable)(struct platform_device *dev);
41

42 43 44
	int			(*suspend)(struct platform_device *dev);
	int			(*resume)(struct platform_device *dev);

45 46 47
	/* platform data passed to the sub devices drivers */
	void			*platform_data;
	size_t			pdata_size;
48 49

	/* device properties passed to the sub devices drivers */
50
	struct property_entry *properties;
51

52 53 54 55
	/*
	 * Device Tree compatible string
	 * See: Documentation/devicetree/usage-model.txt Chapter 2.2 for details
	 */
56
	const char		*of_compatible;
57

58 59
	/* Matches ACPI */
	const struct mfd_cell_acpi_match	*acpi_match;
M
Mika Westerberg 已提交
60

61
	/*
62 63
	 * These resources can be specified relative to the parent device.
	 * For accessing hardware you should use resources from the platform dev
64 65 66
	 */
	int			num_resources;
	const struct resource	*resources;
67 68 69

	/* don't check for resource conflicts */
	bool			ignore_resource_conflicts;
70 71 72 73 74 75

	/*
	 * Disable runtime PM callbacks for this subdevice - see
	 * pm_runtime_no_callbacks().
	 */
	bool			pm_runtime_no_callbacks;
76 77 78 79

	/* A list of regulator supplies that should be mapped to the MFD
	 * device rather than the child device when requested
	 */
80
	const char * const	*parent_supplies;
81
	int			num_parent_supplies;
82 83
};

84 85 86 87 88 89
/*
 * Convenience functions for clients using shared cells.  Refcounting
 * happens automatically, with the cell's enable/disable callbacks
 * being called only when a device is first being enabled or no other
 * clients are making use of it.
 */
90 91
extern int mfd_cell_enable(struct platform_device *pdev);
extern int mfd_cell_disable(struct platform_device *pdev);
92

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
/*
 * "Clone" multiple platform devices for a single cell. This is to be used
 * for devices that have multiple users of a cell.  For example, if an mfd
 * driver wants the cell "foo" to be used by a GPIO driver, an MTD driver,
 * and a platform driver, the following bit of code would be use after first
 * calling mfd_add_devices():
 *
 * const char *fclones[] = { "foo-gpio", "foo-mtd" };
 * err = mfd_clone_cells("foo", fclones, ARRAY_SIZE(fclones));
 *
 * Each driver (MTD, GPIO, and platform driver) would then register
 * platform_drivers for "foo-mtd", "foo-gpio", and "foo", respectively.
 * The cell's .enable/.disable hooks should be used to deal with hardware
 * resource contention.
 */
extern int mfd_clone_cell(const char *cell, const char **clones,
		size_t n_clones);

111 112 113 114 115 116
/*
 * Given a platform device that's been created by mfd_add_devices(), fetch
 * the mfd_cell that created it.
 */
static inline const struct mfd_cell *mfd_get_cell(struct platform_device *pdev)
{
117
	return pdev->mfd_cell;
118 119
}

120
extern int mfd_add_devices(struct device *parent, int id,
121
			   const struct mfd_cell *cells, int n_devs,
B
Ben Dooks 已提交
122
			   struct resource *mem_base,
123
			   int irq_base, struct irq_domain *irq_domain);
124

125 126 127 128 129 130 131
static inline int mfd_add_hotplug_devices(struct device *parent,
		const struct mfd_cell *cells, int n_devs)
{
	return mfd_add_devices(parent, PLATFORM_DEVID_AUTO, cells, n_devs,
			NULL, 0, NULL);
}

132
extern void mfd_remove_devices(struct device *parent);
133

134 135 136 137
extern int devm_mfd_add_devices(struct device *dev, int id,
				const struct mfd_cell *cells, int n_devs,
				struct resource *mem_base,
				int irq_base, struct irq_domain *irq_domain);
138
#endif