Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1406199 > unrolled thread
| Started by | Neil Armstrong <narmstrong@baylibre.com> |
|---|---|
| First post | 2016-05-24 16:20 +0200 |
| Last post | 2016-05-24 17:40 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [RFC PATCH] usb: gadget: Introduce Cadence USB2 UDC Driver Neil Armstrong <narmstrong@baylibre.com> - 2016-05-24 16:20 +0200
Re: [RFC PATCH] usb: gadget: Introduce Cadence USB2 UDC Driver Felipe Balbi <felipe.balbi@linux.intel.com> - 2016-05-24 16:40 +0200
Re: [RFC PATCH] usb: gadget: Introduce Cadence USB2 UDC Driver Laurent Pinchart <laurent.pinchart@ideasonboard.com> - 2016-05-24 17:40 +0200
| From | Neil Armstrong <narmstrong@baylibre.com> |
|---|---|
| Date | 2016-05-24 16:20 +0200 |
| Subject | Re: [RFC PATCH] usb: gadget: Introduce Cadence USB2 UDC Driver |
| Message-ID | <rCllD-4jI-1@gated-at.bofh.it> |
[Multipart message — attachments visible in raw view] — view raw
Hi Felipe, Laurent,
I submitted this driver for a Cadence IP library from a now abandoned project.
The driver was working on a SoC platform ported on a FPGA, but I do not have access to this HW anymore.
But I have a fixed version...
Now, I am looking for SoCs, vendors and even Cadence people (or even Evatronix employees who worked on this IP before being in Cadence portfolio)
to push this driver upstream by testing it on a real HW or even FPGA.
I hope this message in a bottle will get read !
Regards,
Neil
On 11/16/2015 05:11 PM, Felipe Balbi wrote:
>
> Hi,
>
> Neil Armstrong <narmstrong@baylibre.com> writes:
>> Introduces UDC support for the Device-Mode only version of the
>> Cadence USB2 Controller IP Core.
>>
>> Host mode and OTG mode are not implemented by lack of hardware.
>> Support for Isochronous endpoints is not implemented by lack of time.
>>
>> Internal DMA is supported and can be activated by DT property.
>>
>> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
>
> looks like there are a few checkpatch warnings to be fixed:
>
> WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
> #89:
> new file mode 100644
>
> WARNING: 'tranfer' may be misspelled - perhaps 'transfer'?
> #233: FILE: drivers/usb/gadget/udc/cadence_hsudc.c:44:
> + * - EP Bulk and Interrupt tranfer
>
> WARNING: Avoid crashing the kernel - try using WARN_ON & recovery code rather than BUG() or BUG_ON()
> #968: FILE: drivers/usb/gadget/udc/cadence_hsudc.c:779:
> + BUG();
>
> WARNING: Avoid crashing the kernel - try using WARN_ON & recovery code rather than BUG() or BUG_ON()
> #1492: FILE: drivers/usb/gadget/udc/cadence_hsudc.c:1303:
> + BUG();
>
> WARNING: DT compatible string "cdns,usbhs-udc" appears un-documented -- check workspace/linux/Documentation/devicetree/bindings/
> #1882: FILE: drivers/usb/gadget/udc/cadence_hsudc.c:1693:
> + { .compatible = "cdns,usbhs-udc" },
>
> WARNING: 'tranfer' may be misspelled - perhaps 'transfer'?
> #2603: FILE: drivers/usb/gadget/udc/cadence_hsudc_regs.h:272:
> +#define HSUDC_DMA_BUSCTRL_HSIZE_8BIT (0 << 1) /* 8-bit data tranfer */
>
> WARNING: 'tranfer' may be misspelled - perhaps 'transfer'?
> #2604: FILE: drivers/usb/gadget/udc/cadence_hsudc_regs.h:273:
> +#define HSUDC_DMA_BUSCTRL_HSIZE_16BIT (1 << 1) /* 16-bit data tranfer */
>
> WARNING: 'tranfer' may be misspelled - perhaps 'transfer'?
> #2605: FILE: drivers/usb/gadget/udc/cadence_hsudc_regs.h:274:
> +#define HSUDC_DMA_BUSCTRL_HSIZE_32BIT (2 << 1) /* 32-bit data tranfer */
>
> WARNING: 'tranfer' may be misspelled - perhaps 'transfer'?
> #2607: FILE: drivers/usb/gadget/udc/cadence_hsudc_regs.h:276:
> +#define HSUDC_DMA_BUSCTRL_BURST_SINGLE (0 << 4) /* Single tranfer */
>
> total: 0 errors, 9 warnings, 2499 lines checked
>
> Your patch has style problems, please review.
>
> NOTE: If any of the errors are false positives, please report
> them to the maintainer, see CHECKPATCH in MAINTAINERS.
>
[toc] | [next] | [standalone]
| From | Felipe Balbi <felipe.balbi@linux.intel.com> |
|---|---|
| Date | 2016-05-24 16:40 +0200 |
| Message-ID | <rClF0-4qa-41@gated-at.bofh.it> |
| In reply to | #1406199 |
[Multipart message — attachments visible in raw view] — view raw
Hi, (please break lines at 80-columns and don't top-post ;) Neil Armstrong <narmstrong@baylibre.com> writes: > [ Unknown signature status ] > Hi Felipe, Laurent, > > I submitted this driver for a Cadence IP library from a now abandoned > project. > > The driver was working on a SoC platform ported on a FPGA, but I do > not have access to this HW anymore. > > But I have a fixed version... > > Now, I am looking for SoCs, vendors and even Cadence people (or even > Evatronix employees who worked on this IP before being in Cadence > portfolio) to push this driver upstream by testing it on a real HW or > even FPGA. > > I hope this message in a bottle will get read ! if you manage to get it tested, send it to linux-usb ;) -- balbi
[toc] | [prev] | [next] | [standalone]
| From | Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
|---|---|
| Date | 2016-05-24 17:40 +0200 |
| Message-ID | <rCmB4-53v-9@gated-at.bofh.it> |
| In reply to | #1406199 |
Hi Neil, On Tuesday 24 May 2016 16:16:16 Neil Armstrong wrote: > Hi Felipe, Laurent, > > I submitted this driver for a Cadence IP library from a now abandoned > project. > > The driver was working on a SoC platform ported on a FPGA, but I do not have > access to this HW anymore. > > But I have a fixed version... > > Now, I am looking for SoCs, vendors and even Cadence people (or even > Evatronix employees who worked on this IP before being in Cadence > portfolio) to push this driver upstream by testing it on a real HW or even > FPGA. > > I hope this message in a bottle will get read ! I've read it, but what do you expect from me ? :-) -- Regards, Laurent Pinchart
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web