]> git.baikalelectronics.ru Git - uboot.git/commit
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)
commit0e0334f92f9e4135878daa8f0c366451d5047ffe
tree05b8e4467f19adf700de859b7346e8ef4bfc18ab
parent10254dc8ad744e9a7ba52d471b701b4538ceeba7
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]