2005-10-06 03:22:17 +00:00
|
|
|
#ifndef _ASM_POWERPC_OF_DEVICE_H
|
|
|
|
#define _ASM_POWERPC_OF_DEVICE_H
|
2005-12-16 21:43:46 +00:00
|
|
|
#ifdef __KERNEL__
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <linux/device.h>
|
2007-05-01 06:49:51 +00:00
|
|
|
#include <linux/of.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The of_device is a kind of "base class" that is a superset of
|
|
|
|
* struct device for use by devices attached to an OF node and
|
2007-05-01 06:49:51 +00:00
|
|
|
* probed using OF properties.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
struct of_device
|
|
|
|
{
|
2006-11-11 06:25:02 +00:00
|
|
|
struct device_node *node; /* to be obsoleted */
|
2005-04-16 22:20:36 +00:00
|
|
|
u64 dma_mask; /* DMA mask */
|
|
|
|
struct device dev; /* Generic device interface */
|
|
|
|
};
|
|
|
|
|
2007-09-26 09:44:12 +00:00
|
|
|
extern struct of_device *of_device_alloc(struct device_node *np,
|
|
|
|
const char *bus_id,
|
|
|
|
struct device *parent);
|
|
|
|
|
2007-05-06 15:38:46 +00:00
|
|
|
extern ssize_t of_device_get_modalias(struct of_device *ofdev,
|
|
|
|
char *str, ssize_t len);
|
2007-02-12 22:13:25 +00:00
|
|
|
extern int of_device_uevent(struct device *dev,
|
2007-08-14 13:15:12 +00:00
|
|
|
struct kobj_uevent_env *env);
|
2007-02-12 22:13:25 +00:00
|
|
|
|
2007-05-01 06:49:51 +00:00
|
|
|
/* This is just here during the transition */
|
|
|
|
#include <linux/of_device.h>
|
|
|
|
|
2005-12-16 21:43:46 +00:00
|
|
|
#endif /* __KERNEL__ */
|
2005-10-06 03:22:17 +00:00
|
|
|
#endif /* _ASM_POWERPC_OF_DEVICE_H */
|