1. 06 Jan, 2021 1 commit
  2. 05 Jan, 2021 1 commit
  3. 04 Jan, 2021 1 commit
  4. 31 Dec, 2020 1 commit
  5. 30 Dec, 2020 1 commit
    • Greg Kroah-Hartman's avatar
      Merge tag 'misc-habanalabs-fixes-2020-12-30' of... · 0acfbe9c
      Greg Kroah-Hartman authored
      Merge tag 'misc-habanalabs-fixes-2020-12-30' of https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux into char-misc-linus
      
      Oded writes:
      
      This tag contains the following fixes for 5.11-rc2:
      
      - Fixes that are needed for supporting the new F/W with security features:
        - Correctly fetch PLL information in GOYA when security is enabled in F/W
        - Fix hard-reset support when F/W is in its preboot stage
        - Disable clock gating when initializing the H/W
        - Fix hard-reset procedure
        - Fix PCI controller initialization
      - Remove setting of Engine-Barrier in collective wait operations. This
        barrier created a drop in performance
      - Retry loading the TPC firmware in case of EINTR during loading
      - Fix CS counters
      - Register to PCI shutdown callback to fix handling of VM shutdown
      - Fix order of status check
      - Fix memory leak in reset procedure
      - Fix and add comments and fix indentations
      
      * tag 'misc-habanalabs-fixes-2020-12-30' of https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux:
        habanalabs: Fix memleak in hl_device_reset
        habanalabs: fix order of status check
        habanalabs: register to pci shutdown callback
        habanalabs: add validation cs counter, fix misplaced counters
        habanalabs/gaudi: retry loading TPC f/w on -EINTR
        habanalabs: adjust pci controller init to new firmware
        habanalabs: update comment in hl_boot_if.h
        habanalabs/gaudi: enhance reset message
        habanalabs: full FW hard reset support
        habanalabs/gaudi: disable CGM at HW initialization
        habanalabs: Revise comment to align with mirror list name
        habanalabs/gaudi: do not set EB in collective slave queues
        habanalabs: preboot hard reset support
        habanalabs: remove generic gaudi get_pll_freq function
        habanalabs: fetch PSOC PLL frequency from F/W in goya
        habanalabs: add comment for pll frequency ioctl opcode
        habanalabs: Fix a missing-braces warning
      0acfbe9c
  6. 29 Dec, 2020 1 commit
  7. 28 Dec, 2020 20 commits
  8. 27 Dec, 2020 8 commits
  9. 26 Dec, 2020 5 commits
  10. 25 Dec, 2020 1 commit
    • Linus Torvalds's avatar
      drm/amd/display: avoid uninitialized variable warning · 61d79136
      Linus Torvalds authored
      clang (quite rightly) complains fairly loudly about the newly added
      mpc1_get_mpc_out_mux() function returning an uninitialized value if the
      'opp_id' checks don't pass.
      
      This may not happen in practice, but the code really shouldn't return
      garbage if the sanity checks don't pass.
      
      So just initialize 'val' to zero to avoid the issue.
      
      Fixes: 110b055b ("drm/amd/display: add getter routine to retrieve mpcc mux")
      Cc: Josip Pavic <Josip.Pavic@amd.com>
      Cc: Bindu Ramamurthy <bindu.r@amd.com>
      Cc: Alex Deucher <alexander.deucher@amd.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      61d79136