From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Sat, 10 Aug 2019 15:33:44 +0200 Subject: [U-Boot] [PULL] u-boot-usb/master Message-ID: <3385b8b0-f81e-f4a0-7db5-e2d72a973450@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The following changes since commit 2e8fef747bf773691d174b2b8120d7aa6c637bcf: test/py: avb: Move AVB test to android dir (2019-08-07 23:15:13 -0400) are available in the Git repository at: git://git.denx.de/u-boot-usb.git master for you to fetch changes up to 29a81142be960a07761f50ccae6cde766e3696d9: fastboot: Remove "bootloader-version" variable (2019-08-08 11:35:02 +0200) ---------------------------------------------------------------- Adam Ford (3): phy: Add support for phy-da8xx-usb usb: musb-new: Add support for da8xx-musb ARM: da850-evm: Enable the USB PHY and MUSB Driver Heiko Schocher (5): usb, ohci-hdc: fix warning 'ohci_pci_ids' defined but not used usb, ohci: fix ohci swap register access usb, ohci-hcd: set OHCI_USE_NPS if DM_PCI usb, ohci: add warning if none on pci found usb, ohci, pci: add DM support for PCI-based OHCI USB controller Marek Szyprowski (1): thor: fix crash after usb initialization failure Ralph Siemsen (1): usb: gadget: f_dfu.c: fix memory leak Sam Protsenko (3): fastboot: Remove "slot-suffixes" variable fastboot: getvar: Add "is-userspace" variable fastboot: Remove "bootloader-version" variable cmd/thordown.c | 6 ++- configs/da850evm_defconfig | 5 +++ configs/da850evm_direct_nor_defconfig | 5 +++ configs/da850evm_nand_defconfig | 5 +++ doc/android/fastboot.txt | 6 +-- drivers/fastboot/fb_getvar.c | 27 ++++++------ drivers/phy/Kconfig | 6 +++ drivers/phy/Makefile | 1 + drivers/phy/phy-da8xx-usb.c | 64 ++++++++++++++++++++++++++++ drivers/usb/gadget/f_dfu.c | 1 + drivers/usb/host/Kconfig | 7 +++ drivers/usb/host/Makefile | 1 + drivers/usb/host/ohci-hcd.c | 12 ++++-- drivers/usb/host/ohci-pci.c | 52 ++++++++++++++++++++++ drivers/usb/host/ohci.h | 4 +- drivers/usb/musb-new/Kconfig | 8 ++++ drivers/usb/musb-new/Makefile | 1 + drivers/usb/musb-new/da8xx.c | 350 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 18 files changed, 537 insertions(+), 24 deletions(-) create mode 100644 drivers/phy/phy-da8xx-usb.c create mode 100644 drivers/usb/host/ohci-pci.c create mode 100644 drivers/usb/musb-new/da8xx.c