aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sparc64
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2007-05-01 02:12:57 -0400
committerStephen Rothwell <sfr@canb.auug.org.au>2007-07-20 00:25:22 -0400
commitb41912ca345e6de8ec8469d57cd585881271e2b9 (patch)
tree665588b5d519602b90384fc65b225c0b070f830a /include/asm-sparc64
parent37b7754aab9a6ad7ecbba45c87f8d8a1f81b3bcc (diff)
Create linux/of_platorm.h
Move common stuff from asm-powerpc/of_platform.h to here and move the common bits from asm-sparc*/of_device.h here as well. Create asm-sparc*/of_platform.h and move appropriate parts of of_device.h to them. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Acked-by: Paul Mackerras <paulus@samba.org> Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64')
-rw-r--r--include/asm-sparc64/of_device.h40
-rw-r--r--include/asm-sparc64/of_platform.h33
2 files changed, 35 insertions, 38 deletions
diff --git a/include/asm-sparc64/of_device.h b/include/asm-sparc64/of_device.h
index daf36eb52292..46d69b3223c5 100644
--- a/include/asm-sparc64/of_device.h
+++ b/include/asm-sparc64/of_device.h
@@ -7,12 +7,6 @@
7#include <linux/mod_devicetable.h> 7#include <linux/mod_devicetable.h>
8#include <asm/openprom.h> 8#include <asm/openprom.h>
9 9
10extern struct bus_type isa_bus_type;
11extern struct bus_type ebus_bus_type;
12extern struct bus_type sbus_bus_type;
13extern struct bus_type of_platform_bus_type;
14#define of_bus_type of_platform_bus_type /* for compatibility */
15
16/* 10/*
17 * The of_device is a kind of "base class" that is a superset of 11 * 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 12 * struct device for use by devices attached to an OF node and
@@ -36,39 +30,9 @@ struct of_device
36extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name); 30extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name);
37extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size); 31extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size);
38 32
39extern struct of_device *of_find_device_by_node(struct device_node *); 33/* These are just here during the transition */
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 */
45struct 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
62extern int of_register_driver(struct of_platform_driver *drv,
63 struct bus_type *bus);
64extern void of_unregister_driver(struct of_platform_driver *drv);
65extern 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> 34#include <linux/of_device.h>
35#include <linux/of_platform.h>
72 36
73#endif /* __KERNEL__ */ 37#endif /* __KERNEL__ */
74#endif /* _ASM_SPARC64_OF_DEVICE_H */ 38#endif /* _ASM_SPARC64_OF_DEVICE_H */
diff --git a/include/asm-sparc64/of_platform.h b/include/asm-sparc64/of_platform.h
new file mode 100644
index 000000000000..f7c1f17c7d52
--- /dev/null
+++ b/include/asm-sparc64/of_platform.h
@@ -0,0 +1,33 @@
1#ifndef _ASM_SPARC64_OF_PLATFORM_H
2#define _ASM_SPARC64_OF_PLATFORM_H
3/*
4 * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp.
5 * <benh@kernel.crashing.org>
6 * Modified for Sparc by merging parts of asm-sparc/of_device.h
7 * by Stephen Rothwell
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
14 */
15
16/* This is just here during the transition */
17#include <linux/of_platform.h>
18
19extern struct bus_type isa_bus_type;
20extern struct bus_type ebus_bus_type;
21extern struct bus_type sbus_bus_type;
22extern struct bus_type of_platform_bus_type;
23#define of_bus_type of_platform_bus_type /* for compatibility */
24
25extern int of_register_driver(struct of_platform_driver *drv,
26 struct bus_type *bus);
27extern void of_unregister_driver(struct of_platform_driver *drv);
28extern struct of_device *of_platform_device_create(struct device_node *np,
29 const char *bus_id,
30 struct device *parent,
31 struct bus_type *bus);
32
33#endif /* _ASM_SPARC64_OF_PLATFORM_H */