2008-06-27 17:37:19 +08:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-07-29 00:29:09 +08:00
|
|
|
#ifndef MFD_CORE_H
|
|
|
|
#define MFD_CORE_H
|
|
|
|
|
2008-06-27 17:37:19 +08:00
|
|
|
#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;
|
2009-07-27 21:45:51 +08:00
|
|
|
int id;
|
2008-06-27 17:37:19 +08:00
|
|
|
|
|
|
|
int (*enable)(struct platform_device *dev);
|
|
|
|
int (*disable)(struct platform_device *dev);
|
|
|
|
int (*suspend)(struct platform_device *dev);
|
|
|
|
int (*resume)(struct platform_device *dev);
|
|
|
|
|
2008-07-29 07:23:32 +08:00
|
|
|
/* driver-specific data for MFD-aware "cell" drivers */
|
|
|
|
void *driver_data;
|
|
|
|
|
|
|
|
/* platform_data can be used to either pass data to "generic"
|
|
|
|
driver or as a hook to mfd_cell for the "cell" drivers */
|
|
|
|
void *platform_data;
|
|
|
|
size_t data_size;
|
2008-06-27 17:37:19 +08:00
|
|
|
|
|
|
|
/*
|
tree-wide: fix comment/printk typos
"gadget", "through", "command", "maintain", "maintain", "controller", "address",
"between", "initiali[zs]e", "instead", "function", "select", "already",
"equal", "access", "management", "hierarchy", "registration", "interest",
"relative", "memory", "offset", "already",
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2010-11-02 03:38:34 +08:00
|
|
|
* This resources can be specified relatively to the parent device.
|
2008-06-27 17:37:19 +08:00
|
|
|
* For accessing device you should use resources from device
|
|
|
|
*/
|
|
|
|
int num_resources;
|
|
|
|
const struct resource *resources;
|
2010-10-01 04:55:36 +08:00
|
|
|
|
|
|
|
/* don't check for resource conflicts */
|
|
|
|
bool ignore_resource_conflicts;
|
2008-06-27 17:37:19 +08:00
|
|
|
};
|
|
|
|
|
2008-07-29 07:30:26 +08:00
|
|
|
extern int mfd_add_devices(struct device *parent, int id,
|
2008-07-29 00:29:09 +08:00
|
|
|
const struct mfd_cell *cells, int n_devs,
|
|
|
|
struct resource *mem_base,
|
|
|
|
int irq_base);
|
2008-06-27 17:37:19 +08:00
|
|
|
|
2008-07-29 07:30:26 +08:00
|
|
|
extern void mfd_remove_devices(struct device *parent);
|
2008-06-27 17:37:19 +08:00
|
|
|
|
|
|
|
#endif
|