[RFC PATCH v1 0/2] add xhci-exynos to support Samsung Exynos SOCs

Daehwan Jung posted 2 patches 3 years ago
.../bindings/usb/samsung,exynos-xhci.yaml     |  25 +++
drivers/usb/host/Kconfig                      |   8 +
drivers/usb/host/Makefile                     |   1 +
drivers/usb/host/xhci-exynos.c                | 154 ++++++++++++++++++
drivers/usb/host/xhci-hub.c                   |   2 +
drivers/usb/host/xhci-plat.c                  |   6 +
drivers/usb/host/xhci-plat.h                  |   2 +
drivers/usb/host/xhci.c                       |   4 +
drivers/usb/host/xhci.h                       |   2 +
9 files changed, 204 insertions(+)
create mode 100644 Documentation/devicetree/bindings/usb/samsung,exynos-xhci.yaml
create mode 100644 drivers/usb/host/xhci-exynos.c
[RFC PATCH v1 0/2] add xhci-exynos to support Samsung Exynos SOCs
Posted by Daehwan Jung 3 years ago
This patchset is to support xHCI Controller on Samsung Exynos SOCs.

Daehwan Jung (2):
  dt-bindings: usb: samsung,exynos-xhci: support Samsung Exynos xHCI
    Controller
  usb: host: add xhci-exynos to support Exynos SOCs

 .../bindings/usb/samsung,exynos-xhci.yaml     |  25 +++
 drivers/usb/host/Kconfig                      |   8 +
 drivers/usb/host/Makefile                     |   1 +
 drivers/usb/host/xhci-exynos.c                | 154 ++++++++++++++++++
 drivers/usb/host/xhci-hub.c                   |   2 +
 drivers/usb/host/xhci-plat.c                  |   6 +
 drivers/usb/host/xhci-plat.h                  |   2 +
 drivers/usb/host/xhci.c                       |   4 +
 drivers/usb/host/xhci.h                       |   2 +
 9 files changed, 204 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/usb/samsung,exynos-xhci.yaml
 create mode 100644 drivers/usb/host/xhci-exynos.c

-- 
2.31.1
Re: [RFC PATCH v1 0/2] add xhci-exynos to support Samsung Exynos SOCs
Posted by Greg Kroah-Hartman 3 years ago
On Thu, Dec 01, 2022 at 11:13:29AM +0900, Daehwan Jung wrote:
> This patchset is to support xHCI Controller on Samsung Exynos SOCs.
> 
> Daehwan Jung (2):
>   dt-bindings: usb: samsung,exynos-xhci: support Samsung Exynos xHCI
>     Controller
>   usb: host: add xhci-exynos to support Exynos SOCs

Why is this a "RFC" and not a real submission?  What needs to be done to
it to get it into mergable shape?

And thank you for posting this, I've wanted to see this merged for a
very long time given the millions of devices already using it.

thanks,

greg k-h
Re: [RFC PATCH v1 0/2] add xhci-exynos to support Samsung Exynos SOCs
Posted by Jung Daehwan 3 years ago
On Thu, Dec 01, 2022 at 09:03:01AM +0100, Greg Kroah-Hartman wrote:
> On Thu, Dec 01, 2022 at 11:13:29AM +0900, Daehwan Jung wrote:
> > This patchset is to support xHCI Controller on Samsung Exynos SOCs.
> > 
> > Daehwan Jung (2):
> >   dt-bindings: usb: samsung,exynos-xhci: support Samsung Exynos xHCI
> >     Controller
> >   usb: host: add xhci-exynos to support Exynos SOCs
> 
> Why is this a "RFC" and not a real submission?  What needs to be done to
> it to get it into mergable shape?
> 
> And thank you for posting this, I've wanted to see this merged for a
> very long time given the millions of devices already using it.
> 
> thanks,
> 
> greg k-h
> 

Hi greg,

That's because It's my first time to submit the patchset with dt bindigs.
I've been trying not to miss anything needed but I want to check whether
it's acceptable or not. I will resend it if there's no problem.

Best Regards,
Jung Daehwan