summaryrefslogtreecommitdiffstats
path: root/include/linux/usb/atmel_usba_udc.h
blob: be29ef0c5c3819a9e689df90dd7bbd0102355b7f (plain)
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
/*
 * Platform data definitions for Atmel USBA gadget driver
 * [Original from Linux kernel: include/linux/usb/atmel_usba_udc.h]
 *
 * SPDX-License-Identifier:     GPL-2.0+
 */
#ifndef __LINUX_USB_USBA_H__
#define __LINUX_USB_USBA_H__

struct usba_ep_data {
	char *name;
	int index;
	int fifo_size;
	int nr_banks;
	int can_dma;
	int can_isoc;
};

struct usba_platform_data {
	int			num_ep;
	struct usba_ep_data	*ep;
};

extern int usba_udc_probe(struct usba_platform_data *pdata);

#endif /* __LINUX_USB_USBA_H */
OpenPOWER on IntegriCloud