1. 01 8月, 2017 9 次提交
  2. 31 7月, 2017 7 次提交
  3. 30 7月, 2017 17 次提交
  4. 29 7月, 2017 7 次提交
    • T
      Merge git://git.denx.de/u-boot-socfpga · 19d1f1a2
      Tom Rini 提交于
      19d1f1a2
    • T
      Merge git://git.denx.de/u-boot-usb · 211aaf30
      Tom Rini 提交于
      211aaf30
    • R
      efi_loader: indent entry/exit prints to show nesting level · af65db85
      Rob Clark 提交于
      This should make it easier to see when a callback back to UEFI world
      calls back in to the u-boot world, and generally match up EFI_ENTRY()
      and EFI_EXIT() calls.
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      [agraf: remove static from const var]
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      af65db85
    • R
      efi_loader: add checking for incorrect use of EFI_ENTRY/EXIT · c160d2f5
      Rob Clark 提交于
      Missing an EFI_ENTRY() or doubling up EFI_EXIT() leads to non-obvious
      crashes.  Let's add some error checking.
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      [agraf: fix bogus assert() and fix app_gd breakage]
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      c160d2f5
    • P
      clk: fix compilation errors for poplar platform · b108d8a0
      Patrice Chotard 提交于
      Move clk_release_all() prototype and definition inside
      OF_CONTROL flag to avoid following compilation error for
      poplar platform:
      
      aarch64:  +   poplar
      +drivers/usb/host/built-in.o: In function `ehci_usb_remove':
      +drivers/usb/host/ehci-generic.c:159: undefined reference to `clk_release_all'
      +drivers/usb/host/built-in.o: In function `ehci_usb_probe':
      +drivers/usb/host/ehci-generic.c:133: undefined reference to `clk_release_all'
      +make[1]: *** [u-boot] Error 139
      +make: *** [sub-make] Error 2
      
      Introduced by 4e542c4 clk: add clk_release_all()
      Signed-off-by: NPatrice Chotard <patrice.chotard@st.com>
      b108d8a0
    • P
      usb: host: xhci-dxc3: fix compilation warnings · d38a8ea1
      Patrice Chotard 提交于
      Fix following warnings encountered with platforms
      dra7xx_evm and dra7xx_hs_evm :
      
             arm:  +   dra7xx_evm
      +  hccr = (struct xhci_hccr *)devfdt_get_addr(dev);
      +         ^
      +  hcor = (struct xhci_hcor *)((phys_addr_t)hccr +
      +                              ^
      w+drivers/usb/host/xhci-dwc3.c: In function 'xhci_dwc3_probe':
      w+drivers/usb/host/xhci-dwc3.c:124:9: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
      w+drivers/usb/host/xhci-dwc3.c:125:30: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      w+drivers/usb/host/xhci-dwc3.c:125:9: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
             arm:  +   dra7xx_hs_evm
      +  hccr = (struct xhci_hccr *)devfdt_get_addr(dev);
      +         ^
      +  hcor = (struct xhci_hcor *)((phys_addr_t)hccr +
      +                              ^
      w+drivers/usb/host/xhci-dwc3.c: In function 'xhci_dwc3_probe':
      w+drivers/usb/host/xhci-dwc3.c:124:9: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
      w+drivers/usb/host/xhci-dwc3.c:125:30: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      w+drivers/usb/host/xhci-dwc3.c:125:9: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
      
      Introduced by 7e65e84 usb: host: xhci-dwc3: Convert driver to DM
      Signed-off-by: NPatrice Chotard <patrice.chotard@st.com>
      d38a8ea1
    • J
      phy: add a NO-OP phy driver · 3b63db37
      Jean-Jacques Hiblot 提交于
      This driver is used to stub PHY operations in a driver (USB, SATA).
      This is useful when the 'client' driver (USB, SATA, ...) uses the PHY
      framework and there is no actual PHY harwdare to drive.
      Signed-off-by: NJean-Jacques Hiblot <jjhiblot@ti.com>
      3b63db37