blob: 67c3e9112dd6980f270712749b255d3a7e3c7451 [file] [log] [blame]
Lukasz Majewski38517a72011-10-27 10:36:46 +02001/*
2 * drivers/usb/gadget/s3c_udc.h
3 * Samsung S3C on-chip full/high speed USB device controllers
4 * Copyright (C) 2005 for Samsung Electronics
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Lukasz Majewski38517a72011-10-27 10:36:46 +02007 */
8
9#ifndef __S3C_USB_GADGET
10#define __S3C_USB_GADGET
11
Lukasz Majewski38517a72011-10-27 10:36:46 +020012#define PHY0_SLEEP (1 << 5)
13
Lukasz Majewski38517a72011-10-27 10:36:46 +020014struct s3c_plat_otg_data {
15 int (*phy_control)(int on);
16 unsigned int regs_phy;
17 unsigned int regs_otg;
18 unsigned int usb_phy_ctrl;
19 unsigned int usb_flags;
Marek Vasut481a11c2014-11-04 04:23:25 +010020 unsigned int usb_gusbcfg;
Lukasz Majewski38517a72011-10-27 10:36:46 +020021};
Marek Vasut2c12ff02015-12-04 01:36:36 +010022
23extern int s3c_udc_probe(struct s3c_plat_otg_data *pdata);
24
Lukasz Majewski38517a72011-10-27 10:36:46 +020025#endif