usb: add isp1760 family driver
authorRui Miguel Silva <rui.silva@linaro.org>
Wed, 29 Jun 2022 10:06:15 +0000 (11:06 +0100)
committerMarek Vasut <marex@denx.de>
Tue, 12 Jul 2022 19:59:54 +0000 (21:59 +0200)
commit88861a2c2c4f4f00008c14911e05f645ae5dd915
tree05b8e4467f19adf700de859b7346e8ef4bfc18ab
parentb2d2b7872249e6816487e95bd9197a9417aa62bb
usb: add isp1760 family driver

ISP1760/61/63 are a family of usb controllers, here the main
goal is to support the ISP1763 hcd part found in the MPS3 FPGA
board form Arm. This is based on the kernel driver and ported
to u-boot.

Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
13 files changed:
Makefile
drivers/usb/Kconfig
drivers/usb/common/Makefile
drivers/usb/isp1760/Kconfig [new file with mode: 0644]
drivers/usb/isp1760/Makefile [new file with mode: 0644]
drivers/usb/isp1760/isp1760-core.c [new file with mode: 0644]
drivers/usb/isp1760/isp1760-core.h [new file with mode: 0644]
drivers/usb/isp1760/isp1760-hcd.c [new file with mode: 0644]
drivers/usb/isp1760/isp1760-hcd.h [new file with mode: 0644]
drivers/usb/isp1760/isp1760-if.c [new file with mode: 0644]
drivers/usb/isp1760/isp1760-regs.h [new file with mode: 0644]
drivers/usb/isp1760/isp1760-uboot.c [new file with mode: 0644]
drivers/usb/isp1760/isp1760-uboot.h [new file with mode: 0644]