aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sh/bus-sh.h
blob: 83c5d2fd057fa8ac57a794c3d14a9f27da621d0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * include/asm-sh/bus-sh.h
 *
 * Copyright (C) 2004 Paul Mundt
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */
#ifndef __ASM_SH_BUS_SH_H
#define __ASM_SH_BUS_SH_H

extern struct bus_type sh_bus_types[];

struct sh_dev {
	struct device	dev;
	char		*name;
	unsigned int	dev_id;
	unsigned int	bus_id;
	struct resource	res;
	void		*mapbase;
	unsigned int	irq[6];
	u64		*dma_mask;
};

#define to_sh_dev(d)	container_of((d), struct sh_dev, dev)

#define sh_get_drvdata(d)	dev_get_drvdata(&(d)->dev)
#define sh_set_drvdata(d,p)	dev_set_drvdata(&(d)->dev, (p))

struct sh_driver {
	struct device_driver	drv;
	unsigned int		dev_id;
	unsigned int		bus_id;
	int (*probe)(struct sh_dev *);
	int (*remove)(struct sh_dev *);
	int (*suspend)(struct sh_dev *, pm_message_t);
	int (*resume)(struct sh_dev *);
};

#define to_sh_driver(d)	container_of((d), struct sh_driver, drv)
#define sh_name(d)	((d)->dev.driver->name)

/*
 * Device ID numbers for bus types
 */
enum {
	SH_DEV_ID_USB_OHCI,
};

#define SH_NR_BUSES		1
#define SH_BUS_NAME_VIRT	"shbus"

enum {
	SH_BUS_VIRT,
};

/* arch/sh/kernel/cpu/bus.c */
extern int sh_device_register(struct sh_dev *dev);
extern void sh_device_unregister(struct sh_dev *dev);
extern int sh_driver_register(struct sh_driver *drv);
extern void sh_driver_unregister(struct sh_driver *drv);

#endif /* __ASM_SH_BUS_SH_H */