2 * include/asm-sh/bus-sh.h
4 * Copyright (C) 2004 Paul Mundt
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 #ifndef __ASM_SH_BUS_SH_H
11 #define __ASM_SH_BUS_SH_H
13 extern struct bus_type sh_bus_types[];
24 u64 coherent_dma_mask;
27 #define to_sh_dev(d) container_of((d), struct sh_dev, dev)
29 #define sh_get_drvdata(d) dev_get_drvdata(&(d)->dev)
30 #define sh_set_drvdata(d,p) dev_set_drvdata(&(d)->dev, (p))
33 struct device_driver drv;
36 int (*probe)(struct sh_dev *);
37 int (*remove)(struct sh_dev *);
38 int (*suspend)(struct sh_dev *, pm_message_t);
39 int (*resume)(struct sh_dev *);
42 #define to_sh_driver(d) container_of((d), struct sh_driver, drv)
43 #define sh_name(d) ((d)->dev.driver->name)
46 * Device ID numbers for bus types
53 #define SH_BUS_NAME_VIRT "shbus"
59 /* arch/sh/kernel/cpu/bus.c */
60 extern int sh_device_register(struct sh_dev *dev);
61 extern void sh_device_unregister(struct sh_dev *dev);
62 extern int sh_driver_register(struct sh_driver *drv);
63 extern void sh_driver_unregister(struct sh_driver *drv);
65 #endif /* __ASM_SH_BUS_SH_H */