All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-19  9:40 Subbaraya Sundeep Bhatta
  2014-02-20 18:23   ` Felipe Balbi
  0 siblings, 1 reply; 75+ messages in thread
From: Subbaraya Sundeep Bhatta @ 2014-02-19  9:40 UTC (permalink / raw)
  To: Felipe Balbi
  Cc: Greg Kroah-Hartman, linux-usb, linux-kernel, michals,
	Subbaraya Sundeep Bhatta

This patch adds xilinx axi usb2 device driver support

Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta@xilinx.com>
---
 .../devicetree/bindings/usb/xilinx_usb.txt         |   21 +
 drivers/usb/gadget/Kconfig                         |   14 +
 drivers/usb/gadget/Makefile                        |    1 +
 drivers/usb/gadget/xilinx_udc.c                    | 2045 ++++++++++++++++++++
 4 files changed, 2081 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/usb/xilinx_usb.txt
 create mode 100644 drivers/usb/gadget/xilinx_udc.c

diff --git a/Documentation/devicetree/bindings/usb/xilinx_usb.txt b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
new file mode 100644
index 0000000..acf03ab
--- /dev/null
+++ b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
@@ -0,0 +1,21 @@
+Xilinx AXI USB2 device controller
+
+Required properties:
+- compatible		: Should be "xlnx,axi-usb2-device-4.00.a"
+- reg			: Physical base address and size of the Axi USB2
+			  device registers map.
+- interrupts		: Property with a value describing the interrupt
+			  number.
+- interrupt-parent	: Must be core interrupt controller
+- xlnx,include-dma	: Must be 1 or 0 based on whether DMA is included
+			  in IP or not.
+
+Example:
+ 		axi-usb2-device@42e00000 {
+                        compatible = "xlnx,axi-usb2-device-4.00.a";
+                        interrupt-parent = <0x1>;
+                        interrupts = <0x0 0x39 0x1>;
+                        reg = <0x42e00000 0x10000>;
+                        xlnx,include-dma = <0x1>;
+                };
+
diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
index 8154165..0b284bf 100644
--- a/drivers/usb/gadget/Kconfig
+++ b/drivers/usb/gadget/Kconfig
@@ -466,6 +466,20 @@ config USB_EG20T
 	  ML7213/ML7831 is companion chip for Intel Atom E6xx series.
 	  ML7213/ML7831 is completely compatible for Intel EG20T PCH.
 
+config USB_GADGET_XILINX
+	tristate "Xilinx USB Driver"
+	depends on MICROBLAZE || ARCH_ZYNQ
+	help
+	  USB peripheral controller driver for Xilinx AXI USB2 device.
+	  Xilinx AXI USB2 device is a soft IP which supports both full
+	  and high speed USB 2.0 data transfers. It has seven configurable
+	  endpoints(bulk or interrupt or isochronous), as well as
+	  endpoint zero(for control transfers).
+
+	  Say "y" to link the driver statically, or "m" to build a
+	  dynamically linked module called "xilinx_udc" and force all
+	  gadget drivers to also be dynamically linked.
+
 #
 # LAST -- dummy/emulated controller
 #
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile
index 5f150bc..3a55564 100644
--- a/drivers/usb/gadget/Makefile
+++ b/drivers/usb/gadget/Makefile
@@ -36,6 +36,7 @@ obj-$(CONFIG_USB_FUSB300)	+= fusb300_udc.o
 obj-$(CONFIG_USB_FOTG210_UDC)	+= fotg210-udc.o
 obj-$(CONFIG_USB_MV_U3D)	+= mv_u3d_core.o
 obj-$(CONFIG_USB_GR_UDC)	+= gr_udc.o
+obj-$(CONFIG_USB_GADGET_XILINX)	+= xilinx_udc.o
 
 # USB Functions
 usb_f_acm-y			:= f_acm.o
diff --git a/drivers/usb/gadget/xilinx_udc.c b/drivers/usb/gadget/xilinx_udc.c
new file mode 100644
index 0000000..3ee8359
--- /dev/null
+++ b/drivers/usb/gadget/xilinx_udc.c
@@ -0,0 +1,2045 @@
+/*
+ * Xilinx USB peripheral controller driver
+ *
+ * Copyright (C) 2004 by Thomas Rathbone
+ * Copyright (C) 2005 by HP Labs
+ * Copyright (C) 2005 by David Brownell
+ * Copyright (C) 2010 - 2014 Xilinx, Inc.
+ *
+ * Some parts of this driver code is based on the driver for at91-series
+ * USB peripheral controller (at91_udc.c).
+ *
+ * This program is free software; you can redistribute it
+ * and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation;
+ * either version 2 of the License, or (at your option) any
+ * later version.
+ */
+
+#include <linux/interrupt.h>
+#include <linux/device.h>
+#include <linux/module.h>
+#include <linux/prefetch.h>
+#include <linux/usb/ch9.h>
+#include <linux/usb/gadget.h>
+#include <linux/io.h>
+#include <linux/seq_file.h>
+#include <linux/of_address.h>
+#include <linux/of_device.h>
+#include <linux/of_platform.h>
+#include <linux/of_irq.h>
+#include <linux/dma-mapping.h>
+#include "gadget_chips.h"
+
+/* Register offsets for the USB device.*/
+#define XUSB_EP0_CONFIG_OFFSET		0x0000  /* EP0 Config Reg Offset */
+#define XUSB_SETUP_PKT_ADDR_OFFSET	0x0080  /* Setup Packet Address */
+#define XUSB_ADDRESS_OFFSET		0x0100  /* Address Register */
+#define XUSB_CONTROL_OFFSET		0x0104  /* Control Register */
+#define XUSB_STATUS_OFFSET		0x0108  /* Status Register */
+#define XUSB_FRAMENUM_OFFSET		0x010C	/* Frame Number Register */
+#define XUSB_IER_OFFSET			0x0110	/* Interrupt Enable Register */
+#define XUSB_BUFFREADY_OFFSET		0x0114	/* Buffer Ready Register */
+#define XUSB_TESTMODE_OFFSET		0x0118	/* Test Mode Register */
+#define XUSB_DMA_RESET_OFFSET		0x0200  /* DMA Soft Reset Register */
+#define XUSB_DMA_CONTROL_OFFSET		0x0204	/* DMA Control Register */
+#define XUSB_DMA_DSAR_ADDR_OFFSET	0x0208	/* DMA source Address Reg */
+#define XUSB_DMA_DDAR_ADDR_OFFSET	0x020C	/* DMA destination Addr Reg */
+#define XUSB_DMA_LENGTH_OFFSET		0x0210	/* DMA Length Register */
+#define XUSB_DMA_STATUS_OFFSET		0x0214	/* DMA Status Register */
+
+/* Endpoint Configuration Space offsets */
+#define XUSB_EP_CFGSTATUS_OFFSET	0x00	/* Endpoint Config Status  */
+#define XUSB_EP_BUF0COUNT_OFFSET	0x08	/* Buffer 0 Count */
+#define XUSB_EP_BUF1COUNT_OFFSET	0x0C	/* Buffer 1 Count */
+
+#define XUSB_CONTROL_USB_READY_MASK	0x80000000 /* USB ready Mask */
+
+/* Interrupt register related masks.*/
+#define XUSB_STATUS_GLOBAL_INTR_MASK	0x80000000 /* Global Intr Enable */
+#define XUSB_STATUS_RESET_MASK		0x00800000 /* USB Reset Mask */
+#define XUSB_STATUS_SUSPEND_MASK	0x00400000 /* USB Suspend Mask */
+#define XUSB_STATUS_DISCONNECT_MASK	0x00200000 /* USB Disconnect Mask */
+#define XUSB_STATUS_FIFO_BUFF_RDY_MASK	0x00100000 /* FIFO Buff Ready Mask */
+#define XUSB_STATUS_FIFO_BUFF_FREE_MASK	0x00080000 /* FIFO Buff Free Mask */
+#define XUSB_STATUS_SETUP_PACKET_MASK	0x00040000 /* Setup packet received */
+#define XUSB_STATUS_EP1_BUFF2_COMP_MASK	0x00000200 /* EP 1 Buff 2 Processed */
+#define XUSB_STATUS_EP1_BUFF1_COMP_MASK	0x00000002 /* EP 1 Buff 1 Processed */
+#define XUSB_STATUS_EP0_BUFF2_COMP_MASK	0x00000100 /* EP 0 Buff 2 Processed */
+#define XUSB_STATUS_EP0_BUFF1_COMP_MASK	0x00000001 /* EP 0 Buff 1 Processed */
+#define XUSB_STATUS_HIGH_SPEED_MASK	0x00010000 /* USB Speed Mask */
+/* Suspend,Reset and Disconnect Mask */
+#define XUSB_STATUS_INTR_EVENT_MASK	0x00E00000
+/* Buffers  completion Mask */
+#define XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK	0x0000FEFF
+/* Mask for buffer 0 and buffer 1 completion for all Endpoints */
+#define XUSB_STATUS_INTR_BUFF_COMP_SHIFT_MASK	0x00000101
+#define XUSB_STATUS_EP_BUFF2_SHIFT	8	   /* EP buffer offset */
+
+/* Endpoint Configuration Status Register */
+#define XUSB_EP_CFG_VALID_MASK		0x80000000 /* Endpoint Valid bit */
+#define XUSB_EP_CFG_STALL_MASK		0x40000000 /* Endpoint Stall bit */
+#define XUSB_EP_CFG_DATA_TOGGLE_MASK	0x08000000 /* Endpoint Data toggle */
+
+/* USB device specific global configuration constants.*/
+#define XUSB_MAX_ENDPOINTS		8	/* Maximum End Points */
+#define XUSB_EP_NUMBER_ZERO		0	/* End point Zero */
+
+/* Test Modes (Set Feature).*/
+#define TEST_J				1	/* Chirp J Test */
+#define TEST_K				2	/* Chirp K Test */
+#define TEST_SE0_NAK			3	/* Chirp SE0 Test */
+#define TEST_PKT			4	/* Packet Test */
+
+#define CONFIGURATION_ONE		0x01	/* USB device configuration*/
+#define STANDARD_OUT_DEVICE		0x00	/* Out device */
+#define STANDARD_OUT_ENDPOINT		0x02	/* Standard Out end point */
+
+#define XUSB_DMA_READ_FROM_DPRAM	0x80000000/**< DPRAM is the source
+							address for DMA transfer
+							*/
+#define XUSB_DMA_DMASR_BUSY		0x80000000 /**< DMA busy*/
+#define XUSB_DMA_DMASR_ERROR		0x40000000 /**< DMA Error */
+
+/*
+ * When this bit is set, the DMA buffer ready bit is set by hardware upon
+ * DMA transfer completion.
+ */
+#define XUSB_DMA_BRR_CTRL		0x40000000 /**< DMA bufready ctrl bit */
+
+/* Phase States */
+#define SETUP_PHASE			0x0000	/* Setup Phase */
+#define DATA_PHASE			0x0001  /* Data Phase */
+#define STATUS_PHASE			0x0002  /* Status Phase */
+
+#define EP_TRANSMIT		0	/* EP is IN endpoint */
+#define EP0_MAX_PACKET		64 /* Endpoint 0 maximum packet length */
+
+/**
+ * struct xusb_request - Xilinx USB device request structure
+ * @usb_req: Linux usb request structure
+ * @queue: usb device request queue
+ */
+struct xusb_request {
+	struct usb_request usb_req;
+	struct list_head queue;
+};
+
+/**
+ * struct xusb_ep - USB end point structure.
+ * @ep_usb: usb endpoint instance
+ * @queue: endpoint message queue
+ * @udc: xilinx usb peripheral driver instance pointer
+ * @desc: pointer to the usb endpoint descriptor
+ * @data: pointer to the xusb_request structure
+ * @rambase: the endpoint buffer address
+ * @endpointoffset: the endpoint register offset value
+ * @epnumber: endpoint number
+ * @maxpacket: maximum packet size the endpoint can store
+ * @buffer0count: the size of the packet recieved in the first buffer
+ * @buffer0ready: the busy state of first buffer
+ * @buffer1count: the size of the packet received in the second buffer
+ * @buffer1ready: the busy state of second buffer
+ * @eptype: endpoint transfer type (BULK, INTERRUPT)
+ * @curbufnum: current buffer of endpoint that will be processed next
+ * @is_in: endpoint direction (IN or OUT)
+ * @stopped: endpoint active status
+ * @is_iso: endpoint type(isochronous or non isochronous)
+ * @name: name of the endpoint
+ */
+struct xusb_ep {
+	struct usb_ep ep_usb;
+	struct list_head queue;
+	struct xusb_udc *udc;
+	const struct usb_endpoint_descriptor *desc;
+	struct xusb_request *data;
+	u32 rambase;
+	u32 endpointoffset;
+	u16 epnumber;
+	u16 maxpacket;
+	u16 buffer0count;
+	u16 buffer1count;
+	u8 buffer0ready;
+	u8 buffer1ready;
+	u8 eptype;
+	u8 curbufnum;
+	u8 is_in;
+	u8 stopped;
+	u8 is_iso;
+	char name[4];
+};
+
+/**
+ * struct xusb_udc -  USB peripheral driver structure
+ * @gadget: USB gadget driver instance
+ * @ep: an array of endpoint structures
+ * @driver: pointer to the usb gadget driver instance
+ * @read_fn: function pointer to read device registers
+ * @write_fn: function pointer to write to device registers
+ * @base_address: the usb device base address
+ * @lock: instance of spinlock
+ * @dma_enabled: flag indicating whether the dma is included in the system
+ * @status: status flag indicating the device cofiguration
+ */
+struct xusb_udc {
+	struct usb_gadget gadget;
+	struct xusb_ep ep[8];
+	struct usb_gadget_driver *driver;
+	unsigned int (*read_fn)(void __iomem *);
+	void (*write_fn)(u32, void __iomem *);
+	void __iomem *base_address;
+	spinlock_t lock;
+	bool dma_enabled;
+	u8 status;
+};
+
+/**
+ * struct cmdbuf - Standard USB Command Buffer Structure defined
+ * @setup: usb_ctrlrequest structure for control requests
+ * @contreadcount: read data bytes count
+ * @contwritecount: write data bytes count
+ * @setupseqtx: tx status
+ * @setupseqrx: rx status
+ * @contreadptr: pointer to endpoint0 read data
+ * @contwriteptr: pointer to endpoint0 write data
+ * @contreaddatabuffer: read data buffer for endpoint0
+ */
+struct cmdbuf {
+	struct usb_ctrlrequest setup;
+	u32 contreadcount;
+	u32 contwritecount;
+	u32 setupseqtx;
+	u32 setupseqrx;
+	u8 *contreadptr;
+	u8 *contwriteptr;
+	u8 contreaddatabuffer[64];
+};
+
+static struct cmdbuf ch9_cmdbuf;
+
+/*
+ * Endpoint buffer start addresses in the core
+ */
+static u32 rambase[8] = { 0x22, 0x1000, 0x1100, 0x1200, 0x1300, 0x1400, 0x1500,
+			0x1600 };
+
+static const char driver_name[] = "xilinx-udc";
+static const char ep0name[] = "ep0";
+
+/* Control endpoint configuration.*/
+static struct usb_endpoint_descriptor config_bulk_out_desc = {
+	.bLength = USB_DT_ENDPOINT_SIZE,
+	.bDescriptorType = USB_DT_ENDPOINT,
+	.bEndpointAddress = USB_DIR_OUT,
+	.bmAttributes = USB_ENDPOINT_XFER_BULK,
+	.wMaxPacketSize = __constant_cpu_to_le16(0x40),
+};
+
+/**
+ * to_udc - Return the udc instance pointer
+ * @g: pointer to the usb gadget driver instance
+ *
+ * Return: xusb_udc pointer
+ */
+static inline struct xusb_udc *to_udc(struct usb_gadget *g)
+{
+
+	return container_of(g, struct xusb_udc, gadget);
+}
+
+/**
+ * xudc_write32 - little endian write to device registers
+ * @val: data to be written
+ * @addr: addr of device register
+ */
+static void xudc_write32(u32 val, void __iomem *addr)
+{
+	iowrite32(val, addr);
+}
+
+/**
+ * xudc_read32 - little endian read from device registers
+ * @addr: addr of device register
+ * Return: value at addr
+ */
+static unsigned int xudc_read32(void __iomem *addr)
+{
+	return ioread32(addr);
+}
+
+/**
+ * xudc_write32_be - big endian write to device registers
+ * @val: data to be written
+ * @addr: addr of device register
+ */
+static void xudc_write32_be(u32 val, void __iomem *addr)
+{
+	iowrite32be(val, addr);
+}
+
+/**
+ * xudc_read32_be - big endian read from device registers
+ * @addr: addr of device register
+ * Return: value at addr
+ */
+static unsigned int xudc_read32_be(void __iomem *addr)
+{
+	return ioread32be(addr);
+}
+
+/**
+ * xudc_wrstatus - Sets up the usb device status stages.
+ * @udc: pointer to the usb device controller structure.
+ */
+static void xudc_wrstatus(struct xusb_udc *udc)
+{
+	u32 epcfgreg;
+
+	epcfgreg = (udc->read_fn(udc->base_address +
+				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset)|
+				XUSB_EP_CFG_DATA_TOGGLE_MASK);
+	udc->write_fn(epcfgreg, (udc->base_address +
+			udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset));
+	udc->write_fn(0, (udc->base_address +
+			udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset +
+			  XUSB_EP_BUF0COUNT_OFFSET));
+	udc->write_fn(1, (udc->base_address + XUSB_BUFFREADY_OFFSET));
+}
+
+/**
+ * xudc_epconfig - Configures the given endpoint.
+ * @ep: pointer to the usb device endpoint structure.
+ * @udc: pointer to the usb peripheral controller structure.
+ *
+ * This function configures a specific endpoint with the given configuration
+ * data.
+ */
+static void xudc_epconfig(struct xusb_ep *ep, struct xusb_udc *udc)
+{
+	u32 epcfgreg;
+
+	/*
+	 * Configure the end point direction, type, Max Packet Size and the
+	 * EP buffer location.
+	 */
+	epcfgreg = ((ep->is_in << 29) | (ep->eptype << 28) |
+			(ep->ep_usb.maxpacket << 15) | (ep->rambase));
+	udc->write_fn(epcfgreg, (udc->base_address + ep->endpointoffset));
+
+	/* Set the Buffer count and the Buffer ready bits.*/
+	udc->write_fn(ep->buffer0count,
+			udc->base_address + ep->endpointoffset +
+			XUSB_EP_BUF0COUNT_OFFSET);
+	udc->write_fn(ep->buffer1count,
+			udc->base_address + ep->endpointoffset +
+			XUSB_EP_BUF1COUNT_OFFSET);
+	if (ep->buffer0ready == 1)
+		udc->write_fn(1 << ep->epnumber,
+			udc->base_address + XUSB_BUFFREADY_OFFSET);
+	if (ep->buffer1ready == 1)
+		udc->write_fn(1 << (ep->epnumber + XUSB_STATUS_EP_BUFF2_SHIFT),
+			udc->base_address + XUSB_BUFFREADY_OFFSET);
+}
+
+/**
+ * xudc_eptxrx - Transmits or receives data to or from an endpoint.
+ * @ep: pointer to the usb endpoint configuration structure.
+ * @bufferptr: pointer to buffer containing the data to be sent.
+ * @bufferlen: The number of data bytes to be sent.
+ * @direction: The direction of data transfer (transmit or receive).
+ *
+ * Return: 0 on success and 1 on failure
+ *
+ * This function copies the transmit/receive data to/from the end point buffer
+ * and enables the buffer for transmission/reception.
+ */
+static int xudc_eptxrx(struct xusb_ep *ep, u8 *bufferptr, u32 bufferlen,
+			u8 direction)
+{
+	u32 *eprambase;
+	u32 bytestosend;
+	u8 *temprambase;
+	unsigned long timeout;
+	u32 srcaddr = 0;
+	u32 dstaddr = 0;
+	int rc = 0;
+	struct xusb_udc *udc = ep->udc;
+
+	bytestosend = bufferlen;
+
+	/* Put the transmit buffer into the correct ping-pong buffer.*/
+	if (!ep->curbufnum && !ep->buffer0ready) {
+		/* Get the Buffer address and copy the transmit data.*/
+		eprambase = (u32 __force *)(ep->udc->base_address +
+				ep->rambase);
+
+		if (ep->udc->dma_enabled) {
+			if (direction == EP_TRANSMIT) {
+				srcaddr = dma_map_single(
+					ep->udc->gadget.dev.parent,
+					bufferptr, bufferlen, DMA_TO_DEVICE);
+				dstaddr = virt_to_phys(eprambase);
+				udc->write_fn(bufferlen,
+						ep->udc->base_address +
+						ep->endpointoffset +
+						XUSB_EP_BUF0COUNT_OFFSET);
+				udc->write_fn(XUSB_DMA_BRR_CTRL |
+						(1 << ep->epnumber),
+						ep->udc->base_address +
+						XUSB_DMA_CONTROL_OFFSET);
+			} else {
+				srcaddr = virt_to_phys(eprambase);
+				dstaddr = dma_map_single(
+					ep->udc->gadget.dev.parent,
+					bufferptr, bufferlen, DMA_FROM_DEVICE);
+				udc->write_fn(XUSB_DMA_BRR_CTRL |
+					XUSB_DMA_READ_FROM_DPRAM |
+					(1 << ep->epnumber),
+					ep->udc->base_address +
+					XUSB_DMA_CONTROL_OFFSET);
+			}
+			/*
+			 * Set the addresses in the DMA source and destination
+			 * registers and then set the length into the DMA length
+			 * register.
+			 */
+			udc->write_fn(srcaddr, ep->udc->base_address +
+				XUSB_DMA_DSAR_ADDR_OFFSET);
+			udc->write_fn(dstaddr, ep->udc->base_address +
+				XUSB_DMA_DDAR_ADDR_OFFSET);
+			udc->write_fn(bufferlen, ep->udc->base_address +
+					XUSB_DMA_LENGTH_OFFSET);
+		} else {
+
+			while (bytestosend > 3) {
+				if (direction == EP_TRANSMIT)
+					*eprambase++ = *(u32 *)bufferptr;
+				else
+					*(u32 *)bufferptr = *eprambase++;
+				bufferptr += 4;
+				bytestosend -= 4;
+			}
+			temprambase = (u8 *)eprambase;
+			while (bytestosend--) {
+				if (direction == EP_TRANSMIT)
+					*temprambase++ = *bufferptr++;
+				else
+					*bufferptr++ = *temprambase++;
+			}
+			/*
+			 * Set the Buffer count register with transmit length
+			 * and enable the buffer for transmission.
+			 */
+			if (direction == EP_TRANSMIT)
+				udc->write_fn(bufferlen,
+					ep->udc->base_address +
+					ep->endpointoffset +
+					XUSB_EP_BUF0COUNT_OFFSET);
+			udc->write_fn(1 << ep->epnumber,
+					ep->udc->base_address +
+					XUSB_BUFFREADY_OFFSET);
+		}
+		ep->buffer0ready = 1;
+		ep->curbufnum = 1;
+
+	} else
+		if ((ep->curbufnum == 1) && (!ep->buffer1ready)) {
+
+			/* Get the Buffer address and copy the transmit data.*/
+			eprambase = (u32 __force *)(ep->udc->base_address +
+					ep->rambase + ep->ep_usb.maxpacket);
+			if (ep->udc->dma_enabled) {
+				if (direction == EP_TRANSMIT) {
+					srcaddr = dma_map_single(
+						ep->udc->gadget.dev.parent,
+						bufferptr, bufferlen,
+						DMA_TO_DEVICE);
+					dstaddr = virt_to_phys(eprambase);
+					udc->write_fn(bufferlen,
+						ep->udc->base_address +
+						ep->endpointoffset +
+						XUSB_EP_BUF1COUNT_OFFSET);
+					udc->write_fn(XUSB_DMA_BRR_CTRL |
+						(1 << (ep->epnumber +
+						XUSB_STATUS_EP_BUFF2_SHIFT)),
+						ep->udc->base_address +
+						XUSB_DMA_CONTROL_OFFSET);
+				} else {
+					srcaddr = virt_to_phys(eprambase);
+					dstaddr = dma_map_single(
+						ep->udc->gadget.dev.parent,
+						bufferptr, bufferlen,
+						DMA_FROM_DEVICE);
+					udc->write_fn(XUSB_DMA_BRR_CTRL |
+						XUSB_DMA_READ_FROM_DPRAM |
+						(1 << (ep->epnumber +
+						XUSB_STATUS_EP_BUFF2_SHIFT)),
+						ep->udc->base_address +
+						XUSB_DMA_CONTROL_OFFSET);
+				}
+				/*
+				 * Set the addresses in the DMA source and
+				 * destination registers and then set the length
+				 * into the DMA length register.
+				 */
+				udc->write_fn(srcaddr,
+						ep->udc->base_address +
+						XUSB_DMA_DSAR_ADDR_OFFSET);
+				udc->write_fn(dstaddr,
+						ep->udc->base_address +
+						XUSB_DMA_DDAR_ADDR_OFFSET);
+				udc->write_fn(bufferlen,
+						ep->udc->base_address +
+						XUSB_DMA_LENGTH_OFFSET);
+			} else {
+				while (bytestosend > 3) {
+					if (direction == EP_TRANSMIT)
+						*eprambase++ =
+							*(u32 *)bufferptr;
+					else
+						*(u32 *)bufferptr =
+							*eprambase++;
+					bufferptr += 4;
+					bytestosend -= 4;
+				}
+				temprambase = (u8 *)eprambase;
+				while (bytestosend--) {
+					if (direction == EP_TRANSMIT)
+						*temprambase++ = *bufferptr++;
+					else
+						*bufferptr++ = *temprambase++;
+				}
+				/*
+				 * Set the Buffer count register with transmit
+				 * length and enable the buffer for
+				 * transmission.
+				 */
+				if (direction == EP_TRANSMIT)
+					udc->write_fn(bufferlen,
+						ep->udc->base_address +
+						ep->endpointoffset +
+						XUSB_EP_BUF1COUNT_OFFSET);
+				udc->write_fn(1 << (ep->epnumber +
+						XUSB_STATUS_EP_BUFF2_SHIFT),
+						ep->udc->base_address +
+						XUSB_BUFFREADY_OFFSET);
+			}
+			ep->buffer1ready = 1;
+			ep->curbufnum = 0;
+		} else {
+			/*
+			 * None of the ping-pong buffer is free. Return a
+			 * failure.
+			 */
+			return 1;
+		}
+
+	if (ep->udc->dma_enabled) {
+		/*
+		 * Wait till DMA transaction is complete and
+		 * check whether the DMA transaction was
+		 * successful.
+		 */
+		while ((udc->read_fn(ep->udc->base_address +
+				XUSB_DMA_STATUS_OFFSET) &
+				XUSB_DMA_DMASR_BUSY) == XUSB_DMA_DMASR_BUSY) {
+			timeout = jiffies + 10000;
+
+			if (time_after(jiffies, timeout)) {
+				rc = -ETIMEDOUT;
+				goto clean;
+			}
+
+		}
+		if ((udc->read_fn(ep->udc->base_address +
+				XUSB_DMA_STATUS_OFFSET) &
+				XUSB_DMA_DMASR_ERROR) == XUSB_DMA_DMASR_ERROR)
+			dev_dbg(&ep->udc->gadget.dev, "DMA Error\n");
+clean:
+		if (direction == EP_TRANSMIT) {
+			dma_unmap_single(ep->udc->gadget.dev.parent,
+				srcaddr, bufferlen, DMA_TO_DEVICE);
+		} else {
+			dma_unmap_single(ep->udc->gadget.dev.parent,
+				dstaddr, bufferlen, DMA_FROM_DEVICE);
+		}
+	}
+	return rc;
+}
+
+/**
+ * xudc_done - Exeutes the endpoint data transfer completion tasks.
+ * @ep: pointer to the usb device endpoint structure.
+ * @req: pointer to the usb request structure.
+ * @status: Status of the data transfer.
+ *
+ * Deletes the message from the queue and updates data transfer completion
+ * status.
+ */
+static void xudc_done(struct xusb_ep *ep, struct xusb_request *req, int status)
+{
+	u8 stopped = ep->stopped;
+
+	list_del_init(&req->queue);
+
+	if (req->usb_req.status == -EINPROGRESS)
+		req->usb_req.status = status;
+	else
+		status = req->usb_req.status;
+
+	if (status && status != -ESHUTDOWN)
+		dev_dbg(&ep->udc->gadget.dev, "%s done %p, status %d\n",
+				ep->ep_usb.name, req, status);
+	ep->stopped = 1;
+
+	spin_unlock(&ep->udc->lock);
+	if (req->usb_req.complete)
+		req->usb_req.complete(&ep->ep_usb, &req->usb_req);
+	spin_lock(&ep->udc->lock);
+
+	ep->stopped = stopped;
+}
+
+/**
+ * xudc_read_fifo - Reads the data from the given endpoint buffer.
+ * @ep: pointer to the usb device endpoint structure.
+ * @req: pointer to the usb request structure.
+ *
+ * Return: 0 for success and error value on failure
+ *
+ * Pulls OUT packet data from the endpoint buffer.
+ */
+static int xudc_read_fifo(struct xusb_ep *ep, struct xusb_request *req)
+{
+	u8 *buf;
+	u32 is_short, count, bufferspace;
+	u8 bufoffset;
+	u8 two_pkts = 0;
+	struct xusb_udc *udc = ep->udc;
+
+	if ((ep->buffer0ready == 1) && (ep->buffer1ready == 1)) {
+		dev_dbg(&ep->udc->gadget.dev, "%s: Packet NOT ready!\n",
+				__func__);
+		return -EINVAL;
+	}
+top:
+	if (ep->curbufnum)
+		bufoffset = 0xC;
+	else
+		bufoffset = 0x08;
+		count = udc->read_fn(ep->udc->base_address +
+				ep->endpointoffset + bufoffset);
+	if (!ep->buffer0ready && !ep->buffer1ready)
+		two_pkts = 1;
+
+	dev_dbg(&ep->udc->gadget.dev,
+		"curbufnum is %d  and buf0rdy is %d, buf1rdy is %d\n",
+		ep->curbufnum, ep->buffer0ready, ep->buffer1ready);
+
+	buf = req->usb_req.buf + req->usb_req.actual;
+	prefetchw(buf);
+	bufferspace = req->usb_req.length - req->usb_req.actual;
+
+	req->usb_req.actual += min(count, bufferspace);
+	is_short = count < ep->ep_usb.maxpacket;
+
+	if (count) {
+		if (unlikely(!bufferspace)) {
+			/*
+			 * This happens when the driver's buffer
+			 * is smaller than what the host sent.
+			 * discard the extra data.
+			 */
+			if (req->usb_req.status != -EOVERFLOW)
+				dev_dbg(&ep->udc->gadget.dev,
+					"%s overflow %d\n",
+					ep->ep_usb.name, count);
+			req->usb_req.status = -EOVERFLOW;
+		} else {
+			if (!xudc_eptxrx(ep, buf, count, 1)) {
+				dev_dbg(&ep->udc->gadget.dev,
+					"read %s, %d bytes%s req %p %d/%d\n",
+					ep->ep_usb.name, count,
+					is_short ? "/S" : "", req,
+					req->usb_req.actual,
+					req->usb_req.length);
+				bufferspace -= count;
+				/* Completion */
+				if ((req->usb_req.actual ==
+					  req->usb_req.length) || is_short) {
+					xudc_done(ep, req, 0);
+					return 1;
+				}
+				if (two_pkts) {
+					two_pkts = 0;
+					goto top;
+				}
+			} else {
+				dev_dbg(&ep->udc->gadget.dev,
+				"rcv fail..curbufnum is %d and buf0rdy is"
+				"%d, buf1rdy is %d\n", ep->curbufnum,
+				ep->buffer0ready, ep->buffer1ready);
+				req->usb_req.actual -= min(count, bufferspace);
+				return -EINVAL;
+			}
+		}
+	} else {
+		return -EINVAL;
+	}
+	return 0;
+}
+
+/**
+ * xudc_write_fifo - Writes data into the given endpoint buffer.
+ * @ep: pointer to the usb device endpoint structure.
+ * @req: pointer to the usb request structure.
+ *
+ * Return: 0 for success and error value on failure
+ *
+ * Loads endpoint buffer for an IN packet.
+ */
+static int xudc_write_fifo(struct xusb_ep *ep, struct xusb_request *req)
+{
+	u8 *buf;
+	u32 max;
+	u32 length;
+	int is_last, is_short = 0;
+
+	max = le16_to_cpu(ep->desc->wMaxPacketSize);
+
+	if (req) {
+		buf = req->usb_req.buf + req->usb_req.actual;
+		prefetch(buf);
+		length = req->usb_req.length - req->usb_req.actual;
+	} else {
+		buf = NULL;
+		length = 0;
+	}
+
+	length = min(length, max);
+	if (xudc_eptxrx(ep, buf, length, EP_TRANSMIT) == 1) {
+		buf = req->usb_req.buf - req->usb_req.actual;
+		dev_dbg(&ep->udc->gadget.dev, "Send failure\n");
+		return 0;
+	} else {
+		req->usb_req.actual += length;
+
+		if (unlikely(length != max)) {
+			is_last = is_short = 1;
+		} else {
+			if (likely(req->usb_req.length !=
+				req->usb_req.actual) || req->usb_req.zero)
+				is_last = 0;
+			else
+				is_last = 1;
+		}
+		dev_dbg(&ep->udc->gadget.dev,
+			"%s: wrote %s %d bytes%s%s %d left %p\n", __func__,
+			ep->ep_usb.name, length,
+			is_last ? "/L" : "", is_short ? "/S" : "",
+			req->usb_req.length - req->usb_req.actual, req);
+
+		if (is_last) {
+			xudc_done(ep, req, 0);
+			return 1;
+		}
+	}
+	return 0;
+}
+
+/**
+ * xudc_nuke - Cleans up the data transfer message list.
+ * @ep: pointer to the usb device endpoint structure.
+ * @status: Status of the data transfer.
+ */
+static void xudc_nuke(struct xusb_ep *ep, int status)
+{
+	struct xusb_request *req;
+
+	while (!list_empty(&ep->queue)) {
+		req = list_entry(ep->queue.next, struct xusb_request, queue);
+
+		xudc_done(ep, req, status);
+	}
+}
+
+/***************************** Endpoint related functions*********************/
+/**
+ * xudc_ep_set_halt - Stalls/unstalls the given endpoint.
+ * @_ep: pointer to the usb device endpoint structure.
+ * @value: value to indicate stall/unstall.
+ *
+ * Return: 0 for success and error value on failure
+ */
+static int xudc_ep_set_halt(struct usb_ep *_ep, int value)
+{
+	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
+	unsigned long flags;
+	u32 epcfgreg;
+	struct xusb_udc *udc = ep->udc;
+
+	if (!_ep || (!ep->desc && ep->epnumber))
+		return -EINVAL;
+
+	spin_lock_irqsave(&ep->udc->lock, flags);
+
+	if (ep->is_in && (!list_empty(&ep->queue)) && value) {
+		spin_unlock_irqrestore(&ep->udc->lock, flags);
+		return -EAGAIN;
+	}
+	if ((ep->buffer0ready == 1) || (ep->buffer1ready == 1)) {
+		spin_unlock_irqrestore(&ep->udc->lock, flags);
+		return -EAGAIN;
+	}
+
+	if (value) {
+		/* Stall the device.*/
+		epcfgreg = udc->read_fn(ep->udc->base_address +
+				   ep->endpointoffset);
+		epcfgreg |= XUSB_EP_CFG_STALL_MASK;
+
+		udc->write_fn(epcfgreg,
+			(ep->udc->base_address + ep->endpointoffset));
+		ep->stopped = 1;
+	} else {
+
+		ep->stopped = 0;
+		/* Unstall the device.*/
+		epcfgreg = udc->read_fn(ep->udc->base_address +
+					    ep->endpointoffset);
+		epcfgreg &= ~XUSB_EP_CFG_STALL_MASK;
+		udc->write_fn(epcfgreg,
+		ep->udc->base_address + ep->endpointoffset);
+		if (ep->epnumber) {
+			/* Reset the toggle bit.*/
+			epcfgreg = udc->read_fn(ep->udc->base_address +
+						    ep->endpointoffset);
+			epcfgreg &= ~XUSB_EP_CFG_DATA_TOGGLE_MASK;
+			udc->write_fn(epcfgreg, ep->udc->base_address +
+					   ep->endpointoffset);
+		}
+	}
+
+	spin_unlock_irqrestore(&ep->udc->lock, flags);
+	return 0;
+}
+
+/**
+ * xudc_ep_enable - Enables the given endpoint.
+ * @_ep: pointer to the usb device endpoint structure.
+ * @desc: pointer to usb endpoint descriptor.
+ *
+ * Return: 0 for success and error value on failure
+ */
+static int xudc_ep_enable(struct usb_ep *_ep,
+			  const struct usb_endpoint_descriptor *desc)
+{
+	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
+	struct xusb_udc *dev = ep->udc;
+	u32 tmp;
+	u8 eptype = 0;
+	unsigned long flags;
+	u32 epcfg;
+	struct xusb_udc *udc = ep->udc;
+
+	/*
+	 * The check for _ep->name == ep0name is not done as this enable i used
+	 * for enabling ep0 also. In other gadget drivers, this ep name is not
+	 * used.
+	 */
+	if (!_ep || !desc || ep->desc ||
+	    desc->bDescriptorType != USB_DT_ENDPOINT) {
+		dev_dbg(&ep->udc->gadget.dev, "first check fails\n");
+		return -EINVAL;
+	}
+
+	if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
+		dev_dbg(&ep->udc->gadget.dev, "bogus device state\n");
+		return -ESHUTDOWN;
+	}
+
+
+	ep->is_in = ((desc->bEndpointAddress & USB_DIR_IN) != 0);
+	/*
+	 * Bit 3...0: endpoint number
+	 */
+	ep->epnumber = (desc->bEndpointAddress & 0x0f);
+	ep->stopped = 0;
+	ep->desc = desc;
+	ep->ep_usb.desc = desc;
+	tmp = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
+	spin_lock_irqsave(&ep->udc->lock, flags);
+	ep->ep_usb.maxpacket = le16_to_cpu(desc->wMaxPacketSize);
+
+	switch (tmp) {
+	case USB_ENDPOINT_XFER_CONTROL:
+		dev_dbg(&ep->udc->gadget.dev, "only one control endpoint\n");
+		/* NON- ISO */
+		eptype = 0;
+		spin_unlock_irqrestore(&ep->udc->lock, flags);
+		return -EINVAL;
+	case USB_ENDPOINT_XFER_INT:
+		/* NON- ISO */
+		eptype = 0;
+		if (ep->ep_usb.maxpacket > 64)
+			goto bogus_max;
+		break;
+	case USB_ENDPOINT_XFER_BULK:
+		/* NON- ISO */
+		eptype = 0;
+		switch (ep->ep_usb.maxpacket) {
+		case 8:
+		case 16:
+		case 32:
+		case 64:
+		case 512:
+		goto ok;
+		}
+bogus_max:
+		dev_dbg(&ep->udc->gadget.dev, "bogus maxpacket %d\n",
+			ep->ep_usb.maxpacket);
+		spin_unlock_irqrestore(&ep->udc->lock, flags);
+		return -EINVAL;
+	case USB_ENDPOINT_XFER_ISOC:
+		/* ISO */
+		eptype = 1;
+		ep->is_iso = 1;
+		break;
+	}
+
+ok:	ep->eptype = eptype;
+	ep->buffer0ready = 0;
+	ep->buffer1ready = 0;
+	ep->curbufnum = 0;
+	ep->rambase = rambase[ep->epnumber];
+	xudc_epconfig(ep, ep->udc);
+
+	dev_dbg(&ep->udc->gadget.dev, "Enable Endpoint %d max pkt is %d\n",
+		ep->epnumber, ep->ep_usb.maxpacket);
+
+	/* Enable the End point.*/
+	epcfg = udc->read_fn(ep->udc->base_address + ep->endpointoffset);
+	epcfg |= XUSB_EP_CFG_VALID_MASK;
+	udc->write_fn(epcfg,
+		ep->udc->base_address + ep->endpointoffset);
+	if (ep->epnumber)
+		ep->rambase <<= 2;
+
+	if (ep->epnumber)
+		udc->write_fn((udc->read_fn(ep->udc->base_address +
+				XUSB_IER_OFFSET) |
+				(XUSB_STATUS_INTR_BUFF_COMP_SHIFT_MASK <<
+				ep->epnumber)),
+				ep->udc->base_address + XUSB_IER_OFFSET);
+	if (ep->epnumber && !ep->is_in) {
+
+		/* Set the buffer ready bits.*/
+		udc->write_fn(1 << ep->epnumber, ep->udc->base_address +
+				  XUSB_BUFFREADY_OFFSET);
+		ep->buffer0ready = 1;
+		udc->write_fn((1 << (ep->epnumber +
+				XUSB_STATUS_EP_BUFF2_SHIFT)),
+				ep->udc->base_address +
+				XUSB_BUFFREADY_OFFSET);
+		ep->buffer1ready = 1;
+	}
+
+	spin_unlock_irqrestore(&ep->udc->lock, flags);
+
+	return 0;
+}
+
+/**
+ * xudc_ep_disable - Disables the given endpoint.
+ * @_ep: pointer to the usb device endpoint structure.
+ *
+ * Return: 0 for success and error value on failure
+ */
+static int xudc_ep_disable(struct usb_ep *_ep)
+{
+	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
+	unsigned long flags;
+	u32 epcfg;
+	struct xusb_udc *udc = ep->udc;
+
+	if (ep == &ep->udc->ep[XUSB_EP_NUMBER_ZERO]) {
+		dev_dbg(&ep->udc->gadget.dev, "Ep0 disable called\n");
+		return -EINVAL;
+	}
+	spin_lock_irqsave(&ep->udc->lock, flags);
+
+	xudc_nuke(ep, -ESHUTDOWN);
+
+	/* Restore the endpoint's pristine config */
+	ep->desc = NULL;
+	ep->ep_usb.desc = NULL;
+
+	ep->stopped = 1;
+
+	dev_dbg(&ep->udc->gadget.dev, "USB Ep %d disable\n ", ep->epnumber);
+
+	/* Disable the endpoint.*/
+	epcfg = udc->read_fn(ep->udc->base_address + ep->endpointoffset);
+	epcfg &= ~XUSB_EP_CFG_VALID_MASK;
+	udc->write_fn(epcfg, ep->udc->base_address + ep->endpointoffset);
+	spin_unlock_irqrestore(&ep->udc->lock, flags);
+	return 0;
+}
+
+/**
+ * xudc_ep_alloc_request - Initializes the request queue.
+ * @_ep: pointer to the usb device endpoint structure.
+ * @gfp_flags: Flags related to the request call.
+ *
+ * Return: pointer to request structure on success and a NULL on failure.
+ */
+static struct usb_request *xudc_ep_alloc_request(struct usb_ep *_ep,
+						 gfp_t gfp_flags)
+{
+	struct xusb_request *req;
+
+	req = kmalloc(sizeof(*req), gfp_flags);
+	if (!req)
+		return NULL;
+
+	memset(req, 0, sizeof(*req));
+	INIT_LIST_HEAD(&req->queue);
+	return &req->usb_req;
+}
+
+/**
+ * xudc_free_request - Releases the request from queue.
+ * @_ep: pointer to the usb device endpoint structure.
+ * @_req: pointer to the usb request structure.
+ */
+static void xudc_free_request(struct usb_ep *_ep, struct usb_request *_req)
+{
+	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
+	struct xusb_request *req;
+
+	req = container_of(_req, struct xusb_request, usb_req);
+
+	if (!list_empty(&req->queue))
+		dev_warn(&ep->udc->gadget.dev, "Error: No memory to free");
+
+	kfree(req);
+}
+
+/**
+ * xudc_ep_queue - Adds the request to the queue.
+ * @_ep: pointer to the usb device endpoint structure.
+ * @_req: pointer to the usb request structure.
+ * @gfp_flags: Flags related to the request call.
+ *
+ * Return: 0 for success and error value on failure
+ */
+static int xudc_ep_queue(struct usb_ep *_ep, struct usb_request *_req,
+			 gfp_t gfp_flags)
+{
+	struct xusb_request *req;
+	struct xusb_ep *ep;
+	struct xusb_udc *dev;
+	unsigned long flags;
+	u32 length, count;
+	u8 *corebuf;
+	struct xusb_udc *udc;
+
+	req = container_of(_req, struct xusb_request, usb_req);
+	ep = container_of(_ep, struct xusb_ep, ep_usb);
+	udc = ep->udc;
+
+	if (!_req || !_req->complete || !_req->buf ||
+			!list_empty(&req->queue)) {
+		dev_dbg(&ep->udc->gadget.dev, "invalid request\n");
+		return -EINVAL;
+	}
+
+	if (!_ep || (!ep->desc && ep->ep_usb.name != ep0name)) {
+		dev_dbg(&ep->udc->gadget.dev, "invalid ep\n");
+		return -EINVAL;
+	}
+
+	dev = ep->udc;
+	if (!dev || !dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
+		dev_dbg(&ep->udc->gadget.dev, "%s, bogus device state %p\n",
+			__func__, dev->driver);
+		return -ESHUTDOWN;
+	}
+
+	spin_lock_irqsave(&dev->lock, flags);
+
+	_req->status = -EINPROGRESS;
+	_req->actual = 0;
+
+	/* Try to kickstart any empty and idle queue */
+	if (list_empty(&ep->queue)) {
+		if (!ep->epnumber) {
+			ep->data = req;
+			if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
+				ch9_cmdbuf.contwriteptr = req->usb_req.buf +
+							req->usb_req.actual;
+				prefetch(ch9_cmdbuf.contwriteptr);
+				length = req->usb_req.length -
+					req->usb_req.actual;
+				corebuf = (void __force *) ((ep->rambase << 2) +
+					    ep->udc->base_address);
+				ch9_cmdbuf.contwritecount = length;
+				length = count = min_t(u32, length,
+							EP0_MAX_PACKET);
+				while (length--)
+					*corebuf++ = *ch9_cmdbuf.contwriteptr++;
+				udc->write_fn(count, ep->udc->base_address +
+					   XUSB_EP_BUF0COUNT_OFFSET);
+				udc->write_fn(1, ep->udc->base_address +
+					   XUSB_BUFFREADY_OFFSET);
+				ch9_cmdbuf.contwritecount -= count;
+			} else {
+				if (ch9_cmdbuf.setup.wLength) {
+					ch9_cmdbuf.contreadptr =
+						req->usb_req.buf +
+							req->usb_req.actual;
+					udc->write_fn(req->usb_req.length ,
+						ep->udc->base_address +
+						XUSB_EP_BUF0COUNT_OFFSET);
+					udc->write_fn(1, ep->udc->base_address
+						+ XUSB_BUFFREADY_OFFSET);
+				} else {
+					xudc_wrstatus(udc);
+					req = NULL;
+				}
+			}
+		} else {
+
+			if (ep->is_in) {
+				dev_dbg(&ep->udc->gadget.dev,
+					"xudc_write_fifo called from queue\n");
+				if (xudc_write_fifo(ep, req) == 1)
+					req = NULL;
+			} else {
+				dev_dbg(&ep->udc->gadget.dev,
+					"xudc_read_fifo called from queue\n");
+				if (xudc_read_fifo(ep, req) == 1)
+					req = NULL;
+			}
+		}
+	}
+
+	if (req != NULL)
+		list_add_tail(&req->queue, &ep->queue);
+	spin_unlock_irqrestore(&dev->lock, flags);
+	return 0;
+}
+
+/**
+ * xudc_ep_dequeue - Removes the request from the queue.
+ * @_ep: pointer to the usb device endpoint structure.
+ * @_req: pointer to the usb request structure.
+ *
+ * Return: 0 for success and error value on failure
+ */
+static int xudc_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
+{
+	struct xusb_ep *ep;
+	struct xusb_request *req;
+	unsigned long flags;
+
+	ep = container_of(_ep, struct xusb_ep, ep_usb);
+
+	if (!_ep || ep->ep_usb.name == ep0name)
+		return -EINVAL;
+
+	spin_lock_irqsave(&ep->udc->lock, flags);
+	/* Make sure it's actually queued on this endpoint */
+	list_for_each_entry(req, &ep->queue, queue) {
+		if (&req->usb_req == _req)
+			break;
+	}
+	if (&req->usb_req != _req) {
+		spin_unlock_irqrestore(&ep->udc->lock, flags);
+		return -EINVAL;
+	}
+
+	xudc_done(ep, req, -ECONNRESET);
+	spin_unlock_irqrestore(&ep->udc->lock, flags);
+
+	return 0;
+}
+
+static struct usb_ep_ops xusb_ep_ops = {
+	.enable = xudc_ep_enable,
+	.disable = xudc_ep_disable,
+
+	.alloc_request = xudc_ep_alloc_request,
+	.free_request = xudc_free_request,
+
+	.queue = xudc_ep_queue,
+	.dequeue = xudc_ep_dequeue,
+	.set_halt = xudc_ep_set_halt,
+};
+
+/**
+ * xudc_get_frame - Reads the current usb frame number.
+ * @gadget: pointer to the usb gadget structure.
+ *
+ * Return: current frame number for success and error value on failure.
+ */
+static int xudc_get_frame(struct usb_gadget *gadget)
+{
+
+	struct xusb_udc *udc = to_udc(gadget);
+	unsigned long flags;
+	int retval;
+
+	if (!gadget)
+		return -ENODEV;
+
+	local_irq_save(flags);
+	retval = udc->read_fn(udc->base_address + XUSB_FRAMENUM_OFFSET);
+	local_irq_restore(flags);
+	return retval;
+}
+
+/**
+ * xudc_reinit - Restores inital software state.
+ * @udc: pointer to the usb device controller structure.
+ */
+static void xudc_reinit(struct xusb_udc *udc)
+{
+	u32 ep_number;
+	char name[4];
+
+	INIT_LIST_HEAD(&udc->gadget.ep_list);
+	INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
+
+	for (ep_number = 0; ep_number < XUSB_MAX_ENDPOINTS; ep_number++) {
+		struct xusb_ep *ep = &udc->ep[ep_number];
+
+		if (ep_number) {
+			list_add_tail(&ep->ep_usb.ep_list,
+					&udc->gadget.ep_list);
+			ep->ep_usb.maxpacket = (unsigned short)~0;
+			sprintf(name, "ep%d", ep_number);
+			strcpy(ep->name, name);
+			ep->ep_usb.name = ep->name;
+		} else {
+			ep->ep_usb.name = ep0name;
+			ep->ep_usb.maxpacket = 0x40;
+		}
+
+		ep->ep_usb.ops = &xusb_ep_ops;
+		ep->udc = udc;
+		ep->epnumber = ep_number;
+		ep->desc = NULL;
+		ep->stopped = 0;
+		/*
+		 * The configuration register address offset between
+		 * each endpoint is 0x10.
+		 */
+		ep->endpointoffset = XUSB_EP0_CONFIG_OFFSET +
+					(ep_number * 0x10);
+		ep->is_in = 0;
+		ep->is_iso = 0;
+		ep->maxpacket = 0;
+		xudc_epconfig(ep, udc);
+		udc->status = 0;
+
+		/* Initialize one queue per endpoint */
+		INIT_LIST_HEAD(&ep->queue);
+	}
+}
+
+/**
+ * xudc_stop_activity - Stops any further activity on the device.
+ * @udc: pointer to the usb device controller structure.
+ */
+static void xudc_stop_activity(struct xusb_udc *udc)
+{
+	struct usb_gadget_driver *driver = udc->driver;
+	int i;
+
+	if (udc->gadget.speed == USB_SPEED_UNKNOWN)
+		driver = NULL;
+	udc->gadget.speed = USB_SPEED_HIGH;
+
+	for (i = 0; i < XUSB_MAX_ENDPOINTS; i++) {
+		struct xusb_ep *ep = &udc->ep[i];
+
+		ep->stopped = 1;
+		xudc_nuke(ep, -ESHUTDOWN);
+	}
+	if (driver) {
+		spin_unlock(&udc->lock);
+		driver->disconnect(&udc->gadget);
+		spin_lock(&udc->lock);
+	}
+
+	xudc_reinit(udc);
+}
+
+/**
+ * xudc_start - Starts the device.
+ * @gadget: pointer to the usb gadget structure
+ * @driver: pointer to gadget driver structure
+ *
+ * Return: zero always
+ */
+static int xudc_start(struct usb_gadget *gadget,
+			struct usb_gadget_driver *driver)
+{
+	struct xusb_udc *udc = to_udc(gadget);
+	const struct usb_endpoint_descriptor *d = &config_bulk_out_desc;
+
+	driver->driver.bus = NULL;
+	/* hook up the driver */
+	udc->driver = driver;
+	udc->gadget.dev.driver = &driver->driver;
+	udc->gadget.speed = driver->max_speed;
+
+	/* Enable the USB device.*/
+	xudc_ep_enable(&udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb, d);
+	udc->write_fn(0, (udc->base_address + XUSB_ADDRESS_OFFSET));
+	udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
+		udc->base_address + XUSB_CONTROL_OFFSET);
+
+	return 0;
+}
+
+/**
+ * xudc_stop - stops the device.
+ * @gadget: pointer to the usb gadget structure
+ * @driver: pointer to usb gadget driver structure
+ *
+ * Return: zero always
+ */
+static int xudc_stop(struct usb_gadget *gadget,
+		struct usb_gadget_driver *driver)
+{
+	struct xusb_udc *udc = to_udc(gadget);
+	unsigned long flags;
+	u32 crtlreg;
+
+	/* Disable USB device.*/
+	crtlreg = udc->read_fn(udc->base_address + XUSB_CONTROL_OFFSET);
+	crtlreg &= ~XUSB_CONTROL_USB_READY_MASK;
+	udc->write_fn(crtlreg, udc->base_address + XUSB_CONTROL_OFFSET);
+	spin_lock_irqsave(&udc->lock, flags);
+	udc->gadget.speed = USB_SPEED_UNKNOWN;
+	xudc_stop_activity(udc);
+	spin_unlock_irqrestore(&udc->lock, flags);
+
+	udc->gadget.dev.driver = NULL;
+	udc->driver = NULL;
+
+	return 0;
+}
+
+static const struct usb_gadget_ops xusb_udc_ops = {
+	.get_frame = xudc_get_frame,
+	.udc_start = xudc_start,
+	.udc_stop  = xudc_stop,
+};
+
+/**
+ * xudc_startup_handler - The usb device controller interrupt handler.
+ * @callbackref: pointer to the reference value being passed.
+ * @intrstatus: The mask value containing the interrupt sources.
+ *
+ * This handler handles the RESET, SUSPEND and DISCONNECT interrupts.
+ */
+static void xudc_startup_handler(void *callbackref, u32 intrstatus)
+{
+	struct xusb_udc *udc;
+	u32 intrreg;
+
+	udc = (struct xusb_udc *) callbackref;
+	if (intrstatus & XUSB_STATUS_RESET_MASK) {
+		dev_dbg(&udc->gadget.dev, "Reset\n");
+		if (intrstatus & XUSB_STATUS_HIGH_SPEED_MASK)
+			udc->gadget.speed = USB_SPEED_HIGH;
+		else
+			udc->gadget.speed = USB_SPEED_FULL;
+
+		if (udc->status == 1) {
+			udc->status = 0;
+			/* Set device address to 0.*/
+			udc->write_fn(0, udc->base_address +
+						XUSB_ADDRESS_OFFSET);
+		}
+		/* Disable the Reset interrupt.*/
+		intrreg = udc->read_fn(udc->base_address +
+					XUSB_IER_OFFSET);
+
+		intrreg &= ~XUSB_STATUS_RESET_MASK;
+		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
+		/* Enable thesuspend and disconnect.*/
+		intrreg =
+			udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
+		intrreg |=
+			(XUSB_STATUS_SUSPEND_MASK |
+			 XUSB_STATUS_DISCONNECT_MASK);
+		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
+	}
+
+	if (intrstatus & XUSB_STATUS_DISCONNECT_MASK) {
+
+		/* Disable the Disconnect interrupt.*/
+		intrreg =
+			udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
+		intrreg &= ~XUSB_STATUS_DISCONNECT_MASK;
+		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
+		dev_dbg(&udc->gadget.dev, "Disconnect\n");
+		if (udc->status == 1) {
+			udc->status = 0;
+			/* Set device address to 0.*/
+			udc->write_fn(0, udc->base_address +
+					XUSB_ADDRESS_OFFSET);
+			/* Enable the USB device.*/
+			udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
+				udc->base_address + XUSB_CONTROL_OFFSET);
+		}
+
+		/* Enable the suspend and reset interrupts.*/
+		intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
+				XUSB_STATUS_SUSPEND_MASK |
+				XUSB_STATUS_RESET_MASK;
+		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
+		xudc_stop_activity(udc);
+	}
+
+	if (intrstatus & XUSB_STATUS_SUSPEND_MASK) {
+		dev_dbg(&udc->gadget.dev, "Suspend\n");
+		/* Disable the Suspend interrupt.*/
+		intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) &
+					~XUSB_STATUS_SUSPEND_MASK;
+		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
+		/* Enable the Disconnect and reset interrupts. */
+		intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
+				XUSB_STATUS_DISCONNECT_MASK |
+				XUSB_STATUS_RESET_MASK;
+		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
+	}
+}
+
+/**
+ * xudc_set_clear_feature - Executes the set feature and clear feature commands.
+ * @udc: pointer to the usb device controller structure.
+ * @flag: Value deciding the set or clear action.
+ *
+ * Processes the SET_FEATURE and CLEAR_FEATURE commands.
+ */
+static void xudc_set_clear_feature(struct xusb_udc *udc, int flag)
+{
+	u8 endpoint;
+	u8 outinbit;
+	u32 epcfgreg;
+
+	switch (ch9_cmdbuf.setup.bRequestType) {
+	case STANDARD_OUT_DEVICE:
+		switch (ch9_cmdbuf.setup.wValue) {
+		case USB_DEVICE_TEST_MODE:
+			/*
+			 * The Test Mode will be executed
+			 * after the status phase.
+			 */
+			break;
+
+		default:
+			epcfgreg = udc->read_fn(udc->base_address +
+				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
+			epcfgreg |= XUSB_EP_CFG_STALL_MASK;
+			udc->write_fn(epcfgreg, udc->base_address +
+				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
+			break;
+		}
+		break;
+
+	case STANDARD_OUT_ENDPOINT:
+		if (!ch9_cmdbuf.setup.wValue) {
+			endpoint = ch9_cmdbuf.setup.wIndex & 0xf;
+			outinbit = ch9_cmdbuf.setup.wIndex & 0x80;
+			outinbit = outinbit >> 7;
+
+			/* Make sure direction matches.*/
+			if (outinbit != udc->ep[endpoint].is_in) {
+				epcfgreg = udc->read_fn(udc->base_address +
+						udc->ep[XUSB_EP_NUMBER_ZERO].
+						endpointoffset);
+				epcfgreg |= XUSB_EP_CFG_STALL_MASK;
+
+				udc->write_fn(epcfgreg, udc->base_address +
+					udc->ep[XUSB_EP_NUMBER_ZERO].
+					endpointoffset);
+				return;
+			}
+
+			if (!endpoint) {
+				/* Clear the stall.*/
+				epcfgreg = udc->read_fn(udc->base_address +
+						udc->ep[XUSB_EP_NUMBER_ZERO].
+						endpointoffset);
+
+				epcfgreg &= ~XUSB_EP_CFG_STALL_MASK;
+
+				udc->write_fn(epcfgreg, udc->base_address +
+					udc->ep[XUSB_EP_NUMBER_ZERO].
+					endpointoffset);
+				break;
+			} else {
+				if (flag == 1) {
+					epcfgreg =
+						udc->read_fn(udc->base_address +
+						udc->ep[XUSB_EP_NUMBER_ZERO].
+						endpointoffset);
+					epcfgreg |= XUSB_EP_CFG_STALL_MASK;
+
+					udc->write_fn(epcfgreg,
+						udc->base_address +
+						udc->ep[XUSB_EP_NUMBER_ZERO].
+						endpointoffset);
+				} else {
+					/* Unstall the endpoint.*/
+					epcfgreg =
+						udc->read_fn(udc->base_address +
+						udc->ep[endpoint].
+						endpointoffset);
+					epcfgreg &=
+						~(XUSB_EP_CFG_STALL_MASK |
+						  XUSB_EP_CFG_DATA_TOGGLE_MASK);
+					udc->write_fn(epcfgreg,
+						udc->base_address +
+						udc->ep[endpoint].
+						endpointoffset);
+				}
+			}
+		}
+		break;
+
+	default:
+		epcfgreg = udc->read_fn(udc->base_address +
+				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
+		epcfgreg |= XUSB_EP_CFG_STALL_MASK;
+		udc->write_fn(epcfgreg, udc->base_address +
+			udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
+		return;
+	}
+
+	/* Cause and valid status phase to be issued.*/
+	xudc_wrstatus(udc);
+
+	return;
+}
+
+/**
+ * xudc_execute_cmd - Processes the USB specification chapter 9 commands.
+ * @udc: pointer to the usb device controller structure.
+ *
+ * Return: 0 for success and the same reuqest command if it is not handled.
+ */
+static int xudc_execute_cmd(struct xusb_udc *udc)
+{
+
+	if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
+			USB_TYPE_STANDARD) {
+		/* Process the chapter 9 command.*/
+		switch (ch9_cmdbuf.setup.bRequest) {
+
+		case USB_REQ_CLEAR_FEATURE:
+			xudc_set_clear_feature(udc, 0);
+			break;
+
+		case USB_REQ_SET_FEATURE:
+			xudc_set_clear_feature(udc, 1);
+			break;
+
+		case USB_REQ_SET_ADDRESS:
+			xudc_wrstatus(udc);
+			break;
+
+		case USB_REQ_SET_CONFIGURATION:
+			udc->status = 1;
+			return ch9_cmdbuf.setup.bRequest;
+
+		default:
+			/*
+			 * Return the same request to application for
+			 * handling.
+			 */
+			return ch9_cmdbuf.setup.bRequest;
+		}
+
+	} else {
+		if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
+		     USB_TYPE_CLASS)
+			return ch9_cmdbuf.setup.bRequest;
+	}
+	return 0;
+}
+
+/**
+ * xudc_handle_setup - Processes the setup packet.
+ * @udc: pointer to the usb device controller structure.
+ * @ctrl: pointer to the usb control endpoint structure.
+ *
+ * Return: 0 for success and request to be handled by application if
+ *		is not handled by the driver.
+ */
+static int xudc_handle_setup(struct xusb_udc *udc, struct usb_ctrlrequest *ctrl)
+{
+	u32 *ep0rambase;
+
+	/* Load up the chapter 9 command buffer.*/
+	ep0rambase = (u32 __force *) (udc->base_address +
+				  XUSB_SETUP_PKT_ADDR_OFFSET);
+	memcpy((void *)&ch9_cmdbuf.setup, (void *)ep0rambase, 8);
+
+	ctrl->bRequestType = ch9_cmdbuf.setup.bRequestType;
+	ctrl->bRequest     = ch9_cmdbuf.setup.bRequest;
+	ctrl->wValue       = ch9_cmdbuf.setup.wValue;
+	ctrl->wIndex       = ch9_cmdbuf.setup.wIndex;
+	ctrl->wLength      = ch9_cmdbuf.setup.wLength;
+
+	ch9_cmdbuf.setup.wValue = cpu_to_le16(ch9_cmdbuf.setup.wValue);
+	ch9_cmdbuf.setup.wIndex = cpu_to_le16(ch9_cmdbuf.setup.wIndex);
+	ch9_cmdbuf.setup.wLength = cpu_to_le16(ch9_cmdbuf.setup.wLength);
+
+	/* Restore ReadPtr to data buffer.*/
+	ch9_cmdbuf.contreadptr = &ch9_cmdbuf.contreaddatabuffer[0];
+	ch9_cmdbuf.contreadcount = 0;
+
+	if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
+		/* Execute the get command.*/
+		ch9_cmdbuf.setupseqrx = STATUS_PHASE;
+		ch9_cmdbuf.setupseqtx = DATA_PHASE;
+		return xudc_execute_cmd(udc);
+	} else {
+		/* Execute the put command.*/
+		ch9_cmdbuf.setupseqrx = DATA_PHASE;
+		ch9_cmdbuf.setupseqtx = STATUS_PHASE;
+		return xudc_execute_cmd(udc);
+	}
+	/* Control should never come here.*/
+	return 0;
+}
+
+/**
+ * xudc_ep0_out - Processes the endpoint 0 OUT token.
+ * @udc: pointer to the usb device controller structure.
+ */
+static void xudc_ep0_out(struct xusb_udc *udc)
+{
+	struct xusb_ep *ep;
+	u8 count;
+	u8 *ep0rambase;
+	u16 index;
+
+	ep = &udc->ep[0];
+	switch (ch9_cmdbuf.setupseqrx) {
+	case STATUS_PHASE:
+		/*
+		 * This resets both state machines for the next
+		 * Setup packet.
+		 */
+		ch9_cmdbuf.setupseqrx = SETUP_PHASE;
+		ch9_cmdbuf.setupseqtx = SETUP_PHASE;
+		ep->data->usb_req.actual = ep->data->usb_req.length;
+		xudc_done(ep, ep->data, 0);
+		break;
+
+	case DATA_PHASE:
+		count = udc->read_fn(udc->base_address +
+				XUSB_EP_BUF0COUNT_OFFSET);
+		/* Copy the data to be received from the DPRAM. */
+		ep0rambase =
+			(u8 __force *) (udc->base_address +
+				(udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
+
+		for (index = 0; index < count; index++)
+			*ch9_cmdbuf.contreadptr++ = *ep0rambase++;
+
+		ch9_cmdbuf.contreadcount += count;
+		if (ch9_cmdbuf.setup.wLength == ch9_cmdbuf.contreadcount) {
+				xudc_wrstatus(udc);
+		} else {
+			/* Set the Tx packet size and the Tx enable bit.*/
+			udc->write_fn(0, udc->base_address +
+				XUSB_EP_BUF0COUNT_OFFSET);
+			udc->write_fn(1, udc->base_address +
+				XUSB_BUFFREADY_OFFSET);
+		}
+		break;
+
+	default:
+		break;
+	}
+}
+
+/**
+ * xudc_ep0_in - Processes the endpoint 0 IN token.
+ * @udc: pointer to the usb device controller structure.
+ */
+static void xudc_ep0_in(struct xusb_udc *udc)
+{
+	struct xusb_ep *ep;
+	u32 epcfgreg;
+	u16 count;
+	u16 length;
+	u8 *ep0rambase;
+
+	ep = &udc->ep[0];
+	switch (ch9_cmdbuf.setupseqtx) {
+	case STATUS_PHASE:
+		if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_ADDRESS) {
+			/* Set the address of the device.*/
+			udc->write_fn(ch9_cmdbuf.setup.wValue,
+					(udc->base_address +
+					XUSB_ADDRESS_OFFSET));
+			break;
+		} else {
+			if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_FEATURE) {
+				if (ch9_cmdbuf.setup.bRequestType ==
+				    STANDARD_OUT_DEVICE) {
+					if (ch9_cmdbuf.setup.wValue ==
+					    USB_DEVICE_TEST_MODE)
+						udc->write_fn(TEST_J,
+							udc->base_address +
+							XUSB_TESTMODE_OFFSET);
+				}
+			}
+		}
+		ep->data->usb_req.actual = ch9_cmdbuf.setup.wLength;
+		xudc_done(ep, ep->data, 0);
+		break;
+
+	case DATA_PHASE:
+		if (!ch9_cmdbuf.contwritecount) {
+			/*
+			 * We're done with data transfer, next
+			 * will be zero length OUT with data toggle of
+			 * 1. Setup data_toggle.
+			 */
+			epcfgreg = udc->read_fn(udc->base_address +
+				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
+			epcfgreg |= XUSB_EP_CFG_DATA_TOGGLE_MASK;
+			udc->write_fn(epcfgreg, udc->base_address +
+				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
+			count = 0;
+
+			ch9_cmdbuf.setupseqtx = STATUS_PHASE;
+
+		} else {
+			length = count = min_t(u32, ch9_cmdbuf.contwritecount,
+						EP0_MAX_PACKET);
+			/* Copy the data to be transmitted into the DPRAM. */
+			ep0rambase = (u8 __force *) (udc->base_address +
+				(udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
+			while (length--)
+				*ep0rambase++ = *ch9_cmdbuf.contwriteptr++;
+
+			ch9_cmdbuf.contwritecount -= count;
+		}
+		udc->write_fn(count, udc->base_address +
+				XUSB_EP_BUF0COUNT_OFFSET);
+		udc->write_fn(1, udc->base_address + XUSB_BUFFREADY_OFFSET);
+		break;
+
+	default:
+		break;
+	}
+}
+
+/**
+ * xudc_ctrl_ep_handler - Endpoint 0 interrupt handler.
+ * @callbackref: pointer to the call back reference passed by the
+ *			main interrupt handler.
+ * @intrstatus:	It's the mask value for the interrupt sources on endpoint 0.
+ *
+ * Processes the commands received during enumeration phase.
+ */
+static void xudc_ctrl_ep_handler(void *callbackref, u32 intrstatus)
+{
+	struct xusb_udc *udc;
+	struct usb_ctrlrequest ctrl;
+	int status;
+	int epnum;
+	u32 intrreg;
+
+	udc = (struct xusb_udc *) callbackref;
+	/* Process the end point zero buffer interrupt.*/
+	if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK) {
+		if (intrstatus & XUSB_STATUS_SETUP_PACKET_MASK) {
+			/*
+			 * Enable the Disconnect, suspend and reset
+			 * interrupts.
+			 */
+			intrreg = udc->read_fn(udc->base_address +
+					XUSB_IER_OFFSET);
+			intrreg |= XUSB_STATUS_DISCONNECT_MASK |
+					 XUSB_STATUS_SUSPEND_MASK |
+					 XUSB_STATUS_RESET_MASK;
+			udc->write_fn(intrreg,
+				udc->base_address + XUSB_IER_OFFSET);
+			status = xudc_handle_setup(udc, &ctrl);
+			if (status || ((ch9_cmdbuf.setup.bRequestType &
+					USB_TYPE_MASK) == USB_TYPE_CLASS)) {
+				/*
+				 * Request is to be handled by the gadget
+				 * driver.
+				 */
+				spin_unlock(&udc->lock);
+				udc->driver->setup(&udc->gadget, &ctrl);
+				spin_lock(&udc->lock);
+			} else {
+				if (ctrl.bRequest == USB_REQ_CLEAR_FEATURE) {
+					epnum = ctrl.wIndex & 0xf;
+					udc->ep[epnum].stopped = 0;
+				}
+				if (ctrl.bRequest == USB_REQ_SET_FEATURE) {
+					epnum = ctrl.wIndex & 0xf;
+					udc->ep[epnum].stopped = 1;
+				}
+			}
+		} else {
+			if (intrstatus & XUSB_STATUS_FIFO_BUFF_RDY_MASK)
+				xudc_ep0_out(udc);
+			else if (intrstatus &
+				XUSB_STATUS_FIFO_BUFF_FREE_MASK)
+				xudc_ep0_in(udc);
+		}
+	}
+}
+
+/**
+ * xudc_nonctrl_ep_handler - Non control endpoint interrupt handler.
+ * @callbackref: pointer to the call back reference passed by the
+ *			main interrupt handler.
+ * @epnum: End point number for which the interrupt is to be processed
+ * @intrstatus:	It's the mask value for the interrupt sources on endpoint 0.
+ */
+static void xudc_nonctrl_ep_handler(void *callbackref, u8 epnum,
+					u32 intrstatus)
+{
+
+	struct xusb_request *req;
+	struct xusb_udc *udc;
+	struct xusb_ep *ep;
+
+	udc = (struct xusb_udc *) callbackref;
+	ep = &udc->ep[epnum];
+	/* Process the End point interrupts.*/
+	if (intrstatus & (XUSB_STATUS_EP0_BUFF1_COMP_MASK << epnum))
+		ep->buffer0ready = 0;
+	if (intrstatus & (XUSB_STATUS_EP0_BUFF2_COMP_MASK << epnum))
+		ep->buffer1ready = 0;
+
+	if (list_empty(&ep->queue))
+		req = NULL;
+	else
+		req = list_entry(ep->queue.next, struct xusb_request, queue);
+	if (!req)
+		return;
+	if (ep->is_in)
+		xudc_write_fifo(ep, req);
+	else
+		xudc_read_fifo(ep, req);
+}
+
+/**
+ * xudc_irq - The main interrupt handler.
+ * @irq: The interrupt number.
+ * @_udc: pointer to the usb device controller structure.
+ *
+ * Return: IRQ_HANDLED after the interrupt is handled.
+ */
+static irqreturn_t xudc_irq(int irq, void *_udc)
+{
+	struct xusb_udc *udc = _udc;
+	u32 intrstatus;
+	u8 index;
+	u32 bufintr;
+
+	spin_lock(&(udc->lock));
+
+	/* Read the Interrupt Status Register.*/
+	intrstatus = udc->read_fn(udc->base_address + XUSB_STATUS_OFFSET);
+	/* Call the handler for the event interrupt.*/
+	if (intrstatus & XUSB_STATUS_INTR_EVENT_MASK) {
+		/*
+		 * Check if there is any action to be done for :
+		 * - USB Reset received {XUSB_STATUS_RESET_MASK}
+		 * - USB Suspend received {XUSB_STATUS_SUSPEND_MASK}
+		 * - USB Disconnect received {XUSB_STATUS_DISCONNECT_MASK}
+		 */
+		xudc_startup_handler(udc, intrstatus);
+	}
+
+	/* Check the buffer completion interrupts */
+	if (intrstatus & XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK) {
+		if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK)
+			xudc_ctrl_ep_handler(udc, intrstatus);
+
+		for (index = 1; index < 8; index++) {
+			bufintr = ((intrstatus &
+					(XUSB_STATUS_EP1_BUFF1_COMP_MASK <<
+							(index - 1))) ||
+				   (intrstatus &
+					(XUSB_STATUS_EP1_BUFF2_COMP_MASK <<
+							(index - 1))));
+
+			if (bufintr)
+				xudc_nonctrl_ep_handler(udc, index,
+						intrstatus);
+		}
+	}
+	spin_unlock(&(udc->lock));
+
+	return IRQ_HANDLED;
+}
+
+
+
+/**
+ * xudc_release - Releases device structure
+ * @dev: pointer to device structure
+ */
+static void xudc_release(struct device *dev)
+{
+}
+
+/**
+ * xudc_probe - The device probe function for driver initialization.
+ * @pdev: pointer to the platform device structure.
+ *
+ * Return: 0 for success and error value on failure
+ */
+static int xudc_probe(struct platform_device *pdev)
+{
+	struct device_node *np = pdev->dev.of_node;
+	struct resource *res;
+	struct xusb_udc *udc;
+	int irq;
+	int ret;
+
+	dev_dbg(&pdev->dev, "%s(%p)\n", __func__, pdev);
+
+	udc = devm_kzalloc(&pdev->dev, sizeof(*udc), GFP_KERNEL);
+	if (!udc)
+		return -ENOMEM;
+
+	/* Map the registers */
+	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
+						 resource_size(res));
+	if (!udc->base_address)
+		return -ENOMEM;
+
+	irq = platform_get_irq(pdev, 0);
+	if (irq < 0) {
+		dev_err(&pdev->dev, "unable to get irq\n");
+		return irq;
+	}
+	ret = request_irq(irq, xudc_irq, 0, dev_name(&pdev->dev), udc);
+	if (ret < 0) {
+		dev_dbg(&pdev->dev, "unable to request irq %d", irq);
+		goto fail0;
+	}
+
+	udc->dma_enabled = of_property_read_bool(np, "xlnx,include-dma");
+
+	/* Setup gadget structure */
+	udc->gadget.ops = &xusb_udc_ops;
+	udc->gadget.max_speed = USB_SPEED_HIGH;
+	udc->gadget.speed = USB_SPEED_HIGH;
+	udc->gadget.ep0 = &udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb;
+	udc->gadget.name = driver_name;
+
+	dev_set_name(&udc->gadget.dev, "xilinx_udc");
+	udc->gadget.dev.release = xudc_release;
+	udc->gadget.dev.parent = &pdev->dev;
+
+	spin_lock_init(&udc->lock);
+
+	/* Check for IP endianness */
+	udc->write_fn = xudc_write32_be;
+	udc->read_fn = xudc_read32_be;
+	udc->write_fn(TEST_J, udc->base_address + XUSB_TESTMODE_OFFSET);
+	if ((udc->read_fn(udc->base_address + XUSB_TESTMODE_OFFSET))
+			!= TEST_J) {
+		udc->write_fn = xudc_write32;
+		udc->read_fn = xudc_read32;
+	}
+	udc->write_fn(0, udc->base_address + XUSB_TESTMODE_OFFSET);
+
+	xudc_reinit(udc);
+
+	/* Set device address to 0.*/
+	udc->write_fn(0, udc->base_address + XUSB_ADDRESS_OFFSET);
+
+	ret = usb_add_gadget_udc(&pdev->dev, &udc->gadget);
+	if (ret)
+		goto fail1;
+
+	/* Enable the interrupts.*/
+	udc->write_fn(XUSB_STATUS_GLOBAL_INTR_MASK | XUSB_STATUS_RESET_MASK |
+		      XUSB_STATUS_DISCONNECT_MASK | XUSB_STATUS_SUSPEND_MASK |
+		      XUSB_STATUS_FIFO_BUFF_RDY_MASK |
+		      XUSB_STATUS_FIFO_BUFF_FREE_MASK |
+		      XUSB_STATUS_EP0_BUFF1_COMP_MASK,
+		      udc->base_address + XUSB_IER_OFFSET);
+
+	platform_set_drvdata(pdev, udc);
+
+	dev_info(&pdev->dev, "%s #%d at 0x%08X mapped to 0x%08X\n",
+		 driver_name, 0, (u32)res->start,
+		 (u32 __force)udc->base_address);
+
+	return 0;
+
+fail1:
+	free_irq(irq, udc);
+fail0:
+	dev_dbg(&pdev->dev, "probe failed, %d\n", ret);
+	return ret;
+}
+
+/**
+ * xudc_remove - Releases the resources allocated during the initialization.
+ * @pdev: pointer to the platform device structure.
+ *
+ * Return: 0 for success and error value on failure
+ */
+static int xudc_remove(struct platform_device *pdev)
+{
+	struct xusb_udc *udc = platform_get_drvdata(pdev);
+
+	dev_dbg(&pdev->dev, "remove\n");
+	usb_del_gadget_udc(&udc->gadget);
+	if (udc->driver)
+		return -EBUSY;
+
+	device_unregister(&udc->gadget.dev);
+
+	return 0;
+}
+
+/* Match table for of_platform binding */
+static const struct of_device_id usb_of_match[] = {
+	{ .compatible = "xlnx,xps-usb2-device-4.00.a", },
+	{ /* end of list */ },
+};
+MODULE_DEVICE_TABLE(of, usb_of_match);
+
+static struct platform_driver xudc_driver = {
+	.driver = {
+		.name = driver_name,
+		.owner = THIS_MODULE,
+		.of_match_table = usb_of_match,
+	},
+	.probe = xudc_probe,
+	.remove = xudc_remove,
+};
+
+module_platform_driver(xudc_driver);
+
+MODULE_DESCRIPTION("Xilinx udc driver");
+MODULE_AUTHOR("Xilinx, Inc");
+MODULE_LICENSE("GPL");
-- 
1.7.4



^ permalink raw reply related	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-20 18:23   ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-20 18:23 UTC (permalink / raw)
  To: Subbaraya Sundeep Bhatta
  Cc: Felipe Balbi, Greg Kroah-Hartman, linux-usb, linux-kernel,
	michals, Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 57487 bytes --]

Hi,

On Wed, Feb 19, 2014 at 03:10:45PM +0530, Subbaraya Sundeep Bhatta wrote:
> This patch adds xilinx axi usb2 device driver support
> 
> Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta@xilinx.com>
> ---
>  .../devicetree/bindings/usb/xilinx_usb.txt         |   21 +
>  drivers/usb/gadget/Kconfig                         |   14 +
>  drivers/usb/gadget/Makefile                        |    1 +
>  drivers/usb/gadget/xilinx_udc.c                    | 2045 ++++++++++++++++++++
>  4 files changed, 2081 insertions(+), 0 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/usb/xilinx_usb.txt
>  create mode 100644 drivers/usb/gadget/xilinx_udc.c
> 
> diff --git a/Documentation/devicetree/bindings/usb/xilinx_usb.txt b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> new file mode 100644
> index 0000000..acf03ab
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> @@ -0,0 +1,21 @@
> +Xilinx AXI USB2 device controller
> +
> +Required properties:
> +- compatible		: Should be "xlnx,axi-usb2-device-4.00.a"
> +- reg			: Physical base address and size of the Axi USB2
> +			  device registers map.
> +- interrupts		: Property with a value describing the interrupt
> +			  number.
> +- interrupt-parent	: Must be core interrupt controller
> +- xlnx,include-dma	: Must be 1 or 0 based on whether DMA is included
> +			  in IP or not.
> +
> +Example:
> + 		axi-usb2-device@42e00000 {
> +                        compatible = "xlnx,axi-usb2-device-4.00.a";
> +                        interrupt-parent = <0x1>;
> +                        interrupts = <0x0 0x39 0x1>;
> +                        reg = <0x42e00000 0x10000>;
> +                        xlnx,include-dma = <0x1>;
> +                };
> +

you need to Cc devicetree@vger.kernel.org for this.

> diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
> index 8154165..0b284bf 100644
> --- a/drivers/usb/gadget/Kconfig
> +++ b/drivers/usb/gadget/Kconfig
> @@ -466,6 +466,20 @@ config USB_EG20T
>  	  ML7213/ML7831 is companion chip for Intel Atom E6xx series.
>  	  ML7213/ML7831 is completely compatible for Intel EG20T PCH.
>  
> +config USB_GADGET_XILINX
> +	tristate "Xilinx USB Driver"
> +	depends on MICROBLAZE || ARCH_ZYNQ

This has the tendency to grow and I really don't like seeing a bunch of
arch-specific dependencies. At a minimum add COMPILE_TEST so I can build
test on my setup and make sure it builds fine on other architectures.

> +	help
> +	  USB peripheral controller driver for Xilinx AXI USB2 device.
> +	  Xilinx AXI USB2 device is a soft IP which supports both full
> +	  and high speed USB 2.0 data transfers. It has seven configurable
> +	  endpoints(bulk or interrupt or isochronous), as well as
> +	  endpoint zero(for control transfers).
> +
> +	  Say "y" to link the driver statically, or "m" to build a
> +	  dynamically linked module called "xilinx_udc" and force all
> +	  gadget drivers to also be dynamically linked.
> +
>  #
>  # LAST -- dummy/emulated controller
>  #
> diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile
> index 5f150bc..3a55564 100644
> --- a/drivers/usb/gadget/Makefile
> +++ b/drivers/usb/gadget/Makefile
> @@ -36,6 +36,7 @@ obj-$(CONFIG_USB_FUSB300)	+= fusb300_udc.o
>  obj-$(CONFIG_USB_FOTG210_UDC)	+= fotg210-udc.o
>  obj-$(CONFIG_USB_MV_U3D)	+= mv_u3d_core.o
>  obj-$(CONFIG_USB_GR_UDC)	+= gr_udc.o
> +obj-$(CONFIG_USB_GADGET_XILINX)	+= xilinx_udc.o

let's start normalizing the names here (I'll patch the others later) and
call this udc-xilinx.o

> diff --git a/drivers/usb/gadget/xilinx_udc.c b/drivers/usb/gadget/xilinx_udc.c
> new file mode 100644
> index 0000000..3ee8359
> --- /dev/null
> +++ b/drivers/usb/gadget/xilinx_udc.c
> @@ -0,0 +1,2045 @@
> +/*
> + * Xilinx USB peripheral controller driver
> + *
> + * Copyright (C) 2004 by Thomas Rathbone
> + * Copyright (C) 2005 by HP Labs
> + * Copyright (C) 2005 by David Brownell

heh! :-) Brownell was really everywhere, good to still see code from him
;-)

> + * Copyright (C) 2010 - 2014 Xilinx, Inc.
> + *
> + * Some parts of this driver code is based on the driver for at91-series
> + * USB peripheral controller (at91_udc.c).
> + *
> + * This program is free software; you can redistribute it
> + * and/or modify it under the terms of the GNU General Public
> + * License as published by the Free Software Foundation;
> + * either version 2 of the License, or (at your option) any
> + * later version.

are you sure you want to allow people ot use GPL v3 on this driver ?

> +#include <linux/interrupt.h>
> +#include <linux/device.h>
> +#include <linux/module.h>
> +#include <linux/prefetch.h>
> +#include <linux/usb/ch9.h>
> +#include <linux/usb/gadget.h>
> +#include <linux/io.h>
> +#include <linux/seq_file.h>
> +#include <linux/of_address.h>
> +#include <linux/of_device.h>
> +#include <linux/of_platform.h>
> +#include <linux/of_irq.h>
> +#include <linux/dma-mapping.h>
> +#include "gadget_chips.h"
> +
> +/* Register offsets for the USB device.*/
> +#define XUSB_EP0_CONFIG_OFFSET		0x0000  /* EP0 Config Reg Offset */
> +#define XUSB_SETUP_PKT_ADDR_OFFSET	0x0080  /* Setup Packet Address */
> +#define XUSB_ADDRESS_OFFSET		0x0100  /* Address Register */
> +#define XUSB_CONTROL_OFFSET		0x0104  /* Control Register */
> +#define XUSB_STATUS_OFFSET		0x0108  /* Status Register */
> +#define XUSB_FRAMENUM_OFFSET		0x010C	/* Frame Number Register */
> +#define XUSB_IER_OFFSET			0x0110	/* Interrupt Enable Register */
> +#define XUSB_BUFFREADY_OFFSET		0x0114	/* Buffer Ready Register */
> +#define XUSB_TESTMODE_OFFSET		0x0118	/* Test Mode Register */
> +#define XUSB_DMA_RESET_OFFSET		0x0200  /* DMA Soft Reset Register */
> +#define XUSB_DMA_CONTROL_OFFSET		0x0204	/* DMA Control Register */
> +#define XUSB_DMA_DSAR_ADDR_OFFSET	0x0208	/* DMA source Address Reg */
> +#define XUSB_DMA_DDAR_ADDR_OFFSET	0x020C	/* DMA destination Addr Reg */
> +#define XUSB_DMA_LENGTH_OFFSET		0x0210	/* DMA Length Register */
> +#define XUSB_DMA_STATUS_OFFSET		0x0214	/* DMA Status Register */
> +
> +/* Endpoint Configuration Space offsets */
> +#define XUSB_EP_CFGSTATUS_OFFSET	0x00	/* Endpoint Config Status  */
> +#define XUSB_EP_BUF0COUNT_OFFSET	0x08	/* Buffer 0 Count */
> +#define XUSB_EP_BUF1COUNT_OFFSET	0x0C	/* Buffer 1 Count */
> +
> +#define XUSB_CONTROL_USB_READY_MASK	0x80000000 /* USB ready Mask */
> +
> +/* Interrupt register related masks.*/
> +#define XUSB_STATUS_GLOBAL_INTR_MASK	0x80000000 /* Global Intr Enable */
> +#define XUSB_STATUS_RESET_MASK		0x00800000 /* USB Reset Mask */
> +#define XUSB_STATUS_SUSPEND_MASK	0x00400000 /* USB Suspend Mask */
> +#define XUSB_STATUS_DISCONNECT_MASK	0x00200000 /* USB Disconnect Mask */
> +#define XUSB_STATUS_FIFO_BUFF_RDY_MASK	0x00100000 /* FIFO Buff Ready Mask */
> +#define XUSB_STATUS_FIFO_BUFF_FREE_MASK	0x00080000 /* FIFO Buff Free Mask */
> +#define XUSB_STATUS_SETUP_PACKET_MASK	0x00040000 /* Setup packet received */
> +#define XUSB_STATUS_EP1_BUFF2_COMP_MASK	0x00000200 /* EP 1 Buff 2 Processed */
> +#define XUSB_STATUS_EP1_BUFF1_COMP_MASK	0x00000002 /* EP 1 Buff 1 Processed */
> +#define XUSB_STATUS_EP0_BUFF2_COMP_MASK	0x00000100 /* EP 0 Buff 2 Processed */
> +#define XUSB_STATUS_EP0_BUFF1_COMP_MASK	0x00000001 /* EP 0 Buff 1 Processed */
> +#define XUSB_STATUS_HIGH_SPEED_MASK	0x00010000 /* USB Speed Mask */
> +/* Suspend,Reset and Disconnect Mask */
> +#define XUSB_STATUS_INTR_EVENT_MASK	0x00E00000
> +/* Buffers  completion Mask */
> +#define XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK	0x0000FEFF
> +/* Mask for buffer 0 and buffer 1 completion for all Endpoints */
> +#define XUSB_STATUS_INTR_BUFF_COMP_SHIFT_MASK	0x00000101
> +#define XUSB_STATUS_EP_BUFF2_SHIFT	8	   /* EP buffer offset */
> +
> +/* Endpoint Configuration Status Register */
> +#define XUSB_EP_CFG_VALID_MASK		0x80000000 /* Endpoint Valid bit */
> +#define XUSB_EP_CFG_STALL_MASK		0x40000000 /* Endpoint Stall bit */
> +#define XUSB_EP_CFG_DATA_TOGGLE_MASK	0x08000000 /* Endpoint Data toggle */
> +
> +/* USB device specific global configuration constants.*/
> +#define XUSB_MAX_ENDPOINTS		8	/* Maximum End Points */
> +#define XUSB_EP_NUMBER_ZERO		0	/* End point Zero */
> +
> +/* Test Modes (Set Feature).*/
> +#define TEST_J				1	/* Chirp J Test */
> +#define TEST_K				2	/* Chirp K Test */
> +#define TEST_SE0_NAK			3	/* Chirp SE0 Test */
> +#define TEST_PKT			4	/* Packet Test */
> +
> +#define CONFIGURATION_ONE		0x01	/* USB device configuration*/
> +#define STANDARD_OUT_DEVICE		0x00	/* Out device */
> +#define STANDARD_OUT_ENDPOINT		0x02	/* Standard Out end point */

DO NOT REDEFINE THESE, use the ones from <linux/usb/ch9.h>

> +
> +#define XUSB_DMA_READ_FROM_DPRAM	0x80000000/**< DPRAM is the source
> +							address for DMA transfer
> +							*/
> +#define XUSB_DMA_DMASR_BUSY		0x80000000 /**< DMA busy*/
> +#define XUSB_DMA_DMASR_ERROR		0x40000000 /**< DMA Error */
> +
> +/*
> + * When this bit is set, the DMA buffer ready bit is set by hardware upon
> + * DMA transfer completion.
> + */
> +#define XUSB_DMA_BRR_CTRL		0x40000000 /**< DMA bufready ctrl bit */
> +
> +/* Phase States */
> +#define SETUP_PHASE			0x0000	/* Setup Phase */
> +#define DATA_PHASE			0x0001  /* Data Phase */
> +#define STATUS_PHASE			0x0002  /* Status Phase */
> +
> +#define EP_TRANSMIT		0	/* EP is IN endpoint */
> +#define EP0_MAX_PACKET		64 /* Endpoint 0 maximum packet length */
> +
> +/**
> + * struct xusb_request - Xilinx USB device request structure
> + * @usb_req: Linux usb request structure
> + * @queue: usb device request queue
> + */
> +struct xusb_request {
> +	struct usb_request usb_req;
> +	struct list_head queue;
> +};
> +
> +/**
> + * struct xusb_ep - USB end point structure.
> + * @ep_usb: usb endpoint instance
> + * @queue: endpoint message queue
> + * @udc: xilinx usb peripheral driver instance pointer
> + * @desc: pointer to the usb endpoint descriptor
> + * @data: pointer to the xusb_request structure
> + * @rambase: the endpoint buffer address
> + * @endpointoffset: the endpoint register offset value
> + * @epnumber: endpoint number
> + * @maxpacket: maximum packet size the endpoint can store
> + * @buffer0count: the size of the packet recieved in the first buffer
> + * @buffer0ready: the busy state of first buffer
> + * @buffer1count: the size of the packet received in the second buffer
> + * @buffer1ready: the busy state of second buffer
> + * @eptype: endpoint transfer type (BULK, INTERRUPT)
> + * @curbufnum: current buffer of endpoint that will be processed next
> + * @is_in: endpoint direction (IN or OUT)
> + * @stopped: endpoint active status
> + * @is_iso: endpoint type(isochronous or non isochronous)
> + * @name: name of the endpoint
> + */
> +struct xusb_ep {
> +	struct usb_ep ep_usb;
> +	struct list_head queue;
> +	struct xusb_udc *udc;
> +	const struct usb_endpoint_descriptor *desc;
> +	struct xusb_request *data;
> +	u32 rambase;
> +	u32 endpointoffset;
> +	u16 epnumber;
> +	u16 maxpacket;
> +	u16 buffer0count;
> +	u16 buffer1count;
> +	u8 buffer0ready;
> +	u8 buffer1ready;
> +	u8 eptype;
> +	u8 curbufnum;
> +	u8 is_in;
> +	u8 stopped;
> +	u8 is_iso;
> +	char name[4];
> +};
> +
> +/**
> + * struct xusb_udc -  USB peripheral driver structure
> + * @gadget: USB gadget driver instance
> + * @ep: an array of endpoint structures
> + * @driver: pointer to the usb gadget driver instance
> + * @read_fn: function pointer to read device registers
> + * @write_fn: function pointer to write to device registers
> + * @base_address: the usb device base address
> + * @lock: instance of spinlock
> + * @dma_enabled: flag indicating whether the dma is included in the system
> + * @status: status flag indicating the device cofiguration
> + */
> +struct xusb_udc {
> +	struct usb_gadget gadget;
> +	struct xusb_ep ep[8];
> +	struct usb_gadget_driver *driver;
> +	unsigned int (*read_fn)(void __iomem *);
> +	void (*write_fn)(u32, void __iomem *);
> +	void __iomem *base_address;
> +	spinlock_t lock;
> +	bool dma_enabled;
> +	u8 status;
> +};
> +
> +/**
> + * struct cmdbuf - Standard USB Command Buffer Structure defined
> + * @setup: usb_ctrlrequest structure for control requests
> + * @contreadcount: read data bytes count
> + * @contwritecount: write data bytes count
> + * @setupseqtx: tx status
> + * @setupseqrx: rx status
> + * @contreadptr: pointer to endpoint0 read data
> + * @contwriteptr: pointer to endpoint0 write data
> + * @contreaddatabuffer: read data buffer for endpoint0
> + */
> +struct cmdbuf {
> +	struct usb_ctrlrequest setup;
> +	u32 contreadcount;
> +	u32 contwritecount;
> +	u32 setupseqtx;
> +	u32 setupseqrx;
> +	u8 *contreadptr;
> +	u8 *contwriteptr;
> +	u8 contreaddatabuffer[64];
> +};
> +
> +static struct cmdbuf ch9_cmdbuf;

NAK, you should support multiple instances of this device in the same
SoC.

> +/*
> + * Endpoint buffer start addresses in the core
> + */

fits in one line.

> +static u32 rambase[8] = { 0x22, 0x1000, 0x1100, 0x1200, 0x1300, 0x1400, 0x1500,
> +			0x1600 };
> +
> +static const char driver_name[] = "xilinx-udc";
> +static const char ep0name[] = "ep0";
> +
> +/* Control endpoint configuration.*/
> +static struct usb_endpoint_descriptor config_bulk_out_desc = {
> +	.bLength = USB_DT_ENDPOINT_SIZE,
> +	.bDescriptorType = USB_DT_ENDPOINT,
> +	.bEndpointAddress = USB_DIR_OUT,
> +	.bmAttributes = USB_ENDPOINT_XFER_BULK,
> +	.wMaxPacketSize = __constant_cpu_to_le16(0x40),
> +};
> +
> +/**
> + * to_udc - Return the udc instance pointer
> + * @g: pointer to the usb gadget driver instance
> + *
> + * Return: xusb_udc pointer
> + */
> +static inline struct xusb_udc *to_udc(struct usb_gadget *g)
> +{
> +

remove this whiteline here. Also, this could very well be a macro
instead of a function. No strong feelings though.

> +	return container_of(g, struct xusb_udc, gadget);
> +}
> +
> +/**
> + * xudc_write32 - little endian write to device registers
> + * @val: data to be written
> + * @addr: addr of device register
> + */
> +static void xudc_write32(u32 val, void __iomem *addr)

usually, people tend to pass addr, offset and value. Then you do the
quick little math internally:

	iowrite32(val, addr + offset);

no strong feelings either.

> +static int xudc_eptxrx(struct xusb_ep *ep, u8 *bufferptr, u32 bufferlen,
> +			u8 direction)
> +{
> +	u32 *eprambase;
> +	u32 bytestosend;
> +	u8 *temprambase;
> +	unsigned long timeout;
> +	u32 srcaddr = 0;
> +	u32 dstaddr = 0;
> +	int rc = 0;
> +	struct xusb_udc *udc = ep->udc;
> +
> +	bytestosend = bufferlen;
> +
> +	/* Put the transmit buffer into the correct ping-pong buffer.*/
> +	if (!ep->curbufnum && !ep->buffer0ready) {
> +		/* Get the Buffer address and copy the transmit data.*/
> +		eprambase = (u32 __force *)(ep->udc->base_address +
> +				ep->rambase);
> +
> +		if (ep->udc->dma_enabled) {
> +			if (direction == EP_TRANSMIT) {
> +				srcaddr = dma_map_single(
> +					ep->udc->gadget.dev.parent,
> +					bufferptr, bufferlen, DMA_TO_DEVICE);
> +				dstaddr = virt_to_phys(eprambase);
> +				udc->write_fn(bufferlen,
> +						ep->udc->base_address +
> +						ep->endpointoffset +
> +						XUSB_EP_BUF0COUNT_OFFSET);
> +				udc->write_fn(XUSB_DMA_BRR_CTRL |
> +						(1 << ep->epnumber),
> +						ep->udc->base_address +
> +						XUSB_DMA_CONTROL_OFFSET);
> +			} else {
> +				srcaddr = virt_to_phys(eprambase);
> +				dstaddr = dma_map_single(
> +					ep->udc->gadget.dev.parent,
> +					bufferptr, bufferlen, DMA_FROM_DEVICE);
> +				udc->write_fn(XUSB_DMA_BRR_CTRL |
> +					XUSB_DMA_READ_FROM_DPRAM |
> +					(1 << ep->epnumber),
> +					ep->udc->base_address +
> +					XUSB_DMA_CONTROL_OFFSET);
> +			}
> +			/*
> +			 * Set the addresses in the DMA source and destination
> +			 * registers and then set the length into the DMA length
> +			 * register.
> +			 */
> +			udc->write_fn(srcaddr, ep->udc->base_address +
> +				XUSB_DMA_DSAR_ADDR_OFFSET);
> +			udc->write_fn(dstaddr, ep->udc->base_address +
> +				XUSB_DMA_DDAR_ADDR_OFFSET);
> +			udc->write_fn(bufferlen, ep->udc->base_address +
> +					XUSB_DMA_LENGTH_OFFSET);
> +		} else {
> +
> +			while (bytestosend > 3) {
> +				if (direction == EP_TRANSMIT)
> +					*eprambase++ = *(u32 *)bufferptr;
> +				else
> +					*(u32 *)bufferptr = *eprambase++;
> +				bufferptr += 4;
> +				bytestosend -= 4;
> +			}
> +			temprambase = (u8 *)eprambase;
> +			while (bytestosend--) {
> +				if (direction == EP_TRANSMIT)
> +					*temprambase++ = *bufferptr++;
> +				else
> +					*bufferptr++ = *temprambase++;
> +			}
> +			/*
> +			 * Set the Buffer count register with transmit length
> +			 * and enable the buffer for transmission.
> +			 */
> +			if (direction == EP_TRANSMIT)
> +				udc->write_fn(bufferlen,
> +					ep->udc->base_address +
> +					ep->endpointoffset +
> +					XUSB_EP_BUF0COUNT_OFFSET);
> +			udc->write_fn(1 << ep->epnumber,
> +					ep->udc->base_address +
> +					XUSB_BUFFREADY_OFFSET);
> +		}
> +		ep->buffer0ready = 1;
> +		ep->curbufnum = 1;
> +
> +	} else
> +		if ((ep->curbufnum == 1) && (!ep->buffer1ready)) {
> +
> +			/* Get the Buffer address and copy the transmit data.*/
> +			eprambase = (u32 __force *)(ep->udc->base_address +
> +					ep->rambase + ep->ep_usb.maxpacket);
> +			if (ep->udc->dma_enabled) {
> +				if (direction == EP_TRANSMIT) {
> +					srcaddr = dma_map_single(
> +						ep->udc->gadget.dev.parent,
> +						bufferptr, bufferlen,
> +						DMA_TO_DEVICE);
> +					dstaddr = virt_to_phys(eprambase);
> +					udc->write_fn(bufferlen,
> +						ep->udc->base_address +
> +						ep->endpointoffset +
> +						XUSB_EP_BUF1COUNT_OFFSET);
> +					udc->write_fn(XUSB_DMA_BRR_CTRL |
> +						(1 << (ep->epnumber +
> +						XUSB_STATUS_EP_BUFF2_SHIFT)),
> +						ep->udc->base_address +
> +						XUSB_DMA_CONTROL_OFFSET);
> +				} else {
> +					srcaddr = virt_to_phys(eprambase);
> +					dstaddr = dma_map_single(
> +						ep->udc->gadget.dev.parent,
> +						bufferptr, bufferlen,
> +						DMA_FROM_DEVICE);
> +					udc->write_fn(XUSB_DMA_BRR_CTRL |
> +						XUSB_DMA_READ_FROM_DPRAM |
> +						(1 << (ep->epnumber +
> +						XUSB_STATUS_EP_BUFF2_SHIFT)),
> +						ep->udc->base_address +
> +						XUSB_DMA_CONTROL_OFFSET);
> +				}
> +				/*
> +				 * Set the addresses in the DMA source and
> +				 * destination registers and then set the length
> +				 * into the DMA length register.
> +				 */
> +				udc->write_fn(srcaddr,
> +						ep->udc->base_address +
> +						XUSB_DMA_DSAR_ADDR_OFFSET);
> +				udc->write_fn(dstaddr,
> +						ep->udc->base_address +
> +						XUSB_DMA_DDAR_ADDR_OFFSET);
> +				udc->write_fn(bufferlen,
> +						ep->udc->base_address +
> +						XUSB_DMA_LENGTH_OFFSET);
> +			} else {
> +				while (bytestosend > 3) {
> +					if (direction == EP_TRANSMIT)
> +						*eprambase++ =
> +							*(u32 *)bufferptr;
> +					else
> +						*(u32 *)bufferptr =
> +							*eprambase++;
> +					bufferptr += 4;
> +					bytestosend -= 4;
> +				}
> +				temprambase = (u8 *)eprambase;
> +				while (bytestosend--) {
> +					if (direction == EP_TRANSMIT)
> +						*temprambase++ = *bufferptr++;
> +					else
> +						*bufferptr++ = *temprambase++;
> +				}
> +				/*
> +				 * Set the Buffer count register with transmit
> +				 * length and enable the buffer for
> +				 * transmission.
> +				 */
> +				if (direction == EP_TRANSMIT)
> +					udc->write_fn(bufferlen,
> +						ep->udc->base_address +
> +						ep->endpointoffset +
> +						XUSB_EP_BUF1COUNT_OFFSET);
> +				udc->write_fn(1 << (ep->epnumber +
> +						XUSB_STATUS_EP_BUFF2_SHIFT),
> +						ep->udc->base_address +
> +						XUSB_BUFFREADY_OFFSET);
> +			}
> +			ep->buffer1ready = 1;
> +			ep->curbufnum = 0;
> +		} else {
> +			/*
> +			 * None of the ping-pong buffer is free. Return a
> +			 * failure.
> +			 */
> +			return 1;
> +		}
> +
> +	if (ep->udc->dma_enabled) {
> +		/*
> +		 * Wait till DMA transaction is complete and
> +		 * check whether the DMA transaction was
> +		 * successful.
> +		 */
> +		while ((udc->read_fn(ep->udc->base_address +
> +				XUSB_DMA_STATUS_OFFSET) &
> +				XUSB_DMA_DMASR_BUSY) == XUSB_DMA_DMASR_BUSY) {
> +			timeout = jiffies + 10000;
> +
> +			if (time_after(jiffies, timeout)) {
> +				rc = -ETIMEDOUT;
> +				goto clean;
> +			}
> +
> +		}
> +		if ((udc->read_fn(ep->udc->base_address +
> +				XUSB_DMA_STATUS_OFFSET) &
> +				XUSB_DMA_DMASR_ERROR) == XUSB_DMA_DMASR_ERROR)
> +			dev_dbg(&ep->udc->gadget.dev, "DMA Error\n");
> +clean:
> +		if (direction == EP_TRANSMIT) {
> +			dma_unmap_single(ep->udc->gadget.dev.parent,
> +				srcaddr, bufferlen, DMA_TO_DEVICE);
> +		} else {
> +			dma_unmap_single(ep->udc->gadget.dev.parent,
> +				dstaddr, bufferlen, DMA_FROM_DEVICE);
> +		}
> +	}
> +	return rc;
> +}

what a big function. Looks like you could split it into smaller
functions to aid redability.

> +static int xudc_ep_enable(struct usb_ep *_ep,
> +			  const struct usb_endpoint_descriptor *desc)
> +{
> +	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
> +	struct xusb_udc *dev = ep->udc;
> +	u32 tmp;
> +	u8 eptype = 0;
> +	unsigned long flags;
> +	u32 epcfg;
> +	struct xusb_udc *udc = ep->udc;
> +
> +	/*
> +	 * The check for _ep->name == ep0name is not done as this enable i used
> +	 * for enabling ep0 also. In other gadget drivers, this ep name is not
> +	 * used.
> +	 */
> +	if (!_ep || !desc || ep->desc ||
> +	    desc->bDescriptorType != USB_DT_ENDPOINT) {
> +		dev_dbg(&ep->udc->gadget.dev, "first check fails\n");

you need a more descriptive message here.

> +		return -EINVAL;
> +	}
> +
> +	if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
> +		dev_dbg(&ep->udc->gadget.dev, "bogus device state\n");
> +		return -ESHUTDOWN;
> +	}
> +
> +
> +	ep->is_in = ((desc->bEndpointAddress & USB_DIR_IN) != 0);
> +	/*
> +	 * Bit 3...0: endpoint number
> +	 */

fits in one line, no need for multiline comment.

> +	ep->epnumber = (desc->bEndpointAddress & 0x0f);
> +	ep->stopped = 0;
> +	ep->desc = desc;
> +	ep->ep_usb.desc = desc;
> +	tmp = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
> +	spin_lock_irqsave(&ep->udc->lock, flags);
> +	ep->ep_usb.maxpacket = le16_to_cpu(desc->wMaxPacketSize);
> +
> +	switch (tmp) {
> +	case USB_ENDPOINT_XFER_CONTROL:
> +		dev_dbg(&ep->udc->gadget.dev, "only one control endpoint\n");
> +		/* NON- ISO */
> +		eptype = 0;
> +		spin_unlock_irqrestore(&ep->udc->lock, flags);
> +		return -EINVAL;
> +	case USB_ENDPOINT_XFER_INT:
> +		/* NON- ISO */
> +		eptype = 0;
> +		if (ep->ep_usb.maxpacket > 64)
> +			goto bogus_max;
> +		break;
> +	case USB_ENDPOINT_XFER_BULK:
> +		/* NON- ISO */
> +		eptype = 0;
> +		switch (ep->ep_usb.maxpacket) {
> +		case 8:
> +		case 16:
> +		case 32:
> +		case 64:
> +		case 512:
> +		goto ok;

bogus indentation.

> +		}
> +bogus_max:
> +		dev_dbg(&ep->udc->gadget.dev, "bogus maxpacket %d\n",
> +			ep->ep_usb.maxpacket);
> +		spin_unlock_irqrestore(&ep->udc->lock, flags);
> +		return -EINVAL;
> +	case USB_ENDPOINT_XFER_ISOC:
> +		/* ISO */
> +		eptype = 1;
> +		ep->is_iso = 1;
> +		break;
> +	}
> +
> +ok:	ep->eptype = eptype;

the label sits in a line by itself:

ok:
	ep->eptype = eptype;

	...

> +static int xudc_ep_disable(struct usb_ep *_ep)
> +{
> +	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
> +	unsigned long flags;
> +	u32 epcfg;
> +	struct xusb_udc *udc = ep->udc;
> +
> +	if (ep == &ep->udc->ep[XUSB_EP_NUMBER_ZERO]) {
> +		dev_dbg(&ep->udc->gadget.dev, "Ep0 disable called\n");
> +		return -EINVAL;
> +	}
> +	spin_lock_irqsave(&ep->udc->lock, flags);
> +
> +	xudc_nuke(ep, -ESHUTDOWN);
> +
> +	/* Restore the endpoint's pristine config */
> +	ep->desc = NULL;
> +	ep->ep_usb.desc = NULL;
> +
> +	ep->stopped = 1;
> +
> +	dev_dbg(&ep->udc->gadget.dev, "USB Ep %d disable\n ", ep->epnumber);
> +
> +	/* Disable the endpoint.*/
> +	epcfg = udc->read_fn(ep->udc->base_address + ep->endpointoffset);
> +	epcfg &= ~XUSB_EP_CFG_VALID_MASK;
> +	udc->write_fn(epcfg, ep->udc->base_address + ep->endpointoffset);
> +	spin_unlock_irqrestore(&ep->udc->lock, flags);
> +	return 0;
> +}
> +
> +/**
> + * xudc_ep_alloc_request - Initializes the request queue.
> + * @_ep: pointer to the usb device endpoint structure.
> + * @gfp_flags: Flags related to the request call.
> + *
> + * Return: pointer to request structure on success and a NULL on failure.
> + */
> +static struct usb_request *xudc_ep_alloc_request(struct usb_ep *_ep,
> +						 gfp_t gfp_flags)
> +{
> +	struct xusb_request *req;
> +
> +	req = kmalloc(sizeof(*req), gfp_flags);

use kzalloc...

> +	if (!req)
> +		return NULL;
> +
> +	memset(req, 0, sizeof(*req));

... and drop this list head.

> +	INIT_LIST_HEAD(&req->queue);

remove this INIT_LIST_HEAD();

also, before returning, I suppose you probably want to link the request
to the endpoint somehow. Usually people save the endpoint pointer inside
the private request structure (iow: req->ep = ep;)

> +	return &req->usb_req;
> +}
> +
> +/**
> + * xudc_free_request - Releases the request from queue.
> + * @_ep: pointer to the usb device endpoint structure.
> + * @_req: pointer to the usb request structure.
> + */
> +static void xudc_free_request(struct usb_ep *_ep, struct usb_request *_req)
> +{
> +	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
> +	struct xusb_request *req;
> +
> +	req = container_of(_req, struct xusb_request, usb_req);

define helper macros for these two container_of(). It helps with
readability.

> +	if (!list_empty(&req->queue))
> +		dev_warn(&ep->udc->gadget.dev, "Error: No memory to free");

what did you want to do here ? Perhaps:

	if (list_empty(&req->queue)) {
		dev_warn(&ep->udc->gadget.dev, "Error: no request to free");
		return;
	}

???

> +	kfree(req);
> +}
> +
> +/**
> + * xudc_ep_queue - Adds the request to the queue.
> + * @_ep: pointer to the usb device endpoint structure.
> + * @_req: pointer to the usb request structure.
> + * @gfp_flags: Flags related to the request call.
> + *
> + * Return: 0 for success and error value on failure
> + */
> +static int xudc_ep_queue(struct usb_ep *_ep, struct usb_request *_req,
> +			 gfp_t gfp_flags)
> +{
> +	struct xusb_request *req;
> +	struct xusb_ep *ep;
> +	struct xusb_udc *dev;
> +	unsigned long flags;
> +	u32 length, count;
> +	u8 *corebuf;
> +	struct xusb_udc *udc;
> +
> +	req = container_of(_req, struct xusb_request, usb_req);
> +	ep = container_of(_ep, struct xusb_ep, ep_usb);
> +	udc = ep->udc;
> +
> +	if (!_req || !_req->complete || !_req->buf ||
> +			!list_empty(&req->queue)) {
> +		dev_dbg(&ep->udc->gadget.dev, "invalid request\n");
> +		return -EINVAL;
> +	}
> +
> +	if (!_ep || (!ep->desc && ep->ep_usb.name != ep0name)) {
> +		dev_dbg(&ep->udc->gadget.dev, "invalid ep\n");
> +		return -EINVAL;
> +	}
> +
> +	dev = ep->udc;
> +	if (!dev || !dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
> +		dev_dbg(&ep->udc->gadget.dev, "%s, bogus device state %p\n",
> +			__func__, dev->driver);
> +		return -ESHUTDOWN;
> +	}
> +
> +	spin_lock_irqsave(&dev->lock, flags);
> +
> +	_req->status = -EINPROGRESS;
> +	_req->actual = 0;
> +
> +	/* Try to kickstart any empty and idle queue */
> +	if (list_empty(&ep->queue)) {
> +		if (!ep->epnumber) {
> +			ep->data = req;
> +			if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
> +				ch9_cmdbuf.contwriteptr = req->usb_req.buf +
> +							req->usb_req.actual;
> +				prefetch(ch9_cmdbuf.contwriteptr);
> +				length = req->usb_req.length -
> +					req->usb_req.actual;
> +				corebuf = (void __force *) ((ep->rambase << 2) +
> +					    ep->udc->base_address);
> +				ch9_cmdbuf.contwritecount = length;
> +				length = count = min_t(u32, length,
> +							EP0_MAX_PACKET);
> +				while (length--)
> +					*corebuf++ = *ch9_cmdbuf.contwriteptr++;
> +				udc->write_fn(count, ep->udc->base_address +
> +					   XUSB_EP_BUF0COUNT_OFFSET);
> +				udc->write_fn(1, ep->udc->base_address +
> +					   XUSB_BUFFREADY_OFFSET);
> +				ch9_cmdbuf.contwritecount -= count;
> +			} else {
> +				if (ch9_cmdbuf.setup.wLength) {
> +					ch9_cmdbuf.contreadptr =
> +						req->usb_req.buf +
> +							req->usb_req.actual;
> +					udc->write_fn(req->usb_req.length ,
> +						ep->udc->base_address +
> +						XUSB_EP_BUF0COUNT_OFFSET);
> +					udc->write_fn(1, ep->udc->base_address
> +						+ XUSB_BUFFREADY_OFFSET);
> +				} else {
> +					xudc_wrstatus(udc);
> +					req = NULL;
> +				}
> +			}
> +		} else {
> +
> +			if (ep->is_in) {
> +				dev_dbg(&ep->udc->gadget.dev,
> +					"xudc_write_fifo called from queue\n");
> +				if (xudc_write_fifo(ep, req) == 1)
> +					req = NULL;
> +			} else {
> +				dev_dbg(&ep->udc->gadget.dev,
> +					"xudc_read_fifo called from queue\n");
> +				if (xudc_read_fifo(ep, req) == 1)
> +					req = NULL;
> +			}
> +		}
> +	}
> +
> +	if (req != NULL)
> +		list_add_tail(&req->queue, &ep->queue);
> +	spin_unlock_irqrestore(&dev->lock, flags);
> +	return 0;
> +}
> +
> +/**
> + * xudc_ep_dequeue - Removes the request from the queue.
> + * @_ep: pointer to the usb device endpoint structure.
> + * @_req: pointer to the usb request structure.
> + *
> + * Return: 0 for success and error value on failure
> + */
> +static int xudc_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
> +{
> +	struct xusb_ep *ep;
> +	struct xusb_request *req;
> +	unsigned long flags;
> +
> +	ep = container_of(_ep, struct xusb_ep, ep_usb);
> +
> +	if (!_ep || ep->ep_usb.name == ep0name)
> +		return -EINVAL;
> +
> +	spin_lock_irqsave(&ep->udc->lock, flags);
> +	/* Make sure it's actually queued on this endpoint */
> +	list_for_each_entry(req, &ep->queue, queue) {
> +		if (&req->usb_req == _req)
> +			break;
> +	}
> +	if (&req->usb_req != _req) {
> +		spin_unlock_irqrestore(&ep->udc->lock, flags);
> +		return -EINVAL;
> +	}
> +
> +	xudc_done(ep, req, -ECONNRESET);
> +	spin_unlock_irqrestore(&ep->udc->lock, flags);
> +
> +	return 0;
> +}
> +
> +static struct usb_ep_ops xusb_ep_ops = {
> +	.enable = xudc_ep_enable,
> +	.disable = xudc_ep_disable,
> +
> +	.alloc_request = xudc_ep_alloc_request,
> +	.free_request = xudc_free_request,
> +
> +	.queue = xudc_ep_queue,
> +	.dequeue = xudc_ep_dequeue,
> +	.set_halt = xudc_ep_set_halt,
> +};
> +
> +/**
> + * xudc_get_frame - Reads the current usb frame number.
> + * @gadget: pointer to the usb gadget structure.
> + *
> + * Return: current frame number for success and error value on failure.
> + */
> +static int xudc_get_frame(struct usb_gadget *gadget)
> +{
> +
> +	struct xusb_udc *udc = to_udc(gadget);
> +	unsigned long flags;
> +	int retval;
> +
> +	if (!gadget)
> +		return -ENODEV;
> +
> +	local_irq_save(flags);
> +	retval = udc->read_fn(udc->base_address + XUSB_FRAMENUM_OFFSET);
> +	local_irq_restore(flags);
> +	return retval;
> +}
> +
> +/**
> + * xudc_reinit - Restores inital software state.
> + * @udc: pointer to the usb device controller structure.
> + */
> +static void xudc_reinit(struct xusb_udc *udc)
> +{
> +	u32 ep_number;
> +	char name[4];
> +
> +	INIT_LIST_HEAD(&udc->gadget.ep_list);
> +	INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
> +
> +	for (ep_number = 0; ep_number < XUSB_MAX_ENDPOINTS; ep_number++) {
> +		struct xusb_ep *ep = &udc->ep[ep_number];
> +
> +		if (ep_number) {
> +			list_add_tail(&ep->ep_usb.ep_list,
> +					&udc->gadget.ep_list);
> +			ep->ep_usb.maxpacket = (unsigned short)~0;
> +			sprintf(name, "ep%d", ep_number);
> +			strcpy(ep->name, name);
> +			ep->ep_usb.name = ep->name;
> +		} else {
> +			ep->ep_usb.name = ep0name;
> +			ep->ep_usb.maxpacket = 0x40;
> +		}
> +
> +		ep->ep_usb.ops = &xusb_ep_ops;
> +		ep->udc = udc;
> +		ep->epnumber = ep_number;
> +		ep->desc = NULL;
> +		ep->stopped = 0;
> +		/*
> +		 * The configuration register address offset between
> +		 * each endpoint is 0x10.
> +		 */
> +		ep->endpointoffset = XUSB_EP0_CONFIG_OFFSET +
> +					(ep_number * 0x10);
> +		ep->is_in = 0;
> +		ep->is_iso = 0;
> +		ep->maxpacket = 0;
> +		xudc_epconfig(ep, udc);
> +		udc->status = 0;
> +
> +		/* Initialize one queue per endpoint */
> +		INIT_LIST_HEAD(&ep->queue);
> +	}
> +}
> +
> +/**
> + * xudc_stop_activity - Stops any further activity on the device.
> + * @udc: pointer to the usb device controller structure.
> + */
> +static void xudc_stop_activity(struct xusb_udc *udc)
> +{
> +	struct usb_gadget_driver *driver = udc->driver;
> +	int i;
> +
> +	if (udc->gadget.speed == USB_SPEED_UNKNOWN)
> +		driver = NULL;
> +	udc->gadget.speed = USB_SPEED_HIGH;
> +
> +	for (i = 0; i < XUSB_MAX_ENDPOINTS; i++) {
> +		struct xusb_ep *ep = &udc->ep[i];
> +
> +		ep->stopped = 1;
> +		xudc_nuke(ep, -ESHUTDOWN);
> +	}
> +	if (driver) {
> +		spin_unlock(&udc->lock);
> +		driver->disconnect(&udc->gadget);
> +		spin_lock(&udc->lock);
> +	}

you shouldn't be calling disconnect here, udc-core is doing that for
you.

> +
> +	xudc_reinit(udc);
> +}
> +
> +/**
> + * xudc_start - Starts the device.
> + * @gadget: pointer to the usb gadget structure
> + * @driver: pointer to gadget driver structure
> + *
> + * Return: zero always
> + */
> +static int xudc_start(struct usb_gadget *gadget,
> +			struct usb_gadget_driver *driver)
> +{
> +	struct xusb_udc *udc = to_udc(gadget);
> +	const struct usb_endpoint_descriptor *d = &config_bulk_out_desc;
> +
> +	driver->driver.bus = NULL;
> +	/* hook up the driver */
> +	udc->driver = driver;
> +	udc->gadget.dev.driver = &driver->driver;
> +	udc->gadget.speed = driver->max_speed;
> +
> +	/* Enable the USB device.*/
> +	xudc_ep_enable(&udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb, d);
> +	udc->write_fn(0, (udc->base_address + XUSB_ADDRESS_OFFSET));
> +	udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
> +		udc->base_address + XUSB_CONTROL_OFFSET);
> +
> +	return 0;
> +}
> +
> +/**
> + * xudc_stop - stops the device.
> + * @gadget: pointer to the usb gadget structure
> + * @driver: pointer to usb gadget driver structure
> + *
> + * Return: zero always
> + */
> +static int xudc_stop(struct usb_gadget *gadget,
> +		struct usb_gadget_driver *driver)
> +{
> +	struct xusb_udc *udc = to_udc(gadget);
> +	unsigned long flags;
> +	u32 crtlreg;
> +
> +	/* Disable USB device.*/
> +	crtlreg = udc->read_fn(udc->base_address + XUSB_CONTROL_OFFSET);
> +	crtlreg &= ~XUSB_CONTROL_USB_READY_MASK;
> +	udc->write_fn(crtlreg, udc->base_address + XUSB_CONTROL_OFFSET);
> +	spin_lock_irqsave(&udc->lock, flags);
> +	udc->gadget.speed = USB_SPEED_UNKNOWN;
> +	xudc_stop_activity(udc);
> +	spin_unlock_irqrestore(&udc->lock, flags);
> +
> +	udc->gadget.dev.driver = NULL;
> +	udc->driver = NULL;
> +
> +	return 0;
> +}
> +
> +static const struct usb_gadget_ops xusb_udc_ops = {
> +	.get_frame = xudc_get_frame,
> +	.udc_start = xudc_start,
> +	.udc_stop  = xudc_stop,
> +};
> +
> +/**
> + * xudc_startup_handler - The usb device controller interrupt handler.
> + * @callbackref: pointer to the reference value being passed.
> + * @intrstatus: The mask value containing the interrupt sources.
> + *
> + * This handler handles the RESET, SUSPEND and DISCONNECT interrupts.
> + */
> +static void xudc_startup_handler(void *callbackref, u32 intrstatus)

why void ? why isn't this returning irqreturn_t ?

> +{
> +	struct xusb_udc *udc;
> +	u32 intrreg;
> +
> +	udc = (struct xusb_udc *) callbackref;

you don't need the cast here.

> +	if (intrstatus & XUSB_STATUS_RESET_MASK) {
> +		dev_dbg(&udc->gadget.dev, "Reset\n");
> +		if (intrstatus & XUSB_STATUS_HIGH_SPEED_MASK)
> +			udc->gadget.speed = USB_SPEED_HIGH;
> +		else
> +			udc->gadget.speed = USB_SPEED_FULL;
> +
> +		if (udc->status == 1) {
> +			udc->status = 0;
> +			/* Set device address to 0.*/
> +			udc->write_fn(0, udc->base_address +
> +						XUSB_ADDRESS_OFFSET);
> +		}
> +		/* Disable the Reset interrupt.*/
> +		intrreg = udc->read_fn(udc->base_address +
> +					XUSB_IER_OFFSET);
> +
> +		intrreg &= ~XUSB_STATUS_RESET_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +		/* Enable thesuspend and disconnect.*/
> +		intrreg =
> +			udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
> +		intrreg |=
> +			(XUSB_STATUS_SUSPEND_MASK |
> +			 XUSB_STATUS_DISCONNECT_MASK);
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +	}
> +
> +	if (intrstatus & XUSB_STATUS_DISCONNECT_MASK) {
> +
> +		/* Disable the Disconnect interrupt.*/
> +		intrreg =
> +			udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
> +		intrreg &= ~XUSB_STATUS_DISCONNECT_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +		dev_dbg(&udc->gadget.dev, "Disconnect\n");
> +		if (udc->status == 1) {
> +			udc->status = 0;
> +			/* Set device address to 0.*/
> +			udc->write_fn(0, udc->base_address +
> +					XUSB_ADDRESS_OFFSET);
> +			/* Enable the USB device.*/
> +			udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
> +				udc->base_address + XUSB_CONTROL_OFFSET);
> +		}
> +
> +		/* Enable the suspend and reset interrupts.*/
> +		intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
> +				XUSB_STATUS_SUSPEND_MASK |
> +				XUSB_STATUS_RESET_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +		xudc_stop_activity(udc);
> +	}
> +
> +	if (intrstatus & XUSB_STATUS_SUSPEND_MASK) {
> +		dev_dbg(&udc->gadget.dev, "Suspend\n");
> +		/* Disable the Suspend interrupt.*/
> +		intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) &
> +					~XUSB_STATUS_SUSPEND_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +		/* Enable the Disconnect and reset interrupts. */
> +		intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
> +				XUSB_STATUS_DISCONNECT_MASK |
> +				XUSB_STATUS_RESET_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +	}
> +}
> +
> +/**
> + * xudc_set_clear_feature - Executes the set feature and clear feature commands.
> + * @udc: pointer to the usb device controller structure.
> + * @flag: Value deciding the set or clear action.
> + *
> + * Processes the SET_FEATURE and CLEAR_FEATURE commands.
> + */
> +static void xudc_set_clear_feature(struct xusb_udc *udc, int flag)
> +{
> +	u8 endpoint;
> +	u8 outinbit;
> +	u32 epcfgreg;
> +
> +	switch (ch9_cmdbuf.setup.bRequestType) {
> +	case STANDARD_OUT_DEVICE:

use the macros from <linux/usb/ch9.h>

> +		switch (ch9_cmdbuf.setup.wValue) {
> +		case USB_DEVICE_TEST_MODE:
> +			/*
> +			 * The Test Mode will be executed
> +			 * after the status phase.
> +			 */
> +			break;
> +
> +		default:
> +			epcfgreg = udc->read_fn(udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +			epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> +			udc->write_fn(epcfgreg, udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +			break;
> +		}
> +		break;
> +
> +	case STANDARD_OUT_ENDPOINT:

use the macros from <linux/usb/ch9.h>

> +		if (!ch9_cmdbuf.setup.wValue) {
> +			endpoint = ch9_cmdbuf.setup.wIndex & 0xf;
> +			outinbit = ch9_cmdbuf.setup.wIndex & 0x80;
> +			outinbit = outinbit >> 7;
> +
> +			/* Make sure direction matches.*/
> +			if (outinbit != udc->ep[endpoint].is_in) {
> +				epcfgreg = udc->read_fn(udc->base_address +
> +						udc->ep[XUSB_EP_NUMBER_ZERO].
> +						endpointoffset);
> +				epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> +
> +				udc->write_fn(epcfgreg, udc->base_address +
> +					udc->ep[XUSB_EP_NUMBER_ZERO].
> +					endpointoffset);
> +				return;
> +			}
> +
> +			if (!endpoint) {
> +				/* Clear the stall.*/
> +				epcfgreg = udc->read_fn(udc->base_address +
> +						udc->ep[XUSB_EP_NUMBER_ZERO].
> +						endpointoffset);
> +
> +				epcfgreg &= ~XUSB_EP_CFG_STALL_MASK;
> +
> +				udc->write_fn(epcfgreg, udc->base_address +
> +					udc->ep[XUSB_EP_NUMBER_ZERO].
> +					endpointoffset);
> +				break;
> +			} else {
> +				if (flag == 1) {
> +					epcfgreg =
> +						udc->read_fn(udc->base_address +
> +						udc->ep[XUSB_EP_NUMBER_ZERO].
> +						endpointoffset);
> +					epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> +
> +					udc->write_fn(epcfgreg,
> +						udc->base_address +
> +						udc->ep[XUSB_EP_NUMBER_ZERO].
> +						endpointoffset);
> +				} else {
> +					/* Unstall the endpoint.*/
> +					epcfgreg =
> +						udc->read_fn(udc->base_address +
> +						udc->ep[endpoint].
> +						endpointoffset);
> +					epcfgreg &=
> +						~(XUSB_EP_CFG_STALL_MASK |
> +						  XUSB_EP_CFG_DATA_TOGGLE_MASK);
> +					udc->write_fn(epcfgreg,
> +						udc->base_address +
> +						udc->ep[endpoint].
> +						endpointoffset);
> +				}
> +			}
> +		}
> +		break;
> +
> +	default:
> +		epcfgreg = udc->read_fn(udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +		epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> +		udc->write_fn(epcfgreg, udc->base_address +
> +			udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +		return;
> +	}
> +
> +	/* Cause and valid status phase to be issued.*/
> +	xudc_wrstatus(udc);
> +
> +	return;
> +}
> +
> +/**
> + * xudc_execute_cmd - Processes the USB specification chapter 9 commands.
> + * @udc: pointer to the usb device controller structure.
> + *
> + * Return: 0 for success and the same reuqest command if it is not handled.
> + */
> +static int xudc_execute_cmd(struct xusb_udc *udc)
> +{
> +
> +	if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
> +			USB_TYPE_STANDARD) {
> +		/* Process the chapter 9 command.*/
> +		switch (ch9_cmdbuf.setup.bRequest) {
> +
> +		case USB_REQ_CLEAR_FEATURE:
> +			xudc_set_clear_feature(udc, 0);
> +			break;
> +
> +		case USB_REQ_SET_FEATURE:
> +			xudc_set_clear_feature(udc, 1);
> +			break;
> +
> +		case USB_REQ_SET_ADDRESS:
> +			xudc_wrstatus(udc);
> +			break;
> +
> +		case USB_REQ_SET_CONFIGURATION:
> +			udc->status = 1;
> +			return ch9_cmdbuf.setup.bRequest;
> +
> +		default:
> +			/*
> +			 * Return the same request to application for
> +			 * handling.
> +			 */
> +			return ch9_cmdbuf.setup.bRequest;
> +		}
> +
> +	} else {
> +		if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
> +		     USB_TYPE_CLASS)
> +			return ch9_cmdbuf.setup.bRequest;
> +	}
> +	return 0;
> +}
> +
> +/**
> + * xudc_handle_setup - Processes the setup packet.
> + * @udc: pointer to the usb device controller structure.
> + * @ctrl: pointer to the usb control endpoint structure.
> + *
> + * Return: 0 for success and request to be handled by application if
> + *		is not handled by the driver.
> + */
> +static int xudc_handle_setup(struct xusb_udc *udc, struct usb_ctrlrequest *ctrl)
> +{
> +	u32 *ep0rambase;
> +
> +	/* Load up the chapter 9 command buffer.*/
> +	ep0rambase = (u32 __force *) (udc->base_address +
> +				  XUSB_SETUP_PKT_ADDR_OFFSET);
> +	memcpy((void *)&ch9_cmdbuf.setup, (void *)ep0rambase, 8);
> +
> +	ctrl->bRequestType = ch9_cmdbuf.setup.bRequestType;
> +	ctrl->bRequest     = ch9_cmdbuf.setup.bRequest;
> +	ctrl->wValue       = ch9_cmdbuf.setup.wValue;
> +	ctrl->wIndex       = ch9_cmdbuf.setup.wIndex;
> +	ctrl->wLength      = ch9_cmdbuf.setup.wLength;
> +
> +	ch9_cmdbuf.setup.wValue = cpu_to_le16(ch9_cmdbuf.setup.wValue);
> +	ch9_cmdbuf.setup.wIndex = cpu_to_le16(ch9_cmdbuf.setup.wIndex);
> +	ch9_cmdbuf.setup.wLength = cpu_to_le16(ch9_cmdbuf.setup.wLength);
> +
> +	/* Restore ReadPtr to data buffer.*/
> +	ch9_cmdbuf.contreadptr = &ch9_cmdbuf.contreaddatabuffer[0];
> +	ch9_cmdbuf.contreadcount = 0;
> +
> +	if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
> +		/* Execute the get command.*/
> +		ch9_cmdbuf.setupseqrx = STATUS_PHASE;
> +		ch9_cmdbuf.setupseqtx = DATA_PHASE;
> +		return xudc_execute_cmd(udc);
> +	} else {
> +		/* Execute the put command.*/
> +		ch9_cmdbuf.setupseqrx = DATA_PHASE;
> +		ch9_cmdbuf.setupseqtx = STATUS_PHASE;
> +		return xudc_execute_cmd(udc);
> +	}
> +	/* Control should never come here.*/
> +	return 0;
> +}
> +
> +/**
> + * xudc_ep0_out - Processes the endpoint 0 OUT token.
> + * @udc: pointer to the usb device controller structure.
> + */
> +static void xudc_ep0_out(struct xusb_udc *udc)
> +{
> +	struct xusb_ep *ep;
> +	u8 count;
> +	u8 *ep0rambase;
> +	u16 index;
> +
> +	ep = &udc->ep[0];
> +	switch (ch9_cmdbuf.setupseqrx) {
> +	case STATUS_PHASE:

what about the setup phase ?

> +		/*
> +		 * This resets both state machines for the next
> +		 * Setup packet.
> +		 */
> +		ch9_cmdbuf.setupseqrx = SETUP_PHASE;
> +		ch9_cmdbuf.setupseqtx = SETUP_PHASE;
> +		ep->data->usb_req.actual = ep->data->usb_req.length;
> +		xudc_done(ep, ep->data, 0);
> +		break;
> +
> +	case DATA_PHASE:
> +		count = udc->read_fn(udc->base_address +
> +				XUSB_EP_BUF0COUNT_OFFSET);
> +		/* Copy the data to be received from the DPRAM. */
> +		ep0rambase =
> +			(u8 __force *) (udc->base_address +
> +				(udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
> +
> +		for (index = 0; index < count; index++)
> +			*ch9_cmdbuf.contreadptr++ = *ep0rambase++;
> +
> +		ch9_cmdbuf.contreadcount += count;
> +		if (ch9_cmdbuf.setup.wLength == ch9_cmdbuf.contreadcount) {
> +				xudc_wrstatus(udc);
> +		} else {
> +			/* Set the Tx packet size and the Tx enable bit.*/
> +			udc->write_fn(0, udc->base_address +
> +				XUSB_EP_BUF0COUNT_OFFSET);
> +			udc->write_fn(1, udc->base_address +
> +				XUSB_BUFFREADY_OFFSET);
> +		}
> +		break;
> +
> +	default:
> +		break;
> +	}
> +}
> +
> +/**
> + * xudc_ep0_in - Processes the endpoint 0 IN token.
> + * @udc: pointer to the usb device controller structure.
> + */
> +static void xudc_ep0_in(struct xusb_udc *udc)
> +{
> +	struct xusb_ep *ep;
> +	u32 epcfgreg;
> +	u16 count;
> +	u16 length;
> +	u8 *ep0rambase;
> +
> +	ep = &udc->ep[0];
> +	switch (ch9_cmdbuf.setupseqtx) {
> +	case STATUS_PHASE:
> +		if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_ADDRESS) {
> +			/* Set the address of the device.*/
> +			udc->write_fn(ch9_cmdbuf.setup.wValue,
> +					(udc->base_address +
> +					XUSB_ADDRESS_OFFSET));
> +			break;
> +		} else {
> +			if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_FEATURE) {
> +				if (ch9_cmdbuf.setup.bRequestType ==
> +				    STANDARD_OUT_DEVICE) {
> +					if (ch9_cmdbuf.setup.wValue ==
> +					    USB_DEVICE_TEST_MODE)
> +						udc->write_fn(TEST_J,
> +							udc->base_address +
> +							XUSB_TESTMODE_OFFSET);

use a switch.

> +				}
> +			}
> +		}
> +		ep->data->usb_req.actual = ch9_cmdbuf.setup.wLength;
> +		xudc_done(ep, ep->data, 0);
> +		break;
> +
> +	case DATA_PHASE:
> +		if (!ch9_cmdbuf.contwritecount) {
> +			/*
> +			 * We're done with data transfer, next
> +			 * will be zero length OUT with data toggle of
> +			 * 1. Setup data_toggle.
> +			 */
> +			epcfgreg = udc->read_fn(udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +			epcfgreg |= XUSB_EP_CFG_DATA_TOGGLE_MASK;
> +			udc->write_fn(epcfgreg, udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +			count = 0;
> +
> +			ch9_cmdbuf.setupseqtx = STATUS_PHASE;
> +
> +		} else {
> +			length = count = min_t(u32, ch9_cmdbuf.contwritecount,
> +						EP0_MAX_PACKET);
> +			/* Copy the data to be transmitted into the DPRAM. */
> +			ep0rambase = (u8 __force *) (udc->base_address +
> +				(udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
> +			while (length--)
> +				*ep0rambase++ = *ch9_cmdbuf.contwriteptr++;
> +
> +			ch9_cmdbuf.contwritecount -= count;
> +		}
> +		udc->write_fn(count, udc->base_address +
> +				XUSB_EP_BUF0COUNT_OFFSET);
> +		udc->write_fn(1, udc->base_address + XUSB_BUFFREADY_OFFSET);
> +		break;
> +
> +	default:
> +		break;
> +	}
> +}
> +
> +/**
> + * xudc_ctrl_ep_handler - Endpoint 0 interrupt handler.
> + * @callbackref: pointer to the call back reference passed by the
> + *			main interrupt handler.
> + * @intrstatus:	It's the mask value for the interrupt sources on endpoint 0.
> + *
> + * Processes the commands received during enumeration phase.
> + */
> +static void xudc_ctrl_ep_handler(void *callbackref, u32 intrstatus)
> +{
> +	struct xusb_udc *udc;
> +	struct usb_ctrlrequest ctrl;
> +	int status;
> +	int epnum;
> +	u32 intrreg;
> +
> +	udc = (struct xusb_udc *) callbackref;
> +	/* Process the end point zero buffer interrupt.*/
> +	if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK) {
> +		if (intrstatus & XUSB_STATUS_SETUP_PACKET_MASK) {
> +			/*
> +			 * Enable the Disconnect, suspend and reset
> +			 * interrupts.
> +			 */
> +			intrreg = udc->read_fn(udc->base_address +
> +					XUSB_IER_OFFSET);
> +			intrreg |= XUSB_STATUS_DISCONNECT_MASK |
> +					 XUSB_STATUS_SUSPEND_MASK |
> +					 XUSB_STATUS_RESET_MASK;
> +			udc->write_fn(intrreg,
> +				udc->base_address + XUSB_IER_OFFSET);
> +			status = xudc_handle_setup(udc, &ctrl);
> +			if (status || ((ch9_cmdbuf.setup.bRequestType &
> +					USB_TYPE_MASK) == USB_TYPE_CLASS)) {
> +				/*
> +				 * Request is to be handled by the gadget
> +				 * driver.
> +				 */
> +				spin_unlock(&udc->lock);
> +				udc->driver->setup(&udc->gadget, &ctrl);
> +				spin_lock(&udc->lock);
> +			} else {
> +				if (ctrl.bRequest == USB_REQ_CLEAR_FEATURE) {
> +					epnum = ctrl.wIndex & 0xf;
> +					udc->ep[epnum].stopped = 0;
> +				}
> +				if (ctrl.bRequest == USB_REQ_SET_FEATURE) {
> +					epnum = ctrl.wIndex & 0xf;
> +					udc->ep[epnum].stopped = 1;
> +				}
> +			}
> +		} else {
> +			if (intrstatus & XUSB_STATUS_FIFO_BUFF_RDY_MASK)
> +				xudc_ep0_out(udc);
> +			else if (intrstatus &
> +				XUSB_STATUS_FIFO_BUFF_FREE_MASK)
> +				xudc_ep0_in(udc);
> +		}
> +	}
> +}
> +
> +/**
> + * xudc_nonctrl_ep_handler - Non control endpoint interrupt handler.
> + * @callbackref: pointer to the call back reference passed by the
> + *			main interrupt handler.
> + * @epnum: End point number for which the interrupt is to be processed
> + * @intrstatus:	It's the mask value for the interrupt sources on endpoint 0.
> + */
> +static void xudc_nonctrl_ep_handler(void *callbackref, u8 epnum,
> +					u32 intrstatus)
> +{
> +
> +	struct xusb_request *req;
> +	struct xusb_udc *udc;
> +	struct xusb_ep *ep;
> +
> +	udc = (struct xusb_udc *) callbackref;
> +	ep = &udc->ep[epnum];
> +	/* Process the End point interrupts.*/
> +	if (intrstatus & (XUSB_STATUS_EP0_BUFF1_COMP_MASK << epnum))
> +		ep->buffer0ready = 0;
> +	if (intrstatus & (XUSB_STATUS_EP0_BUFF2_COMP_MASK << epnum))
> +		ep->buffer1ready = 0;
> +
> +	if (list_empty(&ep->queue))
> +		req = NULL;
> +	else
> +		req = list_entry(ep->queue.next, struct xusb_request, queue);
> +	if (!req)
> +		return;
> +	if (ep->is_in)
> +		xudc_write_fifo(ep, req);
> +	else
> +		xudc_read_fifo(ep, req);
> +}
> +
> +/**
> + * xudc_irq - The main interrupt handler.
> + * @irq: The interrupt number.
> + * @_udc: pointer to the usb device controller structure.
> + *
> + * Return: IRQ_HANDLED after the interrupt is handled.
> + */
> +static irqreturn_t xudc_irq(int irq, void *_udc)
> +{
> +	struct xusb_udc *udc = _udc;
> +	u32 intrstatus;
> +	u8 index;
> +	u32 bufintr;
> +
> +	spin_lock(&(udc->lock));
> +
> +	/* Read the Interrupt Status Register.*/
> +	intrstatus = udc->read_fn(udc->base_address + XUSB_STATUS_OFFSET);
> +	/* Call the handler for the event interrupt.*/
> +	if (intrstatus & XUSB_STATUS_INTR_EVENT_MASK) {
> +		/*
> +		 * Check if there is any action to be done for :
> +		 * - USB Reset received {XUSB_STATUS_RESET_MASK}
> +		 * - USB Suspend received {XUSB_STATUS_SUSPEND_MASK}

what about resume ? No resume ?

> +		 * - USB Disconnect received {XUSB_STATUS_DISCONNECT_MASK}
> +		 */
> +		xudc_startup_handler(udc, intrstatus);
> +	}
> +
> +	/* Check the buffer completion interrupts */
> +	if (intrstatus & XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK) {
> +		if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK)
> +			xudc_ctrl_ep_handler(udc, intrstatus);
> +
> +		for (index = 1; index < 8; index++) {
> +			bufintr = ((intrstatus &
> +					(XUSB_STATUS_EP1_BUFF1_COMP_MASK <<
> +							(index - 1))) ||
> +				   (intrstatus &
> +					(XUSB_STATUS_EP1_BUFF2_COMP_MASK <<
> +							(index - 1))));
> +
> +			if (bufintr)
> +				xudc_nonctrl_ep_handler(udc, index,
> +						intrstatus);
> +		}
> +	}
> +	spin_unlock(&(udc->lock));
> +
> +	return IRQ_HANDLED;
> +}
> +
> +
> +
> +/**
> + * xudc_release - Releases device structure
> + * @dev: pointer to device structure
> + */
> +static void xudc_release(struct device *dev)
> +{
> +}

you don't need to define this, udc-core will give you a release method.

> +/**
> + * xudc_probe - The device probe function for driver initialization.
> + * @pdev: pointer to the platform device structure.
> + *
> + * Return: 0 for success and error value on failure
> + */
> +static int xudc_probe(struct platform_device *pdev)
> +{
> +	struct device_node *np = pdev->dev.of_node;
> +	struct resource *res;
> +	struct xusb_udc *udc;
> +	int irq;
> +	int ret;
> +
> +	dev_dbg(&pdev->dev, "%s(%p)\n", __func__, pdev);
> +
> +	udc = devm_kzalloc(&pdev->dev, sizeof(*udc), GFP_KERNEL);
> +	if (!udc)
> +		return -ENOMEM;
> +
> +	/* Map the registers */
> +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> +						 resource_size(res));

use devm_ioremap_resource() instead.

> +	if (!udc->base_address)
> +		return -ENOMEM;
> +
> +	irq = platform_get_irq(pdev, 0);
> +	if (irq < 0) {
> +		dev_err(&pdev->dev, "unable to get irq\n");
> +		return irq;
> +	}
> +	ret = request_irq(irq, xudc_irq, 0, dev_name(&pdev->dev), udc);

devm_request_irq()

> +	if (ret < 0) {
> +		dev_dbg(&pdev->dev, "unable to request irq %d", irq);
> +		goto fail0;
> +	}
> +
> +	udc->dma_enabled = of_property_read_bool(np, "xlnx,include-dma");
> +
> +	/* Setup gadget structure */
> +	udc->gadget.ops = &xusb_udc_ops;
> +	udc->gadget.max_speed = USB_SPEED_HIGH;
> +	udc->gadget.speed = USB_SPEED_HIGH;
> +	udc->gadget.ep0 = &udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb;
> +	udc->gadget.name = driver_name;
> +
> +	dev_set_name(&udc->gadget.dev, "xilinx_udc");
> +	udc->gadget.dev.release = xudc_release;
> +	udc->gadget.dev.parent = &pdev->dev;

don't touch the gadget device directly, udc-core handles all of that for
you.

> +
> +	spin_lock_init(&udc->lock);
> +
> +	/* Check for IP endianness */
> +	udc->write_fn = xudc_write32_be;
> +	udc->read_fn = xudc_read32_be;
> +	udc->write_fn(TEST_J, udc->base_address + XUSB_TESTMODE_OFFSET);
> +	if ((udc->read_fn(udc->base_address + XUSB_TESTMODE_OFFSET))
> +			!= TEST_J) {
> +		udc->write_fn = xudc_write32;
> +		udc->read_fn = xudc_read32;
> +	}
> +	udc->write_fn(0, udc->base_address + XUSB_TESTMODE_OFFSET);
> +
> +	xudc_reinit(udc);
> +
> +	/* Set device address to 0.*/
> +	udc->write_fn(0, udc->base_address + XUSB_ADDRESS_OFFSET);
> +
> +	ret = usb_add_gadget_udc(&pdev->dev, &udc->gadget);
> +	if (ret)
> +		goto fail1;
> +
> +	/* Enable the interrupts.*/
> +	udc->write_fn(XUSB_STATUS_GLOBAL_INTR_MASK | XUSB_STATUS_RESET_MASK |
> +		      XUSB_STATUS_DISCONNECT_MASK | XUSB_STATUS_SUSPEND_MASK |
> +		      XUSB_STATUS_FIFO_BUFF_RDY_MASK |
> +		      XUSB_STATUS_FIFO_BUFF_FREE_MASK |
> +		      XUSB_STATUS_EP0_BUFF1_COMP_MASK,
> +		      udc->base_address + XUSB_IER_OFFSET);
> +
> +	platform_set_drvdata(pdev, udc);
> +
> +	dev_info(&pdev->dev, "%s #%d at 0x%08X mapped to 0x%08X\n",
> +		 driver_name, 0, (u32)res->start,
> +		 (u32 __force)udc->base_address);

make this a dev_vdbg().

> +
> +	return 0;
> +
> +fail1:
> +	free_irq(irq, udc);
> +fail0:
> +	dev_dbg(&pdev->dev, "probe failed, %d\n", ret);

this should be dev_err().

> +	return ret;
> +}
> +
> +/**
> + * xudc_remove - Releases the resources allocated during the initialization.
> + * @pdev: pointer to the platform device structure.
> + *
> + * Return: 0 for success and error value on failure
> + */
> +static int xudc_remove(struct platform_device *pdev)
> +{
> +	struct xusb_udc *udc = platform_get_drvdata(pdev);
> +
> +	dev_dbg(&pdev->dev, "remove\n");
> +	usb_del_gadget_udc(&udc->gadget);
> +	if (udc->driver)
> +		return -EBUSY;
> +
> +	device_unregister(&udc->gadget.dev);

remove this line.

Also, you're leaking your IRQ handler, if you switch to
devm_request_irq() then you don't need to free it, though.

From the looks of it, I doubt this was actually tested, you need a lot
of work on this driver.

cheers

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-20 18:23   ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-20 18:23 UTC (permalink / raw)
  To: Subbaraya Sundeep Bhatta
  Cc: Felipe Balbi, Greg Kroah-Hartman,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	michals-gjFFaj9aHVfQT0dZR+AlfA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 57540 bytes --]

Hi,

On Wed, Feb 19, 2014 at 03:10:45PM +0530, Subbaraya Sundeep Bhatta wrote:
> This patch adds xilinx axi usb2 device driver support
> 
> Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
> ---
>  .../devicetree/bindings/usb/xilinx_usb.txt         |   21 +
>  drivers/usb/gadget/Kconfig                         |   14 +
>  drivers/usb/gadget/Makefile                        |    1 +
>  drivers/usb/gadget/xilinx_udc.c                    | 2045 ++++++++++++++++++++
>  4 files changed, 2081 insertions(+), 0 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/usb/xilinx_usb.txt
>  create mode 100644 drivers/usb/gadget/xilinx_udc.c
> 
> diff --git a/Documentation/devicetree/bindings/usb/xilinx_usb.txt b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> new file mode 100644
> index 0000000..acf03ab
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> @@ -0,0 +1,21 @@
> +Xilinx AXI USB2 device controller
> +
> +Required properties:
> +- compatible		: Should be "xlnx,axi-usb2-device-4.00.a"
> +- reg			: Physical base address and size of the Axi USB2
> +			  device registers map.
> +- interrupts		: Property with a value describing the interrupt
> +			  number.
> +- interrupt-parent	: Must be core interrupt controller
> +- xlnx,include-dma	: Must be 1 or 0 based on whether DMA is included
> +			  in IP or not.
> +
> +Example:
> + 		axi-usb2-device@42e00000 {
> +                        compatible = "xlnx,axi-usb2-device-4.00.a";
> +                        interrupt-parent = <0x1>;
> +                        interrupts = <0x0 0x39 0x1>;
> +                        reg = <0x42e00000 0x10000>;
> +                        xlnx,include-dma = <0x1>;
> +                };
> +

you need to Cc devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org for this.

> diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
> index 8154165..0b284bf 100644
> --- a/drivers/usb/gadget/Kconfig
> +++ b/drivers/usb/gadget/Kconfig
> @@ -466,6 +466,20 @@ config USB_EG20T
>  	  ML7213/ML7831 is companion chip for Intel Atom E6xx series.
>  	  ML7213/ML7831 is completely compatible for Intel EG20T PCH.
>  
> +config USB_GADGET_XILINX
> +	tristate "Xilinx USB Driver"
> +	depends on MICROBLAZE || ARCH_ZYNQ

This has the tendency to grow and I really don't like seeing a bunch of
arch-specific dependencies. At a minimum add COMPILE_TEST so I can build
test on my setup and make sure it builds fine on other architectures.

> +	help
> +	  USB peripheral controller driver for Xilinx AXI USB2 device.
> +	  Xilinx AXI USB2 device is a soft IP which supports both full
> +	  and high speed USB 2.0 data transfers. It has seven configurable
> +	  endpoints(bulk or interrupt or isochronous), as well as
> +	  endpoint zero(for control transfers).
> +
> +	  Say "y" to link the driver statically, or "m" to build a
> +	  dynamically linked module called "xilinx_udc" and force all
> +	  gadget drivers to also be dynamically linked.
> +
>  #
>  # LAST -- dummy/emulated controller
>  #
> diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile
> index 5f150bc..3a55564 100644
> --- a/drivers/usb/gadget/Makefile
> +++ b/drivers/usb/gadget/Makefile
> @@ -36,6 +36,7 @@ obj-$(CONFIG_USB_FUSB300)	+= fusb300_udc.o
>  obj-$(CONFIG_USB_FOTG210_UDC)	+= fotg210-udc.o
>  obj-$(CONFIG_USB_MV_U3D)	+= mv_u3d_core.o
>  obj-$(CONFIG_USB_GR_UDC)	+= gr_udc.o
> +obj-$(CONFIG_USB_GADGET_XILINX)	+= xilinx_udc.o

let's start normalizing the names here (I'll patch the others later) and
call this udc-xilinx.o

> diff --git a/drivers/usb/gadget/xilinx_udc.c b/drivers/usb/gadget/xilinx_udc.c
> new file mode 100644
> index 0000000..3ee8359
> --- /dev/null
> +++ b/drivers/usb/gadget/xilinx_udc.c
> @@ -0,0 +1,2045 @@
> +/*
> + * Xilinx USB peripheral controller driver
> + *
> + * Copyright (C) 2004 by Thomas Rathbone
> + * Copyright (C) 2005 by HP Labs
> + * Copyright (C) 2005 by David Brownell

heh! :-) Brownell was really everywhere, good to still see code from him
;-)

> + * Copyright (C) 2010 - 2014 Xilinx, Inc.
> + *
> + * Some parts of this driver code is based on the driver for at91-series
> + * USB peripheral controller (at91_udc.c).
> + *
> + * This program is free software; you can redistribute it
> + * and/or modify it under the terms of the GNU General Public
> + * License as published by the Free Software Foundation;
> + * either version 2 of the License, or (at your option) any
> + * later version.

are you sure you want to allow people ot use GPL v3 on this driver ?

> +#include <linux/interrupt.h>
> +#include <linux/device.h>
> +#include <linux/module.h>
> +#include <linux/prefetch.h>
> +#include <linux/usb/ch9.h>
> +#include <linux/usb/gadget.h>
> +#include <linux/io.h>
> +#include <linux/seq_file.h>
> +#include <linux/of_address.h>
> +#include <linux/of_device.h>
> +#include <linux/of_platform.h>
> +#include <linux/of_irq.h>
> +#include <linux/dma-mapping.h>
> +#include "gadget_chips.h"
> +
> +/* Register offsets for the USB device.*/
> +#define XUSB_EP0_CONFIG_OFFSET		0x0000  /* EP0 Config Reg Offset */
> +#define XUSB_SETUP_PKT_ADDR_OFFSET	0x0080  /* Setup Packet Address */
> +#define XUSB_ADDRESS_OFFSET		0x0100  /* Address Register */
> +#define XUSB_CONTROL_OFFSET		0x0104  /* Control Register */
> +#define XUSB_STATUS_OFFSET		0x0108  /* Status Register */
> +#define XUSB_FRAMENUM_OFFSET		0x010C	/* Frame Number Register */
> +#define XUSB_IER_OFFSET			0x0110	/* Interrupt Enable Register */
> +#define XUSB_BUFFREADY_OFFSET		0x0114	/* Buffer Ready Register */
> +#define XUSB_TESTMODE_OFFSET		0x0118	/* Test Mode Register */
> +#define XUSB_DMA_RESET_OFFSET		0x0200  /* DMA Soft Reset Register */
> +#define XUSB_DMA_CONTROL_OFFSET		0x0204	/* DMA Control Register */
> +#define XUSB_DMA_DSAR_ADDR_OFFSET	0x0208	/* DMA source Address Reg */
> +#define XUSB_DMA_DDAR_ADDR_OFFSET	0x020C	/* DMA destination Addr Reg */
> +#define XUSB_DMA_LENGTH_OFFSET		0x0210	/* DMA Length Register */
> +#define XUSB_DMA_STATUS_OFFSET		0x0214	/* DMA Status Register */
> +
> +/* Endpoint Configuration Space offsets */
> +#define XUSB_EP_CFGSTATUS_OFFSET	0x00	/* Endpoint Config Status  */
> +#define XUSB_EP_BUF0COUNT_OFFSET	0x08	/* Buffer 0 Count */
> +#define XUSB_EP_BUF1COUNT_OFFSET	0x0C	/* Buffer 1 Count */
> +
> +#define XUSB_CONTROL_USB_READY_MASK	0x80000000 /* USB ready Mask */
> +
> +/* Interrupt register related masks.*/
> +#define XUSB_STATUS_GLOBAL_INTR_MASK	0x80000000 /* Global Intr Enable */
> +#define XUSB_STATUS_RESET_MASK		0x00800000 /* USB Reset Mask */
> +#define XUSB_STATUS_SUSPEND_MASK	0x00400000 /* USB Suspend Mask */
> +#define XUSB_STATUS_DISCONNECT_MASK	0x00200000 /* USB Disconnect Mask */
> +#define XUSB_STATUS_FIFO_BUFF_RDY_MASK	0x00100000 /* FIFO Buff Ready Mask */
> +#define XUSB_STATUS_FIFO_BUFF_FREE_MASK	0x00080000 /* FIFO Buff Free Mask */
> +#define XUSB_STATUS_SETUP_PACKET_MASK	0x00040000 /* Setup packet received */
> +#define XUSB_STATUS_EP1_BUFF2_COMP_MASK	0x00000200 /* EP 1 Buff 2 Processed */
> +#define XUSB_STATUS_EP1_BUFF1_COMP_MASK	0x00000002 /* EP 1 Buff 1 Processed */
> +#define XUSB_STATUS_EP0_BUFF2_COMP_MASK	0x00000100 /* EP 0 Buff 2 Processed */
> +#define XUSB_STATUS_EP0_BUFF1_COMP_MASK	0x00000001 /* EP 0 Buff 1 Processed */
> +#define XUSB_STATUS_HIGH_SPEED_MASK	0x00010000 /* USB Speed Mask */
> +/* Suspend,Reset and Disconnect Mask */
> +#define XUSB_STATUS_INTR_EVENT_MASK	0x00E00000
> +/* Buffers  completion Mask */
> +#define XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK	0x0000FEFF
> +/* Mask for buffer 0 and buffer 1 completion for all Endpoints */
> +#define XUSB_STATUS_INTR_BUFF_COMP_SHIFT_MASK	0x00000101
> +#define XUSB_STATUS_EP_BUFF2_SHIFT	8	   /* EP buffer offset */
> +
> +/* Endpoint Configuration Status Register */
> +#define XUSB_EP_CFG_VALID_MASK		0x80000000 /* Endpoint Valid bit */
> +#define XUSB_EP_CFG_STALL_MASK		0x40000000 /* Endpoint Stall bit */
> +#define XUSB_EP_CFG_DATA_TOGGLE_MASK	0x08000000 /* Endpoint Data toggle */
> +
> +/* USB device specific global configuration constants.*/
> +#define XUSB_MAX_ENDPOINTS		8	/* Maximum End Points */
> +#define XUSB_EP_NUMBER_ZERO		0	/* End point Zero */
> +
> +/* Test Modes (Set Feature).*/
> +#define TEST_J				1	/* Chirp J Test */
> +#define TEST_K				2	/* Chirp K Test */
> +#define TEST_SE0_NAK			3	/* Chirp SE0 Test */
> +#define TEST_PKT			4	/* Packet Test */
> +
> +#define CONFIGURATION_ONE		0x01	/* USB device configuration*/
> +#define STANDARD_OUT_DEVICE		0x00	/* Out device */
> +#define STANDARD_OUT_ENDPOINT		0x02	/* Standard Out end point */

DO NOT REDEFINE THESE, use the ones from <linux/usb/ch9.h>

> +
> +#define XUSB_DMA_READ_FROM_DPRAM	0x80000000/**< DPRAM is the source
> +							address for DMA transfer
> +							*/
> +#define XUSB_DMA_DMASR_BUSY		0x80000000 /**< DMA busy*/
> +#define XUSB_DMA_DMASR_ERROR		0x40000000 /**< DMA Error */
> +
> +/*
> + * When this bit is set, the DMA buffer ready bit is set by hardware upon
> + * DMA transfer completion.
> + */
> +#define XUSB_DMA_BRR_CTRL		0x40000000 /**< DMA bufready ctrl bit */
> +
> +/* Phase States */
> +#define SETUP_PHASE			0x0000	/* Setup Phase */
> +#define DATA_PHASE			0x0001  /* Data Phase */
> +#define STATUS_PHASE			0x0002  /* Status Phase */
> +
> +#define EP_TRANSMIT		0	/* EP is IN endpoint */
> +#define EP0_MAX_PACKET		64 /* Endpoint 0 maximum packet length */
> +
> +/**
> + * struct xusb_request - Xilinx USB device request structure
> + * @usb_req: Linux usb request structure
> + * @queue: usb device request queue
> + */
> +struct xusb_request {
> +	struct usb_request usb_req;
> +	struct list_head queue;
> +};
> +
> +/**
> + * struct xusb_ep - USB end point structure.
> + * @ep_usb: usb endpoint instance
> + * @queue: endpoint message queue
> + * @udc: xilinx usb peripheral driver instance pointer
> + * @desc: pointer to the usb endpoint descriptor
> + * @data: pointer to the xusb_request structure
> + * @rambase: the endpoint buffer address
> + * @endpointoffset: the endpoint register offset value
> + * @epnumber: endpoint number
> + * @maxpacket: maximum packet size the endpoint can store
> + * @buffer0count: the size of the packet recieved in the first buffer
> + * @buffer0ready: the busy state of first buffer
> + * @buffer1count: the size of the packet received in the second buffer
> + * @buffer1ready: the busy state of second buffer
> + * @eptype: endpoint transfer type (BULK, INTERRUPT)
> + * @curbufnum: current buffer of endpoint that will be processed next
> + * @is_in: endpoint direction (IN or OUT)
> + * @stopped: endpoint active status
> + * @is_iso: endpoint type(isochronous or non isochronous)
> + * @name: name of the endpoint
> + */
> +struct xusb_ep {
> +	struct usb_ep ep_usb;
> +	struct list_head queue;
> +	struct xusb_udc *udc;
> +	const struct usb_endpoint_descriptor *desc;
> +	struct xusb_request *data;
> +	u32 rambase;
> +	u32 endpointoffset;
> +	u16 epnumber;
> +	u16 maxpacket;
> +	u16 buffer0count;
> +	u16 buffer1count;
> +	u8 buffer0ready;
> +	u8 buffer1ready;
> +	u8 eptype;
> +	u8 curbufnum;
> +	u8 is_in;
> +	u8 stopped;
> +	u8 is_iso;
> +	char name[4];
> +};
> +
> +/**
> + * struct xusb_udc -  USB peripheral driver structure
> + * @gadget: USB gadget driver instance
> + * @ep: an array of endpoint structures
> + * @driver: pointer to the usb gadget driver instance
> + * @read_fn: function pointer to read device registers
> + * @write_fn: function pointer to write to device registers
> + * @base_address: the usb device base address
> + * @lock: instance of spinlock
> + * @dma_enabled: flag indicating whether the dma is included in the system
> + * @status: status flag indicating the device cofiguration
> + */
> +struct xusb_udc {
> +	struct usb_gadget gadget;
> +	struct xusb_ep ep[8];
> +	struct usb_gadget_driver *driver;
> +	unsigned int (*read_fn)(void __iomem *);
> +	void (*write_fn)(u32, void __iomem *);
> +	void __iomem *base_address;
> +	spinlock_t lock;
> +	bool dma_enabled;
> +	u8 status;
> +};
> +
> +/**
> + * struct cmdbuf - Standard USB Command Buffer Structure defined
> + * @setup: usb_ctrlrequest structure for control requests
> + * @contreadcount: read data bytes count
> + * @contwritecount: write data bytes count
> + * @setupseqtx: tx status
> + * @setupseqrx: rx status
> + * @contreadptr: pointer to endpoint0 read data
> + * @contwriteptr: pointer to endpoint0 write data
> + * @contreaddatabuffer: read data buffer for endpoint0
> + */
> +struct cmdbuf {
> +	struct usb_ctrlrequest setup;
> +	u32 contreadcount;
> +	u32 contwritecount;
> +	u32 setupseqtx;
> +	u32 setupseqrx;
> +	u8 *contreadptr;
> +	u8 *contwriteptr;
> +	u8 contreaddatabuffer[64];
> +};
> +
> +static struct cmdbuf ch9_cmdbuf;

NAK, you should support multiple instances of this device in the same
SoC.

> +/*
> + * Endpoint buffer start addresses in the core
> + */

fits in one line.

> +static u32 rambase[8] = { 0x22, 0x1000, 0x1100, 0x1200, 0x1300, 0x1400, 0x1500,
> +			0x1600 };
> +
> +static const char driver_name[] = "xilinx-udc";
> +static const char ep0name[] = "ep0";
> +
> +/* Control endpoint configuration.*/
> +static struct usb_endpoint_descriptor config_bulk_out_desc = {
> +	.bLength = USB_DT_ENDPOINT_SIZE,
> +	.bDescriptorType = USB_DT_ENDPOINT,
> +	.bEndpointAddress = USB_DIR_OUT,
> +	.bmAttributes = USB_ENDPOINT_XFER_BULK,
> +	.wMaxPacketSize = __constant_cpu_to_le16(0x40),
> +};
> +
> +/**
> + * to_udc - Return the udc instance pointer
> + * @g: pointer to the usb gadget driver instance
> + *
> + * Return: xusb_udc pointer
> + */
> +static inline struct xusb_udc *to_udc(struct usb_gadget *g)
> +{
> +

remove this whiteline here. Also, this could very well be a macro
instead of a function. No strong feelings though.

> +	return container_of(g, struct xusb_udc, gadget);
> +}
> +
> +/**
> + * xudc_write32 - little endian write to device registers
> + * @val: data to be written
> + * @addr: addr of device register
> + */
> +static void xudc_write32(u32 val, void __iomem *addr)

usually, people tend to pass addr, offset and value. Then you do the
quick little math internally:

	iowrite32(val, addr + offset);

no strong feelings either.

> +static int xudc_eptxrx(struct xusb_ep *ep, u8 *bufferptr, u32 bufferlen,
> +			u8 direction)
> +{
> +	u32 *eprambase;
> +	u32 bytestosend;
> +	u8 *temprambase;
> +	unsigned long timeout;
> +	u32 srcaddr = 0;
> +	u32 dstaddr = 0;
> +	int rc = 0;
> +	struct xusb_udc *udc = ep->udc;
> +
> +	bytestosend = bufferlen;
> +
> +	/* Put the transmit buffer into the correct ping-pong buffer.*/
> +	if (!ep->curbufnum && !ep->buffer0ready) {
> +		/* Get the Buffer address and copy the transmit data.*/
> +		eprambase = (u32 __force *)(ep->udc->base_address +
> +				ep->rambase);
> +
> +		if (ep->udc->dma_enabled) {
> +			if (direction == EP_TRANSMIT) {
> +				srcaddr = dma_map_single(
> +					ep->udc->gadget.dev.parent,
> +					bufferptr, bufferlen, DMA_TO_DEVICE);
> +				dstaddr = virt_to_phys(eprambase);
> +				udc->write_fn(bufferlen,
> +						ep->udc->base_address +
> +						ep->endpointoffset +
> +						XUSB_EP_BUF0COUNT_OFFSET);
> +				udc->write_fn(XUSB_DMA_BRR_CTRL |
> +						(1 << ep->epnumber),
> +						ep->udc->base_address +
> +						XUSB_DMA_CONTROL_OFFSET);
> +			} else {
> +				srcaddr = virt_to_phys(eprambase);
> +				dstaddr = dma_map_single(
> +					ep->udc->gadget.dev.parent,
> +					bufferptr, bufferlen, DMA_FROM_DEVICE);
> +				udc->write_fn(XUSB_DMA_BRR_CTRL |
> +					XUSB_DMA_READ_FROM_DPRAM |
> +					(1 << ep->epnumber),
> +					ep->udc->base_address +
> +					XUSB_DMA_CONTROL_OFFSET);
> +			}
> +			/*
> +			 * Set the addresses in the DMA source and destination
> +			 * registers and then set the length into the DMA length
> +			 * register.
> +			 */
> +			udc->write_fn(srcaddr, ep->udc->base_address +
> +				XUSB_DMA_DSAR_ADDR_OFFSET);
> +			udc->write_fn(dstaddr, ep->udc->base_address +
> +				XUSB_DMA_DDAR_ADDR_OFFSET);
> +			udc->write_fn(bufferlen, ep->udc->base_address +
> +					XUSB_DMA_LENGTH_OFFSET);
> +		} else {
> +
> +			while (bytestosend > 3) {
> +				if (direction == EP_TRANSMIT)
> +					*eprambase++ = *(u32 *)bufferptr;
> +				else
> +					*(u32 *)bufferptr = *eprambase++;
> +				bufferptr += 4;
> +				bytestosend -= 4;
> +			}
> +			temprambase = (u8 *)eprambase;
> +			while (bytestosend--) {
> +				if (direction == EP_TRANSMIT)
> +					*temprambase++ = *bufferptr++;
> +				else
> +					*bufferptr++ = *temprambase++;
> +			}
> +			/*
> +			 * Set the Buffer count register with transmit length
> +			 * and enable the buffer for transmission.
> +			 */
> +			if (direction == EP_TRANSMIT)
> +				udc->write_fn(bufferlen,
> +					ep->udc->base_address +
> +					ep->endpointoffset +
> +					XUSB_EP_BUF0COUNT_OFFSET);
> +			udc->write_fn(1 << ep->epnumber,
> +					ep->udc->base_address +
> +					XUSB_BUFFREADY_OFFSET);
> +		}
> +		ep->buffer0ready = 1;
> +		ep->curbufnum = 1;
> +
> +	} else
> +		if ((ep->curbufnum == 1) && (!ep->buffer1ready)) {
> +
> +			/* Get the Buffer address and copy the transmit data.*/
> +			eprambase = (u32 __force *)(ep->udc->base_address +
> +					ep->rambase + ep->ep_usb.maxpacket);
> +			if (ep->udc->dma_enabled) {
> +				if (direction == EP_TRANSMIT) {
> +					srcaddr = dma_map_single(
> +						ep->udc->gadget.dev.parent,
> +						bufferptr, bufferlen,
> +						DMA_TO_DEVICE);
> +					dstaddr = virt_to_phys(eprambase);
> +					udc->write_fn(bufferlen,
> +						ep->udc->base_address +
> +						ep->endpointoffset +
> +						XUSB_EP_BUF1COUNT_OFFSET);
> +					udc->write_fn(XUSB_DMA_BRR_CTRL |
> +						(1 << (ep->epnumber +
> +						XUSB_STATUS_EP_BUFF2_SHIFT)),
> +						ep->udc->base_address +
> +						XUSB_DMA_CONTROL_OFFSET);
> +				} else {
> +					srcaddr = virt_to_phys(eprambase);
> +					dstaddr = dma_map_single(
> +						ep->udc->gadget.dev.parent,
> +						bufferptr, bufferlen,
> +						DMA_FROM_DEVICE);
> +					udc->write_fn(XUSB_DMA_BRR_CTRL |
> +						XUSB_DMA_READ_FROM_DPRAM |
> +						(1 << (ep->epnumber +
> +						XUSB_STATUS_EP_BUFF2_SHIFT)),
> +						ep->udc->base_address +
> +						XUSB_DMA_CONTROL_OFFSET);
> +				}
> +				/*
> +				 * Set the addresses in the DMA source and
> +				 * destination registers and then set the length
> +				 * into the DMA length register.
> +				 */
> +				udc->write_fn(srcaddr,
> +						ep->udc->base_address +
> +						XUSB_DMA_DSAR_ADDR_OFFSET);
> +				udc->write_fn(dstaddr,
> +						ep->udc->base_address +
> +						XUSB_DMA_DDAR_ADDR_OFFSET);
> +				udc->write_fn(bufferlen,
> +						ep->udc->base_address +
> +						XUSB_DMA_LENGTH_OFFSET);
> +			} else {
> +				while (bytestosend > 3) {
> +					if (direction == EP_TRANSMIT)
> +						*eprambase++ =
> +							*(u32 *)bufferptr;
> +					else
> +						*(u32 *)bufferptr =
> +							*eprambase++;
> +					bufferptr += 4;
> +					bytestosend -= 4;
> +				}
> +				temprambase = (u8 *)eprambase;
> +				while (bytestosend--) {
> +					if (direction == EP_TRANSMIT)
> +						*temprambase++ = *bufferptr++;
> +					else
> +						*bufferptr++ = *temprambase++;
> +				}
> +				/*
> +				 * Set the Buffer count register with transmit
> +				 * length and enable the buffer for
> +				 * transmission.
> +				 */
> +				if (direction == EP_TRANSMIT)
> +					udc->write_fn(bufferlen,
> +						ep->udc->base_address +
> +						ep->endpointoffset +
> +						XUSB_EP_BUF1COUNT_OFFSET);
> +				udc->write_fn(1 << (ep->epnumber +
> +						XUSB_STATUS_EP_BUFF2_SHIFT),
> +						ep->udc->base_address +
> +						XUSB_BUFFREADY_OFFSET);
> +			}
> +			ep->buffer1ready = 1;
> +			ep->curbufnum = 0;
> +		} else {
> +			/*
> +			 * None of the ping-pong buffer is free. Return a
> +			 * failure.
> +			 */
> +			return 1;
> +		}
> +
> +	if (ep->udc->dma_enabled) {
> +		/*
> +		 * Wait till DMA transaction is complete and
> +		 * check whether the DMA transaction was
> +		 * successful.
> +		 */
> +		while ((udc->read_fn(ep->udc->base_address +
> +				XUSB_DMA_STATUS_OFFSET) &
> +				XUSB_DMA_DMASR_BUSY) == XUSB_DMA_DMASR_BUSY) {
> +			timeout = jiffies + 10000;
> +
> +			if (time_after(jiffies, timeout)) {
> +				rc = -ETIMEDOUT;
> +				goto clean;
> +			}
> +
> +		}
> +		if ((udc->read_fn(ep->udc->base_address +
> +				XUSB_DMA_STATUS_OFFSET) &
> +				XUSB_DMA_DMASR_ERROR) == XUSB_DMA_DMASR_ERROR)
> +			dev_dbg(&ep->udc->gadget.dev, "DMA Error\n");
> +clean:
> +		if (direction == EP_TRANSMIT) {
> +			dma_unmap_single(ep->udc->gadget.dev.parent,
> +				srcaddr, bufferlen, DMA_TO_DEVICE);
> +		} else {
> +			dma_unmap_single(ep->udc->gadget.dev.parent,
> +				dstaddr, bufferlen, DMA_FROM_DEVICE);
> +		}
> +	}
> +	return rc;
> +}

what a big function. Looks like you could split it into smaller
functions to aid redability.

> +static int xudc_ep_enable(struct usb_ep *_ep,
> +			  const struct usb_endpoint_descriptor *desc)
> +{
> +	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
> +	struct xusb_udc *dev = ep->udc;
> +	u32 tmp;
> +	u8 eptype = 0;
> +	unsigned long flags;
> +	u32 epcfg;
> +	struct xusb_udc *udc = ep->udc;
> +
> +	/*
> +	 * The check for _ep->name == ep0name is not done as this enable i used
> +	 * for enabling ep0 also. In other gadget drivers, this ep name is not
> +	 * used.
> +	 */
> +	if (!_ep || !desc || ep->desc ||
> +	    desc->bDescriptorType != USB_DT_ENDPOINT) {
> +		dev_dbg(&ep->udc->gadget.dev, "first check fails\n");

you need a more descriptive message here.

> +		return -EINVAL;
> +	}
> +
> +	if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
> +		dev_dbg(&ep->udc->gadget.dev, "bogus device state\n");
> +		return -ESHUTDOWN;
> +	}
> +
> +
> +	ep->is_in = ((desc->bEndpointAddress & USB_DIR_IN) != 0);
> +	/*
> +	 * Bit 3...0: endpoint number
> +	 */

fits in one line, no need for multiline comment.

> +	ep->epnumber = (desc->bEndpointAddress & 0x0f);
> +	ep->stopped = 0;
> +	ep->desc = desc;
> +	ep->ep_usb.desc = desc;
> +	tmp = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
> +	spin_lock_irqsave(&ep->udc->lock, flags);
> +	ep->ep_usb.maxpacket = le16_to_cpu(desc->wMaxPacketSize);
> +
> +	switch (tmp) {
> +	case USB_ENDPOINT_XFER_CONTROL:
> +		dev_dbg(&ep->udc->gadget.dev, "only one control endpoint\n");
> +		/* NON- ISO */
> +		eptype = 0;
> +		spin_unlock_irqrestore(&ep->udc->lock, flags);
> +		return -EINVAL;
> +	case USB_ENDPOINT_XFER_INT:
> +		/* NON- ISO */
> +		eptype = 0;
> +		if (ep->ep_usb.maxpacket > 64)
> +			goto bogus_max;
> +		break;
> +	case USB_ENDPOINT_XFER_BULK:
> +		/* NON- ISO */
> +		eptype = 0;
> +		switch (ep->ep_usb.maxpacket) {
> +		case 8:
> +		case 16:
> +		case 32:
> +		case 64:
> +		case 512:
> +		goto ok;

bogus indentation.

> +		}
> +bogus_max:
> +		dev_dbg(&ep->udc->gadget.dev, "bogus maxpacket %d\n",
> +			ep->ep_usb.maxpacket);
> +		spin_unlock_irqrestore(&ep->udc->lock, flags);
> +		return -EINVAL;
> +	case USB_ENDPOINT_XFER_ISOC:
> +		/* ISO */
> +		eptype = 1;
> +		ep->is_iso = 1;
> +		break;
> +	}
> +
> +ok:	ep->eptype = eptype;

the label sits in a line by itself:

ok:
	ep->eptype = eptype;

	...

> +static int xudc_ep_disable(struct usb_ep *_ep)
> +{
> +	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
> +	unsigned long flags;
> +	u32 epcfg;
> +	struct xusb_udc *udc = ep->udc;
> +
> +	if (ep == &ep->udc->ep[XUSB_EP_NUMBER_ZERO]) {
> +		dev_dbg(&ep->udc->gadget.dev, "Ep0 disable called\n");
> +		return -EINVAL;
> +	}
> +	spin_lock_irqsave(&ep->udc->lock, flags);
> +
> +	xudc_nuke(ep, -ESHUTDOWN);
> +
> +	/* Restore the endpoint's pristine config */
> +	ep->desc = NULL;
> +	ep->ep_usb.desc = NULL;
> +
> +	ep->stopped = 1;
> +
> +	dev_dbg(&ep->udc->gadget.dev, "USB Ep %d disable\n ", ep->epnumber);
> +
> +	/* Disable the endpoint.*/
> +	epcfg = udc->read_fn(ep->udc->base_address + ep->endpointoffset);
> +	epcfg &= ~XUSB_EP_CFG_VALID_MASK;
> +	udc->write_fn(epcfg, ep->udc->base_address + ep->endpointoffset);
> +	spin_unlock_irqrestore(&ep->udc->lock, flags);
> +	return 0;
> +}
> +
> +/**
> + * xudc_ep_alloc_request - Initializes the request queue.
> + * @_ep: pointer to the usb device endpoint structure.
> + * @gfp_flags: Flags related to the request call.
> + *
> + * Return: pointer to request structure on success and a NULL on failure.
> + */
> +static struct usb_request *xudc_ep_alloc_request(struct usb_ep *_ep,
> +						 gfp_t gfp_flags)
> +{
> +	struct xusb_request *req;
> +
> +	req = kmalloc(sizeof(*req), gfp_flags);

use kzalloc...

> +	if (!req)
> +		return NULL;
> +
> +	memset(req, 0, sizeof(*req));

... and drop this list head.

> +	INIT_LIST_HEAD(&req->queue);

remove this INIT_LIST_HEAD();

also, before returning, I suppose you probably want to link the request
to the endpoint somehow. Usually people save the endpoint pointer inside
the private request structure (iow: req->ep = ep;)

> +	return &req->usb_req;
> +}
> +
> +/**
> + * xudc_free_request - Releases the request from queue.
> + * @_ep: pointer to the usb device endpoint structure.
> + * @_req: pointer to the usb request structure.
> + */
> +static void xudc_free_request(struct usb_ep *_ep, struct usb_request *_req)
> +{
> +	struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
> +	struct xusb_request *req;
> +
> +	req = container_of(_req, struct xusb_request, usb_req);

define helper macros for these two container_of(). It helps with
readability.

> +	if (!list_empty(&req->queue))
> +		dev_warn(&ep->udc->gadget.dev, "Error: No memory to free");

what did you want to do here ? Perhaps:

	if (list_empty(&req->queue)) {
		dev_warn(&ep->udc->gadget.dev, "Error: no request to free");
		return;
	}

???

> +	kfree(req);
> +}
> +
> +/**
> + * xudc_ep_queue - Adds the request to the queue.
> + * @_ep: pointer to the usb device endpoint structure.
> + * @_req: pointer to the usb request structure.
> + * @gfp_flags: Flags related to the request call.
> + *
> + * Return: 0 for success and error value on failure
> + */
> +static int xudc_ep_queue(struct usb_ep *_ep, struct usb_request *_req,
> +			 gfp_t gfp_flags)
> +{
> +	struct xusb_request *req;
> +	struct xusb_ep *ep;
> +	struct xusb_udc *dev;
> +	unsigned long flags;
> +	u32 length, count;
> +	u8 *corebuf;
> +	struct xusb_udc *udc;
> +
> +	req = container_of(_req, struct xusb_request, usb_req);
> +	ep = container_of(_ep, struct xusb_ep, ep_usb);
> +	udc = ep->udc;
> +
> +	if (!_req || !_req->complete || !_req->buf ||
> +			!list_empty(&req->queue)) {
> +		dev_dbg(&ep->udc->gadget.dev, "invalid request\n");
> +		return -EINVAL;
> +	}
> +
> +	if (!_ep || (!ep->desc && ep->ep_usb.name != ep0name)) {
> +		dev_dbg(&ep->udc->gadget.dev, "invalid ep\n");
> +		return -EINVAL;
> +	}
> +
> +	dev = ep->udc;
> +	if (!dev || !dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
> +		dev_dbg(&ep->udc->gadget.dev, "%s, bogus device state %p\n",
> +			__func__, dev->driver);
> +		return -ESHUTDOWN;
> +	}
> +
> +	spin_lock_irqsave(&dev->lock, flags);
> +
> +	_req->status = -EINPROGRESS;
> +	_req->actual = 0;
> +
> +	/* Try to kickstart any empty and idle queue */
> +	if (list_empty(&ep->queue)) {
> +		if (!ep->epnumber) {
> +			ep->data = req;
> +			if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
> +				ch9_cmdbuf.contwriteptr = req->usb_req.buf +
> +							req->usb_req.actual;
> +				prefetch(ch9_cmdbuf.contwriteptr);
> +				length = req->usb_req.length -
> +					req->usb_req.actual;
> +				corebuf = (void __force *) ((ep->rambase << 2) +
> +					    ep->udc->base_address);
> +				ch9_cmdbuf.contwritecount = length;
> +				length = count = min_t(u32, length,
> +							EP0_MAX_PACKET);
> +				while (length--)
> +					*corebuf++ = *ch9_cmdbuf.contwriteptr++;
> +				udc->write_fn(count, ep->udc->base_address +
> +					   XUSB_EP_BUF0COUNT_OFFSET);
> +				udc->write_fn(1, ep->udc->base_address +
> +					   XUSB_BUFFREADY_OFFSET);
> +				ch9_cmdbuf.contwritecount -= count;
> +			} else {
> +				if (ch9_cmdbuf.setup.wLength) {
> +					ch9_cmdbuf.contreadptr =
> +						req->usb_req.buf +
> +							req->usb_req.actual;
> +					udc->write_fn(req->usb_req.length ,
> +						ep->udc->base_address +
> +						XUSB_EP_BUF0COUNT_OFFSET);
> +					udc->write_fn(1, ep->udc->base_address
> +						+ XUSB_BUFFREADY_OFFSET);
> +				} else {
> +					xudc_wrstatus(udc);
> +					req = NULL;
> +				}
> +			}
> +		} else {
> +
> +			if (ep->is_in) {
> +				dev_dbg(&ep->udc->gadget.dev,
> +					"xudc_write_fifo called from queue\n");
> +				if (xudc_write_fifo(ep, req) == 1)
> +					req = NULL;
> +			} else {
> +				dev_dbg(&ep->udc->gadget.dev,
> +					"xudc_read_fifo called from queue\n");
> +				if (xudc_read_fifo(ep, req) == 1)
> +					req = NULL;
> +			}
> +		}
> +	}
> +
> +	if (req != NULL)
> +		list_add_tail(&req->queue, &ep->queue);
> +	spin_unlock_irqrestore(&dev->lock, flags);
> +	return 0;
> +}
> +
> +/**
> + * xudc_ep_dequeue - Removes the request from the queue.
> + * @_ep: pointer to the usb device endpoint structure.
> + * @_req: pointer to the usb request structure.
> + *
> + * Return: 0 for success and error value on failure
> + */
> +static int xudc_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
> +{
> +	struct xusb_ep *ep;
> +	struct xusb_request *req;
> +	unsigned long flags;
> +
> +	ep = container_of(_ep, struct xusb_ep, ep_usb);
> +
> +	if (!_ep || ep->ep_usb.name == ep0name)
> +		return -EINVAL;
> +
> +	spin_lock_irqsave(&ep->udc->lock, flags);
> +	/* Make sure it's actually queued on this endpoint */
> +	list_for_each_entry(req, &ep->queue, queue) {
> +		if (&req->usb_req == _req)
> +			break;
> +	}
> +	if (&req->usb_req != _req) {
> +		spin_unlock_irqrestore(&ep->udc->lock, flags);
> +		return -EINVAL;
> +	}
> +
> +	xudc_done(ep, req, -ECONNRESET);
> +	spin_unlock_irqrestore(&ep->udc->lock, flags);
> +
> +	return 0;
> +}
> +
> +static struct usb_ep_ops xusb_ep_ops = {
> +	.enable = xudc_ep_enable,
> +	.disable = xudc_ep_disable,
> +
> +	.alloc_request = xudc_ep_alloc_request,
> +	.free_request = xudc_free_request,
> +
> +	.queue = xudc_ep_queue,
> +	.dequeue = xudc_ep_dequeue,
> +	.set_halt = xudc_ep_set_halt,
> +};
> +
> +/**
> + * xudc_get_frame - Reads the current usb frame number.
> + * @gadget: pointer to the usb gadget structure.
> + *
> + * Return: current frame number for success and error value on failure.
> + */
> +static int xudc_get_frame(struct usb_gadget *gadget)
> +{
> +
> +	struct xusb_udc *udc = to_udc(gadget);
> +	unsigned long flags;
> +	int retval;
> +
> +	if (!gadget)
> +		return -ENODEV;
> +
> +	local_irq_save(flags);
> +	retval = udc->read_fn(udc->base_address + XUSB_FRAMENUM_OFFSET);
> +	local_irq_restore(flags);
> +	return retval;
> +}
> +
> +/**
> + * xudc_reinit - Restores inital software state.
> + * @udc: pointer to the usb device controller structure.
> + */
> +static void xudc_reinit(struct xusb_udc *udc)
> +{
> +	u32 ep_number;
> +	char name[4];
> +
> +	INIT_LIST_HEAD(&udc->gadget.ep_list);
> +	INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
> +
> +	for (ep_number = 0; ep_number < XUSB_MAX_ENDPOINTS; ep_number++) {
> +		struct xusb_ep *ep = &udc->ep[ep_number];
> +
> +		if (ep_number) {
> +			list_add_tail(&ep->ep_usb.ep_list,
> +					&udc->gadget.ep_list);
> +			ep->ep_usb.maxpacket = (unsigned short)~0;
> +			sprintf(name, "ep%d", ep_number);
> +			strcpy(ep->name, name);
> +			ep->ep_usb.name = ep->name;
> +		} else {
> +			ep->ep_usb.name = ep0name;
> +			ep->ep_usb.maxpacket = 0x40;
> +		}
> +
> +		ep->ep_usb.ops = &xusb_ep_ops;
> +		ep->udc = udc;
> +		ep->epnumber = ep_number;
> +		ep->desc = NULL;
> +		ep->stopped = 0;
> +		/*
> +		 * The configuration register address offset between
> +		 * each endpoint is 0x10.
> +		 */
> +		ep->endpointoffset = XUSB_EP0_CONFIG_OFFSET +
> +					(ep_number * 0x10);
> +		ep->is_in = 0;
> +		ep->is_iso = 0;
> +		ep->maxpacket = 0;
> +		xudc_epconfig(ep, udc);
> +		udc->status = 0;
> +
> +		/* Initialize one queue per endpoint */
> +		INIT_LIST_HEAD(&ep->queue);
> +	}
> +}
> +
> +/**
> + * xudc_stop_activity - Stops any further activity on the device.
> + * @udc: pointer to the usb device controller structure.
> + */
> +static void xudc_stop_activity(struct xusb_udc *udc)
> +{
> +	struct usb_gadget_driver *driver = udc->driver;
> +	int i;
> +
> +	if (udc->gadget.speed == USB_SPEED_UNKNOWN)
> +		driver = NULL;
> +	udc->gadget.speed = USB_SPEED_HIGH;
> +
> +	for (i = 0; i < XUSB_MAX_ENDPOINTS; i++) {
> +		struct xusb_ep *ep = &udc->ep[i];
> +
> +		ep->stopped = 1;
> +		xudc_nuke(ep, -ESHUTDOWN);
> +	}
> +	if (driver) {
> +		spin_unlock(&udc->lock);
> +		driver->disconnect(&udc->gadget);
> +		spin_lock(&udc->lock);
> +	}

you shouldn't be calling disconnect here, udc-core is doing that for
you.

> +
> +	xudc_reinit(udc);
> +}
> +
> +/**
> + * xudc_start - Starts the device.
> + * @gadget: pointer to the usb gadget structure
> + * @driver: pointer to gadget driver structure
> + *
> + * Return: zero always
> + */
> +static int xudc_start(struct usb_gadget *gadget,
> +			struct usb_gadget_driver *driver)
> +{
> +	struct xusb_udc *udc = to_udc(gadget);
> +	const struct usb_endpoint_descriptor *d = &config_bulk_out_desc;
> +
> +	driver->driver.bus = NULL;
> +	/* hook up the driver */
> +	udc->driver = driver;
> +	udc->gadget.dev.driver = &driver->driver;
> +	udc->gadget.speed = driver->max_speed;
> +
> +	/* Enable the USB device.*/
> +	xudc_ep_enable(&udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb, d);
> +	udc->write_fn(0, (udc->base_address + XUSB_ADDRESS_OFFSET));
> +	udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
> +		udc->base_address + XUSB_CONTROL_OFFSET);
> +
> +	return 0;
> +}
> +
> +/**
> + * xudc_stop - stops the device.
> + * @gadget: pointer to the usb gadget structure
> + * @driver: pointer to usb gadget driver structure
> + *
> + * Return: zero always
> + */
> +static int xudc_stop(struct usb_gadget *gadget,
> +		struct usb_gadget_driver *driver)
> +{
> +	struct xusb_udc *udc = to_udc(gadget);
> +	unsigned long flags;
> +	u32 crtlreg;
> +
> +	/* Disable USB device.*/
> +	crtlreg = udc->read_fn(udc->base_address + XUSB_CONTROL_OFFSET);
> +	crtlreg &= ~XUSB_CONTROL_USB_READY_MASK;
> +	udc->write_fn(crtlreg, udc->base_address + XUSB_CONTROL_OFFSET);
> +	spin_lock_irqsave(&udc->lock, flags);
> +	udc->gadget.speed = USB_SPEED_UNKNOWN;
> +	xudc_stop_activity(udc);
> +	spin_unlock_irqrestore(&udc->lock, flags);
> +
> +	udc->gadget.dev.driver = NULL;
> +	udc->driver = NULL;
> +
> +	return 0;
> +}
> +
> +static const struct usb_gadget_ops xusb_udc_ops = {
> +	.get_frame = xudc_get_frame,
> +	.udc_start = xudc_start,
> +	.udc_stop  = xudc_stop,
> +};
> +
> +/**
> + * xudc_startup_handler - The usb device controller interrupt handler.
> + * @callbackref: pointer to the reference value being passed.
> + * @intrstatus: The mask value containing the interrupt sources.
> + *
> + * This handler handles the RESET, SUSPEND and DISCONNECT interrupts.
> + */
> +static void xudc_startup_handler(void *callbackref, u32 intrstatus)

why void ? why isn't this returning irqreturn_t ?

> +{
> +	struct xusb_udc *udc;
> +	u32 intrreg;
> +
> +	udc = (struct xusb_udc *) callbackref;

you don't need the cast here.

> +	if (intrstatus & XUSB_STATUS_RESET_MASK) {
> +		dev_dbg(&udc->gadget.dev, "Reset\n");
> +		if (intrstatus & XUSB_STATUS_HIGH_SPEED_MASK)
> +			udc->gadget.speed = USB_SPEED_HIGH;
> +		else
> +			udc->gadget.speed = USB_SPEED_FULL;
> +
> +		if (udc->status == 1) {
> +			udc->status = 0;
> +			/* Set device address to 0.*/
> +			udc->write_fn(0, udc->base_address +
> +						XUSB_ADDRESS_OFFSET);
> +		}
> +		/* Disable the Reset interrupt.*/
> +		intrreg = udc->read_fn(udc->base_address +
> +					XUSB_IER_OFFSET);
> +
> +		intrreg &= ~XUSB_STATUS_RESET_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +		/* Enable thesuspend and disconnect.*/
> +		intrreg =
> +			udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
> +		intrreg |=
> +			(XUSB_STATUS_SUSPEND_MASK |
> +			 XUSB_STATUS_DISCONNECT_MASK);
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +	}
> +
> +	if (intrstatus & XUSB_STATUS_DISCONNECT_MASK) {
> +
> +		/* Disable the Disconnect interrupt.*/
> +		intrreg =
> +			udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
> +		intrreg &= ~XUSB_STATUS_DISCONNECT_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +		dev_dbg(&udc->gadget.dev, "Disconnect\n");
> +		if (udc->status == 1) {
> +			udc->status = 0;
> +			/* Set device address to 0.*/
> +			udc->write_fn(0, udc->base_address +
> +					XUSB_ADDRESS_OFFSET);
> +			/* Enable the USB device.*/
> +			udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
> +				udc->base_address + XUSB_CONTROL_OFFSET);
> +		}
> +
> +		/* Enable the suspend and reset interrupts.*/
> +		intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
> +				XUSB_STATUS_SUSPEND_MASK |
> +				XUSB_STATUS_RESET_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +		xudc_stop_activity(udc);
> +	}
> +
> +	if (intrstatus & XUSB_STATUS_SUSPEND_MASK) {
> +		dev_dbg(&udc->gadget.dev, "Suspend\n");
> +		/* Disable the Suspend interrupt.*/
> +		intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) &
> +					~XUSB_STATUS_SUSPEND_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +		/* Enable the Disconnect and reset interrupts. */
> +		intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
> +				XUSB_STATUS_DISCONNECT_MASK |
> +				XUSB_STATUS_RESET_MASK;
> +		udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> +	}
> +}
> +
> +/**
> + * xudc_set_clear_feature - Executes the set feature and clear feature commands.
> + * @udc: pointer to the usb device controller structure.
> + * @flag: Value deciding the set or clear action.
> + *
> + * Processes the SET_FEATURE and CLEAR_FEATURE commands.
> + */
> +static void xudc_set_clear_feature(struct xusb_udc *udc, int flag)
> +{
> +	u8 endpoint;
> +	u8 outinbit;
> +	u32 epcfgreg;
> +
> +	switch (ch9_cmdbuf.setup.bRequestType) {
> +	case STANDARD_OUT_DEVICE:

use the macros from <linux/usb/ch9.h>

> +		switch (ch9_cmdbuf.setup.wValue) {
> +		case USB_DEVICE_TEST_MODE:
> +			/*
> +			 * The Test Mode will be executed
> +			 * after the status phase.
> +			 */
> +			break;
> +
> +		default:
> +			epcfgreg = udc->read_fn(udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +			epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> +			udc->write_fn(epcfgreg, udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +			break;
> +		}
> +		break;
> +
> +	case STANDARD_OUT_ENDPOINT:

use the macros from <linux/usb/ch9.h>

> +		if (!ch9_cmdbuf.setup.wValue) {
> +			endpoint = ch9_cmdbuf.setup.wIndex & 0xf;
> +			outinbit = ch9_cmdbuf.setup.wIndex & 0x80;
> +			outinbit = outinbit >> 7;
> +
> +			/* Make sure direction matches.*/
> +			if (outinbit != udc->ep[endpoint].is_in) {
> +				epcfgreg = udc->read_fn(udc->base_address +
> +						udc->ep[XUSB_EP_NUMBER_ZERO].
> +						endpointoffset);
> +				epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> +
> +				udc->write_fn(epcfgreg, udc->base_address +
> +					udc->ep[XUSB_EP_NUMBER_ZERO].
> +					endpointoffset);
> +				return;
> +			}
> +
> +			if (!endpoint) {
> +				/* Clear the stall.*/
> +				epcfgreg = udc->read_fn(udc->base_address +
> +						udc->ep[XUSB_EP_NUMBER_ZERO].
> +						endpointoffset);
> +
> +				epcfgreg &= ~XUSB_EP_CFG_STALL_MASK;
> +
> +				udc->write_fn(epcfgreg, udc->base_address +
> +					udc->ep[XUSB_EP_NUMBER_ZERO].
> +					endpointoffset);
> +				break;
> +			} else {
> +				if (flag == 1) {
> +					epcfgreg =
> +						udc->read_fn(udc->base_address +
> +						udc->ep[XUSB_EP_NUMBER_ZERO].
> +						endpointoffset);
> +					epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> +
> +					udc->write_fn(epcfgreg,
> +						udc->base_address +
> +						udc->ep[XUSB_EP_NUMBER_ZERO].
> +						endpointoffset);
> +				} else {
> +					/* Unstall the endpoint.*/
> +					epcfgreg =
> +						udc->read_fn(udc->base_address +
> +						udc->ep[endpoint].
> +						endpointoffset);
> +					epcfgreg &=
> +						~(XUSB_EP_CFG_STALL_MASK |
> +						  XUSB_EP_CFG_DATA_TOGGLE_MASK);
> +					udc->write_fn(epcfgreg,
> +						udc->base_address +
> +						udc->ep[endpoint].
> +						endpointoffset);
> +				}
> +			}
> +		}
> +		break;
> +
> +	default:
> +		epcfgreg = udc->read_fn(udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +		epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> +		udc->write_fn(epcfgreg, udc->base_address +
> +			udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +		return;
> +	}
> +
> +	/* Cause and valid status phase to be issued.*/
> +	xudc_wrstatus(udc);
> +
> +	return;
> +}
> +
> +/**
> + * xudc_execute_cmd - Processes the USB specification chapter 9 commands.
> + * @udc: pointer to the usb device controller structure.
> + *
> + * Return: 0 for success and the same reuqest command if it is not handled.
> + */
> +static int xudc_execute_cmd(struct xusb_udc *udc)
> +{
> +
> +	if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
> +			USB_TYPE_STANDARD) {
> +		/* Process the chapter 9 command.*/
> +		switch (ch9_cmdbuf.setup.bRequest) {
> +
> +		case USB_REQ_CLEAR_FEATURE:
> +			xudc_set_clear_feature(udc, 0);
> +			break;
> +
> +		case USB_REQ_SET_FEATURE:
> +			xudc_set_clear_feature(udc, 1);
> +			break;
> +
> +		case USB_REQ_SET_ADDRESS:
> +			xudc_wrstatus(udc);
> +			break;
> +
> +		case USB_REQ_SET_CONFIGURATION:
> +			udc->status = 1;
> +			return ch9_cmdbuf.setup.bRequest;
> +
> +		default:
> +			/*
> +			 * Return the same request to application for
> +			 * handling.
> +			 */
> +			return ch9_cmdbuf.setup.bRequest;
> +		}
> +
> +	} else {
> +		if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
> +		     USB_TYPE_CLASS)
> +			return ch9_cmdbuf.setup.bRequest;
> +	}
> +	return 0;
> +}
> +
> +/**
> + * xudc_handle_setup - Processes the setup packet.
> + * @udc: pointer to the usb device controller structure.
> + * @ctrl: pointer to the usb control endpoint structure.
> + *
> + * Return: 0 for success and request to be handled by application if
> + *		is not handled by the driver.
> + */
> +static int xudc_handle_setup(struct xusb_udc *udc, struct usb_ctrlrequest *ctrl)
> +{
> +	u32 *ep0rambase;
> +
> +	/* Load up the chapter 9 command buffer.*/
> +	ep0rambase = (u32 __force *) (udc->base_address +
> +				  XUSB_SETUP_PKT_ADDR_OFFSET);
> +	memcpy((void *)&ch9_cmdbuf.setup, (void *)ep0rambase, 8);
> +
> +	ctrl->bRequestType = ch9_cmdbuf.setup.bRequestType;
> +	ctrl->bRequest     = ch9_cmdbuf.setup.bRequest;
> +	ctrl->wValue       = ch9_cmdbuf.setup.wValue;
> +	ctrl->wIndex       = ch9_cmdbuf.setup.wIndex;
> +	ctrl->wLength      = ch9_cmdbuf.setup.wLength;
> +
> +	ch9_cmdbuf.setup.wValue = cpu_to_le16(ch9_cmdbuf.setup.wValue);
> +	ch9_cmdbuf.setup.wIndex = cpu_to_le16(ch9_cmdbuf.setup.wIndex);
> +	ch9_cmdbuf.setup.wLength = cpu_to_le16(ch9_cmdbuf.setup.wLength);
> +
> +	/* Restore ReadPtr to data buffer.*/
> +	ch9_cmdbuf.contreadptr = &ch9_cmdbuf.contreaddatabuffer[0];
> +	ch9_cmdbuf.contreadcount = 0;
> +
> +	if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
> +		/* Execute the get command.*/
> +		ch9_cmdbuf.setupseqrx = STATUS_PHASE;
> +		ch9_cmdbuf.setupseqtx = DATA_PHASE;
> +		return xudc_execute_cmd(udc);
> +	} else {
> +		/* Execute the put command.*/
> +		ch9_cmdbuf.setupseqrx = DATA_PHASE;
> +		ch9_cmdbuf.setupseqtx = STATUS_PHASE;
> +		return xudc_execute_cmd(udc);
> +	}
> +	/* Control should never come here.*/
> +	return 0;
> +}
> +
> +/**
> + * xudc_ep0_out - Processes the endpoint 0 OUT token.
> + * @udc: pointer to the usb device controller structure.
> + */
> +static void xudc_ep0_out(struct xusb_udc *udc)
> +{
> +	struct xusb_ep *ep;
> +	u8 count;
> +	u8 *ep0rambase;
> +	u16 index;
> +
> +	ep = &udc->ep[0];
> +	switch (ch9_cmdbuf.setupseqrx) {
> +	case STATUS_PHASE:

what about the setup phase ?

> +		/*
> +		 * This resets both state machines for the next
> +		 * Setup packet.
> +		 */
> +		ch9_cmdbuf.setupseqrx = SETUP_PHASE;
> +		ch9_cmdbuf.setupseqtx = SETUP_PHASE;
> +		ep->data->usb_req.actual = ep->data->usb_req.length;
> +		xudc_done(ep, ep->data, 0);
> +		break;
> +
> +	case DATA_PHASE:
> +		count = udc->read_fn(udc->base_address +
> +				XUSB_EP_BUF0COUNT_OFFSET);
> +		/* Copy the data to be received from the DPRAM. */
> +		ep0rambase =
> +			(u8 __force *) (udc->base_address +
> +				(udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
> +
> +		for (index = 0; index < count; index++)
> +			*ch9_cmdbuf.contreadptr++ = *ep0rambase++;
> +
> +		ch9_cmdbuf.contreadcount += count;
> +		if (ch9_cmdbuf.setup.wLength == ch9_cmdbuf.contreadcount) {
> +				xudc_wrstatus(udc);
> +		} else {
> +			/* Set the Tx packet size and the Tx enable bit.*/
> +			udc->write_fn(0, udc->base_address +
> +				XUSB_EP_BUF0COUNT_OFFSET);
> +			udc->write_fn(1, udc->base_address +
> +				XUSB_BUFFREADY_OFFSET);
> +		}
> +		break;
> +
> +	default:
> +		break;
> +	}
> +}
> +
> +/**
> + * xudc_ep0_in - Processes the endpoint 0 IN token.
> + * @udc: pointer to the usb device controller structure.
> + */
> +static void xudc_ep0_in(struct xusb_udc *udc)
> +{
> +	struct xusb_ep *ep;
> +	u32 epcfgreg;
> +	u16 count;
> +	u16 length;
> +	u8 *ep0rambase;
> +
> +	ep = &udc->ep[0];
> +	switch (ch9_cmdbuf.setupseqtx) {
> +	case STATUS_PHASE:
> +		if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_ADDRESS) {
> +			/* Set the address of the device.*/
> +			udc->write_fn(ch9_cmdbuf.setup.wValue,
> +					(udc->base_address +
> +					XUSB_ADDRESS_OFFSET));
> +			break;
> +		} else {
> +			if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_FEATURE) {
> +				if (ch9_cmdbuf.setup.bRequestType ==
> +				    STANDARD_OUT_DEVICE) {
> +					if (ch9_cmdbuf.setup.wValue ==
> +					    USB_DEVICE_TEST_MODE)
> +						udc->write_fn(TEST_J,
> +							udc->base_address +
> +							XUSB_TESTMODE_OFFSET);

use a switch.

> +				}
> +			}
> +		}
> +		ep->data->usb_req.actual = ch9_cmdbuf.setup.wLength;
> +		xudc_done(ep, ep->data, 0);
> +		break;
> +
> +	case DATA_PHASE:
> +		if (!ch9_cmdbuf.contwritecount) {
> +			/*
> +			 * We're done with data transfer, next
> +			 * will be zero length OUT with data toggle of
> +			 * 1. Setup data_toggle.
> +			 */
> +			epcfgreg = udc->read_fn(udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +			epcfgreg |= XUSB_EP_CFG_DATA_TOGGLE_MASK;
> +			udc->write_fn(epcfgreg, udc->base_address +
> +				udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> +			count = 0;
> +
> +			ch9_cmdbuf.setupseqtx = STATUS_PHASE;
> +
> +		} else {
> +			length = count = min_t(u32, ch9_cmdbuf.contwritecount,
> +						EP0_MAX_PACKET);
> +			/* Copy the data to be transmitted into the DPRAM. */
> +			ep0rambase = (u8 __force *) (udc->base_address +
> +				(udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
> +			while (length--)
> +				*ep0rambase++ = *ch9_cmdbuf.contwriteptr++;
> +
> +			ch9_cmdbuf.contwritecount -= count;
> +		}
> +		udc->write_fn(count, udc->base_address +
> +				XUSB_EP_BUF0COUNT_OFFSET);
> +		udc->write_fn(1, udc->base_address + XUSB_BUFFREADY_OFFSET);
> +		break;
> +
> +	default:
> +		break;
> +	}
> +}
> +
> +/**
> + * xudc_ctrl_ep_handler - Endpoint 0 interrupt handler.
> + * @callbackref: pointer to the call back reference passed by the
> + *			main interrupt handler.
> + * @intrstatus:	It's the mask value for the interrupt sources on endpoint 0.
> + *
> + * Processes the commands received during enumeration phase.
> + */
> +static void xudc_ctrl_ep_handler(void *callbackref, u32 intrstatus)
> +{
> +	struct xusb_udc *udc;
> +	struct usb_ctrlrequest ctrl;
> +	int status;
> +	int epnum;
> +	u32 intrreg;
> +
> +	udc = (struct xusb_udc *) callbackref;
> +	/* Process the end point zero buffer interrupt.*/
> +	if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK) {
> +		if (intrstatus & XUSB_STATUS_SETUP_PACKET_MASK) {
> +			/*
> +			 * Enable the Disconnect, suspend and reset
> +			 * interrupts.
> +			 */
> +			intrreg = udc->read_fn(udc->base_address +
> +					XUSB_IER_OFFSET);
> +			intrreg |= XUSB_STATUS_DISCONNECT_MASK |
> +					 XUSB_STATUS_SUSPEND_MASK |
> +					 XUSB_STATUS_RESET_MASK;
> +			udc->write_fn(intrreg,
> +				udc->base_address + XUSB_IER_OFFSET);
> +			status = xudc_handle_setup(udc, &ctrl);
> +			if (status || ((ch9_cmdbuf.setup.bRequestType &
> +					USB_TYPE_MASK) == USB_TYPE_CLASS)) {
> +				/*
> +				 * Request is to be handled by the gadget
> +				 * driver.
> +				 */
> +				spin_unlock(&udc->lock);
> +				udc->driver->setup(&udc->gadget, &ctrl);
> +				spin_lock(&udc->lock);
> +			} else {
> +				if (ctrl.bRequest == USB_REQ_CLEAR_FEATURE) {
> +					epnum = ctrl.wIndex & 0xf;
> +					udc->ep[epnum].stopped = 0;
> +				}
> +				if (ctrl.bRequest == USB_REQ_SET_FEATURE) {
> +					epnum = ctrl.wIndex & 0xf;
> +					udc->ep[epnum].stopped = 1;
> +				}
> +			}
> +		} else {
> +			if (intrstatus & XUSB_STATUS_FIFO_BUFF_RDY_MASK)
> +				xudc_ep0_out(udc);
> +			else if (intrstatus &
> +				XUSB_STATUS_FIFO_BUFF_FREE_MASK)
> +				xudc_ep0_in(udc);
> +		}
> +	}
> +}
> +
> +/**
> + * xudc_nonctrl_ep_handler - Non control endpoint interrupt handler.
> + * @callbackref: pointer to the call back reference passed by the
> + *			main interrupt handler.
> + * @epnum: End point number for which the interrupt is to be processed
> + * @intrstatus:	It's the mask value for the interrupt sources on endpoint 0.
> + */
> +static void xudc_nonctrl_ep_handler(void *callbackref, u8 epnum,
> +					u32 intrstatus)
> +{
> +
> +	struct xusb_request *req;
> +	struct xusb_udc *udc;
> +	struct xusb_ep *ep;
> +
> +	udc = (struct xusb_udc *) callbackref;
> +	ep = &udc->ep[epnum];
> +	/* Process the End point interrupts.*/
> +	if (intrstatus & (XUSB_STATUS_EP0_BUFF1_COMP_MASK << epnum))
> +		ep->buffer0ready = 0;
> +	if (intrstatus & (XUSB_STATUS_EP0_BUFF2_COMP_MASK << epnum))
> +		ep->buffer1ready = 0;
> +
> +	if (list_empty(&ep->queue))
> +		req = NULL;
> +	else
> +		req = list_entry(ep->queue.next, struct xusb_request, queue);
> +	if (!req)
> +		return;
> +	if (ep->is_in)
> +		xudc_write_fifo(ep, req);
> +	else
> +		xudc_read_fifo(ep, req);
> +}
> +
> +/**
> + * xudc_irq - The main interrupt handler.
> + * @irq: The interrupt number.
> + * @_udc: pointer to the usb device controller structure.
> + *
> + * Return: IRQ_HANDLED after the interrupt is handled.
> + */
> +static irqreturn_t xudc_irq(int irq, void *_udc)
> +{
> +	struct xusb_udc *udc = _udc;
> +	u32 intrstatus;
> +	u8 index;
> +	u32 bufintr;
> +
> +	spin_lock(&(udc->lock));
> +
> +	/* Read the Interrupt Status Register.*/
> +	intrstatus = udc->read_fn(udc->base_address + XUSB_STATUS_OFFSET);
> +	/* Call the handler for the event interrupt.*/
> +	if (intrstatus & XUSB_STATUS_INTR_EVENT_MASK) {
> +		/*
> +		 * Check if there is any action to be done for :
> +		 * - USB Reset received {XUSB_STATUS_RESET_MASK}
> +		 * - USB Suspend received {XUSB_STATUS_SUSPEND_MASK}

what about resume ? No resume ?

> +		 * - USB Disconnect received {XUSB_STATUS_DISCONNECT_MASK}
> +		 */
> +		xudc_startup_handler(udc, intrstatus);
> +	}
> +
> +	/* Check the buffer completion interrupts */
> +	if (intrstatus & XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK) {
> +		if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK)
> +			xudc_ctrl_ep_handler(udc, intrstatus);
> +
> +		for (index = 1; index < 8; index++) {
> +			bufintr = ((intrstatus &
> +					(XUSB_STATUS_EP1_BUFF1_COMP_MASK <<
> +							(index - 1))) ||
> +				   (intrstatus &
> +					(XUSB_STATUS_EP1_BUFF2_COMP_MASK <<
> +							(index - 1))));
> +
> +			if (bufintr)
> +				xudc_nonctrl_ep_handler(udc, index,
> +						intrstatus);
> +		}
> +	}
> +	spin_unlock(&(udc->lock));
> +
> +	return IRQ_HANDLED;
> +}
> +
> +
> +
> +/**
> + * xudc_release - Releases device structure
> + * @dev: pointer to device structure
> + */
> +static void xudc_release(struct device *dev)
> +{
> +}

you don't need to define this, udc-core will give you a release method.

> +/**
> + * xudc_probe - The device probe function for driver initialization.
> + * @pdev: pointer to the platform device structure.
> + *
> + * Return: 0 for success and error value on failure
> + */
> +static int xudc_probe(struct platform_device *pdev)
> +{
> +	struct device_node *np = pdev->dev.of_node;
> +	struct resource *res;
> +	struct xusb_udc *udc;
> +	int irq;
> +	int ret;
> +
> +	dev_dbg(&pdev->dev, "%s(%p)\n", __func__, pdev);
> +
> +	udc = devm_kzalloc(&pdev->dev, sizeof(*udc), GFP_KERNEL);
> +	if (!udc)
> +		return -ENOMEM;
> +
> +	/* Map the registers */
> +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> +						 resource_size(res));

use devm_ioremap_resource() instead.

> +	if (!udc->base_address)
> +		return -ENOMEM;
> +
> +	irq = platform_get_irq(pdev, 0);
> +	if (irq < 0) {
> +		dev_err(&pdev->dev, "unable to get irq\n");
> +		return irq;
> +	}
> +	ret = request_irq(irq, xudc_irq, 0, dev_name(&pdev->dev), udc);

devm_request_irq()

> +	if (ret < 0) {
> +		dev_dbg(&pdev->dev, "unable to request irq %d", irq);
> +		goto fail0;
> +	}
> +
> +	udc->dma_enabled = of_property_read_bool(np, "xlnx,include-dma");
> +
> +	/* Setup gadget structure */
> +	udc->gadget.ops = &xusb_udc_ops;
> +	udc->gadget.max_speed = USB_SPEED_HIGH;
> +	udc->gadget.speed = USB_SPEED_HIGH;
> +	udc->gadget.ep0 = &udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb;
> +	udc->gadget.name = driver_name;
> +
> +	dev_set_name(&udc->gadget.dev, "xilinx_udc");
> +	udc->gadget.dev.release = xudc_release;
> +	udc->gadget.dev.parent = &pdev->dev;

don't touch the gadget device directly, udc-core handles all of that for
you.

> +
> +	spin_lock_init(&udc->lock);
> +
> +	/* Check for IP endianness */
> +	udc->write_fn = xudc_write32_be;
> +	udc->read_fn = xudc_read32_be;
> +	udc->write_fn(TEST_J, udc->base_address + XUSB_TESTMODE_OFFSET);
> +	if ((udc->read_fn(udc->base_address + XUSB_TESTMODE_OFFSET))
> +			!= TEST_J) {
> +		udc->write_fn = xudc_write32;
> +		udc->read_fn = xudc_read32;
> +	}
> +	udc->write_fn(0, udc->base_address + XUSB_TESTMODE_OFFSET);
> +
> +	xudc_reinit(udc);
> +
> +	/* Set device address to 0.*/
> +	udc->write_fn(0, udc->base_address + XUSB_ADDRESS_OFFSET);
> +
> +	ret = usb_add_gadget_udc(&pdev->dev, &udc->gadget);
> +	if (ret)
> +		goto fail1;
> +
> +	/* Enable the interrupts.*/
> +	udc->write_fn(XUSB_STATUS_GLOBAL_INTR_MASK | XUSB_STATUS_RESET_MASK |
> +		      XUSB_STATUS_DISCONNECT_MASK | XUSB_STATUS_SUSPEND_MASK |
> +		      XUSB_STATUS_FIFO_BUFF_RDY_MASK |
> +		      XUSB_STATUS_FIFO_BUFF_FREE_MASK |
> +		      XUSB_STATUS_EP0_BUFF1_COMP_MASK,
> +		      udc->base_address + XUSB_IER_OFFSET);
> +
> +	platform_set_drvdata(pdev, udc);
> +
> +	dev_info(&pdev->dev, "%s #%d at 0x%08X mapped to 0x%08X\n",
> +		 driver_name, 0, (u32)res->start,
> +		 (u32 __force)udc->base_address);

make this a dev_vdbg().

> +
> +	return 0;
> +
> +fail1:
> +	free_irq(irq, udc);
> +fail0:
> +	dev_dbg(&pdev->dev, "probe failed, %d\n", ret);

this should be dev_err().

> +	return ret;
> +}
> +
> +/**
> + * xudc_remove - Releases the resources allocated during the initialization.
> + * @pdev: pointer to the platform device structure.
> + *
> + * Return: 0 for success and error value on failure
> + */
> +static int xudc_remove(struct platform_device *pdev)
> +{
> +	struct xusb_udc *udc = platform_get_drvdata(pdev);
> +
> +	dev_dbg(&pdev->dev, "remove\n");
> +	usb_del_gadget_udc(&udc->gadget);
> +	if (udc->driver)
> +		return -EBUSY;
> +
> +	device_unregister(&udc->gadget.dev);

remove this line.

Also, you're leaking your IRQ handler, if you switch to
devm_request_irq() then you don't need to free it, though.

From the looks of it, I doubt this was actually tested, you need a lot
of work on this driver.

cheers

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21  6:38     ` Michal Simek
  0 siblings, 0 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21  6:38 UTC (permalink / raw)
  To: balbi
  Cc: Subbaraya Sundeep Bhatta, Greg Kroah-Hartman, linux-usb,
	linux-kernel, Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 1296 bytes --]

Hi,

>> + * Copyright (C) 2010 - 2014 Xilinx, Inc.
>> + *
>> + * Some parts of this driver code is based on the driver for at91-series
>> + * USB peripheral controller (at91_udc.c).
>> + *
>> + * This program is free software; you can redistribute it
>> + * and/or modify it under the terms of the GNU General Public
>> + * License as published by the Free Software Foundation;
>> + * either version 2 of the License, or (at your option) any
>> + * later version.
> 
> are you sure you want to allow people ot use GPL v3 on this driver ?

The license is the same as is in at91_udc.c driver.
From my understanding if this driver is based on that one we
have to follow license from it.
And this is problem in general with all licenses in the kernel
which use this fragment.
I don't think we can change it to be just GPLv2.
Please correct me if I am wrong.

BTW: u-boot started to use SPDX-License-Identifier
which will be nice to start to use.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21  6:38     ` Michal Simek
  0 siblings, 0 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21  6:38 UTC (permalink / raw)
  To: balbi-l0cyMroinI0
  Cc: Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 1296 bytes --]

Hi,

>> + * Copyright (C) 2010 - 2014 Xilinx, Inc.
>> + *
>> + * Some parts of this driver code is based on the driver for at91-series
>> + * USB peripheral controller (at91_udc.c).
>> + *
>> + * This program is free software; you can redistribute it
>> + * and/or modify it under the terms of the GNU General Public
>> + * License as published by the Free Software Foundation;
>> + * either version 2 of the License, or (at your option) any
>> + * later version.
> 
> are you sure you want to allow people ot use GPL v3 on this driver ?

The license is the same as is in at91_udc.c driver.
From my understanding if this driver is based on that one we
have to follow license from it.
And this is problem in general with all licenses in the kernel
which use this fragment.
I don't think we can change it to be just GPLv2.
Please correct me if I am wrong.

BTW: u-boot started to use SPDX-License-Identifier
which will be nice to start to use.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* RE: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-20 18:23   ` Felipe Balbi
  (?)
  (?)
@ 2014-02-21 11:27   ` Subbaraya Sundeep Bhatta
  2014-02-21 15:39     ` Felipe Balbi
  -1 siblings, 1 reply; 75+ messages in thread
From: Subbaraya Sundeep Bhatta @ 2014-02-21 11:27 UTC (permalink / raw)
  To: balbi
  Cc: Greg Kroah-Hartman, linux-usb, linux-kernel, Michal Simek, devicetree

Hi,

> -----Original Message-----
> From: Felipe Balbi [mailto:balbi@ti.com]
> Sent: Thursday, February 20, 2014 11:53 PM
> To: Subbaraya Sundeep Bhatta
> Cc: Felipe Balbi; Greg Kroah-Hartman; linux-usb@vger.kernel.org; linux-
> kernel@vger.kernel.org; Michal Simek; Subbaraya Sundeep Bhatta;
> devicetree@vger.kernel.org
> Subject: Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
>
> Hi,
>
> On Wed, Feb 19, 2014 at 03:10:45PM +0530, Subbaraya Sundeep Bhatta wrote:
> > This patch adds xilinx axi usb2 device driver support
> >
> > Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta@xilinx.com>
> > ---
> >  .../devicetree/bindings/usb/xilinx_usb.txt         |   21 +
> >  drivers/usb/gadget/Kconfig                         |   14 +
> >  drivers/usb/gadget/Makefile                        |    1 +
> >  drivers/usb/gadget/xilinx_udc.c                    | 2045 ++++++++++++++++++++
> >  4 files changed, 2081 insertions(+), 0 deletions(-)
> >  create mode 100644 Documentation/devicetree/bindings/usb/xilinx_usb.txt
> >  create mode 100644 drivers/usb/gadget/xilinx_udc.c
> >
> > diff --git a/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> > new file mode 100644
> > index 0000000..acf03ab
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> > @@ -0,0 +1,21 @@
> > +Xilinx AXI USB2 device controller
> > +
> > +Required properties:
> > +- compatible               : Should be "xlnx,axi-usb2-device-4.00.a"
> > +- reg                      : Physical base address and size of the Axi USB2
> > +                     device registers map.
> > +- interrupts               : Property with a value describing the interrupt
> > +                     number.
> > +- interrupt-parent : Must be core interrupt controller
> > +- xlnx,include-dma : Must be 1 or 0 based on whether DMA is included
> > +                     in IP or not.
> > +
> > +Example:
> > +           axi-usb2-device@42e00000 {
> > +                        compatible = "xlnx,axi-usb2-device-4.00.a";
> > +                        interrupt-parent = <0x1>;
> > +                        interrupts = <0x0 0x39 0x1>;
> > +                        reg = <0x42e00000 0x10000>;
> > +                        xlnx,include-dma = <0x1>;
> > +                };
> > +
>
> you need to Cc devicetree@vger.kernel.org for this.
Ok.
>
> > diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
> > index 8154165..0b284bf 100644
> > --- a/drivers/usb/gadget/Kconfig
> > +++ b/drivers/usb/gadget/Kconfig
> > @@ -466,6 +466,20 @@ config USB_EG20T
> >       ML7213/ML7831 is companion chip for Intel Atom E6xx series.
> >       ML7213/ML7831 is completely compatible for Intel EG20T PCH.
> >
> > +config USB_GADGET_XILINX
> > +   tristate "Xilinx USB Driver"
> > +   depends on MICROBLAZE || ARCH_ZYNQ
>
> This has the tendency to grow and I really don't like seeing a bunch of
> arch-specific dependencies. At a minimum add COMPILE_TEST so I can build
> test on my setup and make sure it builds fine on other architectures.
>
> > +   help
> > +     USB peripheral controller driver for Xilinx AXI USB2 device.
> > +     Xilinx AXI USB2 device is a soft IP which supports both full
> > +     and high speed USB 2.0 data transfers. It has seven configurable
> > +     endpoints(bulk or interrupt or isochronous), as well as
> > +     endpoint zero(for control transfers).
> > +
> > +     Say "y" to link the driver statically, or "m" to build a
> > +     dynamically linked module called "xilinx_udc" and force all
> > +     gadget drivers to also be dynamically linked.
> > +
> >  #
> >  # LAST -- dummy/emulated controller
> >  #
> > diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile
> > index 5f150bc..3a55564 100644
> > --- a/drivers/usb/gadget/Makefile
> > +++ b/drivers/usb/gadget/Makefile
> > @@ -36,6 +36,7 @@ obj-$(CONFIG_USB_FUSB300) += fusb300_udc.o
> >  obj-$(CONFIG_USB_FOTG210_UDC)      += fotg210-udc.o
> >  obj-$(CONFIG_USB_MV_U3D)   += mv_u3d_core.o
> >  obj-$(CONFIG_USB_GR_UDC)   += gr_udc.o
> > +obj-$(CONFIG_USB_GADGET_XILINX)    += xilinx_udc.o
>
> let's start normalizing the names here (I'll patch the others later) and
> call this udc-xilinx.o
>
Ok
> > diff --git a/drivers/usb/gadget/xilinx_udc.c b/drivers/usb/gadget/xilinx_udc.c
> > new file mode 100644
> > index 0000000..3ee8359
> > --- /dev/null
> > +++ b/drivers/usb/gadget/xilinx_udc.c
> > @@ -0,0 +1,2045 @@
> > +/*
> > + * Xilinx USB peripheral controller driver
> > + *
> > + * Copyright (C) 2004 by Thomas Rathbone
> > + * Copyright (C) 2005 by HP Labs
> > + * Copyright (C) 2005 by David Brownell
>
> heh! :-) Brownell was really everywhere, good to still see code from him
> ;-)
>
> > + * Copyright (C) 2010 - 2014 Xilinx, Inc.
> > + *
> > + * Some parts of this driver code is based on the driver for at91-series
> > + * USB peripheral controller (at91_udc.c).
> > + *
> > + * This program is free software; you can redistribute it
> > + * and/or modify it under the terms of the GNU General Public
> > + * License as published by the Free Software Foundation;
> > + * either version 2 of the License, or (at your option) any
> > + * later version.
>
> are you sure you want to allow people ot use GPL v3 on this driver ?
>
> > +#include <linux/interrupt.h>
> > +#include <linux/device.h>
> > +#include <linux/module.h>
> > +#include <linux/prefetch.h>
> > +#include <linux/usb/ch9.h>
> > +#include <linux/usb/gadget.h>
> > +#include <linux/io.h>
> > +#include <linux/seq_file.h>
> > +#include <linux/of_address.h>
> > +#include <linux/of_device.h>
> > +#include <linux/of_platform.h>
> > +#include <linux/of_irq.h>
> > +#include <linux/dma-mapping.h>
> > +#include "gadget_chips.h"
> > +
> > +/* Register offsets for the USB device.*/
> > +#define XUSB_EP0_CONFIG_OFFSET             0x0000  /* EP0 Config Reg
> Offset */
> > +#define XUSB_SETUP_PKT_ADDR_OFFSET 0x0080  /* Setup Packet
> Address */
> > +#define XUSB_ADDRESS_OFFSET                0x0100  /* Address Register */
> > +#define XUSB_CONTROL_OFFSET                0x0104  /* Control Register */
> > +#define XUSB_STATUS_OFFSET         0x0108  /* Status Register */
> > +#define XUSB_FRAMENUM_OFFSET               0x010C  /* Frame Number
> Register */
> > +#define XUSB_IER_OFFSET                    0x0110  /* Interrupt Enable
> Register */
> > +#define XUSB_BUFFREADY_OFFSET              0x0114  /* Buffer Ready
> Register */
> > +#define XUSB_TESTMODE_OFFSET               0x0118  /* Test Mode Register
> */
> > +#define XUSB_DMA_RESET_OFFSET              0x0200  /* DMA Soft Reset
> Register */
> > +#define XUSB_DMA_CONTROL_OFFSET            0x0204  /* DMA
> Control Register */
> > +#define XUSB_DMA_DSAR_ADDR_OFFSET  0x0208  /* DMA source
> Address Reg */
> > +#define XUSB_DMA_DDAR_ADDR_OFFSET  0x020C  /* DMA destination
> Addr Reg */
> > +#define XUSB_DMA_LENGTH_OFFSET             0x0210  /* DMA Length
> Register */
> > +#define XUSB_DMA_STATUS_OFFSET             0x0214  /* DMA Status Register
> */
> > +
> > +/* Endpoint Configuration Space offsets */
> > +#define XUSB_EP_CFGSTATUS_OFFSET   0x00    /* Endpoint Config
> Status  */
> > +#define XUSB_EP_BUF0COUNT_OFFSET   0x08    /* Buffer 0 Count */
> > +#define XUSB_EP_BUF1COUNT_OFFSET   0x0C    /* Buffer 1 Count */
> > +
> > +#define XUSB_CONTROL_USB_READY_MASK        0x80000000 /* USB ready
> Mask */
> > +
> > +/* Interrupt register related masks.*/
> > +#define XUSB_STATUS_GLOBAL_INTR_MASK       0x80000000 /* Global Intr
> Enable */
> > +#define XUSB_STATUS_RESET_MASK             0x00800000 /* USB Reset
> Mask */
> > +#define XUSB_STATUS_SUSPEND_MASK   0x00400000 /* USB Suspend
> Mask */
> > +#define XUSB_STATUS_DISCONNECT_MASK        0x00200000 /* USB Disconnect
> Mask */
> > +#define XUSB_STATUS_FIFO_BUFF_RDY_MASK     0x00100000 /* FIFO
> Buff Ready Mask */
> > +#define XUSB_STATUS_FIFO_BUFF_FREE_MASK    0x00080000 /* FIFO
> Buff Free Mask */
> > +#define XUSB_STATUS_SETUP_PACKET_MASK      0x00040000 /* Setup packet
> received */
> > +#define XUSB_STATUS_EP1_BUFF2_COMP_MASK    0x00000200 /* EP 1
> Buff 2 Processed */
> > +#define XUSB_STATUS_EP1_BUFF1_COMP_MASK    0x00000002 /* EP 1
> Buff 1 Processed */
> > +#define XUSB_STATUS_EP0_BUFF2_COMP_MASK    0x00000100 /* EP 0
> Buff 2 Processed */
> > +#define XUSB_STATUS_EP0_BUFF1_COMP_MASK    0x00000001 /* EP 0
> Buff 1 Processed */
> > +#define XUSB_STATUS_HIGH_SPEED_MASK        0x00010000 /* USB Speed
> Mask */
> > +/* Suspend,Reset and Disconnect Mask */
> > +#define XUSB_STATUS_INTR_EVENT_MASK        0x00E00000
> > +/* Buffers  completion Mask */
> > +#define XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK        0x0000FEFF
> > +/* Mask for buffer 0 and buffer 1 completion for all Endpoints */
> > +#define XUSB_STATUS_INTR_BUFF_COMP_SHIFT_MASK      0x00000101
> > +#define XUSB_STATUS_EP_BUFF2_SHIFT 8          /* EP buffer offset */
> > +
> > +/* Endpoint Configuration Status Register */
> > +#define XUSB_EP_CFG_VALID_MASK             0x80000000 /* Endpoint Valid
> bit */
> > +#define XUSB_EP_CFG_STALL_MASK             0x40000000 /* Endpoint Stall
> bit */
> > +#define XUSB_EP_CFG_DATA_TOGGLE_MASK       0x08000000 /* Endpoint Data
> toggle */
> > +
> > +/* USB device specific global configuration constants.*/
> > +#define XUSB_MAX_ENDPOINTS         8       /* Maximum End
> Points */
> > +#define XUSB_EP_NUMBER_ZERO                0       /* End point Zero */
> > +
> > +/* Test Modes (Set Feature).*/
> > +#define TEST_J                             1       /* Chirp J Test */
> > +#define TEST_K                             2       /* Chirp K Test */
> > +#define TEST_SE0_NAK                       3       /* Chirp SE0 Test */
> > +#define TEST_PKT                   4       /* Packet Test */
> > +
> > +#define CONFIGURATION_ONE          0x01    /* USB device
> configuration*/
> > +#define STANDARD_OUT_DEVICE                0x00    /* Out device */
> > +#define STANDARD_OUT_ENDPOINT              0x02    /* Standard Out end
> point */
>
> DO NOT REDEFINE THESE, use the ones from <linux/usb/ch9.h>
Ok
>
> > +
> > +#define XUSB_DMA_READ_FROM_DPRAM   0x80000000/**< DPRAM is the
> source
> > +                                                   address for DMA
> transfer
> > +                                                   */
> > +#define XUSB_DMA_DMASR_BUSY                0x80000000 /**< DMA busy*/
> > +#define XUSB_DMA_DMASR_ERROR               0x40000000 /**< DMA Error */
> > +
> > +/*
> > + * When this bit is set, the DMA buffer ready bit is set by hardware upon
> > + * DMA transfer completion.
> > + */
> > +#define XUSB_DMA_BRR_CTRL          0x40000000 /**< DMA
> bufready ctrl bit */
> > +
> > +/* Phase States */
> > +#define SETUP_PHASE                        0x0000  /* Setup Phase */
> > +#define DATA_PHASE                 0x0001  /* Data Phase */
> > +#define STATUS_PHASE                       0x0002  /* Status Phase */
> > +
> > +#define EP_TRANSMIT                0       /* EP is IN endpoint */
> > +#define EP0_MAX_PACKET             64 /* Endpoint 0 maximum packet
> length */
> > +
> > +/**
> > + * struct xusb_request - Xilinx USB device request structure
> > + * @usb_req: Linux usb request structure
> > + * @queue: usb device request queue
> > + */
> > +struct xusb_request {
> > +   struct usb_request usb_req;
> > +   struct list_head queue;
> > +};
> > +
> > +/**
> > + * struct xusb_ep - USB end point structure.
> > + * @ep_usb: usb endpoint instance
> > + * @queue: endpoint message queue
> > + * @udc: xilinx usb peripheral driver instance pointer
> > + * @desc: pointer to the usb endpoint descriptor
> > + * @data: pointer to the xusb_request structure
> > + * @rambase: the endpoint buffer address
> > + * @endpointoffset: the endpoint register offset value
> > + * @epnumber: endpoint number
> > + * @maxpacket: maximum packet size the endpoint can store
> > + * @buffer0count: the size of the packet recieved in the first buffer
> > + * @buffer0ready: the busy state of first buffer
> > + * @buffer1count: the size of the packet received in the second buffer
> > + * @buffer1ready: the busy state of second buffer
> > + * @eptype: endpoint transfer type (BULK, INTERRUPT)
> > + * @curbufnum: current buffer of endpoint that will be processed next
> > + * @is_in: endpoint direction (IN or OUT)
> > + * @stopped: endpoint active status
> > + * @is_iso: endpoint type(isochronous or non isochronous)
> > + * @name: name of the endpoint
> > + */
> > +struct xusb_ep {
> > +   struct usb_ep ep_usb;
> > +   struct list_head queue;
> > +   struct xusb_udc *udc;
> > +   const struct usb_endpoint_descriptor *desc;
> > +   struct xusb_request *data;
> > +   u32 rambase;
> > +   u32 endpointoffset;
> > +   u16 epnumber;
> > +   u16 maxpacket;
> > +   u16 buffer0count;
> > +   u16 buffer1count;
> > +   u8 buffer0ready;
> > +   u8 buffer1ready;
> > +   u8 eptype;
> > +   u8 curbufnum;
> > +   u8 is_in;
> > +   u8 stopped;
> > +   u8 is_iso;
> > +   char name[4];
> > +};
> > +
> > +/**
> > + * struct xusb_udc -  USB peripheral driver structure
> > + * @gadget: USB gadget driver instance
> > + * @ep: an array of endpoint structures
> > + * @driver: pointer to the usb gadget driver instance
> > + * @read_fn: function pointer to read device registers
> > + * @write_fn: function pointer to write to device registers
> > + * @base_address: the usb device base address
> > + * @lock: instance of spinlock
> > + * @dma_enabled: flag indicating whether the dma is included in the system
> > + * @status: status flag indicating the device cofiguration
> > + */
> > +struct xusb_udc {
> > +   struct usb_gadget gadget;
> > +   struct xusb_ep ep[8];
> > +   struct usb_gadget_driver *driver;
> > +   unsigned int (*read_fn)(void __iomem *);
> > +   void (*write_fn)(u32, void __iomem *);
> > +   void __iomem *base_address;
> > +   spinlock_t lock;
> > +   bool dma_enabled;
> > +   u8 status;
> > +};
> > +
> > +/**
> > + * struct cmdbuf - Standard USB Command Buffer Structure defined
> > + * @setup: usb_ctrlrequest structure for control requests
> > + * @contreadcount: read data bytes count
> > + * @contwritecount: write data bytes count
> > + * @setupseqtx: tx status
> > + * @setupseqrx: rx status
> > + * @contreadptr: pointer to endpoint0 read data
> > + * @contwriteptr: pointer to endpoint0 write data
> > + * @contreaddatabuffer: read data buffer for endpoint0
> > + */
> > +struct cmdbuf {
> > +   struct usb_ctrlrequest setup;
> > +   u32 contreadcount;
> > +   u32 contwritecount;
> > +   u32 setupseqtx;
> > +   u32 setupseqrx;
> > +   u8 *contreadptr;
> > +   u8 *contwriteptr;
> > +   u8 contreaddatabuffer[64];
> > +};
> > +
> > +static struct cmdbuf ch9_cmdbuf;
>
> NAK, you should support multiple instances of this device in the same
> SoC.
Ok.
>
> > +/*
> > + * Endpoint buffer start addresses in the core
> > + */
>
> fits in one line.
Ok
>
> > +static u32 rambase[8] = { 0x22, 0x1000, 0x1100, 0x1200, 0x1300, 0x1400,
> 0x1500,
> > +                   0x1600 };
> > +
> > +static const char driver_name[] = "xilinx-udc";
> > +static const char ep0name[] = "ep0";
> > +
> > +/* Control endpoint configuration.*/
> > +static struct usb_endpoint_descriptor config_bulk_out_desc = {
> > +   .bLength = USB_DT_ENDPOINT_SIZE,
> > +   .bDescriptorType = USB_DT_ENDPOINT,
> > +   .bEndpointAddress = USB_DIR_OUT,
> > +   .bmAttributes = USB_ENDPOINT_XFER_BULK,
> > +   .wMaxPacketSize = __constant_cpu_to_le16(0x40),
> > +};
> > +
> > +/**
> > + * to_udc - Return the udc instance pointer
> > + * @g: pointer to the usb gadget driver instance
> > + *
> > + * Return: xusb_udc pointer
> > + */
> > +static inline struct xusb_udc *to_udc(struct usb_gadget *g)
> > +{
> > +
>
> remove this whiteline here. Also, this could very well be a macro
> instead of a function. No strong feelings though.
Ok
>
> > +   return container_of(g, struct xusb_udc, gadget);
> > +}
> > +
> > +/**
> > + * xudc_write32 - little endian write to device registers
> > + * @val: data to be written
> > + * @addr: addr of device register
> > + */
> > +static void xudc_write32(u32 val, void __iomem *addr)
>
> usually, people tend to pass addr, offset and value. Then you do the
> quick little math internally:
>
>       iowrite32(val, addr + offset);
>
> no strong feelings either.
>
> > +static int xudc_eptxrx(struct xusb_ep *ep, u8 *bufferptr, u32 bufferlen,
> > +                   u8 direction)
> > +{
> > +   u32 *eprambase;
> > +   u32 bytestosend;
> > +   u8 *temprambase;
> > +   unsigned long timeout;
> > +   u32 srcaddr = 0;
> > +   u32 dstaddr = 0;
> > +   int rc = 0;
> > +   struct xusb_udc *udc = ep->udc;
> > +
> > +   bytestosend = bufferlen;
> > +
> > +   /* Put the transmit buffer into the correct ping-pong buffer.*/
> > +   if (!ep->curbufnum && !ep->buffer0ready) {
> > +           /* Get the Buffer address and copy the transmit data.*/
> > +           eprambase = (u32 __force *)(ep->udc->base_address +
> > +                           ep->rambase);
> > +
> > +           if (ep->udc->dma_enabled) {
> > +                   if (direction == EP_TRANSMIT) {
> > +                           srcaddr = dma_map_single(
> > +                                   ep->udc->gadget.dev.parent,
> > +                                   bufferptr, bufferlen, DMA_TO_DEVICE);
> > +                           dstaddr = virt_to_phys(eprambase);
> > +                           udc->write_fn(bufferlen,
> > +                                           ep->udc->base_address +
> > +                                           ep->endpointoffset +
> > +
>       XUSB_EP_BUF0COUNT_OFFSET);
> > +                           udc->write_fn(XUSB_DMA_BRR_CTRL |
> > +                                           (1 << ep->epnumber),
> > +                                           ep->udc->base_address +
> > +
>       XUSB_DMA_CONTROL_OFFSET);
> > +                   } else {
> > +                           srcaddr = virt_to_phys(eprambase);
> > +                           dstaddr = dma_map_single(
> > +                                   ep->udc->gadget.dev.parent,
> > +                                   bufferptr, bufferlen,
> DMA_FROM_DEVICE);
> > +                           udc->write_fn(XUSB_DMA_BRR_CTRL |
> > +                                   XUSB_DMA_READ_FROM_DPRAM |
> > +                                   (1 << ep->epnumber),
> > +                                   ep->udc->base_address +
> > +                                   XUSB_DMA_CONTROL_OFFSET);
> > +                   }
> > +                   /*
> > +                    * Set the addresses in the DMA source and destination
> > +                    * registers and then set the length into the DMA length
> > +                    * register.
> > +                    */
> > +                   udc->write_fn(srcaddr, ep->udc->base_address +
> > +                           XUSB_DMA_DSAR_ADDR_OFFSET);
> > +                   udc->write_fn(dstaddr, ep->udc->base_address +
> > +                           XUSB_DMA_DDAR_ADDR_OFFSET);
> > +                   udc->write_fn(bufferlen, ep->udc->base_address +
> > +                                   XUSB_DMA_LENGTH_OFFSET);
> > +           } else {
> > +
> > +                   while (bytestosend > 3) {
> > +                           if (direction == EP_TRANSMIT)
> > +                                   *eprambase++ = *(u32 *)bufferptr;
> > +                           else
> > +                                   *(u32 *)bufferptr = *eprambase++;
> > +                           bufferptr += 4;
> > +                           bytestosend -= 4;
> > +                   }
> > +                   temprambase = (u8 *)eprambase;
> > +                   while (bytestosend--) {
> > +                           if (direction == EP_TRANSMIT)
> > +                                   *temprambase++ = *bufferptr++;
> > +                           else
> > +                                   *bufferptr++ = *temprambase++;
> > +                   }
> > +                   /*
> > +                    * Set the Buffer count register with transmit length
> > +                    * and enable the buffer for transmission.
> > +                    */
> > +                   if (direction == EP_TRANSMIT)
> > +                           udc->write_fn(bufferlen,
> > +                                   ep->udc->base_address +
> > +                                   ep->endpointoffset +
> > +                                   XUSB_EP_BUF0COUNT_OFFSET);
> > +                   udc->write_fn(1 << ep->epnumber,
> > +                                   ep->udc->base_address +
> > +                                   XUSB_BUFFREADY_OFFSET);
> > +           }
> > +           ep->buffer0ready = 1;
> > +           ep->curbufnum = 1;
> > +
> > +   } else
> > +           if ((ep->curbufnum == 1) && (!ep->buffer1ready)) {
> > +
> > +                   /* Get the Buffer address and copy the transmit data.*/
> > +                   eprambase = (u32 __force *)(ep->udc->base_address +
> > +                                   ep->rambase + ep-
> >ep_usb.maxpacket);
> > +                   if (ep->udc->dma_enabled) {
> > +                           if (direction == EP_TRANSMIT) {
> > +                                   srcaddr = dma_map_single(
> > +                                           ep->udc->gadget.dev.parent,
> > +                                           bufferptr, bufferlen,
> > +                                           DMA_TO_DEVICE);
> > +                                   dstaddr = virt_to_phys(eprambase);
> > +                                   udc->write_fn(bufferlen,
> > +                                           ep->udc->base_address +
> > +                                           ep->endpointoffset +
> > +
>       XUSB_EP_BUF1COUNT_OFFSET);
> > +                                   udc->write_fn(XUSB_DMA_BRR_CTRL
> |
> > +                                           (1 << (ep->epnumber +
> > +
>       XUSB_STATUS_EP_BUFF2_SHIFT)),
> > +                                           ep->udc->base_address +
> > +
>       XUSB_DMA_CONTROL_OFFSET);
> > +                           } else {
> > +                                   srcaddr = virt_to_phys(eprambase);
> > +                                   dstaddr = dma_map_single(
> > +                                           ep->udc->gadget.dev.parent,
> > +                                           bufferptr, bufferlen,
> > +                                           DMA_FROM_DEVICE);
> > +                                   udc->write_fn(XUSB_DMA_BRR_CTRL
> |
> > +
>       XUSB_DMA_READ_FROM_DPRAM |
> > +                                           (1 << (ep->epnumber +
> > +
>       XUSB_STATUS_EP_BUFF2_SHIFT)),
> > +                                           ep->udc->base_address +
> > +
>       XUSB_DMA_CONTROL_OFFSET);
> > +                           }
> > +                           /*
> > +                            * Set the addresses in the DMA source and
> > +                            * destination registers and then set the length
> > +                            * into the DMA length register.
> > +                            */
> > +                           udc->write_fn(srcaddr,
> > +                                           ep->udc->base_address +
> > +
>       XUSB_DMA_DSAR_ADDR_OFFSET);
> > +                           udc->write_fn(dstaddr,
> > +                                           ep->udc->base_address +
> > +
>       XUSB_DMA_DDAR_ADDR_OFFSET);
> > +                           udc->write_fn(bufferlen,
> > +                                           ep->udc->base_address +
> > +                                           XUSB_DMA_LENGTH_OFFSET);
> > +                   } else {
> > +                           while (bytestosend > 3) {
> > +                                   if (direction == EP_TRANSMIT)
> > +                                           *eprambase++ =
> > +                                                   *(u32 *)bufferptr;
> > +                                   else
> > +                                           *(u32 *)bufferptr =
> > +                                                   *eprambase++;
> > +                                   bufferptr += 4;
> > +                                   bytestosend -= 4;
> > +                           }
> > +                           temprambase = (u8 *)eprambase;
> > +                           while (bytestosend--) {
> > +                                   if (direction == EP_TRANSMIT)
> > +                                           *temprambase++ =
> *bufferptr++;
> > +                                   else
> > +                                           *bufferptr++ =
> *temprambase++;
> > +                           }
> > +                           /*
> > +                            * Set the Buffer count register with transmit
> > +                            * length and enable the buffer for
> > +                            * transmission.
> > +                            */
> > +                           if (direction == EP_TRANSMIT)
> > +                                   udc->write_fn(bufferlen,
> > +                                           ep->udc->base_address +
> > +                                           ep->endpointoffset +
> > +
>       XUSB_EP_BUF1COUNT_OFFSET);
> > +                           udc->write_fn(1 << (ep->epnumber +
> > +
>       XUSB_STATUS_EP_BUFF2_SHIFT),
> > +                                           ep->udc->base_address +
> > +                                           XUSB_BUFFREADY_OFFSET);
> > +                   }
> > +                   ep->buffer1ready = 1;
> > +                   ep->curbufnum = 0;
> > +           } else {
> > +                   /*
> > +                    * None of the ping-pong buffer is free. Return a
> > +                    * failure.
> > +                    */
> > +                   return 1;
> > +           }
> > +
> > +   if (ep->udc->dma_enabled) {
> > +           /*
> > +            * Wait till DMA transaction is complete and
> > +            * check whether the DMA transaction was
> > +            * successful.
> > +            */
> > +           while ((udc->read_fn(ep->udc->base_address +
> > +                           XUSB_DMA_STATUS_OFFSET) &
> > +                           XUSB_DMA_DMASR_BUSY) ==
> XUSB_DMA_DMASR_BUSY) {
> > +                   timeout = jiffies + 10000;
> > +
> > +                   if (time_after(jiffies, timeout)) {
> > +                           rc = -ETIMEDOUT;
> > +                           goto clean;
> > +                   }
> > +
> > +           }
> > +           if ((udc->read_fn(ep->udc->base_address +
> > +                           XUSB_DMA_STATUS_OFFSET) &
> > +                           XUSB_DMA_DMASR_ERROR) ==
> XUSB_DMA_DMASR_ERROR)
> > +                   dev_dbg(&ep->udc->gadget.dev, "DMA Error\n");
> > +clean:
> > +           if (direction == EP_TRANSMIT) {
> > +                   dma_unmap_single(ep->udc->gadget.dev.parent,
> > +                           srcaddr, bufferlen, DMA_TO_DEVICE);
> > +           } else {
> > +                   dma_unmap_single(ep->udc->gadget.dev.parent,
> > +                           dstaddr, bufferlen, DMA_FROM_DEVICE);
> > +           }
> > +   }
> > +   return rc;
> > +}
>
> what a big function. Looks like you could split it into smaller
> functions to aid redability.
Ok.
>
> > +static int xudc_ep_enable(struct usb_ep *_ep,
> > +                     const struct usb_endpoint_descriptor *desc)
> > +{
> > +   struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
> > +   struct xusb_udc *dev = ep->udc;
> > +   u32 tmp;
> > +   u8 eptype = 0;
> > +   unsigned long flags;
> > +   u32 epcfg;
> > +   struct xusb_udc *udc = ep->udc;
> > +
> > +   /*
> > +    * The check for _ep->name == ep0name is not done as this enable i
> used
> > +    * for enabling ep0 also. In other gadget drivers, this ep name is not
> > +    * used.
> > +    */
> > +   if (!_ep || !desc || ep->desc ||
> > +       desc->bDescriptorType != USB_DT_ENDPOINT) {
> > +           dev_dbg(&ep->udc->gadget.dev, "first check fails\n");
>
> you need a more descriptive message here.
Ok.
>
> > +           return -EINVAL;
> > +   }
> > +
> > +   if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
> > +           dev_dbg(&ep->udc->gadget.dev, "bogus device state\n");
> > +           return -ESHUTDOWN;
> > +   }
> > +
> > +
> > +   ep->is_in = ((desc->bEndpointAddress & USB_DIR_IN) != 0);
> > +   /*
> > +    * Bit 3...0: endpoint number
> > +    */
>
> fits in one line, no need for multiline comment.
Ok.
>
> > +   ep->epnumber = (desc->bEndpointAddress & 0x0f);
> > +   ep->stopped = 0;
> > +   ep->desc = desc;
> > +   ep->ep_usb.desc = desc;
> > +   tmp = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
> > +   spin_lock_irqsave(&ep->udc->lock, flags);
> > +   ep->ep_usb.maxpacket = le16_to_cpu(desc->wMaxPacketSize);
> > +
> > +   switch (tmp) {
> > +   case USB_ENDPOINT_XFER_CONTROL:
> > +           dev_dbg(&ep->udc->gadget.dev, "only one control
> endpoint\n");
> > +           /* NON- ISO */
> > +           eptype = 0;
> > +           spin_unlock_irqrestore(&ep->udc->lock, flags);
> > +           return -EINVAL;
> > +   case USB_ENDPOINT_XFER_INT:
> > +           /* NON- ISO */
> > +           eptype = 0;
> > +           if (ep->ep_usb.maxpacket > 64)
> > +                   goto bogus_max;
> > +           break;
> > +   case USB_ENDPOINT_XFER_BULK:
> > +           /* NON- ISO */
> > +           eptype = 0;
> > +           switch (ep->ep_usb.maxpacket) {
> > +           case 8:
> > +           case 16:
> > +           case 32:
> > +           case 64:
> > +           case 512:
> > +           goto ok;
>
> bogus indentation.
Ok
>
> > +           }
> > +bogus_max:
> > +           dev_dbg(&ep->udc->gadget.dev, "bogus maxpacket %d\n",
> > +                   ep->ep_usb.maxpacket);
> > +           spin_unlock_irqrestore(&ep->udc->lock, flags);
> > +           return -EINVAL;
> > +   case USB_ENDPOINT_XFER_ISOC:
> > +           /* ISO */
> > +           eptype = 1;
> > +           ep->is_iso = 1;
> > +           break;
> > +   }
> > +
> > +ok:        ep->eptype = eptype;
>
> the label sits in a line by itself
Ok. Will change.
>
> ok:
>       ep->eptype = eptype;
>
>       ...
>
> > +static int xudc_ep_disable(struct usb_ep *_ep)
> > +{
> > +   struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
> > +   unsigned long flags;
> > +   u32 epcfg;
> > +   struct xusb_udc *udc = ep->udc;
> > +
> > +   if (ep == &ep->udc->ep[XUSB_EP_NUMBER_ZERO]) {
> > +           dev_dbg(&ep->udc->gadget.dev, "Ep0 disable called\n");
> > +           return -EINVAL;
> > +   }
> > +   spin_lock_irqsave(&ep->udc->lock, flags);
> > +
> > +   xudc_nuke(ep, -ESHUTDOWN);
> > +
> > +   /* Restore the endpoint's pristine config */
> > +   ep->desc = NULL;
> > +   ep->ep_usb.desc = NULL;
> > +
> > +   ep->stopped = 1;
> > +
> > +   dev_dbg(&ep->udc->gadget.dev, "USB Ep %d disable\n ", ep-
> >epnumber);
> > +
> > +   /* Disable the endpoint.*/
> > +   epcfg = udc->read_fn(ep->udc->base_address + ep->endpointoffset);
> > +   epcfg &= ~XUSB_EP_CFG_VALID_MASK;
> > +   udc->write_fn(epcfg, ep->udc->base_address + ep->endpointoffset);
> > +   spin_unlock_irqrestore(&ep->udc->lock, flags);
> > +   return 0;
> > +}
> > +
> > +/**
> > + * xudc_ep_alloc_request - Initializes the request queue.
> > + * @_ep: pointer to the usb device endpoint structure.
> > + * @gfp_flags: Flags related to the request call.
> > + *
> > + * Return: pointer to request structure on success and a NULL on failure.
> > + */
> > +static struct usb_request *xudc_ep_alloc_request(struct usb_ep *_ep,
> > +                                            gfp_t gfp_flags)
> > +{
> > +   struct xusb_request *req;
> > +
> > +   req = kmalloc(sizeof(*req), gfp_flags);
>
> use kzalloc...
>
> > +   if (!req)
> > +           return NULL;
> > +
> > +   memset(req, 0, sizeof(*req));
>
> ... and drop this list head.
>
> > +   INIT_LIST_HEAD(&req->queue);
>
> remove this INIT_LIST_HEAD();
Ok.
>
> also, before returning, I suppose you probably want to link the request
> to the endpoint somehow. Usually people save the endpoint pointer inside
> the private request structure (iow: req->ep = ep;)
Ok.
>
> > +   return &req->usb_req;
> > +}
> > +
> > +/**
> > + * xudc_free_request - Releases the request from queue.
> > + * @_ep: pointer to the usb device endpoint structure.
> > + * @_req: pointer to the usb request structure.
> > + */
> > +static void xudc_free_request(struct usb_ep *_ep, struct usb_request *_req)
> > +{
> > +   struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
> > +   struct xusb_request *req;
> > +
> > +   req = container_of(_req, struct xusb_request, usb_req);
>
> define helper macros for these two container_of(). It helps with
> readability.
Ok.
>
> > +   if (!list_empty(&req->queue))
> > +           dev_warn(&ep->udc->gadget.dev, "Error: No memory to free");
>
> what did you want to do here ? Perhaps:
>
>       if (list_empty(&req->queue)) {
>               dev_warn(&ep->udc->gadget.dev, "Error: no request to free");
>               return;
>       }
>
> ???
>
> > +   kfree(req);
> > +}
> > +
> > +/**
> > + * xudc_ep_queue - Adds the request to the queue.
> > + * @_ep: pointer to the usb device endpoint structure.
> > + * @_req: pointer to the usb request structure.
> > + * @gfp_flags: Flags related to the request call.
> > + *
> > + * Return: 0 for success and error value on failure
> > + */
> > +static int xudc_ep_queue(struct usb_ep *_ep, struct usb_request *_req,
> > +                    gfp_t gfp_flags)
> > +{
> > +   struct xusb_request *req;
> > +   struct xusb_ep *ep;
> > +   struct xusb_udc *dev;
> > +   unsigned long flags;
> > +   u32 length, count;
> > +   u8 *corebuf;
> > +   struct xusb_udc *udc;
> > +
> > +   req = container_of(_req, struct xusb_request, usb_req);
> > +   ep = container_of(_ep, struct xusb_ep, ep_usb);
> > +   udc = ep->udc;
> > +
> > +   if (!_req || !_req->complete || !_req->buf ||
> > +                   !list_empty(&req->queue)) {
> > +           dev_dbg(&ep->udc->gadget.dev, "invalid request\n");
> > +           return -EINVAL;
> > +   }
> > +
> > +   if (!_ep || (!ep->desc && ep->ep_usb.name != ep0name)) {
> > +           dev_dbg(&ep->udc->gadget.dev, "invalid ep\n");
> > +           return -EINVAL;
> > +   }
> > +
> > +   dev = ep->udc;
> > +   if (!dev || !dev->driver || dev->gadget.speed ==
> USB_SPEED_UNKNOWN) {
> > +           dev_dbg(&ep->udc->gadget.dev, "%s, bogus device state %p\n",
> > +                   __func__, dev->driver);
> > +           return -ESHUTDOWN;
> > +   }
> > +
> > +   spin_lock_irqsave(&dev->lock, flags);
> > +
> > +   _req->status = -EINPROGRESS;
> > +   _req->actual = 0;
> > +
> > +   /* Try to kickstart any empty and idle queue */
> > +   if (list_empty(&ep->queue)) {
> > +           if (!ep->epnumber) {
> > +                   ep->data = req;
> > +                   if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
> > +                           ch9_cmdbuf.contwriteptr = req->usb_req.buf +
> > +                                                   req->usb_req.actual;
> > +                           prefetch(ch9_cmdbuf.contwriteptr);
> > +                           length = req->usb_req.length -
> > +                                   req->usb_req.actual;
> > +                           corebuf = (void __force *) ((ep->rambase << 2)
> +
> > +                                       ep->udc->base_address);
> > +                           ch9_cmdbuf.contwritecount = length;
> > +                           length = count = min_t(u32, length,
> > +                                                   EP0_MAX_PACKET);
> > +                           while (length--)
> > +                                   *corebuf++ =
> *ch9_cmdbuf.contwriteptr++;
> > +                           udc->write_fn(count, ep->udc->base_address +
> > +                                      XUSB_EP_BUF0COUNT_OFFSET);
> > +                           udc->write_fn(1, ep->udc->base_address +
> > +                                      XUSB_BUFFREADY_OFFSET);
> > +                           ch9_cmdbuf.contwritecount -= count;
> > +                   } else {
> > +                           if (ch9_cmdbuf.setup.wLength) {
> > +                                   ch9_cmdbuf.contreadptr =
> > +                                           req->usb_req.buf +
> > +                                                   req->usb_req.actual;
> > +                                   udc->write_fn(req->usb_req.length ,
> > +                                           ep->udc->base_address +
> > +
>       XUSB_EP_BUF0COUNT_OFFSET);
> > +                                   udc->write_fn(1, ep->udc-
> >base_address
> > +                                           + XUSB_BUFFREADY_OFFSET);
> > +                           } else {
> > +                                   xudc_wrstatus(udc);
> > +                                   req = NULL;
> > +                           }
> > +                   }
> > +           } else {
> > +
> > +                   if (ep->is_in) {
> > +                           dev_dbg(&ep->udc->gadget.dev,
> > +                                   "xudc_write_fifo called from
> queue\n");
> > +                           if (xudc_write_fifo(ep, req) == 1)
> > +                                   req = NULL;
> > +                   } else {
> > +                           dev_dbg(&ep->udc->gadget.dev,
> > +                                   "xudc_read_fifo called from queue\n");
> > +                           if (xudc_read_fifo(ep, req) == 1)
> > +                                   req = NULL;
> > +                   }
> > +           }
> > +   }
> > +
> > +   if (req != NULL)
> > +           list_add_tail(&req->queue, &ep->queue);
> > +   spin_unlock_irqrestore(&dev->lock, flags);
> > +   return 0;
> > +}
> > +
> > +/**
> > + * xudc_ep_dequeue - Removes the request from the queue.
> > + * @_ep: pointer to the usb device endpoint structure.
> > + * @_req: pointer to the usb request structure.
> > + *
> > + * Return: 0 for success and error value on failure
> > + */
> > +static int xudc_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
> > +{
> > +   struct xusb_ep *ep;
> > +   struct xusb_request *req;
> > +   unsigned long flags;
> > +
> > +   ep = container_of(_ep, struct xusb_ep, ep_usb);
> > +
> > +   if (!_ep || ep->ep_usb.name == ep0name)
> > +           return -EINVAL;
> > +
> > +   spin_lock_irqsave(&ep->udc->lock, flags);
> > +   /* Make sure it's actually queued on this endpoint */
> > +   list_for_each_entry(req, &ep->queue, queue) {
> > +           if (&req->usb_req == _req)
> > +                   break;
> > +   }
> > +   if (&req->usb_req != _req) {
> > +           spin_unlock_irqrestore(&ep->udc->lock, flags);
> > +           return -EINVAL;
> > +   }
> > +
> > +   xudc_done(ep, req, -ECONNRESET);
> > +   spin_unlock_irqrestore(&ep->udc->lock, flags);
> > +
> > +   return 0;
> > +}
> > +
> > +static struct usb_ep_ops xusb_ep_ops = {
> > +   .enable = xudc_ep_enable,
> > +   .disable = xudc_ep_disable,
> > +
> > +   .alloc_request = xudc_ep_alloc_request,
> > +   .free_request = xudc_free_request,
> > +
> > +   .queue = xudc_ep_queue,
> > +   .dequeue = xudc_ep_dequeue,
> > +   .set_halt = xudc_ep_set_halt,
> > +};
> > +
> > +/**
> > + * xudc_get_frame - Reads the current usb frame number.
> > + * @gadget: pointer to the usb gadget structure.
> > + *
> > + * Return: current frame number for success and error value on failure.
> > + */
> > +static int xudc_get_frame(struct usb_gadget *gadget)
> > +{
> > +
> > +   struct xusb_udc *udc = to_udc(gadget);
> > +   unsigned long flags;
> > +   int retval;
> > +
> > +   if (!gadget)
> > +           return -ENODEV;
> > +
> > +   local_irq_save(flags);
> > +   retval = udc->read_fn(udc->base_address +
> XUSB_FRAMENUM_OFFSET);
> > +   local_irq_restore(flags);
> > +   return retval;
> > +}
> > +
> > +/**
> > + * xudc_reinit - Restores inital software state.
> > + * @udc: pointer to the usb device controller structure.
> > + */
> > +static void xudc_reinit(struct xusb_udc *udc)
> > +{
> > +   u32 ep_number;
> > +   char name[4];
> > +
> > +   INIT_LIST_HEAD(&udc->gadget.ep_list);
> > +   INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
> > +
> > +   for (ep_number = 0; ep_number < XUSB_MAX_ENDPOINTS;
> ep_number++) {
> > +           struct xusb_ep *ep = &udc->ep[ep_number];
> > +
> > +           if (ep_number) {
> > +                   list_add_tail(&ep->ep_usb.ep_list,
> > +                                   &udc->gadget.ep_list);
> > +                   ep->ep_usb.maxpacket = (unsigned short)~0;
> > +                   sprintf(name, "ep%d", ep_number);
> > +                   strcpy(ep->name, name);
> > +                   ep->ep_usb.name = ep->name;
> > +           } else {
> > +                   ep->ep_usb.name = ep0name;
> > +                   ep->ep_usb.maxpacket = 0x40;
> > +           }
> > +
> > +           ep->ep_usb.ops = &xusb_ep_ops;
> > +           ep->udc = udc;
> > +           ep->epnumber = ep_number;
> > +           ep->desc = NULL;
> > +           ep->stopped = 0;
> > +           /*
> > +            * The configuration register address offset between
> > +            * each endpoint is 0x10.
> > +            */
> > +           ep->endpointoffset = XUSB_EP0_CONFIG_OFFSET +
> > +                                   (ep_number * 0x10);
> > +           ep->is_in = 0;
> > +           ep->is_iso = 0;
> > +           ep->maxpacket = 0;
> > +           xudc_epconfig(ep, udc);
> > +           udc->status = 0;
> > +
> > +           /* Initialize one queue per endpoint */
> > +           INIT_LIST_HEAD(&ep->queue);
> > +   }
> > +}
> > +
> > +/**
> > + * xudc_stop_activity - Stops any further activity on the device.
> > + * @udc: pointer to the usb device controller structure.
> > + */
> > +static void xudc_stop_activity(struct xusb_udc *udc)
> > +{
> > +   struct usb_gadget_driver *driver = udc->driver;
> > +   int i;
> > +
> > +   if (udc->gadget.speed == USB_SPEED_UNKNOWN)
> > +           driver = NULL;
> > +   udc->gadget.speed = USB_SPEED_HIGH;
> > +
> > +   for (i = 0; i < XUSB_MAX_ENDPOINTS; i++) {
> > +           struct xusb_ep *ep = &udc->ep[i];
> > +
> > +           ep->stopped = 1;
> > +           xudc_nuke(ep, -ESHUTDOWN);
> > +   }
> > +   if (driver) {
> > +           spin_unlock(&udc->lock);
> > +           driver->disconnect(&udc->gadget);
> > +           spin_lock(&udc->lock);
> > +   }
>
> you shouldn't be calling disconnect here, udc-core is doing that for
> you.
Ok.
>
> > +
> > +   xudc_reinit(udc);
> > +}
> > +
> > +/**
> > + * xudc_start - Starts the device.
> > + * @gadget: pointer to the usb gadget structure
> > + * @driver: pointer to gadget driver structure
> > + *
> > + * Return: zero always
> > + */
> > +static int xudc_start(struct usb_gadget *gadget,
> > +                   struct usb_gadget_driver *driver)
> > +{
> > +   struct xusb_udc *udc = to_udc(gadget);
> > +   const struct usb_endpoint_descriptor *d = &config_bulk_out_desc;
> > +
> > +   driver->driver.bus = NULL;
> > +   /* hook up the driver */
> > +   udc->driver = driver;
> > +   udc->gadget.dev.driver = &driver->driver;
> > +   udc->gadget.speed = driver->max_speed;
> > +
> > +   /* Enable the USB device.*/
> > +   xudc_ep_enable(&udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb, d);
> > +   udc->write_fn(0, (udc->base_address + XUSB_ADDRESS_OFFSET));
> > +   udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
> > +           udc->base_address + XUSB_CONTROL_OFFSET);
> > +
> > +   return 0;
> > +}
> > +
> > +/**
> > + * xudc_stop - stops the device.
> > + * @gadget: pointer to the usb gadget structure
> > + * @driver: pointer to usb gadget driver structure
> > + *
> > + * Return: zero always
> > + */
> > +static int xudc_stop(struct usb_gadget *gadget,
> > +           struct usb_gadget_driver *driver)
> > +{
> > +   struct xusb_udc *udc = to_udc(gadget);
> > +   unsigned long flags;
> > +   u32 crtlreg;
> > +
> > +   /* Disable USB device.*/
> > +   crtlreg = udc->read_fn(udc->base_address + XUSB_CONTROL_OFFSET);
> > +   crtlreg &= ~XUSB_CONTROL_USB_READY_MASK;
> > +   udc->write_fn(crtlreg, udc->base_address + XUSB_CONTROL_OFFSET);
> > +   spin_lock_irqsave(&udc->lock, flags);
> > +   udc->gadget.speed = USB_SPEED_UNKNOWN;
> > +   xudc_stop_activity(udc);
> > +   spin_unlock_irqrestore(&udc->lock, flags);
> > +
> > +   udc->gadget.dev.driver = NULL;
> > +   udc->driver = NULL;
> > +
> > +   return 0;
> > +}
> > +
> > +static const struct usb_gadget_ops xusb_udc_ops = {
> > +   .get_frame = xudc_get_frame,
> > +   .udc_start = xudc_start,
> > +   .udc_stop  = xudc_stop,
> > +};
> > +
> > +/**
> > + * xudc_startup_handler - The usb device controller interrupt handler.
> > + * @callbackref: pointer to the reference value being passed.
> > + * @intrstatus: The mask value containing the interrupt sources.
> > + *
> > + * This handler handles the RESET, SUSPEND and DISCONNECT interrupts.
> > + */
> > +static void xudc_startup_handler(void *callbackref, u32 intrstatus)
>
> why void ? why isn't this returning irqreturn_t ?
>
> > +{
> > +   struct xusb_udc *udc;
> > +   u32 intrreg;
> > +
> > +   udc = (struct xusb_udc *) callbackref;
>
> you don't need the cast here.
>
> > +   if (intrstatus & XUSB_STATUS_RESET_MASK) {
> > +           dev_dbg(&udc->gadget.dev, "Reset\n");
> > +           if (intrstatus & XUSB_STATUS_HIGH_SPEED_MASK)
> > +                   udc->gadget.speed = USB_SPEED_HIGH;
> > +           else
> > +                   udc->gadget.speed = USB_SPEED_FULL;
> > +
> > +           if (udc->status == 1) {
> > +                   udc->status = 0;
> > +                   /* Set device address to 0.*/
> > +                   udc->write_fn(0, udc->base_address +
> > +                                           XUSB_ADDRESS_OFFSET);
> > +           }
> > +           /* Disable the Reset interrupt.*/
> > +           intrreg = udc->read_fn(udc->base_address +
> > +                                   XUSB_IER_OFFSET);
> > +
> > +           intrreg &= ~XUSB_STATUS_RESET_MASK;
> > +           udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> > +           /* Enable thesuspend and disconnect.*/
> > +           intrreg =
> > +                   udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
> > +           intrreg |=
> > +                   (XUSB_STATUS_SUSPEND_MASK |
> > +                    XUSB_STATUS_DISCONNECT_MASK);
> > +           udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> > +   }
> > +
> > +   if (intrstatus & XUSB_STATUS_DISCONNECT_MASK) {
> > +
> > +           /* Disable the Disconnect interrupt.*/
> > +           intrreg =
> > +                   udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
> > +           intrreg &= ~XUSB_STATUS_DISCONNECT_MASK;
> > +           udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> > +           dev_dbg(&udc->gadget.dev, "Disconnect\n");
> > +           if (udc->status == 1) {
> > +                   udc->status = 0;
> > +                   /* Set device address to 0.*/
> > +                   udc->write_fn(0, udc->base_address +
> > +                                   XUSB_ADDRESS_OFFSET);
> > +                   /* Enable the USB device.*/
> > +                   udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
> > +                           udc->base_address +
> XUSB_CONTROL_OFFSET);
> > +           }
> > +
> > +           /* Enable the suspend and reset interrupts.*/
> > +           intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET)
> |
> > +                           XUSB_STATUS_SUSPEND_MASK |
> > +                           XUSB_STATUS_RESET_MASK;
> > +           udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> > +           xudc_stop_activity(udc);
> > +   }
> > +
> > +   if (intrstatus & XUSB_STATUS_SUSPEND_MASK) {
> > +           dev_dbg(&udc->gadget.dev, "Suspend\n");
> > +           /* Disable the Suspend interrupt.*/
> > +           intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET)
> &
> > +                                   ~XUSB_STATUS_SUSPEND_MASK;
> > +           udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> > +           /* Enable the Disconnect and reset interrupts. */
> > +           intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET)
> |
> > +                           XUSB_STATUS_DISCONNECT_MASK |
> > +                           XUSB_STATUS_RESET_MASK;
> > +           udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
> > +   }
> > +}
> > +
> > +/**
> > + * xudc_set_clear_feature - Executes the set feature and clear feature
> commands.
> > + * @udc: pointer to the usb device controller structure.
> > + * @flag: Value deciding the set or clear action.
> > + *
> > + * Processes the SET_FEATURE and CLEAR_FEATURE commands.
> > + */
> > +static void xudc_set_clear_feature(struct xusb_udc *udc, int flag)
> > +{
> > +   u8 endpoint;
> > +   u8 outinbit;
> > +   u32 epcfgreg;
> > +
> > +   switch (ch9_cmdbuf.setup.bRequestType) {
> > +   case STANDARD_OUT_DEVICE:
>
> use the macros from <linux/usb/ch9.h>
Ok.
>
> > +           switch (ch9_cmdbuf.setup.wValue) {
> > +           case USB_DEVICE_TEST_MODE:
> > +                   /*
> > +                    * The Test Mode will be executed
> > +                    * after the status phase.
> > +                    */
> > +                   break;
> > +
> > +           default:
> > +                   epcfgreg = udc->read_fn(udc->base_address +
> > +                           udc-
> >ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> > +                   epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> > +                   udc->write_fn(epcfgreg, udc->base_address +
> > +                           udc-
> >ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> > +                   break;
> > +           }
> > +           break;
> > +
> > +   case STANDARD_OUT_ENDPOINT:
>
> use the macros from <linux/usb/ch9.h>
Ok.
>
> > +           if (!ch9_cmdbuf.setup.wValue) {
> > +                   endpoint = ch9_cmdbuf.setup.wIndex & 0xf;
> > +                   outinbit = ch9_cmdbuf.setup.wIndex & 0x80;
> > +                   outinbit = outinbit >> 7;
> > +
> > +                   /* Make sure direction matches.*/
> > +                   if (outinbit != udc->ep[endpoint].is_in) {
> > +                           epcfgreg = udc->read_fn(udc->base_address +
> > +                                           udc-
> >ep[XUSB_EP_NUMBER_ZERO].
> > +                                           endpointoffset);
> > +                           epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> > +
> > +                           udc->write_fn(epcfgreg, udc->base_address +
> > +                                   udc->ep[XUSB_EP_NUMBER_ZERO].
> > +                                   endpointoffset);
> > +                           return;
> > +                   }
> > +
> > +                   if (!endpoint) {
> > +                           /* Clear the stall.*/
> > +                           epcfgreg = udc->read_fn(udc->base_address +
> > +                                           udc-
> >ep[XUSB_EP_NUMBER_ZERO].
> > +                                           endpointoffset);
> > +
> > +                           epcfgreg &= ~XUSB_EP_CFG_STALL_MASK;
> > +
> > +                           udc->write_fn(epcfgreg, udc->base_address +
> > +                                   udc->ep[XUSB_EP_NUMBER_ZERO].
> > +                                   endpointoffset);
> > +                           break;
> > +                   } else {
> > +                           if (flag == 1) {
> > +                                   epcfgreg =
> > +                                           udc->read_fn(udc-
> >base_address +
> > +                                           udc-
> >ep[XUSB_EP_NUMBER_ZERO].
> > +                                           endpointoffset);
> > +                                   epcfgreg |=
> XUSB_EP_CFG_STALL_MASK;
> > +
> > +                                   udc->write_fn(epcfgreg,
> > +                                           udc->base_address +
> > +                                           udc-
> >ep[XUSB_EP_NUMBER_ZERO].
> > +                                           endpointoffset);
> > +                           } else {
> > +                                   /* Unstall the endpoint.*/
> > +                                   epcfgreg =
> > +                                           udc->read_fn(udc-
> >base_address +
> > +                                           udc->ep[endpoint].
> > +                                           endpointoffset);
> > +                                   epcfgreg &=
> > +                                           ~(XUSB_EP_CFG_STALL_MASK
> |
> > +
> XUSB_EP_CFG_DATA_TOGGLE_MASK);
> > +                                   udc->write_fn(epcfgreg,
> > +                                           udc->base_address +
> > +                                           udc->ep[endpoint].
> > +                                           endpointoffset);
> > +                           }
> > +                   }
> > +           }
> > +           break;
> > +
> > +   default:
> > +           epcfgreg = udc->read_fn(udc->base_address +
> > +                           udc-
> >ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> > +           epcfgreg |= XUSB_EP_CFG_STALL_MASK;
> > +           udc->write_fn(epcfgreg, udc->base_address +
> > +                   udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> > +           return;
> > +   }
> > +
> > +   /* Cause and valid status phase to be issued.*/
> > +   xudc_wrstatus(udc);
> > +
> > +   return;
> > +}
> > +
> > +/**
> > + * xudc_execute_cmd - Processes the USB specification chapter 9 commands.
> > + * @udc: pointer to the usb device controller structure.
> > + *
> > + * Return: 0 for success and the same reuqest command if it is not handled.
> > + */
> > +static int xudc_execute_cmd(struct xusb_udc *udc)
> > +{
> > +
> > +   if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
> > +                   USB_TYPE_STANDARD) {
> > +           /* Process the chapter 9 command.*/
> > +           switch (ch9_cmdbuf.setup.bRequest) {
> > +
> > +           case USB_REQ_CLEAR_FEATURE:
> > +                   xudc_set_clear_feature(udc, 0);
> > +                   break;
> > +
> > +           case USB_REQ_SET_FEATURE:
> > +                   xudc_set_clear_feature(udc, 1);
> > +                   break;
> > +
> > +           case USB_REQ_SET_ADDRESS:
> > +                   xudc_wrstatus(udc);
> > +                   break;
> > +
> > +           case USB_REQ_SET_CONFIGURATION:
> > +                   udc->status = 1;
> > +                   return ch9_cmdbuf.setup.bRequest;
> > +
> > +           default:
> > +                   /*
> > +                    * Return the same request to application for
> > +                    * handling.
> > +                    */
> > +                   return ch9_cmdbuf.setup.bRequest;
> > +           }
> > +
> > +   } else {
> > +           if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
> > +                USB_TYPE_CLASS)
> > +                   return ch9_cmdbuf.setup.bRequest;
> > +   }
> > +   return 0;
> > +}
> > +
> > +/**
> > + * xudc_handle_setup - Processes the setup packet.
> > + * @udc: pointer to the usb device controller structure.
> > + * @ctrl: pointer to the usb control endpoint structure.
> > + *
> > + * Return: 0 for success and request to be handled by application if
> > + *         is not handled by the driver.
> > + */
> > +static int xudc_handle_setup(struct xusb_udc *udc, struct usb_ctrlrequest
> *ctrl)
> > +{
> > +   u32 *ep0rambase;
> > +
> > +   /* Load up the chapter 9 command buffer.*/
> > +   ep0rambase = (u32 __force *) (udc->base_address +
> > +                             XUSB_SETUP_PKT_ADDR_OFFSET);
> > +   memcpy((void *)&ch9_cmdbuf.setup, (void *)ep0rambase, 8);
> > +
> > +   ctrl->bRequestType = ch9_cmdbuf.setup.bRequestType;
> > +   ctrl->bRequest     = ch9_cmdbuf.setup.bRequest;
> > +   ctrl->wValue       = ch9_cmdbuf.setup.wValue;
> > +   ctrl->wIndex       = ch9_cmdbuf.setup.wIndex;
> > +   ctrl->wLength      = ch9_cmdbuf.setup.wLength;
> > +
> > +   ch9_cmdbuf.setup.wValue = cpu_to_le16(ch9_cmdbuf.setup.wValue);
> > +   ch9_cmdbuf.setup.wIndex = cpu_to_le16(ch9_cmdbuf.setup.wIndex);
> > +   ch9_cmdbuf.setup.wLength = cpu_to_le16(ch9_cmdbuf.setup.wLength);
> > +
> > +   /* Restore ReadPtr to data buffer.*/
> > +   ch9_cmdbuf.contreadptr = &ch9_cmdbuf.contreaddatabuffer[0];
> > +   ch9_cmdbuf.contreadcount = 0;
> > +
> > +   if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
> > +           /* Execute the get command.*/
> > +           ch9_cmdbuf.setupseqrx = STATUS_PHASE;
> > +           ch9_cmdbuf.setupseqtx = DATA_PHASE;
> > +           return xudc_execute_cmd(udc);
> > +   } else {
> > +           /* Execute the put command.*/
> > +           ch9_cmdbuf.setupseqrx = DATA_PHASE;
> > +           ch9_cmdbuf.setupseqtx = STATUS_PHASE;
> > +           return xudc_execute_cmd(udc);
> > +   }
> > +   /* Control should never come here.*/
> > +   return 0;
> > +}
> > +
> > +/**
> > + * xudc_ep0_out - Processes the endpoint 0 OUT token.
> > + * @udc: pointer to the usb device controller structure.
> > + */
> > +static void xudc_ep0_out(struct xusb_udc *udc)
> > +{
> > +   struct xusb_ep *ep;
> > +   u8 count;
> > +   u8 *ep0rambase;
> > +   u16 index;
> > +
> > +   ep = &udc->ep[0];
> > +   switch (ch9_cmdbuf.setupseqrx) {
> > +   case STATUS_PHASE:
>
> what about the setup phase ?
This not USB phases and just internal to driver.
>
> > +           /*
> > +            * This resets both state machines for the next
> > +            * Setup packet.
> > +            */
> > +           ch9_cmdbuf.setupseqrx = SETUP_PHASE;
> > +           ch9_cmdbuf.setupseqtx = SETUP_PHASE;
> > +           ep->data->usb_req.actual = ep->data->usb_req.length;
> > +           xudc_done(ep, ep->data, 0);
> > +           break;
> > +
> > +   case DATA_PHASE:
> > +           count = udc->read_fn(udc->base_address +
> > +                           XUSB_EP_BUF0COUNT_OFFSET);
> > +           /* Copy the data to be received from the DPRAM. */
> > +           ep0rambase =
> > +                   (u8 __force *) (udc->base_address +
> > +                           (udc->ep[XUSB_EP_NUMBER_ZERO].rambase
> << 2));
> > +
> > +           for (index = 0; index < count; index++)
> > +                   *ch9_cmdbuf.contreadptr++ = *ep0rambase++;
> > +
> > +           ch9_cmdbuf.contreadcount += count;
> > +           if (ch9_cmdbuf.setup.wLength == ch9_cmdbuf.contreadcount) {
> > +                           xudc_wrstatus(udc);
> > +           } else {
> > +                   /* Set the Tx packet size and the Tx enable bit.*/
> > +                   udc->write_fn(0, udc->base_address +
> > +                           XUSB_EP_BUF0COUNT_OFFSET);
> > +                   udc->write_fn(1, udc->base_address +
> > +                           XUSB_BUFFREADY_OFFSET);
> > +           }
> > +           break;
> > +
> > +   default:
> > +           break;
> > +   }
> > +}
> > +
> > +/**
> > + * xudc_ep0_in - Processes the endpoint 0 IN token.
> > + * @udc: pointer to the usb device controller structure.
> > + */
> > +static void xudc_ep0_in(struct xusb_udc *udc)
> > +{
> > +   struct xusb_ep *ep;
> > +   u32 epcfgreg;
> > +   u16 count;
> > +   u16 length;
> > +   u8 *ep0rambase;
> > +
> > +   ep = &udc->ep[0];
> > +   switch (ch9_cmdbuf.setupseqtx) {
> > +   case STATUS_PHASE:
> > +           if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_ADDRESS) {
> > +                   /* Set the address of the device.*/
> > +                   udc->write_fn(ch9_cmdbuf.setup.wValue,
> > +                                   (udc->base_address +
> > +                                   XUSB_ADDRESS_OFFSET));
> > +                   break;
> > +           } else {
> > +                   if (ch9_cmdbuf.setup.bRequest ==
> USB_REQ_SET_FEATURE) {
> > +                           if (ch9_cmdbuf.setup.bRequestType ==
> > +                               STANDARD_OUT_DEVICE) {
> > +                                   if (ch9_cmdbuf.setup.wValue ==
> > +                                       USB_DEVICE_TEST_MODE)
> > +                                           udc->write_fn(TEST_J,
> > +                                                   udc->base_address +
> > +
>       XUSB_TESTMODE_OFFSET);
>
> use a switch.
>
> > +                           }
> > +                   }
> > +           }
> > +           ep->data->usb_req.actual = ch9_cmdbuf.setup.wLength;
> > +           xudc_done(ep, ep->data, 0);
> > +           break;
> > +
> > +   case DATA_PHASE:
> > +           if (!ch9_cmdbuf.contwritecount) {
> > +                   /*
> > +                    * We're done with data transfer, next
> > +                    * will be zero length OUT with data toggle of
> > +                    * 1. Setup data_toggle.
> > +                    */
> > +                   epcfgreg = udc->read_fn(udc->base_address +
> > +                           udc-
> >ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> > +                   epcfgreg |= XUSB_EP_CFG_DATA_TOGGLE_MASK;
> > +                   udc->write_fn(epcfgreg, udc->base_address +
> > +                           udc-
> >ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
> > +                   count = 0;
> > +
> > +                   ch9_cmdbuf.setupseqtx = STATUS_PHASE;
> > +
> > +           } else {
> > +                   length = count = min_t(u32,
> ch9_cmdbuf.contwritecount,
> > +                                           EP0_MAX_PACKET);
> > +                   /* Copy the data to be transmitted into the DPRAM. */
> > +                   ep0rambase = (u8 __force *) (udc->base_address +
> > +                           (udc->ep[XUSB_EP_NUMBER_ZERO].rambase
> << 2));
> > +                   while (length--)
> > +                           *ep0rambase++ =
> *ch9_cmdbuf.contwriteptr++;
> > +
> > +                   ch9_cmdbuf.contwritecount -= count;
> > +           }
> > +           udc->write_fn(count, udc->base_address +
> > +                           XUSB_EP_BUF0COUNT_OFFSET);
> > +           udc->write_fn(1, udc->base_address +
> XUSB_BUFFREADY_OFFSET);
> > +           break;
> > +
> > +   default:
> > +           break;
> > +   }
> > +}
> > +
> > +/**
> > + * xudc_ctrl_ep_handler - Endpoint 0 interrupt handler.
> > + * @callbackref: pointer to the call back reference passed by the
> > + *                 main interrupt handler.
> > + * @intrstatus:    It's the mask value for the interrupt sources on
> endpoint 0.
> > + *
> > + * Processes the commands received during enumeration phase.
> > + */
> > +static void xudc_ctrl_ep_handler(void *callbackref, u32 intrstatus)
> > +{
> > +   struct xusb_udc *udc;
> > +   struct usb_ctrlrequest ctrl;
> > +   int status;
> > +   int epnum;
> > +   u32 intrreg;
> > +
> > +   udc = (struct xusb_udc *) callbackref;
> > +   /* Process the end point zero buffer interrupt.*/
> > +   if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK) {
> > +           if (intrstatus & XUSB_STATUS_SETUP_PACKET_MASK) {
> > +                   /*
> > +                    * Enable the Disconnect, suspend and reset
> > +                    * interrupts.
> > +                    */
> > +                   intrreg = udc->read_fn(udc->base_address +
> > +                                   XUSB_IER_OFFSET);
> > +                   intrreg |= XUSB_STATUS_DISCONNECT_MASK |
> > +                                    XUSB_STATUS_SUSPEND_MASK |
> > +                                    XUSB_STATUS_RESET_MASK;
> > +                   udc->write_fn(intrreg,
> > +                           udc->base_address + XUSB_IER_OFFSET);
> > +                   status = xudc_handle_setup(udc, &ctrl);
> > +                   if (status || ((ch9_cmdbuf.setup.bRequestType &
> > +                                   USB_TYPE_MASK) ==
> USB_TYPE_CLASS)) {
> > +                           /*
> > +                            * Request is to be handled by the gadget
> > +                            * driver.
> > +                            */
> > +                           spin_unlock(&udc->lock);
> > +                           udc->driver->setup(&udc->gadget, &ctrl);
> > +                           spin_lock(&udc->lock);
> > +                   } else {
> > +                           if (ctrl.bRequest ==
> USB_REQ_CLEAR_FEATURE) {
> > +                                   epnum = ctrl.wIndex & 0xf;
> > +                                   udc->ep[epnum].stopped = 0;
> > +                           }
> > +                           if (ctrl.bRequest == USB_REQ_SET_FEATURE) {
> > +                                   epnum = ctrl.wIndex & 0xf;
> > +                                   udc->ep[epnum].stopped = 1;
> > +                           }
> > +                   }
> > +           } else {
> > +                   if (intrstatus & XUSB_STATUS_FIFO_BUFF_RDY_MASK)
> > +                           xudc_ep0_out(udc);
> > +                   else if (intrstatus &
> > +                           XUSB_STATUS_FIFO_BUFF_FREE_MASK)
> > +                           xudc_ep0_in(udc);
> > +           }
> > +   }
> > +}
> > +
> > +/**
> > + * xudc_nonctrl_ep_handler - Non control endpoint interrupt handler.
> > + * @callbackref: pointer to the call back reference passed by the
> > + *                 main interrupt handler.
> > + * @epnum: End point number for which the interrupt is to be processed
> > + * @intrstatus:    It's the mask value for the interrupt sources on
> endpoint 0.
> > + */
> > +static void xudc_nonctrl_ep_handler(void *callbackref, u8 epnum,
> > +                                   u32 intrstatus)
> > +{
> > +
> > +   struct xusb_request *req;
> > +   struct xusb_udc *udc;
> > +   struct xusb_ep *ep;
> > +
> > +   udc = (struct xusb_udc *) callbackref;
> > +   ep = &udc->ep[epnum];
> > +   /* Process the End point interrupts.*/
> > +   if (intrstatus & (XUSB_STATUS_EP0_BUFF1_COMP_MASK << epnum))
> > +           ep->buffer0ready = 0;
> > +   if (intrstatus & (XUSB_STATUS_EP0_BUFF2_COMP_MASK << epnum))
> > +           ep->buffer1ready = 0;
> > +
> > +   if (list_empty(&ep->queue))
> > +           req = NULL;
> > +   else
> > +           req = list_entry(ep->queue.next, struct xusb_request, queue);
> > +   if (!req)
> > +           return;
> > +   if (ep->is_in)
> > +           xudc_write_fifo(ep, req);
> > +   else
> > +           xudc_read_fifo(ep, req);
> > +}
> > +
> > +/**
> > + * xudc_irq - The main interrupt handler.
> > + * @irq: The interrupt number.
> > + * @_udc: pointer to the usb device controller structure.
> > + *
> > + * Return: IRQ_HANDLED after the interrupt is handled.
> > + */
> > +static irqreturn_t xudc_irq(int irq, void *_udc)
> > +{
> > +   struct xusb_udc *udc = _udc;
> > +   u32 intrstatus;
> > +   u8 index;
> > +   u32 bufintr;
> > +
> > +   spin_lock(&(udc->lock));
> > +
> > +   /* Read the Interrupt Status Register.*/
> > +   intrstatus = udc->read_fn(udc->base_address + XUSB_STATUS_OFFSET);
> > +   /* Call the handler for the event interrupt.*/
> > +   if (intrstatus & XUSB_STATUS_INTR_EVENT_MASK) {
> > +           /*
> > +            * Check if there is any action to be done for :
> > +            * - USB Reset received {XUSB_STATUS_RESET_MASK}
> > +            * - USB Suspend received {XUSB_STATUS_SUSPEND_MASK}
>
> what about resume ? No resume ?
>
> > +            * - USB Disconnect received
> {XUSB_STATUS_DISCONNECT_MASK}
> > +            */
> > +           xudc_startup_handler(udc, intrstatus);
> > +   }
> > +
> > +   /* Check the buffer completion interrupts */
> > +   if (intrstatus & XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK) {
> > +           if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK)
> > +                   xudc_ctrl_ep_handler(udc, intrstatus);
> > +
> > +           for (index = 1; index < 8; index++) {
> > +                   bufintr = ((intrstatus &
> > +
>       (XUSB_STATUS_EP1_BUFF1_COMP_MASK <<
> > +                                                   (index - 1))) ||
> > +                              (intrstatus &
> > +
>       (XUSB_STATUS_EP1_BUFF2_COMP_MASK <<
> > +                                                   (index - 1))));
> > +
> > +                   if (bufintr)
> > +                           xudc_nonctrl_ep_handler(udc, index,
> > +                                           intrstatus);
> > +           }
> > +   }
> > +   spin_unlock(&(udc->lock));
> > +
> > +   return IRQ_HANDLED;
> > +}
> > +
> > +
> > +
> > +/**
> > + * xudc_release - Releases device structure
> > + * @dev: pointer to device structure
> > + */
> > +static void xudc_release(struct device *dev)
> > +{
> > +}
>
> you don't need to define this, udc-core will give you a release method.
Ok.
>
> > +/**
> > + * xudc_probe - The device probe function for driver initialization.
> > + * @pdev: pointer to the platform device structure.
> > + *
> > + * Return: 0 for success and error value on failure
> > + */
> > +static int xudc_probe(struct platform_device *pdev)
> > +{
> > +   struct device_node *np = pdev->dev.of_node;
> > +   struct resource *res;
> > +   struct xusb_udc *udc;
> > +   int irq;
> > +   int ret;
> > +
> > +   dev_dbg(&pdev->dev, "%s(%p)\n", __func__, pdev);
> > +
> > +   udc = devm_kzalloc(&pdev->dev, sizeof(*udc), GFP_KERNEL);
> > +   if (!udc)
> > +           return -ENOMEM;
> > +
> > +   /* Map the registers */
> > +   res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > +   udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> > +                                            resource_size(res));
>
> use devm_ioremap_resource() instead.
Ok.
>
> > +   if (!udc->base_address)
> > +           return -ENOMEM;
> > +
> > +   irq = platform_get_irq(pdev, 0);
> > +   if (irq < 0) {
> > +           dev_err(&pdev->dev, "unable to get irq\n");
> > +           return irq;
> > +   }
> > +   ret = request_irq(irq, xudc_irq, 0, dev_name(&pdev->dev), udc);
>
> devm_request_irq()
Ok.
>
> > +   if (ret < 0) {
> > +           dev_dbg(&pdev->dev, "unable to request irq %d", irq);
> > +           goto fail0;
> > +   }
> > +
> > +   udc->dma_enabled = of_property_read_bool(np, "xlnx,include-dma");
> > +
> > +   /* Setup gadget structure */
> > +   udc->gadget.ops = &xusb_udc_ops;
> > +   udc->gadget.max_speed = USB_SPEED_HIGH;
> > +   udc->gadget.speed = USB_SPEED_HIGH;
> > +   udc->gadget.ep0 = &udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb;
> > +   udc->gadget.name = driver_name;
> > +
> > +   dev_set_name(&udc->gadget.dev, "xilinx_udc");
> > +   udc->gadget.dev.release = xudc_release;
> > +   udc->gadget.dev.parent = &pdev->dev;
>
> don't touch the gadget device directly, udc-core handles all of that for
> you.
>
> > +
> > +   spin_lock_init(&udc->lock);
> > +
> > +   /* Check for IP endianness */
> > +   udc->write_fn = xudc_write32_be;
> > +   udc->read_fn = xudc_read32_be;
> > +   udc->write_fn(TEST_J, udc->base_address + XUSB_TESTMODE_OFFSET);
> > +   if ((udc->read_fn(udc->base_address + XUSB_TESTMODE_OFFSET))
> > +                   != TEST_J) {
> > +           udc->write_fn = xudc_write32;
> > +           udc->read_fn = xudc_read32;
> > +   }
> > +   udc->write_fn(0, udc->base_address + XUSB_TESTMODE_OFFSET);
> > +
> > +   xudc_reinit(udc);
> > +
> > +   /* Set device address to 0.*/
> > +   udc->write_fn(0, udc->base_address + XUSB_ADDRESS_OFFSET);
> > +
> > +   ret = usb_add_gadget_udc(&pdev->dev, &udc->gadget);
> > +   if (ret)
> > +           goto fail1;
> > +
> > +   /* Enable the interrupts.*/
> > +   udc->write_fn(XUSB_STATUS_GLOBAL_INTR_MASK |
> XUSB_STATUS_RESET_MASK |
> > +                 XUSB_STATUS_DISCONNECT_MASK |
> XUSB_STATUS_SUSPEND_MASK |
> > +                 XUSB_STATUS_FIFO_BUFF_RDY_MASK |
> > +                 XUSB_STATUS_FIFO_BUFF_FREE_MASK |
> > +                 XUSB_STATUS_EP0_BUFF1_COMP_MASK,
> > +                 udc->base_address + XUSB_IER_OFFSET);
> > +
> > +   platform_set_drvdata(pdev, udc);
> > +
> > +   dev_info(&pdev->dev, "%s #%d at 0x%08X mapped to 0x%08X\n",
> > +            driver_name, 0, (u32)res->start,
> > +            (u32 __force)udc->base_address);
>
> make this a dev_vdbg().
Ok.
>
> > +
> > +   return 0;
> > +
> > +fail1:
> > +   free_irq(irq, udc);
> > +fail0:
> > +   dev_dbg(&pdev->dev, "probe failed, %d\n", ret);
>
> this should be dev_err().
Ok.
>
> > +   return ret;
> > +}
> > +
> > +/**
> > + * xudc_remove - Releases the resources allocated during the initialization.
> > + * @pdev: pointer to the platform device structure.
> > + *
> > + * Return: 0 for success and error value on failure
> > + */
> > +static int xudc_remove(struct platform_device *pdev)
> > +{
> > +   struct xusb_udc *udc = platform_get_drvdata(pdev);
> > +
> > +   dev_dbg(&pdev->dev, "remove\n");
> > +   usb_del_gadget_udc(&udc->gadget);
> > +   if (udc->driver)
> > +           return -EBUSY;
> > +
> > +   device_unregister(&udc->gadget.dev);
>
> remove this line.
Ok.
>
> Also, you're leaking your IRQ handler, if you switch to
> devm_request_irq() then you don't need to free it, though.
Ok.
>
> From the looks of it, I doubt this was actually tested, you need a lot
> of work on this driver.
Tested on both ARM and Microblaze architectures with Mass storage gadget.
Will send a v2 after addressing all your comments.
>
> cheers
>
> --
> balbi

Thanks,
Sundeep.B.S.


This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately.



^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-20 18:23   ` Felipe Balbi
                     ` (2 preceding siblings ...)
  (?)
@ 2014-02-21 12:04   ` Mark Rutland
  2014-02-21 13:41     ` Michal Simek
  2014-02-21 15:41       ` Felipe Balbi
  -1 siblings, 2 replies; 75+ messages in thread
From: Mark Rutland @ 2014-02-21 12:04 UTC (permalink / raw)
  To: Felipe Balbi, Subbaraya Sundeep Bhatta
  Cc: Greg Kroah-Hartman, linux-usb, linux-kernel, michals,
	Subbaraya Sundeep Bhatta, devicetree


On Thu, Feb 20, 2014 at 06:23:13PM +0000, Felipe Balbi wrote:
> Hi,
> 
> On Wed, Feb 19, 2014 at 03:10:45PM +0530, Subbaraya Sundeep Bhatta wrote:
> > This patch adds xilinx axi usb2 device driver support
> > 
> > Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta@xilinx.com>
> > ---
> >  .../devicetree/bindings/usb/xilinx_usb.txt         |   21 +
> >  drivers/usb/gadget/Kconfig                         |   14 +
> >  drivers/usb/gadget/Makefile                        |    1 +
> >  drivers/usb/gadget/xilinx_udc.c                    | 2045 ++++++++++++++++++++
> >  4 files changed, 2081 insertions(+), 0 deletions(-)
> >  create mode 100644 Documentation/devicetree/bindings/usb/xilinx_usb.txt
> >  create mode 100644 drivers/usb/gadget/xilinx_udc.c
> > 
> > diff --git a/Documentation/devicetree/bindings/usb/xilinx_usb.txt b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> > new file mode 100644
> > index 0000000..acf03ab
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> > @@ -0,0 +1,21 @@
> > +Xilinx AXI USB2 device controller
> > +
> > +Required properties:
> > +- compatible		: Should be "xlnx,axi-usb2-device-4.00.a"

Is "axi-usb2-device" the official device name?

> > +- reg			: Physical base address and size of the Axi USB2
> > +			  device registers map.
> > +- interrupts		: Property with a value describing the interrupt
> > +			  number.

Does the device only have a single interrupt?

> > +- interrupt-parent	: Must be core interrupt controller

Is this strictly necessary?

> > +- xlnx,include-dma	: Must be 1 or 0 based on whether DMA is included
> > +			  in IP or not.

Perhaps xlnx,has-builtin-dma would better describe this?

> > +
> > +Example:
> > + 		axi-usb2-device@42e00000 {
> > +                        compatible = "xlnx,axi-usb2-device-4.00.a";
> > +                        interrupt-parent = <0x1>;
> > +                        interrupts = <0x0 0x39 0x1>;
> > +                        reg = <0x42e00000 0x10000>;
> > +                        xlnx,include-dma = <0x1>;
> > +                };
> > +
> 
> you need to Cc devicetree@vger.kernel.org for this.

Cheers Filipe; thanks for adding us to Cc :)

[...]

> > +	/* Map the registers */
> > +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> > +						 resource_size(res));
> 
> use devm_ioremap_resource() instead.

Also, res might be NULL. You should check that before dereferencing it.

Cheers,
Mark.

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-21 12:04   ` Mark Rutland
@ 2014-02-21 13:41     ` Michal Simek
  2014-02-21 13:57       ` Mark Rutland
  2014-02-21 15:42       ` Felipe Balbi
  2014-02-21 15:41       ` Felipe Balbi
  1 sibling, 2 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21 13:41 UTC (permalink / raw)
  To: Mark Rutland
  Cc: Felipe Balbi, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb, linux-kernel, Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 3598 bytes --]

Hi Mark,

On 02/21/2014 01:04 PM, Mark Rutland wrote:
> 
> On Thu, Feb 20, 2014 at 06:23:13PM +0000, Felipe Balbi wrote:
>> Hi,
>>
>> On Wed, Feb 19, 2014 at 03:10:45PM +0530, Subbaraya Sundeep Bhatta wrote:
>>> This patch adds xilinx axi usb2 device driver support
>>>
>>> Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta@xilinx.com>
>>> ---
>>>  .../devicetree/bindings/usb/xilinx_usb.txt         |   21 +
>>>  drivers/usb/gadget/Kconfig                         |   14 +
>>>  drivers/usb/gadget/Makefile                        |    1 +
>>>  drivers/usb/gadget/xilinx_udc.c                    | 2045 ++++++++++++++++++++
>>>  4 files changed, 2081 insertions(+), 0 deletions(-)
>>>  create mode 100644 Documentation/devicetree/bindings/usb/xilinx_usb.txt
>>>  create mode 100644 drivers/usb/gadget/xilinx_udc.c
>>>
>>> diff --git a/Documentation/devicetree/bindings/usb/xilinx_usb.txt b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
>>> new file mode 100644
>>> index 0000000..acf03ab
>>> --- /dev/null
>>> +++ b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
>>> @@ -0,0 +1,21 @@
>>> +Xilinx AXI USB2 device controller
>>> +
>>> +Required properties:
>>> +- compatible		: Should be "xlnx,axi-usb2-device-4.00.a"
> 
> Is "axi-usb2-device" the official device name?

It is the name of IP which Xilinx have and we are using names in this format.


>>> +- reg			: Physical base address and size of the Axi USB2
>>> +			  device registers map.
>>> +- interrupts		: Property with a value describing the interrupt
>>> +			  number.
> 
> Does the device only have a single interrupt?

I believe so.


>>> +- interrupt-parent	: Must be core interrupt controller
> 
> Is this strictly necessary?

I am not sure what do you mean by that. If you mean that interrupt-parent
can be written to the root of DTS file then we can setup system with more
interrupt controllers that's why it is required.

If we can point to standard interrupt description then please point me to
exact description you would like to see here and we can change it.


>>> +- xlnx,include-dma	: Must be 1 or 0 based on whether DMA is included
>>> +			  in IP or not.
> 
> Perhaps xlnx,has-builtin-dma would better describe this?

No opinion.

>>> +
>>> +Example:
>>> + 		axi-usb2-device@42e00000 {
>>> +                        compatible = "xlnx,axi-usb2-device-4.00.a";
>>> +                        interrupt-parent = <0x1>;
>>> +                        interrupts = <0x0 0x39 0x1>;
>>> +                        reg = <0x42e00000 0x10000>;
>>> +                        xlnx,include-dma = <0x1>;
>>> +                };
>>> +
>>
>> you need to Cc devicetree@vger.kernel.org for this.
> 
> Cheers Filipe; thanks for adding us to Cc :)
> 

Sundeep with CC devicetree list in next patch version.

>>> +	/* Map the registers */
>>> +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>>> +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
>>> +						 resource_size(res));
>>
>> use devm_ioremap_resource() instead.
> 
> Also, res might be NULL. You should check that before dereferencing it.

yes it is necessary for both cases with devm_ioremap_nocache
or with devm_ioremap_resource.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-21 13:41     ` Michal Simek
@ 2014-02-21 13:57       ` Mark Rutland
  2014-02-21 14:06         ` Michal Simek
  2014-02-21 15:42       ` Felipe Balbi
  1 sibling, 1 reply; 75+ messages in thread
From: Mark Rutland @ 2014-02-21 13:57 UTC (permalink / raw)
  To: Michal Simek
  Cc: Felipe Balbi, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb, linux-kernel, Subbaraya Sundeep Bhatta, devicetree

On Fri, Feb 21, 2014 at 01:41:03PM +0000, Michal Simek wrote:
> Hi Mark,
> 
> On 02/21/2014 01:04 PM, Mark Rutland wrote:
> > 
> > On Thu, Feb 20, 2014 at 06:23:13PM +0000, Felipe Balbi wrote:
> >> Hi,
> >>
> >> On Wed, Feb 19, 2014 at 03:10:45PM +0530, Subbaraya Sundeep Bhatta wrote:
> >>> This patch adds xilinx axi usb2 device driver support
> >>>
> >>> Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta@xilinx.com>
> >>> ---
> >>>  .../devicetree/bindings/usb/xilinx_usb.txt         |   21 +
> >>>  drivers/usb/gadget/Kconfig                         |   14 +
> >>>  drivers/usb/gadget/Makefile                        |    1 +
> >>>  drivers/usb/gadget/xilinx_udc.c                    | 2045 ++++++++++++++++++++
> >>>  4 files changed, 2081 insertions(+), 0 deletions(-)
> >>>  create mode 100644 Documentation/devicetree/bindings/usb/xilinx_usb.txt
> >>>  create mode 100644 drivers/usb/gadget/xilinx_udc.c
> >>>
> >>> diff --git a/Documentation/devicetree/bindings/usb/xilinx_usb.txt b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> >>> new file mode 100644
> >>> index 0000000..acf03ab
> >>> --- /dev/null
> >>> +++ b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
> >>> @@ -0,0 +1,21 @@
> >>> +Xilinx AXI USB2 device controller
> >>> +
> >>> +Required properties:
> >>> +- compatible		: Should be "xlnx,axi-usb2-device-4.00.a"
> > 
> > Is "axi-usb2-device" the official device name?
> 
> It is the name of IP which Xilinx have and we are using names in this format.
> 
> 
> >>> +- reg			: Physical base address and size of the Axi USB2
> >>> +			  device registers map.
> >>> +- interrupts		: Property with a value describing the interrupt
> >>> +			  number.
> > 
> > Does the device only have a single interrupt?
> 
> I believe so.
> 
> 
> >>> +- interrupt-parent	: Must be core interrupt controller
> > 
> > Is this strictly necessary?
> 
> I am not sure what do you mean by that. If you mean that interrupt-parent
> can be written to the root of DTS file then we can setup system with more
> interrupt controllers that's why it is required.

At which point it's not a required property of the node...

> If we can point to standard interrupt description then please point me to
> exact description you would like to see here and we can change it.

Unfortunately I'm not aware of a generic interrupts document. I just
don't see the point in each document listing interrupt-parent as a
requiredp roeprty when it's not. That said this is a trivial detail and
not really a blocker.

Cheers,
Mark

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-21 13:57       ` Mark Rutland
@ 2014-02-21 14:06         ` Michal Simek
  0 siblings, 0 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21 14:06 UTC (permalink / raw)
  To: Mark Rutland
  Cc: Felipe Balbi, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb, linux-kernel, Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 1135 bytes --]

>> If we can point to standard interrupt description then please point me to
>> exact description you would like to see here and we can change it.
> 
> Unfortunately I'm not aware of a generic interrupts document. I just
> don't see the point in each document listing interrupt-parent as a
> requiredp roeprty when it's not. That said this is a trivial detail and
> not really a blocker.

I agree with you that copying this part again and again is just problematic.
Time to time I see that IRQs doesn't need to be described too.

I am also not sure if kernel can work without interrupt-parent at all.
I expect that it won't work and because we have interrupt parent in every
node (which is generated) it is probably required in our setup.

As you said it is just trivial detail for me too.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-21 11:27   ` Subbaraya Sundeep Bhatta
@ 2014-02-21 15:39     ` Felipe Balbi
  2014-03-10 13:36         ` sundeep subbaraya
  0 siblings, 1 reply; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 15:39 UTC (permalink / raw)
  To: Subbaraya Sundeep Bhatta
  Cc: balbi, Greg Kroah-Hartman, linux-usb, linux-kernel, Michal Simek,
	devicetree

[-- Attachment #1: Type: text/plain, Size: 904 bytes --]

Hi,

On Fri, Feb 21, 2014 at 11:27:07AM +0000, Subbaraya Sundeep Bhatta wrote:
> > From the looks of it, I doubt this was actually tested, you need a lot
> > of work on this driver.
> Tested on both ARM and Microblaze architectures with Mass storage gadget.
> Will send a v2 after addressing all your comments.

clearly you didn't try to remove and reinsert the module or you would
see a whole bunch of errors.

> This email and any attachments are intended for the sole use of the
> named recipient(s) and contain(s) confidential information that may be
> proprietary, privileged or copyrighted under applicable law. If you
> are not the intended recipient, do not read, copy, or forward this
> email message or any attachments. Delete this email message and any
> attachments immediately.

remove this footer message, btw, when sending emails to public mailing
lists.

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21 15:41       ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 15:41 UTC (permalink / raw)
  To: Mark Rutland
  Cc: Felipe Balbi, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb, linux-kernel, michals, Subbaraya Sundeep Bhatta,
	devicetree

[-- Attachment #1: Type: text/plain, Size: 1043 bytes --]

Hi,

On Fri, Feb 21, 2014 at 12:04:54PM +0000, Mark Rutland wrote:
> > > +Example:
> > > + 		axi-usb2-device@42e00000 {
> > > +                        compatible = "xlnx,axi-usb2-device-4.00.a";
> > > +                        interrupt-parent = <0x1>;
> > > +                        interrupts = <0x0 0x39 0x1>;
> > > +                        reg = <0x42e00000 0x10000>;
> > > +                        xlnx,include-dma = <0x1>;
> > > +                };
> > > +
> > 
> > you need to Cc devicetree@vger.kernel.org for this.
> 
> Cheers Filipe; thanks for adding us to Cc :)

sure, but it's "Felipe" ;-)

> > > +	/* Map the registers */
> > > +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > > +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> > > +						 resource_size(res));
> > 
> > use devm_ioremap_resource() instead.
> 
> Also, res might be NULL. You should check that before dereferencing it.

not needed when using devm_ioremap_resource(), see the implementation.

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21 15:41       ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 15:41 UTC (permalink / raw)
  To: Mark Rutland
  Cc: Felipe Balbi, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	michals-gjFFaj9aHVfQT0dZR+AlfA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

Hi,

On Fri, Feb 21, 2014 at 12:04:54PM +0000, Mark Rutland wrote:
> > > +Example:
> > > + 		axi-usb2-device@42e00000 {
> > > +                        compatible = "xlnx,axi-usb2-device-4.00.a";
> > > +                        interrupt-parent = <0x1>;
> > > +                        interrupts = <0x0 0x39 0x1>;
> > > +                        reg = <0x42e00000 0x10000>;
> > > +                        xlnx,include-dma = <0x1>;
> > > +                };
> > > +
> > 
> > you need to Cc devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org for this.
> 
> Cheers Filipe; thanks for adding us to Cc :)

sure, but it's "Felipe" ;-)

> > > +	/* Map the registers */
> > > +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > > +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> > > +						 resource_size(res));
> > 
> > use devm_ioremap_resource() instead.
> 
> Also, res might be NULL. You should check that before dereferencing it.

not needed when using devm_ioremap_resource(), see the implementation.

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-21 13:41     ` Michal Simek
  2014-02-21 13:57       ` Mark Rutland
@ 2014-02-21 15:42       ` Felipe Balbi
  2014-02-21 15:51           ` Michal Simek
  1 sibling, 1 reply; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 15:42 UTC (permalink / raw)
  To: Michal Simek
  Cc: Mark Rutland, Felipe Balbi, Subbaraya Sundeep Bhatta,
	Greg Kroah-Hartman, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 1543 bytes --]

Hi,

On Fri, Feb 21, 2014 at 02:41:03PM +0100, Michal Simek wrote:
> >>> +	/* Map the registers */
> >>> +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> >>> +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> >>> +						 resource_size(res));
> >>
> >> use devm_ioremap_resource() instead.
> > 
> > Also, res might be NULL. You should check that before dereferencing it.
> 
> yes it is necessary for both cases with devm_ioremap_nocache
> or with devm_ioremap_resource.

read the source Luke:

| void __iomem *devm_ioremap_resource(struct device *dev, struct resource *res)
| {
| 	resource_size_t size;
| 	const char *name;
| 	void __iomem *dest_ptr;
| 
| 	BUG_ON(!dev);
| 
| 	if (!res || resource_type(res) != IORESOURCE_MEM) {
            ^^^^
	    already done for you

| 		dev_err(dev, "invalid resource\n");
| 		return ERR_PTR(-EINVAL);
| 	}
| 
| 	size = resource_size(res);
| 	name = res->name ?: dev_name(dev);
| 
| 	if (!devm_request_mem_region(dev, res->start, size, name)) {
| 		dev_err(dev, "can't request region for resource %pR\n", res);
| 		return ERR_PTR(-EBUSY);
| 	}
| 
| 	if (res->flags & IORESOURCE_CACHEABLE)
| 		dest_ptr = devm_ioremap(dev, res->start, size);
| 	else
| 		dest_ptr = devm_ioremap_nocache(dev, res->start, size);
| 
| 	if (!dest_ptr) {
| 		dev_err(dev, "ioremap failed for resource %pR\n", res);
| 		devm_release_mem_region(dev, res->start, size);
| 		dest_ptr = ERR_PTR(-ENOMEM);
| 	}
| 
| 	return dest_ptr;
| }

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21 15:51           ` Michal Simek
  0 siblings, 0 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21 15:51 UTC (permalink / raw)
  To: balbi
  Cc: Mark Rutland, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb, linux-kernel, Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 1929 bytes --]

On 02/21/2014 04:42 PM, Felipe Balbi wrote:
> Hi,
> 
> On Fri, Feb 21, 2014 at 02:41:03PM +0100, Michal Simek wrote:
>>>>> +	/* Map the registers */
>>>>> +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>>>>> +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
>>>>> +						 resource_size(res));
>>>>
>>>> use devm_ioremap_resource() instead.
>>>
>>> Also, res might be NULL. You should check that before dereferencing it.
>>
>> yes it is necessary for both cases with devm_ioremap_nocache
>> or with devm_ioremap_resource.
> 
> read the source Luke:
> 
> | void __iomem *devm_ioremap_resource(struct device *dev, struct resource *res)
> | {
> | 	resource_size_t size;
> | 	const char *name;
> | 	void __iomem *dest_ptr;
> | 
> | 	BUG_ON(!dev);
> | 
> | 	if (!res || resource_type(res) != IORESOURCE_MEM) {
>             ^^^^
> 	    already done for you
> 
> | 		dev_err(dev, "invalid resource\n");
> | 		return ERR_PTR(-EINVAL);
> | 	}
> | 
> | 	size = resource_size(res);
> | 	name = res->name ?: dev_name(dev);
> | 
> | 	if (!devm_request_mem_region(dev, res->start, size, name)) {
> | 		dev_err(dev, "can't request region for resource %pR\n", res);
> | 		return ERR_PTR(-EBUSY);
> | 	}
> | 
> | 	if (res->flags & IORESOURCE_CACHEABLE)
> | 		dest_ptr = devm_ioremap(dev, res->start, size);
> | 	else
> | 		dest_ptr = devm_ioremap_nocache(dev, res->start, size);

I have read it just not sure if IORESOURCE_CACHEABLE is setup by default
or not.
If yes, then you have to setup res->flags in your driver and have to
check it.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21 15:51           ` Michal Simek
  0 siblings, 0 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21 15:51 UTC (permalink / raw)
  To: balbi-l0cyMroinI0
  Cc: Mark Rutland, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 1929 bytes --]

On 02/21/2014 04:42 PM, Felipe Balbi wrote:
> Hi,
> 
> On Fri, Feb 21, 2014 at 02:41:03PM +0100, Michal Simek wrote:
>>>>> +	/* Map the registers */
>>>>> +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>>>>> +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
>>>>> +						 resource_size(res));
>>>>
>>>> use devm_ioremap_resource() instead.
>>>
>>> Also, res might be NULL. You should check that before dereferencing it.
>>
>> yes it is necessary for both cases with devm_ioremap_nocache
>> or with devm_ioremap_resource.
> 
> read the source Luke:
> 
> | void __iomem *devm_ioremap_resource(struct device *dev, struct resource *res)
> | {
> | 	resource_size_t size;
> | 	const char *name;
> | 	void __iomem *dest_ptr;
> | 
> | 	BUG_ON(!dev);
> | 
> | 	if (!res || resource_type(res) != IORESOURCE_MEM) {
>             ^^^^
> 	    already done for you
> 
> | 		dev_err(dev, "invalid resource\n");
> | 		return ERR_PTR(-EINVAL);
> | 	}
> | 
> | 	size = resource_size(res);
> | 	name = res->name ?: dev_name(dev);
> | 
> | 	if (!devm_request_mem_region(dev, res->start, size, name)) {
> | 		dev_err(dev, "can't request region for resource %pR\n", res);
> | 		return ERR_PTR(-EBUSY);
> | 	}
> | 
> | 	if (res->flags & IORESOURCE_CACHEABLE)
> | 		dest_ptr = devm_ioremap(dev, res->start, size);
> | 	else
> | 		dest_ptr = devm_ioremap_nocache(dev, res->start, size);

I have read it just not sure if IORESOURCE_CACHEABLE is setup by default
or not.
If yes, then you have to setup res->flags in your driver and have to
check it.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-21 15:51           ` Michal Simek
@ 2014-02-21 16:00             ` Felipe Balbi
  -1 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 16:00 UTC (permalink / raw)
  To: Michal Simek
  Cc: balbi, Mark Rutland, Subbaraya Sundeep Bhatta,
	Greg Kroah-Hartman, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 1879 bytes --]

On Fri, Feb 21, 2014 at 04:51:07PM +0100, Michal Simek wrote:
> On 02/21/2014 04:42 PM, Felipe Balbi wrote:
> > Hi,
> > 
> > On Fri, Feb 21, 2014 at 02:41:03PM +0100, Michal Simek wrote:
> >>>>> +	/* Map the registers */
> >>>>> +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> >>>>> +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> >>>>> +						 resource_size(res));
> >>>>
> >>>> use devm_ioremap_resource() instead.
> >>>
> >>> Also, res might be NULL. You should check that before dereferencing it.
> >>
> >> yes it is necessary for both cases with devm_ioremap_nocache
> >> or with devm_ioremap_resource.
> > 
> > read the source Luke:
> > 
> > | void __iomem *devm_ioremap_resource(struct device *dev, struct resource *res)
> > | {
> > | 	resource_size_t size;
> > | 	const char *name;
> > | 	void __iomem *dest_ptr;
> > | 
> > | 	BUG_ON(!dev);
> > | 
> > | 	if (!res || resource_type(res) != IORESOURCE_MEM) {
> >             ^^^^
> > 	    already done for you
> > 
> > | 		dev_err(dev, "invalid resource\n");
> > | 		return ERR_PTR(-EINVAL);
> > | 	}
> > | 
> > | 	size = resource_size(res);
> > | 	name = res->name ?: dev_name(dev);
> > | 
> > | 	if (!devm_request_mem_region(dev, res->start, size, name)) {
> > | 		dev_err(dev, "can't request region for resource %pR\n", res);
> > | 		return ERR_PTR(-EBUSY);
> > | 	}
> > | 
> > | 	if (res->flags & IORESOURCE_CACHEABLE)
> > | 		dest_ptr = devm_ioremap(dev, res->start, size);
> > | 	else
> > | 		dest_ptr = devm_ioremap_nocache(dev, res->start, size);
> 
> I have read it just not sure if IORESOURCE_CACHEABLE is setup by default
> or not.
> If yes, then you have to setup res->flags in your driver and have to
> check it.

you don't need IORESOURCe_CACHEABLE. It's fine the way it is, just use
the helper function ;-).

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21 16:00             ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 16:00 UTC (permalink / raw)
  To: Michal Simek
  Cc: balbi, Mark Rutland, Subbaraya Sundeep Bhatta,
	Greg Kroah-Hartman, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 1879 bytes --]

On Fri, Feb 21, 2014 at 04:51:07PM +0100, Michal Simek wrote:
> On 02/21/2014 04:42 PM, Felipe Balbi wrote:
> > Hi,
> > 
> > On Fri, Feb 21, 2014 at 02:41:03PM +0100, Michal Simek wrote:
> >>>>> +	/* Map the registers */
> >>>>> +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> >>>>> +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> >>>>> +						 resource_size(res));
> >>>>
> >>>> use devm_ioremap_resource() instead.
> >>>
> >>> Also, res might be NULL. You should check that before dereferencing it.
> >>
> >> yes it is necessary for both cases with devm_ioremap_nocache
> >> or with devm_ioremap_resource.
> > 
> > read the source Luke:
> > 
> > | void __iomem *devm_ioremap_resource(struct device *dev, struct resource *res)
> > | {
> > | 	resource_size_t size;
> > | 	const char *name;
> > | 	void __iomem *dest_ptr;
> > | 
> > | 	BUG_ON(!dev);
> > | 
> > | 	if (!res || resource_type(res) != IORESOURCE_MEM) {
> >             ^^^^
> > 	    already done for you
> > 
> > | 		dev_err(dev, "invalid resource\n");
> > | 		return ERR_PTR(-EINVAL);
> > | 	}
> > | 
> > | 	size = resource_size(res);
> > | 	name = res->name ?: dev_name(dev);
> > | 
> > | 	if (!devm_request_mem_region(dev, res->start, size, name)) {
> > | 		dev_err(dev, "can't request region for resource %pR\n", res);
> > | 		return ERR_PTR(-EBUSY);
> > | 	}
> > | 
> > | 	if (res->flags & IORESOURCE_CACHEABLE)
> > | 		dest_ptr = devm_ioremap(dev, res->start, size);
> > | 	else
> > | 		dest_ptr = devm_ioremap_nocache(dev, res->start, size);
> 
> I have read it just not sure if IORESOURCE_CACHEABLE is setup by default
> or not.
> If yes, then you have to setup res->flags in your driver and have to
> check it.

you don't need IORESOURCe_CACHEABLE. It's fine the way it is, just use
the helper function ;-).

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21 16:04         ` Michal Simek
  0 siblings, 0 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21 16:04 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: balbi, Subbaraya Sundeep Bhatta, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 725 bytes --]

On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
>> BTW: u-boot started to use SPDX-License-Identifier
>> which will be nice to start to use.
> 
> I agree, feel free to start sending patches to use this type of
> identifier for drivers.

But we probably need to add that Licenses to one location.
Documentation/Licenses?

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21 16:04         ` Michal Simek
  0 siblings, 0 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21 16:04 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: balbi-l0cyMroinI0, Subbaraya Sundeep Bhatta,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 725 bytes --]

On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
>> BTW: u-boot started to use SPDX-License-Identifier
>> which will be nice to start to use.
> 
> I agree, feel free to start sending patches to use this type of
> identifier for drivers.

But we probably need to add that Licenses to one location.
Documentation/Licenses?

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-21  6:38     ` Michal Simek
  (?)
@ 2014-02-21 16:04     ` Greg Kroah-Hartman
  2014-02-21 16:04         ` Michal Simek
  -1 siblings, 1 reply; 75+ messages in thread
From: Greg Kroah-Hartman @ 2014-02-21 16:04 UTC (permalink / raw)
  To: Michal Simek
  Cc: balbi, Subbaraya Sundeep Bhatta, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree

On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> BTW: u-boot started to use SPDX-License-Identifier
> which will be nice to start to use.

I agree, feel free to start sending patches to use this type of
identifier for drivers.

greg k-h

^ permalink raw reply	[flat|nested] 75+ messages in thread

* SPDX-License-Identifier (was: Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support)
@ 2014-02-21 16:12           ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 16:12 UTC (permalink / raw)
  To: Michal Simek
  Cc: Greg Kroah-Hartman, balbi, Subbaraya Sundeep Bhatta, linux-usb,
	linux-kernel, Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 689 bytes --]

On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> > On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >> BTW: u-boot started to use SPDX-License-Identifier
> >> which will be nice to start to use.
> > 
> > I agree, feel free to start sending patches to use this type of
> > identifier for drivers.
> 
> But we probably need to add that Licenses to one location.
> Documentation/Licenses?

Just add to the drivers themselves, just like u-boot is doing. A simple:

	$ git grep -e SPDX-License-Identifier

will tell you filename and license. Or did I misunderstand your question ?

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* SPDX-License-Identifier (was: Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support)
@ 2014-02-21 16:12           ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 16:12 UTC (permalink / raw)
  To: Michal Simek
  Cc: Greg Kroah-Hartman, balbi-l0cyMroinI0, Subbaraya Sundeep Bhatta,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 689 bytes --]

On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> > On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >> BTW: u-boot started to use SPDX-License-Identifier
> >> which will be nice to start to use.
> > 
> > I agree, feel free to start sending patches to use this type of
> > identifier for drivers.
> 
> But we probably need to add that Licenses to one location.
> Documentation/Licenses?

Just add to the drivers themselves, just like u-boot is doing. A simple:

	$ git grep -e SPDX-License-Identifier

will tell you filename and license. Or did I misunderstand your question ?

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-21 15:41       ` Felipe Balbi
  (?)
@ 2014-02-21 16:13       ` Mark Rutland
  -1 siblings, 0 replies; 75+ messages in thread
From: Mark Rutland @ 2014-02-21 16:13 UTC (permalink / raw)
  To: Felipe Balbi
  Cc: Subbaraya Sundeep Bhatta, Greg Kroah-Hartman, linux-usb,
	linux-kernel, michals, Subbaraya Sundeep Bhatta, devicetree

On Fri, Feb 21, 2014 at 03:41:03PM +0000, Felipe Balbi wrote:
> Hi,
> 
> On Fri, Feb 21, 2014 at 12:04:54PM +0000, Mark Rutland wrote:
> > > > +Example:
> > > > + 		axi-usb2-device@42e00000 {
> > > > +                        compatible = "xlnx,axi-usb2-device-4.00.a";
> > > > +                        interrupt-parent = <0x1>;
> > > > +                        interrupts = <0x0 0x39 0x1>;
> > > > +                        reg = <0x42e00000 0x10000>;
> > > > +                        xlnx,include-dma = <0x1>;
> > > > +                };
> > > > +
> > > 
> > > you need to Cc devicetree@vger.kernel.org for this.
> > 
> > Cheers Filipe; thanks for adding us to Cc :)
> 
> sure, but it's "Felipe" ;-)

Whoops; sorry Felipe :)

> 
> > > > +	/* Map the registers */
> > > > +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > > > +	udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
> > > > +						 resource_size(res));
> > > 
> > > use devm_ioremap_resource() instead.
> > 
> > Also, res might be NULL. You should check that before dereferencing it.
> 
> not needed when using devm_ioremap_resource(), see the implementation.

Ah, good to know.

Cheers,
Mark.

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21 16:15             ` Arnd Bergmann
  0 siblings, 0 replies; 75+ messages in thread
From: Arnd Bergmann @ 2014-02-21 16:15 UTC (permalink / raw)
  To: monstr
  Cc: balbi, Mark Rutland, Subbaraya Sundeep Bhatta,
	Greg Kroah-Hartman, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree

On Friday 21 February 2014 16:51:07 Michal Simek wrote:
> > | 
> > |     if (res->flags & IORESOURCE_CACHEABLE)
> > |             dest_ptr = devm_ioremap(dev, res->start, size);
> > |     else
> > |             dest_ptr = devm_ioremap_nocache(dev, res->start, size);
> 
> I have read it just not sure if IORESOURCE_CACHEABLE is setup by default
> or not.
> If yes, then you have to setup res->flags in your driver and have to
> check it.

ioremap() and ioremap_nocache() are the same on all architectures.
If you want a cacheable mapping, you need to call ioremap_cache(),
which unfortunately doesn't exist on all architectures and also
doesn't have a devm_* variant.

I don't know how the above code made it into devm_ioremap_resource(),
it's clearly bogus. The only time we ever set IORESOURCE_CACHEABLE
is for ROM BARs on PCI, which in turn are rarely used in the kernel.
It's never set for any platform devices, aside from one use
in arch/arm/mach-clps711x/board-cdb89712.c.

	Arnd

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-02-21 16:15             ` Arnd Bergmann
  0 siblings, 0 replies; 75+ messages in thread
From: Arnd Bergmann @ 2014-02-21 16:15 UTC (permalink / raw)
  To: monstr-pSz03upnqPeHXe+LvDLADg
  Cc: balbi-l0cyMroinI0, Mark Rutland, Subbaraya Sundeep Bhatta,
	Greg Kroah-Hartman, linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA

On Friday 21 February 2014 16:51:07 Michal Simek wrote:
> > | 
> > |     if (res->flags & IORESOURCE_CACHEABLE)
> > |             dest_ptr = devm_ioremap(dev, res->start, size);
> > |     else
> > |             dest_ptr = devm_ioremap_nocache(dev, res->start, size);
> 
> I have read it just not sure if IORESOURCE_CACHEABLE is setup by default
> or not.
> If yes, then you have to setup res->flags in your driver and have to
> check it.

ioremap() and ioremap_nocache() are the same on all architectures.
If you want a cacheable mapping, you need to call ioremap_cache(),
which unfortunately doesn't exist on all architectures and also
doesn't have a devm_* variant.

I don't know how the above code made it into devm_ioremap_resource(),
it's clearly bogus. The only time we ever set IORESOURCE_CACHEABLE
is for ROM BARs on PCI, which in turn are rarely used in the kernel.
It's never set for any platform devices, aside from one use
in arch/arm/mach-clps711x/board-cdb89712.c.

	Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-21 16:18             ` Michal Simek
  0 siblings, 0 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21 16:18 UTC (permalink / raw)
  To: balbi
  Cc: Greg Kroah-Hartman, Subbaraya Sundeep Bhatta, linux-usb,
	linux-kernel, Subbaraya Sundeep Bhatta, devicetree,
	Wolfgang Denk

[-- Attachment #1: Type: text/plain, Size: 1373 bytes --]

On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
>> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
>>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
>>>> BTW: u-boot started to use SPDX-License-Identifier
>>>> which will be nice to start to use.
>>>
>>> I agree, feel free to start sending patches to use this type of
>>> identifier for drivers.
>>
>> But we probably need to add that Licenses to one location.
>> Documentation/Licenses?
> 
> Just add to the drivers themselves, just like u-boot is doing. A simple:
> 
> 	$ git grep -e SPDX-License-Identifier
> 
> will tell you filename and license. Or did I misunderstand your question ?

But for doing this it is probably necessary to have location where
you will place that licenses and you will explain what it is how
it is done by Wolfgang in this commit.

http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f

Then yes, adding one line is enough.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-21 16:18             ` Michal Simek
  0 siblings, 0 replies; 75+ messages in thread
From: Michal Simek @ 2014-02-21 16:18 UTC (permalink / raw)
  To: balbi-l0cyMroinI0
  Cc: Greg Kroah-Hartman, Subbaraya Sundeep Bhatta,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

[-- Attachment #1: Type: text/plain, Size: 1373 bytes --]

On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
>> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
>>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
>>>> BTW: u-boot started to use SPDX-License-Identifier
>>>> which will be nice to start to use.
>>>
>>> I agree, feel free to start sending patches to use this type of
>>> identifier for drivers.
>>
>> But we probably need to add that Licenses to one location.
>> Documentation/Licenses?
> 
> Just add to the drivers themselves, just like u-boot is doing. A simple:
> 
> 	$ git grep -e SPDX-License-Identifier
> 
> will tell you filename and license. Or did I misunderstand your question ?

But for doing this it is probably necessary to have location where
you will place that licenses and you will explain what it is how
it is done by Wolfgang in this commit.

http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f

Then yes, adding one line is enough.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-21 16:20               ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 16:20 UTC (permalink / raw)
  To: Michal Simek
  Cc: balbi, Greg Kroah-Hartman, Subbaraya Sundeep Bhatta, linux-usb,
	linux-kernel, Subbaraya Sundeep Bhatta, devicetree,
	Wolfgang Denk

[-- Attachment #1: Type: text/plain, Size: 1313 bytes --]

Hi,

On Fri, Feb 21, 2014 at 05:18:39PM +0100, Michal Simek wrote:
> On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> > On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> >> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> >>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >>>> BTW: u-boot started to use SPDX-License-Identifier
> >>>> which will be nice to start to use.
> >>>
> >>> I agree, feel free to start sending patches to use this type of
> >>> identifier for drivers.
> >>
> >> But we probably need to add that Licenses to one location.
> >> Documentation/Licenses?
> > 
> > Just add to the drivers themselves, just like u-boot is doing. A simple:
> > 
> > 	$ git grep -e SPDX-License-Identifier
> > 
> > will tell you filename and license. Or did I misunderstand your question ?
> 
> But for doing this it is probably necessary to have location where
> you will place that licenses and you will explain what it is how
> it is done by Wolfgang in this commit.
> 
> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
> 
> Then yes, adding one line is enough.

spdx.org has all licenses, why don't we just rely on that instead of
adding every other license to the kernel source ?

cheers

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-21 16:20               ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-02-21 16:20 UTC (permalink / raw)
  To: Michal Simek
  Cc: balbi-l0cyMroinI0, Greg Kroah-Hartman, Subbaraya Sundeep Bhatta,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

[-- Attachment #1: Type: text/plain, Size: 1313 bytes --]

Hi,

On Fri, Feb 21, 2014 at 05:18:39PM +0100, Michal Simek wrote:
> On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> > On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> >> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> >>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >>>> BTW: u-boot started to use SPDX-License-Identifier
> >>>> which will be nice to start to use.
> >>>
> >>> I agree, feel free to start sending patches to use this type of
> >>> identifier for drivers.
> >>
> >> But we probably need to add that Licenses to one location.
> >> Documentation/Licenses?
> > 
> > Just add to the drivers themselves, just like u-boot is doing. A simple:
> > 
> > 	$ git grep -e SPDX-License-Identifier
> > 
> > will tell you filename and license. Or did I misunderstand your question ?
> 
> But for doing this it is probably necessary to have location where
> you will place that licenses and you will explain what it is how
> it is done by Wolfgang in this commit.
> 
> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
> 
> Then yes, adding one line is enough.

spdx.org has all licenses, why don't we just rely on that instead of
adding every other license to the kernel source ?

cheers

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-02-21 16:04         ` Michal Simek
  (?)
  (?)
@ 2014-02-21 16:23         ` Greg Kroah-Hartman
  -1 siblings, 0 replies; 75+ messages in thread
From: Greg Kroah-Hartman @ 2014-02-21 16:23 UTC (permalink / raw)
  To: Michal Simek
  Cc: balbi, Subbaraya Sundeep Bhatta, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree

On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> > On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >> BTW: u-boot started to use SPDX-License-Identifier
> >> which will be nice to start to use.
> > 
> > I agree, feel free to start sending patches to use this type of
> > identifier for drivers.
> 
> But we probably need to add that Licenses to one location.

No, why would we need to do that?


^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2014-02-21 16:20               ` SPDX-License-Identifier Felipe Balbi
  (?)
@ 2014-02-21 16:56               ` Greg Kroah-Hartman
  2014-02-21 17:26                 ` SPDX-License-Identifier Michal Simek
  -1 siblings, 1 reply; 75+ messages in thread
From: Greg Kroah-Hartman @ 2014-02-21 16:56 UTC (permalink / raw)
  To: Felipe Balbi
  Cc: Michal Simek, Subbaraya Sundeep Bhatta, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree, Wolfgang Denk

On Fri, Feb 21, 2014 at 10:20:45AM -0600, Felipe Balbi wrote:
> Hi,
> 
> On Fri, Feb 21, 2014 at 05:18:39PM +0100, Michal Simek wrote:
> > On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> > > On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> > >> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> > >>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> > >>>> BTW: u-boot started to use SPDX-License-Identifier
> > >>>> which will be nice to start to use.
> > >>>
> > >>> I agree, feel free to start sending patches to use this type of
> > >>> identifier for drivers.
> > >>
> > >> But we probably need to add that Licenses to one location.
> > >> Documentation/Licenses?
> > > 
> > > Just add to the drivers themselves, just like u-boot is doing. A simple:
> > > 
> > > 	$ git grep -e SPDX-License-Identifier
> > > 
> > > will tell you filename and license. Or did I misunderstand your question ?
> > 
> > But for doing this it is probably necessary to have location where
> > you will place that licenses and you will explain what it is how
> > it is done by Wolfgang in this commit.
> > 
> > http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
> > 
> > Then yes, adding one line is enough.
> 
> spdx.org has all licenses, why don't we just rely on that instead of
> adding every other license to the kernel source ?

Yes, all that will be acceptable is a one-line identifier in the file.
No need to have all the different licenses in the kernel source, that's
crazy and not needed at all.

I've told the SPDX people this in the past, and they keep promising that
they will do the comment work, but it's been months and I have yet to
see a single patch...

greg k-h

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2014-02-21 16:56               ` SPDX-License-Identifier Greg Kroah-Hartman
@ 2014-02-21 17:26                 ` Michal Simek
  2014-02-21 17:57                     ` SPDX-License-Identifier Greg Kroah-Hartman
  0 siblings, 1 reply; 75+ messages in thread
From: Michal Simek @ 2014-02-21 17:26 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Felipe Balbi, Subbaraya Sundeep Bhatta, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree, Wolfgang Denk

[-- Attachment #1: Type: text/plain, Size: 2321 bytes --]

On 02/21/2014 05:56 PM, Greg Kroah-Hartman wrote:
> On Fri, Feb 21, 2014 at 10:20:45AM -0600, Felipe Balbi wrote:
>> Hi,
>>
>> On Fri, Feb 21, 2014 at 05:18:39PM +0100, Michal Simek wrote:
>>> On 02/21/2014 05:12 PM, Felipe Balbi wrote:
>>>> On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
>>>>> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
>>>>>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
>>>>>>> BTW: u-boot started to use SPDX-License-Identifier
>>>>>>> which will be nice to start to use.
>>>>>>
>>>>>> I agree, feel free to start sending patches to use this type of
>>>>>> identifier for drivers.
>>>>>
>>>>> But we probably need to add that Licenses to one location.
>>>>> Documentation/Licenses?
>>>>
>>>> Just add to the drivers themselves, just like u-boot is doing. A simple:
>>>>
>>>> 	$ git grep -e SPDX-License-Identifier
>>>>
>>>> will tell you filename and license. Or did I misunderstand your question ?
>>>
>>> But for doing this it is probably necessary to have location where
>>> you will place that licenses and you will explain what it is how
>>> it is done by Wolfgang in this commit.
>>>
>>> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
>>>
>>> Then yes, adding one line is enough.
>>
>> spdx.org has all licenses, why don't we just rely on that instead of
>> adding every other license to the kernel source ?
> 
> Yes, all that will be acceptable is a one-line identifier in the file.
> No need to have all the different licenses in the kernel source, that's
> crazy and not needed at all.
>
> I've told the SPDX people this in the past, and they keep promising that
> they will do the comment work, but it's been months and I have yet to
> see a single patch...

But shouldn't we at least write somewhere
that it has connection to spdx.org where you can find out that licenses.

I have no problem to use this one-line identifier at all.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-21 17:57                     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 75+ messages in thread
From: Greg Kroah-Hartman @ 2014-02-21 17:57 UTC (permalink / raw)
  To: Michal Simek
  Cc: Felipe Balbi, Subbaraya Sundeep Bhatta, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree, Wolfgang Denk

On Fri, Feb 21, 2014 at 06:26:08PM +0100, Michal Simek wrote:
> On 02/21/2014 05:56 PM, Greg Kroah-Hartman wrote:
> > On Fri, Feb 21, 2014 at 10:20:45AM -0600, Felipe Balbi wrote:
> >> Hi,
> >>
> >> On Fri, Feb 21, 2014 at 05:18:39PM +0100, Michal Simek wrote:
> >>> On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> >>>> On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> >>>>> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> >>>>>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >>>>>>> BTW: u-boot started to use SPDX-License-Identifier
> >>>>>>> which will be nice to start to use.
> >>>>>>
> >>>>>> I agree, feel free to start sending patches to use this type of
> >>>>>> identifier for drivers.
> >>>>>
> >>>>> But we probably need to add that Licenses to one location.
> >>>>> Documentation/Licenses?
> >>>>
> >>>> Just add to the drivers themselves, just like u-boot is doing. A simple:
> >>>>
> >>>> 	$ git grep -e SPDX-License-Identifier
> >>>>
> >>>> will tell you filename and license. Or did I misunderstand your question ?
> >>>
> >>> But for doing this it is probably necessary to have location where
> >>> you will place that licenses and you will explain what it is how
> >>> it is done by Wolfgang in this commit.
> >>>
> >>> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
> >>>
> >>> Then yes, adding one line is enough.
> >>
> >> spdx.org has all licenses, why don't we just rely on that instead of
> >> adding every other license to the kernel source ?
> > 
> > Yes, all that will be acceptable is a one-line identifier in the file.
> > No need to have all the different licenses in the kernel source, that's
> > crazy and not needed at all.
> >
> > I've told the SPDX people this in the past, and they keep promising that
> > they will do the comment work, but it's been months and I have yet to
> > see a single patch...
> 
> But shouldn't we at least write somewhere
> that it has connection to spdx.org where you can find out that licenses.

Why?  Are these licenses so unknown that no one knows what they are?
And, as part of the kernel-as-a-whole-work, they all resolve to GPLv2
anyway, and we have that license in the source tree, so nothing else
should be needed.

greg k-h

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-21 17:57                     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 75+ messages in thread
From: Greg Kroah-Hartman @ 2014-02-21 17:57 UTC (permalink / raw)
  To: Michal Simek
  Cc: Felipe Balbi, Subbaraya Sundeep Bhatta,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

On Fri, Feb 21, 2014 at 06:26:08PM +0100, Michal Simek wrote:
> On 02/21/2014 05:56 PM, Greg Kroah-Hartman wrote:
> > On Fri, Feb 21, 2014 at 10:20:45AM -0600, Felipe Balbi wrote:
> >> Hi,
> >>
> >> On Fri, Feb 21, 2014 at 05:18:39PM +0100, Michal Simek wrote:
> >>> On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> >>>> On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> >>>>> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> >>>>>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >>>>>>> BTW: u-boot started to use SPDX-License-Identifier
> >>>>>>> which will be nice to start to use.
> >>>>>>
> >>>>>> I agree, feel free to start sending patches to use this type of
> >>>>>> identifier for drivers.
> >>>>>
> >>>>> But we probably need to add that Licenses to one location.
> >>>>> Documentation/Licenses?
> >>>>
> >>>> Just add to the drivers themselves, just like u-boot is doing. A simple:
> >>>>
> >>>> 	$ git grep -e SPDX-License-Identifier
> >>>>
> >>>> will tell you filename and license. Or did I misunderstand your question ?
> >>>
> >>> But for doing this it is probably necessary to have location where
> >>> you will place that licenses and you will explain what it is how
> >>> it is done by Wolfgang in this commit.
> >>>
> >>> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
> >>>
> >>> Then yes, adding one line is enough.
> >>
> >> spdx.org has all licenses, why don't we just rely on that instead of
> >> adding every other license to the kernel source ?
> > 
> > Yes, all that will be acceptable is a one-line identifier in the file.
> > No need to have all the different licenses in the kernel source, that's
> > crazy and not needed at all.
> >
> > I've told the SPDX people this in the past, and they keep promising that
> > they will do the comment work, but it's been months and I have yet to
> > see a single patch...
> 
> But shouldn't we at least write somewhere
> that it has connection to spdx.org where you can find out that licenses.

Why?  Are these licenses so unknown that no one knows what they are?
And, as part of the kernel-as-a-whole-work, they all resolve to GPLv2
anyway, and we have that license in the source tree, so nothing else
should be needed.

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2014-02-21 17:57                     ` SPDX-License-Identifier Greg Kroah-Hartman
  (?)
@ 2014-02-21 19:01                     ` Theodore Ts'o
  2014-02-24 10:12                       ` SPDX-License-Identifier Michal Simek
  -1 siblings, 1 reply; 75+ messages in thread
From: Theodore Ts'o @ 2014-02-21 19:01 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Michal Simek, Felipe Balbi, Subbaraya Sundeep Bhatta, linux-usb,
	linux-kernel, Subbaraya Sundeep Bhatta, devicetree,
	Wolfgang Denk

On Fri, Feb 21, 2014 at 09:57:20AM -0800, Greg Kroah-Hartman wrote:
> > But shouldn't we at least write somewhere
> > that it has connection to spdx.org where you can find out that licenses.
> 
> Why?  Are these licenses so unknown that no one knows what they are?
> And, as part of the kernel-as-a-whole-work, they all resolve to GPLv2
> anyway, and we have that license in the source tree, so nothing else
> should be needed.

Note that not all lawyers are in agreement about this, so if this is a
driver being developed by a company, you may want to ask your
corporate counsel if they have an opinion about this.  I've received
advice of the form that it's not obvious that regardless of whether or
not us *engineers* understand what all of the licensing terms mean,
what's important is whether someone who is accused of "borrowing"
GPL'ed code and dropping it in a driver for some other OS can convince
a judge whether or not it's considered "obvious" from a legal
perspective what an SPDX header means, and what is implied by an SPDX
license identifer.

Also note that with the advent of web sites that allow people to do
web searches and turn up a singleton file via some gitweb interface,
the fact that the full license text is distributed alongside the
tarball might or might have as much legal significance as it once had.

But of course, I'm not a lawyer, and if your company has is paying for
the development of the driver, the Golden Rule applies (he who has the
Gold, makes the Rules), and each of our respective corporate lawyers
may have different opinions about what might happen if the question
was ever to be adjudicated in court.

Cheers,

					- Ted

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2014-02-21 19:01                     ` SPDX-License-Identifier Theodore Ts'o
@ 2014-02-24 10:12                       ` Michal Simek
  2014-02-24 13:41                           ` SPDX-License-Identifier Theodore Ts'o
  0 siblings, 1 reply; 75+ messages in thread
From: Michal Simek @ 2014-02-24 10:12 UTC (permalink / raw)
  To: Theodore Ts'o, Greg Kroah-Hartman, Felipe Balbi,
	Subbaraya Sundeep Bhatta, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree, Wolfgang Denk

[-- Attachment #1: Type: text/plain, Size: 2248 bytes --]

On 02/21/2014 08:01 PM, Theodore Ts'o wrote:
> On Fri, Feb 21, 2014 at 09:57:20AM -0800, Greg Kroah-Hartman wrote:
>>> But shouldn't we at least write somewhere
>>> that it has connection to spdx.org where you can find out that licenses.
>>
>> Why?  Are these licenses so unknown that no one knows what they are?
>> And, as part of the kernel-as-a-whole-work, they all resolve to GPLv2
>> anyway, and we have that license in the source tree, so nothing else
>> should be needed.
> 
> Note that not all lawyers are in agreement about this, so if this is a
> driver being developed by a company, you may want to ask your
> corporate counsel if they have an opinion about this.  I've received
> advice of the form that it's not obvious that regardless of whether or
> not us *engineers* understand what all of the licensing terms mean,
> what's important is whether someone who is accused of "borrowing"
> GPL'ed code and dropping it in a driver for some other OS can convince
> a judge whether or not it's considered "obvious" from a legal
> perspective what an SPDX header means, and what is implied by an SPDX
> license identifer.
> 
> Also note that with the advent of web sites that allow people to do
> web searches and turn up a singleton file via some gitweb interface,
> the fact that the full license text is distributed alongside the
> tarball might or might have as much legal significance as it once had.
> 
> But of course, I'm not a lawyer, and if your company has is paying for
> the development of the driver, the Golden Rule applies (he who has the
> Gold, makes the Rules), and each of our respective corporate lawyers
> may have different opinions about what might happen if the question
> was ever to be adjudicated in court.

Thanks Ted.
Aren't all these points already answered by SPDX project?
I believe that they should know how this should be handled properly.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-24 13:41                           ` Theodore Ts'o
  0 siblings, 0 replies; 75+ messages in thread
From: Theodore Ts'o @ 2014-02-24 13:41 UTC (permalink / raw)
  To: Michal Simek
  Cc: Greg Kroah-Hartman, Felipe Balbi, Subbaraya Sundeep Bhatta,
	linux-usb, linux-kernel, Subbaraya Sundeep Bhatta, devicetree,
	Wolfgang Denk

On Mon, Feb 24, 2014 at 11:12:53AM +0100, Michal Simek wrote:
> > But of course, I'm not a lawyer, and if your company has is paying for
> > the development of the driver, the Golden Rule applies (he who has the
> > Gold, makes the Rules), and each of our respective corporate lawyers
> > may have different opinions about what might happen if the question
> > was ever to be adjudicated in court.
> 
> Aren't all these points already answered by SPDX project?
> I believe that they should know how this should be handled properly.

The SPDX can not give legal advice; not to you, and not to your
company.  One lawyer might believe that 

/*
 * SPDX-License-Identifier: GPL-2.0
 */

Might be sufficient.  Others might believe you need to do:

/*
 * Copyright Ty Coon, 2012.
 * 
 * SPDX-License-Identifier: GPL-2.0
 */

Still others might believe you need at the very least:

/*
 * Copyright Ty Coon, 2012.
 * 
 * All Rights Reserved.
 *
 * SPDX-License-Identifier: GPL-2.0
 */

As far as I know, there is no case law on point about whether or not
SPDX-License-Identifier has legal significance, or whether the court
would consider that to be a valid copyright permission statement.  So
any "answers" made by any lawyer would be guesses.  Of course, an
guess by a lawyer which is retained by *you* or your company and fully
informed with the unique parameters of your situation would constitute
legal advice.  Anything else, including anything any of us could say
on this mailing list, would be biovating.  :-)

Cheers,

					- Ted

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-24 13:41                           ` Theodore Ts'o
  0 siblings, 0 replies; 75+ messages in thread
From: Theodore Ts'o @ 2014-02-24 13:41 UTC (permalink / raw)
  To: Michal Simek
  Cc: Greg Kroah-Hartman, Felipe Balbi, Subbaraya Sundeep Bhatta,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

On Mon, Feb 24, 2014 at 11:12:53AM +0100, Michal Simek wrote:
> > But of course, I'm not a lawyer, and if your company has is paying for
> > the development of the driver, the Golden Rule applies (he who has the
> > Gold, makes the Rules), and each of our respective corporate lawyers
> > may have different opinions about what might happen if the question
> > was ever to be adjudicated in court.
> 
> Aren't all these points already answered by SPDX project?
> I believe that they should know how this should be handled properly.

The SPDX can not give legal advice; not to you, and not to your
company.  One lawyer might believe that 

/*
 * SPDX-License-Identifier: GPL-2.0
 */

Might be sufficient.  Others might believe you need to do:

/*
 * Copyright Ty Coon, 2012.
 * 
 * SPDX-License-Identifier: GPL-2.0
 */

Still others might believe you need at the very least:

/*
 * Copyright Ty Coon, 2012.
 * 
 * All Rights Reserved.
 *
 * SPDX-License-Identifier: GPL-2.0
 */

As far as I know, there is no case law on point about whether or not
SPDX-License-Identifier has legal significance, or whether the court
would consider that to be a valid copyright permission statement.  So
any "answers" made by any lawyer would be guesses.  Of course, an
guess by a lawyer which is retained by *you* or your company and fully
informed with the unique parameters of your situation would constitute
legal advice.  Anything else, including anything any of us could say
on this mailing list, would be biovating.  :-)

Cheers,

					- Ted
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2014-02-24 13:41                           ` SPDX-License-Identifier Theodore Ts'o
  (?)
@ 2014-02-24 14:03                           ` Michal Simek
  2014-02-24 14:26                               ` SPDX-License-Identifier Greg Kroah-Hartman
  -1 siblings, 1 reply; 75+ messages in thread
From: Michal Simek @ 2014-02-24 14:03 UTC (permalink / raw)
  To: Theodore Ts'o, Greg Kroah-Hartman, Felipe Balbi,
	Subbaraya Sundeep Bhatta, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree, Wolfgang Denk

[-- Attachment #1: Type: text/plain, Size: 2242 bytes --]

On 02/24/2014 02:41 PM, Theodore Ts'o wrote:
> On Mon, Feb 24, 2014 at 11:12:53AM +0100, Michal Simek wrote:
>>> But of course, I'm not a lawyer, and if your company has is paying for
>>> the development of the driver, the Golden Rule applies (he who has the
>>> Gold, makes the Rules), and each of our respective corporate lawyers
>>> may have different opinions about what might happen if the question
>>> was ever to be adjudicated in court.
>>
>> Aren't all these points already answered by SPDX project?
>> I believe that they should know how this should be handled properly.
> 
> The SPDX can not give legal advice; not to you, and not to your
> company.  One lawyer might believe that 
> 
> /*
>  * SPDX-License-Identifier: GPL-2.0
>  */
> 
> Might be sufficient.  Others might believe you need to do:
> 
> /*
>  * Copyright Ty Coon, 2012.
>  * 
>  * SPDX-License-Identifier: GPL-2.0
>  */
> 
> Still others might believe you need at the very least:
> 
> /*
>  * Copyright Ty Coon, 2012.
>  * 
>  * All Rights Reserved.
>  *
>  * SPDX-License-Identifier: GPL-2.0
>  */

Aren't these differences already present in the header?

> 
> As far as I know, there is no case law on point about whether or not
> SPDX-License-Identifier has legal significance, or whether the court
> would consider that to be a valid copyright permission statement.  So
> any "answers" made by any lawyer would be guesses.  Of course, an
> guess by a lawyer which is retained by *you* or your company and fully
> informed with the unique parameters of your situation would constitute
> legal advice.  Anything else, including anything any of us could say
> on this mailing list, would be biovating.  :-)

I think make sense to wait for Wolfgang about his experience because
I believe he has considered it before u-boot change.

BTW: Isn't this a good topic for kernel-summit? :-)

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-24 14:26                               ` Greg Kroah-Hartman
  0 siblings, 0 replies; 75+ messages in thread
From: Greg Kroah-Hartman @ 2014-02-24 14:26 UTC (permalink / raw)
  To: Michal Simek
  Cc: Theodore Ts'o, Felipe Balbi, Subbaraya Sundeep Bhatta,
	linux-usb, linux-kernel, Subbaraya Sundeep Bhatta, devicetree,
	Wolfgang Denk

On Mon, Feb 24, 2014 at 03:03:25PM +0100, Michal Simek wrote:
> 
> BTW: Isn't this a good topic for kernel-summit? :-)

No, lawyers don't go to the summit, developers do.

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2014-02-24 14:26                               ` Greg Kroah-Hartman
  0 siblings, 0 replies; 75+ messages in thread
From: Greg Kroah-Hartman @ 2014-02-24 14:26 UTC (permalink / raw)
  To: Michal Simek
  Cc: Theodore Ts'o, Felipe Balbi, Subbaraya Sundeep Bhatta,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Subbaraya Sundeep Bhatta,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

On Mon, Feb 24, 2014 at 03:03:25PM +0100, Michal Simek wrote:
> 
> BTW: Isn't this a good topic for kernel-summit? :-)

No, lawyers don't go to the summit, developers do.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2014-02-24 14:26                               ` SPDX-License-Identifier Greg Kroah-Hartman
  (?)
@ 2014-02-25 12:10                               ` One Thousand Gnomes
  2014-02-25 12:25                                 ` SPDX-License-Identifier Geert Uytterhoeven
  -1 siblings, 1 reply; 75+ messages in thread
From: One Thousand Gnomes @ 2014-02-25 12:10 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Michal Simek, Theodore Ts'o, Felipe Balbi,
	Subbaraya Sundeep Bhatta, linux-usb, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree, Wolfgang Denk

On Mon, 24 Feb 2014 06:26:52 -0800
Greg Kroah-Hartman <gregkh@linuxfoundation.org> wrote:

> On Mon, Feb 24, 2014 at 03:03:25PM +0100, Michal Simek wrote:
> > 
> > BTW: Isn't this a good topic for kernel-summit? :-)
> 
> No, lawyers don't go to the summit, developers do.

More of a topic for the LF. Particularly as any attempt to touch license
statements in existing drivers would end up needing the corporate lawyer
of every rights holder on the planet for the file in question to be
consulted, which is not I suspect going to happen!

Alan

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2014-02-25 12:10                               ` SPDX-License-Identifier One Thousand Gnomes
@ 2014-02-25 12:25                                 ` Geert Uytterhoeven
  0 siblings, 0 replies; 75+ messages in thread
From: Geert Uytterhoeven @ 2014-02-25 12:25 UTC (permalink / raw)
  To: One Thousand Gnomes
  Cc: Greg Kroah-Hartman, Michal Simek, Theodore Ts'o,
	Felipe Balbi, Subbaraya Sundeep Bhatta, USB list, linux-kernel,
	Subbaraya Sundeep Bhatta, devicetree, Wolfgang Denk

On Tue, Feb 25, 2014 at 1:10 PM, One Thousand Gnomes
<gnomes@lxorguk.ukuu.org.uk> wrote:
> On Mon, 24 Feb 2014 06:26:52 -0800
> Greg Kroah-Hartman <gregkh@linuxfoundation.org> wrote:
>
>> On Mon, Feb 24, 2014 at 03:03:25PM +0100, Michal Simek wrote:
>> >
>> > BTW: Isn't this a good topic for kernel-summit? :-)
>>
>> No, lawyers don't go to the summit, developers do.
>
> More of a topic for the LF. Particularly as any attempt to touch license
> statements in existing drivers would end up needing the corporate lawyer
> of every rights holder on the planet for the file in question to be
> consulted, which is not I suspect going to happen!

That's gonna be a BIG Linux Lawyer Summit ;-)

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-03-10 13:36         ` sundeep subbaraya
  0 siblings, 0 replies; 75+ messages in thread
From: sundeep subbaraya @ 2014-03-10 13:36 UTC (permalink / raw)
  To: balbi
  Cc: Subbaraya Sundeep Bhatta, Greg Kroah-Hartman, linux-usb,
	linux-kernel, Michal Simek, devicetree

On Fri, Feb 21, 2014 at 9:09 PM, Felipe Balbi <balbi@ti.com> wrote:
> Hi,
>
> On Fri, Feb 21, 2014 at 11:27:07AM +0000, Subbaraya Sundeep Bhatta wrote:
>> > From the looks of it, I doubt this was actually tested, you need a lot
>> > of work on this driver.
>> Tested on both ARM and Microblaze architectures with Mass storage gadget.
>> Will send a v2 after addressing all your comments.
>
> clearly you didn't try to remove and reinsert the module or you would
> see a whole bunch of errors.
>

Yes you are correct. My console hung up as soon as i rmmod my driver.
Could you please point me where am wrong.

>> This email and any attachments are intended for the sole use of the
>> named recipient(s) and contain(s) confidential information that may be
>> proprietary, privileged or copyrighted under applicable law. If you
>> are not the intended recipient, do not read, copy, or forward this
>> email message or any attachments. Delete this email message and any
>> attachments immediately.
>
> remove this footer message, btw, when sending emails to public mailing
> lists.
>
Sure
> --
> balbi

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-03-10 13:36         ` sundeep subbaraya
  0 siblings, 0 replies; 75+ messages in thread
From: sundeep subbaraya @ 2014-03-10 13:36 UTC (permalink / raw)
  To: balbi-l0cyMroinI0
  Cc: Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Michal Simek,
	devicetree-u79uwXL29TY76Z2rM5mHXA

On Fri, Feb 21, 2014 at 9:09 PM, Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org> wrote:
> Hi,
>
> On Fri, Feb 21, 2014 at 11:27:07AM +0000, Subbaraya Sundeep Bhatta wrote:
>> > From the looks of it, I doubt this was actually tested, you need a lot
>> > of work on this driver.
>> Tested on both ARM and Microblaze architectures with Mass storage gadget.
>> Will send a v2 after addressing all your comments.
>
> clearly you didn't try to remove and reinsert the module or you would
> see a whole bunch of errors.
>

Yes you are correct. My console hung up as soon as i rmmod my driver.
Could you please point me where am wrong.

>> This email and any attachments are intended for the sole use of the
>> named recipient(s) and contain(s) confidential information that may be
>> proprietary, privileged or copyrighted under applicable law. If you
>> are not the intended recipient, do not read, copy, or forward this
>> email message or any attachments. Delete this email message and any
>> attachments immediately.
>
> remove this footer message, btw, when sending emails to public mailing
> lists.
>
Sure
> --
> balbi
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-03-10 13:36         ` sundeep subbaraya
@ 2014-03-10 18:44           ` Felipe Balbi
  -1 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-03-10 18:44 UTC (permalink / raw)
  To: sundeep subbaraya
  Cc: balbi, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman, linux-usb,
	linux-kernel, Michal Simek, devicetree

[-- Attachment #1: Type: text/plain, Size: 1717 bytes --]

Hi,

On Mon, Mar 10, 2014 at 07:06:19PM +0530, sundeep subbaraya wrote:
> On Fri, Feb 21, 2014 at 9:09 PM, Felipe Balbi <balbi@ti.com> wrote:
> > Hi,
> >
> > On Fri, Feb 21, 2014 at 11:27:07AM +0000, Subbaraya Sundeep Bhatta wrote:
> >> > From the looks of it, I doubt this was actually tested, you need a lot
> >> > of work on this driver.
> >> Tested on both ARM and Microblaze architectures with Mass storage gadget.
> >> Will send a v2 after addressing all your comments.
> >
> > clearly you didn't try to remove and reinsert the module or you would
> > see a whole bunch of errors.
> >
> 
> Yes you are correct. My console hung up as soon as i rmmod my driver.
> Could you please point me where am wrong.

Many of your mistakes have already been pointed out here:

http://marc.info/?l=linux-usb&m=139292068028649&w=2

Please fix those and see if following script works:

#!/bin/sh

MODULE="xilinx_udc"

for i in $(seq 500); do
	modprobe $MODULE > /dev/null 2>&1;
	modprobe -r $MODULE > /dev/null 2>&1;
	if [ $? -eq 0 ]; then
		echo -n "."
	else
		echo -n "F"
	fi
done

echo "Finished"

you shouldn't see any F characters and your machine shouldn't crash or
hang or reboot...

Also make sure to run g_zero testcases and mass storage tescases. I
wrote, long ago, a small tool to help testing UDC drivers running with
the mass storage gadget, which you can find in [1]. There's a runner
script which makes it easy to full test suite which you can find in [2].

[1] https://gitorious.org/usb/usb-tools/source/7eb7ef21de6cd124e0e0d0e7df9ddfff0e2f548e:msc.c
[2] https://gitorious.org/usb/usb-tools/source/7eb7ef21de6cd124e0e0d0e7df9ddfff0e2f548e:msc.sh

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-03-10 18:44           ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-03-10 18:44 UTC (permalink / raw)
  To: sundeep subbaraya
  Cc: balbi, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman, linux-usb,
	linux-kernel, Michal Simek, devicetree

[-- Attachment #1: Type: text/plain, Size: 1717 bytes --]

Hi,

On Mon, Mar 10, 2014 at 07:06:19PM +0530, sundeep subbaraya wrote:
> On Fri, Feb 21, 2014 at 9:09 PM, Felipe Balbi <balbi@ti.com> wrote:
> > Hi,
> >
> > On Fri, Feb 21, 2014 at 11:27:07AM +0000, Subbaraya Sundeep Bhatta wrote:
> >> > From the looks of it, I doubt this was actually tested, you need a lot
> >> > of work on this driver.
> >> Tested on both ARM and Microblaze architectures with Mass storage gadget.
> >> Will send a v2 after addressing all your comments.
> >
> > clearly you didn't try to remove and reinsert the module or you would
> > see a whole bunch of errors.
> >
> 
> Yes you are correct. My console hung up as soon as i rmmod my driver.
> Could you please point me where am wrong.

Many of your mistakes have already been pointed out here:

http://marc.info/?l=linux-usb&m=139292068028649&w=2

Please fix those and see if following script works:

#!/bin/sh

MODULE="xilinx_udc"

for i in $(seq 500); do
	modprobe $MODULE > /dev/null 2>&1;
	modprobe -r $MODULE > /dev/null 2>&1;
	if [ $? -eq 0 ]; then
		echo -n "."
	else
		echo -n "F"
	fi
done

echo "Finished"

you shouldn't see any F characters and your machine shouldn't crash or
hang or reboot...

Also make sure to run g_zero testcases and mass storage tescases. I
wrote, long ago, a small tool to help testing UDC drivers running with
the mass storage gadget, which you can find in [1]. There's a runner
script which makes it easy to full test suite which you can find in [2].

[1] https://gitorious.org/usb/usb-tools/source/7eb7ef21de6cd124e0e0d0e7df9ddfff0e2f548e:msc.c
[2] https://gitorious.org/usb/usb-tools/source/7eb7ef21de6cd124e0e0d0e7df9ddfff0e2f548e:msc.sh

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-03-26 10:07     ` sundeep subbaraya
  0 siblings, 0 replies; 75+ messages in thread
From: sundeep subbaraya @ 2014-03-26 10:07 UTC (permalink / raw)
  To: balbi
  Cc: Subbaraya Sundeep Bhatta, Greg Kroah-Hartman, linux-usb,
	linux-kernel, Michal Simek, Subbaraya Sundeep Bhatta, devicetree

Hi Felipe,

On Thu, Feb 20, 2014 at 11:53 PM, Felipe Balbi <balbi@ti.com> wrote:
> Hi,
>
> On Wed, Feb 19, 2014 at 03:10:45PM +0530, Subbaraya Sundeep Bhatta wrote:
>> This patch adds xilinx axi usb2 device driver support
>>
>> Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta@xilinx.com>
>> ---
>>  .../devicetree/bindings/usb/xilinx_usb.txt         |   21 +
>>  drivers/usb/gadget/Kconfig                         |   14 +
>>  drivers/usb/gadget/Makefile                        |    1 +
>>  drivers/usb/gadget/xilinx_udc.c                    | 2045 ++++++++++++++++++++
>>  4 files changed, 2081 insertions(+), 0 deletions(-)
>>  create mode 100644 Documentation/devicetree/bindings/usb/xilinx_usb.txt
>>  create mode 100644 drivers/usb/gadget/xilinx_udc.c
>>
>> diff --git a/Documentation/devicetree/bindings/usb/xilinx_usb.txt b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
>> new file mode 100644
>> index 0000000..acf03ab
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
>> @@ -0,0 +1,21 @@
>> +Xilinx AXI USB2 device controller
>> +
>> +Required properties:
>> +- compatible         : Should be "xlnx,axi-usb2-device-4.00.a"
>> +- reg                        : Physical base address and size of the Axi USB2
>> +                       device registers map.
>> +- interrupts         : Property with a value describing the interrupt
>> +                       number.
>> +- interrupt-parent   : Must be core interrupt controller
>> +- xlnx,include-dma   : Must be 1 or 0 based on whether DMA is included
>> +                       in IP or not.
>> +
>> +Example:
>> +             axi-usb2-device@42e00000 {
>> +                        compatible = "xlnx,axi-usb2-device-4.00.a";
>> +                        interrupt-parent = <0x1>;
>> +                        interrupts = <0x0 0x39 0x1>;
>> +                        reg = <0x42e00000 0x10000>;
>> +                        xlnx,include-dma = <0x1>;
>> +                };
>> +
>
> you need to Cc devicetree@vger.kernel.org for this.
>
>> diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
>> index 8154165..0b284bf 100644
>> --- a/drivers/usb/gadget/Kconfig
>> +++ b/drivers/usb/gadget/Kconfig
>> @@ -466,6 +466,20 @@ config USB_EG20T
>>         ML7213/ML7831 is companion chip for Intel Atom E6xx series.
>>         ML7213/ML7831 is completely compatible for Intel EG20T PCH.
>>
>> +config USB_GADGET_XILINX
>> +     tristate "Xilinx USB Driver"
>> +     depends on MICROBLAZE || ARCH_ZYNQ
>
> This has the tendency to grow and I really don't like seeing a bunch of
> arch-specific dependencies. At a minimum add COMPILE_TEST so I can build
> test on my setup and make sure it builds fine on other architectures.
>
>> +     help
>> +       USB peripheral controller driver for Xilinx AXI USB2 device.
>> +       Xilinx AXI USB2 device is a soft IP which supports both full
>> +       and high speed USB 2.0 data transfers. It has seven configurable
>> +       endpoints(bulk or interrupt or isochronous), as well as
>> +       endpoint zero(for control transfers).
>> +
>> +       Say "y" to link the driver statically, or "m" to build a
>> +       dynamically linked module called "xilinx_udc" and force all
>> +       gadget drivers to also be dynamically linked.
>> +
>>  #
>>  # LAST -- dummy/emulated controller
>>  #
>> diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile
>> index 5f150bc..3a55564 100644
>> --- a/drivers/usb/gadget/Makefile
>> +++ b/drivers/usb/gadget/Makefile
>> @@ -36,6 +36,7 @@ obj-$(CONFIG_USB_FUSB300)   += fusb300_udc.o
>>  obj-$(CONFIG_USB_FOTG210_UDC)        += fotg210-udc.o
>>  obj-$(CONFIG_USB_MV_U3D)     += mv_u3d_core.o
>>  obj-$(CONFIG_USB_GR_UDC)     += gr_udc.o
>> +obj-$(CONFIG_USB_GADGET_XILINX)      += xilinx_udc.o
>
> let's start normalizing the names here (I'll patch the others later) and
> call this udc-xilinx.o
>
>> diff --git a/drivers/usb/gadget/xilinx_udc.c b/drivers/usb/gadget/xilinx_udc.c
>> new file mode 100644
>> index 0000000..3ee8359
>> --- /dev/null
>> +++ b/drivers/usb/gadget/xilinx_udc.c
>> @@ -0,0 +1,2045 @@
>> +/*
>> + * Xilinx USB peripheral controller driver
>> + *
>> + * Copyright (C) 2004 by Thomas Rathbone
>> + * Copyright (C) 2005 by HP Labs
>> + * Copyright (C) 2005 by David Brownell
>
> heh! :-) Brownell was really everywhere, good to still see code from him
> ;-)
>
>> + * Copyright (C) 2010 - 2014 Xilinx, Inc.
>> + *
>> + * Some parts of this driver code is based on the driver for at91-series
>> + * USB peripheral controller (at91_udc.c).
>> + *
>> + * This program is free software; you can redistribute it
>> + * and/or modify it under the terms of the GNU General Public
>> + * License as published by the Free Software Foundation;
>> + * either version 2 of the License, or (at your option) any
>> + * later version.
>
> are you sure you want to allow people ot use GPL v3 on this driver ?
>
>> +#include <linux/interrupt.h>
>> +#include <linux/device.h>
>> +#include <linux/module.h>
>> +#include <linux/prefetch.h>
>> +#include <linux/usb/ch9.h>
>> +#include <linux/usb/gadget.h>
>> +#include <linux/io.h>
>> +#include <linux/seq_file.h>
>> +#include <linux/of_address.h>
>> +#include <linux/of_device.h>
>> +#include <linux/of_platform.h>
>> +#include <linux/of_irq.h>
>> +#include <linux/dma-mapping.h>
>> +#include "gadget_chips.h"
>> +
>> +/* Register offsets for the USB device.*/
>> +#define XUSB_EP0_CONFIG_OFFSET               0x0000  /* EP0 Config Reg Offset */
>> +#define XUSB_SETUP_PKT_ADDR_OFFSET   0x0080  /* Setup Packet Address */
>> +#define XUSB_ADDRESS_OFFSET          0x0100  /* Address Register */
>> +#define XUSB_CONTROL_OFFSET          0x0104  /* Control Register */
>> +#define XUSB_STATUS_OFFSET           0x0108  /* Status Register */
>> +#define XUSB_FRAMENUM_OFFSET         0x010C  /* Frame Number Register */
>> +#define XUSB_IER_OFFSET                      0x0110  /* Interrupt Enable Register */
>> +#define XUSB_BUFFREADY_OFFSET                0x0114  /* Buffer Ready Register */
>> +#define XUSB_TESTMODE_OFFSET         0x0118  /* Test Mode Register */
>> +#define XUSB_DMA_RESET_OFFSET                0x0200  /* DMA Soft Reset Register */
>> +#define XUSB_DMA_CONTROL_OFFSET              0x0204  /* DMA Control Register */
>> +#define XUSB_DMA_DSAR_ADDR_OFFSET    0x0208  /* DMA source Address Reg */
>> +#define XUSB_DMA_DDAR_ADDR_OFFSET    0x020C  /* DMA destination Addr Reg */
>> +#define XUSB_DMA_LENGTH_OFFSET               0x0210  /* DMA Length Register */
>> +#define XUSB_DMA_STATUS_OFFSET               0x0214  /* DMA Status Register */
>> +
>> +/* Endpoint Configuration Space offsets */
>> +#define XUSB_EP_CFGSTATUS_OFFSET     0x00    /* Endpoint Config Status  */
>> +#define XUSB_EP_BUF0COUNT_OFFSET     0x08    /* Buffer 0 Count */
>> +#define XUSB_EP_BUF1COUNT_OFFSET     0x0C    /* Buffer 1 Count */
>> +
>> +#define XUSB_CONTROL_USB_READY_MASK  0x80000000 /* USB ready Mask */
>> +
>> +/* Interrupt register related masks.*/
>> +#define XUSB_STATUS_GLOBAL_INTR_MASK 0x80000000 /* Global Intr Enable */
>> +#define XUSB_STATUS_RESET_MASK               0x00800000 /* USB Reset Mask */
>> +#define XUSB_STATUS_SUSPEND_MASK     0x00400000 /* USB Suspend Mask */
>> +#define XUSB_STATUS_DISCONNECT_MASK  0x00200000 /* USB Disconnect Mask */
>> +#define XUSB_STATUS_FIFO_BUFF_RDY_MASK       0x00100000 /* FIFO Buff Ready Mask */
>> +#define XUSB_STATUS_FIFO_BUFF_FREE_MASK      0x00080000 /* FIFO Buff Free Mask */
>> +#define XUSB_STATUS_SETUP_PACKET_MASK        0x00040000 /* Setup packet received */
>> +#define XUSB_STATUS_EP1_BUFF2_COMP_MASK      0x00000200 /* EP 1 Buff 2 Processed */
>> +#define XUSB_STATUS_EP1_BUFF1_COMP_MASK      0x00000002 /* EP 1 Buff 1 Processed */
>> +#define XUSB_STATUS_EP0_BUFF2_COMP_MASK      0x00000100 /* EP 0 Buff 2 Processed */
>> +#define XUSB_STATUS_EP0_BUFF1_COMP_MASK      0x00000001 /* EP 0 Buff 1 Processed */
>> +#define XUSB_STATUS_HIGH_SPEED_MASK  0x00010000 /* USB Speed Mask */
>> +/* Suspend,Reset and Disconnect Mask */
>> +#define XUSB_STATUS_INTR_EVENT_MASK  0x00E00000
>> +/* Buffers  completion Mask */
>> +#define XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK  0x0000FEFF
>> +/* Mask for buffer 0 and buffer 1 completion for all Endpoints */
>> +#define XUSB_STATUS_INTR_BUFF_COMP_SHIFT_MASK        0x00000101
>> +#define XUSB_STATUS_EP_BUFF2_SHIFT   8          /* EP buffer offset */
>> +
>> +/* Endpoint Configuration Status Register */
>> +#define XUSB_EP_CFG_VALID_MASK               0x80000000 /* Endpoint Valid bit */
>> +#define XUSB_EP_CFG_STALL_MASK               0x40000000 /* Endpoint Stall bit */
>> +#define XUSB_EP_CFG_DATA_TOGGLE_MASK 0x08000000 /* Endpoint Data toggle */
>> +
>> +/* USB device specific global configuration constants.*/
>> +#define XUSB_MAX_ENDPOINTS           8       /* Maximum End Points */
>> +#define XUSB_EP_NUMBER_ZERO          0       /* End point Zero */
>> +
>> +/* Test Modes (Set Feature).*/
>> +#define TEST_J                               1       /* Chirp J Test */
>> +#define TEST_K                               2       /* Chirp K Test */
>> +#define TEST_SE0_NAK                 3       /* Chirp SE0 Test */
>> +#define TEST_PKT                     4       /* Packet Test */
>> +
>> +#define CONFIGURATION_ONE            0x01    /* USB device configuration*/
>> +#define STANDARD_OUT_DEVICE          0x00    /* Out device */
>> +#define STANDARD_OUT_ENDPOINT                0x02    /* Standard Out end point */
>
> DO NOT REDEFINE THESE, use the ones from <linux/usb/ch9.h>
>
>> +
>> +#define XUSB_DMA_READ_FROM_DPRAM     0x80000000/**< DPRAM is the source
>> +                                                     address for DMA transfer
>> +                                                     */
>> +#define XUSB_DMA_DMASR_BUSY          0x80000000 /**< DMA busy*/
>> +#define XUSB_DMA_DMASR_ERROR         0x40000000 /**< DMA Error */
>> +
>> +/*
>> + * When this bit is set, the DMA buffer ready bit is set by hardware upon
>> + * DMA transfer completion.
>> + */
>> +#define XUSB_DMA_BRR_CTRL            0x40000000 /**< DMA bufready ctrl bit */
>> +
>> +/* Phase States */
>> +#define SETUP_PHASE                  0x0000  /* Setup Phase */
>> +#define DATA_PHASE                   0x0001  /* Data Phase */
>> +#define STATUS_PHASE                 0x0002  /* Status Phase */
>> +
>> +#define EP_TRANSMIT          0       /* EP is IN endpoint */
>> +#define EP0_MAX_PACKET               64 /* Endpoint 0 maximum packet length */
>> +
>> +/**
>> + * struct xusb_request - Xilinx USB device request structure
>> + * @usb_req: Linux usb request structure
>> + * @queue: usb device request queue
>> + */
>> +struct xusb_request {
>> +     struct usb_request usb_req;
>> +     struct list_head queue;
>> +};
>> +
>> +/**
>> + * struct xusb_ep - USB end point structure.
>> + * @ep_usb: usb endpoint instance
>> + * @queue: endpoint message queue
>> + * @udc: xilinx usb peripheral driver instance pointer
>> + * @desc: pointer to the usb endpoint descriptor
>> + * @data: pointer to the xusb_request structure
>> + * @rambase: the endpoint buffer address
>> + * @endpointoffset: the endpoint register offset value
>> + * @epnumber: endpoint number
>> + * @maxpacket: maximum packet size the endpoint can store
>> + * @buffer0count: the size of the packet recieved in the first buffer
>> + * @buffer0ready: the busy state of first buffer
>> + * @buffer1count: the size of the packet received in the second buffer
>> + * @buffer1ready: the busy state of second buffer
>> + * @eptype: endpoint transfer type (BULK, INTERRUPT)
>> + * @curbufnum: current buffer of endpoint that will be processed next
>> + * @is_in: endpoint direction (IN or OUT)
>> + * @stopped: endpoint active status
>> + * @is_iso: endpoint type(isochronous or non isochronous)
>> + * @name: name of the endpoint
>> + */
>> +struct xusb_ep {
>> +     struct usb_ep ep_usb;
>> +     struct list_head queue;
>> +     struct xusb_udc *udc;
>> +     const struct usb_endpoint_descriptor *desc;
>> +     struct xusb_request *data;
>> +     u32 rambase;
>> +     u32 endpointoffset;
>> +     u16 epnumber;
>> +     u16 maxpacket;
>> +     u16 buffer0count;
>> +     u16 buffer1count;
>> +     u8 buffer0ready;
>> +     u8 buffer1ready;
>> +     u8 eptype;
>> +     u8 curbufnum;
>> +     u8 is_in;
>> +     u8 stopped;
>> +     u8 is_iso;
>> +     char name[4];
>> +};
>> +
>> +/**
>> + * struct xusb_udc -  USB peripheral driver structure
>> + * @gadget: USB gadget driver instance
>> + * @ep: an array of endpoint structures
>> + * @driver: pointer to the usb gadget driver instance
>> + * @read_fn: function pointer to read device registers
>> + * @write_fn: function pointer to write to device registers
>> + * @base_address: the usb device base address
>> + * @lock: instance of spinlock
>> + * @dma_enabled: flag indicating whether the dma is included in the system
>> + * @status: status flag indicating the device cofiguration
>> + */
>> +struct xusb_udc {
>> +     struct usb_gadget gadget;
>> +     struct xusb_ep ep[8];
>> +     struct usb_gadget_driver *driver;
>> +     unsigned int (*read_fn)(void __iomem *);
>> +     void (*write_fn)(u32, void __iomem *);
>> +     void __iomem *base_address;
>> +     spinlock_t lock;
>> +     bool dma_enabled;
>> +     u8 status;
>> +};
>> +
>> +/**
>> + * struct cmdbuf - Standard USB Command Buffer Structure defined
>> + * @setup: usb_ctrlrequest structure for control requests
>> + * @contreadcount: read data bytes count
>> + * @contwritecount: write data bytes count
>> + * @setupseqtx: tx status
>> + * @setupseqrx: rx status
>> + * @contreadptr: pointer to endpoint0 read data
>> + * @contwriteptr: pointer to endpoint0 write data
>> + * @contreaddatabuffer: read data buffer for endpoint0
>> + */
>> +struct cmdbuf {
>> +     struct usb_ctrlrequest setup;
>> +     u32 contreadcount;
>> +     u32 contwritecount;
>> +     u32 setupseqtx;
>> +     u32 setupseqrx;
>> +     u8 *contreadptr;
>> +     u8 *contwriteptr;
>> +     u8 contreaddatabuffer[64];
>> +};
>> +
>> +static struct cmdbuf ch9_cmdbuf;
>
> NAK, you should support multiple instances of this device in the same
> SoC.
>
>> +/*
>> + * Endpoint buffer start addresses in the core
>> + */
>
> fits in one line.
>
>> +static u32 rambase[8] = { 0x22, 0x1000, 0x1100, 0x1200, 0x1300, 0x1400, 0x1500,
>> +                     0x1600 };
>> +
>> +static const char driver_name[] = "xilinx-udc";
>> +static const char ep0name[] = "ep0";
>> +
>> +/* Control endpoint configuration.*/
>> +static struct usb_endpoint_descriptor config_bulk_out_desc = {
>> +     .bLength = USB_DT_ENDPOINT_SIZE,
>> +     .bDescriptorType = USB_DT_ENDPOINT,
>> +     .bEndpointAddress = USB_DIR_OUT,
>> +     .bmAttributes = USB_ENDPOINT_XFER_BULK,
>> +     .wMaxPacketSize = __constant_cpu_to_le16(0x40),
>> +};
>> +
>> +/**
>> + * to_udc - Return the udc instance pointer
>> + * @g: pointer to the usb gadget driver instance
>> + *
>> + * Return: xusb_udc pointer
>> + */
>> +static inline struct xusb_udc *to_udc(struct usb_gadget *g)
>> +{
>> +
>
> remove this whiteline here. Also, this could very well be a macro
> instead of a function. No strong feelings though.
Ok
>
>> +     return container_of(g, struct xusb_udc, gadget);
>> +}
>> +
>> +/**
>> + * xudc_write32 - little endian write to device registers
>> + * @val: data to be written
>> + * @addr: addr of device register
>> + */
>> +static void xudc_write32(u32 val, void __iomem *addr)
>
> usually, people tend to pass addr, offset and value. Then you do the
> quick little math internally:
>
>         iowrite32(val, addr + offset);
>
> no strong feelings either.
Ok. will change
>
>> +static int xudc_eptxrx(struct xusb_ep *ep, u8 *bufferptr, u32 bufferlen,
>> +                     u8 direction)
>> +{
>> +     u32 *eprambase;
>> +     u32 bytestosend;
>> +     u8 *temprambase;
>> +     unsigned long timeout;
>> +     u32 srcaddr = 0;
>> +     u32 dstaddr = 0;
>> +     int rc = 0;
>> +     struct xusb_udc *udc = ep->udc;
>> +
>> +     bytestosend = bufferlen;
>> +
>> +     /* Put the transmit buffer into the correct ping-pong buffer.*/
>> +     if (!ep->curbufnum && !ep->buffer0ready) {
>> +             /* Get the Buffer address and copy the transmit data.*/
>> +             eprambase = (u32 __force *)(ep->udc->base_address +
>> +                             ep->rambase);
>> +
>> +             if (ep->udc->dma_enabled) {
>> +                     if (direction == EP_TRANSMIT) {
>> +                             srcaddr = dma_map_single(
>> +                                     ep->udc->gadget.dev.parent,
>> +                                     bufferptr, bufferlen, DMA_TO_DEVICE);
>> +                             dstaddr = virt_to_phys(eprambase);
>> +                             udc->write_fn(bufferlen,
>> +                                             ep->udc->base_address +
>> +                                             ep->endpointoffset +
>> +                                             XUSB_EP_BUF0COUNT_OFFSET);
>> +                             udc->write_fn(XUSB_DMA_BRR_CTRL |
>> +                                             (1 << ep->epnumber),
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_CONTROL_OFFSET);
>> +                     } else {
>> +                             srcaddr = virt_to_phys(eprambase);
>> +                             dstaddr = dma_map_single(
>> +                                     ep->udc->gadget.dev.parent,
>> +                                     bufferptr, bufferlen, DMA_FROM_DEVICE);
>> +                             udc->write_fn(XUSB_DMA_BRR_CTRL |
>> +                                     XUSB_DMA_READ_FROM_DPRAM |
>> +                                     (1 << ep->epnumber),
>> +                                     ep->udc->base_address +
>> +                                     XUSB_DMA_CONTROL_OFFSET);
>> +                     }
>> +                     /*
>> +                      * Set the addresses in the DMA source and destination
>> +                      * registers and then set the length into the DMA length
>> +                      * register.
>> +                      */
>> +                     udc->write_fn(srcaddr, ep->udc->base_address +
>> +                             XUSB_DMA_DSAR_ADDR_OFFSET);
>> +                     udc->write_fn(dstaddr, ep->udc->base_address +
>> +                             XUSB_DMA_DDAR_ADDR_OFFSET);
>> +                     udc->write_fn(bufferlen, ep->udc->base_address +
>> +                                     XUSB_DMA_LENGTH_OFFSET);
>> +             } else {
>> +
>> +                     while (bytestosend > 3) {
>> +                             if (direction == EP_TRANSMIT)
>> +                                     *eprambase++ = *(u32 *)bufferptr;
>> +                             else
>> +                                     *(u32 *)bufferptr = *eprambase++;
>> +                             bufferptr += 4;
>> +                             bytestosend -= 4;
>> +                     }
>> +                     temprambase = (u8 *)eprambase;
>> +                     while (bytestosend--) {
>> +                             if (direction == EP_TRANSMIT)
>> +                                     *temprambase++ = *bufferptr++;
>> +                             else
>> +                                     *bufferptr++ = *temprambase++;
>> +                     }
>> +                     /*
>> +                      * Set the Buffer count register with transmit length
>> +                      * and enable the buffer for transmission.
>> +                      */
>> +                     if (direction == EP_TRANSMIT)
>> +                             udc->write_fn(bufferlen,
>> +                                     ep->udc->base_address +
>> +                                     ep->endpointoffset +
>> +                                     XUSB_EP_BUF0COUNT_OFFSET);
>> +                     udc->write_fn(1 << ep->epnumber,
>> +                                     ep->udc->base_address +
>> +                                     XUSB_BUFFREADY_OFFSET);
>> +             }
>> +             ep->buffer0ready = 1;
>> +             ep->curbufnum = 1;
>> +
>> +     } else
>> +             if ((ep->curbufnum == 1) && (!ep->buffer1ready)) {
>> +
>> +                     /* Get the Buffer address and copy the transmit data.*/
>> +                     eprambase = (u32 __force *)(ep->udc->base_address +
>> +                                     ep->rambase + ep->ep_usb.maxpacket);
>> +                     if (ep->udc->dma_enabled) {
>> +                             if (direction == EP_TRANSMIT) {
>> +                                     srcaddr = dma_map_single(
>> +                                             ep->udc->gadget.dev.parent,
>> +                                             bufferptr, bufferlen,
>> +                                             DMA_TO_DEVICE);
>> +                                     dstaddr = virt_to_phys(eprambase);
>> +                                     udc->write_fn(bufferlen,
>> +                                             ep->udc->base_address +
>> +                                             ep->endpointoffset +
>> +                                             XUSB_EP_BUF1COUNT_OFFSET);
>> +                                     udc->write_fn(XUSB_DMA_BRR_CTRL |
>> +                                             (1 << (ep->epnumber +
>> +                                             XUSB_STATUS_EP_BUFF2_SHIFT)),
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_CONTROL_OFFSET);
>> +                             } else {
>> +                                     srcaddr = virt_to_phys(eprambase);
>> +                                     dstaddr = dma_map_single(
>> +                                             ep->udc->gadget.dev.parent,
>> +                                             bufferptr, bufferlen,
>> +                                             DMA_FROM_DEVICE);
>> +                                     udc->write_fn(XUSB_DMA_BRR_CTRL |
>> +                                             XUSB_DMA_READ_FROM_DPRAM |
>> +                                             (1 << (ep->epnumber +
>> +                                             XUSB_STATUS_EP_BUFF2_SHIFT)),
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_CONTROL_OFFSET);
>> +                             }
>> +                             /*
>> +                              * Set the addresses in the DMA source and
>> +                              * destination registers and then set the length
>> +                              * into the DMA length register.
>> +                              */
>> +                             udc->write_fn(srcaddr,
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_DSAR_ADDR_OFFSET);
>> +                             udc->write_fn(dstaddr,
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_DDAR_ADDR_OFFSET);
>> +                             udc->write_fn(bufferlen,
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_LENGTH_OFFSET);
>> +                     } else {
>> +                             while (bytestosend > 3) {
>> +                                     if (direction == EP_TRANSMIT)
>> +                                             *eprambase++ =
>> +                                                     *(u32 *)bufferptr;
>> +                                     else
>> +                                             *(u32 *)bufferptr =
>> +                                                     *eprambase++;
>> +                                     bufferptr += 4;
>> +                                     bytestosend -= 4;
>> +                             }
>> +                             temprambase = (u8 *)eprambase;
>> +                             while (bytestosend--) {
>> +                                     if (direction == EP_TRANSMIT)
>> +                                             *temprambase++ = *bufferptr++;
>> +                                     else
>> +                                             *bufferptr++ = *temprambase++;
>> +                             }
>> +                             /*
>> +                              * Set the Buffer count register with transmit
>> +                              * length and enable the buffer for
>> +                              * transmission.
>> +                              */
>> +                             if (direction == EP_TRANSMIT)
>> +                                     udc->write_fn(bufferlen,
>> +                                             ep->udc->base_address +
>> +                                             ep->endpointoffset +
>> +                                             XUSB_EP_BUF1COUNT_OFFSET);
>> +                             udc->write_fn(1 << (ep->epnumber +
>> +                                             XUSB_STATUS_EP_BUFF2_SHIFT),
>> +                                             ep->udc->base_address +
>> +                                             XUSB_BUFFREADY_OFFSET);
>> +                     }
>> +                     ep->buffer1ready = 1;
>> +                     ep->curbufnum = 0;
>> +             } else {
>> +                     /*
>> +                      * None of the ping-pong buffer is free. Return a
>> +                      * failure.
>> +                      */
>> +                     return 1;
>> +             }
>> +
>> +     if (ep->udc->dma_enabled) {
>> +             /*
>> +              * Wait till DMA transaction is complete and
>> +              * check whether the DMA transaction was
>> +              * successful.
>> +              */
>> +             while ((udc->read_fn(ep->udc->base_address +
>> +                             XUSB_DMA_STATUS_OFFSET) &
>> +                             XUSB_DMA_DMASR_BUSY) == XUSB_DMA_DMASR_BUSY) {
>> +                     timeout = jiffies + 10000;
>> +
>> +                     if (time_after(jiffies, timeout)) {
>> +                             rc = -ETIMEDOUT;
>> +                             goto clean;
>> +                     }
>> +
>> +             }
>> +             if ((udc->read_fn(ep->udc->base_address +
>> +                             XUSB_DMA_STATUS_OFFSET) &
>> +                             XUSB_DMA_DMASR_ERROR) == XUSB_DMA_DMASR_ERROR)
>> +                     dev_dbg(&ep->udc->gadget.dev, "DMA Error\n");
>> +clean:
>> +             if (direction == EP_TRANSMIT) {
>> +                     dma_unmap_single(ep->udc->gadget.dev.parent,
>> +                             srcaddr, bufferlen, DMA_TO_DEVICE);
>> +             } else {
>> +                     dma_unmap_single(ep->udc->gadget.dev.parent,
>> +                             dstaddr, bufferlen, DMA_FROM_DEVICE);
>> +             }
>> +     }
>> +     return rc;
>> +}
>
> what a big function. Looks like you could split it into smaller
> functions to aid redability.
Ok.
>
>> +static int xudc_ep_enable(struct usb_ep *_ep,
>> +                       const struct usb_endpoint_descriptor *desc)
>> +{
>> +     struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +     struct xusb_udc *dev = ep->udc;
>> +     u32 tmp;
>> +     u8 eptype = 0;
>> +     unsigned long flags;
>> +     u32 epcfg;
>> +     struct xusb_udc *udc = ep->udc;
>> +
>> +     /*
>> +      * The check for _ep->name == ep0name is not done as this enable i used
>> +      * for enabling ep0 also. In other gadget drivers, this ep name is not
>> +      * used.
>> +      */
>> +     if (!_ep || !desc || ep->desc ||
>> +         desc->bDescriptorType != USB_DT_ENDPOINT) {
>> +             dev_dbg(&ep->udc->gadget.dev, "first check fails\n");
>
> you need a more descriptive message here.
Ok
>
>> +             return -EINVAL;
>> +     }
>> +
>> +     if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
>> +             dev_dbg(&ep->udc->gadget.dev, "bogus device state\n");
>> +             return -ESHUTDOWN;
>> +     }
>> +
>> +
>> +     ep->is_in = ((desc->bEndpointAddress & USB_DIR_IN) != 0);
>> +     /*
>> +      * Bit 3...0: endpoint number
>> +      */
>
> fits in one line, no need for multiline comment.
Ok
>
>> +     ep->epnumber = (desc->bEndpointAddress & 0x0f);
>> +     ep->stopped = 0;
>> +     ep->desc = desc;
>> +     ep->ep_usb.desc = desc;
>> +     tmp = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
>> +     spin_lock_irqsave(&ep->udc->lock, flags);
>> +     ep->ep_usb.maxpacket = le16_to_cpu(desc->wMaxPacketSize);
>> +
>> +     switch (tmp) {
>> +     case USB_ENDPOINT_XFER_CONTROL:
>> +             dev_dbg(&ep->udc->gadget.dev, "only one control endpoint\n");
>> +             /* NON- ISO */
>> +             eptype = 0;
>> +             spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +             return -EINVAL;
>> +     case USB_ENDPOINT_XFER_INT:
>> +             /* NON- ISO */
>> +             eptype = 0;
>> +             if (ep->ep_usb.maxpacket > 64)
>> +                     goto bogus_max;
>> +             break;
>> +     case USB_ENDPOINT_XFER_BULK:
>> +             /* NON- ISO */
>> +             eptype = 0;
>> +             switch (ep->ep_usb.maxpacket) {
>> +             case 8:
>> +             case 16:
>> +             case 32:
>> +             case 64:
>> +             case 512:
>> +             goto ok;
>
> bogus indentation.
>
>> +             }
>> +bogus_max:
>> +             dev_dbg(&ep->udc->gadget.dev, "bogus maxpacket %d\n",
>> +                     ep->ep_usb.maxpacket);
>> +             spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +             return -EINVAL;
>> +     case USB_ENDPOINT_XFER_ISOC:
>> +             /* ISO */
>> +             eptype = 1;
>> +             ep->is_iso = 1;
>> +             break;
>> +     }
>> +
>> +ok:  ep->eptype = eptype;
>
> the label sits in a line by itself:
>
> ok:
>         ep->eptype = eptype;
>
>         ...
>
>> +static int xudc_ep_disable(struct usb_ep *_ep)
>> +{
>> +     struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +     unsigned long flags;
>> +     u32 epcfg;
>> +     struct xusb_udc *udc = ep->udc;
>> +
>> +     if (ep == &ep->udc->ep[XUSB_EP_NUMBER_ZERO]) {
>> +             dev_dbg(&ep->udc->gadget.dev, "Ep0 disable called\n");
>> +             return -EINVAL;
>> +     }
>> +     spin_lock_irqsave(&ep->udc->lock, flags);
>> +
>> +     xudc_nuke(ep, -ESHUTDOWN);
>> +
>> +     /* Restore the endpoint's pristine config */
>> +     ep->desc = NULL;
>> +     ep->ep_usb.desc = NULL;
>> +
>> +     ep->stopped = 1;
>> +
>> +     dev_dbg(&ep->udc->gadget.dev, "USB Ep %d disable\n ", ep->epnumber);
>> +
>> +     /* Disable the endpoint.*/
>> +     epcfg = udc->read_fn(ep->udc->base_address + ep->endpointoffset);
>> +     epcfg &= ~XUSB_EP_CFG_VALID_MASK;
>> +     udc->write_fn(epcfg, ep->udc->base_address + ep->endpointoffset);
>> +     spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_ep_alloc_request - Initializes the request queue.
>> + * @_ep: pointer to the usb device endpoint structure.
>> + * @gfp_flags: Flags related to the request call.
>> + *
>> + * Return: pointer to request structure on success and a NULL on failure.
>> + */
>> +static struct usb_request *xudc_ep_alloc_request(struct usb_ep *_ep,
>> +                                              gfp_t gfp_flags)
>> +{
>> +     struct xusb_request *req;
>> +
>> +     req = kmalloc(sizeof(*req), gfp_flags);
>
> use kzalloc...
>
>> +     if (!req)
>> +             return NULL;
>> +
>> +     memset(req, 0, sizeof(*req));
>
> ... and drop this list head.
>
>> +     INIT_LIST_HEAD(&req->queue);
>
> remove this INIT_LIST_HEAD();
>
> also, before returning, I suppose you probably want to link the request
> to the endpoint somehow. Usually people save the endpoint pointer inside
> the private request structure (iow: req->ep = ep;)
>

in ep_queue (say,for IN transaction) the driver copies the gadget
driver buffer to HW endpoint buffer and if whole data
has been transferred successfully then request is not added to
endpoint request list. Hence  INIT_LIST_HEAD(&req->queue)
is required since list_add_tail is not done every time in ep_queue. Is
it ok to let this be here?

>> +     return &req->usb_req;
>> +}
>> +
>> +/**
>> + * xudc_free_request - Releases the request from queue.
>> + * @_ep: pointer to the usb device endpoint structure.
>> + * @_req: pointer to the usb request structure.
>> + */
>> +static void xudc_free_request(struct usb_ep *_ep, struct usb_request *_req)
>> +{
>> +     struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +     struct xusb_request *req;
>> +
>> +     req = container_of(_req, struct xusb_request, usb_req);
>
> define helper macros for these two container_of(). It helps with
> readability.
>
>> +     if (!list_empty(&req->queue))
>> +             dev_warn(&ep->udc->gadget.dev, "Error: No memory to free");
>
> what did you want to do here ? Perhaps:
>
>         if (list_empty(&req->queue)) {
>                 dev_warn(&ep->udc->gadget.dev, "Error: no request to free");
>                 return;
>         }
>
> ???
>
>> +     kfree(req);
>> +}
>> +
>> +/**
>> + * xudc_ep_queue - Adds the request to the queue.
>> + * @_ep: pointer to the usb device endpoint structure.
>> + * @_req: pointer to the usb request structure.
>> + * @gfp_flags: Flags related to the request call.
>> + *
>> + * Return: 0 for success and error value on failure
>> + */
>> +static int xudc_ep_queue(struct usb_ep *_ep, struct usb_request *_req,
>> +                      gfp_t gfp_flags)
>> +{
>> +     struct xusb_request *req;
>> +     struct xusb_ep *ep;
>> +     struct xusb_udc *dev;
>> +     unsigned long flags;
>> +     u32 length, count;
>> +     u8 *corebuf;
>> +     struct xusb_udc *udc;
>> +
>> +     req = container_of(_req, struct xusb_request, usb_req);
>> +     ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +     udc = ep->udc;
>> +
>> +     if (!_req || !_req->complete || !_req->buf ||
>> +                     !list_empty(&req->queue)) {
>> +             dev_dbg(&ep->udc->gadget.dev, "invalid request\n");
>> +             return -EINVAL;
>> +     }
>> +
>> +     if (!_ep || (!ep->desc && ep->ep_usb.name != ep0name)) {
>> +             dev_dbg(&ep->udc->gadget.dev, "invalid ep\n");
>> +             return -EINVAL;
>> +     }
>> +
>> +     dev = ep->udc;
>> +     if (!dev || !dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
>> +             dev_dbg(&ep->udc->gadget.dev, "%s, bogus device state %p\n",
>> +                     __func__, dev->driver);
>> +             return -ESHUTDOWN;
>> +     }
>> +
>> +     spin_lock_irqsave(&dev->lock, flags);
>> +
>> +     _req->status = -EINPROGRESS;
>> +     _req->actual = 0;
>> +
>> +     /* Try to kickstart any empty and idle queue */
>> +     if (list_empty(&ep->queue)) {
>> +             if (!ep->epnumber) {
>> +                     ep->data = req;
>> +                     if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
>> +                             ch9_cmdbuf.contwriteptr = req->usb_req.buf +
>> +                                                     req->usb_req.actual;
>> +                             prefetch(ch9_cmdbuf.contwriteptr);
>> +                             length = req->usb_req.length -
>> +                                     req->usb_req.actual;
>> +                             corebuf = (void __force *) ((ep->rambase << 2) +
>> +                                         ep->udc->base_address);
>> +                             ch9_cmdbuf.contwritecount = length;
>> +                             length = count = min_t(u32, length,
>> +                                                     EP0_MAX_PACKET);
>> +                             while (length--)
>> +                                     *corebuf++ = *ch9_cmdbuf.contwriteptr++;
>> +                             udc->write_fn(count, ep->udc->base_address +
>> +                                        XUSB_EP_BUF0COUNT_OFFSET);
>> +                             udc->write_fn(1, ep->udc->base_address +
>> +                                        XUSB_BUFFREADY_OFFSET);
>> +                             ch9_cmdbuf.contwritecount -= count;
>> +                     } else {
>> +                             if (ch9_cmdbuf.setup.wLength) {
>> +                                     ch9_cmdbuf.contreadptr =
>> +                                             req->usb_req.buf +
>> +                                                     req->usb_req.actual;
>> +                                     udc->write_fn(req->usb_req.length ,
>> +                                             ep->udc->base_address +
>> +                                             XUSB_EP_BUF0COUNT_OFFSET);
>> +                                     udc->write_fn(1, ep->udc->base_address
>> +                                             + XUSB_BUFFREADY_OFFSET);
>> +                             } else {
>> +                                     xudc_wrstatus(udc);
>> +                                     req = NULL;
>> +                             }
>> +                     }
>> +             } else {
>> +
>> +                     if (ep->is_in) {
>> +                             dev_dbg(&ep->udc->gadget.dev,
>> +                                     "xudc_write_fifo called from queue\n");
>> +                             if (xudc_write_fifo(ep, req) == 1)
>> +                                     req = NULL;
>> +                     } else {
>> +                             dev_dbg(&ep->udc->gadget.dev,
>> +                                     "xudc_read_fifo called from queue\n");
>> +                             if (xudc_read_fifo(ep, req) == 1)
>> +                                     req = NULL;
>> +                     }
>> +             }
>> +     }
>> +
>> +     if (req != NULL)
>> +             list_add_tail(&req->queue, &ep->queue);
Here. INIT_LIST_HEAD(&req->queue) is required in alloc_req since
list_add_tail is not executed every time.

Could you please clarify my questions regarding requests queuing.
1. If Device need to send 5120 bytes to host and
ep->desc->wMaxPacketSize is 512 then single request with length 5120
is issued
or 10 requests are issued?
2. Does device need to know OUT transactions before hand so that OUT
requests are queued for endpoint before packets are received
from host?

>> +     spin_unlock_irqrestore(&dev->lock, flags);
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_ep_dequeue - Removes the request from the queue.
>> + * @_ep: pointer to the usb device endpoint structure.
>> + * @_req: pointer to the usb request structure.
>> + *
>> + * Return: 0 for success and error value on failure
>> + */
>> +static int xudc_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
>> +{
>> +     struct xusb_ep *ep;
>> +     struct xusb_request *req;
>> +     unsigned long flags;
>> +
>> +     ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +
>> +     if (!_ep || ep->ep_usb.name == ep0name)
>> +             return -EINVAL;
>> +
>> +     spin_lock_irqsave(&ep->udc->lock, flags);
>> +     /* Make sure it's actually queued on this endpoint */
>> +     list_for_each_entry(req, &ep->queue, queue) {
>> +             if (&req->usb_req == _req)
>> +                     break;
>> +     }
>> +     if (&req->usb_req != _req) {
>> +             spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +             return -EINVAL;
>> +     }
>> +
>> +     xudc_done(ep, req, -ECONNRESET);
>> +     spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +
>> +     return 0;
>> +}
>> +
>> +static struct usb_ep_ops xusb_ep_ops = {
>> +     .enable = xudc_ep_enable,
>> +     .disable = xudc_ep_disable,
>> +
>> +     .alloc_request = xudc_ep_alloc_request,
>> +     .free_request = xudc_free_request,
>> +
>> +     .queue = xudc_ep_queue,
>> +     .dequeue = xudc_ep_dequeue,
>> +     .set_halt = xudc_ep_set_halt,
>> +};
>> +
>> +/**
>> + * xudc_get_frame - Reads the current usb frame number.
>> + * @gadget: pointer to the usb gadget structure.
>> + *
>> + * Return: current frame number for success and error value on failure.
>> + */
>> +static int xudc_get_frame(struct usb_gadget *gadget)
>> +{
>> +
>> +     struct xusb_udc *udc = to_udc(gadget);
>> +     unsigned long flags;
>> +     int retval;
>> +
>> +     if (!gadget)
>> +             return -ENODEV;
>> +
>> +     local_irq_save(flags);
>> +     retval = udc->read_fn(udc->base_address + XUSB_FRAMENUM_OFFSET);
>> +     local_irq_restore(flags);
>> +     return retval;
>> +}
>> +
>> +/**
>> + * xudc_reinit - Restores inital software state.
>> + * @udc: pointer to the usb device controller structure.
>> + */
>> +static void xudc_reinit(struct xusb_udc *udc)
>> +{
>> +     u32 ep_number;
>> +     char name[4];
>> +
>> +     INIT_LIST_HEAD(&udc->gadget.ep_list);
>> +     INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
>> +
>> +     for (ep_number = 0; ep_number < XUSB_MAX_ENDPOINTS; ep_number++) {
>> +             struct xusb_ep *ep = &udc->ep[ep_number];
>> +
>> +             if (ep_number) {
>> +                     list_add_tail(&ep->ep_usb.ep_list,
>> +                                     &udc->gadget.ep_list);
>> +                     ep->ep_usb.maxpacket = (unsigned short)~0;
>> +                     sprintf(name, "ep%d", ep_number);
>> +                     strcpy(ep->name, name);
>> +                     ep->ep_usb.name = ep->name;
>> +             } else {
>> +                     ep->ep_usb.name = ep0name;
>> +                     ep->ep_usb.maxpacket = 0x40;
>> +             }
>> +
>> +             ep->ep_usb.ops = &xusb_ep_ops;
>> +             ep->udc = udc;
>> +             ep->epnumber = ep_number;
>> +             ep->desc = NULL;
>> +             ep->stopped = 0;
>> +             /*
>> +              * The configuration register address offset between
>> +              * each endpoint is 0x10.
>> +              */
>> +             ep->endpointoffset = XUSB_EP0_CONFIG_OFFSET +
>> +                                     (ep_number * 0x10);
>> +             ep->is_in = 0;
>> +             ep->is_iso = 0;
>> +             ep->maxpacket = 0;
>> +             xudc_epconfig(ep, udc);
>> +             udc->status = 0;
>> +
>> +             /* Initialize one queue per endpoint */
>> +             INIT_LIST_HEAD(&ep->queue);
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_stop_activity - Stops any further activity on the device.
>> + * @udc: pointer to the usb device controller structure.
>> + */
>> +static void xudc_stop_activity(struct xusb_udc *udc)
>> +{
>> +     struct usb_gadget_driver *driver = udc->driver;
>> +     int i;
>> +
>> +     if (udc->gadget.speed == USB_SPEED_UNKNOWN)
>> +             driver = NULL;
>> +     udc->gadget.speed = USB_SPEED_HIGH;
>> +
>> +     for (i = 0; i < XUSB_MAX_ENDPOINTS; i++) {
>> +             struct xusb_ep *ep = &udc->ep[i];
>> +
>> +             ep->stopped = 1;
>> +             xudc_nuke(ep, -ESHUTDOWN);
>> +     }
>> +     if (driver) {
>> +             spin_unlock(&udc->lock);
>> +             driver->disconnect(&udc->gadget);
>> +             spin_lock(&udc->lock);
>> +     }
>
> you shouldn't be calling disconnect here, udc-core is doing that for
> you.
>
>> +
>> +     xudc_reinit(udc);
>> +}
>> +
>> +/**
>> + * xudc_start - Starts the device.
>> + * @gadget: pointer to the usb gadget structure
>> + * @driver: pointer to gadget driver structure
>> + *
>> + * Return: zero always
>> + */
>> +static int xudc_start(struct usb_gadget *gadget,
>> +                     struct usb_gadget_driver *driver)
>> +{
>> +     struct xusb_udc *udc = to_udc(gadget);
>> +     const struct usb_endpoint_descriptor *d = &config_bulk_out_desc;
>> +
>> +     driver->driver.bus = NULL;
>> +     /* hook up the driver */
>> +     udc->driver = driver;
>> +     udc->gadget.dev.driver = &driver->driver;
>> +     udc->gadget.speed = driver->max_speed;
>> +
>> +     /* Enable the USB device.*/
>> +     xudc_ep_enable(&udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb, d);
>> +     udc->write_fn(0, (udc->base_address + XUSB_ADDRESS_OFFSET));
>> +     udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
>> +             udc->base_address + XUSB_CONTROL_OFFSET);
>> +
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_stop - stops the device.
>> + * @gadget: pointer to the usb gadget structure
>> + * @driver: pointer to usb gadget driver structure
>> + *
>> + * Return: zero always
>> + */
>> +static int xudc_stop(struct usb_gadget *gadget,
>> +             struct usb_gadget_driver *driver)
>> +{
>> +     struct xusb_udc *udc = to_udc(gadget);
>> +     unsigned long flags;
>> +     u32 crtlreg;
>> +
>> +     /* Disable USB device.*/
>> +     crtlreg = udc->read_fn(udc->base_address + XUSB_CONTROL_OFFSET);
>> +     crtlreg &= ~XUSB_CONTROL_USB_READY_MASK;
>> +     udc->write_fn(crtlreg, udc->base_address + XUSB_CONTROL_OFFSET);
>> +     spin_lock_irqsave(&udc->lock, flags);
>> +     udc->gadget.speed = USB_SPEED_UNKNOWN;
>> +     xudc_stop_activity(udc);
>> +     spin_unlock_irqrestore(&udc->lock, flags);
>> +
>> +     udc->gadget.dev.driver = NULL;
>> +     udc->driver = NULL;
>> +
>> +     return 0;
>> +}
>> +
>> +static const struct usb_gadget_ops xusb_udc_ops = {
>> +     .get_frame = xudc_get_frame,
>> +     .udc_start = xudc_start,
>> +     .udc_stop  = xudc_stop,
>> +};
>> +
>> +/**
>> + * xudc_startup_handler - The usb device controller interrupt handler.
>> + * @callbackref: pointer to the reference value being passed.
>> + * @intrstatus: The mask value containing the interrupt sources.
>> + *
>> + * This handler handles the RESET, SUSPEND and DISCONNECT interrupts.
>> + */
>> +static void xudc_startup_handler(void *callbackref, u32 intrstatus)
>
> why void ? why isn't this returning irqreturn_t ?
>
>> +{
>> +     struct xusb_udc *udc;
>> +     u32 intrreg;
>> +
>> +     udc = (struct xusb_udc *) callbackref;
>
> you don't need the cast here.
>
>> +     if (intrstatus & XUSB_STATUS_RESET_MASK) {
>> +             dev_dbg(&udc->gadget.dev, "Reset\n");
>> +             if (intrstatus & XUSB_STATUS_HIGH_SPEED_MASK)
>> +                     udc->gadget.speed = USB_SPEED_HIGH;
>> +             else
>> +                     udc->gadget.speed = USB_SPEED_FULL;
>> +
>> +             if (udc->status == 1) {
>> +                     udc->status = 0;
>> +                     /* Set device address to 0.*/
>> +                     udc->write_fn(0, udc->base_address +
>> +                                             XUSB_ADDRESS_OFFSET);
>> +             }
>> +             /* Disable the Reset interrupt.*/
>> +             intrreg = udc->read_fn(udc->base_address +
>> +                                     XUSB_IER_OFFSET);
>> +
>> +             intrreg &= ~XUSB_STATUS_RESET_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +             /* Enable thesuspend and disconnect.*/
>> +             intrreg =
>> +                     udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
>> +             intrreg |=
>> +                     (XUSB_STATUS_SUSPEND_MASK |
>> +                      XUSB_STATUS_DISCONNECT_MASK);
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +     }
>> +
>> +     if (intrstatus & XUSB_STATUS_DISCONNECT_MASK) {
>> +
>> +             /* Disable the Disconnect interrupt.*/
>> +             intrreg =
>> +                     udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
>> +             intrreg &= ~XUSB_STATUS_DISCONNECT_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +             dev_dbg(&udc->gadget.dev, "Disconnect\n");
>> +             if (udc->status == 1) {
>> +                     udc->status = 0;
>> +                     /* Set device address to 0.*/
>> +                     udc->write_fn(0, udc->base_address +
>> +                                     XUSB_ADDRESS_OFFSET);
>> +                     /* Enable the USB device.*/
>> +                     udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
>> +                             udc->base_address + XUSB_CONTROL_OFFSET);
>> +             }
>> +
>> +             /* Enable the suspend and reset interrupts.*/
>> +             intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
>> +                             XUSB_STATUS_SUSPEND_MASK |
>> +                             XUSB_STATUS_RESET_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +             xudc_stop_activity(udc);
>> +     }
>> +
>> +     if (intrstatus & XUSB_STATUS_SUSPEND_MASK) {
>> +             dev_dbg(&udc->gadget.dev, "Suspend\n");
>> +             /* Disable the Suspend interrupt.*/
>> +             intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) &
>> +                                     ~XUSB_STATUS_SUSPEND_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +             /* Enable the Disconnect and reset interrupts. */
>> +             intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
>> +                             XUSB_STATUS_DISCONNECT_MASK |
>> +                             XUSB_STATUS_RESET_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_set_clear_feature - Executes the set feature and clear feature commands.
>> + * @udc: pointer to the usb device controller structure.
>> + * @flag: Value deciding the set or clear action.
>> + *
>> + * Processes the SET_FEATURE and CLEAR_FEATURE commands.
>> + */
>> +static void xudc_set_clear_feature(struct xusb_udc *udc, int flag)
>> +{
>> +     u8 endpoint;
>> +     u8 outinbit;
>> +     u32 epcfgreg;
>> +
>> +     switch (ch9_cmdbuf.setup.bRequestType) {
>> +     case STANDARD_OUT_DEVICE:
>
> use the macros from <linux/usb/ch9.h>
>
>> +             switch (ch9_cmdbuf.setup.wValue) {
>> +             case USB_DEVICE_TEST_MODE:
>> +                     /*
>> +                      * The Test Mode will be executed
>> +                      * after the status phase.
>> +                      */
>> +                     break;
>> +
>> +             default:
>> +                     epcfgreg = udc->read_fn(udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +                     epcfgreg |= XUSB_EP_CFG_STALL_MASK;
>> +                     udc->write_fn(epcfgreg, udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +                     break;
>> +             }
>> +             break;
>> +
>> +     case STANDARD_OUT_ENDPOINT:
>
> use the macros from <linux/usb/ch9.h>
>
>> +             if (!ch9_cmdbuf.setup.wValue) {
>> +                     endpoint = ch9_cmdbuf.setup.wIndex & 0xf;
>> +                     outinbit = ch9_cmdbuf.setup.wIndex & 0x80;
>> +                     outinbit = outinbit >> 7;
>> +
>> +                     /* Make sure direction matches.*/
>> +                     if (outinbit != udc->ep[endpoint].is_in) {
>> +                             epcfgreg = udc->read_fn(udc->base_address +
>> +                                             udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                             endpointoffset);
>> +                             epcfgreg |= XUSB_EP_CFG_STALL_MASK;
>> +
>> +                             udc->write_fn(epcfgreg, udc->base_address +
>> +                                     udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                     endpointoffset);
>> +                             return;
>> +                     }
>> +
>> +                     if (!endpoint) {
>> +                             /* Clear the stall.*/
>> +                             epcfgreg = udc->read_fn(udc->base_address +
>> +                                             udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                             endpointoffset);
>> +
>> +                             epcfgreg &= ~XUSB_EP_CFG_STALL_MASK;
>> +
>> +                             udc->write_fn(epcfgreg, udc->base_address +
>> +                                     udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                     endpointoffset);
>> +                             break;
>> +                     } else {
>> +                             if (flag == 1) {
>> +                                     epcfgreg =
>> +                                             udc->read_fn(udc->base_address +
>> +                                             udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                             endpointoffset);
>> +                                     epcfgreg |= XUSB_EP_CFG_STALL_MASK;
>> +
>> +                                     udc->write_fn(epcfgreg,
>> +                                             udc->base_address +
>> +                                             udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                             endpointoffset);
>> +                             } else {
>> +                                     /* Unstall the endpoint.*/
>> +                                     epcfgreg =
>> +                                             udc->read_fn(udc->base_address +
>> +                                             udc->ep[endpoint].
>> +                                             endpointoffset);
>> +                                     epcfgreg &=
>> +                                             ~(XUSB_EP_CFG_STALL_MASK |
>> +                                               XUSB_EP_CFG_DATA_TOGGLE_MASK);
>> +                                     udc->write_fn(epcfgreg,
>> +                                             udc->base_address +
>> +                                             udc->ep[endpoint].
>> +                                             endpointoffset);
>> +                             }
>> +                     }
>> +             }
>> +             break;
>> +
>> +     default:
>> +             epcfgreg = udc->read_fn(udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +             epcfgreg |= XUSB_EP_CFG_STALL_MASK;
>> +             udc->write_fn(epcfgreg, udc->base_address +
>> +                     udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +             return;
>> +     }
>> +
>> +     /* Cause and valid status phase to be issued.*/
>> +     xudc_wrstatus(udc);
>> +
>> +     return;
>> +}
>> +
>> +/**
>> + * xudc_execute_cmd - Processes the USB specification chapter 9 commands.
>> + * @udc: pointer to the usb device controller structure.
>> + *
>> + * Return: 0 for success and the same reuqest command if it is not handled.
>> + */
>> +static int xudc_execute_cmd(struct xusb_udc *udc)
>> +{
>> +
>> +     if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
>> +                     USB_TYPE_STANDARD) {
>> +             /* Process the chapter 9 command.*/
>> +             switch (ch9_cmdbuf.setup.bRequest) {
>> +
>> +             case USB_REQ_CLEAR_FEATURE:
>> +                     xudc_set_clear_feature(udc, 0);
>> +                     break;
>> +
>> +             case USB_REQ_SET_FEATURE:
>> +                     xudc_set_clear_feature(udc, 1);
>> +                     break;
>> +
>> +             case USB_REQ_SET_ADDRESS:
>> +                     xudc_wrstatus(udc);
>> +                     break;
>> +
>> +             case USB_REQ_SET_CONFIGURATION:
>> +                     udc->status = 1;
>> +                     return ch9_cmdbuf.setup.bRequest;
>> +
>> +             default:
>> +                     /*
>> +                      * Return the same request to application for
>> +                      * handling.
>> +                      */
>> +                     return ch9_cmdbuf.setup.bRequest;
>> +             }
>> +
>> +     } else {
>> +             if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
>> +                  USB_TYPE_CLASS)
>> +                     return ch9_cmdbuf.setup.bRequest;
>> +     }
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_handle_setup - Processes the setup packet.
>> + * @udc: pointer to the usb device controller structure.
>> + * @ctrl: pointer to the usb control endpoint structure.
>> + *
>> + * Return: 0 for success and request to be handled by application if
>> + *           is not handled by the driver.
>> + */
>> +static int xudc_handle_setup(struct xusb_udc *udc, struct usb_ctrlrequest *ctrl)
>> +{
>> +     u32 *ep0rambase;
>> +
>> +     /* Load up the chapter 9 command buffer.*/
>> +     ep0rambase = (u32 __force *) (udc->base_address +
>> +                               XUSB_SETUP_PKT_ADDR_OFFSET);
>> +     memcpy((void *)&ch9_cmdbuf.setup, (void *)ep0rambase, 8);
>> +
>> +     ctrl->bRequestType = ch9_cmdbuf.setup.bRequestType;
>> +     ctrl->bRequest     = ch9_cmdbuf.setup.bRequest;
>> +     ctrl->wValue       = ch9_cmdbuf.setup.wValue;
>> +     ctrl->wIndex       = ch9_cmdbuf.setup.wIndex;
>> +     ctrl->wLength      = ch9_cmdbuf.setup.wLength;
>> +
>> +     ch9_cmdbuf.setup.wValue = cpu_to_le16(ch9_cmdbuf.setup.wValue);
>> +     ch9_cmdbuf.setup.wIndex = cpu_to_le16(ch9_cmdbuf.setup.wIndex);
>> +     ch9_cmdbuf.setup.wLength = cpu_to_le16(ch9_cmdbuf.setup.wLength);
>> +
>> +     /* Restore ReadPtr to data buffer.*/
>> +     ch9_cmdbuf.contreadptr = &ch9_cmdbuf.contreaddatabuffer[0];
>> +     ch9_cmdbuf.contreadcount = 0;
>> +
>> +     if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
>> +             /* Execute the get command.*/
>> +             ch9_cmdbuf.setupseqrx = STATUS_PHASE;
>> +             ch9_cmdbuf.setupseqtx = DATA_PHASE;
>> +             return xudc_execute_cmd(udc);
>> +     } else {
>> +             /* Execute the put command.*/
>> +             ch9_cmdbuf.setupseqrx = DATA_PHASE;
>> +             ch9_cmdbuf.setupseqtx = STATUS_PHASE;
>> +             return xudc_execute_cmd(udc);
>> +     }
>> +     /* Control should never come here.*/
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_ep0_out - Processes the endpoint 0 OUT token.
>> + * @udc: pointer to the usb device controller structure.
>> + */
>> +static void xudc_ep0_out(struct xusb_udc *udc)
>> +{
>> +     struct xusb_ep *ep;
>> +     u8 count;
>> +     u8 *ep0rambase;
>> +     u16 index;
>> +
>> +     ep = &udc->ep[0];
>> +     switch (ch9_cmdbuf.setupseqrx) {
>> +     case STATUS_PHASE:
>
> what about the setup phase ?
>
>> +             /*
>> +              * This resets both state machines for the next
>> +              * Setup packet.
>> +              */
>> +             ch9_cmdbuf.setupseqrx = SETUP_PHASE;
>> +             ch9_cmdbuf.setupseqtx = SETUP_PHASE;
>> +             ep->data->usb_req.actual = ep->data->usb_req.length;
>> +             xudc_done(ep, ep->data, 0);
>> +             break;
>> +
>> +     case DATA_PHASE:
>> +             count = udc->read_fn(udc->base_address +
>> +                             XUSB_EP_BUF0COUNT_OFFSET);
>> +             /* Copy the data to be received from the DPRAM. */
>> +             ep0rambase =
>> +                     (u8 __force *) (udc->base_address +
>> +                             (udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
>> +
>> +             for (index = 0; index < count; index++)
>> +                     *ch9_cmdbuf.contreadptr++ = *ep0rambase++;
>> +
>> +             ch9_cmdbuf.contreadcount += count;
>> +             if (ch9_cmdbuf.setup.wLength == ch9_cmdbuf.contreadcount) {
>> +                             xudc_wrstatus(udc);
>> +             } else {
>> +                     /* Set the Tx packet size and the Tx enable bit.*/
>> +                     udc->write_fn(0, udc->base_address +
>> +                             XUSB_EP_BUF0COUNT_OFFSET);
>> +                     udc->write_fn(1, udc->base_address +
>> +                             XUSB_BUFFREADY_OFFSET);
>> +             }
>> +             break;
>> +
>> +     default:
>> +             break;
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_ep0_in - Processes the endpoint 0 IN token.
>> + * @udc: pointer to the usb device controller structure.
>> + */
>> +static void xudc_ep0_in(struct xusb_udc *udc)
>> +{
>> +     struct xusb_ep *ep;
>> +     u32 epcfgreg;
>> +     u16 count;
>> +     u16 length;
>> +     u8 *ep0rambase;
>> +
>> +     ep = &udc->ep[0];
>> +     switch (ch9_cmdbuf.setupseqtx) {
>> +     case STATUS_PHASE:
>> +             if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_ADDRESS) {
>> +                     /* Set the address of the device.*/
>> +                     udc->write_fn(ch9_cmdbuf.setup.wValue,
>> +                                     (udc->base_address +
>> +                                     XUSB_ADDRESS_OFFSET));
>> +                     break;
>> +             } else {
>> +                     if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_FEATURE) {
>> +                             if (ch9_cmdbuf.setup.bRequestType ==
>> +                                 STANDARD_OUT_DEVICE) {
>> +                                     if (ch9_cmdbuf.setup.wValue ==
>> +                                         USB_DEVICE_TEST_MODE)
>> +                                             udc->write_fn(TEST_J,
>> +                                                     udc->base_address +
>> +                                                     XUSB_TESTMODE_OFFSET);
>
> use a switch.
>
>> +                             }
>> +                     }
>> +             }
>> +             ep->data->usb_req.actual = ch9_cmdbuf.setup.wLength;
>> +             xudc_done(ep, ep->data, 0);
>> +             break;
>> +
>> +     case DATA_PHASE:
>> +             if (!ch9_cmdbuf.contwritecount) {
>> +                     /*
>> +                      * We're done with data transfer, next
>> +                      * will be zero length OUT with data toggle of
>> +                      * 1. Setup data_toggle.
>> +                      */
>> +                     epcfgreg = udc->read_fn(udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +                     epcfgreg |= XUSB_EP_CFG_DATA_TOGGLE_MASK;
>> +                     udc->write_fn(epcfgreg, udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +                     count = 0;
>> +
>> +                     ch9_cmdbuf.setupseqtx = STATUS_PHASE;
>> +
>> +             } else {
>> +                     length = count = min_t(u32, ch9_cmdbuf.contwritecount,
>> +                                             EP0_MAX_PACKET);
>> +                     /* Copy the data to be transmitted into the DPRAM. */
>> +                     ep0rambase = (u8 __force *) (udc->base_address +
>> +                             (udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
>> +                     while (length--)
>> +                             *ep0rambase++ = *ch9_cmdbuf.contwriteptr++;
>> +
>> +                     ch9_cmdbuf.contwritecount -= count;
>> +             }
>> +             udc->write_fn(count, udc->base_address +
>> +                             XUSB_EP_BUF0COUNT_OFFSET);
>> +             udc->write_fn(1, udc->base_address + XUSB_BUFFREADY_OFFSET);
>> +             break;
>> +
>> +     default:
>> +             break;
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_ctrl_ep_handler - Endpoint 0 interrupt handler.
>> + * @callbackref: pointer to the call back reference passed by the
>> + *                   main interrupt handler.
>> + * @intrstatus:      It's the mask value for the interrupt sources on endpoint 0.
>> + *
>> + * Processes the commands received during enumeration phase.
>> + */
>> +static void xudc_ctrl_ep_handler(void *callbackref, u32 intrstatus)
>> +{
>> +     struct xusb_udc *udc;
>> +     struct usb_ctrlrequest ctrl;
>> +     int status;
>> +     int epnum;
>> +     u32 intrreg;
>> +
>> +     udc = (struct xusb_udc *) callbackref;
>> +     /* Process the end point zero buffer interrupt.*/
>> +     if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK) {
>> +             if (intrstatus & XUSB_STATUS_SETUP_PACKET_MASK) {
>> +                     /*
>> +                      * Enable the Disconnect, suspend and reset
>> +                      * interrupts.
>> +                      */
>> +                     intrreg = udc->read_fn(udc->base_address +
>> +                                     XUSB_IER_OFFSET);
>> +                     intrreg |= XUSB_STATUS_DISCONNECT_MASK |
>> +                                      XUSB_STATUS_SUSPEND_MASK |
>> +                                      XUSB_STATUS_RESET_MASK;
>> +                     udc->write_fn(intrreg,
>> +                             udc->base_address + XUSB_IER_OFFSET);
>> +                     status = xudc_handle_setup(udc, &ctrl);
>> +                     if (status || ((ch9_cmdbuf.setup.bRequestType &
>> +                                     USB_TYPE_MASK) == USB_TYPE_CLASS)) {
>> +                             /*
>> +                              * Request is to be handled by the gadget
>> +                              * driver.
>> +                              */
>> +                             spin_unlock(&udc->lock);
>> +                             udc->driver->setup(&udc->gadget, &ctrl);
>> +                             spin_lock(&udc->lock);
>> +                     } else {
>> +                             if (ctrl.bRequest == USB_REQ_CLEAR_FEATURE) {
>> +                                     epnum = ctrl.wIndex & 0xf;
>> +                                     udc->ep[epnum].stopped = 0;
>> +                             }
>> +                             if (ctrl.bRequest == USB_REQ_SET_FEATURE) {
>> +                                     epnum = ctrl.wIndex & 0xf;
>> +                                     udc->ep[epnum].stopped = 1;
>> +                             }
>> +                     }
>> +             } else {
>> +                     if (intrstatus & XUSB_STATUS_FIFO_BUFF_RDY_MASK)
>> +                             xudc_ep0_out(udc);
>> +                     else if (intrstatus &
>> +                             XUSB_STATUS_FIFO_BUFF_FREE_MASK)
>> +                             xudc_ep0_in(udc);
>> +             }
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_nonctrl_ep_handler - Non control endpoint interrupt handler.
>> + * @callbackref: pointer to the call back reference passed by the
>> + *                   main interrupt handler.
>> + * @epnum: End point number for which the interrupt is to be processed
>> + * @intrstatus:      It's the mask value for the interrupt sources on endpoint 0.
>> + */
>> +static void xudc_nonctrl_ep_handler(void *callbackref, u8 epnum,
>> +                                     u32 intrstatus)
>> +{
>> +
>> +     struct xusb_request *req;
>> +     struct xusb_udc *udc;
>> +     struct xusb_ep *ep;
>> +
>> +     udc = (struct xusb_udc *) callbackref;
>> +     ep = &udc->ep[epnum];
>> +     /* Process the End point interrupts.*/
>> +     if (intrstatus & (XUSB_STATUS_EP0_BUFF1_COMP_MASK << epnum))
>> +             ep->buffer0ready = 0;
>> +     if (intrstatus & (XUSB_STATUS_EP0_BUFF2_COMP_MASK << epnum))
>> +             ep->buffer1ready = 0;
>> +
>> +     if (list_empty(&ep->queue))
>> +             req = NULL;
>> +     else
>> +             req = list_entry(ep->queue.next, struct xusb_request, queue);
>> +     if (!req)
>> +             return;
>> +     if (ep->is_in)
>> +             xudc_write_fifo(ep, req);
>> +     else
>> +             xudc_read_fifo(ep, req);
>> +}
>> +
>> +/**
>> + * xudc_irq - The main interrupt handler.
>> + * @irq: The interrupt number.
>> + * @_udc: pointer to the usb device controller structure.
>> + *
>> + * Return: IRQ_HANDLED after the interrupt is handled.
>> + */
>> +static irqreturn_t xudc_irq(int irq, void *_udc)
>> +{
>> +     struct xusb_udc *udc = _udc;
>> +     u32 intrstatus;
>> +     u8 index;
>> +     u32 bufintr;
>> +
>> +     spin_lock(&(udc->lock));
>> +
>> +     /* Read the Interrupt Status Register.*/
>> +     intrstatus = udc->read_fn(udc->base_address + XUSB_STATUS_OFFSET);
>> +     /* Call the handler for the event interrupt.*/
>> +     if (intrstatus & XUSB_STATUS_INTR_EVENT_MASK) {
>> +             /*
>> +              * Check if there is any action to be done for :
>> +              * - USB Reset received {XUSB_STATUS_RESET_MASK}
>> +              * - USB Suspend received {XUSB_STATUS_SUSPEND_MASK}
>
> what about resume ? No resume ?
>
>> +              * - USB Disconnect received {XUSB_STATUS_DISCONNECT_MASK}
>> +              */
>> +             xudc_startup_handler(udc, intrstatus);
>> +     }
>> +
>> +     /* Check the buffer completion interrupts */
>> +     if (intrstatus & XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK) {
>> +             if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK)
>> +                     xudc_ctrl_ep_handler(udc, intrstatus);
>> +
>> +             for (index = 1; index < 8; index++) {
>> +                     bufintr = ((intrstatus &
>> +                                     (XUSB_STATUS_EP1_BUFF1_COMP_MASK <<
>> +                                                     (index - 1))) ||
>> +                                (intrstatus &
>> +                                     (XUSB_STATUS_EP1_BUFF2_COMP_MASK <<
>> +                                                     (index - 1))));
>> +
>> +                     if (bufintr)
>> +                             xudc_nonctrl_ep_handler(udc, index,
>> +                                             intrstatus);
>> +             }
>> +     }
>> +     spin_unlock(&(udc->lock));
>> +
>> +     return IRQ_HANDLED;
>> +}
>> +
>> +
>> +
>> +/**
>> + * xudc_release - Releases device structure
>> + * @dev: pointer to device structure
>> + */
>> +static void xudc_release(struct device *dev)
>> +{
>> +}
>
> you don't need to define this, udc-core will give you a release method.
>
>> +/**
>> + * xudc_probe - The device probe function for driver initialization.
>> + * @pdev: pointer to the platform device structure.
>> + *
>> + * Return: 0 for success and error value on failure
>> + */
>> +static int xudc_probe(struct platform_device *pdev)
>> +{
>> +     struct device_node *np = pdev->dev.of_node;
>> +     struct resource *res;
>> +     struct xusb_udc *udc;
>> +     int irq;
>> +     int ret;
>> +
>> +     dev_dbg(&pdev->dev, "%s(%p)\n", __func__, pdev);
>> +
>> +     udc = devm_kzalloc(&pdev->dev, sizeof(*udc), GFP_KERNEL);
>> +     if (!udc)
>> +             return -ENOMEM;
>> +
>> +     /* Map the registers */
>> +     res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>> +     udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
>> +                                              resource_size(res));
>
> use devm_ioremap_resource() instead.
>
>> +     if (!udc->base_address)
>> +             return -ENOMEM;
>> +
>> +     irq = platform_get_irq(pdev, 0);
>> +     if (irq < 0) {
>> +             dev_err(&pdev->dev, "unable to get irq\n");
>> +             return irq;
>> +     }
>> +     ret = request_irq(irq, xudc_irq, 0, dev_name(&pdev->dev), udc);
>
> devm_request_irq()
>
>> +     if (ret < 0) {
>> +             dev_dbg(&pdev->dev, "unable to request irq %d", irq);
>> +             goto fail0;
>> +     }
>> +
>> +     udc->dma_enabled = of_property_read_bool(np, "xlnx,include-dma");
>> +
>> +     /* Setup gadget structure */
>> +     udc->gadget.ops = &xusb_udc_ops;
>> +     udc->gadget.max_speed = USB_SPEED_HIGH;
>> +     udc->gadget.speed = USB_SPEED_HIGH;
>> +     udc->gadget.ep0 = &udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb;
>> +     udc->gadget.name = driver_name;
>> +
>> +     dev_set_name(&udc->gadget.dev, "xilinx_udc");
>> +     udc->gadget.dev.release = xudc_release;
>> +     udc->gadget.dev.parent = &pdev->dev;
>
> don't touch the gadget device directly, udc-core handles all of that for
> you.
>
>> +
>> +     spin_lock_init(&udc->lock);
>> +
>> +     /* Check for IP endianness */
>> +     udc->write_fn = xudc_write32_be;
>> +     udc->read_fn = xudc_read32_be;
>> +     udc->write_fn(TEST_J, udc->base_address + XUSB_TESTMODE_OFFSET);
>> +     if ((udc->read_fn(udc->base_address + XUSB_TESTMODE_OFFSET))
>> +                     != TEST_J) {
>> +             udc->write_fn = xudc_write32;
>> +             udc->read_fn = xudc_read32;
>> +     }
>> +     udc->write_fn(0, udc->base_address + XUSB_TESTMODE_OFFSET);
>> +
>> +     xudc_reinit(udc);
>> +
>> +     /* Set device address to 0.*/
>> +     udc->write_fn(0, udc->base_address + XUSB_ADDRESS_OFFSET);
>> +
>> +     ret = usb_add_gadget_udc(&pdev->dev, &udc->gadget);
>> +     if (ret)
>> +             goto fail1;
>> +
>> +     /* Enable the interrupts.*/
>> +     udc->write_fn(XUSB_STATUS_GLOBAL_INTR_MASK | XUSB_STATUS_RESET_MASK |
>> +                   XUSB_STATUS_DISCONNECT_MASK | XUSB_STATUS_SUSPEND_MASK |
>> +                   XUSB_STATUS_FIFO_BUFF_RDY_MASK |
>> +                   XUSB_STATUS_FIFO_BUFF_FREE_MASK |
>> +                   XUSB_STATUS_EP0_BUFF1_COMP_MASK,
>> +                   udc->base_address + XUSB_IER_OFFSET);
>> +
>> +     platform_set_drvdata(pdev, udc);
>> +
>> +     dev_info(&pdev->dev, "%s #%d at 0x%08X mapped to 0x%08X\n",
>> +              driver_name, 0, (u32)res->start,
>> +              (u32 __force)udc->base_address);
>
> make this a dev_vdbg().
>
>> +
>> +     return 0;
>> +
>> +fail1:
>> +     free_irq(irq, udc);
>> +fail0:
>> +     dev_dbg(&pdev->dev, "probe failed, %d\n", ret);
>
> this should be dev_err().
>
>> +     return ret;
>> +}
>> +
>> +/**
>> + * xudc_remove - Releases the resources allocated during the initialization.
>> + * @pdev: pointer to the platform device structure.
>> + *
>> + * Return: 0 for success and error value on failure
>> + */
>> +static int xudc_remove(struct platform_device *pdev)
>> +{
>> +     struct xusb_udc *udc = platform_get_drvdata(pdev);
>> +
>> +     dev_dbg(&pdev->dev, "remove\n");
>> +     usb_del_gadget_udc(&udc->gadget);
>> +     if (udc->driver)
>> +             return -EBUSY;
>> +
>> +     device_unregister(&udc->gadget.dev);
>
> remove this line.
>
> Also, you're leaking your IRQ handler, if you switch to
> devm_request_irq() then you don't need to free it, though.
>
> From the looks of it, I doubt this was actually tested, you need a lot
> of work on this driver.
>
> cheers
>
> --
> balbi

Thanks,
Sundeep

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-03-26 10:07     ` sundeep subbaraya
  0 siblings, 0 replies; 75+ messages in thread
From: sundeep subbaraya @ 2014-03-26 10:07 UTC (permalink / raw)
  To: balbi-l0cyMroinI0
  Cc: Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Michal Simek,
	Subbaraya Sundeep Bhatta, devicetree-u79uwXL29TY76Z2rM5mHXA

Hi Felipe,

On Thu, Feb 20, 2014 at 11:53 PM, Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org> wrote:
> Hi,
>
> On Wed, Feb 19, 2014 at 03:10:45PM +0530, Subbaraya Sundeep Bhatta wrote:
>> This patch adds xilinx axi usb2 device driver support
>>
>> Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
>> ---
>>  .../devicetree/bindings/usb/xilinx_usb.txt         |   21 +
>>  drivers/usb/gadget/Kconfig                         |   14 +
>>  drivers/usb/gadget/Makefile                        |    1 +
>>  drivers/usb/gadget/xilinx_udc.c                    | 2045 ++++++++++++++++++++
>>  4 files changed, 2081 insertions(+), 0 deletions(-)
>>  create mode 100644 Documentation/devicetree/bindings/usb/xilinx_usb.txt
>>  create mode 100644 drivers/usb/gadget/xilinx_udc.c
>>
>> diff --git a/Documentation/devicetree/bindings/usb/xilinx_usb.txt b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
>> new file mode 100644
>> index 0000000..acf03ab
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/usb/xilinx_usb.txt
>> @@ -0,0 +1,21 @@
>> +Xilinx AXI USB2 device controller
>> +
>> +Required properties:
>> +- compatible         : Should be "xlnx,axi-usb2-device-4.00.a"
>> +- reg                        : Physical base address and size of the Axi USB2
>> +                       device registers map.
>> +- interrupts         : Property with a value describing the interrupt
>> +                       number.
>> +- interrupt-parent   : Must be core interrupt controller
>> +- xlnx,include-dma   : Must be 1 or 0 based on whether DMA is included
>> +                       in IP or not.
>> +
>> +Example:
>> +             axi-usb2-device@42e00000 {
>> +                        compatible = "xlnx,axi-usb2-device-4.00.a";
>> +                        interrupt-parent = <0x1>;
>> +                        interrupts = <0x0 0x39 0x1>;
>> +                        reg = <0x42e00000 0x10000>;
>> +                        xlnx,include-dma = <0x1>;
>> +                };
>> +
>
> you need to Cc devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org for this.
>
>> diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig
>> index 8154165..0b284bf 100644
>> --- a/drivers/usb/gadget/Kconfig
>> +++ b/drivers/usb/gadget/Kconfig
>> @@ -466,6 +466,20 @@ config USB_EG20T
>>         ML7213/ML7831 is companion chip for Intel Atom E6xx series.
>>         ML7213/ML7831 is completely compatible for Intel EG20T PCH.
>>
>> +config USB_GADGET_XILINX
>> +     tristate "Xilinx USB Driver"
>> +     depends on MICROBLAZE || ARCH_ZYNQ
>
> This has the tendency to grow and I really don't like seeing a bunch of
> arch-specific dependencies. At a minimum add COMPILE_TEST so I can build
> test on my setup and make sure it builds fine on other architectures.
>
>> +     help
>> +       USB peripheral controller driver for Xilinx AXI USB2 device.
>> +       Xilinx AXI USB2 device is a soft IP which supports both full
>> +       and high speed USB 2.0 data transfers. It has seven configurable
>> +       endpoints(bulk or interrupt or isochronous), as well as
>> +       endpoint zero(for control transfers).
>> +
>> +       Say "y" to link the driver statically, or "m" to build a
>> +       dynamically linked module called "xilinx_udc" and force all
>> +       gadget drivers to also be dynamically linked.
>> +
>>  #
>>  # LAST -- dummy/emulated controller
>>  #
>> diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile
>> index 5f150bc..3a55564 100644
>> --- a/drivers/usb/gadget/Makefile
>> +++ b/drivers/usb/gadget/Makefile
>> @@ -36,6 +36,7 @@ obj-$(CONFIG_USB_FUSB300)   += fusb300_udc.o
>>  obj-$(CONFIG_USB_FOTG210_UDC)        += fotg210-udc.o
>>  obj-$(CONFIG_USB_MV_U3D)     += mv_u3d_core.o
>>  obj-$(CONFIG_USB_GR_UDC)     += gr_udc.o
>> +obj-$(CONFIG_USB_GADGET_XILINX)      += xilinx_udc.o
>
> let's start normalizing the names here (I'll patch the others later) and
> call this udc-xilinx.o
>
>> diff --git a/drivers/usb/gadget/xilinx_udc.c b/drivers/usb/gadget/xilinx_udc.c
>> new file mode 100644
>> index 0000000..3ee8359
>> --- /dev/null
>> +++ b/drivers/usb/gadget/xilinx_udc.c
>> @@ -0,0 +1,2045 @@
>> +/*
>> + * Xilinx USB peripheral controller driver
>> + *
>> + * Copyright (C) 2004 by Thomas Rathbone
>> + * Copyright (C) 2005 by HP Labs
>> + * Copyright (C) 2005 by David Brownell
>
> heh! :-) Brownell was really everywhere, good to still see code from him
> ;-)
>
>> + * Copyright (C) 2010 - 2014 Xilinx, Inc.
>> + *
>> + * Some parts of this driver code is based on the driver for at91-series
>> + * USB peripheral controller (at91_udc.c).
>> + *
>> + * This program is free software; you can redistribute it
>> + * and/or modify it under the terms of the GNU General Public
>> + * License as published by the Free Software Foundation;
>> + * either version 2 of the License, or (at your option) any
>> + * later version.
>
> are you sure you want to allow people ot use GPL v3 on this driver ?
>
>> +#include <linux/interrupt.h>
>> +#include <linux/device.h>
>> +#include <linux/module.h>
>> +#include <linux/prefetch.h>
>> +#include <linux/usb/ch9.h>
>> +#include <linux/usb/gadget.h>
>> +#include <linux/io.h>
>> +#include <linux/seq_file.h>
>> +#include <linux/of_address.h>
>> +#include <linux/of_device.h>
>> +#include <linux/of_platform.h>
>> +#include <linux/of_irq.h>
>> +#include <linux/dma-mapping.h>
>> +#include "gadget_chips.h"
>> +
>> +/* Register offsets for the USB device.*/
>> +#define XUSB_EP0_CONFIG_OFFSET               0x0000  /* EP0 Config Reg Offset */
>> +#define XUSB_SETUP_PKT_ADDR_OFFSET   0x0080  /* Setup Packet Address */
>> +#define XUSB_ADDRESS_OFFSET          0x0100  /* Address Register */
>> +#define XUSB_CONTROL_OFFSET          0x0104  /* Control Register */
>> +#define XUSB_STATUS_OFFSET           0x0108  /* Status Register */
>> +#define XUSB_FRAMENUM_OFFSET         0x010C  /* Frame Number Register */
>> +#define XUSB_IER_OFFSET                      0x0110  /* Interrupt Enable Register */
>> +#define XUSB_BUFFREADY_OFFSET                0x0114  /* Buffer Ready Register */
>> +#define XUSB_TESTMODE_OFFSET         0x0118  /* Test Mode Register */
>> +#define XUSB_DMA_RESET_OFFSET                0x0200  /* DMA Soft Reset Register */
>> +#define XUSB_DMA_CONTROL_OFFSET              0x0204  /* DMA Control Register */
>> +#define XUSB_DMA_DSAR_ADDR_OFFSET    0x0208  /* DMA source Address Reg */
>> +#define XUSB_DMA_DDAR_ADDR_OFFSET    0x020C  /* DMA destination Addr Reg */
>> +#define XUSB_DMA_LENGTH_OFFSET               0x0210  /* DMA Length Register */
>> +#define XUSB_DMA_STATUS_OFFSET               0x0214  /* DMA Status Register */
>> +
>> +/* Endpoint Configuration Space offsets */
>> +#define XUSB_EP_CFGSTATUS_OFFSET     0x00    /* Endpoint Config Status  */
>> +#define XUSB_EP_BUF0COUNT_OFFSET     0x08    /* Buffer 0 Count */
>> +#define XUSB_EP_BUF1COUNT_OFFSET     0x0C    /* Buffer 1 Count */
>> +
>> +#define XUSB_CONTROL_USB_READY_MASK  0x80000000 /* USB ready Mask */
>> +
>> +/* Interrupt register related masks.*/
>> +#define XUSB_STATUS_GLOBAL_INTR_MASK 0x80000000 /* Global Intr Enable */
>> +#define XUSB_STATUS_RESET_MASK               0x00800000 /* USB Reset Mask */
>> +#define XUSB_STATUS_SUSPEND_MASK     0x00400000 /* USB Suspend Mask */
>> +#define XUSB_STATUS_DISCONNECT_MASK  0x00200000 /* USB Disconnect Mask */
>> +#define XUSB_STATUS_FIFO_BUFF_RDY_MASK       0x00100000 /* FIFO Buff Ready Mask */
>> +#define XUSB_STATUS_FIFO_BUFF_FREE_MASK      0x00080000 /* FIFO Buff Free Mask */
>> +#define XUSB_STATUS_SETUP_PACKET_MASK        0x00040000 /* Setup packet received */
>> +#define XUSB_STATUS_EP1_BUFF2_COMP_MASK      0x00000200 /* EP 1 Buff 2 Processed */
>> +#define XUSB_STATUS_EP1_BUFF1_COMP_MASK      0x00000002 /* EP 1 Buff 1 Processed */
>> +#define XUSB_STATUS_EP0_BUFF2_COMP_MASK      0x00000100 /* EP 0 Buff 2 Processed */
>> +#define XUSB_STATUS_EP0_BUFF1_COMP_MASK      0x00000001 /* EP 0 Buff 1 Processed */
>> +#define XUSB_STATUS_HIGH_SPEED_MASK  0x00010000 /* USB Speed Mask */
>> +/* Suspend,Reset and Disconnect Mask */
>> +#define XUSB_STATUS_INTR_EVENT_MASK  0x00E00000
>> +/* Buffers  completion Mask */
>> +#define XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK  0x0000FEFF
>> +/* Mask for buffer 0 and buffer 1 completion for all Endpoints */
>> +#define XUSB_STATUS_INTR_BUFF_COMP_SHIFT_MASK        0x00000101
>> +#define XUSB_STATUS_EP_BUFF2_SHIFT   8          /* EP buffer offset */
>> +
>> +/* Endpoint Configuration Status Register */
>> +#define XUSB_EP_CFG_VALID_MASK               0x80000000 /* Endpoint Valid bit */
>> +#define XUSB_EP_CFG_STALL_MASK               0x40000000 /* Endpoint Stall bit */
>> +#define XUSB_EP_CFG_DATA_TOGGLE_MASK 0x08000000 /* Endpoint Data toggle */
>> +
>> +/* USB device specific global configuration constants.*/
>> +#define XUSB_MAX_ENDPOINTS           8       /* Maximum End Points */
>> +#define XUSB_EP_NUMBER_ZERO          0       /* End point Zero */
>> +
>> +/* Test Modes (Set Feature).*/
>> +#define TEST_J                               1       /* Chirp J Test */
>> +#define TEST_K                               2       /* Chirp K Test */
>> +#define TEST_SE0_NAK                 3       /* Chirp SE0 Test */
>> +#define TEST_PKT                     4       /* Packet Test */
>> +
>> +#define CONFIGURATION_ONE            0x01    /* USB device configuration*/
>> +#define STANDARD_OUT_DEVICE          0x00    /* Out device */
>> +#define STANDARD_OUT_ENDPOINT                0x02    /* Standard Out end point */
>
> DO NOT REDEFINE THESE, use the ones from <linux/usb/ch9.h>
>
>> +
>> +#define XUSB_DMA_READ_FROM_DPRAM     0x80000000/**< DPRAM is the source
>> +                                                     address for DMA transfer
>> +                                                     */
>> +#define XUSB_DMA_DMASR_BUSY          0x80000000 /**< DMA busy*/
>> +#define XUSB_DMA_DMASR_ERROR         0x40000000 /**< DMA Error */
>> +
>> +/*
>> + * When this bit is set, the DMA buffer ready bit is set by hardware upon
>> + * DMA transfer completion.
>> + */
>> +#define XUSB_DMA_BRR_CTRL            0x40000000 /**< DMA bufready ctrl bit */
>> +
>> +/* Phase States */
>> +#define SETUP_PHASE                  0x0000  /* Setup Phase */
>> +#define DATA_PHASE                   0x0001  /* Data Phase */
>> +#define STATUS_PHASE                 0x0002  /* Status Phase */
>> +
>> +#define EP_TRANSMIT          0       /* EP is IN endpoint */
>> +#define EP0_MAX_PACKET               64 /* Endpoint 0 maximum packet length */
>> +
>> +/**
>> + * struct xusb_request - Xilinx USB device request structure
>> + * @usb_req: Linux usb request structure
>> + * @queue: usb device request queue
>> + */
>> +struct xusb_request {
>> +     struct usb_request usb_req;
>> +     struct list_head queue;
>> +};
>> +
>> +/**
>> + * struct xusb_ep - USB end point structure.
>> + * @ep_usb: usb endpoint instance
>> + * @queue: endpoint message queue
>> + * @udc: xilinx usb peripheral driver instance pointer
>> + * @desc: pointer to the usb endpoint descriptor
>> + * @data: pointer to the xusb_request structure
>> + * @rambase: the endpoint buffer address
>> + * @endpointoffset: the endpoint register offset value
>> + * @epnumber: endpoint number
>> + * @maxpacket: maximum packet size the endpoint can store
>> + * @buffer0count: the size of the packet recieved in the first buffer
>> + * @buffer0ready: the busy state of first buffer
>> + * @buffer1count: the size of the packet received in the second buffer
>> + * @buffer1ready: the busy state of second buffer
>> + * @eptype: endpoint transfer type (BULK, INTERRUPT)
>> + * @curbufnum: current buffer of endpoint that will be processed next
>> + * @is_in: endpoint direction (IN or OUT)
>> + * @stopped: endpoint active status
>> + * @is_iso: endpoint type(isochronous or non isochronous)
>> + * @name: name of the endpoint
>> + */
>> +struct xusb_ep {
>> +     struct usb_ep ep_usb;
>> +     struct list_head queue;
>> +     struct xusb_udc *udc;
>> +     const struct usb_endpoint_descriptor *desc;
>> +     struct xusb_request *data;
>> +     u32 rambase;
>> +     u32 endpointoffset;
>> +     u16 epnumber;
>> +     u16 maxpacket;
>> +     u16 buffer0count;
>> +     u16 buffer1count;
>> +     u8 buffer0ready;
>> +     u8 buffer1ready;
>> +     u8 eptype;
>> +     u8 curbufnum;
>> +     u8 is_in;
>> +     u8 stopped;
>> +     u8 is_iso;
>> +     char name[4];
>> +};
>> +
>> +/**
>> + * struct xusb_udc -  USB peripheral driver structure
>> + * @gadget: USB gadget driver instance
>> + * @ep: an array of endpoint structures
>> + * @driver: pointer to the usb gadget driver instance
>> + * @read_fn: function pointer to read device registers
>> + * @write_fn: function pointer to write to device registers
>> + * @base_address: the usb device base address
>> + * @lock: instance of spinlock
>> + * @dma_enabled: flag indicating whether the dma is included in the system
>> + * @status: status flag indicating the device cofiguration
>> + */
>> +struct xusb_udc {
>> +     struct usb_gadget gadget;
>> +     struct xusb_ep ep[8];
>> +     struct usb_gadget_driver *driver;
>> +     unsigned int (*read_fn)(void __iomem *);
>> +     void (*write_fn)(u32, void __iomem *);
>> +     void __iomem *base_address;
>> +     spinlock_t lock;
>> +     bool dma_enabled;
>> +     u8 status;
>> +};
>> +
>> +/**
>> + * struct cmdbuf - Standard USB Command Buffer Structure defined
>> + * @setup: usb_ctrlrequest structure for control requests
>> + * @contreadcount: read data bytes count
>> + * @contwritecount: write data bytes count
>> + * @setupseqtx: tx status
>> + * @setupseqrx: rx status
>> + * @contreadptr: pointer to endpoint0 read data
>> + * @contwriteptr: pointer to endpoint0 write data
>> + * @contreaddatabuffer: read data buffer for endpoint0
>> + */
>> +struct cmdbuf {
>> +     struct usb_ctrlrequest setup;
>> +     u32 contreadcount;
>> +     u32 contwritecount;
>> +     u32 setupseqtx;
>> +     u32 setupseqrx;
>> +     u8 *contreadptr;
>> +     u8 *contwriteptr;
>> +     u8 contreaddatabuffer[64];
>> +};
>> +
>> +static struct cmdbuf ch9_cmdbuf;
>
> NAK, you should support multiple instances of this device in the same
> SoC.
>
>> +/*
>> + * Endpoint buffer start addresses in the core
>> + */
>
> fits in one line.
>
>> +static u32 rambase[8] = { 0x22, 0x1000, 0x1100, 0x1200, 0x1300, 0x1400, 0x1500,
>> +                     0x1600 };
>> +
>> +static const char driver_name[] = "xilinx-udc";
>> +static const char ep0name[] = "ep0";
>> +
>> +/* Control endpoint configuration.*/
>> +static struct usb_endpoint_descriptor config_bulk_out_desc = {
>> +     .bLength = USB_DT_ENDPOINT_SIZE,
>> +     .bDescriptorType = USB_DT_ENDPOINT,
>> +     .bEndpointAddress = USB_DIR_OUT,
>> +     .bmAttributes = USB_ENDPOINT_XFER_BULK,
>> +     .wMaxPacketSize = __constant_cpu_to_le16(0x40),
>> +};
>> +
>> +/**
>> + * to_udc - Return the udc instance pointer
>> + * @g: pointer to the usb gadget driver instance
>> + *
>> + * Return: xusb_udc pointer
>> + */
>> +static inline struct xusb_udc *to_udc(struct usb_gadget *g)
>> +{
>> +
>
> remove this whiteline here. Also, this could very well be a macro
> instead of a function. No strong feelings though.
Ok
>
>> +     return container_of(g, struct xusb_udc, gadget);
>> +}
>> +
>> +/**
>> + * xudc_write32 - little endian write to device registers
>> + * @val: data to be written
>> + * @addr: addr of device register
>> + */
>> +static void xudc_write32(u32 val, void __iomem *addr)
>
> usually, people tend to pass addr, offset and value. Then you do the
> quick little math internally:
>
>         iowrite32(val, addr + offset);
>
> no strong feelings either.
Ok. will change
>
>> +static int xudc_eptxrx(struct xusb_ep *ep, u8 *bufferptr, u32 bufferlen,
>> +                     u8 direction)
>> +{
>> +     u32 *eprambase;
>> +     u32 bytestosend;
>> +     u8 *temprambase;
>> +     unsigned long timeout;
>> +     u32 srcaddr = 0;
>> +     u32 dstaddr = 0;
>> +     int rc = 0;
>> +     struct xusb_udc *udc = ep->udc;
>> +
>> +     bytestosend = bufferlen;
>> +
>> +     /* Put the transmit buffer into the correct ping-pong buffer.*/
>> +     if (!ep->curbufnum && !ep->buffer0ready) {
>> +             /* Get the Buffer address and copy the transmit data.*/
>> +             eprambase = (u32 __force *)(ep->udc->base_address +
>> +                             ep->rambase);
>> +
>> +             if (ep->udc->dma_enabled) {
>> +                     if (direction == EP_TRANSMIT) {
>> +                             srcaddr = dma_map_single(
>> +                                     ep->udc->gadget.dev.parent,
>> +                                     bufferptr, bufferlen, DMA_TO_DEVICE);
>> +                             dstaddr = virt_to_phys(eprambase);
>> +                             udc->write_fn(bufferlen,
>> +                                             ep->udc->base_address +
>> +                                             ep->endpointoffset +
>> +                                             XUSB_EP_BUF0COUNT_OFFSET);
>> +                             udc->write_fn(XUSB_DMA_BRR_CTRL |
>> +                                             (1 << ep->epnumber),
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_CONTROL_OFFSET);
>> +                     } else {
>> +                             srcaddr = virt_to_phys(eprambase);
>> +                             dstaddr = dma_map_single(
>> +                                     ep->udc->gadget.dev.parent,
>> +                                     bufferptr, bufferlen, DMA_FROM_DEVICE);
>> +                             udc->write_fn(XUSB_DMA_BRR_CTRL |
>> +                                     XUSB_DMA_READ_FROM_DPRAM |
>> +                                     (1 << ep->epnumber),
>> +                                     ep->udc->base_address +
>> +                                     XUSB_DMA_CONTROL_OFFSET);
>> +                     }
>> +                     /*
>> +                      * Set the addresses in the DMA source and destination
>> +                      * registers and then set the length into the DMA length
>> +                      * register.
>> +                      */
>> +                     udc->write_fn(srcaddr, ep->udc->base_address +
>> +                             XUSB_DMA_DSAR_ADDR_OFFSET);
>> +                     udc->write_fn(dstaddr, ep->udc->base_address +
>> +                             XUSB_DMA_DDAR_ADDR_OFFSET);
>> +                     udc->write_fn(bufferlen, ep->udc->base_address +
>> +                                     XUSB_DMA_LENGTH_OFFSET);
>> +             } else {
>> +
>> +                     while (bytestosend > 3) {
>> +                             if (direction == EP_TRANSMIT)
>> +                                     *eprambase++ = *(u32 *)bufferptr;
>> +                             else
>> +                                     *(u32 *)bufferptr = *eprambase++;
>> +                             bufferptr += 4;
>> +                             bytestosend -= 4;
>> +                     }
>> +                     temprambase = (u8 *)eprambase;
>> +                     while (bytestosend--) {
>> +                             if (direction == EP_TRANSMIT)
>> +                                     *temprambase++ = *bufferptr++;
>> +                             else
>> +                                     *bufferptr++ = *temprambase++;
>> +                     }
>> +                     /*
>> +                      * Set the Buffer count register with transmit length
>> +                      * and enable the buffer for transmission.
>> +                      */
>> +                     if (direction == EP_TRANSMIT)
>> +                             udc->write_fn(bufferlen,
>> +                                     ep->udc->base_address +
>> +                                     ep->endpointoffset +
>> +                                     XUSB_EP_BUF0COUNT_OFFSET);
>> +                     udc->write_fn(1 << ep->epnumber,
>> +                                     ep->udc->base_address +
>> +                                     XUSB_BUFFREADY_OFFSET);
>> +             }
>> +             ep->buffer0ready = 1;
>> +             ep->curbufnum = 1;
>> +
>> +     } else
>> +             if ((ep->curbufnum == 1) && (!ep->buffer1ready)) {
>> +
>> +                     /* Get the Buffer address and copy the transmit data.*/
>> +                     eprambase = (u32 __force *)(ep->udc->base_address +
>> +                                     ep->rambase + ep->ep_usb.maxpacket);
>> +                     if (ep->udc->dma_enabled) {
>> +                             if (direction == EP_TRANSMIT) {
>> +                                     srcaddr = dma_map_single(
>> +                                             ep->udc->gadget.dev.parent,
>> +                                             bufferptr, bufferlen,
>> +                                             DMA_TO_DEVICE);
>> +                                     dstaddr = virt_to_phys(eprambase);
>> +                                     udc->write_fn(bufferlen,
>> +                                             ep->udc->base_address +
>> +                                             ep->endpointoffset +
>> +                                             XUSB_EP_BUF1COUNT_OFFSET);
>> +                                     udc->write_fn(XUSB_DMA_BRR_CTRL |
>> +                                             (1 << (ep->epnumber +
>> +                                             XUSB_STATUS_EP_BUFF2_SHIFT)),
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_CONTROL_OFFSET);
>> +                             } else {
>> +                                     srcaddr = virt_to_phys(eprambase);
>> +                                     dstaddr = dma_map_single(
>> +                                             ep->udc->gadget.dev.parent,
>> +                                             bufferptr, bufferlen,
>> +                                             DMA_FROM_DEVICE);
>> +                                     udc->write_fn(XUSB_DMA_BRR_CTRL |
>> +                                             XUSB_DMA_READ_FROM_DPRAM |
>> +                                             (1 << (ep->epnumber +
>> +                                             XUSB_STATUS_EP_BUFF2_SHIFT)),
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_CONTROL_OFFSET);
>> +                             }
>> +                             /*
>> +                              * Set the addresses in the DMA source and
>> +                              * destination registers and then set the length
>> +                              * into the DMA length register.
>> +                              */
>> +                             udc->write_fn(srcaddr,
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_DSAR_ADDR_OFFSET);
>> +                             udc->write_fn(dstaddr,
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_DDAR_ADDR_OFFSET);
>> +                             udc->write_fn(bufferlen,
>> +                                             ep->udc->base_address +
>> +                                             XUSB_DMA_LENGTH_OFFSET);
>> +                     } else {
>> +                             while (bytestosend > 3) {
>> +                                     if (direction == EP_TRANSMIT)
>> +                                             *eprambase++ =
>> +                                                     *(u32 *)bufferptr;
>> +                                     else
>> +                                             *(u32 *)bufferptr =
>> +                                                     *eprambase++;
>> +                                     bufferptr += 4;
>> +                                     bytestosend -= 4;
>> +                             }
>> +                             temprambase = (u8 *)eprambase;
>> +                             while (bytestosend--) {
>> +                                     if (direction == EP_TRANSMIT)
>> +                                             *temprambase++ = *bufferptr++;
>> +                                     else
>> +                                             *bufferptr++ = *temprambase++;
>> +                             }
>> +                             /*
>> +                              * Set the Buffer count register with transmit
>> +                              * length and enable the buffer for
>> +                              * transmission.
>> +                              */
>> +                             if (direction == EP_TRANSMIT)
>> +                                     udc->write_fn(bufferlen,
>> +                                             ep->udc->base_address +
>> +                                             ep->endpointoffset +
>> +                                             XUSB_EP_BUF1COUNT_OFFSET);
>> +                             udc->write_fn(1 << (ep->epnumber +
>> +                                             XUSB_STATUS_EP_BUFF2_SHIFT),
>> +                                             ep->udc->base_address +
>> +                                             XUSB_BUFFREADY_OFFSET);
>> +                     }
>> +                     ep->buffer1ready = 1;
>> +                     ep->curbufnum = 0;
>> +             } else {
>> +                     /*
>> +                      * None of the ping-pong buffer is free. Return a
>> +                      * failure.
>> +                      */
>> +                     return 1;
>> +             }
>> +
>> +     if (ep->udc->dma_enabled) {
>> +             /*
>> +              * Wait till DMA transaction is complete and
>> +              * check whether the DMA transaction was
>> +              * successful.
>> +              */
>> +             while ((udc->read_fn(ep->udc->base_address +
>> +                             XUSB_DMA_STATUS_OFFSET) &
>> +                             XUSB_DMA_DMASR_BUSY) == XUSB_DMA_DMASR_BUSY) {
>> +                     timeout = jiffies + 10000;
>> +
>> +                     if (time_after(jiffies, timeout)) {
>> +                             rc = -ETIMEDOUT;
>> +                             goto clean;
>> +                     }
>> +
>> +             }
>> +             if ((udc->read_fn(ep->udc->base_address +
>> +                             XUSB_DMA_STATUS_OFFSET) &
>> +                             XUSB_DMA_DMASR_ERROR) == XUSB_DMA_DMASR_ERROR)
>> +                     dev_dbg(&ep->udc->gadget.dev, "DMA Error\n");
>> +clean:
>> +             if (direction == EP_TRANSMIT) {
>> +                     dma_unmap_single(ep->udc->gadget.dev.parent,
>> +                             srcaddr, bufferlen, DMA_TO_DEVICE);
>> +             } else {
>> +                     dma_unmap_single(ep->udc->gadget.dev.parent,
>> +                             dstaddr, bufferlen, DMA_FROM_DEVICE);
>> +             }
>> +     }
>> +     return rc;
>> +}
>
> what a big function. Looks like you could split it into smaller
> functions to aid redability.
Ok.
>
>> +static int xudc_ep_enable(struct usb_ep *_ep,
>> +                       const struct usb_endpoint_descriptor *desc)
>> +{
>> +     struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +     struct xusb_udc *dev = ep->udc;
>> +     u32 tmp;
>> +     u8 eptype = 0;
>> +     unsigned long flags;
>> +     u32 epcfg;
>> +     struct xusb_udc *udc = ep->udc;
>> +
>> +     /*
>> +      * The check for _ep->name == ep0name is not done as this enable i used
>> +      * for enabling ep0 also. In other gadget drivers, this ep name is not
>> +      * used.
>> +      */
>> +     if (!_ep || !desc || ep->desc ||
>> +         desc->bDescriptorType != USB_DT_ENDPOINT) {
>> +             dev_dbg(&ep->udc->gadget.dev, "first check fails\n");
>
> you need a more descriptive message here.
Ok
>
>> +             return -EINVAL;
>> +     }
>> +
>> +     if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
>> +             dev_dbg(&ep->udc->gadget.dev, "bogus device state\n");
>> +             return -ESHUTDOWN;
>> +     }
>> +
>> +
>> +     ep->is_in = ((desc->bEndpointAddress & USB_DIR_IN) != 0);
>> +     /*
>> +      * Bit 3...0: endpoint number
>> +      */
>
> fits in one line, no need for multiline comment.
Ok
>
>> +     ep->epnumber = (desc->bEndpointAddress & 0x0f);
>> +     ep->stopped = 0;
>> +     ep->desc = desc;
>> +     ep->ep_usb.desc = desc;
>> +     tmp = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
>> +     spin_lock_irqsave(&ep->udc->lock, flags);
>> +     ep->ep_usb.maxpacket = le16_to_cpu(desc->wMaxPacketSize);
>> +
>> +     switch (tmp) {
>> +     case USB_ENDPOINT_XFER_CONTROL:
>> +             dev_dbg(&ep->udc->gadget.dev, "only one control endpoint\n");
>> +             /* NON- ISO */
>> +             eptype = 0;
>> +             spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +             return -EINVAL;
>> +     case USB_ENDPOINT_XFER_INT:
>> +             /* NON- ISO */
>> +             eptype = 0;
>> +             if (ep->ep_usb.maxpacket > 64)
>> +                     goto bogus_max;
>> +             break;
>> +     case USB_ENDPOINT_XFER_BULK:
>> +             /* NON- ISO */
>> +             eptype = 0;
>> +             switch (ep->ep_usb.maxpacket) {
>> +             case 8:
>> +             case 16:
>> +             case 32:
>> +             case 64:
>> +             case 512:
>> +             goto ok;
>
> bogus indentation.
>
>> +             }
>> +bogus_max:
>> +             dev_dbg(&ep->udc->gadget.dev, "bogus maxpacket %d\n",
>> +                     ep->ep_usb.maxpacket);
>> +             spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +             return -EINVAL;
>> +     case USB_ENDPOINT_XFER_ISOC:
>> +             /* ISO */
>> +             eptype = 1;
>> +             ep->is_iso = 1;
>> +             break;
>> +     }
>> +
>> +ok:  ep->eptype = eptype;
>
> the label sits in a line by itself:
>
> ok:
>         ep->eptype = eptype;
>
>         ...
>
>> +static int xudc_ep_disable(struct usb_ep *_ep)
>> +{
>> +     struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +     unsigned long flags;
>> +     u32 epcfg;
>> +     struct xusb_udc *udc = ep->udc;
>> +
>> +     if (ep == &ep->udc->ep[XUSB_EP_NUMBER_ZERO]) {
>> +             dev_dbg(&ep->udc->gadget.dev, "Ep0 disable called\n");
>> +             return -EINVAL;
>> +     }
>> +     spin_lock_irqsave(&ep->udc->lock, flags);
>> +
>> +     xudc_nuke(ep, -ESHUTDOWN);
>> +
>> +     /* Restore the endpoint's pristine config */
>> +     ep->desc = NULL;
>> +     ep->ep_usb.desc = NULL;
>> +
>> +     ep->stopped = 1;
>> +
>> +     dev_dbg(&ep->udc->gadget.dev, "USB Ep %d disable\n ", ep->epnumber);
>> +
>> +     /* Disable the endpoint.*/
>> +     epcfg = udc->read_fn(ep->udc->base_address + ep->endpointoffset);
>> +     epcfg &= ~XUSB_EP_CFG_VALID_MASK;
>> +     udc->write_fn(epcfg, ep->udc->base_address + ep->endpointoffset);
>> +     spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_ep_alloc_request - Initializes the request queue.
>> + * @_ep: pointer to the usb device endpoint structure.
>> + * @gfp_flags: Flags related to the request call.
>> + *
>> + * Return: pointer to request structure on success and a NULL on failure.
>> + */
>> +static struct usb_request *xudc_ep_alloc_request(struct usb_ep *_ep,
>> +                                              gfp_t gfp_flags)
>> +{
>> +     struct xusb_request *req;
>> +
>> +     req = kmalloc(sizeof(*req), gfp_flags);
>
> use kzalloc...
>
>> +     if (!req)
>> +             return NULL;
>> +
>> +     memset(req, 0, sizeof(*req));
>
> ... and drop this list head.
>
>> +     INIT_LIST_HEAD(&req->queue);
>
> remove this INIT_LIST_HEAD();
>
> also, before returning, I suppose you probably want to link the request
> to the endpoint somehow. Usually people save the endpoint pointer inside
> the private request structure (iow: req->ep = ep;)
>

in ep_queue (say,for IN transaction) the driver copies the gadget
driver buffer to HW endpoint buffer and if whole data
has been transferred successfully then request is not added to
endpoint request list. Hence  INIT_LIST_HEAD(&req->queue)
is required since list_add_tail is not done every time in ep_queue. Is
it ok to let this be here?

>> +     return &req->usb_req;
>> +}
>> +
>> +/**
>> + * xudc_free_request - Releases the request from queue.
>> + * @_ep: pointer to the usb device endpoint structure.
>> + * @_req: pointer to the usb request structure.
>> + */
>> +static void xudc_free_request(struct usb_ep *_ep, struct usb_request *_req)
>> +{
>> +     struct xusb_ep *ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +     struct xusb_request *req;
>> +
>> +     req = container_of(_req, struct xusb_request, usb_req);
>
> define helper macros for these two container_of(). It helps with
> readability.
>
>> +     if (!list_empty(&req->queue))
>> +             dev_warn(&ep->udc->gadget.dev, "Error: No memory to free");
>
> what did you want to do here ? Perhaps:
>
>         if (list_empty(&req->queue)) {
>                 dev_warn(&ep->udc->gadget.dev, "Error: no request to free");
>                 return;
>         }
>
> ???
>
>> +     kfree(req);
>> +}
>> +
>> +/**
>> + * xudc_ep_queue - Adds the request to the queue.
>> + * @_ep: pointer to the usb device endpoint structure.
>> + * @_req: pointer to the usb request structure.
>> + * @gfp_flags: Flags related to the request call.
>> + *
>> + * Return: 0 for success and error value on failure
>> + */
>> +static int xudc_ep_queue(struct usb_ep *_ep, struct usb_request *_req,
>> +                      gfp_t gfp_flags)
>> +{
>> +     struct xusb_request *req;
>> +     struct xusb_ep *ep;
>> +     struct xusb_udc *dev;
>> +     unsigned long flags;
>> +     u32 length, count;
>> +     u8 *corebuf;
>> +     struct xusb_udc *udc;
>> +
>> +     req = container_of(_req, struct xusb_request, usb_req);
>> +     ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +     udc = ep->udc;
>> +
>> +     if (!_req || !_req->complete || !_req->buf ||
>> +                     !list_empty(&req->queue)) {
>> +             dev_dbg(&ep->udc->gadget.dev, "invalid request\n");
>> +             return -EINVAL;
>> +     }
>> +
>> +     if (!_ep || (!ep->desc && ep->ep_usb.name != ep0name)) {
>> +             dev_dbg(&ep->udc->gadget.dev, "invalid ep\n");
>> +             return -EINVAL;
>> +     }
>> +
>> +     dev = ep->udc;
>> +     if (!dev || !dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
>> +             dev_dbg(&ep->udc->gadget.dev, "%s, bogus device state %p\n",
>> +                     __func__, dev->driver);
>> +             return -ESHUTDOWN;
>> +     }
>> +
>> +     spin_lock_irqsave(&dev->lock, flags);
>> +
>> +     _req->status = -EINPROGRESS;
>> +     _req->actual = 0;
>> +
>> +     /* Try to kickstart any empty and idle queue */
>> +     if (list_empty(&ep->queue)) {
>> +             if (!ep->epnumber) {
>> +                     ep->data = req;
>> +                     if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
>> +                             ch9_cmdbuf.contwriteptr = req->usb_req.buf +
>> +                                                     req->usb_req.actual;
>> +                             prefetch(ch9_cmdbuf.contwriteptr);
>> +                             length = req->usb_req.length -
>> +                                     req->usb_req.actual;
>> +                             corebuf = (void __force *) ((ep->rambase << 2) +
>> +                                         ep->udc->base_address);
>> +                             ch9_cmdbuf.contwritecount = length;
>> +                             length = count = min_t(u32, length,
>> +                                                     EP0_MAX_PACKET);
>> +                             while (length--)
>> +                                     *corebuf++ = *ch9_cmdbuf.contwriteptr++;
>> +                             udc->write_fn(count, ep->udc->base_address +
>> +                                        XUSB_EP_BUF0COUNT_OFFSET);
>> +                             udc->write_fn(1, ep->udc->base_address +
>> +                                        XUSB_BUFFREADY_OFFSET);
>> +                             ch9_cmdbuf.contwritecount -= count;
>> +                     } else {
>> +                             if (ch9_cmdbuf.setup.wLength) {
>> +                                     ch9_cmdbuf.contreadptr =
>> +                                             req->usb_req.buf +
>> +                                                     req->usb_req.actual;
>> +                                     udc->write_fn(req->usb_req.length ,
>> +                                             ep->udc->base_address +
>> +                                             XUSB_EP_BUF0COUNT_OFFSET);
>> +                                     udc->write_fn(1, ep->udc->base_address
>> +                                             + XUSB_BUFFREADY_OFFSET);
>> +                             } else {
>> +                                     xudc_wrstatus(udc);
>> +                                     req = NULL;
>> +                             }
>> +                     }
>> +             } else {
>> +
>> +                     if (ep->is_in) {
>> +                             dev_dbg(&ep->udc->gadget.dev,
>> +                                     "xudc_write_fifo called from queue\n");
>> +                             if (xudc_write_fifo(ep, req) == 1)
>> +                                     req = NULL;
>> +                     } else {
>> +                             dev_dbg(&ep->udc->gadget.dev,
>> +                                     "xudc_read_fifo called from queue\n");
>> +                             if (xudc_read_fifo(ep, req) == 1)
>> +                                     req = NULL;
>> +                     }
>> +             }
>> +     }
>> +
>> +     if (req != NULL)
>> +             list_add_tail(&req->queue, &ep->queue);
Here. INIT_LIST_HEAD(&req->queue) is required in alloc_req since
list_add_tail is not executed every time.

Could you please clarify my questions regarding requests queuing.
1. If Device need to send 5120 bytes to host and
ep->desc->wMaxPacketSize is 512 then single request with length 5120
is issued
or 10 requests are issued?
2. Does device need to know OUT transactions before hand so that OUT
requests are queued for endpoint before packets are received
from host?

>> +     spin_unlock_irqrestore(&dev->lock, flags);
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_ep_dequeue - Removes the request from the queue.
>> + * @_ep: pointer to the usb device endpoint structure.
>> + * @_req: pointer to the usb request structure.
>> + *
>> + * Return: 0 for success and error value on failure
>> + */
>> +static int xudc_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
>> +{
>> +     struct xusb_ep *ep;
>> +     struct xusb_request *req;
>> +     unsigned long flags;
>> +
>> +     ep = container_of(_ep, struct xusb_ep, ep_usb);
>> +
>> +     if (!_ep || ep->ep_usb.name == ep0name)
>> +             return -EINVAL;
>> +
>> +     spin_lock_irqsave(&ep->udc->lock, flags);
>> +     /* Make sure it's actually queued on this endpoint */
>> +     list_for_each_entry(req, &ep->queue, queue) {
>> +             if (&req->usb_req == _req)
>> +                     break;
>> +     }
>> +     if (&req->usb_req != _req) {
>> +             spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +             return -EINVAL;
>> +     }
>> +
>> +     xudc_done(ep, req, -ECONNRESET);
>> +     spin_unlock_irqrestore(&ep->udc->lock, flags);
>> +
>> +     return 0;
>> +}
>> +
>> +static struct usb_ep_ops xusb_ep_ops = {
>> +     .enable = xudc_ep_enable,
>> +     .disable = xudc_ep_disable,
>> +
>> +     .alloc_request = xudc_ep_alloc_request,
>> +     .free_request = xudc_free_request,
>> +
>> +     .queue = xudc_ep_queue,
>> +     .dequeue = xudc_ep_dequeue,
>> +     .set_halt = xudc_ep_set_halt,
>> +};
>> +
>> +/**
>> + * xudc_get_frame - Reads the current usb frame number.
>> + * @gadget: pointer to the usb gadget structure.
>> + *
>> + * Return: current frame number for success and error value on failure.
>> + */
>> +static int xudc_get_frame(struct usb_gadget *gadget)
>> +{
>> +
>> +     struct xusb_udc *udc = to_udc(gadget);
>> +     unsigned long flags;
>> +     int retval;
>> +
>> +     if (!gadget)
>> +             return -ENODEV;
>> +
>> +     local_irq_save(flags);
>> +     retval = udc->read_fn(udc->base_address + XUSB_FRAMENUM_OFFSET);
>> +     local_irq_restore(flags);
>> +     return retval;
>> +}
>> +
>> +/**
>> + * xudc_reinit - Restores inital software state.
>> + * @udc: pointer to the usb device controller structure.
>> + */
>> +static void xudc_reinit(struct xusb_udc *udc)
>> +{
>> +     u32 ep_number;
>> +     char name[4];
>> +
>> +     INIT_LIST_HEAD(&udc->gadget.ep_list);
>> +     INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
>> +
>> +     for (ep_number = 0; ep_number < XUSB_MAX_ENDPOINTS; ep_number++) {
>> +             struct xusb_ep *ep = &udc->ep[ep_number];
>> +
>> +             if (ep_number) {
>> +                     list_add_tail(&ep->ep_usb.ep_list,
>> +                                     &udc->gadget.ep_list);
>> +                     ep->ep_usb.maxpacket = (unsigned short)~0;
>> +                     sprintf(name, "ep%d", ep_number);
>> +                     strcpy(ep->name, name);
>> +                     ep->ep_usb.name = ep->name;
>> +             } else {
>> +                     ep->ep_usb.name = ep0name;
>> +                     ep->ep_usb.maxpacket = 0x40;
>> +             }
>> +
>> +             ep->ep_usb.ops = &xusb_ep_ops;
>> +             ep->udc = udc;
>> +             ep->epnumber = ep_number;
>> +             ep->desc = NULL;
>> +             ep->stopped = 0;
>> +             /*
>> +              * The configuration register address offset between
>> +              * each endpoint is 0x10.
>> +              */
>> +             ep->endpointoffset = XUSB_EP0_CONFIG_OFFSET +
>> +                                     (ep_number * 0x10);
>> +             ep->is_in = 0;
>> +             ep->is_iso = 0;
>> +             ep->maxpacket = 0;
>> +             xudc_epconfig(ep, udc);
>> +             udc->status = 0;
>> +
>> +             /* Initialize one queue per endpoint */
>> +             INIT_LIST_HEAD(&ep->queue);
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_stop_activity - Stops any further activity on the device.
>> + * @udc: pointer to the usb device controller structure.
>> + */
>> +static void xudc_stop_activity(struct xusb_udc *udc)
>> +{
>> +     struct usb_gadget_driver *driver = udc->driver;
>> +     int i;
>> +
>> +     if (udc->gadget.speed == USB_SPEED_UNKNOWN)
>> +             driver = NULL;
>> +     udc->gadget.speed = USB_SPEED_HIGH;
>> +
>> +     for (i = 0; i < XUSB_MAX_ENDPOINTS; i++) {
>> +             struct xusb_ep *ep = &udc->ep[i];
>> +
>> +             ep->stopped = 1;
>> +             xudc_nuke(ep, -ESHUTDOWN);
>> +     }
>> +     if (driver) {
>> +             spin_unlock(&udc->lock);
>> +             driver->disconnect(&udc->gadget);
>> +             spin_lock(&udc->lock);
>> +     }
>
> you shouldn't be calling disconnect here, udc-core is doing that for
> you.
>
>> +
>> +     xudc_reinit(udc);
>> +}
>> +
>> +/**
>> + * xudc_start - Starts the device.
>> + * @gadget: pointer to the usb gadget structure
>> + * @driver: pointer to gadget driver structure
>> + *
>> + * Return: zero always
>> + */
>> +static int xudc_start(struct usb_gadget *gadget,
>> +                     struct usb_gadget_driver *driver)
>> +{
>> +     struct xusb_udc *udc = to_udc(gadget);
>> +     const struct usb_endpoint_descriptor *d = &config_bulk_out_desc;
>> +
>> +     driver->driver.bus = NULL;
>> +     /* hook up the driver */
>> +     udc->driver = driver;
>> +     udc->gadget.dev.driver = &driver->driver;
>> +     udc->gadget.speed = driver->max_speed;
>> +
>> +     /* Enable the USB device.*/
>> +     xudc_ep_enable(&udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb, d);
>> +     udc->write_fn(0, (udc->base_address + XUSB_ADDRESS_OFFSET));
>> +     udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
>> +             udc->base_address + XUSB_CONTROL_OFFSET);
>> +
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_stop - stops the device.
>> + * @gadget: pointer to the usb gadget structure
>> + * @driver: pointer to usb gadget driver structure
>> + *
>> + * Return: zero always
>> + */
>> +static int xudc_stop(struct usb_gadget *gadget,
>> +             struct usb_gadget_driver *driver)
>> +{
>> +     struct xusb_udc *udc = to_udc(gadget);
>> +     unsigned long flags;
>> +     u32 crtlreg;
>> +
>> +     /* Disable USB device.*/
>> +     crtlreg = udc->read_fn(udc->base_address + XUSB_CONTROL_OFFSET);
>> +     crtlreg &= ~XUSB_CONTROL_USB_READY_MASK;
>> +     udc->write_fn(crtlreg, udc->base_address + XUSB_CONTROL_OFFSET);
>> +     spin_lock_irqsave(&udc->lock, flags);
>> +     udc->gadget.speed = USB_SPEED_UNKNOWN;
>> +     xudc_stop_activity(udc);
>> +     spin_unlock_irqrestore(&udc->lock, flags);
>> +
>> +     udc->gadget.dev.driver = NULL;
>> +     udc->driver = NULL;
>> +
>> +     return 0;
>> +}
>> +
>> +static const struct usb_gadget_ops xusb_udc_ops = {
>> +     .get_frame = xudc_get_frame,
>> +     .udc_start = xudc_start,
>> +     .udc_stop  = xudc_stop,
>> +};
>> +
>> +/**
>> + * xudc_startup_handler - The usb device controller interrupt handler.
>> + * @callbackref: pointer to the reference value being passed.
>> + * @intrstatus: The mask value containing the interrupt sources.
>> + *
>> + * This handler handles the RESET, SUSPEND and DISCONNECT interrupts.
>> + */
>> +static void xudc_startup_handler(void *callbackref, u32 intrstatus)
>
> why void ? why isn't this returning irqreturn_t ?
>
>> +{
>> +     struct xusb_udc *udc;
>> +     u32 intrreg;
>> +
>> +     udc = (struct xusb_udc *) callbackref;
>
> you don't need the cast here.
>
>> +     if (intrstatus & XUSB_STATUS_RESET_MASK) {
>> +             dev_dbg(&udc->gadget.dev, "Reset\n");
>> +             if (intrstatus & XUSB_STATUS_HIGH_SPEED_MASK)
>> +                     udc->gadget.speed = USB_SPEED_HIGH;
>> +             else
>> +                     udc->gadget.speed = USB_SPEED_FULL;
>> +
>> +             if (udc->status == 1) {
>> +                     udc->status = 0;
>> +                     /* Set device address to 0.*/
>> +                     udc->write_fn(0, udc->base_address +
>> +                                             XUSB_ADDRESS_OFFSET);
>> +             }
>> +             /* Disable the Reset interrupt.*/
>> +             intrreg = udc->read_fn(udc->base_address +
>> +                                     XUSB_IER_OFFSET);
>> +
>> +             intrreg &= ~XUSB_STATUS_RESET_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +             /* Enable thesuspend and disconnect.*/
>> +             intrreg =
>> +                     udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
>> +             intrreg |=
>> +                     (XUSB_STATUS_SUSPEND_MASK |
>> +                      XUSB_STATUS_DISCONNECT_MASK);
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +     }
>> +
>> +     if (intrstatus & XUSB_STATUS_DISCONNECT_MASK) {
>> +
>> +             /* Disable the Disconnect interrupt.*/
>> +             intrreg =
>> +                     udc->read_fn(udc->base_address + XUSB_IER_OFFSET);
>> +             intrreg &= ~XUSB_STATUS_DISCONNECT_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +             dev_dbg(&udc->gadget.dev, "Disconnect\n");
>> +             if (udc->status == 1) {
>> +                     udc->status = 0;
>> +                     /* Set device address to 0.*/
>> +                     udc->write_fn(0, udc->base_address +
>> +                                     XUSB_ADDRESS_OFFSET);
>> +                     /* Enable the USB device.*/
>> +                     udc->write_fn(XUSB_CONTROL_USB_READY_MASK,
>> +                             udc->base_address + XUSB_CONTROL_OFFSET);
>> +             }
>> +
>> +             /* Enable the suspend and reset interrupts.*/
>> +             intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
>> +                             XUSB_STATUS_SUSPEND_MASK |
>> +                             XUSB_STATUS_RESET_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +             xudc_stop_activity(udc);
>> +     }
>> +
>> +     if (intrstatus & XUSB_STATUS_SUSPEND_MASK) {
>> +             dev_dbg(&udc->gadget.dev, "Suspend\n");
>> +             /* Disable the Suspend interrupt.*/
>> +             intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) &
>> +                                     ~XUSB_STATUS_SUSPEND_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +             /* Enable the Disconnect and reset interrupts. */
>> +             intrreg = udc->read_fn(udc->base_address + XUSB_IER_OFFSET) |
>> +                             XUSB_STATUS_DISCONNECT_MASK |
>> +                             XUSB_STATUS_RESET_MASK;
>> +             udc->write_fn(intrreg, udc->base_address + XUSB_IER_OFFSET);
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_set_clear_feature - Executes the set feature and clear feature commands.
>> + * @udc: pointer to the usb device controller structure.
>> + * @flag: Value deciding the set or clear action.
>> + *
>> + * Processes the SET_FEATURE and CLEAR_FEATURE commands.
>> + */
>> +static void xudc_set_clear_feature(struct xusb_udc *udc, int flag)
>> +{
>> +     u8 endpoint;
>> +     u8 outinbit;
>> +     u32 epcfgreg;
>> +
>> +     switch (ch9_cmdbuf.setup.bRequestType) {
>> +     case STANDARD_OUT_DEVICE:
>
> use the macros from <linux/usb/ch9.h>
>
>> +             switch (ch9_cmdbuf.setup.wValue) {
>> +             case USB_DEVICE_TEST_MODE:
>> +                     /*
>> +                      * The Test Mode will be executed
>> +                      * after the status phase.
>> +                      */
>> +                     break;
>> +
>> +             default:
>> +                     epcfgreg = udc->read_fn(udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +                     epcfgreg |= XUSB_EP_CFG_STALL_MASK;
>> +                     udc->write_fn(epcfgreg, udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +                     break;
>> +             }
>> +             break;
>> +
>> +     case STANDARD_OUT_ENDPOINT:
>
> use the macros from <linux/usb/ch9.h>
>
>> +             if (!ch9_cmdbuf.setup.wValue) {
>> +                     endpoint = ch9_cmdbuf.setup.wIndex & 0xf;
>> +                     outinbit = ch9_cmdbuf.setup.wIndex & 0x80;
>> +                     outinbit = outinbit >> 7;
>> +
>> +                     /* Make sure direction matches.*/
>> +                     if (outinbit != udc->ep[endpoint].is_in) {
>> +                             epcfgreg = udc->read_fn(udc->base_address +
>> +                                             udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                             endpointoffset);
>> +                             epcfgreg |= XUSB_EP_CFG_STALL_MASK;
>> +
>> +                             udc->write_fn(epcfgreg, udc->base_address +
>> +                                     udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                     endpointoffset);
>> +                             return;
>> +                     }
>> +
>> +                     if (!endpoint) {
>> +                             /* Clear the stall.*/
>> +                             epcfgreg = udc->read_fn(udc->base_address +
>> +                                             udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                             endpointoffset);
>> +
>> +                             epcfgreg &= ~XUSB_EP_CFG_STALL_MASK;
>> +
>> +                             udc->write_fn(epcfgreg, udc->base_address +
>> +                                     udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                     endpointoffset);
>> +                             break;
>> +                     } else {
>> +                             if (flag == 1) {
>> +                                     epcfgreg =
>> +                                             udc->read_fn(udc->base_address +
>> +                                             udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                             endpointoffset);
>> +                                     epcfgreg |= XUSB_EP_CFG_STALL_MASK;
>> +
>> +                                     udc->write_fn(epcfgreg,
>> +                                             udc->base_address +
>> +                                             udc->ep[XUSB_EP_NUMBER_ZERO].
>> +                                             endpointoffset);
>> +                             } else {
>> +                                     /* Unstall the endpoint.*/
>> +                                     epcfgreg =
>> +                                             udc->read_fn(udc->base_address +
>> +                                             udc->ep[endpoint].
>> +                                             endpointoffset);
>> +                                     epcfgreg &=
>> +                                             ~(XUSB_EP_CFG_STALL_MASK |
>> +                                               XUSB_EP_CFG_DATA_TOGGLE_MASK);
>> +                                     udc->write_fn(epcfgreg,
>> +                                             udc->base_address +
>> +                                             udc->ep[endpoint].
>> +                                             endpointoffset);
>> +                             }
>> +                     }
>> +             }
>> +             break;
>> +
>> +     default:
>> +             epcfgreg = udc->read_fn(udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +             epcfgreg |= XUSB_EP_CFG_STALL_MASK;
>> +             udc->write_fn(epcfgreg, udc->base_address +
>> +                     udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +             return;
>> +     }
>> +
>> +     /* Cause and valid status phase to be issued.*/
>> +     xudc_wrstatus(udc);
>> +
>> +     return;
>> +}
>> +
>> +/**
>> + * xudc_execute_cmd - Processes the USB specification chapter 9 commands.
>> + * @udc: pointer to the usb device controller structure.
>> + *
>> + * Return: 0 for success and the same reuqest command if it is not handled.
>> + */
>> +static int xudc_execute_cmd(struct xusb_udc *udc)
>> +{
>> +
>> +     if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
>> +                     USB_TYPE_STANDARD) {
>> +             /* Process the chapter 9 command.*/
>> +             switch (ch9_cmdbuf.setup.bRequest) {
>> +
>> +             case USB_REQ_CLEAR_FEATURE:
>> +                     xudc_set_clear_feature(udc, 0);
>> +                     break;
>> +
>> +             case USB_REQ_SET_FEATURE:
>> +                     xudc_set_clear_feature(udc, 1);
>> +                     break;
>> +
>> +             case USB_REQ_SET_ADDRESS:
>> +                     xudc_wrstatus(udc);
>> +                     break;
>> +
>> +             case USB_REQ_SET_CONFIGURATION:
>> +                     udc->status = 1;
>> +                     return ch9_cmdbuf.setup.bRequest;
>> +
>> +             default:
>> +                     /*
>> +                      * Return the same request to application for
>> +                      * handling.
>> +                      */
>> +                     return ch9_cmdbuf.setup.bRequest;
>> +             }
>> +
>> +     } else {
>> +             if ((ch9_cmdbuf.setup.bRequestType & USB_TYPE_MASK) ==
>> +                  USB_TYPE_CLASS)
>> +                     return ch9_cmdbuf.setup.bRequest;
>> +     }
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_handle_setup - Processes the setup packet.
>> + * @udc: pointer to the usb device controller structure.
>> + * @ctrl: pointer to the usb control endpoint structure.
>> + *
>> + * Return: 0 for success and request to be handled by application if
>> + *           is not handled by the driver.
>> + */
>> +static int xudc_handle_setup(struct xusb_udc *udc, struct usb_ctrlrequest *ctrl)
>> +{
>> +     u32 *ep0rambase;
>> +
>> +     /* Load up the chapter 9 command buffer.*/
>> +     ep0rambase = (u32 __force *) (udc->base_address +
>> +                               XUSB_SETUP_PKT_ADDR_OFFSET);
>> +     memcpy((void *)&ch9_cmdbuf.setup, (void *)ep0rambase, 8);
>> +
>> +     ctrl->bRequestType = ch9_cmdbuf.setup.bRequestType;
>> +     ctrl->bRequest     = ch9_cmdbuf.setup.bRequest;
>> +     ctrl->wValue       = ch9_cmdbuf.setup.wValue;
>> +     ctrl->wIndex       = ch9_cmdbuf.setup.wIndex;
>> +     ctrl->wLength      = ch9_cmdbuf.setup.wLength;
>> +
>> +     ch9_cmdbuf.setup.wValue = cpu_to_le16(ch9_cmdbuf.setup.wValue);
>> +     ch9_cmdbuf.setup.wIndex = cpu_to_le16(ch9_cmdbuf.setup.wIndex);
>> +     ch9_cmdbuf.setup.wLength = cpu_to_le16(ch9_cmdbuf.setup.wLength);
>> +
>> +     /* Restore ReadPtr to data buffer.*/
>> +     ch9_cmdbuf.contreadptr = &ch9_cmdbuf.contreaddatabuffer[0];
>> +     ch9_cmdbuf.contreadcount = 0;
>> +
>> +     if (ch9_cmdbuf.setup.bRequestType & USB_DIR_IN) {
>> +             /* Execute the get command.*/
>> +             ch9_cmdbuf.setupseqrx = STATUS_PHASE;
>> +             ch9_cmdbuf.setupseqtx = DATA_PHASE;
>> +             return xudc_execute_cmd(udc);
>> +     } else {
>> +             /* Execute the put command.*/
>> +             ch9_cmdbuf.setupseqrx = DATA_PHASE;
>> +             ch9_cmdbuf.setupseqtx = STATUS_PHASE;
>> +             return xudc_execute_cmd(udc);
>> +     }
>> +     /* Control should never come here.*/
>> +     return 0;
>> +}
>> +
>> +/**
>> + * xudc_ep0_out - Processes the endpoint 0 OUT token.
>> + * @udc: pointer to the usb device controller structure.
>> + */
>> +static void xudc_ep0_out(struct xusb_udc *udc)
>> +{
>> +     struct xusb_ep *ep;
>> +     u8 count;
>> +     u8 *ep0rambase;
>> +     u16 index;
>> +
>> +     ep = &udc->ep[0];
>> +     switch (ch9_cmdbuf.setupseqrx) {
>> +     case STATUS_PHASE:
>
> what about the setup phase ?
>
>> +             /*
>> +              * This resets both state machines for the next
>> +              * Setup packet.
>> +              */
>> +             ch9_cmdbuf.setupseqrx = SETUP_PHASE;
>> +             ch9_cmdbuf.setupseqtx = SETUP_PHASE;
>> +             ep->data->usb_req.actual = ep->data->usb_req.length;
>> +             xudc_done(ep, ep->data, 0);
>> +             break;
>> +
>> +     case DATA_PHASE:
>> +             count = udc->read_fn(udc->base_address +
>> +                             XUSB_EP_BUF0COUNT_OFFSET);
>> +             /* Copy the data to be received from the DPRAM. */
>> +             ep0rambase =
>> +                     (u8 __force *) (udc->base_address +
>> +                             (udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
>> +
>> +             for (index = 0; index < count; index++)
>> +                     *ch9_cmdbuf.contreadptr++ = *ep0rambase++;
>> +
>> +             ch9_cmdbuf.contreadcount += count;
>> +             if (ch9_cmdbuf.setup.wLength == ch9_cmdbuf.contreadcount) {
>> +                             xudc_wrstatus(udc);
>> +             } else {
>> +                     /* Set the Tx packet size and the Tx enable bit.*/
>> +                     udc->write_fn(0, udc->base_address +
>> +                             XUSB_EP_BUF0COUNT_OFFSET);
>> +                     udc->write_fn(1, udc->base_address +
>> +                             XUSB_BUFFREADY_OFFSET);
>> +             }
>> +             break;
>> +
>> +     default:
>> +             break;
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_ep0_in - Processes the endpoint 0 IN token.
>> + * @udc: pointer to the usb device controller structure.
>> + */
>> +static void xudc_ep0_in(struct xusb_udc *udc)
>> +{
>> +     struct xusb_ep *ep;
>> +     u32 epcfgreg;
>> +     u16 count;
>> +     u16 length;
>> +     u8 *ep0rambase;
>> +
>> +     ep = &udc->ep[0];
>> +     switch (ch9_cmdbuf.setupseqtx) {
>> +     case STATUS_PHASE:
>> +             if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_ADDRESS) {
>> +                     /* Set the address of the device.*/
>> +                     udc->write_fn(ch9_cmdbuf.setup.wValue,
>> +                                     (udc->base_address +
>> +                                     XUSB_ADDRESS_OFFSET));
>> +                     break;
>> +             } else {
>> +                     if (ch9_cmdbuf.setup.bRequest == USB_REQ_SET_FEATURE) {
>> +                             if (ch9_cmdbuf.setup.bRequestType ==
>> +                                 STANDARD_OUT_DEVICE) {
>> +                                     if (ch9_cmdbuf.setup.wValue ==
>> +                                         USB_DEVICE_TEST_MODE)
>> +                                             udc->write_fn(TEST_J,
>> +                                                     udc->base_address +
>> +                                                     XUSB_TESTMODE_OFFSET);
>
> use a switch.
>
>> +                             }
>> +                     }
>> +             }
>> +             ep->data->usb_req.actual = ch9_cmdbuf.setup.wLength;
>> +             xudc_done(ep, ep->data, 0);
>> +             break;
>> +
>> +     case DATA_PHASE:
>> +             if (!ch9_cmdbuf.contwritecount) {
>> +                     /*
>> +                      * We're done with data transfer, next
>> +                      * will be zero length OUT with data toggle of
>> +                      * 1. Setup data_toggle.
>> +                      */
>> +                     epcfgreg = udc->read_fn(udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +                     epcfgreg |= XUSB_EP_CFG_DATA_TOGGLE_MASK;
>> +                     udc->write_fn(epcfgreg, udc->base_address +
>> +                             udc->ep[XUSB_EP_NUMBER_ZERO].endpointoffset);
>> +                     count = 0;
>> +
>> +                     ch9_cmdbuf.setupseqtx = STATUS_PHASE;
>> +
>> +             } else {
>> +                     length = count = min_t(u32, ch9_cmdbuf.contwritecount,
>> +                                             EP0_MAX_PACKET);
>> +                     /* Copy the data to be transmitted into the DPRAM. */
>> +                     ep0rambase = (u8 __force *) (udc->base_address +
>> +                             (udc->ep[XUSB_EP_NUMBER_ZERO].rambase << 2));
>> +                     while (length--)
>> +                             *ep0rambase++ = *ch9_cmdbuf.contwriteptr++;
>> +
>> +                     ch9_cmdbuf.contwritecount -= count;
>> +             }
>> +             udc->write_fn(count, udc->base_address +
>> +                             XUSB_EP_BUF0COUNT_OFFSET);
>> +             udc->write_fn(1, udc->base_address + XUSB_BUFFREADY_OFFSET);
>> +             break;
>> +
>> +     default:
>> +             break;
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_ctrl_ep_handler - Endpoint 0 interrupt handler.
>> + * @callbackref: pointer to the call back reference passed by the
>> + *                   main interrupt handler.
>> + * @intrstatus:      It's the mask value for the interrupt sources on endpoint 0.
>> + *
>> + * Processes the commands received during enumeration phase.
>> + */
>> +static void xudc_ctrl_ep_handler(void *callbackref, u32 intrstatus)
>> +{
>> +     struct xusb_udc *udc;
>> +     struct usb_ctrlrequest ctrl;
>> +     int status;
>> +     int epnum;
>> +     u32 intrreg;
>> +
>> +     udc = (struct xusb_udc *) callbackref;
>> +     /* Process the end point zero buffer interrupt.*/
>> +     if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK) {
>> +             if (intrstatus & XUSB_STATUS_SETUP_PACKET_MASK) {
>> +                     /*
>> +                      * Enable the Disconnect, suspend and reset
>> +                      * interrupts.
>> +                      */
>> +                     intrreg = udc->read_fn(udc->base_address +
>> +                                     XUSB_IER_OFFSET);
>> +                     intrreg |= XUSB_STATUS_DISCONNECT_MASK |
>> +                                      XUSB_STATUS_SUSPEND_MASK |
>> +                                      XUSB_STATUS_RESET_MASK;
>> +                     udc->write_fn(intrreg,
>> +                             udc->base_address + XUSB_IER_OFFSET);
>> +                     status = xudc_handle_setup(udc, &ctrl);
>> +                     if (status || ((ch9_cmdbuf.setup.bRequestType &
>> +                                     USB_TYPE_MASK) == USB_TYPE_CLASS)) {
>> +                             /*
>> +                              * Request is to be handled by the gadget
>> +                              * driver.
>> +                              */
>> +                             spin_unlock(&udc->lock);
>> +                             udc->driver->setup(&udc->gadget, &ctrl);
>> +                             spin_lock(&udc->lock);
>> +                     } else {
>> +                             if (ctrl.bRequest == USB_REQ_CLEAR_FEATURE) {
>> +                                     epnum = ctrl.wIndex & 0xf;
>> +                                     udc->ep[epnum].stopped = 0;
>> +                             }
>> +                             if (ctrl.bRequest == USB_REQ_SET_FEATURE) {
>> +                                     epnum = ctrl.wIndex & 0xf;
>> +                                     udc->ep[epnum].stopped = 1;
>> +                             }
>> +                     }
>> +             } else {
>> +                     if (intrstatus & XUSB_STATUS_FIFO_BUFF_RDY_MASK)
>> +                             xudc_ep0_out(udc);
>> +                     else if (intrstatus &
>> +                             XUSB_STATUS_FIFO_BUFF_FREE_MASK)
>> +                             xudc_ep0_in(udc);
>> +             }
>> +     }
>> +}
>> +
>> +/**
>> + * xudc_nonctrl_ep_handler - Non control endpoint interrupt handler.
>> + * @callbackref: pointer to the call back reference passed by the
>> + *                   main interrupt handler.
>> + * @epnum: End point number for which the interrupt is to be processed
>> + * @intrstatus:      It's the mask value for the interrupt sources on endpoint 0.
>> + */
>> +static void xudc_nonctrl_ep_handler(void *callbackref, u8 epnum,
>> +                                     u32 intrstatus)
>> +{
>> +
>> +     struct xusb_request *req;
>> +     struct xusb_udc *udc;
>> +     struct xusb_ep *ep;
>> +
>> +     udc = (struct xusb_udc *) callbackref;
>> +     ep = &udc->ep[epnum];
>> +     /* Process the End point interrupts.*/
>> +     if (intrstatus & (XUSB_STATUS_EP0_BUFF1_COMP_MASK << epnum))
>> +             ep->buffer0ready = 0;
>> +     if (intrstatus & (XUSB_STATUS_EP0_BUFF2_COMP_MASK << epnum))
>> +             ep->buffer1ready = 0;
>> +
>> +     if (list_empty(&ep->queue))
>> +             req = NULL;
>> +     else
>> +             req = list_entry(ep->queue.next, struct xusb_request, queue);
>> +     if (!req)
>> +             return;
>> +     if (ep->is_in)
>> +             xudc_write_fifo(ep, req);
>> +     else
>> +             xudc_read_fifo(ep, req);
>> +}
>> +
>> +/**
>> + * xudc_irq - The main interrupt handler.
>> + * @irq: The interrupt number.
>> + * @_udc: pointer to the usb device controller structure.
>> + *
>> + * Return: IRQ_HANDLED after the interrupt is handled.
>> + */
>> +static irqreturn_t xudc_irq(int irq, void *_udc)
>> +{
>> +     struct xusb_udc *udc = _udc;
>> +     u32 intrstatus;
>> +     u8 index;
>> +     u32 bufintr;
>> +
>> +     spin_lock(&(udc->lock));
>> +
>> +     /* Read the Interrupt Status Register.*/
>> +     intrstatus = udc->read_fn(udc->base_address + XUSB_STATUS_OFFSET);
>> +     /* Call the handler for the event interrupt.*/
>> +     if (intrstatus & XUSB_STATUS_INTR_EVENT_MASK) {
>> +             /*
>> +              * Check if there is any action to be done for :
>> +              * - USB Reset received {XUSB_STATUS_RESET_MASK}
>> +              * - USB Suspend received {XUSB_STATUS_SUSPEND_MASK}
>
> what about resume ? No resume ?
>
>> +              * - USB Disconnect received {XUSB_STATUS_DISCONNECT_MASK}
>> +              */
>> +             xudc_startup_handler(udc, intrstatus);
>> +     }
>> +
>> +     /* Check the buffer completion interrupts */
>> +     if (intrstatus & XUSB_STATUS_INTR_BUFF_COMP_ALL_MASK) {
>> +             if (intrstatus & XUSB_STATUS_EP0_BUFF1_COMP_MASK)
>> +                     xudc_ctrl_ep_handler(udc, intrstatus);
>> +
>> +             for (index = 1; index < 8; index++) {
>> +                     bufintr = ((intrstatus &
>> +                                     (XUSB_STATUS_EP1_BUFF1_COMP_MASK <<
>> +                                                     (index - 1))) ||
>> +                                (intrstatus &
>> +                                     (XUSB_STATUS_EP1_BUFF2_COMP_MASK <<
>> +                                                     (index - 1))));
>> +
>> +                     if (bufintr)
>> +                             xudc_nonctrl_ep_handler(udc, index,
>> +                                             intrstatus);
>> +             }
>> +     }
>> +     spin_unlock(&(udc->lock));
>> +
>> +     return IRQ_HANDLED;
>> +}
>> +
>> +
>> +
>> +/**
>> + * xudc_release - Releases device structure
>> + * @dev: pointer to device structure
>> + */
>> +static void xudc_release(struct device *dev)
>> +{
>> +}
>
> you don't need to define this, udc-core will give you a release method.
>
>> +/**
>> + * xudc_probe - The device probe function for driver initialization.
>> + * @pdev: pointer to the platform device structure.
>> + *
>> + * Return: 0 for success and error value on failure
>> + */
>> +static int xudc_probe(struct platform_device *pdev)
>> +{
>> +     struct device_node *np = pdev->dev.of_node;
>> +     struct resource *res;
>> +     struct xusb_udc *udc;
>> +     int irq;
>> +     int ret;
>> +
>> +     dev_dbg(&pdev->dev, "%s(%p)\n", __func__, pdev);
>> +
>> +     udc = devm_kzalloc(&pdev->dev, sizeof(*udc), GFP_KERNEL);
>> +     if (!udc)
>> +             return -ENOMEM;
>> +
>> +     /* Map the registers */
>> +     res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>> +     udc->base_address = devm_ioremap_nocache(&pdev->dev, res->start,
>> +                                              resource_size(res));
>
> use devm_ioremap_resource() instead.
>
>> +     if (!udc->base_address)
>> +             return -ENOMEM;
>> +
>> +     irq = platform_get_irq(pdev, 0);
>> +     if (irq < 0) {
>> +             dev_err(&pdev->dev, "unable to get irq\n");
>> +             return irq;
>> +     }
>> +     ret = request_irq(irq, xudc_irq, 0, dev_name(&pdev->dev), udc);
>
> devm_request_irq()
>
>> +     if (ret < 0) {
>> +             dev_dbg(&pdev->dev, "unable to request irq %d", irq);
>> +             goto fail0;
>> +     }
>> +
>> +     udc->dma_enabled = of_property_read_bool(np, "xlnx,include-dma");
>> +
>> +     /* Setup gadget structure */
>> +     udc->gadget.ops = &xusb_udc_ops;
>> +     udc->gadget.max_speed = USB_SPEED_HIGH;
>> +     udc->gadget.speed = USB_SPEED_HIGH;
>> +     udc->gadget.ep0 = &udc->ep[XUSB_EP_NUMBER_ZERO].ep_usb;
>> +     udc->gadget.name = driver_name;
>> +
>> +     dev_set_name(&udc->gadget.dev, "xilinx_udc");
>> +     udc->gadget.dev.release = xudc_release;
>> +     udc->gadget.dev.parent = &pdev->dev;
>
> don't touch the gadget device directly, udc-core handles all of that for
> you.
>
>> +
>> +     spin_lock_init(&udc->lock);
>> +
>> +     /* Check for IP endianness */
>> +     udc->write_fn = xudc_write32_be;
>> +     udc->read_fn = xudc_read32_be;
>> +     udc->write_fn(TEST_J, udc->base_address + XUSB_TESTMODE_OFFSET);
>> +     if ((udc->read_fn(udc->base_address + XUSB_TESTMODE_OFFSET))
>> +                     != TEST_J) {
>> +             udc->write_fn = xudc_write32;
>> +             udc->read_fn = xudc_read32;
>> +     }
>> +     udc->write_fn(0, udc->base_address + XUSB_TESTMODE_OFFSET);
>> +
>> +     xudc_reinit(udc);
>> +
>> +     /* Set device address to 0.*/
>> +     udc->write_fn(0, udc->base_address + XUSB_ADDRESS_OFFSET);
>> +
>> +     ret = usb_add_gadget_udc(&pdev->dev, &udc->gadget);
>> +     if (ret)
>> +             goto fail1;
>> +
>> +     /* Enable the interrupts.*/
>> +     udc->write_fn(XUSB_STATUS_GLOBAL_INTR_MASK | XUSB_STATUS_RESET_MASK |
>> +                   XUSB_STATUS_DISCONNECT_MASK | XUSB_STATUS_SUSPEND_MASK |
>> +                   XUSB_STATUS_FIFO_BUFF_RDY_MASK |
>> +                   XUSB_STATUS_FIFO_BUFF_FREE_MASK |
>> +                   XUSB_STATUS_EP0_BUFF1_COMP_MASK,
>> +                   udc->base_address + XUSB_IER_OFFSET);
>> +
>> +     platform_set_drvdata(pdev, udc);
>> +
>> +     dev_info(&pdev->dev, "%s #%d at 0x%08X mapped to 0x%08X\n",
>> +              driver_name, 0, (u32)res->start,
>> +              (u32 __force)udc->base_address);
>
> make this a dev_vdbg().
>
>> +
>> +     return 0;
>> +
>> +fail1:
>> +     free_irq(irq, udc);
>> +fail0:
>> +     dev_dbg(&pdev->dev, "probe failed, %d\n", ret);
>
> this should be dev_err().
>
>> +     return ret;
>> +}
>> +
>> +/**
>> + * xudc_remove - Releases the resources allocated during the initialization.
>> + * @pdev: pointer to the platform device structure.
>> + *
>> + * Return: 0 for success and error value on failure
>> + */
>> +static int xudc_remove(struct platform_device *pdev)
>> +{
>> +     struct xusb_udc *udc = platform_get_drvdata(pdev);
>> +
>> +     dev_dbg(&pdev->dev, "remove\n");
>> +     usb_del_gadget_udc(&udc->gadget);
>> +     if (udc->driver)
>> +             return -EBUSY;
>> +
>> +     device_unregister(&udc->gadget.dev);
>
> remove this line.
>
> Also, you're leaking your IRQ handler, if you switch to
> devm_request_irq() then you don't need to free it, though.
>
> From the looks of it, I doubt this was actually tested, you need a lot
> of work on this driver.
>
> cheers
>
> --
> balbi

Thanks,
Sundeep
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-03-26 10:07     ` sundeep subbaraya
@ 2014-04-15 17:18       ` Felipe Balbi
  -1 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-04-15 17:18 UTC (permalink / raw)
  To: sundeep subbaraya
  Cc: balbi, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman, linux-usb,
	linux-kernel, Michal Simek, Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 1978 bytes --]

Hi,

On Wed, Mar 26, 2014 at 03:37:52PM +0530, sundeep subbaraya wrote:
> >> +     INIT_LIST_HEAD(&req->queue);
> >
> > remove this INIT_LIST_HEAD();
> >
> > also, before returning, I suppose you probably want to link the request
> > to the endpoint somehow. Usually people save the endpoint pointer inside
> > the private request structure (iow: req->ep = ep;)
> >
> 
> in ep_queue (say,for IN transaction) the driver copies the gadget
> driver buffer to HW endpoint buffer and if whole data
> has been transferred successfully then request is not added to
> endpoint request list. Hence  INIT_LIST_HEAD(&req->queue)
> is required since list_add_tail is not done every time in ep_queue. Is
> it ok to let this be here?o

my bad, you _do_ need this INIT_LIST_HEAD() here. When I first read, I
thought you were initializing struct usb_request list_head, and that is
not necessary ;-)

> >> +     if (req != NULL)
> >> +             list_add_tail(&req->queue, &ep->queue);
> Here. INIT_LIST_HEAD(&req->queue) is required in alloc_req since
> list_add_tail is not executed every time.
> 
> Could you please clarify my questions regarding requests queuing.
> 1. If Device need to send 5120 bytes to host and
> ep->desc->wMaxPacketSize is 512 then single request with length 5120
> is issued or 10 requests are issued?

single request.

> 2. Does device need to know OUT transactions before hand so that OUT
> requests are queued for endpoint before packets are received
> from host?

well, no. Gadget driver shouldn't depend on that. That's UDC driver's
responsability to manage that. I mean, if host sends OUT token and
there's nothing in the out queue, then UDC need to start transfer as
soon as gadget driver queues the request. If, on the other hand, gadget
driver queues packet before host has sent OUT token then you have two
choices:

1) start the transfer - most HW will wait for OUT token
2) wait for out token

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-04-15 17:18       ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-04-15 17:18 UTC (permalink / raw)
  To: sundeep subbaraya
  Cc: balbi, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman, linux-usb,
	linux-kernel, Michal Simek, Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 1978 bytes --]

Hi,

On Wed, Mar 26, 2014 at 03:37:52PM +0530, sundeep subbaraya wrote:
> >> +     INIT_LIST_HEAD(&req->queue);
> >
> > remove this INIT_LIST_HEAD();
> >
> > also, before returning, I suppose you probably want to link the request
> > to the endpoint somehow. Usually people save the endpoint pointer inside
> > the private request structure (iow: req->ep = ep;)
> >
> 
> in ep_queue (say,for IN transaction) the driver copies the gadget
> driver buffer to HW endpoint buffer and if whole data
> has been transferred successfully then request is not added to
> endpoint request list. Hence  INIT_LIST_HEAD(&req->queue)
> is required since list_add_tail is not done every time in ep_queue. Is
> it ok to let this be here?o

my bad, you _do_ need this INIT_LIST_HEAD() here. When I first read, I
thought you were initializing struct usb_request list_head, and that is
not necessary ;-)

> >> +     if (req != NULL)
> >> +             list_add_tail(&req->queue, &ep->queue);
> Here. INIT_LIST_HEAD(&req->queue) is required in alloc_req since
> list_add_tail is not executed every time.
> 
> Could you please clarify my questions regarding requests queuing.
> 1. If Device need to send 5120 bytes to host and
> ep->desc->wMaxPacketSize is 512 then single request with length 5120
> is issued or 10 requests are issued?

single request.

> 2. Does device need to know OUT transactions before hand so that OUT
> requests are queued for endpoint before packets are received
> from host?

well, no. Gadget driver shouldn't depend on that. That's UDC driver's
responsability to manage that. I mean, if host sends OUT token and
there's nothing in the out queue, then UDC need to start transfer as
soon as gadget driver queues the request. If, on the other hand, gadget
driver queues packet before host has sent OUT token then you have two
choices:

1) start the transfer - most HW will wait for OUT token
2) wait for out token

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
  2014-04-15 17:18       ` Felipe Balbi
  (?)
@ 2014-04-15 17:55       ` Alan Stern
  2014-04-16  4:39           ` Felipe Balbi
  -1 siblings, 1 reply; 75+ messages in thread
From: Alan Stern @ 2014-04-15 17:55 UTC (permalink / raw)
  To: Felipe Balbi
  Cc: sundeep subbaraya, Subbaraya Sundeep Bhatta, Greg Kroah-Hartman,
	linux-usb, linux-kernel, Michal Simek, Subbaraya Sundeep Bhatta,
	devicetree

On Tue, 15 Apr 2014, Felipe Balbi wrote:

> > 2. Does device need to know OUT transactions before hand so that OUT
> > requests are queued for endpoint before packets are received
> > from host?
> 
> well, no. Gadget driver shouldn't depend on that. That's UDC driver's
> responsability to manage that. I mean, if host sends OUT token and
> there's nothing in the out queue, then UDC need to start transfer as
> soon as gadget driver queues the request. If, on the other hand, gadget
> driver queues packet before host has sent OUT token then you have two
> choices:
> 
> 1) start the transfer - most HW will wait for OUT token
> 2) wait for out token

I'm not familiar with the variations in all the different UDC hardware.  
Nevertheless, I wouldn't describe the situation in those terms.

If an OUT transaction occurs and the gadget driver hasn't queued a
request, the UDC hardware could store the incoming data in an internal
buffer or it could NAK the transaction.  There aren't any other
choices.  If there isn't enough space available in an internal buffer,
the only possible action is NAK.

Regardless, gadget drivers do not need to queue requests for OUT
endpoints before the host starts sending data.  When the request does
get queued, the UDC driver will make sure that the transfer takes
place.

Alan Stern


^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-04-16  4:39           ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-04-16  4:39 UTC (permalink / raw)
  To: Alan Stern
  Cc: Felipe Balbi, sundeep subbaraya, Subbaraya Sundeep Bhatta,
	Greg Kroah-Hartman, linux-usb, linux-kernel, Michal Simek,
	Subbaraya Sundeep Bhatta, devicetree

[-- Attachment #1: Type: text/plain, Size: 2047 bytes --]

Hi,

On Tue, Apr 15, 2014 at 01:55:38PM -0400, Alan Stern wrote:
> On Tue, 15 Apr 2014, Felipe Balbi wrote:
> 
> > > 2. Does device need to know OUT transactions before hand so that OUT
> > > requests are queued for endpoint before packets are received
> > > from host?
> > 
> > well, no. Gadget driver shouldn't depend on that. That's UDC driver's
> > responsability to manage that. I mean, if host sends OUT token and
> > there's nothing in the out queue, then UDC need to start transfer as
> > soon as gadget driver queues the request. If, on the other hand, gadget
> > driver queues packet before host has sent OUT token then you have two
> > choices:
> > 
> > 1) start the transfer - most HW will wait for OUT token
> > 2) wait for out token
> 
> I'm not familiar with the variations in all the different UDC hardware.  
> Nevertheless, I wouldn't describe the situation in those terms.

OK, I've oversimplified... what I meant was that even if you start a
transfer at the UDC level, nothing will happen on the bus until HW sees
an OUT token. The buffer pointed to by req->buf won't get any writes,
DMA won't do anything.

On (2) I meant that some HW (e.g. dwc3) will assert the IRQ line once
they see a token for which they have to transfer descriptors in the
internal controller's cache.

> If an OUT transaction occurs and the gadget driver hasn't queued a
> request, the UDC hardware could store the incoming data in an internal
> buffer or it could NAK the transaction.  There aren't any other
> choices.  If there isn't enough space available in an internal buffer,
> the only possible action is NAK.

in HS there's also NYET

> Regardless, gadget drivers do not need to queue requests for OUT
> endpoints before the host starts sending data.  When the request does

they're not required, but they can. It's UDC driver's responsability to
start consuming the queue at the proper time.

> get queued, the UDC driver will make sure that the transfer takes
> place.

correct.

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support
@ 2014-04-16  4:39           ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2014-04-16  4:39 UTC (permalink / raw)
  To: Alan Stern
  Cc: Felipe Balbi, sundeep subbaraya, Subbaraya Sundeep Bhatta,
	Greg Kroah-Hartman, linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Michal Simek,
	Subbaraya Sundeep Bhatta, devicetree-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 2047 bytes --]

Hi,

On Tue, Apr 15, 2014 at 01:55:38PM -0400, Alan Stern wrote:
> On Tue, 15 Apr 2014, Felipe Balbi wrote:
> 
> > > 2. Does device need to know OUT transactions before hand so that OUT
> > > requests are queued for endpoint before packets are received
> > > from host?
> > 
> > well, no. Gadget driver shouldn't depend on that. That's UDC driver's
> > responsability to manage that. I mean, if host sends OUT token and
> > there's nothing in the out queue, then UDC need to start transfer as
> > soon as gadget driver queues the request. If, on the other hand, gadget
> > driver queues packet before host has sent OUT token then you have two
> > choices:
> > 
> > 1) start the transfer - most HW will wait for OUT token
> > 2) wait for out token
> 
> I'm not familiar with the variations in all the different UDC hardware.  
> Nevertheless, I wouldn't describe the situation in those terms.

OK, I've oversimplified... what I meant was that even if you start a
transfer at the UDC level, nothing will happen on the bus until HW sees
an OUT token. The buffer pointed to by req->buf won't get any writes,
DMA won't do anything.

On (2) I meant that some HW (e.g. dwc3) will assert the IRQ line once
they see a token for which they have to transfer descriptors in the
internal controller's cache.

> If an OUT transaction occurs and the gadget driver hasn't queued a
> request, the UDC hardware could store the incoming data in an internal
> buffer or it could NAK the transaction.  There aren't any other
> choices.  If there isn't enough space available in an internal buffer,
> the only possible action is NAK.

in HS there's also NYET

> Regardless, gadget drivers do not need to queue requests for OUT
> endpoints before the host starts sending data.  When the request does

they're not required, but they can. It's UDC driver's responsability to
start consuming the queue at the proper time.

> get queued, the UDC driver will make sure that the transfer takes
> place.

correct.

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-02 15:43               ` Stefan Roese
  0 siblings, 0 replies; 75+ messages in thread
From: Stefan Roese @ 2015-02-02 15:43 UTC (permalink / raw)
  To: monstr, Greg Kroah-Hartman; +Cc: balbi, linux-kernel, devicetree, Wolfgang Denk

On 21.02.2014 17:18, Michal Simek wrote:
> On 02/21/2014 05:12 PM, Felipe Balbi wrote:
>> On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
>>> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
>>>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
>>>>> BTW: u-boot started to use SPDX-License-Identifier
>>>>> which will be nice to start to use.
>>>>
>>>> I agree, feel free to start sending patches to use this type of
>>>> identifier for drivers.
>>>
>>> But we probably need to add that Licenses to one location.
>>> Documentation/Licenses?
>>
>> Just add to the drivers themselves, just like u-boot is doing. A simple:
>>
>> 	$ git grep -e SPDX-License-Identifier
>>
>> will tell you filename and license. Or did I misunderstand your question ?
>
> But for doing this it is probably necessary to have location where
> you will place that licenses and you will explain what it is how
> it is done by Wolfgang in this commit.
>
> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
>
> Then yes, adding one line is enough.
I would like to revive this thread regarding SPDX license identifiers in 
the Linux kernel. And check how to best start / proceed with the 
integration now.

Greg, if you are open to patches adding this one-line SPDX license tag 
to the source code, how should I begin with such a task in your opinion? 
Should I add those tags for just one driver directory (e.g. 
drivers/base/*) first? And send those patches to the list(s) for review. 
Or do you have other suggestions on how to start with this task?

Any comments and / or suggestions are really appreciated. Thanks!

Thanks,
Stefan

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-02 15:43               ` Stefan Roese
  0 siblings, 0 replies; 75+ messages in thread
From: Stefan Roese @ 2015-02-02 15:43 UTC (permalink / raw)
  To: monstr-pSz03upnqPeHXe+LvDLADg, Greg Kroah-Hartman
  Cc: balbi-l0cyMroinI0, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

On 21.02.2014 17:18, Michal Simek wrote:
> On 02/21/2014 05:12 PM, Felipe Balbi wrote:
>> On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
>>> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
>>>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
>>>>> BTW: u-boot started to use SPDX-License-Identifier
>>>>> which will be nice to start to use.
>>>>
>>>> I agree, feel free to start sending patches to use this type of
>>>> identifier for drivers.
>>>
>>> But we probably need to add that Licenses to one location.
>>> Documentation/Licenses?
>>
>> Just add to the drivers themselves, just like u-boot is doing. A simple:
>>
>> 	$ git grep -e SPDX-License-Identifier
>>
>> will tell you filename and license. Or did I misunderstand your question ?
>
> But for doing this it is probably necessary to have location where
> you will place that licenses and you will explain what it is how
> it is done by Wolfgang in this commit.
>
> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
>
> Then yes, adding one line is enough.
I would like to revive this thread regarding SPDX license identifiers in 
the Linux kernel. And check how to best start / proceed with the 
integration now.

Greg, if you are open to patches adding this one-line SPDX license tag 
to the source code, how should I begin with such a task in your opinion? 
Should I add those tags for just one driver directory (e.g. 
drivers/base/*) first? And send those patches to the list(s) for review. 
Or do you have other suggestions on how to start with this task?

Any comments and / or suggestions are really appreciated. Thanks!

Thanks,
Stefan
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-02 16:06                 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 75+ messages in thread
From: Greg Kroah-Hartman @ 2015-02-02 16:06 UTC (permalink / raw)
  To: Stefan Roese; +Cc: monstr, balbi, linux-kernel, devicetree, Wolfgang Denk

On Mon, Feb 02, 2015 at 04:43:14PM +0100, Stefan Roese wrote:
> On 21.02.2014 17:18, Michal Simek wrote:
> >On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> >>On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> >>>On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> >>>>On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >>>>>BTW: u-boot started to use SPDX-License-Identifier
> >>>>>which will be nice to start to use.
> >>>>
> >>>>I agree, feel free to start sending patches to use this type of
> >>>>identifier for drivers.
> >>>
> >>>But we probably need to add that Licenses to one location.
> >>>Documentation/Licenses?
> >>
> >>Just add to the drivers themselves, just like u-boot is doing. A simple:
> >>
> >>	$ git grep -e SPDX-License-Identifier
> >>
> >>will tell you filename and license. Or did I misunderstand your question ?
> >
> >But for doing this it is probably necessary to have location where
> >you will place that licenses and you will explain what it is how
> >it is done by Wolfgang in this commit.
> >
> >http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
> >
> >Then yes, adding one line is enough.
> I would like to revive this thread regarding SPDX license identifiers in the
> Linux kernel. And check how to best start / proceed with the integration
> now.

Why do you want to do this?

> Greg, if you are open to patches adding this one-line SPDX license tag to
> the source code, how should I begin with such a task in your opinion? Should
> I add those tags for just one driver directory (e.g. drivers/base/*) first?
> And send those patches to the list(s) for review. Or do you have other
> suggestions on how to start with this task?

Is one tag per directory sufficient?  Is one tag per file sufficient?
How about one tag per package?  If package, then isn't a single tag for
the whole kernel source tree sufficient, as we all know the overall
license for the kernel source tree.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-02 16:06                 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 75+ messages in thread
From: Greg Kroah-Hartman @ 2015-02-02 16:06 UTC (permalink / raw)
  To: Stefan Roese
  Cc: monstr-pSz03upnqPeHXe+LvDLADg, balbi-l0cyMroinI0,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

On Mon, Feb 02, 2015 at 04:43:14PM +0100, Stefan Roese wrote:
> On 21.02.2014 17:18, Michal Simek wrote:
> >On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> >>On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> >>>On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> >>>>On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >>>>>BTW: u-boot started to use SPDX-License-Identifier
> >>>>>which will be nice to start to use.
> >>>>
> >>>>I agree, feel free to start sending patches to use this type of
> >>>>identifier for drivers.
> >>>
> >>>But we probably need to add that Licenses to one location.
> >>>Documentation/Licenses?
> >>
> >>Just add to the drivers themselves, just like u-boot is doing. A simple:
> >>
> >>	$ git grep -e SPDX-License-Identifier
> >>
> >>will tell you filename and license. Or did I misunderstand your question ?
> >
> >But for doing this it is probably necessary to have location where
> >you will place that licenses and you will explain what it is how
> >it is done by Wolfgang in this commit.
> >
> >http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
> >
> >Then yes, adding one line is enough.
> I would like to revive this thread regarding SPDX license identifiers in the
> Linux kernel. And check how to best start / proceed with the integration
> now.

Why do you want to do this?

> Greg, if you are open to patches adding this one-line SPDX license tag to
> the source code, how should I begin with such a task in your opinion? Should
> I add those tags for just one driver directory (e.g. drivers/base/*) first?
> And send those patches to the list(s) for review. Or do you have other
> suggestions on how to start with this task?

Is one tag per directory sufficient?  Is one tag per file sufficient?
How about one tag per package?  If package, then isn't a single tag for
the whole kernel source tree sufficient, as we all know the overall
license for the kernel source tree.

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-04 16:41                   ` Stefan Roese
  0 siblings, 0 replies; 75+ messages in thread
From: Stefan Roese @ 2015-02-04 16:41 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: monstr, balbi, linux-kernel, devicetree, Wolfgang Denk

On 02.02.2015 17:06, Greg Kroah-Hartman wrote:
> On Mon, Feb 02, 2015 at 04:43:14PM +0100, Stefan Roese wrote:
>> On 21.02.2014 17:18, Michal Simek wrote:
>>> On 02/21/2014 05:12 PM, Felipe Balbi wrote:
>>>> On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
>>>>> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
>>>>>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
>>>>>>> BTW: u-boot started to use SPDX-License-Identifier
>>>>>>> which will be nice to start to use.
>>>>>>
>>>>>> I agree, feel free to start sending patches to use this type of
>>>>>> identifier for drivers.
>>>>>
>>>>> But we probably need to add that Licenses to one location.
>>>>> Documentation/Licenses?
>>>>
>>>> Just add to the drivers themselves, just like u-boot is doing. A simple:
>>>>
>>>> 	$ git grep -e SPDX-License-Identifier
>>>>
>>>> will tell you filename and license. Or did I misunderstand your question ?
>>>
>>> But for doing this it is probably necessary to have location where
>>> you will place that licenses and you will explain what it is how
>>> it is done by Wolfgang in this commit.
>>>
>>> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
>>>
>>> Then yes, adding one line is enough.
>> I would like to revive this thread regarding SPDX license identifiers in the
>> Linux kernel. And check how to best start / proceed with the integration
>> now.
>
> Why do you want to do this?

The main idea behind these SPDX license tags in the source files is, 
that it makes license clearing for projects easier. As those tags 
simplify the automated tools that scan all source files of projects, in 
this case the Linux kernel. One of the problems with the current 
licenses in the files is, that even the same licenses are referred to by 
a number of slightly varying text blocks (full, abbreviated, different 
indentation, line wrapping and/or white space, with obsolete address 
information, ...) which makes automatic processing a nightmare.

Please note that we don't want to "disturb" any kernel developers in 
their work with this SPDX license ID addition. The licenses will not be 
changed in any way. We only want to make life easier for users that need 
to run such automated license clearing tools on the source code that 
they embed / ship / deploy. And this one additional line in the header 
is here definitely helpful.

>> Greg, if you are open to patches adding this one-line SPDX license tag to
>> the source code, how should I begin with such a task in your opinion? Should
>> I add those tags for just one driver directory (e.g. drivers/base/*) first?
>> And send those patches to the list(s) for review. Or do you have other
>> suggestions on how to start with this task?
>
> Is one tag per directory sufficient?  Is one tag per file sufficient?
> How about one tag per package?  If package, then isn't a single tag for
> the whole kernel source tree sufficient, as we all know the overall
> license for the kernel source tree.

We really need one tag per file. Of course the resulting license for the 
Linux kernel is clear. But there are many things to take into account 
here. Some of them are (I'm not telling you something new, I know - just 
a summary of arguments):

- The Linux source code is not homogeneous and neither perfect nor
   without errors. Who ensures that all parts of the kernel really
   are GPLv2 compatible?

- Some parts of the Linux source code are also used by other projects.
   Or are derived from other projects. Because of this they are
   explicitly licensed under different licenses than the GPLv2
   (compatible to it though of course). Or are dual-licensed. So that
   they can be used by these other projects.

For example "Documentation/SubmittingDrivers" mentions:

   	The code must be released to us under the
	GNU General Public License. We don't insist on any kind
	of exclusive GPL licensing, and if you wish the driver
	to be useful to other communities such as BSD you may well
	wish to release under multiple licenses.
	See accepted licenses at include/linux/module.h

Because of this it is really important to know the exact license(s) for 
each and every file. And they can vary very much. Here some examples:

GPL v3 or later:

	Documentation/filesystems/cifs/winucase_convert.pl
	scripts/dtc/dtc-parser.tab.c_shipped
	scripts/dtc/dtc-parser.tab.h_shipped
	scripts/kconfig/zconf.tab.c_shipped
	scripts/genksyms/parse.tab.h_shipped
	scripts/genksyms/parse.tab.c_shipped
	drivers/staging/lustre/lustre/include/lustre_dlm_flags.h

So there seems to be problem with this lustre code.

Dual BSD/GPL:

	crypto/aes_generic.c
	crypto/cts.c
	crypto/fcrypt.c
	drivers/block/skd_main.c
	drivers/block/xen-blkback/blkback.c
	...

Dual MIT/GPL:

	lib/glob.c

Dual MPL/GPL:

	drivers/ide/ide-cs.c
	drivers/isdn/hisax/elsa_cs.c
	drivers/isdn/hisax/sedlbauer_cs.c
	drivers/mtd/ftl.c
	drivers/net/ethernet/xircom/xirc2ps_cs.c
	...

and so on...

So we have many different licenses and perhaps even incompatible ones in 
the kernel right now. The SPDX license tags can definitely help sorting 
this out. And as mentioned above, will make the life for users running 
automated license clearing tools easier.

Thanks,
Stefan


^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-04 16:41                   ` Stefan Roese
  0 siblings, 0 replies; 75+ messages in thread
From: Stefan Roese @ 2015-02-04 16:41 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: monstr-pSz03upnqPeHXe+LvDLADg, balbi-l0cyMroinI0,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

On 02.02.2015 17:06, Greg Kroah-Hartman wrote:
> On Mon, Feb 02, 2015 at 04:43:14PM +0100, Stefan Roese wrote:
>> On 21.02.2014 17:18, Michal Simek wrote:
>>> On 02/21/2014 05:12 PM, Felipe Balbi wrote:
>>>> On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
>>>>> On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
>>>>>> On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
>>>>>>> BTW: u-boot started to use SPDX-License-Identifier
>>>>>>> which will be nice to start to use.
>>>>>>
>>>>>> I agree, feel free to start sending patches to use this type of
>>>>>> identifier for drivers.
>>>>>
>>>>> But we probably need to add that Licenses to one location.
>>>>> Documentation/Licenses?
>>>>
>>>> Just add to the drivers themselves, just like u-boot is doing. A simple:
>>>>
>>>> 	$ git grep -e SPDX-License-Identifier
>>>>
>>>> will tell you filename and license. Or did I misunderstand your question ?
>>>
>>> But for doing this it is probably necessary to have location where
>>> you will place that licenses and you will explain what it is how
>>> it is done by Wolfgang in this commit.
>>>
>>> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
>>>
>>> Then yes, adding one line is enough.
>> I would like to revive this thread regarding SPDX license identifiers in the
>> Linux kernel. And check how to best start / proceed with the integration
>> now.
>
> Why do you want to do this?

The main idea behind these SPDX license tags in the source files is, 
that it makes license clearing for projects easier. As those tags 
simplify the automated tools that scan all source files of projects, in 
this case the Linux kernel. One of the problems with the current 
licenses in the files is, that even the same licenses are referred to by 
a number of slightly varying text blocks (full, abbreviated, different 
indentation, line wrapping and/or white space, with obsolete address 
information, ...) which makes automatic processing a nightmare.

Please note that we don't want to "disturb" any kernel developers in 
their work with this SPDX license ID addition. The licenses will not be 
changed in any way. We only want to make life easier for users that need 
to run such automated license clearing tools on the source code that 
they embed / ship / deploy. And this one additional line in the header 
is here definitely helpful.

>> Greg, if you are open to patches adding this one-line SPDX license tag to
>> the source code, how should I begin with such a task in your opinion? Should
>> I add those tags for just one driver directory (e.g. drivers/base/*) first?
>> And send those patches to the list(s) for review. Or do you have other
>> suggestions on how to start with this task?
>
> Is one tag per directory sufficient?  Is one tag per file sufficient?
> How about one tag per package?  If package, then isn't a single tag for
> the whole kernel source tree sufficient, as we all know the overall
> license for the kernel source tree.

We really need one tag per file. Of course the resulting license for the 
Linux kernel is clear. But there are many things to take into account 
here. Some of them are (I'm not telling you something new, I know - just 
a summary of arguments):

- The Linux source code is not homogeneous and neither perfect nor
   without errors. Who ensures that all parts of the kernel really
   are GPLv2 compatible?

- Some parts of the Linux source code are also used by other projects.
   Or are derived from other projects. Because of this they are
   explicitly licensed under different licenses than the GPLv2
   (compatible to it though of course). Or are dual-licensed. So that
   they can be used by these other projects.

For example "Documentation/SubmittingDrivers" mentions:

   	The code must be released to us under the
	GNU General Public License. We don't insist on any kind
	of exclusive GPL licensing, and if you wish the driver
	to be useful to other communities such as BSD you may well
	wish to release under multiple licenses.
	See accepted licenses at include/linux/module.h

Because of this it is really important to know the exact license(s) for 
each and every file. And they can vary very much. Here some examples:

GPL v3 or later:

	Documentation/filesystems/cifs/winucase_convert.pl
	scripts/dtc/dtc-parser.tab.c_shipped
	scripts/dtc/dtc-parser.tab.h_shipped
	scripts/kconfig/zconf.tab.c_shipped
	scripts/genksyms/parse.tab.h_shipped
	scripts/genksyms/parse.tab.c_shipped
	drivers/staging/lustre/lustre/include/lustre_dlm_flags.h

So there seems to be problem with this lustre code.

Dual BSD/GPL:

	crypto/aes_generic.c
	crypto/cts.c
	crypto/fcrypt.c
	drivers/block/skd_main.c
	drivers/block/xen-blkback/blkback.c
	...

Dual MIT/GPL:

	lib/glob.c

Dual MPL/GPL:

	drivers/ide/ide-cs.c
	drivers/isdn/hisax/elsa_cs.c
	drivers/isdn/hisax/sedlbauer_cs.c
	drivers/mtd/ftl.c
	drivers/net/ethernet/xircom/xirc2ps_cs.c
	...

and so on...

So we have many different licenses and perhaps even incompatible ones in 
the kernel right now. The SPDX license tags can definitely help sorting 
this out. And as mentioned above, will make the life for users running 
automated license clearing tools easier.

Thanks,
Stefan

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-05  4:21                     ` Theodore Ts'o
  0 siblings, 0 replies; 75+ messages in thread
From: Theodore Ts'o @ 2015-02-05  4:21 UTC (permalink / raw)
  To: Stefan Roese
  Cc: Greg Kroah-Hartman, monstr, balbi, linux-kernel, devicetree,
	Wolfgang Denk

On Wed, Feb 04, 2015 at 05:41:08PM +0100, Stefan Roese wrote:
> Because of this it is really important to know the exact license(s) for each
> and every file. And they can vary very much. Here some examples:
> 
> GPL v3 or later:
> 
> 	scripts/dtc/dtc-parser.tab.c_shipped
> 	scripts/dtc/dtc-parser.tab.h_shipped
> 	scripts/kconfig/zconf.tab.c_shipped
> 	scripts/genksyms/parse.tab.h_shipped
> 	scripts/genksyms/parse.tab.c_shipped

I certainly hope the automated license clearing tools are smart enough
to distinguish random GPLv3 source files with the output of Bison
which has the additional clause:

/* As a special exception, you may create a larger work that contains
   part or all of the Bison parser skeleton and distribute that work
   under terms of your choice, so long as that work isn't itself a
   parser generator using the skeleton or a modified version thereof
   as a parser skeleton.  Alternatively, if you modify or redistribute
   the parser skeleton itself, you may (at your option) remove this
   special exception, which will cause the skeleton and the resulting
   Bison output files to be licensed under the GNU General Public
   License without this special exception.
   
   This special exception was added by the Free Software Foundation in
   version 2.2 of Bison.  */

Otherwise, these automated tools which general much noise that will
lead to panic-stricken legal beagles to seriously annoy the kernel
developers....

						- Ted

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-05  4:21                     ` Theodore Ts'o
  0 siblings, 0 replies; 75+ messages in thread
From: Theodore Ts'o @ 2015-02-05  4:21 UTC (permalink / raw)
  To: Stefan Roese
  Cc: Greg Kroah-Hartman, monstr-pSz03upnqPeHXe+LvDLADg,
	balbi-l0cyMroinI0, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

On Wed, Feb 04, 2015 at 05:41:08PM +0100, Stefan Roese wrote:
> Because of this it is really important to know the exact license(s) for each
> and every file. And they can vary very much. Here some examples:
> 
> GPL v3 or later:
> 
> 	scripts/dtc/dtc-parser.tab.c_shipped
> 	scripts/dtc/dtc-parser.tab.h_shipped
> 	scripts/kconfig/zconf.tab.c_shipped
> 	scripts/genksyms/parse.tab.h_shipped
> 	scripts/genksyms/parse.tab.c_shipped

I certainly hope the automated license clearing tools are smart enough
to distinguish random GPLv3 source files with the output of Bison
which has the additional clause:

/* As a special exception, you may create a larger work that contains
   part or all of the Bison parser skeleton and distribute that work
   under terms of your choice, so long as that work isn't itself a
   parser generator using the skeleton or a modified version thereof
   as a parser skeleton.  Alternatively, if you modify or redistribute
   the parser skeleton itself, you may (at your option) remove this
   special exception, which will cause the skeleton and the resulting
   Bison output files to be licensed under the GNU General Public
   License without this special exception.
   
   This special exception was added by the Free Software Foundation in
   version 2.2 of Bison.  */

Otherwise, these automated tools which general much noise that will
lead to panic-stricken legal beagles to seriously annoy the kernel
developers....

						- Ted
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-05  6:41                     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 75+ messages in thread
From: Greg Kroah-Hartman @ 2015-02-05  6:41 UTC (permalink / raw)
  To: Stefan Roese; +Cc: monstr, balbi, linux-kernel, devicetree, Wolfgang Denk

On Wed, Feb 04, 2015 at 05:41:08PM +0100, Stefan Roese wrote:
> On 02.02.2015 17:06, Greg Kroah-Hartman wrote:
> >On Mon, Feb 02, 2015 at 04:43:14PM +0100, Stefan Roese wrote:
> >>On 21.02.2014 17:18, Michal Simek wrote:
> >>>On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> >>>>On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> >>>>>On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> >>>>>>On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >>>>>>>BTW: u-boot started to use SPDX-License-Identifier
> >>>>>>>which will be nice to start to use.
> >>>>>>
> >>>>>>I agree, feel free to start sending patches to use this type of
> >>>>>>identifier for drivers.
> >>>>>
> >>>>>But we probably need to add that Licenses to one location.
> >>>>>Documentation/Licenses?
> >>>>
> >>>>Just add to the drivers themselves, just like u-boot is doing. A simple:
> >>>>
> >>>>	$ git grep -e SPDX-License-Identifier
> >>>>
> >>>>will tell you filename and license. Or did I misunderstand your question ?
> >>>
> >>>But for doing this it is probably necessary to have location where
> >>>you will place that licenses and you will explain what it is how
> >>>it is done by Wolfgang in this commit.
> >>>
> >>>http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
> >>>
> >>>Then yes, adding one line is enough.
> >>I would like to revive this thread regarding SPDX license identifiers in the
> >>Linux kernel. And check how to best start / proceed with the integration
> >>now.
> >
> >Why do you want to do this?
> 
> The main idea behind these SPDX license tags in the source files is, that it
> makes license clearing for projects easier.

What do you mean by "projects" here?

I know what SPDX is, I've been well aware of it for many years now, I
just don't think it serves any value at all to go around and attempt to
mark each file of a project.

As a specific example, the Linux kernel contains 48444 files at the
moment, and it grows by a many thousands every few months.  It would be
a full-time job of someone just to try to mark all of the _new_ files,
let alone try to go back and mark all 48444 now.

> As those tags simplify the automated tools that scan all source files
> of projects,

I have no goal to do any work to make people's automated tools (several
of which are horrid and don't do any real work), just to have them check
a tag on a file.  How do you know you can "trust" such a tag?  If you
can, can't you just "trust" the overall project license of the project
in the first place?

> in this case the
> Linux kernel. One of the problems with the current licenses in the files is,
> that even the same licenses are referred to by a number of slightly varying
> text blocks (full, abbreviated, different indentation, line wrapping and/or
> white space, with obsolete address information, ...) which makes automatic
> processing a nightmare.

That's not our problem, it's yours if you feel that somehoe automatic
processing of a codebase means anything.  Hint, when I have seen license
problems, it is because people put the _wrong_ license on a file from
where it originally came from.  SPDX doesn't do anything to address this
as it would just blindly trust that the tag was correct, when in reality
you need to look at the code itself.  So it means nothing more than
making someone feel better about nothing in reality.

> Please note that we don't want to "disturb" any kernel developers in their
> work with this SPDX license ID addition. The licenses will not be changed in
> any way. We only want to make life easier for users that need to run such
> automated license clearing tools on the source code that they embed / ship /
> deploy. And this one additional line in the header is here definitely
> helpful.

How are you going to even start marking up 48 thousand files?  And how
are you going to know you got it right?  Are you going to do the work to
track down the maintainers and original authors to verify that the
license of the file really is what you think it is?  If not, then how
can it be deemed "valid"?  If you don't think you need to track these
people down, and can just trust the mark that is currently on all of the
files, well, then you don't really need to do anything at all, right?

> >Is one tag per directory sufficient?  Is one tag per file sufficient?
> >How about one tag per package?  If package, then isn't a single tag for
> >the whole kernel source tree sufficient, as we all know the overall
> >license for the kernel source tree.
> 
> We really need one tag per file.

I fail to see the justification for this, why?  Why not per directory?
Why not per function?  Why not per driver?  Why not per line?  Why not
per project?  Who has dictated this seemingly arbitrary rule?

> Of course the resulting license for the Linux kernel is clear.

Great, then why do any additional work here that is going to take you
man-years to complete and then be forced to constantly keep it up to
date with new submissions?

> But
> there are many things to take into account here.
> Some of them are (I'm not telling you something new, I know - just a summary
> of arguments):
> 
> - The Linux source code is not homogeneous and neither perfect nor
>   without errors. Who ensures that all parts of the kernel really
>   are GPLv2 compatible?

Our DCO process ensures that.

> - Some parts of the Linux source code are also used by other projects.
>   Or are derived from other projects. Because of this they are
>   explicitly licensed under different licenses than the GPLv2
>   (compatible to it though of course). Or are dual-licensed. So that
>   they can be used by these other projects.

That's fine, we encourage that and want to see that happen.  How will
SPDX change that at all?  It's obvious as to the license of the files
that this happens with, why do anything extra?

> For example "Documentation/SubmittingDrivers" mentions:
> 
>   	The code must be released to us under the
> 	GNU General Public License. We don't insist on any kind
> 	of exclusive GPL licensing, and if you wish the driver
> 	to be useful to other communities such as BSD you may well
> 	wish to release under multiple licenses.
> 	See accepted licenses at include/linux/module.h
> 
> Because of this it is really important to know the exact license(s) for each
> and every file. And they can vary very much. Here some examples:
> 
> GPL v3 or later:
> 
> 	Documentation/filesystems/cifs/winucase_convert.pl
> 	scripts/dtc/dtc-parser.tab.c_shipped
> 	scripts/dtc/dtc-parser.tab.h_shipped
> 	scripts/kconfig/zconf.tab.c_shipped
> 	scripts/genksyms/parse.tab.h_shipped
> 	scripts/genksyms/parse.tab.c_shipped
> 	drivers/staging/lustre/lustre/include/lustre_dlm_flags.h
> 
> So there seems to be problem with this lustre code.

Great, tell us about the problem files and we will be glad to resolve
them.  I'm the person responsible for the drivers/staging/ directory,
please start a new thread about that file if you have concern about it
and cc: the maintainers of that code along with the mailing list that
get_maintainers.pl says to and we will work to resolve your questions.

So if you want to go through the tree and point out potential questions,
great, I'd love to see that happen.  But blindly putting tags on files
isn't going to do anything at all, except quiet some stupid automated
tools that we care _nothing_ about.

> Dual BSD/GPL:
> 
> 	crypto/aes_generic.c
> 	crypto/cts.c
> 	crypto/fcrypt.c
> 	drivers/block/skd_main.c
> 	drivers/block/xen-blkback/blkback.c
> 	...
> 
> Dual MIT/GPL:
> 
> 	lib/glob.c
> 
> Dual MPL/GPL:
> 
> 	drivers/ide/ide-cs.c
> 	drivers/isdn/hisax/elsa_cs.c
> 	drivers/isdn/hisax/sedlbauer_cs.c
> 	drivers/mtd/ftl.c
> 	drivers/net/ethernet/xircom/xirc2ps_cs.c
> 	...
> 
> and so on...

I fail to understand the problem with these dual licensed files, care to
expand on that?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-05  6:41                     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 75+ messages in thread
From: Greg Kroah-Hartman @ 2015-02-05  6:41 UTC (permalink / raw)
  To: Stefan Roese
  Cc: monstr-pSz03upnqPeHXe+LvDLADg, balbi-l0cyMroinI0,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

On Wed, Feb 04, 2015 at 05:41:08PM +0100, Stefan Roese wrote:
> On 02.02.2015 17:06, Greg Kroah-Hartman wrote:
> >On Mon, Feb 02, 2015 at 04:43:14PM +0100, Stefan Roese wrote:
> >>On 21.02.2014 17:18, Michal Simek wrote:
> >>>On 02/21/2014 05:12 PM, Felipe Balbi wrote:
> >>>>On Fri, Feb 21, 2014 at 05:04:26PM +0100, Michal Simek wrote:
> >>>>>On 02/21/2014 05:04 PM, Greg Kroah-Hartman wrote:
> >>>>>>On Fri, Feb 21, 2014 at 07:38:16AM +0100, Michal Simek wrote:
> >>>>>>>BTW: u-boot started to use SPDX-License-Identifier
> >>>>>>>which will be nice to start to use.
> >>>>>>
> >>>>>>I agree, feel free to start sending patches to use this type of
> >>>>>>identifier for drivers.
> >>>>>
> >>>>>But we probably need to add that Licenses to one location.
> >>>>>Documentation/Licenses?
> >>>>
> >>>>Just add to the drivers themselves, just like u-boot is doing. A simple:
> >>>>
> >>>>	$ git grep -e SPDX-License-Identifier
> >>>>
> >>>>will tell you filename and license. Or did I misunderstand your question ?
> >>>
> >>>But for doing this it is probably necessary to have location where
> >>>you will place that licenses and you will explain what it is how
> >>>it is done by Wolfgang in this commit.
> >>>
> >>>http://git.denx.de/?p=u-boot.git;a=commitdiff;h=eca3aeb352c964bdb28b8e191d6326370245e03f
> >>>
> >>>Then yes, adding one line is enough.
> >>I would like to revive this thread regarding SPDX license identifiers in the
> >>Linux kernel. And check how to best start / proceed with the integration
> >>now.
> >
> >Why do you want to do this?
> 
> The main idea behind these SPDX license tags in the source files is, that it
> makes license clearing for projects easier.

What do you mean by "projects" here?

I know what SPDX is, I've been well aware of it for many years now, I
just don't think it serves any value at all to go around and attempt to
mark each file of a project.

As a specific example, the Linux kernel contains 48444 files at the
moment, and it grows by a many thousands every few months.  It would be
a full-time job of someone just to try to mark all of the _new_ files,
let alone try to go back and mark all 48444 now.

> As those tags simplify the automated tools that scan all source files
> of projects,

I have no goal to do any work to make people's automated tools (several
of which are horrid and don't do any real work), just to have them check
a tag on a file.  How do you know you can "trust" such a tag?  If you
can, can't you just "trust" the overall project license of the project
in the first place?

> in this case the
> Linux kernel. One of the problems with the current licenses in the files is,
> that even the same licenses are referred to by a number of slightly varying
> text blocks (full, abbreviated, different indentation, line wrapping and/or
> white space, with obsolete address information, ...) which makes automatic
> processing a nightmare.

That's not our problem, it's yours if you feel that somehoe automatic
processing of a codebase means anything.  Hint, when I have seen license
problems, it is because people put the _wrong_ license on a file from
where it originally came from.  SPDX doesn't do anything to address this
as it would just blindly trust that the tag was correct, when in reality
you need to look at the code itself.  So it means nothing more than
making someone feel better about nothing in reality.

> Please note that we don't want to "disturb" any kernel developers in their
> work with this SPDX license ID addition. The licenses will not be changed in
> any way. We only want to make life easier for users that need to run such
> automated license clearing tools on the source code that they embed / ship /
> deploy. And this one additional line in the header is here definitely
> helpful.

How are you going to even start marking up 48 thousand files?  And how
are you going to know you got it right?  Are you going to do the work to
track down the maintainers and original authors to verify that the
license of the file really is what you think it is?  If not, then how
can it be deemed "valid"?  If you don't think you need to track these
people down, and can just trust the mark that is currently on all of the
files, well, then you don't really need to do anything at all, right?

> >Is one tag per directory sufficient?  Is one tag per file sufficient?
> >How about one tag per package?  If package, then isn't a single tag for
> >the whole kernel source tree sufficient, as we all know the overall
> >license for the kernel source tree.
> 
> We really need one tag per file.

I fail to see the justification for this, why?  Why not per directory?
Why not per function?  Why not per driver?  Why not per line?  Why not
per project?  Who has dictated this seemingly arbitrary rule?

> Of course the resulting license for the Linux kernel is clear.

Great, then why do any additional work here that is going to take you
man-years to complete and then be forced to constantly keep it up to
date with new submissions?

> But
> there are many things to take into account here.
> Some of them are (I'm not telling you something new, I know - just a summary
> of arguments):
> 
> - The Linux source code is not homogeneous and neither perfect nor
>   without errors. Who ensures that all parts of the kernel really
>   are GPLv2 compatible?

Our DCO process ensures that.

> - Some parts of the Linux source code are also used by other projects.
>   Or are derived from other projects. Because of this they are
>   explicitly licensed under different licenses than the GPLv2
>   (compatible to it though of course). Or are dual-licensed. So that
>   they can be used by these other projects.

That's fine, we encourage that and want to see that happen.  How will
SPDX change that at all?  It's obvious as to the license of the files
that this happens with, why do anything extra?

> For example "Documentation/SubmittingDrivers" mentions:
> 
>   	The code must be released to us under the
> 	GNU General Public License. We don't insist on any kind
> 	of exclusive GPL licensing, and if you wish the driver
> 	to be useful to other communities such as BSD you may well
> 	wish to release under multiple licenses.
> 	See accepted licenses at include/linux/module.h
> 
> Because of this it is really important to know the exact license(s) for each
> and every file. And they can vary very much. Here some examples:
> 
> GPL v3 or later:
> 
> 	Documentation/filesystems/cifs/winucase_convert.pl
> 	scripts/dtc/dtc-parser.tab.c_shipped
> 	scripts/dtc/dtc-parser.tab.h_shipped
> 	scripts/kconfig/zconf.tab.c_shipped
> 	scripts/genksyms/parse.tab.h_shipped
> 	scripts/genksyms/parse.tab.c_shipped
> 	drivers/staging/lustre/lustre/include/lustre_dlm_flags.h
> 
> So there seems to be problem with this lustre code.

Great, tell us about the problem files and we will be glad to resolve
them.  I'm the person responsible for the drivers/staging/ directory,
please start a new thread about that file if you have concern about it
and cc: the maintainers of that code along with the mailing list that
get_maintainers.pl says to and we will work to resolve your questions.

So if you want to go through the tree and point out potential questions,
great, I'd love to see that happen.  But blindly putting tags on files
isn't going to do anything at all, except quiet some stupid automated
tools that we care _nothing_ about.

> Dual BSD/GPL:
> 
> 	crypto/aes_generic.c
> 	crypto/cts.c
> 	crypto/fcrypt.c
> 	drivers/block/skd_main.c
> 	drivers/block/xen-blkback/blkback.c
> 	...
> 
> Dual MIT/GPL:
> 
> 	lib/glob.c
> 
> Dual MPL/GPL:
> 
> 	drivers/ide/ide-cs.c
> 	drivers/isdn/hisax/elsa_cs.c
> 	drivers/isdn/hisax/sedlbauer_cs.c
> 	drivers/mtd/ftl.c
> 	drivers/net/ethernet/xircom/xirc2ps_cs.c
> 	...
> 
> and so on...

I fail to understand the problem with these dual licensed files, care to
expand on that?

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-05 11:49                     ` One Thousand Gnomes
  0 siblings, 0 replies; 75+ messages in thread
From: One Thousand Gnomes @ 2015-02-05 11:49 UTC (permalink / raw)
  To: Stefan Roese
  Cc: Greg Kroah-Hartman, monstr, balbi, linux-kernel, devicetree,
	Wolfgang Denk

> We really need one tag per file. Of course the resulting license for the 
> Linux kernel is clear. But there are many things to take into account 

You don't even need that. Generate a set of hashes and paths of the kernel
files, put the hashes and the paths and your tags into a database, enjoy.

It doesn't need to be in the kernel, and it probably serves no useful
purpose being there.

Alan

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-05 11:49                     ` One Thousand Gnomes
  0 siblings, 0 replies; 75+ messages in thread
From: One Thousand Gnomes @ 2015-02-05 11:49 UTC (permalink / raw)
  To: Stefan Roese
  Cc: Greg Kroah-Hartman, monstr-pSz03upnqPeHXe+LvDLADg,
	balbi-l0cyMroinI0, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

> We really need one tag per file. Of course the resulting license for the 
> Linux kernel is clear. But there are many things to take into account 

You don't even need that. Generate a set of hashes and paths of the kernel
files, put the hashes and the paths and your tags into a database, enjoy.

It doesn't need to be in the kernel, and it probably serves no useful
purpose being there.

Alan
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2015-02-05  6:41                     ` SPDX-License-Identifier Greg Kroah-Hartman
  (?)
@ 2015-02-25 21:49                     ` Pavel Machek
  2015-02-25 22:00                         ` SPDX-License-Identifier Felipe Balbi
  2015-02-26 10:26                         ` SPDX-License-Identifier One Thousand Gnomes
  -1 siblings, 2 replies; 75+ messages in thread
From: Pavel Machek @ 2015-02-25 21:49 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Stefan Roese, monstr, balbi, linux-kernel, devicetree, Wolfgang Denk

Hi!

> > >Is one tag per directory sufficient?  Is one tag per file sufficient?
> > >How about one tag per package?  If package, then isn't a single tag for
> > >the whole kernel source tree sufficient, as we all know the overall
> > >license for the kernel source tree.
> > 
> > We really need one tag per file.
> 
> I fail to see the justification for this, why?  Why not per directory?
> Why not per function?  Why not per driver?  Why not per line?  Why not
> per project?  Who has dictated this seemingly arbitrary rule?

That's how licenses are done today.

Why would I like to see SPDX?

So that GPL header at begining of each file becomes one line... and so
that if it is BSD/GPL dual licensed is plain to see, and I don't have
to read the notices saying "oh this is gpl.. but if you want to,
delete gpl above and use license below".

> Our DCO process ensures that.
> 
> > - Some parts of the Linux source code are also used by other projects.
> >   Or are derived from other projects. Because of this they are
> >   explicitly licensed under different licenses than the GPLv2
> >   (compatible to it though of course). Or are dual-licensed. So that
> >   they can be used by these other projects.
> 
> That's fine, we encourage that and want to see that happen.  How will
> SPDX change that at all?  It's obvious as to the license of the files
> that this happens with, why do anything extra?

Well, sometimes parsing license agreements at the top of file is
interesting, that's where SPDX would help, and that's why having
single SPDX per linux kernel would not work.
									Pavel

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2015-02-25 21:49                     ` SPDX-License-Identifier Pavel Machek
@ 2015-02-25 22:00                         ` Felipe Balbi
  2015-02-26 10:26                         ` SPDX-License-Identifier One Thousand Gnomes
  1 sibling, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2015-02-25 22:00 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Greg Kroah-Hartman, Stefan Roese, monstr, balbi, linux-kernel,
	devicetree, Wolfgang Denk

[-- Attachment #1: Type: text/plain, Size: 1949 bytes --]

On Wed, Feb 25, 2015 at 10:49:51PM +0100, Pavel Machek wrote:
> Hi!
> 
> > > >Is one tag per directory sufficient?  Is one tag per file sufficient?
> > > >How about one tag per package?  If package, then isn't a single tag for
> > > >the whole kernel source tree sufficient, as we all know the overall
> > > >license for the kernel source tree.
> > > 
> > > We really need one tag per file.
> > 
> > I fail to see the justification for this, why?  Why not per directory?
> > Why not per function?  Why not per driver?  Why not per line?  Why not
> > per project?  Who has dictated this seemingly arbitrary rule?
> 
> That's how licenses are done today.
> 
> Why would I like to see SPDX?
> 
> So that GPL header at begining of each file becomes one line... and so
> that if it is BSD/GPL dual licensed is plain to see, and I don't have
> to read the notices saying "oh this is gpl.. but if you want to,
> delete gpl above and use license below".

why isn't git grep -e 'MODULE_LICENSE' enough ? It's also a single line
and gives you the license for that driver.

> > Our DCO process ensures that.
> > 
> > > - Some parts of the Linux source code are also used by other projects.
> > >   Or are derived from other projects. Because of this they are
> > >   explicitly licensed under different licenses than the GPLv2
> > >   (compatible to it though of course). Or are dual-licensed. So that
> > >   they can be used by these other projects.
> > 
> > That's fine, we encourage that and want to see that happen.  How will
> > SPDX change that at all?  It's obvious as to the license of the files
> > that this happens with, why do anything extra?
> 
> Well, sometimes parsing license agreements at the top of file is
> interesting, that's where SPDX would help, and that's why having
> single SPDX per linux kernel would not work.

if you can parse SPDX, why can't you parse MODULE_LICENSE() ?

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-25 22:00                         ` Felipe Balbi
  0 siblings, 0 replies; 75+ messages in thread
From: Felipe Balbi @ 2015-02-25 22:00 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Greg Kroah-Hartman, Stefan Roese, monstr, balbi, linux-kernel,
	devicetree, Wolfgang Denk

[-- Attachment #1: Type: text/plain, Size: 1949 bytes --]

On Wed, Feb 25, 2015 at 10:49:51PM +0100, Pavel Machek wrote:
> Hi!
> 
> > > >Is one tag per directory sufficient?  Is one tag per file sufficient?
> > > >How about one tag per package?  If package, then isn't a single tag for
> > > >the whole kernel source tree sufficient, as we all know the overall
> > > >license for the kernel source tree.
> > > 
> > > We really need one tag per file.
> > 
> > I fail to see the justification for this, why?  Why not per directory?
> > Why not per function?  Why not per driver?  Why not per line?  Why not
> > per project?  Who has dictated this seemingly arbitrary rule?
> 
> That's how licenses are done today.
> 
> Why would I like to see SPDX?
> 
> So that GPL header at begining of each file becomes one line... and so
> that if it is BSD/GPL dual licensed is plain to see, and I don't have
> to read the notices saying "oh this is gpl.. but if you want to,
> delete gpl above and use license below".

why isn't git grep -e 'MODULE_LICENSE' enough ? It's also a single line
and gives you the license for that driver.

> > Our DCO process ensures that.
> > 
> > > - Some parts of the Linux source code are also used by other projects.
> > >   Or are derived from other projects. Because of this they are
> > >   explicitly licensed under different licenses than the GPLv2
> > >   (compatible to it though of course). Or are dual-licensed. So that
> > >   they can be used by these other projects.
> > 
> > That's fine, we encourage that and want to see that happen.  How will
> > SPDX change that at all?  It's obvious as to the license of the files
> > that this happens with, why do anything extra?
> 
> Well, sometimes parsing license agreements at the top of file is
> interesting, that's where SPDX would help, and that's why having
> single SPDX per linux kernel would not work.

if you can parse SPDX, why can't you parse MODULE_LICENSE() ?

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2015-02-25 21:49                     ` SPDX-License-Identifier Pavel Machek
@ 2015-02-26 10:26                         ` One Thousand Gnomes
  2015-02-26 10:26                         ` SPDX-License-Identifier One Thousand Gnomes
  1 sibling, 0 replies; 75+ messages in thread
From: One Thousand Gnomes @ 2015-02-26 10:26 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Greg Kroah-Hartman, Stefan Roese, monstr, balbi, linux-kernel,
	devicetree, Wolfgang Denk

> So that GPL header at begining of each file becomes one line... and so
> that if it is BSD/GPL dual licensed is plain to see, and I don't have
> to read the notices saying "oh this is gpl.. but if you want to,
> delete gpl above and use license below".

That won't happen though. You'd require every single corporate legal
department of every large company that touched the file to agree that the
SPDX was equivalent to the content, and some of them probably won't.
Lawyers don't seem to believe in #include <legalese.h>

Alan

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
@ 2015-02-26 10:26                         ` One Thousand Gnomes
  0 siblings, 0 replies; 75+ messages in thread
From: One Thousand Gnomes @ 2015-02-26 10:26 UTC (permalink / raw)
  To: Pavel Machek
  Cc: Greg Kroah-Hartman, Stefan Roese, monstr-pSz03upnqPeHXe+LvDLADg,
	balbi-l0cyMroinI0, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Wolfgang Denk

> So that GPL header at begining of each file becomes one line... and so
> that if it is BSD/GPL dual licensed is plain to see, and I don't have
> to read the notices saying "oh this is gpl.. but if you want to,
> delete gpl above and use license below".

That won't happen though. You'd require every single corporate legal
department of every large company that touched the file to agree that the
SPDX was equivalent to the content, and some of them probably won't.
Lawyers don't seem to believe in #include <legalese.h>

Alan
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2015-02-26 10:26                         ` SPDX-License-Identifier One Thousand Gnomes
  (?)
@ 2015-02-26 13:39                         ` Theodore Ts'o
  -1 siblings, 0 replies; 75+ messages in thread
From: Theodore Ts'o @ 2015-02-26 13:39 UTC (permalink / raw)
  To: One Thousand Gnomes
  Cc: Pavel Machek, Greg Kroah-Hartman, Stefan Roese, monstr, balbi,
	linux-kernel, devicetree, Wolfgang Denk

On Thu, Feb 26, 2015 at 10:26:50AM +0000, One Thousand Gnomes wrote:
> > So that GPL header at begining of each file becomes one line... and so
> > that if it is BSD/GPL dual licensed is plain to see, and I don't have
> > to read the notices saying "oh this is gpl.. but if you want to,
> > delete gpl above and use license below".
> 
> That won't happen though. You'd require every single corporate legal
> department of every large company that touched the file to agree that the
> SPDX was equivalent to the content, and some of them probably won't.
> Lawyers don't seem to believe in #include <legalese.h>

I can confirm that some lawyers, including some that work for large
companies, are concerned that an SPDX-* header is equivalent to a
copyright statement and copyright permission statement.  More
precisely, there is no legal cases on point with respect to that
particular question, and how this situation might be interpreted in
different legal systems is going to be a matter of judgement.
Morever, consider that people can easily fetch a single file out of a
git repository by referencing some URL such as:

https://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/plain/contrib/e2croncheck

... so if the only place where the formal language which is in some
top-level COPYING file, it might be quite easy for a potential
infringer to claim that they didn't know about what "SPDX" and "GPL"
meant, and thus they couldn't be held responsible.

Some folks might be a bit more comfortable if at the very least there
is at least a Copyright claim, without the the full license, or at
least something like "This file may only be copied under the terms of
the license found at <URL of License", but honestly, is the effort
needed to change how we display the copyright permission statement
really worth the effort?

						- Ted

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2015-02-25 22:00                         ` SPDX-License-Identifier Felipe Balbi
  (?)
@ 2015-02-26 21:49                         ` Pavel Machek
  -1 siblings, 0 replies; 75+ messages in thread
From: Pavel Machek @ 2015-02-26 21:49 UTC (permalink / raw)
  To: Felipe Balbi
  Cc: Greg Kroah-Hartman, Stefan Roese, monstr, linux-kernel,
	devicetree, Wolfgang Denk

On Wed 2015-02-25 16:00:47, Felipe Balbi wrote:
> On Wed, Feb 25, 2015 at 10:49:51PM +0100, Pavel Machek wrote:
> > Hi!
> > 
> > > > >Is one tag per directory sufficient?  Is one tag per file sufficient?
> > > > >How about one tag per package?  If package, then isn't a single tag for
> > > > >the whole kernel source tree sufficient, as we all know the overall
> > > > >license for the kernel source tree.
> > > > 
> > > > We really need one tag per file.
> > > 
> > > I fail to see the justification for this, why?  Why not per directory?
> > > Why not per function?  Why not per driver?  Why not per line?  Why not
> > > per project?  Who has dictated this seemingly arbitrary rule?
> > 
> > That's how licenses are done today.
> > 
> > Why would I like to see SPDX?
> > 
> > So that GPL header at begining of each file becomes one line... and so
> > that if it is BSD/GPL dual licensed is plain to see, and I don't have
> > to read the notices saying "oh this is gpl.. but if you want to,
> > delete gpl above and use license below".
> 
> why isn't git grep -e 'MODULE_LICENSE' enough ? It's also a single line
> and gives you the license for that driver.
> 
> > > Our DCO process ensures that.
> > > 
> > > > - Some parts of the Linux source code are also used by other projects.
> > > >   Or are derived from other projects. Because of this they are
> > > >   explicitly licensed under different licenses than the GPLv2
> > > >   (compatible to it though of course). Or are dual-licensed. So that
> > > >   they can be used by these other projects.
> > > 
> > > That's fine, we encourage that and want to see that happen.  How will
> > > SPDX change that at all?  It's obvious as to the license of the files
> > > that this happens with, why do anything extra?
> > 
> > Well, sometimes parsing license agreements at the top of file is
> > interesting, that's where SPDX would help, and that's why having
> > single SPDX per linux kernel would not work.
> 
> if you can parse SPDX, why can't you parse MODULE_LICENSE() ?

Not all sources are modules. And yes, MODULE_LICENSE() helps, but spdx
would help, too: This would become one line.

								Pavel

 * This software is available to you under a choice of one of two
  * licenses.  You may choose to be licensed under the terms of the
  * GNU
   * General Public License (GPL) Version 2, available from the file
    * COPYING in the main directory of this source tree, or the
     * OpenIB.org BSD license below:
      *
       *     Redistribution and use in source and binary forms, with
  * or
   *     without modification, are permitted provided that the
  * following
   *     conditions are met:
    *
     *      - Redistributions of source code must retain the above
      *        copyright notice, this list of conditions and the
  * following
   *        disclaimer.
    *
     *      - Redistributions in binary form must reproduce the above
      *        copyright notice, this list of conditions and the
  * following
   *        disclaimer in the documentation and/or other materials
    *        provided with the distribution.
     *
      * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  * KIND,
   * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  * OF
   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  * HOLDERS
   * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  * AN
   * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
    * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
     * SOFTWARE.
     



-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

* Re: SPDX-License-Identifier
  2015-02-26 10:26                         ` SPDX-License-Identifier One Thousand Gnomes
  (?)
  (?)
@ 2015-02-26 21:53                         ` Pavel Machek
  -1 siblings, 0 replies; 75+ messages in thread
From: Pavel Machek @ 2015-02-26 21:53 UTC (permalink / raw)
  To: One Thousand Gnomes
  Cc: Greg Kroah-Hartman, Stefan Roese, monstr, balbi, linux-kernel,
	devicetree, Wolfgang Denk

On Thu 2015-02-26 10:26:50, One Thousand Gnomes wrote:
> > So that GPL header at begining of each file becomes one line... and so
> > that if it is BSD/GPL dual licensed is plain to see, and I don't have
> > to read the notices saying "oh this is gpl.. but if you want to,
> > delete gpl above and use license below".
> 
> That won't happen though. You'd require every single corporate legal
> department of every large company that touched the file to agree that the
> SPDX was equivalent to the content, and some of them probably won't.
> Lawyers don't seem to believe in #include <legalese.h>

Umm. I'd still like to see SPDX where corporate lawyers allow that,
and for new files.
									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 75+ messages in thread

end of thread, other threads:[~2015-02-26 21:53 UTC | newest]

Thread overview: 75+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-19  9:40 [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support Subbaraya Sundeep Bhatta
2014-02-20 18:23 ` Felipe Balbi
2014-02-20 18:23   ` Felipe Balbi
2014-02-21  6:38   ` Michal Simek
2014-02-21  6:38     ` Michal Simek
2014-02-21 16:04     ` Greg Kroah-Hartman
2014-02-21 16:04       ` Michal Simek
2014-02-21 16:04         ` Michal Simek
2014-02-21 16:12         ` SPDX-License-Identifier (was: Re: [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support) Felipe Balbi
2014-02-21 16:12           ` Felipe Balbi
2014-02-21 16:18           ` SPDX-License-Identifier Michal Simek
2014-02-21 16:18             ` SPDX-License-Identifier Michal Simek
2014-02-21 16:20             ` SPDX-License-Identifier Felipe Balbi
2014-02-21 16:20               ` SPDX-License-Identifier Felipe Balbi
2014-02-21 16:56               ` SPDX-License-Identifier Greg Kroah-Hartman
2014-02-21 17:26                 ` SPDX-License-Identifier Michal Simek
2014-02-21 17:57                   ` SPDX-License-Identifier Greg Kroah-Hartman
2014-02-21 17:57                     ` SPDX-License-Identifier Greg Kroah-Hartman
2014-02-21 19:01                     ` SPDX-License-Identifier Theodore Ts'o
2014-02-24 10:12                       ` SPDX-License-Identifier Michal Simek
2014-02-24 13:41                         ` SPDX-License-Identifier Theodore Ts'o
2014-02-24 13:41                           ` SPDX-License-Identifier Theodore Ts'o
2014-02-24 14:03                           ` SPDX-License-Identifier Michal Simek
2014-02-24 14:26                             ` SPDX-License-Identifier Greg Kroah-Hartman
2014-02-24 14:26                               ` SPDX-License-Identifier Greg Kroah-Hartman
2014-02-25 12:10                               ` SPDX-License-Identifier One Thousand Gnomes
2014-02-25 12:25                                 ` SPDX-License-Identifier Geert Uytterhoeven
2015-02-02 15:43             ` SPDX-License-Identifier Stefan Roese
2015-02-02 15:43               ` SPDX-License-Identifier Stefan Roese
2015-02-02 16:06               ` SPDX-License-Identifier Greg Kroah-Hartman
2015-02-02 16:06                 ` SPDX-License-Identifier Greg Kroah-Hartman
2015-02-04 16:41                 ` SPDX-License-Identifier Stefan Roese
2015-02-04 16:41                   ` SPDX-License-Identifier Stefan Roese
2015-02-05  4:21                   ` SPDX-License-Identifier Theodore Ts'o
2015-02-05  4:21                     ` SPDX-License-Identifier Theodore Ts'o
2015-02-05  6:41                   ` SPDX-License-Identifier Greg Kroah-Hartman
2015-02-05  6:41                     ` SPDX-License-Identifier Greg Kroah-Hartman
2015-02-25 21:49                     ` SPDX-License-Identifier Pavel Machek
2015-02-25 22:00                       ` SPDX-License-Identifier Felipe Balbi
2015-02-25 22:00                         ` SPDX-License-Identifier Felipe Balbi
2015-02-26 21:49                         ` SPDX-License-Identifier Pavel Machek
2015-02-26 10:26                       ` SPDX-License-Identifier One Thousand Gnomes
2015-02-26 10:26                         ` SPDX-License-Identifier One Thousand Gnomes
2015-02-26 13:39                         ` SPDX-License-Identifier Theodore Ts'o
2015-02-26 21:53                         ` SPDX-License-Identifier Pavel Machek
2015-02-05 11:49                   ` SPDX-License-Identifier One Thousand Gnomes
2015-02-05 11:49                     ` SPDX-License-Identifier One Thousand Gnomes
2014-02-21 16:23         ` [PATCH RFC] usb: gadget: Add xilinx axi usb2 device support Greg Kroah-Hartman
2014-02-21 11:27   ` Subbaraya Sundeep Bhatta
2014-02-21 15:39     ` Felipe Balbi
2014-03-10 13:36       ` sundeep subbaraya
2014-03-10 13:36         ` sundeep subbaraya
2014-03-10 18:44         ` Felipe Balbi
2014-03-10 18:44           ` Felipe Balbi
2014-02-21 12:04   ` Mark Rutland
2014-02-21 13:41     ` Michal Simek
2014-02-21 13:57       ` Mark Rutland
2014-02-21 14:06         ` Michal Simek
2014-02-21 15:42       ` Felipe Balbi
2014-02-21 15:51         ` Michal Simek
2014-02-21 15:51           ` Michal Simek
2014-02-21 16:00           ` Felipe Balbi
2014-02-21 16:00             ` Felipe Balbi
2014-02-21 16:15           ` Arnd Bergmann
2014-02-21 16:15             ` Arnd Bergmann
2014-02-21 15:41     ` Felipe Balbi
2014-02-21 15:41       ` Felipe Balbi
2014-02-21 16:13       ` Mark Rutland
2014-03-26 10:07   ` sundeep subbaraya
2014-03-26 10:07     ` sundeep subbaraya
2014-04-15 17:18     ` Felipe Balbi
2014-04-15 17:18       ` Felipe Balbi
2014-04-15 17:55       ` Alan Stern
2014-04-16  4:39         ` Felipe Balbi
2014-04-16  4:39           ` Felipe Balbi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.