1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* arch/arm/plat-samsung/include/plat/usb-control.h
4 * Copyright (c) 2004 Simtec Electronics
7 * S3C - USB host port information
10 #ifndef __ASM_ARCH_USBCONTROL_H
11 #define __ASM_ARCH_USBCONTROL_H
13 #define S3C_HCDFLG_USED (1)
15 struct s3c2410_hcd_port {
18 unsigned char oc_status;
19 unsigned char oc_changed;
22 struct s3c2410_hcd_info {
24 struct s3c2410_hcd_port port[2];
26 void (*power_control)(int port, int to);
27 void (*enable_oc)(struct s3c2410_hcd_info *, int on);
28 void (*report_oc)(struct s3c2410_hcd_info *, int ports);
31 static inline void s3c2410_usb_report_oc(struct s3c2410_hcd_info *info, int ports)
33 if (info->report_oc != NULL) {
34 (info->report_oc)(info, ports);
38 extern void s3c_ohci_set_platdata(struct s3c2410_hcd_info *info);
40 #endif /*__ASM_ARCH_USBCONTROL_H */