of_device.h 931 Bytes
Newer Older
1 2 3 4 5
#ifndef _ASM_SPARC_OF_DEVICE_H
#define _ASM_SPARC_OF_DEVICE_H
#ifdef __KERNEL__

#include <linux/device.h>
6
#include <linux/of.h>
7
#include <linux/mod_devicetable.h>
8
#include <asm/openprom.h>
9 10 11 12 13 14 15 16

/*
 * 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
 * probed using OF properties.
 */
struct of_device
{
17 18 19
	struct device_node		*node;
	struct device			dev;
	struct resource			resource[PROMREG_MAX];
20 21
	unsigned int			irqs[PROMINTR_MAX];
	int				num_irqs;
22 23 24 25 26 27

	void				*sysdata;

	int				slot;
	int				portid;
	int				clock_freq;
28 29
};

30
extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name);
31
extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size);
32

33
/* This is just here during the transition */
Stephen Rothwell's avatar
Stephen Rothwell committed
34
#include <linux/of_platform.h>
35 36 37

#endif /* __KERNEL__ */
#endif /* _ASM_SPARC_OF_DEVICE_H */