core.h 1.4 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 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#include <linux/platform_device.h>

/*
 * 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;

	int			(*enable)(struct platform_device *dev);
	int			(*disable)(struct platform_device *dev);
	int			(*suspend)(struct platform_device *dev);
	int			(*resume)(struct platform_device *dev);

	void			*driver_data; /* driver-specific data */

	/*
	 * This resources can be specified relatievly to the parent device.
	 * For accessing device you should use resources from device
	 */
	int			num_resources;
	const struct resource	*resources;
};

B
Ben Dooks 已提交
42
static inline struct mfd_cell *mfd_get_cell(struct platform_device *pdev)
43 44 45 46
{
	return (struct mfd_cell *)pdev->dev.platform_data;
}

B
Ben Dooks 已提交
47 48 49 50
extern int mfd_add_devices(struct platform_device *parent,
			   const struct mfd_cell *cells, int n_devs,
			   struct resource *mem_base,
			   int irq_base);
51 52 53 54

extern void mfd_remove_devices(struct platform_device *parent);

#endif