[SPARC/64] Rename some functions like PowerPC
[deliverable/linux.git] / include / asm-sparc64 / of_device.h
1 #ifndef _ASM_SPARC64_OF_DEVICE_H
2 #define _ASM_SPARC64_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 extern struct bus_type isa_bus_type;
11 extern struct bus_type ebus_bus_type;
12 extern struct bus_type sbus_bus_type;
13 extern struct bus_type of_platform_bus_type;
14 #define of_bus_type of_platform_bus_type /* for compatibility */
15
16 /*
17 * The of_device is a kind of "base class" that is a superset of
18 * struct device for use by devices attached to an OF node and
19 * probed using OF properties.
20 */
21 struct of_device
22 {
23 struct device_node *node;
24 struct device dev;
25 struct resource resource[PROMREG_MAX];
26 unsigned int irqs[PROMINTR_MAX];
27 int num_irqs;
28
29 void *sysdata;
30
31 int slot;
32 int portid;
33 int clock_freq;
34 };
35
36 extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name);
37 extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size);
38
39 extern struct of_device *of_find_device_by_node(struct device_node *);
40
41 /*
42 * An of_platform_driver driver is attached to a basic of_device on
43 * the ISA, EBUS, and SBUS busses on sparc64.
44 */
45 struct of_platform_driver
46 {
47 char *name;
48 struct of_device_id *match_table;
49 struct module *owner;
50
51 int (*probe)(struct of_device* dev, const struct of_device_id *match);
52 int (*remove)(struct of_device* dev);
53
54 int (*suspend)(struct of_device* dev, pm_message_t state);
55 int (*resume)(struct of_device* dev);
56 int (*shutdown)(struct of_device* dev);
57
58 struct device_driver driver;
59 };
60 #define to_of_platform_driver(drv) container_of(drv,struct of_platform_driver, driver)
61
62 extern int of_register_driver(struct of_platform_driver *drv,
63 struct bus_type *bus);
64 extern void of_unregister_driver(struct of_platform_driver *drv);
65 extern struct of_device *of_platform_device_create(struct device_node *np,
66 const char *bus_id,
67 struct device *parent,
68 struct bus_type *bus);
69
70 /* This is just here during the transition */
71 #include <linux/of_device.h>
72
73 #endif /* __KERNEL__ */
74 #endif /* _ASM_SPARC64_OF_DEVICE_H */
This page took 0.066912 seconds and 5 git commands to generate.