aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/arch-pxa/ohci.h
blob: 7da89569061eb025163eff9745437971c6459743 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ASMARM_ARCH_OHCI_H
#define ASMARM_ARCH_OHCI_H

struct device;

struct pxaohci_platform_data {
	int (*init)(struct device *);
	void (*exit)(struct device *);

	int port_mode;
#define PMM_NPS_MODE           1
#define PMM_GLOBAL_MODE        2
#define PMM_PERPORT_MODE       3
};

extern void pxa_set_ohci_info(struct pxaohci_platform_data *info);

#endif