]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/sparc/include/asm/of_device.h
6d1844a547b46adceda98f0531b28e4e846aaba4
[karo-tx-linux.git] / arch / sparc / include / asm / of_device.h
1 #ifndef _ASM_SPARC_OF_DEVICE_H
2 #define _ASM_SPARC_OF_DEVICE_H
3 #ifdef __KERNEL__
4
5 #include <linux/device.h>
6 #include <linux/of.h>
7 #include <linux/mod_devicetable.h>
8 #include <asm/openprom.h>
9
10 /*
11  * The of_device is a kind of "base class" that is a superset of
12  * struct device for use by devices attached to an OF node and
13  * probed using OF properties.
14  */
15 struct of_device
16 {
17         struct device                   dev;
18         u32                             num_resources;
19         struct resource                 *resource;
20
21         struct pdev_archdata            archdata;
22 };
23
24 extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name);
25 extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size);
26
27 extern void of_propagate_archdata(struct of_device *bus);
28
29 /* This is just here during the transition */
30 #include <linux/of_platform.h>
31
32 #endif /* __KERNEL__ */
33 #endif /* _ASM_SPARC_OF_DEVICE_H */