RE: [RFC PATCH v2 04/15] usb:cdns3: Driver initialization code.

2018-12-06 Thread Pawel Laszczak
Hi, >On 04/12/18 10:50, Peter Chen wrote: >>>> + * Cadence USBSS DRD Driver. >>>> + * >>>> + * Copyright (C) 2018 Cadence. >>>> + * >>>> + * Author: Peter Chen >>>> + * Pawel Laszczak >>>> + *

RE: [RFC PATCH v2 04/15] usb:cdns3: Driver initialization code.

2018-12-06 Thread Pawel Laszczak
Hi, >On 04/12/18 10:50, Peter Chen wrote: >>>> + * Cadence USBSS DRD Driver. >>>> + * >>>> + * Copyright (C) 2018 Cadence. >>>> + * >>>> + * Author: Peter Chen >>>> + * Pawel Laszczak >>>> + *

[PATCH 02/31] usb: usbssp: Added some decoding functions.

2018-07-11 Thread Pawel Laszczak
This patch add additional functions that converts some fields to string. For example function usbssp_trb_comp_code_string take completion c ode value and return string describing completion code. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget.h | 572

[PATCH 01/31] usb: usbssp: Defined register maps and other useful structures.

2018-07-11 Thread Pawel Laszczak
information related to single transfer. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget.h | 1567 +++ 1 file changed, 1567 insertions(+) create mode 100644 drivers/usb/usbssp/gadget.h diff --git a/drivers/usb/usbssp/gadget.h b/drivers/usb/usbssp/gadget.h

[PATCH 03/31] usb: usbssp: Add trace events used in driver

2018-07-11 Thread Pawel Laszczak
. - usbssp_handle_port_status - debug message used in handle_port_status function. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget-trace.c | 13 + drivers/usb/usbssp/gadget-trace.h | 482 ++ 2 files changed, 495 insertions(+) create mode 100644 drivers/usb/usbssp

[PATCH 02/31] usb: usbssp: Added some decoding functions.

2018-07-11 Thread Pawel Laszczak
This patch add additional functions that converts some fields to string. For example function usbssp_trb_comp_code_string take completion c ode value and return string describing completion code. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget.h | 572

[PATCH 01/31] usb: usbssp: Defined register maps and other useful structures.

2018-07-11 Thread Pawel Laszczak
information related to single transfer. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget.h | 1567 +++ 1 file changed, 1567 insertions(+) create mode 100644 drivers/usb/usbssp/gadget.h diff --git a/drivers/usb/usbssp/gadget.h b/drivers/usb/usbssp/gadget.h

[PATCH 03/31] usb: usbssp: Add trace events used in driver

2018-07-11 Thread Pawel Laszczak
. - usbssp_handle_port_status - debug message used in handle_port_status function. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget-trace.c | 13 + drivers/usb/usbssp/gadget-trace.h | 482 ++ 2 files changed, 495 insertions(+) create mode 100644 drivers/usb/usbssp

[PATCH 09/31] usb: usbssp: add implementation of usbssp_mem_cleanup

2018-07-11 Thread Pawel Laszczak
Patch add implementation of usbssp_mem_cleanup and all other functions used during cleaning driver during unloading module. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget-mem.c | 180 ++- drivers/usb/usbssp/gadget-ring.c | 21 drivers/usb/usbssp

[PATCH 09/31] usb: usbssp: add implementation of usbssp_mem_cleanup

2018-07-11 Thread Pawel Laszczak
Patch add implementation of usbssp_mem_cleanup and all other functions used during cleaning driver during unloading module. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget-mem.c | 180 ++- drivers/usb/usbssp/gadget-ring.c | 21 drivers/usb/usbssp

[PATCH 28/31] usb: usbssp: implemented usbssp_gadget_ep_disable function.

2018-07-11 Thread Pawel Laszczak
Patch implements function responsible for disabling USB endpoint. This function is called from USB core gadget during handling SET_CONFIGURATION or SET_INTERFACE request, or after such events as USB_RESET or detaching device from host. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget

[PATCH 28/31] usb: usbssp: implemented usbssp_gadget_ep_disable function.

2018-07-11 Thread Pawel Laszczak
Patch implements function responsible for disabling USB endpoint. This function is called from USB core gadget during handling SET_CONFIGURATION or SET_INTERFACE request, or after such events as USB_RESET or detaching device from host. Signed-off-by: Pawel Laszczak --- drivers/usb/usbssp/gadget

<    1   2   3   4