Skip to content
  1. Oct 12, 2022
    • Sagi Grimberg's avatar
      nvme-multipath: fix possible hang in live ns resize with ANA access · 72e3b888
      Sagi Grimberg authored
      When we revalidate paths as part of ns size change (as of commit
      e7d65803
      
      ), it is possible that during the path revalidation, the
      only paths that is IO capable (i.e. optimized/non-optimized) are the
      ones that ns resize was not yet informed to the host, which will cause
      inflight requests to be requeued (as we have available paths but none
      are IO capable). These requests on the requeue list are waiting for
      someone to resubmit them at some point.
      
      The IO capable paths will eventually notify the ns resize change to the
      host, but there is nothing that will kick the requeue list to resubmit
      the queued requests.
      
      Fix this by always kicking the requeue list, and if no IO capable path
      exists, these requests will be queued again.
      
      A typical log that indicates that IOs are requeued:
      --
      nvme nvme1: creating 4 I/O queues.
      nvme nvme1: new ctrl: "testnqn1"
      nvme nvme2: creating 4 I/O queues.
      nvme nvme2: mapped 4/0/0 default/read/poll queues.
      nvme nvme2: new ctrl: NQN "testnqn1", addr 127.0.0.1:8009
      nvme nvme1: rescanning namespaces.
      nvme1n1: detected capacity change from 2097152 to 4194304
      block nvme1n1: no usable path - requeuing I/O
      block nvme1n1: no usable path - requeuing I/O
      block nvme1n1: no usable path - requeuing I/O
      block nvme1n1: no usable path - requeuing I/O
      block nvme1n1: no usable path - requeuing I/O
      block nvme1n1: no usable path - requeuing I/O
      block nvme1n1: no usable path - requeuing I/O
      block nvme1n1: no usable path - requeuing I/O
      block nvme1n1: no usable path - requeuing I/O
      block nvme1n1: no usable path - requeuing I/O
      nvme nvme2: rescanning namespaces.
      --
      
      Reported-by: default avatarYogev Cohen <yogev@lightbitslabs.com>
      Fixes: e7d65803
      
       ("nvme-multipath: revalidate paths during rescan")
      Signed-off-by: default avatarSagi Grimberg <sagi@grimberg.me>
      Cc: <stable@vger.kernel.org> # v5.15+
      Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
      72e3b888
    • Xi Ruoyao's avatar
      nvme-pci: avoid the deepest sleep state on ZHITAI TiPro5000 SSDs · d5d3c100
      Xi Ruoyao authored
      ZHITAI TiPro5000 SSDs has the same APST sleep problem as its cousin,
      TiPro7000.  The quirk for TiPro7000 has been added in
      commit 6b961bce
      
       ("nvme-pci: avoid the deepest sleep state on
      ZHITAI TiPro7000 SSDs"), use the same quirk for TiPro5000.
      
      The ASPT data from "nvme id-ctrl /dev/nvme1":
      
      vid       : 0x1e49
      ssvid     : 0x1e49
      sn        : ZTA21T0KA2227304LM
      mn        : ZHITAI TiPlus5000 1TB
      fr        : ZTA09139
      [...]
      ps    0 : mp:6.50W operational enlat:0 exlat:0 rrt:0 rrl:0
               rwt:0 rwl:0 idle_power:- active_power:-
      ps    1 : mp:5.80W operational enlat:0 exlat:0 rrt:1 rrl:1
               rwt:1 rwl:1 idle_power:- active_power:-
      ps    2 : mp:3.60W operational enlat:0 exlat:0 rrt:2 rrl:2
               rwt:2 rwl:2 idle_power:- active_power:-
      ps    3 : mp:0.0500W non-operational enlat:5000 exlat:10000 rrt:3 rrl:3
               rwt:3 rwl:3 idle_power:- active_power:-
      ps    4 : mp:0.0025W non-operational enlat:8000 exlat:45000 rrt:4 rrl:4
               rwt:4 rwl:4 idle_power:- active_power:-
      
      Reported-and-tested-by: default avatarChang Feng <flukehn@gmail.com>
      Signed-off-by: default avatarXi Ruoyao <xry111@xry111.site>
      Reviewed-by: default avatarChaitanya Kulkarni <kch@nvidia.com>
      Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
      d5d3c100
    • Abhijit's avatar
      nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM760 · 80b26240
      Abhijit authored
      
      
      Add a quirk to fix Lexar NM760 SSD drives reporting duplicate nsids.
      
      Signed-off-by: default avatarAbhijit <abhijit@abhijittomar.com>
      Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
      80b26240
    • Sagi Grimberg's avatar
      nvme-tcp: fix possible hang caused during ctrl deletion · c4abd875
      Sagi Grimberg authored
      When we delete a controller, we execute the following:
      1. nvme_stop_ctrl() - stop some work elements that may be
      	inflight or scheduled (specifically also .stop_ctrl
      	which cancels ctrl error recovery work)
      2. nvme_remove_namespaces() - which first flushes scan_work
      	to avoid competing ns addition/removal
      3. continue to teardown the controller
      
      However, if err_work was scheduled to run in (1), it is designed to
      cancel any inflight I/O, particularly I/O that is originating from ns
      scan_work in (2), but because it is cancelled in .stop_ctrl(), we can
      prevent forward progress of (2) as ns scanning is blocking on I/O
      (that will never be cancelled).
      
      The race is:
      1. transport layer error observed -> err_work is scheduled
      2. scan_work executes, discovers ns, generate I/O to it
      3. nvme_ctop_ctrl() -> .stop_ctrl() -> cancel_work_sync(err_work)
         - err_work never executed
      4. nvme_remove_namespaces() -> flush_work(scan_work)
      --> deadlock, because scan_work is blocked on I/O that was supposed
      to be cancelled by err_work, but was cancelled before executing (see
      stack trace [1]).
      
      Fix this by flushing err_work instead of cancelling it, to force it
      to execute and cancel all inflight I/O.
      
      [1]:
      --
      Call Trace:
       <TASK>
       __schedule+0x390/0x910
       ? scan_shadow_nodes+0x40/0x40
       schedule+0x55/0xe0
       io_schedule+0x16/0x40
       do_read_cache_page+0x55d/0x850
       ? __page_cache_alloc+0x90/0x90
       read_cache_page+0x12/0x20
       read_part_sector+0x3f/0x110
       amiga_partition+0x3d/0x3e0
       ? osf_partition+0x33/0x220
       ? put_partition+0x90/0x90
       bdev_disk_changed+0x1fe/0x4d0
       blkdev_get_whole+0x7b/0x90
       blkdev_get_by_dev+0xda/0x2d0
       device_add_disk+0x356/0x3b0
       nvme_mpath_set_live+0x13c/0x1a0 [nvme_core]
       ? nvme_parse_ana_log+0xae/0x1a0 [nvme_core]
       nvme_update_ns_ana_state+0x3a/0x40 [nvme_core]
       nvme_mpath_add_disk+0x120/0x160 [nvme_core]
       nvme_alloc_ns+0x594/0xa00 [nvme_core]
       nvme_validate_or_alloc_ns+0xb9/0x1a0 [nvme_core]
       ? __nvme_submit_sync_cmd+0x1d2/0x210 [nvme_core]
       nvme_scan_work+0x281/0x410 [nvme_core]
       process_one_work+0x1be/0x380
       worker_thread+0x37/0x3b0
       ? process_one_work+0x380/0x380
       kthread+0x12d/0x150
       ? set_kthread_struct+0x50/0x50
       ret_from_fork+0x1f/0x30
       </TASK>
      INFO: task nvme:6725 blocked for more than 491 seconds.
            Not tainted 5.15.65-f0.el7.x86_64 #1
      "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
      task:nvme            state:D
       stack:    0 pid: 6725 ppid:  1761 flags:0x00004000
      Call Trace:
       <TASK>
       __schedule+0x390/0x910
       ? sched_clock+0x9/0x10
       schedule+0x55/0xe0
       schedule_timeout+0x24b/0x2e0
       ? try_to_wake_up+0x358/0x510
       ? finish_task_switch+0x88/0x2c0
       wait_for_completion+0xa5/0x110
       __flush_work+0x144/0x210
       ? worker_attach_to_pool+0xc0/0xc0
       flush_work+0x10/0x20
       nvme_remove_namespaces+0x41/0xf0 [nvme_core]
       nvme_do_delete_ctrl+0x47/0x66 [nvme_core]
       nvme_sysfs_delete.cold.96+0x8/0xd [nvme_core]
       dev_attr_store+0x14/0x30
       sysfs_kf_write+0x38/0x50
       kernfs_fop_write_iter+0x146/0x1d0
       new_sync_write+0x114/0x1b0
       ? intel_pmu_handle_irq+0xe0/0x420
       vfs_write+0x18d/0x270
       ksys_write+0x61/0xe0
       __x64_sys_write+0x1a/0x20
       do_syscall_64+0x37/0x90
       entry_SYSCALL_64_after_hwframe+0x61/0xcb
      --
      
      Fixes: 3f2304f8
      
       ("nvme-tcp: add NVMe over TCP host driver")
      Reported-by: default avatarJonathan Nicklin <jnicklin@blockbridge.com>
      Signed-off-by: default avatarSagi Grimberg <sagi@grimberg.me>
      Tested-by: default avatarJonathan Nicklin <jnicklin@blockbridge.com>
      Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
      c4abd875
    • Sagi Grimberg's avatar
      nvme-rdma: fix possible hang caused during ctrl deletion · a1ae8d4d
      Sagi Grimberg authored
      When we delete a controller, we execute the following:
      1. nvme_stop_ctrl() - stop some work elements that may be
              inflight or scheduled (specifically also .stop_ctrl
              which cancels ctrl error recovery work)
      2. nvme_remove_namespaces() - which first flushes scan_work
              to avoid competing ns addition/removal
      3. continue to teardown the controller
      
      However, if err_work was scheduled to run in (1), it is designed to
      cancel any inflight I/O, particularly I/O that is originating from ns
      scan_work in (2), but because it is cancelled in .stop_ctrl(), we can
      prevent forward progress of (2) as ns scanning is blocking on I/O
      (that will never be cancelled).
      
      The race is:
      1. transport layer error observed -> err_work is scheduled
      2. scan_work executes, discovers ns, generate I/O to it
      3. nvme_ctop_ctrl() -> .stop_ctrl() -> cancel_work_sync(err_work)
         - err_work never executed
      4. nvme_remove_namespaces() -> flush_work(scan_work)
      --> deadlock, because scan_work is blocked on I/O that was supposed
      to be cancelled by err_work, but was cancelled before executing.
      
      Fix this by flushing err_work instead of cancelling it, to force it
      to execute and cancel all inflight I/O.
      
      Fixes: b435ecea ("nvme: Add .stop_ctrl to nvme ctrl ops")
      Fixes: f6c8e432
      
       ("nvme: flush namespace scanning work just before removing namespaces")
      Signed-off-by: default avatarSagi Grimberg <sagi@grimberg.me>
      Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
      a1ae8d4d
  2. Oct 11, 2022
    • Jens Axboe's avatar
      Merge branch 'for-6.1/block' into block-6.1 · 24a40334
      Jens Axboe authored
      Merge in later fixes.
      
      * for-6.1/block:
        block: fix leaking minors of hidden disks
        block: avoid sign extend problem with default queue flags mask
        blk-wbt: fix that 'rwb->wc' is always set to 1 in wbt_init()
        block: Remove the repeat word 'can'
        MAINTAINERS: Update SED-Opal Maintainers
      24a40334
  3. Oct 10, 2022
    • Christoph Hellwig's avatar
      block: fix leaking minors of hidden disks · a0a6314a
      Christoph Hellwig authored
      The major/minor of a hidden gendisk is not propagated to the block
      device because it is never registered using bdev_add.  But the lack of
      bd_dev also causes the dynamic major minor number not to be freed.
      Assign bd_dev manually to ensure the dynamic major minor gets freed.
      
      Based on a patch by Keith Busch.
      
      Fixes: 8ddcd653
      
       ("block: introduce GENHD_FL_HIDDEN")
      Reported-by: default avatarDaniel Wagner <dwagner@suse.de>
      Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
      Tested-by: default avatarDaniel Wagner <dwagner@suse.de>
      Reviewed-by: default avatarKeith Busch <kbusch@kernel.org>
      Link: https://lore.kernel.org/r/20221010131857.748129-1-hch@lst.de
      
      
      Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
      a0a6314a
    • Brian Foster's avatar
      block: avoid sign extend problem with default queue flags mask · ca5eebda
      Brian Foster authored
      
      
      request_queue->queue_flags is unsigned long, which is 8-bytes on
      64-bit architectures. Most queue flag modifications occur through
      bit field helpers, but default flags can be logically OR'd via the
      QUEUE_FLAG_MQ_DEFAULT mask. If this mask happens to include bit 31,
      the assignment can sign extend the field and set all upper 32 bits.
      
      This exact problem has been observed on a downstream kernel that
      happens to use bit 31 for QUEUE_FLAG_NOWAIT. This is not an
      immediate problem for current upstream because bit 31 is not
      included in the default flag assignment (and is not used at all,
      actually). Regardless, fix up the QUEUE_FLAG_MQ_DEFAULT mask
      definition to avoid the landmine in the future.
      
      Signed-off-by: default avatarBrian Foster <bfoster@redhat.com>
      Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
      Link: https://lore.kernel.org/r/20221003133534.1075582-1-bfoster@redhat.com
      
      
      Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
      ca5eebda
    • Linus Torvalds's avatar
      Merge tag 'ucount-rlimits-cleanups-for-v5.19' of... · 493ffd66
      Linus Torvalds authored
      Merge tag 'ucount-rlimits-cleanups-for-v5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
      
      Pull ucounts update from Eric Biederman:
       "Split rlimit and ucount values and max values
      
        After the ucount rlimit code was merged a bunch of small but
        siginificant bugs were found and fixed. At the time it was realized
        that part of the problem was that while the ucount rlimits were very
        similar to the oridinary ucounts (in being nested counts with limits)
        the semantics were slightly different and the code would be less error
        prone if there was less sharing.
      
        This is the long awaited cleanup that should hopefully keep things
        more comprehensible and less error prone for whoever needs to touch
        that code next"
      
      * tag 'ucount-rlimits-cleanups-for-v5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace:
        ucounts: Split rlimit and ucount values and max values
      493ffd66
    • Linus Torvalds's avatar
      Merge tag 'signal-for-v5.20' of... · e572410e
      Linus Torvalds authored
      Merge tag 'signal-for-v5.20' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
      
      Pull ptrace update from Eric Biederman:
       "ptrace: Stop supporting SIGKILL for PTRACE_EVENT_EXIT
      
        Recently I had a conversation where it was pointed out to me that
        SIGKILL sent to a tracee stropped in PTRACE_EVENT_EXIT is quite
        difficult for a tracer to handle.
      
        Keeping SIGKILL working after the process has been killed is pain from
        an implementation point of view.
      
        So since the debuggers don't want this behavior let's see if we can
        remove this wart for the userspace API
      
        If a regression is detected it should only need to be the last change
        that is the reverted. The other two are just general cleanups that
        make the last patch simpler"
      
      * tag 'signal-for-v5.20' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace:
        signal: Drop signals received after a fatal signal has been processed
        signal: Guarantee that SIGNAL_GROUP_EXIT is set on process exit
        signal: Ensure SIGNAL_GROUP_EXIT gets set in do_group_exit
      e572410e
    • Linus Torvalds's avatar
      Merge tag 'retire_mq_sysctls-for-v5.19' of... · 86fb9c53
      Linus Torvalds authored
      Merge tag 'retire_mq_sysctls-for-v5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
      
      Pull mqueue fix from Eric Biederman:
       "A fix for an unlikely but possible memory leak"
      
      * tag 'retire_mq_sysctls-for-v5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace:
        ipc: mqueue: fix possible memory leak in init_mqueue_fs()
      86fb9c53
    • Linus Torvalds's avatar
      Merge tag 'interrupting_kthread_stop-for-v5.20' of... · c71370bd
      Linus Torvalds authored
      Merge tag 'interrupting_kthread_stop-for-v5.20' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
      
      Pull kthread update from Eric Biederman:
       "Break out of wait loops on kthread_stop()
      
        This is a small tweak to kthread_stop so it breaks out of
        interruptible waits, that don't explicitly test for kthread_stop.
      
        These interruptible waits occassionaly occur in kernel threads do to
        code sharing"
      
      * tag 'interrupting_kthread_stop-for-v5.20' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace:
        signal: break out of wait loops on kthread_stop()
      c71370bd
    • Linus Torvalds's avatar
      Merge tag 'powerpc-6.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux · 4899a36f
      Linus Torvalds authored
      Pull powerpc updates from Michael Ellerman:
      
       - Remove our now never-true definitions for pgd_huge() and p4d_leaf().
      
       - Add pte_needs_flush() and huge_pmd_needs_flush() for 64-bit.
      
       - Add support for syscall wrappers.
      
       - Add support for KFENCE on 64-bit.
      
       - Update 64-bit HV KVM to use the new guest state entry/exit accounting
         API.
      
       - Support execute-only memory when using the Radix MMU (P9 or later).
      
       - Implement CONFIG_PARAVIRT_TIME_ACCOUNTING for pseries guests.
      
       - Updates to our linker script to move more data into read-only
         sections.
      
       - Allow the VDSO to be randomised on 32-bit.
      
       - Many other small features and fixes.
      
      Thanks to Andrew Donnellan, Aneesh Kumar K.V, Arnd Bergmann, Athira
      Rajeev, Christophe Leroy, David Hildenbrand, Disha Goel, Fabiano Rosas,
      Gaosheng Cui, Gustavo A. R. Silva, Haren Myneni, Hari Bathini, Jilin
      Yuan, Joel Stanley, Kajol Jain, Kees Cook, Krzysztof Kozlowski, Laurent
      Dufour, Liang He, Li Huafei, Lukas Bulwahn, Madhavan Srinivasan, Nathan
      Chancellor, Nathan Lynch, Nicholas Miehlbradt, Nicholas Piggin, Pali
      Rohár, Rohan McLure, Russell Currey, Sachin Sant, Segher Boessenkool,
      Shrikanth Hegde, Tyrel Datwyler, Wolfram Sang, ye xingchen, and Zheng
      Yongjun.
      
      * tag 'powerpc-6.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux: (214 commits)
        KVM: PPC: Book3S HV: Fix stack frame regs marker
        powerpc: Don't add __powerpc_ prefix to syscall entry points
        powerpc/64s/interrupt: Fix stack frame regs marker
        powerpc/64: Fix msr_check_and_set/clear MSR[EE] race
        powerpc/64s/interrupt: Change must-hard-mask interrupt check from BUG to WARN
        powerpc/pseries: Add firmware details to the hardware description
        powerpc/powernv: Add opal details to the hardware description
        powerpc: Add device-tree model to the hardware description
        powerpc/64: Add logical PVR to the hardware description
        powerpc: Add PVR & CPU name to hardware description
        powerpc: Add hardware description string
        powerpc/configs: Enable PPC_UV in powernv_defconfig
        powerpc/configs: Update config files for removed/renamed symbols
        powerpc/mm: Fix UBSAN warning reported on hugetlb
        powerpc/mm: Always update max/min_low_pfn in mem_topology_setup()
        powerpc/mm/book3s/hash: Rename flush_tlb_pmd_range
        powerpc: Drops STABS_DEBUG from linker scripts
        powerpc/64s: Remove lost/old comment
        powerpc/64s: Remove old STAB comment
        powerpc: remove orphan systbl_chk.sh
        ...
      4899a36f
    • Linus Torvalds's avatar
      Merge tag 's390-6.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux · 03785a69
      Linus Torvalds authored
      Pull s390 updates from Vasily Gorbik:
      
       - Make use of the IBM z16 processor activity instrumentation facility
         extension to count neural network processor assist operations: add a
         new PMU device driver so that perf can make use of this.
      
       - Rework memcpy_real() to avoid DAT-off mode.
      
       - Rework absolute lowcore access code.
      
       - Various small fixes and improvements all over the code.
      
      * tag 's390-6.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux:
        s390/pci: remove unused bus_next field from struct zpci_dev
        s390/cio: remove unused ccw_device_force_console() declaration
        s390/pai: Add support for PAI Extension 1 NNPA counters
        s390/mm: fix no previous prototype warnings in maccess.c
        s390/mm: uninline copy_oldmem_kernel() function
        s390/mm,ptdump: add real memory copy page markers
        s390/mm: rework memcpy_real() to avoid DAT-off mode
        s390/dump: save IPL CPU registers once DAT is available
        s390/pci: convert high_memory to physical address
        s390/smp,ptdump: add absolute lowcore markers
        s390/smp: rework absolute lowcore access
        s390/smp: call smp_reinit_ipl_cpu() before scheduler is available
        s390/ptdump: add missing amode31 markers
        s390/mm: split lowcore pages with set_memory_4k()
        s390/mm: remove unused access parameter from do_fault_error()
        s390/delay: sync comment within __delay() with reality
        s390: move from strlcpy with unused retval to strscpy
      03785a69
    • Linus Torvalds's avatar
      Merge tag 'riscv-for-linus-6.1-mw1' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux · 2e64066d
      Linus Torvalds authored
      Pull RISC-V updates from Palmer Dabbelt:
      
       - Improvements to the CPU topology subsystem, which fix some issues
         where RISC-V would report bad topology information.
      
       - The default NR_CPUS has increased to XLEN, and the maximum
         configurable value is 512.
      
       - The CD-ROM filesystems have been enabled in the defconfig.
      
       - Support for THP_SWAP has been added for rv64 systems.
      
      There are also a handful of cleanups and fixes throughout the tree.
      
      * tag 'riscv-for-linus-6.1-mw1' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux:
        riscv: enable THP_SWAP for RV64
        RISC-V: Print SSTC in canonical order
        riscv: compat: s/failed/unsupported if compat mode isn't supported
        RISC-V: Increase range and default value of NR_CPUS
        cpuidle: riscv-sbi: Fix CPU_PM_CPU_IDLE_ENTER_xyz() macro usage
        perf: RISC-V: throttle perf events
        perf: RISC-V: exclude invalid pmu counters from SBI calls
        riscv: enable CD-ROM file systems in defconfig
        riscv: topology: fix default topology reporting
        arm64: topology: move store_cpu_topology() to shared code
      2e64066d
    • Linus Torvalds's avatar
      Merge tag 'microblaze-v6.1' of git://git.monstr.eu/linux-2.6-microblaze · 57c92724
      Linus Torvalds authored
      Pull microblaze updates from Michal Simek:
       "This adds architecture support for error injection which can be done
        only via local memory (BRAM) with enabling path for recovery after
        reset.
      
        These patches targets Triple Modular Redundacy (TMR) configuration
        where 3 Microblazes are running in parallel with monitoring logic.
      
        When an error happens (or is injected) system goes to break handler
        with full CPU reset and system recovery back to origin context. More
        information can be found at [1]"
      
      Link: https://www.xilinx.com/content/dam/xilinx/support/documents/ip_documentation/tmr/v1_0/pg268-tmr.pdf [1]
      
      * tag 'microblaze-v6.1' of git://git.monstr.eu/linux-2.6-microblaze:
        microblaze: Add support for error injection
        microblaze: Add custom break vector handler for mb manager
        microblaze: Add xmb_manager_register function
      57c92724
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm · ef688f8b
      Linus Torvalds authored
      Pull kvm updates from Paolo Bonzini:
       "The first batch of KVM patches, mostly covering x86.
      
        ARM:
      
         - Account stage2 page table allocations in memory stats
      
        x86:
      
         - Account EPT/NPT arm64 page table allocations in memory stats
      
         - Tracepoint cleanups/fixes for nested VM-Enter and emulated MSR
           accesses
      
         - Drop eVMCS controls filtering for KVM on Hyper-V, all known
           versions of Hyper-V now support eVMCS fields associated with
           features that are enumerated to the guest
      
         - Use KVM's sanitized VMCS config as the basis for the values of
           nested VMX capabilities MSRs
      
         - A myriad event/exception fixes and cleanups. Most notably, pending
           exceptions morph into VM-Exits earlier, as soon as the exception is
           queued, instead of waiting until the next vmentry. This fixed a
           longstanding issue where the exceptions would incorrecly become
           double-faults instead of triggering a vmexit; the common case of
           page-fault vmexits had a special workaround, but now it's fixed for
           good
      
         - A handful of fixes for memory leaks in error paths
      
         - Cleanups for VMREAD trampoline and VMX's VM-Exit assembly flow
      
         - Never write to memory from non-sleepable kvm_vcpu_check_block()
      
         - Selftests refinements and cleanups
      
         - Misc typo cleanups
      
        Generic:
      
         - remove KVM_REQ_UNHALT"
      
      * tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm: (94 commits)
        KVM: remove KVM_REQ_UNHALT
        KVM: mips, x86: do not rely on KVM_REQ_UNHALT
        KVM: x86: never write to memory from kvm_vcpu_check_block()
        KVM: x86: Don't snapshot pending INIT/SIPI prior to checking nested events
        KVM: nVMX: Make event request on VMXOFF iff INIT/SIPI is pending
        KVM: nVMX: Make an event request if INIT or SIPI is pending on VM-Enter
        KVM: SVM: Make an event request if INIT or SIPI is pending when GIF is set
        KVM: x86: lapic does not have to process INIT if it is blocked
        KVM: x86: Rename kvm_apic_has_events() to make it INIT/SIPI specific
        KVM: x86: Rename and expose helper to detect if INIT/SIPI are allowed
        KVM: nVMX: Make an event request when pending an MTF nested VM-Exit
        KVM: x86: make vendor code check for all nested events
        mailmap: Update Oliver's email address
        KVM: x86: Allow force_emulation_prefix to be written without a reload
        KVM: selftests: Add an x86-only test to verify nested exception queueing
        KVM: selftests: Use uapi header to get VMX and SVM exit reasons/codes
        KVM: x86: Rename inject_pending_events() to kvm_check_and_inject_events()
        KVM: VMX: Update MTF and ICEBP comments to document KVM's subtle behavior
        KVM: x86: Treat pending TRIPLE_FAULT requests as pending exceptions
        KVM: x86: Morph pending exceptions to pending VM-Exits at queue time
        ...
      ef688f8b
  4. Oct 09, 2022
    • Linus Torvalds's avatar
      Merge tag 'efi-next-for-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi · 0e470763
      Linus Torvalds authored
      Pull EFI updates from Ard Biesheuvel:
       "A bit more going on than usual in the EFI subsystem. The main driver
        for this has been the introduction of the LoonArch architecture last
        cycle, which inspired some cleanup and refactoring of the EFI code.
        Another driver for EFI changes this cycle and in the future is
        confidential compute.
      
        The LoongArch architecture does not use either struct bootparams or DT
        natively [yet], and so passing information between the EFI stub and
        the core kernel using either of those is undesirable. And in general,
        overloading DT has been a source of issues on arm64, so using DT for
        this on new architectures is a to avoid for the time being (even if we
        might converge on something DT based for non-x86 architectures in the
        future). For this reason, in addition to the patch that enables EFI
        boot for LoongArch, there are a number of refactoring patches applied
        on top of which separate the DT bits from the generic EFI stub bits.
        These changes are on a separate topich branch that has been shared
        with the LoongArch maintainers, who will include it in their pull
        request as well. This is not ideal, but the best way to manage the
        conflicts without stalling LoongArch for another cycle.
      
        Another development inspired by LoongArch is the newly added support
        for EFI based decompressors. Instead of adding yet another
        arch-specific incarnation of this pattern for LoongArch, we are
        introducing an EFI app based on the existing EFI libstub
        infrastructure that encapulates the decompression code we use on other
        architectures, but in a way that is fully generic. This has been
        developed and tested in collaboration with distro and systemd folks,
        who are eager to start using this for systemd-boot and also for arm64
        secure boot on Fedora. Note that the EFI zimage files this introduces
        can also be decompressed by non-EFI bootloaders if needed, as the
        image header describes the location of the payload inside the image,
        and the type of compression that was used. (Note that Fedora's arm64
        GRUB is buggy [0] so you'll need a recent version or switch to
        systemd-boot in order to use this.)
      
        Finally, we are adding TPM measurement of the kernel command line
        provided by EFI. There is an oversight in the TCG spec which results
        in a blind spot for command line arguments passed to loaded images,
        which means that either the loader or the stub needs to take the
        measurement. Given the combinatorial explosion I am anticipating when
        it comes to firmware/bootloader stacks and firmware based attestation
        protocols (SEV-SNP, TDX, DICE, DRTM), it is good to set a baseline now
        when it comes to EFI measured boot, which is that the kernel measures
        the initrd and command line. Intermediate loaders can measure
        additional assets if needed, but with the baseline in place, we can
        deploy measured boot in a meaningful way even if you boot into Linux
        straight from the EFI firmware.
      
        Summary:
      
         - implement EFI boot support for LoongArch
      
         - implement generic EFI compressed boot support for arm64, RISC-V and
           LoongArch, none of which implement a decompressor today
      
         - measure the kernel command line into the TPM if measured boot is in
           effect
      
         - refactor the EFI stub code in order to isolate DT dependencies for
           architectures other than x86
      
         - avoid calling SetVirtualAddressMap() on arm64 if the configured
           size of the VA space guarantees that doing so is unnecessary
      
         - move some ARM specific code out of the generic EFI source files
      
         - unmap kernel code from the x86 mixed mode 1:1 page tables"
      
      * tag 'efi-next-for-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi: (24 commits)
        efi/arm64: libstub: avoid SetVirtualAddressMap() when possible
        efi: zboot: create MemoryMapped() device path for the parent if needed
        efi: libstub: fix up the last remaining open coded boot service call
        efi/arm: libstub: move ARM specific code out of generic routines
        efi/libstub: measure EFI LoadOptions
        efi/libstub: refactor the initrd measuring functions
        efi/loongarch: libstub: remove dependency on flattened DT
        efi: libstub: install boot-time memory map as config table
        efi: libstub: remove DT dependency from generic stub
        efi: libstub: unify initrd loading between architectures
        efi: libstub: remove pointless goto kludge
        efi: libstub: simplify efi_get_memory_map() and struct efi_boot_memmap
        efi: libstub: avoid efi_get_memory_map() for allocating the virt map
        efi: libstub: drop pointless get_memory_map() call
        efi: libstub: fix type confusion for load_options_size
        arm64: efi: enable generic EFI compressed boot
        loongarch: efi: enable generic EFI compressed boot
        riscv: efi: enable generic EFI compressed boot
        efi/libstub: implement generic EFI zboot
        efi/libstub: move efi_system_table global var into separate object
        ...
      0e470763
    • Yu Kuai's avatar
      blk-wbt: fix that 'rwb->wc' is always set to 1 in wbt_init() · 285febab
      Yu Kuai authored
      commit 8c5035df ("blk-wbt: call rq_qos_add() after wb_normal is
      initialized") moves wbt_set_write_cache() before rq_qos_add(), which
      is wrong because wbt_rq_qos() is still NULL.
      
      Fix the problem by removing wbt_set_write_cache() and setting 'rwb->wc'
      directly. Noted that this patch also remove the redundant setting of
      'rab->wc'.
      
      Fixes: 8c5035df
      
       ("blk-wbt: call rq_qos_add() after wb_normal is initialized")
      Reported-by: default avatarkernel test robot <yujie.liu@intel.com>
      Link: https://lore.kernel.org/r/202210081045.77ddf59b-yujie.liu@intel.com
      
      
      Signed-off-by: default avatarYu Kuai <yukuai3@huawei.com>
      Reviewed-by: default avatarMing Lei <ming.lei@redhat.com>
      Link: https://lore.kernel.org/r/20221009101038.1692875-1-yukuai1@huaweicloud.com
      
      
      Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
      285febab
    • Linus Torvalds's avatar
      Merge tag 'mailbox-v6.1' of git://git.linaro.org/landing-teams/working/fujitsu/integration · a6afa419
      Linus Torvalds authored
      Pull mailbox updates from Jassi Brar:
      
       - apple: implement poll and flush callbacks
      
       - qcom: fix clocks for IPQ6018 and IPQ8074 irq handler as not-a-thread
      
       - microchip: split reg-space into two
      
       - imx: RST channel fix
      
       - bcm: fix dma_map_sg error handling
      
       - misc: spelling fix in pcc driver
      
      * tag 'mailbox-v6.1' of git://git.linaro.org/landing-teams/working/fujitsu/integration:
        mailbox: qcom-ipcc: flag IRQ NO_THREAD
        mailbox: pcc: Fix spelling mistake "Plaform" -> "Platform"
        mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg
        mailbox: qcom-apcs-ipc: add IPQ8074 APSS clock support
        dt-bindings: mailbox: qcom: correct clocks for IPQ6018 and IPQ8074
        dt-bindings: mailbox: qcom: set correct #clock-cells
        mailbox: mpfs: account for mbox offsets while sending
        mailbox: mpfs: fix handling of the reg property
        dt-bindings: mailbox: fix the mpfs' reg property
        mailbox: imx: fix RST channel support
        mailbox: apple: Implement poll_data() operation
        mailbox: apple: Implement flush() operation
      a6afa419
    • Linus Torvalds's avatar
      Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux · bdc753c7
      Linus Torvalds authored
      Pull clk updates from Stephen Boyd:
       "We have some late breaking reports that a patch series to rework clk
        rate range support broke boot on some devices, so I've left that
        branch out of this. Hopefully we can get to that next week, or punt on
        it and let it bake another cycle. That means we don't really have any
        changes to the core framework this time around besides a few typo
        fixes. Instead this is all clk driver updates and fixes.
      
        The usual suspects are here (again), with Qualcomm dominating the
        diffstat. We look to have gained support for quite a few new Qualcomm
        SoCs and Dmitry worked on updating many of the existing Qualcomm
        drivers to use clk_parent_data. After that we have MediaTek drivers
        getting some much needed updates, in particular to support GPU DVFS.
        There are also quite a few Samsung clk driver patches, but that's
        mostly because there was a maintainer change and so last release we
        missed some of those patches.
      
        Overall things look normal, but I'm slowly reviewing core framework
        code nowadays and that shows given the rate range patches had to be
        yanked last minute. Let's hope this situation changes soon.
      
        New Drivers:
         - Support for Renesas VersaClock7 clock generator family
         - Add Spreadtrum UMS512 SoC clk support
         - New clock drivers for MediaTek Helio X10 MT6795
         - Display clks for Qualcomm SM6115, SM8450
         - GPU clks for Qualcomm SC8280XP
         - Qualcomm MSM8909 and SM6375 global and SMD RPM clk drivers
      
        Deleted Drivers:
         - Remove DaVinci DM644x and DM646x clk driver support
      
        Updates:
         - Convert Baikal-T1 CCU driver to platform driver
         - Split reset support out of primary Baikal-T1 CCU driver
         - Add some missing clks required for RPiVid Video Decoder on
           RaspberryPi
         - Mark PLLC critical on bcm2835
         - More devm helpers for fixed rate registration
         - Various PXA168 clk driver fixes
         - Add resets for MediaTek MT8195 PCIe and USB
         - Miscellaneous of_node_put() fixes
         - Nuke dt-bindings/clk path (again) by moving headers to
           dt-bindings/clock
         - Convert gpio-clk-gate binding to YAML
         - Various fixes to AMD/Xilinx Zynqmp clk driver
         - Graduate AMD/Xilinx "clocking wizard" driver from staging
         - Add missing DPI1_HDMI clock in MT8195 VDOSYS1
         - Clock driver changes to support GPU DVFS on MT8183, MT8192, MT8195
         - Fix GPU clock topology on MT8195
         - Propogate rate changes from GPU clock gate up the tree
         - Clock mux notifiers for GPU-related PLLs
         - Conversion of more "simple" drivers to mtk_clk_simple_probe()
         - Hook up mtk_clk_simple_remove() for "simple" MT8192 clock drivers
         - Fixes to previous |struct clk| to |struct clk_hw| conversion on
           MediaTek
         - Shrink MT8192 clock driver by deduplicating clock parent lists
         - Change order between 'sim_enet_root_clk' and 'enet_qos_root_clk'
           clocks for i.MX8MP
         - Drop unnecessary newline in i.MX8MM dt-bindings
         - Add more MU1 and SAI clocks dt-bindings Ids
         - Introduce slice busy bit check for i.MX93 composite clock
         - Introduce white list bit check for i.MX93 composite clock
         - Add new i.MX93 clock gate
         - Add MU1 and MU2 clocks to i.MX93 clock provider
         - Add SAI IPG clocks to i.MX93 clock provider
         - add generic clocks for U(S)ART available on SAMA5D2 SoCs
         - reset controller support for Polarfire clocks
         - .round_rate and .set rate support for clk-mpfs
         - code cleanup for clk-mpfs
         - PLL support for PolarFire SoC's Clock Conditioning Circuitry
         - Add watchdog, I2C, pin control/GPIO, and Ethernet clocks on R-Car
           V4H
         - Add SDHI, Timer (CMT/TMU), and SPI (MSIOF) clocks on R-Car S4-8
         - Add I2C clocks and resets on RZ/V2M
         - Document clock support for the RZ/Five SoC
         - mux-variant clock using the table variant to select parents
         - clock controller for the rv1126 soc
         - conversion of rk3128 to yaml and relicensing of the yaml bindings
           to gpl2+MIT (following dt-binding guildelines)
         - Exynos7885: add FSYS, TREX and MFC clock controllers
         - Exynos850: add IS and AUD (audio) clock controllers with bindings
         - ExynosAutov9: add FSYS clock controllers with bindings
         - ExynosAutov9: correct clock IDs in bindings of Peric 0 and 1 clock
           controllers, due to duplicated entries. This is an acceptable ABI
           break: recently developed/added platform so without legacies, acked
           by known users/developers
         - ExynosAutov9: add few missing Peric 0/1 gates
         - ExynosAutov9: correct register offsets of few Peric 0/1 clocks
         - Minor code improvements (use of_device_get_match_data() helper,
           code style)
         - Add Krzysztof Kozlowski as co-maintainer of Samsung SoC clocks, as
           he already maintainers that architecture/platform
         - Keep Qualcomm GDSCs enabled when PWRSTS_RET flag is there, solving
           retention issues during suspend of USB on Qualcomm sc7180/sc7280
           and SC8280XP
         - Qualcomm SM6115 and QCM2260 are moved to reuse PLL configuration
         - Qualcomm SDM660 SDCC1 moved to floor clk ops
         - Support for the APCS PLLs for Qualcomm IPQ8064, IPQ8074 and IPQ6018
           was added/fixed
         - The Qualcomm MSM8996 CPU clocks are updated with support for ACD
         - Support for Qualcomm SDM670 GCC and RPMh clks was added
         - Transition to parent_data, parent_hws and use of ARRAY_SIZE() for
           num_parents was done for many Qualcomm SoCs
         - Support for per-reset defined delay on Qualcomm was introduced"
      
      * tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: (283 commits)
        clk: qcom: gcc-sm6375: Ensure unsigned long type
        clk: qcom: gcc-sm6375: Remove unused variables
        clk: qcom: kpss-xcc: convert to parent data API
        clk: introduce (devm_)hw_register_mux_parent_data_table API
        clk: allow building lan966x as a module
        clk: clk-xgene: simplify if-if to if-else
        clk: ast2600: BCLK comes from EPLL
        clk: clocking-wizard: Depend on HAS_IOMEM
        clk: clocking-wizard: Use dev_err_probe() helper
        clk: nxp: fix typo in comment
        clk: pxa: add a check for the return value of kzalloc()
        clk: vc5: Add support for IDT/Renesas VersaClock 5P49V6975
        dt-bindings: clock: vc5: Add 5P49V6975
        clk: mvebu: armada-37xx-tbg: Remove the unneeded result variable
        clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe
        clk: Renesas versaclock7 ccf device driver
        dt-bindings: Renesas versaclock7 device tree bindings
        clk: ti: Balance of_node_get() calls for of_find_node_by_name()
        clk: imx: scu: fix memleak on platform_device_add() fails
        clk: vc5: Use regmap_{set,clear}_bits() where appropriate
        ...
      bdc753c7
    • Linus Torvalds's avatar
      Merge tag 'gpio-updates-for-v6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux · f0160397
      Linus Torvalds authored
      Pull gpio updates from Bartosz Golaszewski:
       "We have a single new driver, support for a bunch of new models,
        improvements in drivers and core gpiolib code as well device-tree
        bindings changes.
      
        Summary:
      
        New driver:
         - IMX System Controller Unit GPIOs
      
        GPIO core:
         - add fdinfo output for the GPIO character device file descriptors
           (allows user-space to determine which processes own which GPIO
           lines)
         - improvements to OF GPIO code
         - new quirk for Asus UM325UAZ in gpiolib-acpi
         - new quirk for Freescale SPI in gpiolib-of
      
        Driver improvements:
         - add a new macro that reduces the amount of boilerplate code in ISA
           drivers and use it in relevant drivers
         - support two new models in gpio-pca953x
         - support new model in gpio-f7188x
         - convert more drivers to use immutable irq chips
         - other minor tweaks
      
        Device-tree bindings:
         - add DT bindings for gpio-imx-scu
         - convert Xilinx GPIO bindings to YAML
         - reference the properties from the SPI peripheral device-tree
           bindings instead of providing custom ones in the GPIO controller
           document
         - add parsing of GPIO hog nodes to the DT bindings for gpio-mpfs-gpio
         - relax the node name requirements in gpio-stmpe
         - add new models for gpio-rcar and gpio-pxa95xx
         - add a new vendor prefix: Diodes (for Diodes, Inc.)
      
        Misc:
         - pulled in the immutable branch from the x86 platform drivers tree
           including support for a new simatic board that depends on GPIO
           changes"
      
      * tag 'gpio-updates-for-v6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: (36 commits)
        gpio: tc3589x: Make irqchip immutable
        gpiolib: cdev: add fdinfo output for line request file descriptors
        gpio: twl4030: Reorder functions which allows to drop a forward declaraion
        gpiolib: fix OOB access in quirk callbacks
        gpiolib: of: factor out conversion from OF flags
        gpiolib: rework quirk handling in of_find_gpio()
        gpiolib: of: make Freescale SPI quirk similar to all others
        gpiolib: of: do not ignore requested index when applying quirks
        gpio: ws16c48: Ensure number of irq matches number of base
        gpio: 104-idio-16: Ensure number of irq matches number of base
        gpio: 104-idi-48: Ensure number of irq matches number of base
        gpio: 104-dio-48e: Ensure number of irq matches number of base
        counter: 104-quad-8: Ensure number of irq matches number of base
        isa: Introduce the module_isa_driver_with_irq helper macro
        gpio: pca953x: Add support for PCAL6534
        gpio: pca953x: Swap if statements to save later complexity
        gpio: pca953x: Fix pca953x_gpio_set_pull_up_down()
        dt-bindings: gpio: pca95xx: add entry for pcal6534 and PI4IOE5V6534Q
        dt-bindings: vendor-prefixes: add Diodes
        gpio: mt7621: Switch to use platform_get_irq() function
        ...
      f0160397
    • Linus Torvalds's avatar
      Merge tag 'staging-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging · 3002b7a3
      Linus Torvalds authored
      Pull staging driver updates from Greg KH:
       "Here is the large set of staging driver changes for 6.1-rc1.
      
        Nothing really interesting in here at all except we deleted a driver
        (fwserial) as no one had been using it for a long time. Other than
        that, just the normal cleanups and minor fixes:
      
         - rtl8723bs driver cleanups
      
         - loads of r8188eu driver cleanups, making the driver smaller and
           fixing up some firmware dependency issues.
      
         - vt6655 driver cleanups.
      
         - lots of other small staging driver cleanups.
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'staging-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: (266 commits)
        staging: rtl8192e: Rename variable Bandwidth to avoid CamelCase
        staging: r8188eu: remove PHY_RFConfig8188E()
        staging: r8188eu: remove PHY_RF6052_Config8188E()
        staging: r8188eu: convert ODM_ReadAndConfig_AGC_TAB_1T_8188E() to int
        staging: r8188eu: convert ODM_ReadAndConfig_PHY_REG_1T_8188E() to int
        staging: r8188eu: convert ODM_ReadAndConfig_RadioA_1T_8188E() to int
        staging: r8188eu: convert ODM_ReadAndConfig_MAC_REG_8188E() to int
        staging: rtl8192e: cmdpkt: Use skb_put_data() instead of skb_put/memcpy pair
        staging: r8188eu: Use skb_put_data() instead of skb_put/memcpy pair
        staging: r8188eu: remove hal/odm_RegConfig8188E.c
        staging: r8188eu: make odm_ConfigRF_RadioA_8188E() static
        staging: r8188eu: make odm_ConfigMAC_8188E() static
        staging: r8188eu: don't check for stop/removal in the blink worker
        staging: r8188eu: don't check bSurpriseRemoved in SwLedOff
        staging: rtl8192e: Remove unused variables ForcedAMSDUMaxSize, ...
        staging: rtl8192e: Rename CurrentMPDU..., ForcedAMPDU... and ForcedMPDU...
        staging: rtl8192e: Rename SelfMimoPs, CurrentOpMode and bForcedShortGI
        staging: rtl8192e: Rename PeerMimoPs, IOTAction and IOTRaFunc
        staging: rtl8192e: Rename RxRe...WinSize, RxReorder... and RxReorderDr...
        staging: rtl8192e: Rename szRT2RTAggBuffer, bRegRxRe... and bCurRxReo...
        ...
      3002b7a3
  5. Oct 08, 2022
    • Linus Torvalds's avatar
      Merge tag 'char-misc-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc · a0947666
      Linus Torvalds authored
      Pull char/misc and other driver updates from Greg KH:
       "Here is the large set of char/misc and other small driver subsystem
        changes for 6.1-rc1. Loads of different things in here:
      
         - IIO driver updates, additions, and changes. Probably the largest
           part of the diffstat
      
         - habanalabs driver update with support for new hardware and
           features, the second largest part of the diff.
      
         - fpga subsystem driver updates and additions
      
         - mhi subsystem updates
      
         - Coresight driver updates
      
         - gnss subsystem updates
      
         - extcon driver updates
      
         - icc subsystem updates
      
         - fsi subsystem updates
      
         - nvmem subsystem and driver updates
      
         - misc driver updates
      
         - speakup driver additions for new features
      
         - lots of tiny driver updates and cleanups
      
        All of these have been in the linux-next tree for a while with no
        reported issues"
      
      * tag 'char-misc-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: (411 commits)
        w1: Split memcpy() of struct cn_msg flexible array
        spmi: pmic-arb: increase SPMI transaction timeout delay
        spmi: pmic-arb: block access for invalid PMIC arbiter v5 SPMI writes
        spmi: pmic-arb: correct duplicate APID to PPID mapping logic
        spmi: pmic-arb: add support to dispatch interrupt based on IRQ status
        spmi: pmic-arb: check apid against limits before calling irq handler
        spmi: pmic-arb: do not ack and clear peripheral interrupts in cleanup_irq
        spmi: pmic-arb: handle spurious interrupt
        spmi: pmic-arb: add a print in cleanup_irq
        drivers: spmi: Directly use ida_alloc()/free()
        MAINTAINERS: add TI ECAP driver info
        counter: ti-ecap-capture: capture driver support for ECAP
        Documentation: ABI: sysfs-bus-counter: add frequency & num_overflows items
        dt-bindings: counter: add ti,am62-ecap-capture.yaml
        counter: Introduce the COUNTER_COMP_ARRAY component type
        counter: Consolidate Counter extension sysfs attribute creation
        counter: Introduce the Count capture component
        counter: 104-quad-8: Add Signal polarity component
        counter: Introduce the Signal polarity component
        counter: interrupt-cnt: Implement watch_validate callback
        ...
      a0947666
    • Linus Torvalds's avatar
      Merge tag 'driver-core-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core · e8bc52cb
      Linus Torvalds authored
      Pull driver core updates from Greg KH:
       "Here is the big set of driver core and debug printk changes for
        6.1-rc1. Included in here is:
      
         - dynamic debug updates for the core and the drm subsystem. The drm
           changes have all been acked by the relevant maintainers
      
         - kernfs fixes for syzbot reported problems
      
         - kernfs refactors and updates for cgroup requirements
      
         - magic number cleanups and removals from the kernel tree (they were
           not being used and they really did not actually do anything)
      
         - other tiny cleanups
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'driver-core-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (74 commits)
        docs: filesystems: sysfs: Make text and code for ->show() consistent
        Documentation: NBD_REQUEST_MAGIC isn't a magic number
        a.out: restore CMAGIC
        device property: Add const qualifier to device_get_match_data() parameter
        drm_print: add _ddebug descriptor to drm_*dbg prototypes
        drm_print: prefer bare printk KERN_DEBUG on generic fn
        drm_print: optimize drm_debug_enabled for jump-label
        drm-print: add drm_dbg_driver to improve namespace symmetry
        drm-print.h: include dyndbg header
        drm_print: wrap drm_*_dbg in dyndbg descriptor factory macro
        drm_print: interpose drm_*dbg with forwarding macros
        drm: POC drm on dyndbg - use in core, 2 helpers, 3 drivers.
        drm_print: condense enum drm_debug_category
        debugfs: use DEFINE_SHOW_ATTRIBUTE to define debugfs_regset32_fops
        driver core: use IS_ERR_OR_NULL() helper in device_create_groups_vargs()
        Documentation: ENI155_MAGIC isn't a magic number
        Documentation: NBD_REPLY_MAGIC isn't a magic number
        nbd: remove define-only NBD_MAGIC, previously magic number
        Documentation: FW_HEADER_MAGIC isn't a magic number
        Documentation: EEPROM_MAGIC_VALUE isn't a magic number
        ...
      e8bc52cb
    • Linus Torvalds's avatar
      Merge tag 'usb-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb · d3dcbe24
      Linus Torvalds authored
      Pull USB / Thunderbolt updates from Greg KH:
       "Here is the big set of USB and Thunderbolt driver changes for 6.1-rc1.
      
        Nothing major in here, lots of little things with new devices
        supported and updates for a few drivers. Highlights include:
      
         - thunderbolt/USB4 devices supported a bit better than before, and
           some new ids to enable new hardware devices
      
         - USB gadget uvc updates for newer video formats and better v4l
           integration (the v4l portions were acked by those maintainers)
      
         - typec updates for tiny issues and more typec drivers for new chips.
      
         - xhci tiny updates for minor issues
      
         - big usb-serial ftdi_sio driver update to handle new devices better
      
         - lots of tiny dwc3 fixes and updates for the IP block that is
           showing up everywhere these days
      
         - dts updates for new devices being supported
      
         - other tiny janitorial and cleanups fixes for lots of different USB
           drivers. Full details are in the shortlog.
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'usb-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (169 commits)
        usb: gadget: uvc: don't put item still in use
        usb: gadget: uvc: Fix argument to sizeof() in uvc_register_video()
        usb: host: ehci-exynos: switch to using gpiod API
        Revert "usb: dwc3: Don't switch OTG -> peripheral if extcon is present"
        Revert "USB: fixup for merge issue with "usb: dwc3: Don't switch OTG -> peripheral if extcon is present""
        dt-bindings: usb: Convert FOTG210 to dt schema
        usb: mtu3: fix failed runtime suspend in host only mode
        USB: omap_udc: Fix spelling mistake: "tranceiver_ctrl" -> "transceiver_ctrl"
        usb: typec: ucsi_ccg: Disable UCSI ALT support on Tegra
        usb: typec: Replace custom implementation of device_match_fwnode()
        usb: typec: ucsi: Don't warn on probe deferral
        usb: add quirks for Lenovo OneLink+ Dock
        MAINTAINERS: switch dwc3 to Thinh
        usb: idmouse: fix an uninit-value in idmouse_open
        USB: PHY: JZ4770: Switch to use dev_err_probe() helper
        usb: phy: generic: Switch to use dev_err_probe() helper
        usb: ulpi: use DEFINE_SHOW_ATTRIBUTE to simplify ulpi_regs
        usb: cdns3: remove dead code
        usb: cdc-wdm: Use skb_put_data() instead of skb_put/memcpy pair
        usb: musb: sunxi: Switch to use dev_err_probe() helper
        ...
      d3dcbe24
    • Linus Torvalds's avatar
      Merge tag 'tty-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty · 6181073d
      Linus Torvalds authored
      Pull tty/serial driver updates from Greg KH:
       "Here is the big set of TTY and Serial driver updates for 6.1-rc1.
      
        Lots of cleanups in here, no real new functionality this time around,
        with the diffstat being that we removed more lines than we added!
      
        Included in here are:
      
         - termios unification cleanups from Al Viro, it's nice to finally get
           this work done
      
         - tty serial transmit cleanups in various drivers in preparation for
           more cleanup and unification in future releases (that work was not
           ready for this release)
      
         - n_gsm fixes and updates
      
         - ktermios cleanups and code reductions
      
         - dt bindings json conversions and updates for new devices
      
         - some serial driver updates for new devices
      
         - lots of other tiny cleanups and janitorial stuff. Full details in
           the shortlog.
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'tty-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: (102 commits)
        serial: cpm_uart: Don't request IRQ too early for console port
        tty: serial: do unlock on a common path in altera_jtaguart_console_putc()
        tty: serial: unify TX space reads under altera_jtaguart_tx_space()
        tty: serial: use FIELD_GET() in lqasc_tx_ready()
        tty: serial: extend lqasc_tx_ready() to lqasc_console_putchar()
        tty: serial: allow pxa.c to be COMPILE_TESTed
        serial: stm32: Fix unused-variable warning
        tty: serial: atmel: Add COMMON_CLK dependency to SERIAL_ATMEL
        serial: 8250: Fix restoring termios speed after suspend
        serial: Deassert Transmit Enable on probe in driver-specific way
        serial: 8250_dma: Convert to use uart_xmit_advance()
        serial: 8250_omap: Convert to use uart_xmit_advance()
        MAINTAINERS: Solve warning regarding inexistent atmel-usart binding
        serial: stm32: Deassert Transmit Enable on ->rs485_config()
        serial: ar933x: Deassert Transmit Enable on ->rs485_config()
        tty: serial: atmel: Use FIELD_PREP/FIELD_GET
        tty: serial: atmel: Make the driver aware of the existence of GCLK
        tty: serial: atmel: Only divide Clock Divisor if the IP is USART
        tty: serial: atmel: Separate mode clearing between UART and USART
        dt-bindings: serial: atmel,at91-usart: Add gclk as a possible USART clock
        ...
      6181073d
    • Linus Torvalds's avatar
      Merge tag 'soundwire-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire · 881eccbe
      Linus Torvalds authored
      Pull soundwire updates from Vinod Koul:
       "Updates for Intel, Cadence and Qualcomm drivers:
      
         - another round of Intel driver cleanup to prepare for future code
           reorg which is expected in next cycle (Pierre-Louis Bossart)
      
         - bus unattach notifications processing during re-enumeration along
           with Cadence driver updates for this (Richard Fitzgerald)
      
         - Qualcomm driver updates to handle device0 status (Srinivas
           Kandagatla)"
      
      * tag 'soundwire-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire: (42 commits)
        soundwire: intel: add helper to stop bus
        soundwire: intel: introduce helpers to start bus
        soundwire: intel: introduce intel_shim_check_wake() helper
        soundwire: intel: simplify read ops assignment
        soundwire: intel: remove intel_init() wrapper
        soundwire: intel: move shim initialization before power up/down
        soundwire: intel: remove clock_stop parameter in intel_shim_init()
        soundwire: intel: move all PDI initialization under intel_register_dai()
        soundwire: intel: move DAI registration and debugfs init earlier
        soundwire: intel: simplify flow and use devm_ for DAI registration
        soundwire: intel: fix error handling on dai registration issues
        soundwire: cadence: Simplify error paths in cdns_xfer_msg()
        soundwire: cadence: Fix error check in cdns_xfer_msg()
        soundwire: cadence: Write to correct address for each FIFO chunk
        soundwire: bus: Fix wrong port number in sdw_handle_slave_alerts()
        soundwire: qcom: do not send status of device 0 during alert
        soundwire: qcom: update status from device id 1
        soundwire: cadence: Don't overwrite msg->buf during write commands
        soundwire: bus: Don't exit early if no device IDs were programmed
        soundwire: cadence: Fix lost ATTACHED interrupts when enumerating
        ...
      881eccbe
    • Linus Torvalds's avatar
      Merge tag 'phy-for-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy · 33e591de
      Linus Torvalds authored
      Pull phy updates from Vinod Koul:
       "This contains bunch of new device support and one new Sunplus driver
        along with updates which include another big round of qmp phy
        conversion.
      
        New support:
         - Qualcomm SC8280XP eDP & DP and USB3 UNI phy (Bjorn Andersson)
         - Rockchip rk3568 inno dsidphy (Chris Morgan)
         - ocelot-serdes phy yaml binding (Colin Foster)
         - Renesas gen2-usb phy yaml binding (Geert Uytterhoeven)
         - RGMII suport in lan966x driver (Horatiu Vultur)
         - Qualcomm SM6375 usb snps-femto-v2 bindings (Konrad Dybcio)
         - Rockchip rk356x csi-dphya (Michael Riesch)
         - Qualcomm sdm670 usb2 bindings (Richard Acayan)
         - Sunplus USB2 PHY (Vincent Shih)
      
        Updates:
         - Mediatek hdmi, ufs, tphy and xsphy updates to use bitfield helpers
           (Chunfeng Yun)
         - Continued Qualcomm qmp phy driver split and cleanup. More patches
           are under review and expected that next cycle might see completion
           of this activity (Dmitry Baryshkov & Johan Hovold)
         - TI wiz driver support for j7200 10g (Roger Quadros)
         - Qualcomm femto phy driver support for override params to help with
           tuning (Sandeep Maheswaram)
         - SGMII support in TI wiz driver (Siddharth Vadapalli)
         - dev_err_probe simplification (Yuan Can)"
      
      * tag 'phy-for-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy: (170 commits)
        phy: phy-mtk-dp: make array driving_params static const
        dt-bindings: phy: qcom,qusb2: document sdm670 compatible
        phy: qcom-qmp-pcie: fix resource mapping for SDM845 QHP PHY
        phy: rockchip-snps-pcie3: only look for rockchip,pipe-grf on rk3588
        phy: tegra: xusb: Enable usb role switch attribute
        phy: mediatek: fix build warning of FIELD_PREP()
        phy: qcom-qmp-usb: Use dev_err_probe() to simplify code
        phy: qcom-qmp-ufs: Use dev_err_probe() to simplify code
        phy: qcom-qmp-pcie-msm8996: Use dev_err_probe() to simplify code
        phy: qcom-qmp-combo: Use dev_err_probe() to simplify code
        phy: qualcomm: call clk_disable_unprepare in the error handling
        phy: intel: Use dev_err_probe() to simplify code
        phy: tegra: xusb: Use dev_err_probe() to simplify code
        phy: qcom-snps: Use dev_err_probe() to simplify code
        phy: qcom-qusb2: Use dev_err_probe() to simplify code
        phy: qcom-qmp-pcie: Use dev_err_probe() to simplify code
        phy: ti: phy-j721e-wiz: fix reference leaks in wiz_probe()
        phy: mediatek: mipi: remove register access helpers
        phy: mediatek: mipi: mt8183: use common helper to access registers
        phy: mediatek: mipi: mt8183: use GENMASK to generate bits mask
        ...
      33e591de
    • Linus Torvalds's avatar
      Merge tag 'dmaengine-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine · 416a2f4f
      Linus Torvalds authored
      Pull dmaengine updates from Vinod Koul:
       "New Support:
      
         - MT6795 SoC dma controller (AngeloGioacchino Del Regno)
      
         - qcom-adm controller yaml binding (Christian Marangi)
      
         - Renesas r8a779g0 dma controller yaml binding (Geert Uytterhoeven)
      
         - Qualcomm SM6350 GPI dma controller (Luca Weiss)
      
        Updates:
      
         - STM32 DMA-MDMA chaining support (Amelie Delaunay)
      
         - make hsu driver use managed resources (Andy Shevchenko)
      
         - the usual round of idxd driver updates (Dave Jiang & Jerry
           Snitselaar)
      
         - apple dma driver iommu and pd properties and remove use
           of devres for irqs (Janne Grunau & Martin Povišer)
      
         - device_synchronize support for Xilinx zynqmp driver (Swati
           Agarwal)"
      
      * tag 'dmaengine-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine: (60 commits)
        dmaengine: ioat: remove unused declarations in dma.h
        dmaengine: ti: k3-udma: Respond TX done if DMA_PREP_INTERRUPT is not requested
        dmaengine: zynqmp_dma: Add device_synchronize support
        dt-bindings: dma: add additional pbus reset to qcom,adm
        dt-bindings: dma: rework qcom,adm Documentation to yaml schema
        dt-bindings: dma: apple,admac: Add iommus and power-domains properties
        dmaengine: dw-edma: Remove runtime PM support
        dmaengine: idxd: add configuration for concurrent batch descriptor processing
        dmaengine: idxd: add configuration for concurrent work descriptor processing
        dmaengine: idxd: add WQ operation cap restriction support
        dmanegine: idxd: reformat opcap output to match bitmap_parse() input
        dmaengine: idxd: convert ats_dis to a wq flag
        dmaengine: ioat: stop mod_timer from resurrecting deleted timer in __cleanup()
        dmaengine: qcom-adm: fix wrong calling convention for prep_slave_sg
        dmaengine: qcom-adm: fix wrong sizeof config in slave_config
        dmaengine: ti: k3-psil: add additional TX threads for j721e
        dmaengine: ti: k3-psil: add additional TX threads for j7200
        dmaengine: apple-admac: Trigger shared reset
        dmaengine: apple-admac: Do not use devres for IRQs
        dmaengine: ti: edma: Remove some unused functions
        ...
      416a2f4f
    • Linus Torvalds's avatar
      Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi · 62e6e594
      Linus Torvalds authored
      Pull SCSI updates from James Bottomley:
       "Updates to the usual drivers (qla2xxx, lpfc, ufs, hisi_sas, mpi3mr,
        mpt3sas, target). The biggest change (from my biased viewpoint) being
        that the mpi3mr now attached to the SAS transport class, making it the
        first fusion type device to do so.
      
        Beyond the usual bug fixing and security class reworks, there aren't a
        huge number of core changes"
      
      * tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (141 commits)
        scsi: iscsi: iscsi_tcp: Fix null-ptr-deref while calling getpeername()
        scsi: mpi3mr: Remove unnecessary cast
        scsi: stex: Properly zero out the passthrough command structure
        scsi: mpi3mr: Update driver version to 8.2.0.3.0
        scsi: mpi3mr: Fix scheduling while atomic type bug
        scsi: mpi3mr: Scan the devices during resume time
        scsi: mpi3mr: Free enclosure objects during driver unload
        scsi: mpi3mr: Handle 0xF003 Fault Code
        scsi: mpi3mr: Graceful handling of surprise removal of PCIe HBA
        scsi: mpi3mr: Schedule IRQ kthreads only on non-RT kernels
        scsi: mpi3mr: Support new power management framework
        scsi: mpi3mr: Update mpi3 header files
        scsi: mpt3sas: Revert "scsi: mpt3sas: Fix ioc->base_readl() use"
        scsi: mpt3sas: Revert "scsi: mpt3sas: Fix writel() use"
        scsi: wd33c93: Remove dead code related to the long-gone config WD33C93_PIO
        scsi: core: Add I/O timeout count for SCSI device
        scsi: qedf: Populate sysfs attributes for vport
        scsi: pm8001: Replace one-element array with flexible-array member
        scsi: 3w-xxxx: Replace one-element array with flexible-array member
        scsi: hptiop: Replace one-element array with flexible-array member in struct hpt_iop_request_ioctl_command()
        ...
      62e6e594
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma · e08466a7
      Linus Torvalds authored
      Pull rdma updates from Jason Gunthorpe:
       "Not a big list of changes this cycle, mostly small things. The new
        MANA rdma driver should come next cycle along with a bunch of work on
        rxe.
      
        Summary:
      
         - Small bug fixes in mlx5, efa, rxe, hns, irdma, erdma, siw
      
         - rts tracing improvements
      
         - Code improvements: strlscpy conversion, unused parameter, spelling
           mistakes, unused variables, flex arrays
      
         - restrack device details report for hns
      
         - Simplify struct device initialization in SRP
      
         - Eliminate the never-used service_mask support in IB CM
      
         - Make rxe not print to the console for some kinds of network packets
      
         - Asymetric paths and router support in the CM through netlink
           messages
      
         - DMABUF importer support for mlx5devx umem's"
      
      * tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma: (84 commits)
        RDMA/rxe: Remove error/warning messages from packet receiver path
        RDMA/usnic: fix set-but-not-unused variable 'flags' warning
        IB/hfi1: Use skb_put_data() instead of skb_put/memcpy pair
        RDMA/hns: Unified Log Printing Style
        RDMA/hns: Replacing magic number with macros in apply_func_caps()
        RDMA/hns: Repacing 'dseg_len' by macros in fill_ext_sge_inl_data()
        RDMA/hns: Remove redundant 'max_srq_desc_sz' in caps
        RDMA/hns: Remove redundant 'num_mtt_segs' and 'max_extend_sg'
        RDMA/hns: Remove redundant 'phy_addr' in hns_roce_hem_list_find_mtt()
        RDMA/hns: Remove redundant 'use_lowmem' argument from hns_roce_init_hem_table()
        RDMA/hns: Remove redundant 'bt_level' for hem_list_alloc_item()
        RDMA/hns: Remove redundant 'attr_mask' in modify_qp_init_to_init()
        RDMA/hns: Remove unnecessary brackets when getting point
        RDMA/hns: Remove unnecessary braces for single statement blocks
        RDMA/hns: Cleanup for a spelling error of Asynchronous
        IB/rdmavt: Add __init/__exit annotations to module init/exit funcs
        RDMA/rxe: Remove redundant num_sge fields
        RDMA/mlx5: Enable ATS support for MRs and umems
        RDMA/mlx5: Add support for dmabuf to devx umem
        RDMA/core: Add UVERBS_ATTR_RAW_FD
        ...
      e08466a7
    • Linus Torvalds's avatar
      Merge tag 'mtd/for-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux · 1227db9e
      Linus Torvalds authored
      Pull MTD updates from Miquel Raynal:
       "Core MTD changes:
         - mtdchar: add MEMREAD ioctl
         - Add ECC error accounting for each read request
         - always initialize 'stats' in struct mtd_oob_ops
         - Track maximum number of bitflips for each read request
         - Fix repeated word in comment
         - Move from strlcpy with unused retval to strscpy
         - Fix a typo in a comment
         - Add binding for U-Boot bootloader partitions
      
        MTD device drivers changes:
         - FTL: use container_of() rather than cast
         - docg3:
            - Use correct function names in comment blocks
            - Check the return value of devm_ioremap() in the probe
         - physmap-core: Fix NULL pointer dereferencing in
           of_select_probe_type()
         - parsers: add Broadcom's U-Boot parser
      
        Raw NAND core changes:
         - Replace of_gpio_named_count() by gpiod_count()
         - Remove misguided comment of nand_get_device()
         - bbt: Use the bitmap API to allocate bitmaps
      
        Raw NAND controller drivers changes:
         - Meson:
            - Stop supporting legacy clocks
            - Refine resource getting in probe
            - Convert bindings to yaml
            - Fix clock handling and update the bindings accordingly
            - Fix bit map use in meson_nfc_ecc_correct()
         - bcm47xx:
            - Fix spelling typo in comment
         - STM32 FMC2:
            - Switch to using devm_fwnode_gpiod_get()
            - Fix dma_map_sg error check
         - Cadence:
            - Remove an unneeded result variable
         - Marvell:
            - Fix error handle regarding dma_map_sg
         - Orion:
            - Use devm_clk_get_optional()
         - Cafe:
            - Use correct function name in comment block
         - Atmel:
            - Unmap streaming DMA mappings
         - Arasan:
            - Stop using 0 as NULL pointer
         - GPMI:
            - Fix typo 'the the' in comment
         - BRCM:
            - Add individual glue driver selection
            - Move Kconfig to driver folder
         - FSL: Fix none ECC mode
         - Intel:
            - Use devm_platform_ioremap_resource_byname()
            - Remove unused clk_rate member from struct ebu_nand
            - Remove unused nand_pa member from ebu_nand_cs
            - Don't re-define NAND_DATA_IFACE_CHECK_ONLY
            - Remove undocumented compatible string
            - Fix compatible string in the bindings
            - Read the chip-select line from the correct OF node
            - Fix maximum chip select value in the bindings"
      
      * tag 'mtd/for-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux: (43 commits)
        mtd: rawnand: meson: stop supporting legacy clocks
        dt-bindings: nand: meson: convert txt to yaml
        mtd: rawnand: meson: refine resource getting in probe
        mtd: rawnand: meson: fix the clock
        dt-bindings: nand: meson: fix meson nfc clock
        mtd: rawnand: bcm47xx: fix spelling typo in comment
        mtd: rawnand: stm32_fmc2: switch to using devm_fwnode_gpiod_get()
        mtd: rawnand: cadence: Remove an unneeded result variable
        mtd: rawnand: Replace of_gpio_named_count() by gpiod_count()
        mtd: rawnand: marvell: Fix error handle regarding dma_map_sg
        mtd: rawnand: stm32_fmc2: Fix dma_map_sg error check
        mtd: rawnand: remove misguided comment of nand_get_device()
        mtd: rawnand: orion: Use devm_clk_get_optional()
        mtd: rawnand: cafe: Use correct function name in comment block
        mtd: rawnand: atmel: Unmap streaming DMA mappings
        mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct()
        mtd: rawnand: arasan: stop using 0 as NULL pointer
        mtd: rawnand: gpmi: Fix typo 'the the' in comment
        mtd: rawnand: brcmnand: Add individual glue driver selection
        mtd: rawnand: brcmnand: Move Kconfig to driver folder
        ...
      1227db9e
    • Linus Torvalds's avatar
      Merge tag 'rproc-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux · 94e8ca6e
      Linus Torvalds authored
      Pull remoteproc updates from Bjorn Andersson:
       "Support for remoteprocs that will perform recovery without help from
        Linux is introduced.
      
        The virtio integration is transitioned towards remoteproc_virtio.c and
        represented by a platform_device, in preparation for instantiating
        virtio instances from DeviceTree.
      
        The iMX remoteproc driver has a couple of sparse warnings corrected
        and a couple of error message printouts are cleaned up. The keystone
        driver is transitioned to use the gpiod API"
      
      * tag 'rproc-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux:
        remoteproc: virtio: Fix warning on bindings by removing the of_match_table
        remoteproc: Support attach recovery after rproc crash
        remoteproc: Introduce rproc features
        remoteproc: virtio: Create platform device for the remoteproc_virtio
        remoteproc: Move rproc_vdev management to remoteproc_virtio.c
        remoteproc: core: Introduce rproc_add_rvdev function
        remoteproc: core: Introduce rproc_rvdev_add_device function
        remoteproc: Harden rproc_handle_vdev() against integer overflow
        remoteproc/keystone: Switch to using gpiod API
        drivers/remoteproc: Fix repeated words in comments
        remoteproc: imx_dsp_rproc: fix argument 2 of rproc_mem_entry_init
        remoteproc: imx_rproc: Simplify some error message
      94e8ca6e
    • Linus Torvalds's avatar
      Merge tag 'rpmsg-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux · e5df1d3e
      Linus Torvalds authored
      Pull rpmsg updates from Bjorn Andersson:
       "This fixes a double free/destroy and drops an unnecessary local
        variable in the rpmsg char driver"
      
      * tag 'rpmsg-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux:
        rpmsg: char: Avoid double destroy of default endpoint
        rpmsg: char: Remove the unneeded result variable
      e5df1d3e
    • Linus Torvalds's avatar
      Merge tag 'for-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply · 11c747e5
      Linus Torvalds authored
      Pull power supply and reset updates from Sebastian Reichel:
      
       - new maintenance charging documentation
      
       - mt6370: new charger driver
      
       - bq25890: support input current limit
      
       - added Qualcomm PMK8350 PON support
      
       - misc minor fixes
      
      * tag 'for-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply: (22 commits)
        power: supply: ab8500: remove unused static local variable
        power: supply: mt6370: Fix return value check in mt6370_chg_probe()
        power: supply: ab8500: Remove unused struct ab8500_chargalg_sysfs_entry
        power: supply: mt6370: uses IIO interfaces, depends on IIO
        power: supply: max1721x: Fix spelling mistake "Gauage" -> "Gauge"
        power: supply: mt6370: Add MediaTek MT6370 charger driver
        dt-bindings: power: supply: Add MediaTek MT6370 Charger
        lib: add linear range index macro
        power: supply: bq25890: Fix enum conversion in bq25890_power_supply_set_property()
        power: supply: bq27xxx: fix NULL vs 0 warnings
        power: supply: bq27xxx: fix __be16 warnings
        power: supply: bq25890: Add support for setting IINLIM
        power: supply: bq25890: Disable PUMPX_EN on errors
        power: supply: Fix repeated word in comments
        power: supply: adp5061: show unknown capacity_level as text
        power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type()
        power: supply: tps65217: Fix comments typo
        power: reset: qcom-pon: add support for qcom,pmk8350-pon compatible string
        dt-bindings: power: reset: qcom-pon: Add new compatible "qcom,pmk8350-pon"
        power: supply: cw2015: Use device managed API to simplify the code
        ...
      11c747e5
    • Linus Torvalds's avatar
      Merge tag 'hsi-for-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi · 83da5ec6
      Linus Torvalds authored
      Pull HSI updates from Sebastian Reichel:
      
       - completely switch to gpiod API
      
       - misc small fixes
      
      * tag 'hsi-for-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi:
        HSI: nokia-modem: Replace of_gpio_count() by gpiod_count()
        HSI: ssi_protocol: fix potential resource leak in ssip_pn_open()
        HSI: omap_ssi_port: Fix dma_map_sg error check
        HSI: cmt_speech: Pass a pointer to virt_to_page()
        HSI: omap_ssi: Fix refcount leak in ssi_probe
        HSI: clients: remove duplicate assignment
      83da5ec6
    • Linus Torvalds's avatar
      Merge tag 'pwm/for-6.1-rc1' of... · 3fb55dd1
      Linus Torvalds authored
      Merge tag 'pwm/for-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm
      
      Pull pwm updates from Thierry Reding:
       "The Rockchip and Mediatek drivers gain support for more chips and the
        LPSS driver undergoes some refactoring and receives some improvements.
      
        Other than that there are various cleanups of the core"
      
      * tag 'pwm/for-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm:
        pwm: sysfs: Replace sprintf() with sysfs_emit()
        pwm: core: Replace custom implementation of device_match_fwnode()
        pwm: lpss: Add a comment to the bypass field
        pwm: lpss: Make use of bits.h macros for all masks
        pwm: lpss: Use DEFINE_RUNTIME_DEV_PM_OPS() and pm_ptr() macros
        pwm: lpss: Use device_get_match_data() to get device data
        pwm: lpss: Move resource mapping to the glue drivers
        pwm: lpss: Move exported symbols to PWM_LPSS namespace
        pwm: lpss: Deduplicate board info data structures
        dt-bindings: pwm: Add compatible for Mediatek MT8188
        dt-bindings: pwm: rockchip: Add rockchip,rk3128-pwm
        dt-bindings: pwm: rockchip: Add description for rk3588
        pwm: sysfs: Switch to DEFINE_SIMPLE_DEV_PM_OPS() and pm_sleep_ptr()
        pwm: rockchip: Convert to use dev_err_probe()
      3fb55dd1
    • Linus Torvalds's avatar
      Merge tag 'mfd-next-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd · ae955959
      Linus Torvalds authored
      Pull MFD updates from Lee Jones:
       "Core Frameworks:
         - Fix 'mfd_of_node_list' OF node entry resource leak
      
        New Drivers:
         - Add support for Ocelot VSC7512 Networking Chip
         - Add support for MediaTek MT6370 subPMIC
         - Add support for Richtek RT5120 (I2C) PMIC
      
        New Device Support:
         - Add support for Rockchip RV1126 and RK3588 to Syscon
         - Add support for Rockchip RK817 Battery Charger to RK808
         - Add support for Silergy SY7636a Voltage Regulator to Simple MFD
         - Add support for Qualcomm PMP8074 PMIC to QCOM SPMI
         - Add support for Secure Update to Intel M10 BMC
      
        New Functionality:
         - Provide SSP type to Intel's LPSS (PCI) SPI driver
      
        Fix-ups:
         - Remove legacy / unused code; stmpe, intel_soc_pmic_crc, syscon
         - Unify / simplify; intel_soc_pmic_crc
         - Trivial reordering / spelling, etc; Makefile, twl-core
         - Convert to managed resources; intel_soc_pmic_crc
         - Use appropriate APIs; intel_soc_pmic_crc
         - strscpy() conversion; htc-i2cpld, lpc_ich, mfd-core
         - GPIOD conversion; htc-i2cpld, stmpe
         - Add missing header file includes; twl4030-irq
         - DT goodies; stmpe, mediatek,mt6370, x-powers,axp152,
           aspeed,ast2x00-scu, mediatek,mt8195-scpsys, qcom,spmi-pmic, syscon,
           qcom,tcsr, rockchip,rk817, sprd,ums512-glbreg, dlg,da9063
      
        Bug Fixes:
         - Properly check return values; sm501, htc-i2cpld
         - Repair Two-Wire Bus Mode; da9062-core
         - Fix error handling; intel_soc_pmic_core, fsl-imx25-tsadc, lp8788,
           lp8788-irq"
      
      * tag 'mfd-next-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd: (60 commits)
        mfd: syscon: Remove repetition of the regmap_get_val_endian()
        mfd: ocelot-spi: Add missing MODULE_DEVICE_TABLE
        power: supply: Add charger driver for Rockchip RK817
        dt-bindings: mfd: mt6370: Fix the indentation in the example
        mfd: da9061: Fix Failed to set Two-Wire Bus Mode.
        mfd: htc-i2cpld: Fix an IS_ERR() vs NULL bug in htcpld_core_probe()
        dt-bindings: mfd: qcom,tcsr: Drop simple-mfd from IPQ6018
        mfd: sm501: Add check for platform_driver_register()
        dt-bindings: mfd: mediatek: Add scpsys compatible for mt8186
        mfd: twl4030: Add missed linux/device.h header
        dt-bindings: mfd: dlg,da9063: Add missing regulator patterns
        dt-bindings: mfd: sprd: Add bindings for ums512 global registers
        mfd: intel_soc_pmic_chtdc_ti: Switch from __maybe_unused to pm_sleep_ptr() etc
        dt-bindings: mfd: syscon: Add rk3588 QoS register compatible
        mfd: stmpe: Switch to using gpiod API
        mfd: qcom-spmi-pmic: Add pm7250b compatible
        dt-bindings: mfd: Add missing (unevaluated|additional)Properties on child nodes
        mfd/omap1: htc-i2cpld: Convert to a pure GPIO driver
        mfd: intel-m10-bmc: Add d5005 bmc secure update driver
        dt-bindings: mfd: syscon: Drop ref from reg-io-width
        ...
      ae955959
    • Linus Torvalds's avatar
      Merge tag 'for-linus-2022100501' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid · 79d11de9
      Linus Torvalds authored
      Pull HID updates from Benjamin Tissoires:
      
       - handle of all Logitech Bluetooth HID++ devices in the Logitech HID++
         drivers (Bastien Nocera)
      
       - fix broken atomic checks in hid-multitouch by adding memory barriers
         (Andri Yngvason)
      
       - better handling of devices with AMD SFH1.1 (Basavaraj Natikar)
      
       - better support of Nintendo clone controllers (Icenowy Zheng and
         Johnothan King)
      
       - Support for various RC controllers (Marcus Folkesson)
      
       - Add UGEEv2 support in hid-uclogic (XP-PEN Deco Pro S and Parblo A610
         PRO) (José Expósito)
      
       - some conversions to use dev_groups (Greg Kroah-Hartman)
      
       - HID-BPF preparatory patches, mostly to convert blank defines as enums
         (Benjamin Tissoires)
      
      * tag 'for-linus-2022100501' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid: (38 commits)
        HID: wacom: add three styli to wacom_intuos_get_tool_type
        HID: amd_sfh: Handle condition of "no sensors" for SFH1.1
        HID: amd_sfh: Change dev_err to dev_dbg for additional debug info
        HID: nintendo: check analog user calibration for plausibility
        HID: nintendo: deregister home LED when it fails
        HID: roccat: Fix use-after-free in roccat_read()
        hid: topre: Add driver fixing report descriptor
        HID: multitouch: Add memory barriers
        HID: convert defines of HID class requests into a proper enum
        HID: export hid_report_type to uapi
        HID: core: store the unique system identifier in hid_device
        HID: Add driver for PhoenixRC Flight Controller
        HID: Add driver for VRC-2 Car Controller
        HID: sony: Fix double word in comments
        hid: hid-logitech-hidpp: avoid unnecessary assignments in hidpp_connect_event
        HID: logitech-hidpp: Detect hi-res scrolling support
        HID: logitech-hidpp: Remove hard-coded "Sw. Id." for HID++ 2.0 commands
        HID: logitech-hidpp: Fix "Sw. Id." for HID++ 2.0 commands
        HID: logitech-hidpp: Remove special-casing of Bluetooth devices
        HID: logitech-hidpp: Enable HID++ for all the Logitech Bluetooth devices
        ...
      79d11de9