]> Git Repo - linux.git/commitdiff
Merge tag 'printk-for-6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/printk...
authorLinus Torvalds <[email protected]>
Mon, 4 Sep 2023 20:20:19 +0000 (13:20 -0700)
committerLinus Torvalds <[email protected]>
Mon, 4 Sep 2023 20:20:19 +0000 (13:20 -0700)
Pull printk updates from Petr Mladek:

 - Do not try to get the console lock when it is not need or useful in
   panic()

 - Replace the global console_suspended state by a per-console flag

 - Export symbols needed for dumping the raw printk buffer in panic()

 - Fix documentation of printf formats for integer types

 - Moved Sergey Senozhatsky to the reviewer role

 - Misc cleanups

* tag 'printk-for-6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux:
  printk: export symbols for debug modules
  lib: test_scanf: Add explicit type cast to result initialization in test_number_prefix()
  printk: ringbuffer: Fix truncating buffer size min_t cast
  printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic()
  printk: Add per-console suspended state
  printk: Consolidate console deferred printing
  printk: Do not take console lock for console_flush_on_panic()
  printk: Keep non-panic-CPUs out of console lock
  printk: Reduce console_unblank() usage in unsafe scenarios
  kdb: Do not assume write() callback available
  docs: printk-formats: Treat char as always unsigned
  docs: printk-formats: Fix hex printing of signed values
  MAINTAINERS: adjust printk/vsprintf entries

1  2 
Documentation/core-api/printk-formats.rst
MAINTAINERS
kernel/debug/kdb/kdb_io.c
kernel/printk/printk.c

index dfe7e75a71dece99cd691ffe419365152e4a01f7,0eed8a2dcae930dab78b1a883469d4d4d323cd51..4451ef501936133998b059d5b0482328845e02ba
@@@ -15,9 -15,10 +15,10 @@@ Integer type
  
        If variable is of Type,         use printk format specifier:
        ------------------------------------------------------------
-               char                    %d or %x
+               signed char             %d or %hhx
                unsigned char           %u or %x
-               short int               %d or %x
+               char                    %u or %x
+               short int               %d or %hx
                unsigned short int      %u or %x
                int                     %d or %x
                unsigned int            %u or %x
@@@ -27,9 -28,9 +28,9 @@@
                unsigned long long      %llu or %llx
                size_t                  %zu or %zx
                ssize_t                 %zd or %zx
-               s8                      %d or %x
+               s8                      %d or %hhx
                u8                      %u or %x
-               s16                     %d or %x
+               s16                     %d or %hx
                u16                     %u or %x
                s32                     %d or %x
                u32                     %u or %x
@@@ -575,26 -576,20 +576,26 @@@ The field width is passed by value, th
  Helper macros cpumask_pr_args() and nodemask_pr_args() are available to ease
  printing cpumask and nodemask.
  
 -Flags bitfields such as page flags, gfp_flags
 ----------------------------------------------
 +Flags bitfields such as page flags, page_type, gfp_flags
 +--------------------------------------------------------
  
  ::
  
        %pGp    0x17ffffc0002036(referenced|uptodate|lru|active|private|node=0|zone=2|lastcpupid=0x1fffff)
 +      %pGt    0xffffff7f(buddy)
        %pGg    GFP_USER|GFP_DMA32|GFP_NOWARN
        %pGv    read|exec|mayread|maywrite|mayexec|denywrite
  
  For printing flags bitfields as a collection of symbolic constants that
  would construct the value. The type of flags is given by the third
 -character. Currently supported are [p]age flags, [v]ma_flags (both
 -expect ``unsigned long *``) and [g]fp_flags (expects ``gfp_t *``). The flag
 -names and print order depends on the particular       type.
 +character. Currently supported are:
 +
 +        - p - [p]age flags, expects value of type (``unsigned long *``)
 +        - t - page [t]ype, expects value of type (``unsigned int *``)
 +        - v - [v]ma_flags, expects value of type (``unsigned long *``)
 +        - g - [g]fp_flags, expects value of type (``gfp_t *``)
 +
 +The flag names and print order depends on the particular type.
  
  Note that this format should not be used directly in the
  :c:func:`TP_printk()` part of a tracepoint. Instead, use the show_*_flags()
diff --combined MAINTAINERS
index 1cc0be8ea75afefb75440a42e4c78823bcb52119,8cb807526d74418ab8d32169a41b2440279e63fd..fa695ab1791acaa8aa2801b3b7be5a4513ce33c6
@@@ -1,5 -1,81 +1,5 @@@
 -List of maintainers and how to submit kernel changes
 -====================================================
 -
 -Please try to follow the guidelines below.  This will make things
 -easier on the maintainers.  Not all of these guidelines matter for every
 -trivial patch so apply some common sense.
 -
 -Tips for patch submitters
 --------------------------
 -
 -1.    Always *test* your changes, however small, on at least 4 or
 -      5 people, preferably many more.
 -
 -2.    Try to release a few ALPHA test versions to the net. Announce
 -      them onto the kernel channel and await results. This is especially
 -      important for device drivers, because often that's the only way
 -      you will find things like the fact version 3 firmware needs
 -      a magic fix you didn't know about, or some clown changed the
 -      chips on a board and not its name.  (Don't laugh!  Look at the
 -      SMC etherpower for that.)
 -
 -3.    Make sure your changes compile correctly in multiple
 -      configurations. In particular check that changes work both as a
 -      module and built into the kernel.
 -
 -4.    When you are happy with a change make it generally available for
 -      testing and await feedback.
 -
 -5.    Make a patch available to the relevant maintainer in the list. Use
 -      ``diff -u`` to make the patch easy to merge. Be prepared to get your
 -      changes sent back with seemingly silly requests about formatting
 -      and variable names.  These aren't as silly as they seem. One
 -      job the maintainers (and especially Linus) do is to keep things
 -      looking the same. Sometimes this means that the clever hack in
 -      your driver to get around a problem actually needs to become a
 -      generalized kernel feature ready for next time.
 -
 -      PLEASE check your patch with the automated style checker
 -      (scripts/checkpatch.pl) to catch trivial style violations.
 -      See Documentation/process/coding-style.rst for guidance here.
 -
 -      PLEASE CC: the maintainers and mailing lists that are generated
 -      by ``scripts/get_maintainer.pl.`` The results returned by the
 -      script will be best if you have git installed and are making
 -      your changes in a branch derived from Linus' latest git tree.
 -      See Documentation/process/submitting-patches.rst for details.
 -
 -      PLEASE try to include any credit lines you want added with the
 -      patch. It avoids people being missed off by mistake and makes
 -      it easier to know who wants adding and who doesn't.
 -
 -      PLEASE document known bugs. If it doesn't work for everything
 -      or does something very odd once a month document it.
 -
 -      PLEASE remember that submissions must be made under the terms
 -      of the Linux Foundation certificate of contribution and should
 -      include a Signed-off-by: line.  The current version of this
 -      "Developer's Certificate of Origin" (DCO) is listed in the file
 -      Documentation/process/submitting-patches.rst.
 -
 -6.    Make sure you have the right to send any changes you make. If you
 -      do changes at work you may find your employer owns the patch
 -      not you.
 -
 -7.    When sending security related changes or reports to a maintainer
 -      please Cc: [email protected], especially if the maintainer
 -      does not respond. Please keep in mind that the security team is
 -      a small set of people who can be efficient only when working on
 -      verified bugs. Please only Cc: this list when you have identified
 -      that the bug would present a short-term risk to other users if it
 -      were publicly disclosed. For example, reports of address leaks do
 -      not represent an immediate threat and are better handled publicly,
 -      and ideally, should come with a patch proposal. Please do not send
 -      automated reports to this list either. Such bugs will be handled
 -      better and faster in the usual public places. See
 -      Documentation/process/security-bugs.rst for details.
 -
 -8.    Happy hacking.
 +List of maintainers
 +===================
  
  Descriptions of section entries and preferred order
  ---------------------------------------------------
@@@ -197,8 -273,8 +197,8 @@@ ABI/AP
  L:    [email protected]
  F:    include/linux/syscalls.h
  F:    kernel/sys_ni.c
 -X:    include/uapi/
  X:    arch/*/include/uapi/
 +X:    include/uapi/
  
  ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
  M:    Hans de Goede <[email protected]>
@@@ -330,12 -406,11 +330,12 @@@ L:      [email protected]
  S:    Maintained
  F:    drivers/acpi/arm64
  
 -ACPI SERIAL MULTI INSTANTIATE DRIVER
 -M:    Hans de Goede <[email protected]>
 -L:    [email protected]
 +ACPI FOR RISC-V (ACPI/riscv)
 +M:    Sunil V L <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
  S:    Maintained
 -F:    drivers/platform/x86/serial-multi-instantiate.c
 +F:    drivers/acpi/riscv/
  
  ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
  M:    Sudeep Holla <[email protected]>
@@@ -355,12 -430,6 +355,12 @@@ B:       https://bugzilla.kernel.or
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
  F:    drivers/acpi/pmic/
  
 +ACPI SERIAL MULTI INSTANTIATE DRIVER
 +M:    Hans de Goede <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/platform/x86/serial-multi-instantiate.c
 +
  ACPI THERMAL DRIVER
  M:    Rafael J. Wysocki <[email protected]>
  R:    Zhang Rui <[email protected]>
@@@ -380,8 -449,6 +380,8 @@@ F: include/linux/acpi_viot.
  ACPI WMI DRIVER
  L:    [email protected]
  S:    Orphan
 +F:    Documentation/driver-api/wmi.rst
 +F:    Documentation/wmi/
  F:    drivers/platform/x86/wmi.c
  F:    include/uapi/linux/wmi.h
  
@@@ -756,13 -823,6 +756,13 @@@ L:       [email protected]
  S:    Maintained
  F:    drivers/crypto/allwinner/
  
 +ALLWINNER DMIC DRIVERS
 +M:    Ban Tao <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
 +F:    sound/soc/sunxi/sun50i-dmic.c
 +
  ALLWINNER HARDWARE SPINLOCK SUPPORT
  M:    Wilken Gottwalt <[email protected]>
  S:    Maintained
@@@ -784,6 -844,13 +784,6 @@@ L:        [email protected]
  S:    Maintained
  F:    drivers/staging/media/sunxi/cedrus/
  
 -ALLWINNER DMIC DRIVERS
 -M:    Ban Tao <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
 -F:    sound/soc/sunxi/sun50i-dmic.c
 -
  ALPHA PORT
  M:    Richard Henderson <[email protected]>
  M:    Ivan Kokshaysky <[email protected]>
@@@ -842,6 -909,13 +842,6 @@@ L:        [email protected]
  S:    Maintained
  F:    drivers/net/ethernet/altera/
  
 -ALTERA TSE PCS
 -M:    Maxime Chevallier <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    drivers/net/pcs/pcs-altera-tse.c
 -F:    include/linux/pcs-altera-tse.h
 -
  ALTERA UART/JTAG UART SERIAL DRIVERS
  M:    Tobias Klauser <[email protected]>
  L:    [email protected]
@@@ -882,8 -956,7 +882,8 @@@ F: Documentation/networking/device_driv
  F:    drivers/net/ethernet/amazon/
  
  AMAZON RDMA EFA DRIVER
 -M:    Gal Pressman <[email protected]>
 +M:    Michael Margolin <[email protected]>
 +R:    Gal Pressman <[email protected]>
  R:    Yossi Leybovich <[email protected]>
  L:    [email protected]
  S:    Supported
@@@ -891,14 -964,6 +891,14 @@@ Q:       https://patchwork.kernel.org/project
  F:    drivers/infiniband/hw/efa/
  F:    include/uapi/rdma/efa-abi.h
  
 +AMD CDX BUS DRIVER
 +M:    Nipun Gupta <[email protected]>
 +M:    Nikhil Agarwal <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/bus/xlnx,versal-net-cdx.yaml
 +F:    drivers/cdx/*
 +F:    include/linux/cdx/*
 +
  AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
  M:    Tom Lendacky <[email protected]>
  M:    John Allen <[email protected]>
@@@ -915,18 -980,6 +915,18 @@@ S:       Supporte
  F:    drivers/crypto/ccp/sev*
  F:    include/uapi/linux/psp-sev.h
  
 +AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - DBC SUPPORT
 +M:    Mario Limonciello <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    drivers/crypto/ccp/dbc.c
 +F:    drivers/crypto/ccp/dbc.h
 +F:    drivers/crypto/ccp/platform-access.c
 +F:    drivers/crypto/ccp/platform-access.h
 +F:    include/uapi/linux/psp-dbc.h
 +F:    tools/crypto/ccp/*.c
 +F:    tools/crypto/ccp/*.py
 +
  AMD DISPLAY CORE
  M:    Harry Wentland <[email protected]>
  M:    Leo Li <[email protected]>
@@@ -965,16 -1018,6 +965,16 @@@ F:      drivers/char/hw_random/geode-rng.
  F:    drivers/crypto/geode*
  F:    drivers/video/fbdev/geode/
  
 +AMD HSMP DRIVER
 +M:    Naveen Krishna Chatradhi <[email protected]>
 +R:    Carlos Bilbao <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/arch/x86/amd_hsmp.rst
 +F:    arch/x86/include/asm/amd_hsmp.h
 +F:    arch/x86/include/uapi/asm/amd_hsmp.h
 +F:    drivers/platform/x86/amd/hsmp.c
 +
  AMD IOMMU (AMD-VI)
  M:    Joerg Roedel <[email protected]>
  R:    Suravee Suthikulpanit <[email protected]>
@@@ -998,6 -1041,11 +998,6 @@@ F:       drivers/gpu/drm/amd/include/vi_struc
  F:    include/uapi/linux/kfd_ioctl.h
  F:    include/uapi/linux/kfd_sysfs.h
  
 -AMD SPI DRIVER
 -M:    Sanjay R Mehta <[email protected]>
 -S:    Maintained
 -F:    drivers/spi/spi-amd.c
 -
  AMD MP2 I2C DRIVER
  M:    Elie Morisse <[email protected]>
  M:    Shyam Sundar S K <[email protected]>
  S:    Maintained
  F:    drivers/i2c/busses/i2c-amd-mp2*
  
 +AMD PDS CORE DRIVER
 +M:    Shannon Nelson <[email protected]>
 +M:    Brett Creeley <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    Documentation/networking/device_drivers/ethernet/amd/pds_core.rst
 +F:    drivers/net/ethernet/amd/pds_core/
 +F:    include/linux/pds/
 +
  AMD PMC DRIVER
  M:    Shyam Sundar S K <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    drivers/platform/x86/amd/pmc.c
 +F:    drivers/platform/x86/amd/pmc/
  
  AMD PMF DRIVER
  M:    Shyam Sundar S K <[email protected]>
@@@ -1027,6 -1066,16 +1027,6 @@@ S:     Maintaine
  F:    Documentation/ABI/testing/sysfs-amd-pmf
  F:    drivers/platform/x86/amd/pmf/
  
 -AMD HSMP DRIVER
 -M:    Naveen Krishna Chatradhi <[email protected]>
 -R:    Carlos Bilbao <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/arch/x86/amd_hsmp.rst
 -F:    arch/x86/include/asm/amd_hsmp.h
 -F:    arch/x86/include/uapi/asm/amd_hsmp.h
 -F:    drivers/platform/x86/amd/hsmp.c
 -
  AMD POWERPLAY AND SWSMU
  M:    Evan Quan <[email protected]>
  L:    [email protected]
@@@ -1055,6 -1104,13 +1055,6 @@@ M:     Tom Lendacky <[email protected]
  S:    Supported
  F:    arch/arm64/boot/dts/amd/
  
 -AMD XGBE DRIVER
 -M:    "Shyam Sundar S K" <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
 -F:    drivers/net/ethernet/amd/xgbe/
 -
  AMD SENSOR FUSION HUB DRIVER
  M:    Basavaraj Natikar <[email protected]>
  L:    [email protected]
@@@ -1062,18 -1118,6 +1062,18 @@@ S:    Maintaine
  F:    Documentation/hid/amd-sfh*
  F:    drivers/hid/amd-sfh-hid/
  
 +AMD SPI DRIVER
 +M:    Sanjay R Mehta <[email protected]>
 +S:    Maintained
 +F:    drivers/spi/spi-amd.c
 +
 +AMD XGBE DRIVER
 +M:    "Shyam Sundar S K" <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
 +F:    drivers/net/ethernet/amd/xgbe/
 +
  AMLOGIC DDR PMU DRIVER
  M:    Jiucheng Xu <[email protected]>
  L:    [email protected]
@@@ -1086,6 -1130,7 +1086,6 @@@ F:      include/soc/amlogic
  
  AMPHION VPU CODEC V4L2 DRIVER
  M:    Ming Qian <[email protected]>
 -M:    Shijie Qin <[email protected]>
  M:    Zhou Peng <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -1107,14 -1152,6 +1107,14 @@@ T:    git git://git.kernel.org/pub/scm/lin
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
  F:    drivers/net/amt.c
  
 +ANALOG DEVICES INC AD3552R DRIVER
 +M:    Nuno Sá <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +W:    https://ez.analog.com/linux-software-drivers
 +F:    Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
 +F:    drivers/iio/dac/ad3552r.c
 +
  ANALOG DEVICES INC AD4130 DRIVER
  M:    Cosmin Tanislav <[email protected]>
  L:    [email protected]
@@@ -1140,6 -1177,14 +1140,6 @@@ W:     https://ez.analog.com/linux-software
  F:    Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
  F:    drivers/iio/adc/ad7292.c
  
 -ANALOG DEVICES INC AD3552R DRIVER
 -M:    Nuno Sá <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -W:    https://ez.analog.com/linux-software-drivers
 -F:    Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
 -F:    drivers/iio/dac/ad3552r.c
 -
  ANALOG DEVICES INC AD7293 DRIVER
  M:    Antoniu Miclaus <[email protected]>
  L:    [email protected]
@@@ -1148,6 -1193,23 +1148,6 @@@ W:     https://ez.analog.com/linux-software
  F:    Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
  F:    drivers/iio/dac/ad7293.c
  
 -ANALOG DEVICES INC AD7768-1 DRIVER
 -M:    Michael Hennerich <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -W:    https://ez.analog.com/linux-software-drivers
 -F:    Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
 -F:    drivers/iio/adc/ad7768-1.c
 -
 -ANALOG DEVICES INC AD7780 DRIVER
 -M:    Michael Hennerich <[email protected]>
 -M:    Renato Lui Geh <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -W:    https://ez.analog.com/linux-software-drivers
 -F:    Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
 -F:    drivers/iio/adc/ad7780.c
 -
  ANALOG DEVICES INC AD74115 DRIVER
  M:    Cosmin Tanislav <[email protected]>
  L:    [email protected]
@@@ -1165,22 -1227,11 +1165,22 @@@ F:   Documentation/devicetree/bindings/ii
  F:    drivers/iio/addac/ad74413r.c
  F:    include/dt-bindings/iio/addac/adi,ad74413r.h
  
 -ANALOG DEVICES INC AD9389B DRIVER
 -M:    Hans Verkuil <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/media/i2c/ad9389b*
 +ANALOG DEVICES INC AD7768-1 DRIVER
 +M:    Michael Hennerich <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +W:    https://ez.analog.com/linux-software-drivers
 +F:    Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
 +F:    drivers/iio/adc/ad7768-1.c
 +
 +ANALOG DEVICES INC AD7780 DRIVER
 +M:    Michael Hennerich <[email protected]>
 +M:    Renato Lui Geh <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +W:    https://ez.analog.com/linux-software-drivers
 +F:    Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
 +F:    drivers/iio/adc/ad7780.c
  
  ANALOG DEVICES INC ADA4250 DRIVER
  M:    Antoniu Miclaus <[email protected]>
@@@ -1232,10 -1283,10 +1232,10 @@@ F:   drivers/iio/imu/adis16460.
  ANALOG DEVICES INC ADIS16475 DRIVER
  M:    Nuno Sa <[email protected]>
  L:    [email protected]
 -W:    https://ez.analog.com/linux-software-drivers
  S:    Supported
 -F:    drivers/iio/imu/adis16475.c
 +W:    https://ez.analog.com/linux-software-drivers
  F:    Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
 +F:    drivers/iio/imu/adis16475.c
  
  ANALOG DEVICES INC ADM1177 DRIVER
  M:    Michael Hennerich <[email protected]>
@@@ -1253,21 -1304,21 +1253,21 @@@ W:   https://ez.analog.com/linux-software
  F:    Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
  F:    drivers/iio/frequency/admv1013.c
  
 -ANALOG DEVICES INC ADMV8818 DRIVER
 +ANALOG DEVICES INC ADMV1014 DRIVER
  M:    Antoniu Miclaus <[email protected]>
  L:    [email protected]
  S:    Supported
  W:    https://ez.analog.com/linux-software-drivers
 -F:    Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
 -F:    drivers/iio/filter/admv8818.c
 +F:    Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
 +F:    drivers/iio/frequency/admv1014.c
  
 -ANALOG DEVICES INC ADMV1014 DRIVER
 +ANALOG DEVICES INC ADMV8818 DRIVER
  M:    Antoniu Miclaus <[email protected]>
  L:    [email protected]
  S:    Supported
  W:    https://ez.analog.com/linux-software-drivers
 -F:    Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
 -F:    drivers/iio/frequency/admv1014.c
 +F:    Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
 +F:    drivers/iio/filter/admv8818.c
  
  ANALOG DEVICES INC ADP5061 DRIVER
  M:    Michael Hennerich <[email protected]>
@@@ -1289,8 -1340,8 +1289,8 @@@ M:      Lars-Peter Clausen <[email protected]
  L:    [email protected]
  S:    Supported
  W:    https://ez.analog.com/linux-software-drivers
 -F:    drivers/media/i2c/adv7180.c
  F:    Documentation/devicetree/bindings/media/i2c/adv7180.yaml
 +F:    drivers/media/i2c/adv7180.c
  
  ANALOG DEVICES INC ADV748X DRIVER
  M:    Kieran Bingham <[email protected]>
@@@ -1309,8 -1360,8 +1309,8 @@@ ANALOG DEVICES INC ADV7604 DRIVE
  M:    Hans Verkuil <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    drivers/media/i2c/adv7604*
  F:    Documentation/devicetree/bindings/media/i2c/adv7604.yaml
 +F:    drivers/media/i2c/adv7604*
  
  ANALOG DEVICES INC ADV7842 DRIVER
  M:    Hans Verkuil <[email protected]>
@@@ -1322,8 -1373,8 +1322,8 @@@ ANALOG DEVICES INC ADXRS290 DRIVE
  M:    Nishant Malpani <[email protected]>
  L:    [email protected]
  S:    Supported
 -F:    drivers/iio/gyro/adxrs290.c
  F:    Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
 +F:    drivers/iio/gyro/adxrs290.c
  
  ANALOG DEVICES INC ASOC CODEC DRIVERS
  M:    Lars-Peter Clausen <[email protected]>
@@@ -1377,6 -1428,11 +1377,6 @@@ S:     Supporte
  F:    drivers/clk/analogbits/*
  F:    include/linux/clk/analogbits*
  
 -ANDROID CONFIG FRAGMENTS
 -M:    Rob Herring <[email protected]>
 -S:    Supported
 -F:    kernel/configs/android*
 -
  ANDROID DRIVERS
  M:    Greg Kroah-Hartman <[email protected]>
  M:    Arve HjønnevÃ¥g <[email protected]>
@@@ -1538,7 -1594,7 +1538,7 @@@ F:      drivers/media/i2c/ar0521.
  
  ARASAN NAND CONTROLLER DRIVER
  M:    Miquel Raynal <[email protected]>
 -M:    Naga Sureshkumar Relli <nagasure@xilinx.com>
 +R:    Michal Simek <michal.simek@amd.com>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
@@@ -1563,19 -1619,6 +1563,19 @@@ S:    Maintaine
  F:    drivers/net/arcnet/
  F:    include/uapi/linux/if_arcnet.h
  
 +ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
 +M:    Arnd Bergmann <[email protected]>
 +M:    Olof Johansson <[email protected]>
 +M:    [email protected]
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Maintained
 +P:    Documentation/process/maintainer-soc.rst
 +C:    irc://irc.libera.chat/armlinux
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
 +F:    Documentation/process/maintainer-soc*.rst
 +F:    arch/arm/boot/dts/Makefile
 +F:    arch/arm64/boot/dts/Makefile
 +
  ARM ARCHITECTED TIMER DRIVER
  M:    Mark Rutland <[email protected]>
  M:    Marc Zyngier <[email protected]>
@@@ -1604,9 -1647,9 +1604,9 @@@ F:      Documentation/devicetree/bindings/cl
  F:    Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
  F:    Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
  F:    Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
 -F:    arch/arm/boot/dts/arm-realview-*
 -F:    arch/arm/boot/dts/integrator*
 -F:    arch/arm/boot/dts/versatile*
 +F:    arch/arm/boot/dts/arm/arm-realview-*
 +F:    arch/arm/boot/dts/arm/integrator*
 +F:    arch/arm/boot/dts/arm/versatile*
  F:    arch/arm/mach-versatile/
  F:    drivers/bus/arm-integrator-lm.c
  F:    drivers/clk/versatile/
@@@ -1617,7 -1660,10 +1617,7 @@@ F:     drivers/power/reset/arm-versatile-re
  F:    drivers/soc/versatile/
  
  ARM KOMEDA DRM-KMS DRIVER
 -M:    James (Qian) Wang <[email protected]>
  M:    Liviu Dudau <[email protected]>
 -M:    Mihail Atanassov <[email protected]>
 -L:    Mali DP Maintainers <[email protected]>
  S:    Supported
  T:    git git://anongit.freedesktop.org/drm/drm-misc
  F:    Documentation/devicetree/bindings/display/arm,komeda.yaml
@@@ -1638,6 -1684,8 +1638,6 @@@ F:      include/uapi/drm/panfrost_drm.
  
  ARM MALI-DP DRM DRIVER
  M:    Liviu Dudau <[email protected]>
 -M:    Brian Starkey <[email protected]>
 -L:    Mali DP Maintainers <[email protected]>
  S:    Supported
  T:    git git://anongit.freedesktop.org/drm/drm-misc
  F:    Documentation/devicetree/bindings/display/arm,malidp.yaml
@@@ -1684,6 -1732,22 +1684,6 @@@ S:     Odd Fixe
  F:    drivers/amba/
  F:    include/linux/amba/bus.h
  
 -ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
 -M:    Miquel Raynal <[email protected]>
 -M:    Naga Sureshkumar Relli <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
 -F:    drivers/mtd/nand/raw/pl35x-nand-controller.c
 -
 -ARM PRIMECELL PL35X SMC DRIVER
 -M:    Miquel Raynal <[email protected]>
 -M:    Naga Sureshkumar Relli <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
 -F:    drivers/memory/pl353-smc.c
 -
  ARM PRIMECELL CLCD PL110 DRIVER
  M:    Russell King <[email protected]>
  S:    Odd Fixes
@@@ -1701,22 -1765,6 +1701,22 @@@ S:    Odd Fixe
  F:    drivers/mmc/host/mmci.*
  F:    include/linux/amba/mmci.h
  
 +ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
 +M:    Miquel Raynal <[email protected]>
 +R:    Michal Simek <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
 +F:    drivers/mtd/nand/raw/pl35x-nand-controller.c
 +
 +ARM PRIMECELL PL35X SMC DRIVER
 +M:    Miquel Raynal <[email protected]>
 +R:    Michal Simek <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
 +F:    drivers/memory/pl353-smc.c
 +
  ARM PRIMECELL SSP PL022 SPI DRIVER
  M:    Linus Walleij <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
@@@ -1753,6 -1801,17 +1753,6 @@@ F:     Documentation/devicetree/bindings/io
  F:    drivers/iommu/arm/
  F:    drivers/iommu/io-pgtable-arm*
  
 -ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
 -M:    Arnd Bergmann <[email protected]>
 -M:    Olof Johansson <[email protected]>
 -M:    [email protected]
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Maintained
 -C:    irc://irc.libera.chat/armlinux
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
 -F:    arch/arm/boot/dts/Makefile
 -F:    arch/arm64/boot/dts/Makefile
 -
  ARM SUB-ARCHITECTURES
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
@@@ -1777,7 -1836,7 +1777,7 @@@ F:      Documentation/devicetree/bindings/ne
  F:    Documentation/devicetree/bindings/pinctrl/actions,*
  F:    Documentation/devicetree/bindings/power/actions,owl-sps.txt
  F:    Documentation/devicetree/bindings/timer/actions,owl-timer.txt
 -F:    arch/arm/boot/dts/owl-*
 +F:    arch/arm/boot/dts/actions/
  F:    arch/arm/mach-actions/
  F:    arch/arm64/boot/dts/actions/
  F:    drivers/clk/actions/
@@@ -1804,9 -1863,9 +1804,9 @@@ M:      Chen-Yu Tsai <[email protected]
  M:    Jernej Skrabec <[email protected]>
  M:    Samuel Holland <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
 +L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
 -L:    [email protected]
  F:    arch/arm/mach-sunxi/
  F:    arch/arm64/boot/dts/allwinner/
  F:    drivers/clk/sunxi-ng/
@@@ -1823,7 -1882,6 +1823,7 @@@ L:      [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/clock/amlogic*
  F:    drivers/clk/meson/
 +F:    include/dt-bindings/clock/amlogic,a1*
  F:    include/dt-bindings/clock/gxbb*
  F:    include/dt-bindings/clock/meson*
  
  L:    [email protected]
  S:    Maintained
  W:    http://linux-meson.com/
 -F:    arch/arm/boot/dts/meson*
 +F:    Documentation/devicetree/bindings/phy/amlogic*
 +F:    arch/arm/boot/dts/amlogic/
  F:    arch/arm/mach-meson/
  F:    arch/arm64/boot/dts/amlogic/
 +F:    drivers/genpd/amlogic/
  F:    drivers/mmc/host/meson*
 +F:    drivers/phy/amlogic/
  F:    drivers/pinctrl/meson/
  F:    drivers/rtc/rtc-meson*
  F:    drivers/soc/amlogic/
@@@ -1868,22 -1923,11 +1868,22 @@@ M:   Tsahee Zidenberg <tsahee@annapurnala
  M:    Antoine Tenart <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    arch/arm/boot/dts/alpine*
 +F:    arch/arm/boot/dts/amazon/
  F:    arch/arm/mach-alpine/
  F:    arch/arm64/boot/dts/amazon/
  F:    drivers/*/*alpine*
  
 +ARM/APPLE MACHINE SOUND DRIVERS
 +M:    Martin PoviÅ¡er <[email protected]>
 +L:    [email protected]
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/sound/adi,ssm3515.yaml
 +F:    Documentation/devicetree/bindings/sound/apple,*
 +F:    sound/soc/apple/*
 +F:    sound/soc/codecs/cs42l83-i2c.c
 +F:    sound/soc/codecs/ssm3515.c
 +
  ARM/APPLE MACHINE SUPPORT
  M:    Hector Martin <[email protected]>
  M:    Sven Peter <[email protected]>
@@@ -1911,14 -1955,12 +1911,14 @@@ F:   Documentation/devicetree/bindings/nv
  F:    Documentation/devicetree/bindings/pci/apple,pcie.yaml
  F:    Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
  F:    Documentation/devicetree/bindings/power/apple*
 +F:    Documentation/devicetree/bindings/pwm/apple,s5l-fpwm.yaml
  F:    Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
  F:    arch/arm64/boot/dts/apple/
  F:    drivers/bluetooth/hci_bcm4377.c
  F:    drivers/clk/clk-apple-nco.c
  F:    drivers/cpufreq/apple-soc-cpufreq.c
  F:    drivers/dma/apple-admac.c
 +F:    drivers/genpd/apple/
  F:    drivers/i2c/busses/i2c-pasemi-core.c
  F:    drivers/i2c/busses/i2c-pasemi-platform.c
  F:    drivers/iommu/apple-dart.c
@@@ -1928,7 -1970,6 +1928,7 @@@ F:      drivers/mailbox/apple-mailbox.
  F:    drivers/nvme/host/apple.c
  F:    drivers/nvmem/apple-efuses.c
  F:    drivers/pinctrl/pinctrl-apple-gpio.c
 +F:    drivers/pwm/pwm-apple.c
  F:    drivers/soc/apple/*
  F:    drivers/watchdog/apple_wdt.c
  F:    include/dt-bindings/interrupt-controller/apple-aic.h
@@@ -1936,13 -1977,22 +1936,13 @@@ F:   include/dt-bindings/pinctrl/apple.
  F:    include/linux/apple-mailbox.h
  F:    include/linux/soc/apple/*
  
 -ARM/APPLE MACHINE SOUND DRIVERS
 -M:    Martin PoviÅ¡er <[email protected]>
 -L:    [email protected]
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/sound/apple,*
 -F:    sound/soc/apple/*
 -F:    sound/soc/codecs/cs42l83-i2c.c
 -
  ARM/ARTPEC MACHINE SUPPORT
  M:    Jesper Nilsson <[email protected]>
  M:    Lars Persson <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
 -F:    arch/arm/boot/dts/artpec6*
 +F:    arch/arm/boot/dts/axis/
  F:    arch/arm/mach-artpec
  F:    drivers/clk/axis
  F:    drivers/crypto/axis
@@@ -1970,7 -2020,7 +1970,7 @@@ S:      Supporte
  Q:    https://patchwork.ozlabs.org/project/linux-aspeed/list/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
  F:    Documentation/devicetree/bindings/arm/aspeed/
 -F:    arch/arm/boot/dts/aspeed-*
 +F:    arch/arm/boot/dts/aspeed/
  F:    arch/arm/mach-aspeed/
  N:    aspeed
  
@@@ -1989,7 -2039,8 +1989,7 @@@ ARM/CALXEDA HIGHBANK ARCHITECTUR
  M:    Andre Przywara <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    arch/arm/boot/dts/ecx-*.dts*
 -F:    arch/arm/boot/dts/highbank.dts
 +F:    arch/arm/boot/dts/calxeda/
  F:    arch/arm/mach-highbank/
  
  ARM/CAVIUM THUNDER NETWORK DRIVER
@@@ -2021,7 -2072,6 +2021,7 @@@ M:      Alexander Sverdlin <alexander.sverdl
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  F:    Documentation/devicetree/bindings/iio/adc/cirrus,ep9301-adc.yaml
 +F:    Documentation/devicetree/bindings/sound/cirrus,ep9301-*
  F:    arch/arm/boot/compressed/misc-ep93xx.h
  F:    arch/arm/mach-ep93xx/
  F:    drivers/iio/adc/ep93xx_adc.c
@@@ -2037,13 -2087,13 +2037,13 @@@ ARM/CONEXANT DIGICOLOR MACHINE SUPPOR
  M:    Baruch Siach <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    arch/arm/boot/dts/cx92755*
 +F:    arch/arm/boot/dts/cnxt/
  N:    digicolor
  
  ARM/CORESIGHT FRAMEWORK AND DRIVERS
 -M:    Mathieu Poirier <[email protected]>
  M:    Suzuki K Poulose <[email protected]>
  R:    Mike Leach <[email protected]>
 +R:    James Clark <[email protected]>
  R:    Leo Yan <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  L:    [email protected] (moderated for non-subscribers)
@@@ -2051,19 -2101,19 +2051,19 @@@ S:   Maintaine
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
  F:    Documentation/ABI/testing/sysfs-bus-coresight-devices-*
  F:    Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
 -F:    Documentation/devicetree/bindings/arm/qcom,coresight-*.yaml
  F:    Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
  F:    Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
 +F:    Documentation/devicetree/bindings/arm/qcom,coresight-*.yaml
  F:    Documentation/trace/coresight/*
  F:    drivers/hwtracing/coresight/*
  F:    include/dt-bindings/arm/coresight-cti-dt.h
  F:    include/linux/coresight*
  F:    samples/coresight/*
 -F:    tools/perf/tests/shell/coresight/*
  F:    tools/perf/arch/arm/util/auxtrace.c
  F:    tools/perf/arch/arm/util/cs-etm.c
  F:    tools/perf/arch/arm/util/cs-etm.h
  F:    tools/perf/arch/arm/util/pmu.c
 +F:    tools/perf/tests/shell/coresight/*
  F:    tools/perf/util/cs-etm-decoder/*
  F:    tools/perf/util/cs-etm.*
  
@@@ -2077,7 -2127,7 +2077,7 @@@ F:      Documentation/devicetree/bindings/ar
  F:    Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
  F:    Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
  F:    Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
 -F:    arch/arm/boot/dts/gemini*
 +F:    arch/arm/boot/dts/gemini/
  F:    arch/arm/mach-gemini/
  F:    drivers/crypto/gemini/
  F:    drivers/net/ethernet/cortina/
@@@ -2098,9 -2148,9 +2098,9 @@@ F:      Documentation/devicetree/bindings/le
  F:    Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
  F:    drivers/bus/moxtet.c
  F:    drivers/firmware/turris-mox-rwtm.c
 +F:    drivers/gpio/gpio-moxtet.c
  F:    drivers/leds/leds-turris-omnia.c
  F:    drivers/mailbox/armada-37xx-rwtm-mailbox.c
 -F:    drivers/gpio/gpio-moxtet.c
  F:    drivers/watchdog/armada_37xx_wdt.c
  F:    include/dt-bindings/bus/moxtet.h
  F:    include/linux/armada-37xx-rwtm-mailbox.h
@@@ -2130,11 -2180,10 +2130,11 @@@ R:   NXP Linux Team <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
 -X:    drivers/media/i2c/
 -F:    arch/arm64/boot/dts/freescale/
 +F:    arch/arm/boot/dts/nxp/imx/
 +F:    arch/arm/boot/dts/nxp/mxs/
  X:    arch/arm64/boot/dts/freescale/fsl-*
  X:    arch/arm64/boot/dts/freescale/qoriq-*
 +X:    drivers/media/i2c/
  N:    imx
  N:    mxs
  
@@@ -2144,7 -2193,7 +2144,7 @@@ M:      Li Yang <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
 -F:    arch/arm/boot/dts/ls1021a*
 +F:    arch/arm/boot/dts/nxp/ls/
  F:    arch/arm64/boot/dts/freescale/fsl-*
  F:    arch/arm64/boot/dts/freescale/qoriq-*
  
@@@ -2156,7 -2205,7 +2156,7 @@@ R:      Stefan Agner <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
 -F:    arch/arm/boot/dts/vf*
 +F:    arch/arm/boot/dts/nxp/vf/
  F:    arch/arm/mach-imx/*vf610*
  
  ARM/GUMSTIX MACHINE SUPPORT
@@@ -2170,7 -2219,9 +2170,7 @@@ L:      [email protected]
  S:    Supported
  W:    http://www.hisilicon.com
  T:    git https://github.com/hisilicon/linux-hisi.git
 -F:    arch/arm/boot/dts/hi3*
 -F:    arch/arm/boot/dts/hip*
 -F:    arch/arm/boot/dts/hisi*
 +F:    arch/arm/boot/dts/hisilicon/
  F:    arch/arm/mach-hisi/
  F:    arch/arm64/boot/dts/hisilicon/
  
@@@ -2186,13 -2237,14 +2186,13 @@@ ARM/HPE GXP ARCHITECTUR
  M:    Jean-Marie Verdun <[email protected]>
  M:    Nick Hawkins <[email protected]>
  S:    Maintained
 -F:    Documentation/hwmon/gxp-fan-ctrl.rst
  F:    Documentation/devicetree/bindings/arm/hpe,gxp.yaml
  F:    Documentation/devicetree/bindings/hwmon/hpe,gxp-fan-ctrl.yaml
  F:    Documentation/devicetree/bindings/i2c/hpe,gxp-i2c.yaml
  F:    Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
  F:    Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
 -F:    arch/arm/boot/dts/hpe-bmc*
 -F:    arch/arm/boot/dts/hpe-gxp*
 +F:    Documentation/hwmon/gxp-fan-ctrl.rst
 +F:    arch/arm/boot/dts/hpe/
  F:    arch/arm/mach-hpe/
  F:    drivers/clocksource/timer-gxp.c
  F:    drivers/hwmon/gxp-fan-ctrl.c
@@@ -2206,7 -2258,7 +2206,7 @@@ M:      Javier Martinez Canillas <javier@dow
  L:    [email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    arch/arm/boot/dts/omap3-igep*
 +F:    arch/arm/boot/dts/ti/omap/omap3-igep*
  
  ARM/INTEL IXP4XX ARM ARCHITECTURE
  M:    Linus Walleij <[email protected]>
@@@ -2215,15 -2267,15 +2215,15 @@@ M:   Krzysztof Halasa <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  F:    Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
 -F:    Documentation/devicetree/bindings/memory-controllers/intel,ixp4xx-expansion*
  F:    Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
  F:    Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
 +F:    Documentation/devicetree/bindings/memory-controllers/intel,ixp4xx-expansion*
  F:    Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
 -F:    arch/arm/boot/dts/intel-ixp*
 +F:    arch/arm/boot/dts/intel/ixp/
  F:    arch/arm/mach-ixp4xx/
  F:    drivers/bus/intel-ixp4xx-eb.c
  F:    drivers/clocksource/timer-ixp4xx.c
 -F:    drivers/crypto/ixp4xx_crypto.c
 +F:    drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
  F:    drivers/gpio/gpio-ixp4xx.c
  F:    drivers/irqchip/irq-ixp4xx.c
  
@@@ -2251,7 -2303,7 +2251,7 @@@ M:      Vladimir Zapolskiy <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  F:    Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
 -F:    arch/arm/boot/dts/lpc43*
 +F:    arch/arm/boot/dts/nxp/lpc/lpc43*
  F:    drivers/i2c/busses/i2c-lpc2k.c
  F:    drivers/memory/pl172.c
  F:    drivers/mtd/spi-nor/controllers/nxp-spifi.c
@@@ -2264,7 -2316,7 +2264,7 @@@ L:      [email protected]
  S:    Maintained
  T:    git git://github.com/vzapolskiy/linux-lpc32xx.git
  F:    Documentation/devicetree/bindings/i2c/i2c-pnx.txt
 -F:    arch/arm/boot/dts/lpc32*
 +F:    arch/arm/boot/dts/nxp/lpc/lpc32*
  F:    arch/arm/mach-lpc32xx/
  F:    drivers/i2c/busses/i2c-pnx.c
  F:    drivers/net/ethernet/nxp/lpc_eth.c
@@@ -2282,8 -2334,8 +2282,8 @@@ T:      git git://git.kernel.org/pub/scm/lin
  F:    Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
  F:    Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
  F:    Documentation/devicetree/bindings/soc/dove/
 -F:    arch/arm/boot/dts/dove*
 -F:    arch/arm/boot/dts/orion5x*
 +F:    arch/arm/boot/dts/marvell/dove*
 +F:    arch/arm/boot/dts/marvell/orion5x*
  F:    arch/arm/mach-dove/
  F:    arch/arm/mach-mv78xx0/
  F:    arch/arm/mach-orion5x/
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
  F:    Documentation/devicetree/bindings/arm/marvell/
 -F:    arch/arm/boot/dts/armada*
 -F:    arch/arm/boot/dts/kirkwood*
 +F:    arch/arm/boot/dts/marvell/armada*
 +F:    arch/arm/boot/dts/marvell/kirkwood*
  F:    arch/arm/configs/mvebu_*_defconfig
  F:    arch/arm/mach-mvebu/
  F:    arch/arm64/boot/dts/marvell/armada*
  F:    arch/arm64/boot/dts/marvell/cn913*
 +F:    drivers/clk/mvebu/
  F:    drivers/cpufreq/armada-37xx-cpufreq.c
  F:    drivers/cpufreq/armada-8k-cpufreq.c
  F:    drivers/cpufreq/mvebu-cpufreq.c
@@@ -2334,7 -2385,10 +2334,7 @@@ L:     [email protected] (
  S:    Maintained
  W:    https://mtk.wiki.kernel.org/
  C:    irc://irc.libera.chat/linux-mediatek
 -F:    arch/arm/boot/dts/mt2*
 -F:    arch/arm/boot/dts/mt6*
 -F:    arch/arm/boot/dts/mt7*
 -F:    arch/arm/boot/dts/mt8*
 +F:    arch/arm/boot/dts/mediatek/
  F:    arch/arm/mach-mediatek/
  F:    arch/arm64/boot/dts/mediatek/
  F:    drivers/soc/mediatek/
@@@ -2350,25 -2404,18 +2350,25 @@@ S:   Maintaine
  F:    Documentation/devicetree/bindings/phy/mediatek,*
  F:    drivers/phy/mediatek/
  
 +ARM/MICROCHIP (ARM64) SoC support
 +M:    Conor Dooley <[email protected]>
 +M:    Nicolas Ferre <[email protected]>
 +M:    Claudiu Beznea <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Supported
 +T:    git https://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
 +F:    arch/arm64/boot/dts/microchip/
 +
  ARM/Microchip (AT91) SoC support
  M:    Nicolas Ferre <[email protected]>
  M:    Alexandre Belloni <[email protected]>
 -M:    Claudiu Beznea <claudiu.beznea@microchip.com>
 +M:    Claudiu Beznea <claudiu.beznea@tuxon.dev>
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
  W:    http://www.linux4sam.org
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
 -F:    arch/arm/boot/dts/at91*.dts
 -F:    arch/arm/boot/dts/at91*.dtsi
 -F:    arch/arm/boot/dts/sama*.dts
 -F:    arch/arm/boot/dts/sama*.dtsi
 +F:    arch/arm/boot/dts/microchip/at91*
 +F:    arch/arm/boot/dts/microchip/sama*
  F:    arch/arm/include/debug/at91.S
  F:    arch/arm/mach-at91/
  F:    drivers/memory/atmel*
@@@ -2386,17 -2433,25 +2386,17 @@@ M:   Daniel Machon <daniel.machon@microch
  M:    [email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
 -T:    git git://github.com/microchip-ung/linux-upstream.git
 -F:    arch/arm64/boot/dts/microchip/
 +F:    arch/arm64/boot/dts/microchip/sparx*
  F:    drivers/net/ethernet/microchip/vcap/
  F:    drivers/pinctrl/pinctrl-microchip-sgpio.c
  N:    sparx5
  
 -Microchip Timer Counter Block (TCB) Capture Driver
 -M:    Kamel Bouhara <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/counter/microchip-tcb-capture.c
 -
  ARM/MILBEAUT ARCHITECTURE
  M:    Taichi Sugaya <[email protected]>
  M:    Takao Orito <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    arch/arm/boot/dts/milbeaut*
 +F:    arch/arm/boot/dts/socionext/milbeaut*
  F:    arch/arm/mach-milbeaut/
  N:    milbeaut
  
@@@ -2410,7 -2465,7 +2410,7 @@@ T:      git git://github.com/linux-chenxing/
  F:    Documentation/devicetree/bindings/arm/mstar/*
  F:    Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
  F:    Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
 -F:    arch/arm/boot/dts/mstar-*
 +F:    arch/arm/boot/dts/sigmastar/
  F:    arch/arm/mach-mstar/
  F:    drivers/clk/mstar/
  F:    drivers/clocksource/timer-msc313e.c
@@@ -2429,13 -2484,12 +2429,13 @@@ F:   Documentation/devicetree/bindings/ar
  F:    Documentation/devicetree/bindings/arm/ux500.yaml
  F:    Documentation/devicetree/bindings/arm/ux500/
  F:    Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
 -F:    arch/arm/boot/dts/ste-*
 +F:    arch/arm/boot/dts/st/ste-*
  F:    arch/arm/mach-nomadik/
  F:    arch/arm/mach-ux500/
  F:    drivers/clk/clk-nomadik.c
  F:    drivers/clocksource/clksrc-dbx500-prcmu.c
  F:    drivers/dma/ste_dma40*
 +F:    drivers/genpd/st/ste-ux500-pm-domain.c
  F:    drivers/hwspinlock/u8500_hsem.c
  F:    drivers/i2c/busses/i2c-nomadik.c
  F:    drivers/iio/adc/ab8500-gpadc.c
@@@ -2447,18 -2501,6 +2447,18 @@@ F:    drivers/rtc/rtc-ab8500.
  F:    drivers/rtc/rtc-pl031.c
  F:    drivers/soc/ux500/
  
 +ARM/NUVOTON MA35 ARCHITECTURE
 +M:    Jacky Huang <[email protected]>
 +M:    Shan-Chun Hung <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Supported
 +F:    Documentation/devicetree/bindings/*/*/*ma35*
 +F:    Documentation/devicetree/bindings/*/*ma35*
 +F:    arch/arm64/boot/dts/nuvoton/*ma35*
 +F:    drivers/*/*/*ma35*
 +F:    drivers/*/*ma35*
 +K:    ma35d1
 +
  ARM/NUVOTON NPCM ARCHITECTURE
  M:    Avi Fishman <[email protected]>
  M:    Tomer Maimon <[email protected]>
@@@ -2470,12 -2512,13 +2470,12 @@@ L:   [email protected] (moderated 
  S:    Supported
  F:    Documentation/devicetree/bindings/*/*/*npcm*
  F:    Documentation/devicetree/bindings/*/*npcm*
 -F:    Documentation/devicetree/bindings/arm/npcm/*
  F:    Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
 -F:    arch/arm/boot/dts/nuvoton-npcm*
 +F:    arch/arm/boot/dts/nuvoton/nuvoton-npcm*
  F:    arch/arm/mach-npcm/
  F:    arch/arm64/boot/dts/nuvoton/
 -F:    drivers/*/*npcm*
  F:    drivers/*/*/*npcm*
 +F:    drivers/*/*npcm*
  F:    drivers/rtc/rtc-nct3018y.c
  F:    include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
  F:    include/dt-bindings/clock/nuvoton,npcm845-clk.h
@@@ -2486,7 -2529,7 +2486,7 @@@ L:      [email protected] (moderated 
  S:    Maintained
  W:    https://github.com/neuschaefer/wpcm450/wiki
  F:    Documentation/devicetree/bindings/*/*wpcm*
 -F:    arch/arm/boot/dts/nuvoton-wpcm450*
 +F:    arch/arm/boot/dts/nuvoton/nuvoton-wpcm450*
  F:    arch/arm/configs/wpcm450_defconfig
  F:    arch/arm/mach-npcm/wpcm450.c
  F:    drivers/*/*/*wpcm*
@@@ -2508,28 -2551,33 +2508,28 @@@ S:   Maintaine
  W:    http://www.digriz.org.uk/ts78xx/kernel
  F:    arch/arm/mach-orion5x/ts78xx-*
  
 -ARM/OXNAS platform support
 -M:    Neil Armstrong <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Maintained
 -F:    arch/arm/boot/dts/ox8*.dts*
 -F:    arch/arm/mach-oxnas/
 -F:    drivers/power/reset/oxnas-restart.c
 -N:    oxnas
 +ARM/QUALCOMM CHROMEBOOK SUPPORT
 +R:    [email protected]
 +F:    arch/arm64/boot/dts/qcom/sc7180*
 +F:    arch/arm64/boot/dts/qcom/sc7280*
 +F:    arch/arm64/boot/dts/qcom/sdm845-cheza*
  
  ARM/QUALCOMM SUPPORT
  M:    Andy Gross <[email protected]>
  M:    Bjorn Andersson <[email protected]>
 -R:    Konrad Dybcio <[email protected]>
 +M:    Konrad Dybcio <[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
  F:    Documentation/devicetree/bindings/*/qcom*
  F:    Documentation/devicetree/bindings/soc/qcom/
 -F:    arch/arm/boot/dts/qcom-*.dts
 -F:    arch/arm/boot/dts/qcom-*.dtsi
 +F:    arch/arm/boot/dts/qcom/
  F:    arch/arm/configs/qcom_defconfig
  F:    arch/arm/mach-qcom/
  F:    arch/arm64/boot/dts/qcom/
 +F:    drivers/*/*/pm8???-*
  F:    drivers/*/*/qcom*
  F:    drivers/*/*/qcom/
 -F:    drivers/*/pm8???-*
  F:    drivers/*/qcom*
  F:    drivers/*/qcom/
  F:    drivers/bluetooth/btqcomsmd.c
@@@ -2546,16 -2594,22 +2546,16 @@@ F:   drivers/pci/controller/dwc/pcie-qcom
  F:    drivers/phy/qualcomm/
  F:    drivers/power/*/msm*
  F:    drivers/reset/reset-qcom-*
 -F:    drivers/ufs/host/ufs-qcom*
  F:    drivers/spi/spi-geni-qcom.c
  F:    drivers/spi/spi-qcom-qspi.c
  F:    drivers/spi/spi-qup.c
  F:    drivers/tty/serial/msm_serial.c
 +F:    drivers/ufs/host/ufs-qcom*
  F:    drivers/usb/dwc3/dwc3-qcom.c
  F:    include/dt-bindings/*/qcom*
  F:    include/linux/*/qcom*
  F:    include/linux/soc/qcom/
  
 -ARM/QUALCOMM CHROMEBOOK SUPPORT
 -R:    [email protected]
 -F:    arch/arm64/boot/dts/qcom/sc7180*
 -F:    arch/arm64/boot/dts/qcom/sc7280*
 -F:    arch/arm64/boot/dts/qcom/sdm845-cheza*
 -
  ARM/RDA MICRO ARCHITECTURE
  M:    Manivannan Sadhasivam <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
@@@ -2566,7 -2620,7 +2566,7 @@@ F:      Documentation/devicetree/bindings/gp
  F:    Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
  F:    Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
  F:    Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
 -F:    arch/arm/boot/dts/rda8810pl-*
 +F:    arch/arm/boot/dts/unisoc/
  F:    drivers/clocksource/timer-rda.c
  F:    drivers/gpio/gpio-rda.c
  F:    drivers/irqchip/irq-rda-intc.c
@@@ -2578,7 -2632,7 +2578,7 @@@ L:      [email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  F:    Documentation/devicetree/bindings/arm/realtek.yaml
 -F:    arch/arm/boot/dts/rtd*
 +F:    arch/arm/boot/dts/realtek/
  F:    arch/arm/mach-realtek/
  F:    arch/arm64/boot/dts/realtek/
  
@@@ -2592,13 -2646,18 +2592,13 @@@ C:   irc://irc.libera.chat/renesas-so
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
  F:    Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
  F:    Documentation/devicetree/bindings/soc/renesas/
 -F:    arch/arm/boot/dts/emev2*
 -F:    arch/arm/boot/dts/gr-peach*
 -F:    arch/arm/boot/dts/iwg20d-q7*
 -F:    arch/arm/boot/dts/r7s*
 -F:    arch/arm/boot/dts/r8a*
 -F:    arch/arm/boot/dts/r9a*
 -F:    arch/arm/boot/dts/sh*
 +F:    arch/arm/boot/dts/renesas/
  F:    arch/arm/configs/shmobile_defconfig
  F:    arch/arm/include/debug/renesas-scif.S
  F:    arch/arm/mach-shmobile/
  F:    arch/arm64/boot/dts/renesas/
  F:    arch/riscv/boot/dts/renesas/
 +F:    drivers/genpd/renesas/
  F:    drivers/soc/renesas/
  F:    include/linux/soc/renesas/
  K:    \brenesas,
@@@ -2626,7 -2685,8 +2626,7 @@@ T:      git git://git.kernel.org/pub/scm/lin
  F:    Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
  F:    Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
  F:    Documentation/devicetree/bindings/spi/spi-rockchip.yaml
 -F:    arch/arm/boot/dts/rk3*
 -F:    arch/arm/boot/dts/rv11*
 +F:    arch/arm/boot/dts/rockchip/
  F:    arch/arm/mach-rockchip/
  F:    drivers/*/*/*rockchip*
  F:    drivers/*/*rockchip*
@@@ -2641,17 -2701,18 +2641,17 @@@ R:   Alim Akhtar <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  L:    [email protected]
  S:    Maintained
 -C:    irc://irc.libera.chat/linux-exynos
 +P:    Documentation/process/maintainer-soc-clean-dts.rst
  Q:    https://patchwork.kernel.org/project/linux-samsung-soc/list/
  B:    mailto:[email protected]
 +C:    irc://irc.libera.chat/linux-exynos
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
 -F:    Documentation/arm/samsung/
 +F:    Documentation/arch/arm/samsung/
  F:    Documentation/devicetree/bindings/arm/samsung/
  F:    Documentation/devicetree/bindings/hwinfo/samsung,*
  F:    Documentation/devicetree/bindings/power/pd-samsung.yaml
  F:    Documentation/devicetree/bindings/soc/samsung/
 -F:    arch/arm/boot/dts/exynos*
 -F:    arch/arm/boot/dts/s3c*
 -F:    arch/arm/boot/dts/s5p*
 +F:    arch/arm/boot/dts/samsung/
  F:    arch/arm/mach-exynos*/
  F:    arch/arm/mach-s3c/
  F:    arch/arm/mach-s5p*/
@@@ -2711,7 -2772,7 +2711,7 @@@ M:      Dinh Nguyen <[email protected]
  S:    Maintained
  W:    http://www.rocketboards.org
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
 -F:    arch/arm/boot/dts/socfpga*
 +F:    arch/arm/boot/dts/intel/socfpga/
  F:    arch/arm/configs/socfpga_defconfig
  F:    arch/arm/mach-socfpga/
  F:    arch/arm64/boot/dts/altera/
@@@ -2742,9 -2803,9 +2742,9 @@@ M:      Patrice Chotard <patrice.chotard@fos
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  W:    http://www.stlinux.com
 -F:    Documentation/devicetree/bindings/spi/st,ssc-spi.yaml
  F:    Documentation/devicetree/bindings/i2c/st,sti-i2c.yaml
 -F:    arch/arm/boot/dts/sti*
 +F:    Documentation/devicetree/bindings/spi/st,ssc-spi.yaml
 +F:    arch/arm/boot/dts/st/sti*
  F:    arch/arm/mach-sti/
  F:    drivers/ata/ahci_st.c
  F:    drivers/char/hw_random/st-rng.c
@@@ -2777,9 -2838,8 +2777,9 @@@ L:      [email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
 -F:    arch/arm/boot/dts/stm32*
 +F:    arch/arm/boot/dts/st/stm32*
  F:    arch/arm/mach-stm32/
 +F:    arch/arm64/boot/dts/st/
  F:    drivers/clocksource/armv7m_systick.c
  N:    stm32
  N:    stm
@@@ -2793,10 -2853,9 +2793,10 @@@ F:    Documentation/devicetree/bindings/ar
  F:    Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
  F:    Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
  F:    Documentation/devicetree/bindings/reset/sunplus,reset.yaml
 -F:    arch/arm/boot/dts/sunplus-sp7021*.dts*
 +F:    arch/arm/boot/dts/sunplus/
  F:    arch/arm/configs/sp7021_*defconfig
  F:    arch/arm/mach-sunplus/
 +F:    drivers/clk/clk-sp7021.c
  F:    drivers/irqchip/irq-sp7021-intc.c
  F:    drivers/reset/reset-sunplus.c
  F:    include/dt-bindings/clock/sunplus,sp7021-clkc.h
@@@ -2807,7 -2866,7 +2807,7 @@@ M:      Jisheng Zhang <[email protected]
  M:    Sebastian Hesselbarth <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    arch/arm/boot/dts/berlin*
 +F:    arch/arm/boot/dts/synaptics/
  F:    arch/arm/mach-berlin/
  F:    arch/arm64/boot/dts/synaptics/
  
@@@ -2849,7 -2908,7 +2849,7 @@@ M:      Santosh Shilimkar <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
 -F:    arch/arm/boot/dts/keystone-*
 +F:    arch/arm/boot/dts/ti/keystone/
  F:    arch/arm/mach-keystone/
  
  ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
@@@ -2881,6 -2940,7 +2881,6 @@@ F:      Documentation/devicetree/bindings/ar
  F:    Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
  F:    arch/arm64/boot/dts/ti/Makefile
  F:    arch/arm64/boot/dts/ti/k3-*
 -F:    include/dt-bindings/pinctrl/k3.h
  
  ARM/TOSHIBA VISCONTI ARCHITECTURE
  M:    Nobuhiro Iwamatsu <[email protected]>
@@@ -2890,15 -2950,15 +2890,15 @@@ T:   git git://git.kernel.org/pub/scm/lin
  F:    Documentation/devicetree/bindings/arm/toshiba.yaml
  F:    Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
  F:    Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
 -F:    Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
  F:    Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
 +F:    Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
  F:    Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
  F:    Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
  F:    Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
  F:    arch/arm64/boot/dts/toshiba/
  F:    drivers/clk/visconti/
 -F:    drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
  F:    drivers/gpio/gpio-visconti.c
 +F:    drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
  F:    drivers/pci/controller/dwc/pcie-visconti.c
  F:    drivers/pinctrl/visconti/
  F:    drivers/watchdog/visconti_wdt.c
@@@ -2913,7 -2973,7 +2913,7 @@@ F:      Documentation/devicetree/bindings/ar
  F:    Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
  F:    Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
  F:    Documentation/devicetree/bindings/soc/socionext/socionext,uniphier*.yaml
 -F:    arch/arm/boot/dts/uniphier*
 +F:    arch/arm/boot/dts/socionext/uniphier*
  F:    arch/arm/include/asm/hardware/cache-uniphier.h
  F:    arch/arm/mach-uniphier/
  F:    arch/arm/mm/cache-uniphier.c
@@@ -2936,13 -2996,14 +2936,13 @@@ M:   Sudeep Holla <[email protected]
  M:    Lorenzo Pieralisi <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    */*/*/vexpress*
 -F:    */*/vexpress*
 -F:    arch/arm/boot/dts/vexpress*
 +N:    mps2
 +N:    vexpress
  F:    arch/arm/mach-versatile/
  F:    arch/arm64/boot/dts/arm/
 -F:    drivers/clk/versatile/clk-vexpress-osc.c
  F:    drivers/clocksource/timer-versatile.c
 -N:    mps2
 +X:    drivers/cpufreq/vexpress-spc-cpufreq.c
 +X:    Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
  
  ARM/VFP SUPPORT
  M:    Russell King <[email protected]>
@@@ -2969,7 -3030,7 +2969,7 @@@ F:      drivers/video/fbdev/wm8505fb
  F:    drivers/video/fbdev/wmt_ge_rops.*
  
  ARM/ZYNQ ARCHITECTURE
 -M:    Michal Simek <michal.simek@xilinx.com>
 +M:    Michal Simek <michal.simek@amd.com>
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
  W:    http://wiki.xilinx.com
@@@ -2995,7 -3056,7 +2995,7 @@@ M:      Will Deacon <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
 -F:    Documentation/arm64/
 +F:    Documentation/arch/arm64/
  F:    arch/arm64/
  F:    tools/testing/selftests/arm64/
  X:    arch/arm64/boot/dts/
@@@ -3042,13 -3103,6 +3042,13 @@@ S:    Maintaine
  F:    Documentation/devicetree/bindings/net/asix,ax88796c.yaml
  F:    drivers/net/ethernet/asix/ax88796c_*
  
 +ASPEED CRYPTO DRIVER
 +M:    Neal Liu <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/crypto/aspeed,*
 +F:    drivers/crypto/aspeed/
 +
  ASPEED PECI CONTROLLER
  M:    Iwona Winiarska <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
@@@ -3093,13 -3147,6 +3093,13 @@@ S:    Maintaine
  F:    Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
  F:    drivers/spi/spi-aspeed-smc.c
  
 +ASPEED USB UDC DRIVER
 +M:    Neal Liu <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
 +F:    drivers/usb/gadget/udc/aspeed_udc.c
 +
  ASPEED VIDEO ENGINE DRIVER
  M:    Eddie James <[email protected]>
  L:    [email protected]
@@@ -3108,11 -3155,19 +3108,11 @@@ S:   Maintaine
  F:    Documentation/devicetree/bindings/media/aspeed-video.txt
  F:    drivers/media/platform/aspeed/
  
 -ASPEED USB UDC DRIVER
 -M:    Neal Liu <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
 -F:    drivers/usb/gadget/udc/aspeed_udc.c
 -
 -ASPEED CRYPTO DRIVER
 -M:    Neal Liu <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 +ASUS EC HARDWARE MONITOR DRIVER
 +M:    Eugene Shalygin <[email protected]>
 +L:    [email protected]
  S:    Maintained
 -F:    Documentation/devicetree/bindings/crypto/aspeed,*
 -F:    drivers/crypto/aspeed/
 +F:    drivers/hwmon/asus-ec-sensors.c
  
  ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
  M:    Corentin Chary <[email protected]>
@@@ -3130,12 -3185,6 +3130,12 @@@ S:    Maintaine
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
  F:    drivers/platform/x86/asus-tf103c-dock.c
  
 +ASUS WIRELESS RADIO CONTROL DRIVER
 +M:    João Paulo Rechi Vita <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/platform/x86/asus-wireless.c
 +
  ASUS WMI HARDWARE MONITOR DRIVER
  M:    Ed Brindley <[email protected]>
  M:    Denis Pauk <[email protected]>
  S:    Maintained
  F:    drivers/hwmon/asus_wmi_sensors.c
  
 -ASUS EC HARDWARE MONITOR DRIVER
 -M:    Eugene Shalygin <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/hwmon/asus-ec-sensors.c
 -
 -ASUS WIRELESS RADIO CONTROL DRIVER
 -M:    João Paulo Rechi Vita <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/platform/x86/asus-wireless.c
 -
  ASYMMETRIC KEYS
  M:    David Howells <[email protected]>
  L:    [email protected]
@@@ -3256,7 -3317,7 +3256,7 @@@ F:      include/uapi/linux/atm
  
  ATMEL MACB ETHERNET DRIVER
  M:    Nicolas Ferre <[email protected]>
 -M:    Claudiu Beznea <claudiu.beznea@microchip.com>
 +M:    Claudiu Beznea <claudiu.beznea@tuxon.dev>
  S:    Supported
  F:    drivers/net/ethernet/cadence/
  
@@@ -3268,8 -3329,9 +3268,8 @@@ F:      Documentation/devicetree/bindings/in
  F:    drivers/input/touchscreen/atmel_mxt_ts.c
  
  ATMEL WIRELESS DRIVER
 -M:    Simon Kelley <[email protected]>
  L:    [email protected]
 -S:    Maintained
 +S:    Orphan
  W:    http://www.thekelleys.org.uk/atmel
  W:    http://atmelwlandriver.sourceforge.net/
  F:    drivers/net/wireless/atmel/atmel*
@@@ -3281,10 -3343,10 +3281,10 @@@ R:   Boqun Feng <[email protected]
  R:    Mark Rutland <[email protected]>
  L:    [email protected]
  S:    Maintained
 +F:    Documentation/atomic_*.txt
  F:    arch/*/include/asm/atomic*.h
  F:    include/*/atomic*.h
  F:    include/linux/refcount.h
 -F:    Documentation/atomic_*.txt
  F:    scripts/atomic/
  
  ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
@@@ -3316,16 -3378,6 +3316,16 @@@ F:    include/uapi/linux/audit.
  F:    kernel/audit*
  F:    lib/*audit.c
  
 +AUXILIARY BUS DRIVER
 +M:    Greg Kroah-Hartman <[email protected]>
 +R:    Dave Ertman <[email protected]>
 +R:    Ira Weiny <[email protected]>
 +S:    Supported
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
 +F:    Documentation/driver-api/auxiliary_bus.rst
 +F:    drivers/base/auxiliary.c
 +F:    include/linux/auxiliary_bus.h
 +
  AUXILIARY DISPLAY DRIVERS
  M:    Miguel Ojeda <[email protected]>
  S:    Maintained
@@@ -3353,10 -3405,10 +3353,10 @@@ AXENTIA ARM DEVICE
  M:    Peter Rosin <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    arch/arm/boot/dts/at91-linea.dtsi
 -F:    arch/arm/boot/dts/at91-natte.dtsi
 -F:    arch/arm/boot/dts/at91-nattis-2-natte-2.dts
 -F:    arch/arm/boot/dts/at91-tse850-3.dts
 +F:    arch/arm/boot/dts/microchip/at91-linea.dtsi
 +F:    arch/arm/boot/dts/microchip/at91-natte.dtsi
 +F:    arch/arm/boot/dts/microchip/at91-nattis-2-natte-2.dts
 +F:    arch/arm/boot/dts/microchip/at91-tse850-3.dts
  
  AXENTIA ASOC DRIVERS
  M:    Peter Rosin <[email protected]>
@@@ -3399,7 -3451,7 +3399,7 @@@ F:      drivers/media/radio/radio-aztech
  B43 WIRELESS DRIVER
  L:    [email protected]
  L:    [email protected]
 -S:    Odd Fixes
 +S:    Orphan
  W:    https://wireless.wiki.kernel.org/en/users/Drivers/b43
  F:    drivers/net/wireless/broadcom/b43/
  
@@@ -3487,7 -3539,7 +3487,7 @@@ F:      Documentation/filesystems/befs.rs
  F:    fs/befs/
  
  BFQ I/O SCHEDULER
 -M:    Paolo Valente <paolo.valente@linaro.org>
 +M:    Paolo Valente <paolo.valente@unimore.it>
  M:    Jens Axboe <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -3506,24 -3558,18 +3506,24 @@@ M:   Yury Norov <[email protected]
  R:    Andy Shevchenko <[email protected]>
  R:    Rasmus Villemoes <[email protected]>
  S:    Maintained
 +F:    include/linux/bitfield.h
  F:    include/linux/bitmap.h
 +F:    include/linux/bits.h
  F:    include/linux/cpumask.h
  F:    include/linux/find.h
  F:    include/linux/nodemask.h
 +F:    include/vdso/bits.h
  F:    lib/bitmap.c
  F:    lib/cpumask.c
  F:    lib/cpumask_kunit.c
  F:    lib/find_bit.c
  F:    lib/find_bit_benchmark.c
  F:    lib/test_bitmap.c
 +F:    tools/include/linux/bitfield.h
  F:    tools/include/linux/bitmap.h
 +F:    tools/include/linux/bits.h
  F:    tools/include/linux/find.h
 +F:    tools/include/vdso/bits.h
  F:    tools/lib/bitmap.c
  F:    tools/lib/find_bit.c
  
@@@ -3561,7 -3607,6 +3561,7 @@@ S:      Supporte
  W:    http://www.bluez.org/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
 +F:    Documentation/devicetree/bindings/net/bluetooth/
  F:    drivers/bluetooth/
  
  BLUETOOTH SUBSYSTEM
@@@ -3595,6 -3640,50 +3595,6 @@@ S:     Maintaine
  F:    Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
  F:    drivers/iio/accel/bma400*
  
 -BPF [GENERAL] (Safe Dynamic Programs and Tools)
 -M:    Alexei Starovoitov <[email protected]>
 -M:    Daniel Borkmann <[email protected]>
 -M:    Andrii Nakryiko <[email protected]>
 -R:    Martin KaFai Lau <[email protected]>
 -R:    Song Liu <[email protected]>
 -R:    Yonghong Song <[email protected]>
 -R:    John Fastabend <[email protected]>
 -R:    KP Singh <[email protected]>
 -R:    Stanislav Fomichev <[email protected]>
 -R:    Hao Luo <[email protected]>
 -R:    Jiri Olsa <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -W:    https://bpf.io/
 -Q:    https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
 -F:    Documentation/bpf/
 -F:    Documentation/networking/filter.rst
 -F:    Documentation/userspace-api/ebpf/
 -F:    arch/*/net/*
 -F:    include/linux/bpf*
 -F:    include/linux/btf*
 -F:    include/linux/filter.h
 -F:    include/trace/events/xdp.h
 -F:    include/uapi/linux/bpf*
 -F:    include/uapi/linux/btf*
 -F:    include/uapi/linux/filter.h
 -F:    kernel/bpf/
 -F:    kernel/trace/bpf_trace.c
 -F:    lib/test_bpf.c
 -F:    net/bpf/
 -F:    net/core/filter.c
 -F:    net/sched/act_bpf.c
 -F:    net/sched/cls_bpf.c
 -F:    samples/bpf/
 -F:    scripts/bpf_doc.py
 -F:    scripts/pahole-flags.sh
 -F:    scripts/pahole-version.sh
 -F:    tools/bpf/
 -F:    tools/lib/bpf/
 -F:    tools/testing/selftests/bpf/
 -
  BPF JIT for ARM
  M:    Shubham Bansal <[email protected]>
  L:    [email protected]
@@@ -3673,136 -3762,54 +3673,136 @@@ S: Supporte
  F:    arch/x86/net/
  X:    arch/x86/net/bpf_jit_comp32.c
  
 +BPF [BTF]
 +M:    Martin KaFai Lau <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    include/linux/btf*
 +F:    kernel/bpf/btf.c
 +
  BPF [CORE]
  M:    Alexei Starovoitov <[email protected]>
  M:    Daniel Borkmann <[email protected]>
  R:    John Fastabend <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    kernel/bpf/verifier.c
 -F:    kernel/bpf/tnum.c
 +F:    include/linux/bpf*
 +F:    include/linux/filter.h
 +F:    include/linux/tnum.h
  F:    kernel/bpf/core.c
 -F:    kernel/bpf/syscall.c
  F:    kernel/bpf/dispatcher.c
 +F:    kernel/bpf/mprog.c
 +F:    kernel/bpf/syscall.c
 +F:    kernel/bpf/tnum.c
  F:    kernel/bpf/trampoline.c
 +F:    kernel/bpf/verifier.c
 +
 +BPF [DOCUMENTATION] (Related to Standardization)
 +R:    David Vernet <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/bpf/standardization/
 +
 +BPF [GENERAL] (Safe Dynamic Programs and Tools)
 +M:    Alexei Starovoitov <[email protected]>
 +M:    Daniel Borkmann <[email protected]>
 +M:    Andrii Nakryiko <[email protected]>
 +R:    Martin KaFai Lau <[email protected]>
 +R:    Song Liu <[email protected]>
 +R:    Yonghong Song <[email protected]>
 +R:    John Fastabend <[email protected]>
 +R:    KP Singh <[email protected]>
 +R:    Stanislav Fomichev <[email protected]>
 +R:    Hao Luo <[email protected]>
 +R:    Jiri Olsa <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +W:    https://bpf.io/
 +Q:    https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
 +F:    Documentation/bpf/
 +F:    Documentation/networking/filter.rst
 +F:    Documentation/userspace-api/ebpf/
 +F:    arch/*/net/*
  F:    include/linux/bpf*
 +F:    include/linux/btf*
  F:    include/linux/filter.h
 -F:    include/linux/tnum.h
 +F:    include/trace/events/xdp.h
 +F:    include/uapi/linux/bpf*
 +F:    include/uapi/linux/btf*
 +F:    include/uapi/linux/filter.h
 +F:    kernel/bpf/
 +F:    kernel/trace/bpf_trace.c
 +F:    lib/test_bpf.c
 +F:    net/bpf/
 +F:    net/core/filter.c
 +F:    net/sched/act_bpf.c
 +F:    net/sched/cls_bpf.c
 +F:    samples/bpf/
 +F:    scripts/bpf_doc.py
 +F:    scripts/pahole-flags.sh
 +F:    scripts/pahole-version.sh
 +F:    tools/bpf/
 +F:    tools/lib/bpf/
 +F:    tools/testing/selftests/bpf/
  
 -BPF [BTF]
 -M:    Martin KaFai Lau <martin.lau@linux.dev>
 +BPF [ITERATOR]
 +M:    Yonghong Song <yonghong.song@linux.dev>
  L:    [email protected]
  S:    Maintained
 -F:    kernel/bpf/btf.c
 -F:    include/linux/btf*
 +F:    kernel/bpf/*iter.c
  
 -BPF [TRACING]
 -M:    Song Liu <[email protected]>
 -R:    Jiri Olsa <[email protected]>
 +BPF [L7 FRAMEWORK] (sockmap)
 +M:    John Fastabend <[email protected]>
 +M:    Jakub Sitnicki <[email protected]>
 +L:    [email protected]
  L:    [email protected]
  S:    Maintained
 -F:    kernel/trace/bpf_trace.c
 -F:    kernel/bpf/stackmap.c
 +F:    include/linux/skmsg.h
 +F:    net/core/skmsg.c
 +F:    net/core/sock_map.c
 +F:    net/ipv4/tcp_bpf.c
 +F:    net/ipv4/udp_bpf.c
 +F:    net/unix/unix_bpf.c
 +
 +BPF [LIBRARY] (libbpf)
 +M:    Andrii Nakryiko <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    tools/lib/bpf/
 +
 +BPF [MISC]
 +L:    [email protected]
 +S:    Odd Fixes
 +K:    (?:\b|_)bpf(?:\b|_)
  
 -BPF [NETWORKING] (tc BPF, sock_addr)
 +BPF [NETWORKING] (struct_ops, reuseport)
 +M:    Martin KaFai Lau <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    kernel/bpf/bpf_struct*
 +
 +BPF [NETWORKING] (tcx & tc BPF, sock_addr)
  M:    Martin KaFai Lau <[email protected]>
  M:    Daniel Borkmann <[email protected]>
  R:    John Fastabend <[email protected]>
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
 +F:    include/net/tcx.h
 +F:    kernel/bpf/tcx.c
  F:    net/core/filter.c
  F:    net/sched/act_bpf.c
  F:    net/sched/cls_bpf.c
  
 -BPF [NETWORKING] (struct_ops, reuseport)
 -M:    Martin KaFai Lau <[email protected]>
 +BPF [RINGBUF]
 +M:    Andrii Nakryiko <[email protected]>
  L:    [email protected]
 -L:    [email protected]
  S:    Maintained
 -F:    kernel/bpf/bpf_struct*
 +F:    kernel/bpf/ringbuf.c
  
  BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
  M:    KP Singh <[email protected]>
@@@ -3815,20 -3822,44 +3815,20 @@@ F:   include/linux/bpf_lsm.
  F:    kernel/bpf/bpf_lsm.c
  F:    security/bpf/
  
 -BPF [STORAGE & CGROUPS]
 -M:    Martin KaFai Lau <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    kernel/bpf/cgroup.c
 -F:    kernel/bpf/*storage.c
 -F:    kernel/bpf/bpf_lru*
 -
 -BPF [RINGBUF]
 +BPF [SELFTESTS] (Test Runners & Infrastructure)
  M:    Andrii Nakryiko <[email protected]>
 +R:    Mykola Lysenko <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    kernel/bpf/ringbuf.c
 -
 -BPF [ITERATOR]
 -M:    Yonghong Song <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    kernel/bpf/*iter.c
 -
 -BPF [L7 FRAMEWORK] (sockmap)
 -M:    John Fastabend <[email protected]>
 -M:    Jakub Sitnicki <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -S:    Maintained
 -F:    include/linux/skmsg.h
 -F:    net/core/skmsg.c
 -F:    net/core/sock_map.c
 -F:    net/ipv4/tcp_bpf.c
 -F:    net/ipv4/udp_bpf.c
 -F:    net/unix/unix_bpf.c
 +F:    tools/testing/selftests/bpf/
  
 -BPF [LIBRARY] (libbpf)
 -M:    Andrii Nakryiko <[email protected]>
 +BPF [STORAGE & CGROUPS]
 +M:    Martin KaFai Lau <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    tools/lib/bpf/
 +F:    kernel/bpf/*storage.c
 +F:    kernel/bpf/bpf_lru*
 +F:    kernel/bpf/cgroup.c
  
  BPF [TOOLING] (bpftool)
  M:    Quentin Monnet <[email protected]>
@@@ -3837,22 -3868,24 +3837,22 @@@ S:   Maintaine
  F:    kernel/bpf/disasm.*
  F:    tools/bpf/bpftool/
  
 -BPF [SELFTESTS] (Test Runners & Infrastructure)
 -M:    Andrii Nakryiko <[email protected]>
 -R:    Mykola Lysenko <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    tools/testing/selftests/bpf/
 -
 -BPF [DOCUMENTATION] (Related to Standardization)
 -R:    David Vernet <[email protected]>
 +BPF [TRACING]
 +M:    Song Liu <[email protected]>
 +R:    Jiri Olsa <[email protected]>
  L:    [email protected]
 -L:    [email protected]
  S:    Maintained
 -F:    Documentation/bpf/instruction-set.rst
 +F:    kernel/bpf/stackmap.c
 +F:    kernel/trace/bpf_trace.c
  
 -BPF [MISC]
 -L:    [email protected]
 -S:    Odd Fixes
 -K:    (?:\b|_)bpf(?:\b|_)
 +BROADCOM ASP 2.0 ETHERNET DRIVER
 +M:    Justin Chen <[email protected]>
 +M:    Florian Fainelli <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Supported
 +F:    Documentation/devicetree/bindings/net/brcm,asp-v2.0.yaml
 +F:    drivers/net/ethernet/broadcom/asp2/
  
  BROADCOM B44 10/100 ETHERNET DRIVER
  M:    Michael Chan <[email protected]>
@@@ -3861,7 -3894,7 +3861,7 @@@ S:      Supporte
  F:    drivers/net/ethernet/broadcom/b44.*
  
  BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  L:    [email protected]
  L:    [email protected] (subscribers-only)
  S:    Supported
@@@ -3871,8 -3904,36 +3871,8 @@@ F:     drivers/net/dsa/bcm_sf2
  F:    include/linux/dsa/brcm.h
  F:    include/linux/platform_data/b53.h
  
 -BROADCOM BCMBCA ARM ARCHITECTURE
 -M:    William Zhang <[email protected]>
 -M:    Anand Gore <[email protected]>
 -M:    Kursad Oney <[email protected]>
 -M:    Florian Fainelli <[email protected]>
 -M:    RafaÅ‚ MiÅ‚ecki <[email protected]>
 -R:    Broadcom internal kernel review list <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Maintained
 -T:    git https://github.com/broadcom/stblinux.git
 -F:    Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
 -F:    arch/arm64/boot/dts/broadcom/bcmbca/*
 -N:    bcmbca
 -N:    bcm[9]?47622
 -N:    bcm[9]?4912
 -N:    bcm[9]?63138
 -N:    bcm[9]?63146
 -N:    bcm[9]?63148
 -N:    bcm[9]?63158
 -N:    bcm[9]?63178
 -N:    bcm[9]?6756
 -N:    bcm[9]?6813
 -N:    bcm[9]?6846
 -N:    bcm[9]?6855
 -N:    bcm[9]?6856
 -N:    bcm[9]?6858
 -N:    bcm[9]?6878
 -
  BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  L:    [email protected] (moderated for non-subscribers)
@@@ -3886,7 -3947,7 +3886,7 @@@ N:      bcm283
  N:    raspberrypi
  
  BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  M:    Ray Jui <[email protected]>
  M:    Scott Branden <[email protected]>
  R:    Broadcom internal kernel review list <[email protected]>
@@@ -3925,26 -3986,25 +3925,26 @@@ F:   Documentation/devicetree/bindings/pi
  F:    drivers/pinctrl/bcm/pinctrl-bcm4908.c
  
  BROADCOM BCM5301X ARM ARCHITECTURE
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  M:    Hauke Mehrtens <[email protected]>
  M:    RafaÅ‚ MiÅ‚ecki <[email protected]>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    arch/arm/boot/dts/bcm470*
 -F:    arch/arm/boot/dts/bcm5301*
 -F:    arch/arm/boot/dts/bcm953012*
 +F:    arch/arm/boot/dts/broadcom/bcm-ns.dtsi
 +F:    arch/arm/boot/dts/broadcom/bcm470*
 +F:    arch/arm/boot/dts/broadcom/bcm5301*
 +F:    arch/arm/boot/dts/broadcom/bcm953012*
  F:    arch/arm/mach-bcm/bcm_5301x.c
  
  BROADCOM BCM53573 ARM ARCHITECTURE
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  M:    RafaÅ‚ MiÅ‚ecki <[email protected]>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    arch/arm/boot/dts/bcm47189*
 -F:    arch/arm/boot/dts/bcm53573*
 +F:    arch/arm/boot/dts/broadcom/bcm47189*
 +F:    arch/arm/boot/dts/broadcom/bcm53573*
  
  BROADCOM BCM63XX/BCM33XX UDC DRIVER
  M:    Kevin Cernekee <[email protected]>
@@@ -3953,13 -4013,13 +3953,13 @@@ S:   Maintaine
  F:    drivers/usb/gadget/udc/bcm63xx_udc.*
  
  BROADCOM BCM7XXX ARM ARCHITECTURE
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  T:    git https://github.com/broadcom/stblinux.git
  F:    Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
 -F:    arch/arm/boot/dts/bcm7*.dts*
 +F:    arch/arm/boot/dts/broadcom/bcm7*.dts*
  F:    arch/arm/include/asm/hardware/cache-b15-rac.h
  F:    arch/arm/mach-bcm/*brcmstb*
  F:    arch/arm/mm/cache-b15-rac.c
@@@ -3969,39 -4029,11 +3969,39 @@@ N:   brcmst
  N:    bcm7038
  N:    bcm7120
  
 +BROADCOM BCMBCA ARM ARCHITECTURE
 +M:    William Zhang <[email protected]>
 +M:    Anand Gore <[email protected]>
 +M:    Kursad Oney <[email protected]>
 +M:    Florian Fainelli <[email protected]>
 +M:    RafaÅ‚ MiÅ‚ecki <[email protected]>
 +R:    Broadcom internal kernel review list <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Maintained
 +T:    git https://github.com/broadcom/stblinux.git
 +F:    Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
 +F:    arch/arm64/boot/dts/broadcom/bcmbca/*
 +N:    bcmbca
 +N:    bcm[9]?47622
 +N:    bcm[9]?4912
 +N:    bcm[9]?63138
 +N:    bcm[9]?63146
 +N:    bcm[9]?63148
 +N:    bcm[9]?63158
 +N:    bcm[9]?63178
 +N:    bcm[9]?6756
 +N:    bcm[9]?6813
 +N:    bcm[9]?6846
 +N:    bcm[9]?6855
 +N:    bcm[9]?6856
 +N:    bcm[9]?6858
 +N:    bcm[9]?6878
 +
  BROADCOM BDC DRIVER
 -M:    Justin Chen <justinpopo6@gmail.com>
 +M:    Justin Chen <justin.chen@broadcom.com>
  M:    Al Cooper <[email protected]>
 -L:    [email protected]
  R:    Broadcom internal kernel review list <[email protected]>
 +L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/usb/brcm,bdc.yaml
  F:    drivers/usb/gadget/udc/bdc/
@@@ -4014,7 -4046,7 +4014,7 @@@ S:      Maintaine
  F:    drivers/cpufreq/bmips-cpufreq.c
  
  BROADCOM BMIPS MIPS ARCHITECTURE
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -4023,10 -4055,10 +4023,10 @@@ F:   arch/mips/bmips/
  F:    arch/mips/boot/dts/brcm/bcm*.dts*
  F:    arch/mips/include/asm/mach-bmips/*
  F:    arch/mips/kernel/*bmips*
 -F:    drivers/soc/bcm/bcm63xx
  F:    drivers/irqchip/irq-bcm63*
  F:    drivers/irqchip/irq-bcm7*
  F:    drivers/irqchip/irq-brcmstb*
 +F:    drivers/genpd/bcm/bcm63xx-power.c
  F:    include/linux/bcm963xx_nvram.h
  F:    include/linux/bcm963xx_tag.h
  
@@@ -4082,14 -4114,14 +4082,14 @@@ F:   drivers/net/wireless/broadcom/brcm80
  
  BROADCOM BRCMSTB GPIO DRIVER
  M:    Doug Berger <[email protected]>
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom>
  R:    Broadcom internal kernel review list <[email protected]>
  S:    Supported
  F:    Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
  F:    drivers/gpio/gpio-brcmstb.c
  
  BROADCOM BRCMSTB I2C DRIVER
 -M:    Kamal Dasu <kdasu.kdev@gmail.com>
 +M:    Kamal Dasu <kamal.dasu@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
  S:    Supported
@@@ -4105,7 -4137,7 +4105,7 @@@ F:      Documentation/devicetree/bindings/se
  F:    drivers/tty/serial/8250/8250_bcm7271.c
  
  BROADCOM BRCMSTB USB EHCI DRIVER
 -M:    Justin Chen <justinpopo6@gmail.com>
 +M:    Justin Chen <justin.chen@broadcom.com>
  M:    Al Cooper <[email protected]>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
@@@ -4122,7 -4154,7 +4122,7 @@@ F:      Documentation/devicetree/bindings/us
  F:    drivers/usb/misc/brcmstb-usb-pinmap.c
  
  BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
 -M:    Justin Chen <justinpopo6@gmail.com>
 +M:    Justin Chen <justin.chen@broadcom.com>
  M:    Al Cooper <[email protected]>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
@@@ -4140,15 -4172,8 +4140,15 @@@ F:    Documentation/devicetree/bindings/sp
  F:    drivers/spi/spi-bcm63xx-hsspi.c
  F:    drivers/spi/spi-bcmbca-hsspi.c
  
 +BROADCOM BCM6348/BCM6358 SPI controller DRIVER
 +M:    Jonas Gorski <[email protected]>
 +L:    [email protected]
 +S:    Odd Fixes
 +F:    Documentation/devicetree/bindings/spi/brcm,bcm63xx-spi.yaml
 +F:    drivers/spi/spi-bcm63xx.c
 +
  BROADCOM ETHERNET PHY DRIVERS
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
  S:    Supported
@@@ -4159,7 -4184,7 +4159,7 @@@ F:      include/linux/brcmphy.
  
  BROADCOM GENET ETHERNET DRIVER
  M:    Doug Berger <[email protected]>
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
  S:    Supported
@@@ -4213,7 -4238,7 +4213,7 @@@ BROADCOM KONA GPIO DRIVE
  M:    Ray Jui <[email protected]>
  R:    Broadcom internal kernel review list <[email protected]>
  S:    Supported
 -F:    Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
 +F:    Documentation/devicetree/bindings/gpio/brcm,kona-gpio.yaml
  F:    drivers/gpio/gpio-bcm-kona.c
  
  BROADCOM MPI3 STORAGE CONTROLLER DRIVER
@@@ -4243,12 -4268,12 +4243,12 @@@ F:   drivers/firmware/broadcom/
  
  BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
  M:    RafaÅ‚ MiÅ‚ecki <[email protected]>
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git https://github.com/broadcom/stblinux.git
 -F:    drivers/soc/bcm/bcm63xx/bcm-pmb.c
 +F:    drivers/genpd/bcm/bcm-pmb.c
  F:    include/dt-bindings/soc/bcm-pmb.h
  
  BROADCOM SPECIFIC AMBA DRIVER (BCMA)
@@@ -4259,7 -4284,7 +4259,7 @@@ F:      drivers/bcma
  F:    include/linux/bcma/
  
  BROADCOM SPI DRIVER
 -M:    Kamal Dasu <kdasu.kdev@gmail.com>
 +M:    Kamal Dasu <kamal.dasu@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
@@@ -4293,7 -4318,7 +4293,7 @@@ F:      drivers/memory/brcmstb_dpfe.
  
  BROADCOM STB NAND FLASH DRIVER
  M:    Brian Norris <[email protected]>
 -M:    Kamal Dasu <kdasu.kdev@gmail.com>
 +M:    Kamal Dasu <kamal.dasu@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -4303,7 -4328,7 +4303,7 @@@ F:      include/linux/platform_data/brcmnand
  BROADCOM STB PCIE DRIVER
  M:    Jim Quinlan <[email protected]>
  M:    Nicolas Saenz Julienne <[email protected]>
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -4311,13 -4336,13 +4311,13 @@@ F:   Documentation/devicetree/bindings/pc
  F:    drivers/pci/controller/pcie-brcmstb.c
  
  BROADCOM SYSTEMPORT ETHERNET DRIVER
 -M:    Florian Fainelli <f.fainelli@gmail.com>
 +M:    Florian Fainelli <florian.fainelli@broadcom.com>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
  S:    Supported
 +F:    Documentation/devicetree/bindings/net/brcm,systemport.yaml
  F:    drivers/net/ethernet/broadcom/bcmsysport.*
  F:    drivers/net/ethernet/broadcom/unimac.h
 -F:    Documentation/devicetree/bindings/net/brcm,systemport.yaml
  
  BROADCOM TG3 GIGABIT ETHERNET DRIVER
  M:    Siva Reddy Kallam <[email protected]>
@@@ -4413,13 -4438,6 +4413,13 @@@ S:    Maintaine
  F:    drivers/scsi/BusLogic.*
  F:    drivers/scsi/FlashPoint.*
  
 +BXCAN CAN NETWORK DRIVER
 +M:    Dario Binacchi <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/net/can/st,stm32-bxcan.yaml
 +F:    drivers/net/can/bxcan.c
 +
  C-MEDIA CMI8788 DRIVER
  M:    Clemens Ladisch <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
@@@ -4445,9 -4463,32 +4445,9 @@@ K:     csk
  CA8210 IEEE-802.15.4 RADIO DRIVER
  L:    [email protected]
  S:    Orphan
 -W:    https://github.com/Cascoda/ca8210-linux.git
 -F:    Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
 -F:    drivers/net/ieee802154/ca8210.c
 -
 -CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
 -M:    Damien Le Moal <[email protected]>
 -L:    [email protected]
 -L:    [email protected] (pinctrl driver)
 -F:    Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
 -F:    drivers/pinctrl/pinctrl-k210.c
 -
 -CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
 -M:    Damien Le Moal <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
 -F:    drivers/reset/reset-k210.c
 -
 -CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
 -M:    Damien Le Moal <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
 -F:    drivers/soc/canaan/
 -F:    include/soc/canaan/
 +W:    https://github.com/Cascoda/ca8210-linux.git
 +F:    Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
 +F:    drivers/net/ieee802154/ca8210.c
  
  CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
  M:    David Howells <[email protected]>
@@@ -4456,19 -4497,11 +4456,19 @@@ S:   Supporte
  F:    Documentation/filesystems/caching/cachefiles.rst
  F:    fs/cachefiles/
  
 +CACHESTAT: PAGE CACHE STATS FOR A FILE
 +M:    Nhat Pham <[email protected]>
 +M:    Johannes Weiner <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    tools/testing/selftests/cachestat/test_cachestat.c
 +
  CADENCE MIPI-CSI2 BRIDGES
  M:    Maxime Ripard <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/media/cdns,*.txt
 +F:    Documentation/devicetree/bindings/media/cdns,csi2rx.yaml
  F:    drivers/media/platform/cadence/cdns-csi2*
  
  CADENCE NAND DRIVER
@@@ -4481,6 -4514,7 +4481,6 @@@ CADENCE USB3 DRD IP DRIVE
  M:    Peter Chen <[email protected]>
  M:    Pawel Laszczak <[email protected]>
  R:    Roger Quadros <[email protected]>
 -R:    Aswath Govindraju <[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
@@@ -4488,12 -4522,6 +4488,12 @@@ F:    Documentation/devicetree/bindings/us
  F:    drivers/usb/cdns3/
  X:    drivers/usb/cdns3/cdnsp*
  
 +CADENCE USBHS DRIVER
 +M:    Pawel Laszczak <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/usb/gadget/udc/cdns2
 +
  CADENCE USBSSP DRD IP DRIVER
  M:    Pawel Laszczak <[email protected]>
  L:    [email protected]
@@@ -4583,29 -4611,6 +4583,29 @@@ F:    Documentation/networking/j1939.rs
  F:    include/uapi/linux/can/j1939.h
  F:    net/can/j1939/
  
 +CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
 +M:    Damien Le Moal <[email protected]>
 +L:    [email protected]
 +L:    [email protected] (pinctrl driver)
 +F:    Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
 +F:    drivers/pinctrl/pinctrl-k210.c
 +
 +CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
 +M:    Damien Le Moal <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
 +F:    drivers/reset/reset-k210.c
 +
 +CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
 +M:    Damien Le Moal <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
 +F:    drivers/soc/canaan/
 +F:    include/soc/canaan/
 +
  CAPABILITIES
  M:    Serge Hallyn <[email protected]>
  L:    [email protected]
@@@ -4665,8 -4670,8 +4665,8 @@@ F:      arch/arm64/boot/dts/cavium/thunder2-
  
  CBS/ETF/TAPRIO QDISCS
  M:    Vinicius Costa Gomes <[email protected]>
 -S:    Maintained
  L:    [email protected]
 +S:    Maintained
  F:    net/sched/sch_cbs.c
  F:    net/sched/sch_etf.c
  F:    net/sched/sch_taprio.c
@@@ -4689,10 -4694,10 +4689,10 @@@ CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RA
  M:    Hadar Gat <[email protected]>
  L:    [email protected]
  S:    Supported
 +W:    https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
 +F:    Documentation/devicetree/bindings/rng/arm-cctrng.yaml
  F:    drivers/char/hw_random/cctrng.c
  F:    drivers/char/hw_random/cctrng.h
 -F:    Documentation/devicetree/bindings/rng/arm-cctrng.yaml
 -W:    https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
  
  CEC FRAMEWORK
  M:    Hans Verkuil <[email protected]>
@@@ -4838,7 -4843,6 +4838,7 @@@ F:      drivers/input/touchscreen/chipone_ic
  
  CHROME HARDWARE PLATFORM SUPPORT
  M:    Benson Leung <[email protected]>
 +M:    Tzung-Bi Shih <[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
@@@ -4853,6 -4857,13 +4853,6 @@@ S:     Maintaine
  F:    Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
  F:    sound/soc/codecs/cros_ec_codec.*
  
 -CHROMEOS EC UART DRIVER
 -M:    Bhanu Prakash Maiya <[email protected]>
 -R:    Benson Leung <[email protected]>
 -R:    Tzung-Bi Shih <[email protected]>
 -S:    Maintained
 -F:    drivers/platform/chrome/cros_ec_uart.c
 -
  CHROMEOS EC SUBDRIVERS
  M:    Benson Leung <[email protected]>
  R:    Guenter Roeck <[email protected]>
@@@ -4862,12 -4873,13 +4862,12 @@@ F:   drivers/power/supply/cros_usbpd-char
  N:    cros_ec
  N:    cros-ec
  
 -CHROMEOS EC USB TYPE-C DRIVER
 -M:    Prashant Malani <[email protected]>
 -L:    [email protected]
 +CHROMEOS EC UART DRIVER
 +M:    Bhanu Prakash Maiya <[email protected]>
 +R:    Benson Leung <[email protected]>
 +R:    Tzung-Bi Shih <[email protected]>
  S:    Maintained
 -F:    drivers/platform/chrome/cros_ec_typec.*
 -F:    drivers/platform/chrome/cros_typec_switch.c
 -F:    drivers/platform/chrome/cros_typec_vdm.*
 +F:    drivers/platform/chrome/cros_ec_uart.c
  
  CHROMEOS EC USB PD NOTIFY DRIVER
  M:    Prashant Malani <[email protected]>
@@@ -4876,14 -4888,6 +4876,14 @@@ S:    Maintaine
  F:    drivers/platform/chrome/cros_usbpd_notify.c
  F:    include/linux/platform_data/cros_usbpd_notify.h
  
 +CHROMEOS EC USB TYPE-C DRIVER
 +M:    Prashant Malani <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/platform/chrome/cros_ec_typec.*
 +F:    drivers/platform/chrome/cros_typec_switch.c
 +F:    drivers/platform/chrome/cros_typec_vdm.*
 +
  CHROMEOS HPS DRIVER
  M:    Dan Callaghan <[email protected]>
  R:    Sami Kyöstilä <[email protected]>
@@@ -4901,17 -4905,13 +4901,17 @@@ F:   drivers/media/cec/i2c/ch7322.
  CIRRUS LOGIC AUDIO CODEC DRIVERS
  M:    James Schulman <[email protected]>
  M:    David Rhodes <[email protected]>
 -M:    Lucas Tanure <[email protected]>
  M:    Richard Fitzgerald <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/sound/cirrus,cs*
 +F:    drivers/mfd/cs42l43*
 +F:    drivers/pinctrl/cirrus/pinctrl-cs42l43*
 +F:    drivers/spi/spi-cs42l43*
  F:    include/dt-bindings/sound/cs*
 +F:    include/linux/mfd/cs42l43*
 +F:    include/sound/cs*
  F:    sound/pci/hda/cs*
  F:    sound/pci/hda/hda_cs_dsp_ctl.*
  F:    sound/soc/codecs/cs*
@@@ -5004,18 -5004,6 +5004,18 @@@ M:    Nelson Escobar <[email protected]
  S:    Supported
  F:    drivers/infiniband/hw/usnic/
  
 +CLANG CONTROL FLOW INTEGRITY SUPPORT
 +M:    Sami Tolvanen <[email protected]>
 +M:    Kees Cook <[email protected]>
 +R:    Nathan Chancellor <[email protected]>
 +R:    Nick Desaulniers <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +B:    https://github.com/ClangBuiltLinux/linux/issues
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
 +F:    include/linux/cfi.h
 +F:    kernel/cfi.c
 +
  CLANG-FORMAT FILE
  M:    Miguel Ojeda <[email protected]>
  S:    Maintained
@@@ -5036,6 -5024,18 +5036,6 @@@ F:     scripts/Makefile.clan
  F:    scripts/clang-tools/
  K:    \b(?i:clang|llvm)\b
  
 -CLANG CONTROL FLOW INTEGRITY SUPPORT
 -M:    Sami Tolvanen <[email protected]>
 -M:    Kees Cook <[email protected]>
 -R:    Nathan Chancellor <[email protected]>
 -R:    Nick Desaulniers <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -B:    https://github.com/ClangBuiltLinux/linux/issues
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
 -F:    include/linux/cfi.h
 -F:    kernel/cfi.c
 -
  CLK API
  M:    Russell King <[email protected]>
  L:    [email protected]
@@@ -5126,7 -5126,7 +5126,7 @@@ X:      drivers/clk/clkdev.
  
  COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
  M:    Steve French <[email protected]>
 -R:    Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
 +R:    Paulo Alcantara <pc@manguebit.com> (DFS, global name space)
  R:    Ronnie Sahlberg <[email protected]> (directory leases, sparse files)
  R:    Shyam Prasad N <[email protected]> (multichannel)
  R:    Tom Talpey <[email protected]> (RDMA, smbdirect)
@@@ -5136,8 -5136,8 +5136,8 @@@ S:      Supporte
  W:    https://wiki.samba.org/index.php/LinuxCIFS
  T:    git git://git.samba.org/sfrench/cifs-2.6.git
  F:    Documentation/admin-guide/cifs/
 -F:    fs/cifs/
 -F:    fs/smbfs_common/
 +F:    fs/smb/client/
 +F:    fs/smb/common/
  F:    include/uapi/linux/cifs
  
  COMPACTPCI HOTPLUG CORE
@@@ -5171,25 -5171,16 +5171,25 @@@ S:   Maintaine
  F:    include/linux/compiler_attributes.h
  
  COMPUTE EXPRESS LINK (CXL)
 +M:    Davidlohr Bueso <[email protected]>
 +M:    Jonathan Cameron <[email protected]>
 +M:    Dave Jiang <[email protected]>
  M:    Alison Schofield <[email protected]>
  M:    Vishal Verma <[email protected]>
  M:    Ira Weiny <[email protected]>
 -M:    Ben Widawsky <[email protected]>
  M:    Dan Williams <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    drivers/cxl/
  F:    include/uapi/linux/cxl_mem.h
  
 +COMPUTE EXPRESS LINK PMU (CPMU)
 +M:    Jonathan Cameron <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/admin-guide/perf/cxl.rst
 +F:    drivers/perf/cxl_pmu.c
 +
  CONEXANT ACCESSRUNNER USB DRIVER
  L:    [email protected]
  S:    Orphan
@@@ -5215,8 -5206,8 +5215,8 @@@ CONTEXT TRACKIN
  M:    Frederic Weisbecker <[email protected]>
  M:    "Paul E. McKenney" <[email protected]>
  S:    Maintained
 -F:    kernel/context_tracking.c
  F:    include/linux/context_tracking*
 +F:    kernel/context_tracking.c
  
  CONTROL GROUP (CGROUP)
  M:    Tejun Heo <[email protected]>
@@@ -5255,8 -5246,6 +5255,8 @@@ T:      git git://git.kernel.org/pub/scm/lin
  F:    Documentation/admin-guide/cgroup-v1/cpusets.rst
  F:    include/linux/cpuset.h
  F:    kernel/cgroup/cpuset.c
 +F:    tools/testing/selftests/cgroup/test_cpuset.c
 +F:    tools/testing/selftests/cgroup/test_cpuset_prs.sh
  
  CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
  M:    Johannes Weiner <[email protected]>
@@@ -5342,18 -5331,6 +5342,18 @@@ F:    include/linux/sched/cpufreq.
  F:    kernel/sched/cpufreq*.c
  F:    tools/testing/selftests/cpufreq/
  
 +CPU HOTPLUG
 +M:    Thomas Gleixner <[email protected]>
 +M:    Peter Zijlstra <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git smp/core
 +F:    include/linux/cpu.h
 +F:    include/linux/cpuhotplug.h
 +F:    include/linux/smpboot.h
 +F:    kernel/cpu.c
 +F:    kernel/smpboot.*
 +
  CPU IDLE TIME MANAGEMENT FRAMEWORK
  M:    "Rafael J. Wysocki" <[email protected]>
  M:    Daniel Lezcano <[email protected]>
@@@ -5391,11 -5368,11 +5391,11 @@@ F:   drivers/cpuidle/cpuidle-big_little.
  
  CPUIDLE DRIVER - ARM EXYNOS
  M:    Daniel Lezcano <[email protected]>
 -R:    Krzysztof Kozlowski <[email protected]>
  M:    Kukjin Kim <[email protected]>
 +R:    Krzysztof Kozlowski <[email protected]>
  L:    [email protected]
  L:    [email protected]
 -S:    Supported
 +S:    Maintained
  F:    arch/arm/mach-exynos/pm.c
  F:    drivers/cpuidle/cpuidle-exynos.c
  F:    include/linux/platform_data/cpuidle-exynos.h
@@@ -5413,8 -5390,8 +5413,8 @@@ M:      Ulf Hansson <[email protected]
  L:    [email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
 -F:    drivers/cpuidle/cpuidle-psci.h
  F:    drivers/cpuidle/cpuidle-psci-domain.c
 +F:    drivers/cpuidle/cpuidle-psci.h
  
  CPUIDLE DRIVER - DT IDLE PM DOMAIN
  M:    Ulf Hansson <[email protected]>
@@@ -5487,7 -5464,8 +5487,7 @@@ F:      Documentation/devicetree/bindings/ne
  F:    drivers/net/can/ctucanfd/
  
  CW1200 WLAN driver
 -M:    Solomon Peachy <[email protected]>
 -S:    Maintained
 +S:    Orphan
  F:    drivers/net/wireless/st/cw1200/
  
  CX18 VIDEO4LINUX DRIVER
@@@ -5557,19 -5535,19 +5557,19 @@@ S:   Supporte
  W:    http://www.chelsio.com
  F:    drivers/crypto/chelsio
  
 -CXGB4 INLINE CRYPTO DRIVER
 -M:    Ayush Sawal <ayush.sawal@chelsio.com>
 +CXGB4 ETHERNET DRIVER (CXGB4)
 +M:    Raju Rangoju <rajur@chelsio.com>
  L:    [email protected]
  S:    Supported
  W:    http://www.chelsio.com
 -F:    drivers/net/ethernet/chelsio/inline_crypto/
 +F:    drivers/net/ethernet/chelsio/cxgb4/
  
 -CXGB4 ETHERNET DRIVER (CXGB4)
 -M:    Raju Rangoju <rajur@chelsio.com>
 +CXGB4 INLINE CRYPTO DRIVER
 +M:    Ayush Sawal <ayush.sawal@chelsio.com>
  L:    [email protected]
  S:    Supported
  W:    http://www.chelsio.com
 -F:    drivers/net/ethernet/chelsio/cxgb4/
 +F:    drivers/net/ethernet/chelsio/inline_crypto/
  
  CXGB4 ISCSI DRIVER (CXGB4I)
  M:    Varun Prakash <[email protected]>
@@@ -5626,6 -5604,16 +5626,6 @@@ CYCLADES PC300 DRIVE
  S:    Orphan
  F:    drivers/net/wan/pc300*
  
 -CYPRESS_FIRMWARE MEDIA DRIVER
 -M:    Antti Palosaari <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -W:    https://linuxtv.org
 -W:    http://palosaari.fi/linux/
 -Q:    http://patchwork.linuxtv.org/project/linux-media/list/
 -T:    git git://linuxtv.org/anttip/media_tree.git
 -F:    drivers/media/common/cypress_firmware*
 -
  CYPRESS CY8C95X0 PINCTRL DRIVER
  M:    Patrick Rudolph <[email protected]>
  L:    [email protected]
@@@ -5645,16 -5633,6 +5645,16 @@@ S:    Maintaine
  F:    Documentation/devicetree/bindings/input/cypress-sf.yaml
  F:    drivers/input/keyboard/cypress-sf.c
  
 +CYPRESS_FIRMWARE MEDIA DRIVER
 +M:    Antti Palosaari <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +W:    https://linuxtv.org
 +W:    http://palosaari.fi/linux/
 +Q:    http://patchwork.linuxtv.org/project/linux-media/list/
 +T:    git git://linuxtv.org/anttip/media_tree.git
 +F:    drivers/media/common/cypress_firmware*
 +
  CYTTSP TOUCHSCREEN DRIVER
  M:    Linus Walleij <[email protected]>
  L:    [email protected]
@@@ -5721,7 -5699,10 +5721,7 @@@ DC395x SCSI drive
  M:    Oliver Neukum <[email protected]>
  M:    Ali Akcaagac <[email protected]>
  M:    Jamie Lenehan <[email protected]>
 -L:    [email protected]
  S:    Maintained
 -W:    http://twibble.org/dist/dc395x/
 -W:    http://lists.twibble.org/mailman/listinfo/dc395x/
  F:    Documentation/scsi/dc395x.rst
  F:    drivers/scsi/dc395x.*
  
@@@ -5734,14 -5715,6 +5734,14 @@@ F:    include/linux/tfrc.
  F:    include/uapi/linux/dccp.h
  F:    net/dccp/
  
 +DEBUGOBJECTS:
 +M:    Thomas Gleixner <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/debugobjects
 +F:    include/linux/debugobjects.h
 +F:    lib/debugobjects.c
 +
  DECSTATION PLATFORM SUPPORT
  M:    "Maciej W. Rozycki" <[email protected]>
  L:    [email protected]
@@@ -5826,25 -5799,25 +5826,25 @@@ S:   Maintaine
  F:    Documentation/driver-api/dcdbas.rst
  F:    drivers/platform/x86/dell/dcdbas.*
  
 -DELL WMI DESCRIPTOR DRIVER
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/platform/x86/dell/dell-wmi-descriptor.c
 -
  DELL WMI DDV DRIVER
  M:    Armin Wolf <[email protected]>
  S:    Maintained
  F:    Documentation/ABI/testing/debugfs-dell-wmi-ddv
  F:    Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
 +F:    Documentation/wmi/devices/dell-wmi-ddv.rst
  F:    drivers/platform/x86/dell/dell-wmi-ddv.c
  
 -DELL WMI SYSMAN DRIVER
 -M:    Prasanth Ksr <[email protected]>
 +DELL WMI DESCRIPTOR DRIVER
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/platform/x86/dell/dell-wmi-descriptor.c
 +
 +DELL WMI HARDWARE PRIVACY SUPPORT
 +M:    Perry Yuan <[email protected]>
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
 -F:    Documentation/ABI/testing/sysfs-class-firmware-attributes
 -F:    drivers/platform/x86/dell/dell-wmi-sysman/
 +F:    drivers/platform/x86/dell/dell-wmi-privacy.c
  
  DELL WMI NOTIFICATIONS DRIVER
  M:    Matthew Garrett <[email protected]>
@@@ -5852,13 -5825,20 +5852,13 @@@ M:   Pali Rohár <[email protected]
  S:    Maintained
  F:    drivers/platform/x86/dell/dell-wmi-base.c
  
 -DELL WMI HARDWARE PRIVACY SUPPORT
 -M:    Perry Yuan <Perry.Yuan@dell.com>
 +DELL WMI SYSMAN DRIVER
 +M:    Prasanth Ksr <prasanth.ksr@dell.com>
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
 -F:    drivers/platform/x86/dell/dell-wmi-privacy.c
 -
 -DELTA ST MEDIA DRIVER
 -M:    Hugues Fruchet <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -W:    https://linuxtv.org
 -T:    git git://linuxtv.org/media_tree.git
 -F:    drivers/media/platform/st/sti/delta
 +F:    Documentation/ABI/testing/sysfs-class-firmware-attributes
 +F:    drivers/platform/x86/dell/dell-wmi-sysman/
  
  DELTA AHE-50DC FAN CONTROL MODULE DRIVER
  M:    Zev Weiss <[email protected]>
@@@ -5882,28 -5862,25 +5882,28 @@@ F:   Documentation/devicetree/bindings/re
  F:    drivers/gpio/gpio-tn48m.c
  F:    include/dt-bindings/reset/delta,tn48m-reset.h
  
 +DELTA ST MEDIA DRIVER
 +M:    Hugues Fruchet <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +W:    https://linuxtv.org
 +T:    git git://linuxtv.org/media_tree.git
 +F:    drivers/media/platform/st/sti/delta
 +
  DENALI NAND DRIVER
  L:    [email protected]
  S:    Orphan
  F:    drivers/mtd/nand/raw/denali*
  
  DESIGNWARE EDMA CORE IP DRIVER
 -M:    Gustavo Pimentel <[email protected]>
 +M:    Manivannan Sadhasivam <[email protected]>
 +R:    Gustavo Pimentel <[email protected]>
 +R:    Serge Semin <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    drivers/dma/dw-edma/
  F:    include/linux/dma/edma.h
  
 -DESIGNWARE XDATA IP DRIVER
 -M:    Gustavo Pimentel <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/misc-devices/dw-xdata-pcie.rst
 -F:    drivers/misc/dw-xdata-pcie.c
 -
  DESIGNWARE USB2 DRD IP DRIVER
  M:    Minas Harutyunyan <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    drivers/usb/dwc3/
  
 +DESIGNWARE XDATA IP DRIVER
 +M:    Gustavo Pimentel <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/misc-devices/dw-xdata-pcie.rst
 +F:    drivers/misc/dw-xdata-pcie.c
 +
  DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
  M:    Andreas Klinger <[email protected]>
  L:    [email protected]
@@@ -6015,15 -5985,15 +6015,15 @@@ DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD S
  M:    Christoph Niedermaier <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    arch/arm/boot/dts/imx6*-dhcom-*
 -F:    arch/arm/boot/dts/imx6*-dhcor-*
 +F:    arch/arm/boot/dts/nxp/imx/imx6*-dhcom-*
 +F:    arch/arm/boot/dts/nxp/imx/imx6*-dhcor-*
  
  DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
  M:    Marek Vasut <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    arch/arm/boot/dts/stm32mp1*-dhcom-*
 -F:    arch/arm/boot/dts/stm32mp1*-dhcor-*
 +F:    arch/arm/boot/dts/st/stm32mp1*-dhcom-*
 +F:    arch/arm/boot/dts/st/stm32mp1*-dhcor-*
  
  DIALOG SEMICONDUCTOR DRIVERS
  M:    Support Opensource <[email protected]>
@@@ -6032,10 -6002,10 +6032,10 @@@ W:   http://www.dialog-semiconductor.com/
  F:    Documentation/devicetree/bindings/input/da90??-onkey.txt
  F:    Documentation/devicetree/bindings/input/dlg,da72??.txt
  F:    Documentation/devicetree/bindings/mfd/da90*.txt
 -F:    Documentation/devicetree/bindings/mfd/da90*.yaml
 -F:    Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
 +F:    Documentation/devicetree/bindings/mfd/dlg,da90*.yaml
  F:    Documentation/devicetree/bindings/regulator/da92*.txt
 -F:    Documentation/devicetree/bindings/regulator/slg51000.txt
 +F:    Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
 +F:    Documentation/devicetree/bindings/regulator/dlg,slg51000.yaml
  F:    Documentation/devicetree/bindings/sound/da[79]*.txt
  F:    Documentation/devicetree/bindings/thermal/da90??-thermal.txt
  F:    Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
@@@ -6153,12 -6123,6 +6153,12 @@@ F:    include/linux/dma
  F:    include/linux/dmaengine.h
  F:    include/linux/of_dma.h
  
 +DMA MAPPING BENCHMARK
 +M:    Xiang Chen <[email protected]>
 +L:    [email protected]
 +F:    kernel/dma/map_benchmark.c
 +F:    tools/testing/selftests/dma/
 +
  DMA MAPPING HELPERS
  M:    Christoph Hellwig <[email protected]>
  M:    Marek Szyprowski <[email protected]>
@@@ -6169,17 -6133,24 +6169,17 @@@ W:   http://git.infradead.org/users/hch/d
  T:    git git://git.infradead.org/users/hch/dma-mapping.git
  F:    include/asm-generic/dma-mapping.h
  F:    include/linux/dma-direct.h
 -F:    include/linux/dma-mapping.h
  F:    include/linux/dma-map-ops.h
 +F:    include/linux/dma-mapping.h
  F:    include/linux/swiotlb.h
  F:    kernel/dma/
  
 -DMA MAPPING BENCHMARK
 -M:    Xiang Chen <[email protected]>
 -L:    [email protected]
 -F:    kernel/dma/map_benchmark.c
 -F:    tools/testing/selftests/dma/
 -
  DMA-BUF HEAPS FRAMEWORK
  M:    Sumit Semwal <[email protected]>
  R:    Benjamin Gaignard <[email protected]>
 -R:    Liam Mark <[email protected]>
 -R:    Laura Abbott <[email protected]>
  R:    Brian Starkey <[email protected]>
  R:    John Stultz <[email protected]>
 +R:    T.J. Mercier <[email protected]>
  L:    [email protected]
  L:    [email protected]
  L:    [email protected] (moderated for non-subscribers)
@@@ -6230,18 -6201,10 +6230,18 @@@ X:   Documentation/devicetree
  X:    Documentation/driver-api/media/
  X:    Documentation/firmware-guide/acpi/
  X:    Documentation/i2c/
 +X:    Documentation/netlink/
  X:    Documentation/power/
  X:    Documentation/spi/
  X:    Documentation/userspace-api/media/
  
 +DOCUMENTATION PROCESS
 +M:    Jonathan Corbet <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/maintainer/
 +F:    Documentation/process/
 +
  DOCUMENTATION REPORTING ISSUES
  M:    Thorsten Leemhuis <[email protected]>
  L:    [email protected]
@@@ -6277,17 -6240,11 +6277,17 @@@ T:   git git://linuxtv.org/media_tree.gi
  F:    Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
  F:    drivers/media/i2c/dw9714.c
  
 -DONGWOON DW9768 LENS VOICE COIL DRIVER
 -M:    Dongchun Zhu <dongchun.zhu@mediatek.com>
 +DONGWOON DW9719 LENS VOICE COIL DRIVER
 +M:    Daniel Scally <djrscally@gmail.com>
  L:    [email protected]
  S:    Maintained
  T:    git git://linuxtv.org/media_tree.git
 +F:    drivers/media/i2c/dw9719.c
 +
 +DONGWOON DW9768 LENS VOICE COIL DRIVER
 +L:    [email protected]
 +S:    Orphan
 +T:    git git://linuxtv.org/media_tree.git
  F:    Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
  F:    drivers/media/i2c/dw9768.c
  
@@@ -6364,9 -6321,7 +6364,9 @@@ F:      drivers/base
  F:    fs/debugfs/
  F:    fs/sysfs/
  F:    include/linux/debugfs.h
 +F:    include/linux/fwnode.h
  F:    include/linux/kobj*
 +F:    include/linux/property.h
  F:    lib/kobj*
  
  DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
@@@ -6376,25 -6331,6 +6376,25 @@@ S:    Maintaine
  F:    drivers/soc/ti/smartreflex.c
  F:    include/linux/power/smartreflex.h
  
 +DRM ACCEL DRIVERS FOR INTEL VPU
 +M:    Jacek Lawrynowicz <[email protected]>
 +M:    Stanislaw Gruszka <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    drivers/accel/ivpu/
 +F:    include/uapi/drm/ivpu_accel.h
 +
 +DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
 +M:    Oded Gabbay <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +C:    irc://irc.oftc.net/dri-devel
 +T:    git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
 +F:    Documentation/accel/
 +F:    drivers/accel/
 +F:    include/drm/drm_accel.h
 +
  DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
  M:    Maxime Ripard <[email protected]>
  M:    Chen-Yu Tsai <[email protected]>
@@@ -6428,7 -6364,6 +6428,7 @@@ F:      drivers/gpu/drm/aspeed
  DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
  M:    Dave Airlie <[email protected]>
  R:    Thomas Zimmermann <[email protected]>
 +R:    Jocelyn Falempe <[email protected]>
  L:    [email protected]
  S:    Supported
  T:    git git://anongit.freedesktop.org/drm/drm-misc
@@@ -6478,21 -6413,6 +6478,21 @@@ S:    Maintaine
  F:    Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
  F:    drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
  
 +DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
 +M:    Thomas Zimmermann <[email protected]>
 +M:    Javier Martinez Canillas <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    drivers/gpu/drm/drm_aperture.c
 +F:    drivers/gpu/drm/tiny/ofdrm.c
 +F:    drivers/gpu/drm/tiny/simpledrm.c
 +F:    drivers/video/aperture.c
 +F:    drivers/video/nomodeset.c
 +F:    include/drm/drm_aperture.h
 +F:    include/linux/aperture.h
 +F:    include/video/nomodeset.h
 +
  DRM DRIVER FOR GENERIC EDP PANELS
  R:    Douglas Anderson <[email protected]>
  F:    Documentation/devicetree/bindings/display/panel/panel-edp.yaml
@@@ -6527,14 -6447,6 +6527,14 @@@ T:    git git://anongit.freedesktop.org/dr
  F:    Documentation/devicetree/bindings/display/himax,hx8357d.txt
  F:    drivers/gpu/drm/tiny/hx8357d.c
  
 +DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
 +M:    Deepak Rawat <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    drivers/gpu/drm/hyperv
 +
  DRM DRIVER FOR ILITEK ILI9225 PANELS
  M:    David Lechner <[email protected]>
  S:    Maintained
@@@ -6564,11 -6476,11 +6564,11 @@@ F:   drivers/gpu/drm/logicvc
  DRM DRIVER FOR LVDS PANELS
  M:    Laurent Pinchart <[email protected]>
  L:    [email protected]
 -T:    git git://anongit.freedesktop.org/drm/drm-misc
  S:    Maintained
 -F:    drivers/gpu/drm/panel/panel-lvds.c
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
  F:    Documentation/devicetree/bindings/display/lvds.yaml
  F:    Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
 +F:    drivers/gpu/drm/panel/panel-lvds.c
  
  DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
  M:    Guido Günther <[email protected]>
@@@ -6580,7 -6492,6 +6580,7 @@@ F:      drivers/gpu/drm/panel/panel-mantix-m
  DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
  M:    Dave Airlie <[email protected]>
  R:    Thomas Zimmermann <[email protected]>
 +R:    Jocelyn Falempe <[email protected]>
  L:    [email protected]
  S:    Supported
  T:    git git://anongit.freedesktop.org/drm/drm-misc
@@@ -6606,12 -6517,10 +6606,12 @@@ M:   Rob Clark <[email protected]
  M:    Abhinav Kumar <[email protected]>
  M:    Dmitry Baryshkov <[email protected]>
  R:    Sean Paul <[email protected]>
 +R:    Marijn Suijten <[email protected]>
  L:    [email protected]
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
 +B:    https://gitlab.freedesktop.org/drm/msm/-/issues
  T:    git https://gitlab.freedesktop.org/drm/msm.git
  F:    Documentation/devicetree/bindings/display/msm/
  F:    drivers/gpu/drm/msm/
@@@ -6631,13 -6540,6 +6631,13 @@@ T:    git git://anongit.freedesktop.org/dr
  F:    Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
  F:    drivers/gpu/drm/panel/panel-novatek-nt35560.c
  
 +DRM DRIVER FOR NOVATEK NT36523 PANELS
 +M:    Jianhua Lu <[email protected]>
 +S:    Maintained
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    Documentation/devicetree/bindings/display/panel/novatek,nt36523.yaml
 +F:    drivers/gpu/drm/panel/panel-novatek-nt36523.c
 +
  DRM DRIVER FOR NOVATEK NT36672A PANELS
  M:    Sumit Semwal <[email protected]>
  S:    Maintained
@@@ -6679,6 -6581,13 +6679,6 @@@ T:     git git://anongit.freedesktop.org/dr
  F:    Documentation/devicetree/bindings/display/repaper.txt
  F:    drivers/gpu/drm/tiny/repaper.c
  
 -DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
 -M:    Javier Martinez Canillas <[email protected]>
 -S:    Maintained
 -T:    git git://anongit.freedesktop.org/drm/drm-misc
 -F:    Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
 -F:    drivers/gpu/drm/solomon/ssd130x*
 -
  DRM DRIVER FOR QEMU'S CIRRUS DEVICE
  M:    Dave Airlie <[email protected]>
  M:    Gerd Hoffmann <[email protected]>
@@@ -6711,27 -6620,34 +6711,27 @@@ T:   git git://anongit.freedesktop.org/dr
  F:    Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
  F:    drivers/gpu/drm/panel/panel-samsung-db7430.c
  
 +DRM DRIVER FOR SAMSUNG MIPI DSIM BRIDGE
 +M:    Inki Dae <[email protected]>
 +M:    Jagan Teki <[email protected]>
 +M:    Marek Szyprowski <[email protected]>
 +S:    Maintained
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml
 +F:    drivers/gpu/drm/bridge/samsung-dsim.c
 +F:    include/drm/bridge/samsung-dsim.h
 +
  DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
  M:    Markuss Broks <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
  F:    drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
  
 -DRM DRIVER FOR SITRONIX ST7703 PANELS
 -M:    Guido Günther <[email protected]>
 -R:    Purism Kernel Team <[email protected]>
 -R:    Ondrej Jirman <[email protected]>
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
 -F:    drivers/gpu/drm/panel/panel-sitronix-st7703.c
 -
 -DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
 -M:    Thomas Zimmermann <[email protected]>
 -M:    Javier Martinez Canillas <[email protected]>
 -L:    [email protected]
 +DRM DRIVER FOR SAMSUNG S6D7AA0 PANELS
 +M:    Artur Weber <[email protected]>
  S:    Maintained
 -T:    git git://anongit.freedesktop.org/drm/drm-misc
 -F:    drivers/gpu/drm/drm_aperture.c
 -F:    drivers/gpu/drm/tiny/ofdrm.c
 -F:    drivers/gpu/drm/tiny/simpledrm.c
 -F:    drivers/video/aperture.c
 -F:    drivers/video/nomodeset.c
 -F:    include/drm/drm_aperture.h
 -F:    include/linux/aperture.h
 -F:    include/video/nomodeset.h
 +F:    Documentation/devicetree/bindings/display/panel/samsung,s6d7aa0.yaml
 +F:    drivers/gpu/drm/panel/panel-samsung-s6d7aa0.c
  
  DRM DRIVER FOR SITRONIX ST7586 PANELS
  M:    David Lechner <[email protected]>
@@@ -6746,14 -6662,6 +6746,14 @@@ S:    Maintaine
  F:    Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
  F:    drivers/gpu/drm/panel/panel-sitronix-st7701.c
  
 +DRM DRIVER FOR SITRONIX ST7703 PANELS
 +M:    Guido Günther <[email protected]>
 +R:    Purism Kernel Team <[email protected]>
 +R:    Ondrej Jirman <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
 +F:    drivers/gpu/drm/panel/panel-sitronix-st7703.c
 +
  DRM DRIVER FOR SITRONIX ST7735R PANELS
  M:    David Lechner <[email protected]>
  S:    Maintained
@@@ -6761,13 -6669,6 +6761,13 @@@ T:    git git://anongit.freedesktop.org/dr
  F:    Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
  F:    drivers/gpu/drm/tiny/st7735r.c
  
 +DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
 +M:    Javier Martinez Canillas <[email protected]>
 +S:    Maintained
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
 +F:    drivers/gpu/drm/solomon/ssd130x*
 +
  DRM DRIVER FOR ST-ERICSSON MCDE
  M:    Linus Walleij <[email protected]>
  S:    Maintained
@@@ -6805,7 -6706,6 +6805,7 @@@ F:      drivers/gpu/drm/udl
  DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
  M:    Rodrigo Siqueira <[email protected]>
  M:    Melissa Wen <[email protected]>
 +M:    Maíra Canal <[email protected]>
  R:    Haneen Mohammed <[email protected]>
  R:    Daniel Vetter <[email protected]>
  L:    [email protected]
@@@ -6867,6 -6767,25 +6867,6 @@@ F:     include/drm/drm
  F:    include/linux/vga*
  F:    include/uapi/drm/drm*
  
 -DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
 -M:    Oded Gabbay <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -C:    irc://irc.oftc.net/dri-devel
 -T:    git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
 -F:    Documentation/accel/
 -F:    drivers/accel/
 -F:    include/drm/drm_accel.h
 -
 -DRM ACCEL DRIVERS FOR INTEL VPU
 -M:    Jacek Lawrynowicz <[email protected]>
 -M:    Stanislaw Gruszka <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -T:    git git://anongit.freedesktop.org/drm/drm-misc
 -F:    drivers/accel/ivpu/
 -F:    include/uapi/drm/ivpu_accel.h
 -
  DRM DRIVERS FOR ALLWINNER A10
  M:    Maxime Ripard <[email protected]>
  M:    Chen-Yu Tsai <[email protected]>
@@@ -6908,8 -6827,6 +6908,8 @@@ S:      Maintaine
  T:    git git://anongit.freedesktop.org/drm/drm-misc
  F:    Documentation/devicetree/bindings/display/bridge/
  F:    drivers/gpu/drm/bridge/
 +F:    drivers/gpu/drm/drm_bridge.c
 +F:    include/drm/drm_bridge.h
  
  DRM DRIVERS FOR EXYNOS
  M:    Inki Dae <[email protected]>
@@@ -6971,6 -6888,14 +6971,6 @@@ T:     git git://anongit.freedesktop.org/dr
  F:    Documentation/devicetree/bindings/display/hisilicon/
  F:    drivers/gpu/drm/hisilicon/
  
 -DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
 -M:    Deepak Rawat <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -S:    Maintained
 -T:    git git://anongit.freedesktop.org/drm/drm-misc
 -F:    drivers/gpu/drm/hyperv
 -
  DRM DRIVERS FOR LIMA
  M:    Qiang Yu <[email protected]>
  L:    [email protected]
@@@ -6980,13 -6905,6 +6980,13 @@@ T:    git git://anongit.freedesktop.org/dr
  F:    drivers/gpu/drm/lima/
  F:    include/uapi/drm/lima_drm.h
  
 +DRM DRIVERS FOR LOONGSON
 +M:    Sui Jingfeng <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    drivers/gpu/drm/loongson/
 +
  DRM DRIVERS FOR MEDIATEK
  M:    Chun-Kuang Hu <[email protected]>
  M:    Philipp Zabel <[email protected]>
@@@ -7001,7 -6919,6 +7001,7 @@@ F:      drivers/phy/mediatek/phy-mtk-mipi
  
  DRM DRIVERS FOR NVIDIA TEGRA
  M:    Thierry Reding <[email protected]>
 +M:    Mikko Perttunen <[email protected]>
  L:    [email protected]
  L:    [email protected]
  S:    Supported
@@@ -7024,7 -6941,8 +7024,7 @@@ F:      Documentation/devicetree/bindings/di
  F:    Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
  F:    Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
  F:    Documentation/devicetree/bindings/display/renesas,du.yaml
 -F:    drivers/gpu/drm/rcar-du/
 -F:    drivers/gpu/drm/shmobile/
 +F:    drivers/gpu/drm/renesas/
  F:    include/linux/platform_data/shmob_drm.h
  
  DRM DRIVERS FOR ROCKCHIP
@@@ -7056,7 -6974,7 +7056,7 @@@ F:      drivers/gpu/drm/st
  
  DRM DRIVERS FOR TI KEYSTONE
  M:    Jyri Sarha <[email protected]>
 -M:    Tomi Valkeinen <tom[email protected]>
 +M:    Tomi Valkeinen <tom[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git git://anongit.freedesktop.org/drm/drm-misc
@@@ -7067,18 -6985,16 +7067,18 @@@ F:   drivers/gpu/drm/tidss
  
  DRM DRIVERS FOR TI LCDC
  M:    Jyri Sarha <[email protected]>
 -R:    Tomi Valkeinen <[email protected]>
 +M:    Tomi Valkeinen <[email protected]>
  L:    [email protected]
  S:    Maintained
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
  F:    Documentation/devicetree/bindings/display/tilcdc/
  F:    drivers/gpu/drm/tilcdc/
  
  DRM DRIVERS FOR TI OMAP
 -M:    Tomi Valkeinen <tom[email protected]>
 +M:    Tomi Valkeinen <tom[email protected]>
  L:    [email protected]
  S:    Maintained
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
  F:    Documentation/devicetree/bindings/display/ti/
  F:    drivers/gpu/drm/omapdrm/
  
@@@ -7122,6 -7038,7 +7122,6 @@@ F:      Documentation/gpu/xen-front.rs
  F:    drivers/gpu/drm/xen/
  
  DRM DRIVERS FOR XILINX
 -M:    Hyun Kwon <[email protected]>
  M:    Laurent Pinchart <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -7129,16 -7046,8 +7129,16 @@@ T:    git git://anongit.freedesktop.org/dr
  F:    Documentation/devicetree/bindings/display/xlnx/
  F:    drivers/gpu/drm/xlnx/
  
 +DRM GPU SCHEDULER
 +M:    Luben Tuikov <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    drivers/gpu/drm/scheduler/
 +F:    include/drm/gpu_scheduler.h
 +
  DRM PANEL DRIVERS
 -M:    Thierry Reding <[email protected]>
 +M:    Neil Armstrong <[email protected]>
  R:    Sam Ravnborg <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -7165,6 -7074,14 +7165,6 @@@ T:     git git://anongit.freedesktop.org/dr
  F:    drivers/gpu/drm/ttm/
  F:    include/drm/ttm/
  
 -DRM GPU SCHEDULER
 -M:    Luben Tuikov <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -T:    git git://anongit.freedesktop.org/drm/drm-misc
 -F:    drivers/gpu/drm/scheduler/
 -F:    include/drm/gpu_scheduler.h
 -
  DSBR100 USB FM RADIO DRIVER
  M:    Alexey Klimov <[email protected]>
  L:    [email protected]
@@@ -7292,10 -7209,10 +7292,10 @@@ F:   drivers/media/usb/dvb-usb-v2/usb_urb
  
  DYNAMIC DEBUG
  M:    Jason Baron <[email protected]>
 +M:    Jim Cromie <[email protected]>
  S:    Maintained
  F:    include/linux/dynamic_debug.h
  F:    lib/dynamic_debug.c
 -M:    Jim Cromie <[email protected]>
  F:    lib/test_dynamic_debug.c
  
  DYNAMIC INTERRUPT MODERATION
@@@ -7305,15 -7222,6 +7305,15 @@@ F:    Documentation/networking/net_dim.rs
  F:    include/linux/dim.h
  F:    lib/dim/
  
 +DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
 +M:    Daniel Lezcano <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +B:    https://bugzilla.kernel.org
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
 +F:    drivers/powercap/dtpm*
 +F:    include/linux/dtpm.h
 +
  DZ DECSTATION DZ11 SERIAL DRIVER
  M:    "Maciej W. Rozycki" <[email protected]>
  S:    Maintained
  S:    Maintained
  F:    drivers/edac/mpc85xx_edac.[ch]
  
 +EDAC-NPCM
 +M:    Marvin Lin <[email protected]>
 +M:    Stanley Chu <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/memory-controllers/nuvoton,npcm-memory-controller.yaml
 +F:    drivers/edac/npcm_edac.c
 +
  EDAC-PASEMI
  M:    Egor Martovetsky <[email protected]>
  L:    [email protected]
@@@ -7628,6 -7528,12 +7628,6 @@@ T:     git git://linuxtv.org/media_tree.gi
  F:    Documentation/admin-guide/media/em28xx*
  F:    drivers/media/usb/em28xx/
  
 -EMBEDDED LINUX
 -M:    Olivia Mackall <[email protected]>
 -M:    David Woodhouse <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -
  EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
  M:    Adrian Hunter <[email protected]>
  M:    Ritesh Harjani <[email protected]>
  S:    Supported
  F:    drivers/mmc/host/cqhci*
  
 +EMS CPC-PCI CAN DRIVER
 +M:    Gerhard Uttenthaler <[email protected]>
 +M:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/net/can/sja1000/ems_pci.c
 +
  EMULEX 10Gbps iSCSI - OneConnect DRIVER
  M:    Ketan Mukadam <[email protected]>
  L:    [email protected]
@@@ -7667,22 -7566,22 +7667,22 @@@ W:   http://www.broadcom.co
  F:    drivers/infiniband/hw/ocrdma/
  F:    include/uapi/rdma/ocrdma-abi.h
  
 -EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
 +EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
  M:    James Smart <[email protected]>
 -M:    Dick Kennedy <dick.kennedy@broadcom.com>
 +M:    Ram Vegesna <ram.vegesna@broadcom.com>
  L:    [email protected]
 +L:    [email protected]
  S:    Supported
  W:    http://www.broadcom.com
 -F:    drivers/scsi/lpfc/
 +F:    drivers/scsi/elx/
  
 -EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
 +EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
  M:    James Smart <[email protected]>
 -M:    Ram Vegesna <ram.vegesna@broadcom.com>
 +M:    Dick Kennedy <dick.kennedy@broadcom.com>
  L:    [email protected]
 -L:    [email protected]
  S:    Supported
  W:    http://www.broadcom.com
 -F:    drivers/scsi/elx/
 +F:    drivers/scsi/lpfc/
  
  ENE CB710 FLASH CARD READER DRIVER
  M:    MichaÅ‚ MirosÅ‚aw <[email protected]>
@@@ -7775,14 -7674,13 +7775,14 @@@ F:   drivers/net/mdio/of_mdio.
  F:    drivers/net/pcs/
  F:    drivers/net/phy/
  F:    include/dt-bindings/net/qca-ar803x.h
 -F:    include/linux/linkmode.h
  F:    include/linux/*mdio*.h
 +F:    include/linux/linkmode.h
  F:    include/linux/mdio/*.h
  F:    include/linux/mii.h
  F:    include/linux/of_net.h
  F:    include/linux/phy.h
  F:    include/linux/phy_fixed.h
 +F:    include/linux/phylib_stubs.h
  F:    include/linux/platform_data/mdio-bcm-unimac.h
  F:    include/linux/platform_data/mdio-gpio.h
  F:    include/trace/events/mdio.h
@@@ -7833,15 -7731,14 +7833,15 @@@ T:   git git://git.kernel.org/pub/scm/lin
  F:    Documentation/filesystems/ext4/
  F:    fs/ext4/
  F:    include/trace/events/ext4.h
 +F:    include/uapi/linux/ext4.h
  
  Extended Verification Module (EVM)
  M:    Mimi Zohar <[email protected]>
  L:    [email protected]
  S:    Supported
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
 -F:    security/integrity/evm/
  F:    security/integrity/
 +F:    security/integrity/evm/
  
  EXTENSIBLE FIRMWARE INTERFACE (EFI)
  M:    Ard Biesheuvel <[email protected]>
@@@ -7872,8 -7769,8 +7872,8 @@@ EXTRA BOOT CONFI
  M:    Masami Hiramatsu <[email protected]>
  L:    [email protected]
  L:    [email protected]
 -Q:    https://patchwork.kernel.org/project/linux-trace-kernel/list/
  S:    Maintained
 +Q:    https://patchwork.kernel.org/project/linux-trace-kernel/list/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
  F:    Documentation/admin-guide/bootconfig.rst
  F:    fs/proc/bootconfig.c
@@@ -8033,12 -7930,6 +8033,12 @@@ S:    Maintaine
  F:    drivers/hwmon/f75375s.c
  F:    include/linux/f75375s.h
  
 +FINTEK F81604 USB to 2xCANBUS DEVICE DRIVER
 +M:    Ji-Ze Hong (Peter Hong) <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/net/can/usb/f81604.c
 +
  FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
  M:    Clemens Ladisch <[email protected]>
  M:    Takashi Sakamoto <[email protected]>
@@@ -8066,11 -7957,10 +8066,11 @@@ T:   git git://git.kernel.org/pub/scm/lin
  F:    drivers/target/sbp/
  
  FIREWIRE SUBSYSTEM
 -M:    Stefan Richter <[email protected]>
 +M:    Takashi Sakamoto <[email protected]>
 +M:    Takashi Sakamoto <[email protected]>
  L:    [email protected]
  S:    Maintained
 -W:    http://ieee1394.wiki.kernel.org/
 +W:    http://ieee1394.docs.kernel.org/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
  F:    drivers/firewire/
  F:    include/linux/firewire.h
@@@ -8134,7 -8024,6 +8134,7 @@@ T:      git git://git.kernel.org/pub/scm/lin
  F:    include/linux/fortify-string.h
  F:    lib/fortify_kunit.c
  F:    lib/memcpy_kunit.c
 +F:    lib/strcat_kunit.c
  F:    lib/strscpy_kunit.c
  F:    lib/test_fortify/*
  F:    scripts/test_fortify.sh
@@@ -8167,6 -8056,21 +8167,6 @@@ F:     Documentation/fpga
  F:    drivers/fpga/
  F:    include/linux/fpga/
  
 -INTEL MAX10 BMC SECURE UPDATES
 -M:    Russ Weight <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
 -F:    drivers/fpga/intel-m10-bmc-sec-update.c
 -
 -MICROCHIP POLARFIRE FPGA DRIVERS
 -M:    Conor Dooley <[email protected]>
 -R:    Ivan Bornyakov <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
 -F:    drivers/fpga/microchip-spi.c
 -
  FPU EMULATOR
  M:    Bill Metzenthen <[email protected]>
  S:    Maintained
@@@ -8175,9 -8079,9 +8175,9 @@@ F:      arch/x86/math-emu
  
  FRAMEBUFFER CORE
  M:    Daniel Vetter <[email protected]>
 -F:    drivers/video/fbdev/core/
  S:    Odd Fixes
  T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    drivers/video/fbdev/core/
  
  FRAMEBUFFER LAYER
  M:    Helge Deller <[email protected]>
@@@ -8199,7 -8103,7 +8199,7 @@@ M:      Pankaj Gupta <[email protected]
  M:    Gaurav Jain <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    Documentation/devicetree/bindings/crypto/fsl-sec4.txt
 +F:    Documentation/devicetree/bindings/crypto/fsl,sec-v4.0*
  F:    drivers/crypto/caam/
  
  FREESCALE COLDFIRE M5441X MMC DRIVER
@@@ -8232,7 -8136,6 +8232,7 @@@ F:      include/linux/spi/spi-fsl-dspi.
  
  FREESCALE ENETC ETHERNET DRIVERS
  M:    Claudiu Manoil <[email protected]>
 +M:    Vladimir Oltean <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    drivers/net/ethernet/freescale/enetc/
@@@ -8348,23 -8251,6 +8348,23 @@@ S:    Maintaine
  F:    drivers/soc/fsl/qe/
  F:    include/soc/fsl/qe/
  
 +FREESCALE QUICC ENGINE QMC DRIVER
 +M:    Herve Codina <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,cpm1-scc-qmc.yaml
 +F:    drivers/soc/fsl/qe/qmc.c
 +F:    include/soc/fsl/qe/qmc.h
 +
 +FREESCALE QUICC ENGINE TSA DRIVER
 +M:    Herve Codina <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,cpm1-tsa.yaml
 +F:    drivers/soc/fsl/qe/tsa.c
 +F:    drivers/soc/fsl/qe/tsa.h
 +F:    include/dt-bindings/soc/cpm1-fsl,tsa.h
 +
  FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
  M:    Li Yang <[email protected]>
  L:    [email protected]
@@@ -8402,6 -8288,7 +8402,6 @@@ L:      [email protected]
  L:    [email protected]
  S:    Maintained
  F:    drivers/net/ethernet/freescale/fs_enet/
 -F:    include/linux/fs_enet_pd.h
  
  FREESCALE SOC SOUND DRIVERS
  M:    Shengjiu Wang <[email protected]>
@@@ -8415,14 -8302,6 +8415,14 @@@ F:    sound/soc/fsl/fsl
  F:    sound/soc/fsl/imx*
  F:    sound/soc/fsl/mpc8610_hpcd.c
  
 +FREESCALE SOC SOUND QMC DRIVER
 +M:    Herve Codina <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/sound/fsl,qmc-audio.yaml
 +F:    sound/soc/fsl/fsl_qmc_audio.c
 +
  FREESCALE USB PERIPHERAL DRIVERS
  M:    Li Yang <[email protected]>
  L:    [email protected]
@@@ -8452,6 -8331,13 +8452,6 @@@ F:     Documentation/power/freezing-of-task
  F:    include/linux/freezer.h
  F:    kernel/freezer.c
  
 -FRONTSWAP API
 -M:    Konrad Rzeszutek Wilk <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    include/linux/frontswap.h
 -F:    mm/frontswap.c
 -
  FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
  M:    David Howells <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  F:    drivers/platform/x86/fujitsu-laptop.c
  
 -FUJITSU M-5MO LS CAMERA ISP DRIVER
 -M:    Kyungmin Park <[email protected]>
 -M:    Heungjun Kim <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/media/i2c/m5mols/
 -F:    include/media/i2c/m5mols.h
 -
  FUJITSU TABLET EXTRAS
  M:    Robert Gerlach <[email protected]>
  L:    [email protected]
@@@ -8547,15 -8441,15 +8547,15 @@@ M:   Masami Hiramatsu <[email protected]
  R:    Mark Rutland <[email protected]>
  L:    [email protected]
  L:    [email protected]
 -Q:    https://patchwork.kernel.org/project/linux-trace-kernel/list/
  S:    Maintained
 +Q:    https://patchwork.kernel.org/project/linux-trace-kernel/list/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
  F:    Documentation/trace/ftrace*
 -F:    kernel/trace/ftrace*
 -F:    kernel/trace/fgraph.c
  F:    arch/*/*/*/*ftrace*
  F:    arch/*/*/*ftrace*
  F:    include/*/ftrace.h
 +F:    kernel/trace/fgraph.c
 +F:    kernel/trace/ftrace*
  F:    samples/ftrace
  
  FUNGIBLE ETHERNET DRIVERS
@@@ -8596,10 -8490,10 +8596,10 @@@ GATEWORKS SYSTEM CONTROLLER (GSC) DRIVE
  M:    Tim Harvey <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
 -F:    drivers/mfd/gateworks-gsc.c
 -F:    include/linux/mfd/gsc.h
  F:    Documentation/hwmon/gsc-hwmon.rst
  F:    drivers/hwmon/gsc-hwmon.c
 +F:    drivers/mfd/gateworks-gsc.c
 +F:    include/linux/mfd/gsc.h
  F:    include/linux/platform_data/gsc_hwmon.h
  
  GCC PLUGINS
@@@ -8716,13 -8610,6 +8716,13 @@@ F:    Documentation/devicetree/bindings/po
  F:    drivers/base/power/domain*.c
  F:    include/linux/pm_domain.h
  
 +GENERIC PM DOMAIN PROVIDERS
 +M:    Ulf Hansson <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm.git
 +F:    drivers/genpd/
 +
  GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
  M:    Eugen Hristev <[email protected]>
  L:    [email protected]
@@@ -8730,18 -8617,12 +8730,18 @@@ S:   Maintaine
  F:    drivers/input/touchscreen/resistive-adc-touch.c
  
  GENERIC STRING LIBRARY
 +M:    Kees Cook <[email protected]>
  R:    Andy Shevchenko <[email protected]>
 -S:    Maintained
 +L:    [email protected]
 +S:    Supported
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
 +F:    include/linux/string.h
 +F:    include/linux/string_choices.h
 +F:    include/linux/string_helpers.h
  F:    lib/string.c
  F:    lib/string_helpers.c
 -F:    lib/test_string.c
  F:    lib/test-string_helpers.c
 +F:    lib/test_string.c
  
  GENERIC UIO DRIVER FOR PCI DEVICES
  M:    "Michael S. Tsirkin" <[email protected]>
@@@ -8812,22 -8693,13 +8812,22 @@@ F:   drivers/input/touchscreen/goodix
  
  GOOGLE ETHERNET DRIVERS
  M:    Jeroen de Borst <[email protected]>
 -M:    Catherine Sullivan <csully@google.com>
 +M:    Praveen Kaligineedi <pkaligineedi@google.com>
  R:    Shailend Chand <[email protected]>
  L:    [email protected]
  S:    Supported
  F:    Documentation/networking/device_drivers/ethernet/google/gve.rst
  F:    drivers/net/ethernet/google
  
 +GOOGLE FIRMWARE DRIVERS
 +M:    Tzung-Bi Shih <[email protected]>
 +R:    Brian Norris <[email protected]>
 +R:    Julius Werner <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
 +F:    drivers/firmware/google/
 +
  GPD POCKET FAN DRIVER
  M:    Hans de Goede <[email protected]>
  L:    [email protected]
@@@ -8871,12 -8743,10 +8871,12 @@@ R:   Michael Walle <[email protected]
  S:    Maintained
  F:    drivers/gpio/gpio-regmap.c
  F:    include/linux/gpio/regmap.h
 +K:    (devm_)?gpio_regmap_(un)?register
  
  GPIO SUBSYSTEM
  M:    Linus Walleij <[email protected]>
  M:    Bartosz Golaszewski <[email protected]>
 +R:    Andy Shevchenko <[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
@@@ -8886,6 -8756,7 +8886,6 @@@ F:      Documentation/admin-guide/gpio
  F:    Documentation/devicetree/bindings/gpio/
  F:    Documentation/driver-api/gpio/
  F:    drivers/gpio/
 -F:    include/asm-generic/gpio.h
  F:    include/dt-bindings/gpio/
  F:    include/linux/gpio.h
  F:    include/linux/gpio/
@@@ -9072,17 -8943,6 +9072,17 @@@ Q:    http://patchwork.linuxtv.org/project
  T:    git git://linuxtv.org/anttip/media_tree.git
  F:    drivers/media/usb/hackrf/
  
 +HANDSHAKE UPCALL FOR TRANSPORT LAYER SECURITY
 +M:    Chuck Lever <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/netlink/specs/handshake.yaml
 +F:    Documentation/networking/tls-handshake.rst
 +F:    include/net/handshake.h
 +F:    include/trace/events/handshake.h
 +F:    net/handshake/
 +
  HANTRO VPU CODEC DRIVER
  M:    Ezequiel Garcia <[email protected]>
  M:    Philipp Zabel <[email protected]>
  S:    Maintained
  F:    drivers/hid/hid-logitech-*
  
 -HID++ LOGITECH DRIVERS
 -R:    Filipe Laíns <[email protected]>
 -R:    Bastien Nocera <[email protected]>
 +HID NVIDIA SHIELD DRIVER
 +M:    Rahul Rameshbabu <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    drivers/hid/hid-logitech-hidpp.c
 -
 -HID PLAYSTATION DRIVER
 -M:    Roderick Colenbrander <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    drivers/hid/hid-playstation.c
 +F:    drivers/hid/hid-nvidia-shield.c
  
  HID PHOENIX RC FLIGHT CONTROLLER
  M:    Marcus Folkesson <[email protected]>
  S:    Maintained
  F:    drivers/hid/hid-pxrc.c
  
 +HID PLAYSTATION DRIVER
 +M:    Roderick Colenbrander <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    drivers/hid/hid-playstation.c
 +
  HID SENSOR HUB DRIVERS
  M:    Jiri Kosina <[email protected]>
  M:    Jonathan Cameron <[email protected]>
@@@ -9279,13 -9140,6 +9279,13 @@@ S:    Maintaine
  F:    drivers/hid/wacom.h
  F:    drivers/hid/wacom_*
  
 +HID++ LOGITECH DRIVERS
 +R:    Filipe Laíns <[email protected]>
 +R:    Bastien Nocera <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/hid/hid-logitech-hidpp.c
 +
  HIGH-RESOLUTION TIMERS, CLOCKEVENTS
  M:    Thomas Gleixner <[email protected]>
  L:    [email protected]
@@@ -9310,12 -9164,6 +9310,12 @@@ W:    http://www.highpoint-tech.co
  F:    Documentation/scsi/hptiop.rst
  F:    drivers/scsi/hptiop.c
  
 +HIKEY960 ONBOARD USB GPIO HUB DRIVER
 +M:    John Stultz <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/misc/hisi_hikey_usb.c
 +
  HIMAX HX83112B TOUCHSCREEN SUPPORT
  M:    Job Noorman <[email protected]>
  L:    [email protected]
@@@ -9364,12 -9212,6 +9364,12 @@@ F:    drivers/crypto/hisilicon/hpre/hpre.
  F:    drivers/crypto/hisilicon/hpre/hpre_crypto.c
  F:    drivers/crypto/hisilicon/hpre/hpre_main.c
  
 +HISILICON HNS3 PMU DRIVER
 +M:    Jijie Shao <[email protected]>
 +S:    Supported
 +F:    Documentation/admin-guide/perf/hns3-pmu.rst
 +F:    drivers/perf/hisilicon/hns3_pmu.c
 +
  HISILICON I2C CONTROLLER DRIVER
  M:    Yicong Yang <[email protected]>
  L:    [email protected]
@@@ -9378,13 -9220,6 +9378,13 @@@ W:    https://www.hisilicon.co
  F:    Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
  F:    drivers/i2c/busses/i2c-hisi.c
  
 +HISILICON KUNPENG SOC HCCS DRIVER
 +M:    Huisong Li <[email protected]>
 +S:    Maintained
 +F:    Documentation/ABI/testing/sysfs-devices-platform-kunpeng_hccs
 +F:    drivers/soc/hisilicon/kunpeng_hccs.c
 +F:    drivers/soc/hisilicon/kunpeng_hccs.h
 +
  HISILICON LPC BUS DRIVER
  M:    Jay Fang <[email protected]>
  S:    Maintained
@@@ -9409,8 -9244,14 +9409,8 @@@ W:     http://www.hisilicon.co
  F:    Documentation/devicetree/bindings/net/hisilicon*.txt
  F:    drivers/net/ethernet/hisilicon/
  
 -HIKEY960 ONBOARD USB GPIO HUB DRIVER
 -M:    John Stultz <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/misc/hisi_hikey_usb.c
 -
  HISILICON PMU DRIVER
 -M:    Shaokun Zhang <zhangshaokun@hisilicon.com>
 +M:    Yicong Yang <yangyicong@hisilicon.com>
  M:    Jonathan Cameron <[email protected]>
  S:    Supported
  W:    http://www.hisilicon.com
@@@ -9418,6 -9259,12 +9418,6 @@@ F:     Documentation/admin-guide/perf/hisi-
  F:    Documentation/admin-guide/perf/hisi-pmu.rst
  F:    drivers/perf/hisilicon
  
 -HISILICON HNS3 PMU DRIVER
 -M:    Guangbin Huang <[email protected]>
 -S:    Supported
 -F:    Documentation/admin-guide/perf/hns3-pmu.rst
 -F:    drivers/perf/hisilicon/hns3_pmu.c
 -
  HISILICON PTT DRIVER
  M:    Yicong Yang <[email protected]>
  M:    Jonathan Cameron <[email protected]>
@@@ -9441,8 -9288,17 +9441,8 @@@ F:     drivers/crypto/hisilicon/qm.
  F:    drivers/crypto/hisilicon/sgl.c
  F:    include/linux/hisi_acc_qm.h
  
 -HISILICON ZIP Controller DRIVER
 -M:    Yang Shen <[email protected]>
 -M:    Zhou Wang <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/ABI/testing/debugfs-hisi-zip
 -F:    drivers/crypto/hisilicon/zip/
 -
  HISILICON ROCE DRIVER
 -M:    Haoyue Xu <[email protected]>
 -M:    Wenpeng Liang <[email protected]>
 +M:    Junxian Huang <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
@@@ -9498,14 -9354,6 +9498,14 @@@ S:    Maintaine
  W:    http://www.hisilicon.com
  F:    drivers/spi/spi-hisi-sfc-v3xx.c
  
 +HISILICON ZIP Controller DRIVER
 +M:    Yang Shen <[email protected]>
 +M:    Zhou Wang <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/ABI/testing/debugfs-hisi-zip
 +F:    drivers/crypto/hisilicon/zip/
 +
  HMM - Heterogeneous Memory Management
  M:    Jérôme Glisse <[email protected]>
  L:    [email protected]
@@@ -9516,13 -9364,6 +9516,13 @@@ F:    lib/test_hmm
  F:    mm/hmm*
  F:    tools/testing/selftests/mm/*hmm*
  
 +HONEYWELL MPRLS0025PA PRESSURE SENSOR SERIES IIO DRIVER
 +M:    Andreas Klinger <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/iio/pressure/honeywell,mprls0025pa.yaml
 +F:    drivers/iio/pressure/mprls0025pa.c
 +
  HOST AP DRIVER
  M:    Jouni Malinen <[email protected]>
  L:    [email protected]
@@@ -9530,24 -9371,11 +9530,24 @@@ S:   Obsolet
  W:    http://w1.fi/hostap-driver.html
  F:    drivers/net/wireless/intersil/hostap/
  
 +HP BIOSCFG DRIVER
 +M:    Jorge Lopez <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/platform/x86/hp/hp-bioscfg/
 +
  HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
  L:    [email protected]
  S:    Orphan
  F:    drivers/platform/x86/hp/tc1100-wmi.c
  
 +HP WMI HARDWARE MONITOR DRIVER
 +M:    James Seo <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/hwmon/hp-wmi-sensors.rst
 +F:    drivers/hwmon/hp-wmi-sensors.c
 +
  HPET: High Precision Event Timers driver
  M:    Clemens Ladisch <[email protected]>
  S:    Maintained
@@@ -9567,12 -9395,6 +9567,12 @@@ S:    Maintaine
  W:    http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
  F:    fs/hpfs/
  
 +HS3001 Hardware Temperature and Humidity Sensor
 +M:    Andre Werner <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/hwmon/hs3001.c
 +
  HSI SUBSYSTEM
  M:    Sebastian Reichel <[email protected]>
  S:    Maintained
@@@ -9607,10 -9429,7 +9607,10 @@@ F:    drivers/input/touchscreen/htcpen.
  
  HTE SUBSYSTEM
  M:    Dipen Patel <[email protected]>
 +L:    [email protected]
  S:    Maintained
 +Q:    https://patchwork.kernel.org/project/timestamp/list/
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/pateldipen1984/linux.git
  F:    Documentation/devicetree/bindings/timestamp/
  F:    Documentation/driver-api/hte/
  F:    drivers/hte/
@@@ -9676,7 -9495,7 +9676,7 @@@ S:      Maintaine
  F:    arch/x86/kernel/cpu/hygon.c
  
  HYNIX HI556 SENSOR DRIVER
 -M:    Shawn Tu <shawnx.tu@intel.com>
 +M:    Sakari Ailus <sakari.ailus@linux.intel.com>
  L:    [email protected]
  S:    Maintained
  T:    git git://linuxtv.org/media_tree.git
@@@ -9689,7 -9508,7 +9689,7 @@@ S:      Maintaine
  F:    drivers/media/i2c/hi846.c
  
  HYNIX HI847 SENSOR DRIVER
 -M:    Shawn Tu <shawnx.tu@intel.com>
 +M:    Sakari Ailus <sakari.ailus@linux.intel.com>
  L:    [email protected]
  S:    Maintained
  F:    drivers/media/i2c/hi847.c
@@@ -9704,9 -9523,8 +9704,9 @@@ S:      Supporte
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
  F:    Documentation/ABI/stable/sysfs-bus-vmbus
  F:    Documentation/ABI/testing/debugfs-hyperv
 -F:    Documentation/virt/hyperv
 +F:    Documentation/devicetree/bindings/bus/microsoft,vmbus.yaml
  F:    Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
 +F:    Documentation/virt/hyperv
  F:    arch/arm64/hyperv
  F:    arch/arm64/include/asm/hyperv-tlfs.h
  F:    arch/arm64/include/asm/mshyperv.h
@@@ -9738,7 -9556,6 +9738,7 @@@ F:      tools/hv
  
  HYPERBUS SUPPORT
  M:    Vignesh Raghavendra <[email protected]>
 +R:    Tudor Ambarus <[email protected]>
  L:    [email protected]
  S:    Supported
  Q:    http://patchwork.ozlabs.org/project/linux-mtd/list/
  S:    Maintained
  F:    drivers/i2c/i2c-core-acpi.c
  
 +I2C ADDRESS TRANSLATOR (ATR)
 +M:    Tomi Valkeinen <[email protected]>
 +R:    Luca Ceresoli <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/i2c/i2c-atr.c
 +F:    include/linux/i2c-atr.h
 +
  I2C CONTROLLER DRIVER FOR NVIDIA GPU
  M:    Ajay Gupta <[email protected]>
  L:    [email protected]
@@@ -9820,9 -9629,8 +9820,9 @@@ F:      include/uapi/linux/i2c-*.
  F:    include/uapi/linux/i2c.h
  
  I2C SUBSYSTEM HOST DRIVERS
 +M:    Andi Shyti <[email protected]>
  L:    [email protected]
 -S:    Odd Fixes
 +S:    Maintained
  W:    https://i2c.wiki.kernel.org/
  Q:    https://patchwork.ozlabs.org/project/linux-i2c/list/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
  S:    Maintained
  F:    drivers/i2c/i2c-stub.c
  
 +I3C DRIVER FOR ASPEED AST2600
 +M:    Jeremy Kerr <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/i3c/aspeed,ast2600-i3c.yaml
 +F:    drivers/i3c/master/ast2600-i3c-master.c
 +
  I3C DRIVER FOR CADENCE I3C MASTER IP
  M:    PrzemysÅ‚aw Gaj <[email protected]>
  S:    Maintained
  S:    Supported
  F:    drivers/net/ethernet/ibm/ibmvnic.*
  
 +IBM Power VFIO Support
 +M:    Timothy Pearson <[email protected]>
 +S:    Supported
 +F:    drivers/vfio/vfio_iommu_spapr_tce.c
 +
  IBM Power Virtual Ethernet Device Driver
  M:    Nick Child <[email protected]>
  L:    [email protected]
@@@ -10096,9 -9893,8 +10096,9 @@@ M:    Miquel Raynal <miquel.raynal@bootlin
  L:    [email protected]
  S:    Maintained
  W:    https://linux-wpan.org/
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
 +Q:    https://patchwork.kernel.org/project/linux-wpan/list/
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/wpan/wpan.git
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/wpan/wpan-next.git
  F:    Documentation/networking/ieee802154.rst
  F:    drivers/net/ieee802154/
  F:    include/linux/ieee802154.h
@@@ -10111,10 -9907,6 +10111,10 @@@ F:  include/net/nl802154.
  F:    net/ieee802154/
  F:    net/mac802154/
  
 +IFCVF VIRTIO DATA PATH ACCELERATOR
 +R:    Zhu Lingshan <[email protected]>
 +F:    drivers/vdpa/ifcvf/
 +
  IFE PROTOCOL
  M:    Yotam Gigi <[email protected]>
  M:    Jamal Hadi Salim <[email protected]>
@@@ -10150,13 -9942,6 +10150,13 @@@ F:  Documentation/ABI/testing/sysfs-bus-
  F:    Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
  F:    drivers/iio/adc/envelope-detector.c
  
 +IIO LIGHT SENSOR GAIN-TIME-SCALE HELPERS
 +M:    Matti Vaittinen <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/iio/light/gain-time-scale-helper.c
 +F:    drivers/iio/light/gain-time-scale-helper.h
 +
  IIO MULTIPLEXER
  M:    Peter Rosin <[email protected]>
  L:    [email protected]
@@@ -10250,7 -10035,7 +10250,7 @@@ S:   Maintaine
  F:    Documentation/process/kernel-docs.rst
  
  INDUSTRY PACK SUBSYSTEM (IPACK)
 -M:    Samuel Iglesias Gonsalvez <siglesias@igalia.com>
 +M:    Vaibhav Gupta <vaibhavgupta40@gmail.com>
  M:    Jens Taprogge <[email protected]>
  M:    Greg Kroah-Hartman <[email protected]>
  L:    [email protected]
@@@ -10379,8 -10164,8 +10379,8 @@@ M:   Dmitry Kasatkin <dmitry.kasatkin@gma
  L:    [email protected]
  S:    Supported
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
 -F:    security/integrity/ima/
  F:    security/integrity/
 +F:    security/integrity/ima/
  
  INTEL 810/815 FRAMEBUFFER DRIVER
  M:    Antonino Daplas <[email protected]>
  S:    Maintained
  F:    drivers/video/fbdev/i810/
  
 +INTEL 8254 COUNTER DRIVER
 +M:    William Breathitt Gray <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/counter/i8254.c
 +F:    include/linux/i8254.h
 +
  INTEL 8255 GPIO DRIVER
  M:    William Breathitt Gray <[email protected]>
  L:    [email protected]
@@@ -10477,8 -10255,9 +10477,8 @@@ M:   Jesse Brandeburg <jesse.brandeburg@i
  M:    Tony Nguyen <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
 -W:    http://www.intel.com/support/feedback.htm
 -W:    http://e1000.sourceforge.net/
 -Q:    http://patchwork.ozlabs.org/project/intel-wired-lan/list/
 +W:    https://www.intel.com/content/www/us/en/support.html
 +Q:    https://patchwork.ozlabs.org/project/intel-wired-lan/list/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
  F:    Documentation/networking/device_drivers/ethernet/intel/
@@@ -10507,14 -10286,12 +10507,14 @@@ M:        Andy Shevchenko <[email protected]
  L:    [email protected]
  S:    Supported
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
 +F:    drivers/gpio/gpio-elkhartlake.c
  F:    drivers/gpio/gpio-ich.c
  F:    drivers/gpio/gpio-merrifield.c
  F:    drivers/gpio/gpio-ml-ioh.c
  F:    drivers/gpio/gpio-pch.c
  F:    drivers/gpio/gpio-sch.c
  F:    drivers/gpio/gpio-sodaville.c
 +F:    drivers/gpio/gpio-tangier.c
  
  INTEL GVT-g DRIVERS (Intel GPU Virtualization)
  M:    Zhenyu Wang <[email protected]>
@@@ -10540,6 -10317,14 +10540,6 @@@ S:  Supporte
  Q:    https://patchwork.kernel.org/project/linux-dmaengine/list/
  F:    drivers/dma/ioat*
  
 -INTEL IDXD DRIVER
 -M:    Fenghua Yu <[email protected]>
 -M:    Dave Jiang <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    drivers/dma/idxd/*
 -F:    include/uapi/linux/idxd.h
 -
  INTEL IDLE DRIVER
  M:    Jacob Pan <[email protected]>
  M:    Len Brown <[email protected]>
@@@ -10549,14 -10334,6 +10549,14 @@@ B: https://bugzilla.kernel.or
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
  F:    drivers/idle/intel_idle.c
  
 +INTEL IDXD DRIVER
 +M:    Fenghua Yu <[email protected]>
 +M:    Dave Jiang <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    drivers/dma/idxd/*
 +F:    include/uapi/linux/idxd.h
 +
  INTEL IN FIELD SCAN (IFS) DEVICE
  M:    Jithu Joseph <[email protected]>
  R:    Ashok Raj <[email protected]>
@@@ -10600,21 -10377,21 +10600,21 @@@ L:        [email protected]
  S:    Maintained
  F:    Documentation/admin-guide/media/ipu3.rst
  F:    Documentation/admin-guide/media/ipu3_rcb.svg
 -F:    Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
 +F:    Documentation/userspace-api/media/v4l/metafmt-intel-ipu3.rst
  F:    drivers/staging/media/ipu3/
  
 -INTEL IXP4XX CRYPTO SUPPORT
 -M:    Corentin Labbe <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/crypto/ixp4xx_crypto.c
 -
  INTEL ISHTP ECLITE DRIVER
  M:    Sumesh K Naduvalath <[email protected]>
  L:    [email protected]
  S:    Supported
  F:    drivers/platform/x86/intel/ishtp_eclite.c
  
 +INTEL IXP4XX CRYPTO SUPPORT
 +M:    Corentin Labbe <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
 +
  INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
  M:    Krzysztof Halasa <[email protected]>
  S:    Maintained
@@@ -10642,11 -10419,11 +10642,11 @@@ INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVE
  M:    Daniele Alessandrelli <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
 -F:    drivers/crypto/keembay/Kconfig
 -F:    drivers/crypto/keembay/Makefile
 -F:    drivers/crypto/keembay/keembay-ocs-aes-core.c
 -F:    drivers/crypto/keembay/ocs-aes.c
 -F:    drivers/crypto/keembay/ocs-aes.h
 +F:    drivers/crypto/intel/keembay/Kconfig
 +F:    drivers/crypto/intel/keembay/Makefile
 +F:    drivers/crypto/intel/keembay/keembay-ocs-aes-core.c
 +F:    drivers/crypto/intel/keembay/ocs-aes.c
 +F:    drivers/crypto/intel/keembay/ocs-aes.h
  
  INTEL KEEM BAY OCS ECC CRYPTO DRIVER
  M:    Daniele Alessandrelli <[email protected]>
@@@ -10654,20 -10431,27 +10654,20 @@@ M:        Prabhjot Khurana <prabhjot.khurana@i
  M:    Mark Gross <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
 -F:    drivers/crypto/keembay/Kconfig
 -F:    drivers/crypto/keembay/Makefile
 -F:    drivers/crypto/keembay/keembay-ocs-ecc.c
 +F:    drivers/crypto/intel/keembay/Kconfig
 +F:    drivers/crypto/intel/keembay/Makefile
 +F:    drivers/crypto/intel/keembay/keembay-ocs-ecc.c
  
  INTEL KEEM BAY OCS HCU CRYPTO DRIVER
  M:    Daniele Alessandrelli <[email protected]>
  M:    Declan Murphy <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
 -F:    drivers/crypto/keembay/Kconfig
 -F:    drivers/crypto/keembay/Makefile
 -F:    drivers/crypto/keembay/keembay-ocs-hcu-core.c
 -F:    drivers/crypto/keembay/ocs-hcu.c
 -F:    drivers/crypto/keembay/ocs-hcu.h
 -
 -INTEL THUNDER BAY EMMC PHY DRIVER
 -M:    Nandhini Srikandan <[email protected]>
 -M:    Rashmi A <[email protected]>
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
 -F:    drivers/phy/intel/phy-intel-thunderbay-emmc.c
 +F:    drivers/crypto/intel/keembay/Kconfig
 +F:    drivers/crypto/intel/keembay/Makefile
 +F:    drivers/crypto/intel/keembay/keembay-ocs-hcu-core.c
 +F:    drivers/crypto/intel/keembay/ocs-hcu.c
 +F:    drivers/crypto/intel/keembay/ocs-hcu.h
  
  INTEL MANAGEMENT ENGINE (mei)
  M:    Tomas Winkler <[email protected]>
@@@ -10679,7 -10463,6 +10679,7 @@@ F:   drivers/watchdog/mei_wdt.
  F:    include/linux/mei_aux.h
  F:    include/linux/mei_cl_bus.h
  F:    include/uapi/linux/mei.h
 +F:    include/uapi/linux/mei_uuid.h
  F:    include/uapi/linux/uuid.h
  F:    samples/mei/*
  
@@@ -10693,12 -10476,11 +10693,12 @@@ F:        drivers/hwmon/intel-m10-bmc-hwmon.
  F:    drivers/mfd/intel-m10-bmc*
  F:    include/linux/mfd/intel-m10-bmc.h
  
 -INTEL MENLOW THERMAL DRIVER
 -M:    Sujith Thomas <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    drivers/thermal/intel/intel_menlow.c
 +INTEL MAX10 BMC SECURE UPDATES
 +M:    Russ Weight <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
 +F:    drivers/fpga/intel-m10-bmc-sec-update.c
  
  INTEL P-Unit IPC DRIVER
  M:    Zha Qipeng <[email protected]>
  S:    Supported
  F:    drivers/cpufreq/intel_pstate.c
  
 +INTEL PTP DFL ToD DRIVER
 +M:    Tianfei Zhang <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/ptp/ptp_dfl_tod.c
 +
  INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
  M:    Jarkko Nikula <[email protected]>
  L:    [email protected]
@@@ -10772,21 -10547,6 +10772,21 @@@ F: drivers/platform/x86/intel/sdsi.
  F:    tools/arch/x86/intel_sdsi/
  F:    tools/testing/selftests/drivers/sdsi/
  
 +INTEL SGX
 +M:    Jarkko Sakkinen <[email protected]>
 +R:    Dave Hansen <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +Q:    https://patchwork.kernel.org/project/intel-sgx/list/
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
 +F:    Documentation/arch/x86/sgx.rst
 +F:    arch/x86/entry/vdso/vsgx.S
 +F:    arch/x86/include/asm/sgx.h
 +F:    arch/x86/include/uapi/asm/sgx.h
 +F:    arch/x86/kernel/cpu/sgx/*
 +F:    tools/testing/selftests/sgx/*
 +K:    \bSGX_
 +
  INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
  M:    Daniel Scally <[email protected]>
  S:    Maintained
@@@ -10804,13 -10564,13 +10804,13 @@@ INTEL STRATIX10 FIRMWARE DRIVER
  M:    Dinh Nguyen <[email protected]>
  L:    [email protected]
  S:    Maintained
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
  F:    Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
  F:    Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
  F:    drivers/firmware/stratix10-rsu.c
  F:    drivers/firmware/stratix10-svc.c
  F:    include/linux/firmware/intel/stratix10-smc.h
  F:    include/linux/firmware/intel/stratix10-svc-client.h
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
  
  INTEL TELEMETRY DRIVER
  M:    Rajneesh Bhardwaj <[email protected]>
@@@ -10824,7 -10584,6 +10824,7 @@@ INTEL TPMI DRIVE
  M:    Srinivas Pandruvada <[email protected]>
  L:    [email protected]
  S:    Maintained
 +F:    Documentation/ABI/testing/debugfs-tpmi
  F:    drivers/platform/x86/intel/tpmi.c
  F:    include/linux/intel_tpmi.h
  
@@@ -10896,6 -10655,21 +10896,6 @@@ F:  Documentation/arch/x86/intel_txt.rs
  F:    arch/x86/kernel/tboot.c
  F:    include/linux/tboot.h
  
 -INTEL SGX
 -M:    Jarkko Sakkinen <[email protected]>
 -R:    Dave Hansen <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -Q:    https://patchwork.kernel.org/project/intel-sgx/list/
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
 -F:    Documentation/arch/x86/sgx.rst
 -F:    arch/x86/entry/vdso/vsgx.S
 -F:    arch/x86/include/asm/sgx.h
 -F:    arch/x86/include/uapi/asm/sgx.h
 -F:    arch/x86/kernel/cpu/sgx/*
 -F:    tools/testing/selftests/sgx/*
 -K:    \bSGX_
 -
  INTERCONNECT API
  M:    Georgi Djakov <[email protected]>
  L:    [email protected]
@@@ -10945,6 -10719,7 +10945,6 @@@ S:   Maintaine
  F:    drivers/net/ethernet/sgi/ioc3-eth.c
  
  IOMAP FILESYSTEM LIBRARY
 -M:    Christoph Hellwig <[email protected]>
  M:    Darrick J. Wong <[email protected]>
  L:    [email protected]
  L:    [email protected]
@@@ -10963,6 -10738,18 +10963,6 @@@ F:  drivers/iommu/dma-iommu.
  F:    drivers/iommu/iova.c
  F:    include/linux/iova.h
  
 -IOMMUFD
 -M:    Jason Gunthorpe <[email protected]>
 -M:    Kevin Tian <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
 -F:    Documentation/userspace-api/iommufd.rst
 -F:    drivers/iommu/iommufd/
 -F:    include/linux/iommufd.h
 -F:    include/uapi/linux/iommufd.h
 -F:    tools/testing/selftests/iommu/
 -
  IOMMU SUBSYSTEM
  M:    Joerg Roedel <[email protected]>
  M:    Will Deacon <[email protected]>
@@@ -10978,18 -10765,6 +10978,18 @@@ F: include/linux/iova.
  F:    include/linux/of_iommu.h
  F:    include/uapi/linux/iommu.h
  
 +IOMMUFD
 +M:    Jason Gunthorpe <[email protected]>
 +M:    Kevin Tian <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
 +F:    Documentation/userspace-api/iommufd.rst
 +F:    drivers/iommu/iommufd/
 +F:    include/linux/iommufd.h
 +F:    include/uapi/linux/iommufd.h
 +F:    tools/testing/selftests/iommu/
 +
  IOSYS-MAP HELPERS
  M:    Thomas Zimmermann <[email protected]>
  L:    [email protected]
@@@ -11004,11 -10779,12 +11004,11 @@@ L:        [email protected]
  S:    Maintained
  T:    git git://git.kernel.dk/linux-block
  T:    git git://git.kernel.dk/liburing
 -F:    io_uring/
  F:    include/linux/io_uring.h
  F:    include/linux/io_uring_types.h
  F:    include/trace/events/io_uring.h
  F:    include/uapi/linux/io_uring.h
 -F:    tools/io_uring/
 +F:    io_uring/
  
  IPMI SUBSYSTEM
  M:    Corey Minyard <[email protected]>
  S:    Supported
  W:    http://openipmi.sourceforge.net/
  T:    git https://github.com/cminyard/linux-ipmi.git for-next
 -F:    Documentation/driver-api/ipmi.rst
  F:    Documentation/devicetree/bindings/ipmi/
 +F:    Documentation/driver-api/ipmi.rst
  F:    drivers/char/ipmi/
  F:    include/linux/ipmi*
  F:    include/uapi/linux/ipmi*
@@@ -11069,8 -10845,8 +11069,8 @@@ M:   Thomas Gleixner <[email protected]
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
 -F:    kernel/irq/
  F:    include/linux/group_cpus.h
 +F:    kernel/irq/
  F:    lib/group_cpus.c
  
  IRQCHIP DRIVERS
@@@ -11404,15 -11180,10 +11404,15 @@@ W:        http://kernelnewbies.org/KernelJanit
  KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
  M:    Chuck Lever <[email protected]>
  M:    Jeff Layton <[email protected]>
 +R:    Neil Brown <[email protected]>
 +R:    Olga Kornievskaia <[email protected]>
 +R:    Dai Ngo <[email protected]>
 +R:    Tom Talpey <[email protected]>
  L:    [email protected]
  S:    Supported
  W:    http://nfs.sourceforge.net/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
 +F:    Documentation/filesystems/nfs/
  F:    fs/exportfs/
  F:    fs/lockd/
  F:    fs/nfs_common/
@@@ -11428,6 -11199,7 +11428,6 @@@ F:   include/trace/misc/sunrpc.
  F:    include/uapi/linux/nfsd/
  F:    include/uapi/linux/sunrpc/
  F:    net/sunrpc/
 -F:    Documentation/filesystems/nfs/
  
  KERNEL REGRESSIONS
  M:    Thorsten Leemhuis <[email protected]>
@@@ -11454,9 -11226,9 +11454,9 @@@ R:   Tom Talpey <[email protected]
  L:    [email protected]
  S:    Maintained
  T:    git git://git.samba.org/ksmbd.git
 -F:    Documentation/filesystems/cifs/ksmbd.rst
 -F:    fs/ksmbd/
 -F:    fs/smbfs_common/
 +F:    Documentation/filesystems/smb/ksmbd.rst
 +F:    fs/smb/common/
 +F:    fs/smb/server/
  
  KERNEL UNIT TESTING FRAMEWORK (KUnit)
  M:    Brendan Higgins <[email protected]>
  L:    [email protected]
  S:    Maintained
  W:    https://google.github.io/kunit-docs/third_party/kernel/docs/
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git kunit
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git kunit-fixes
  F:    Documentation/dev-tools/kunit/
  F:    include/kunit/
  F:    lib/kunit/
 +F:    rust/kernel/kunit.rs
 +F:    scripts/rustdoc_test_*
  F:    tools/testing/kunit/
  
  KERNEL USERMODE HELPER
@@@ -11517,6 -11285,7 +11517,6 @@@ F:   tools/testing/selftests/kvm/aarch64
  
  KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
  M:    Huacai Chen <[email protected]>
 -M:    Aleksandar Markovic <[email protected]>
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
@@@ -11526,13 -11295,7 +11526,13 @@@ F: arch/mips/include/uapi/asm/kvm
  F:    arch/mips/kvm/
  
  KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
 +M:    Michael Ellerman <[email protected]>
 +R:    Nicholas Piggin <[email protected]>
  L:    [email protected]
 +L:    [email protected]
 +S:    Maintained (Book3S 64-bit HV)
 +S:    Odd fixes (Book3S 64-bit PR)
 +S:    Orphan (Book3E and 32-bit)
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
  F:    arch/powerpc/include/asm/kvm*
  F:    arch/powerpc/include/uapi/asm/kvm*
@@@ -11560,34 -11323,74 +11560,34 @@@ R:        David Hildenbrand <[email protected]
  L:    [email protected]
  S:    Supported
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
 -F:    Documentation/virt/kvm/s390*
 -F:    arch/s390/include/asm/gmap.h
 -F:    arch/s390/include/asm/kvm*
 -F:    arch/s390/include/uapi/asm/kvm*
 -F:    arch/s390/include/uapi/asm/uvdevice.h
 -F:    arch/s390/kernel/uv.c
 -F:    arch/s390/kvm/
 -F:    arch/s390/mm/gmap.c
 -F:    drivers/s390/char/uvdevice.c
 -F:    tools/testing/selftests/drivers/s390x/uvdevice/
 -F:    tools/testing/selftests/kvm/*/s390x/
 -F:    tools/testing/selftests/kvm/s390x/
 -
 -KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
 -M:    Sean Christopherson <[email protected]>
 -M:    Paolo Bonzini <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -T:    git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
 -F:    arch/x86/include/asm/kvm*
 -F:    arch/x86/include/asm/svm.h
 -F:    arch/x86/include/asm/vmx*.h
 -F:    arch/x86/include/uapi/asm/kvm*
 -F:    arch/x86/include/uapi/asm/svm.h
 -F:    arch/x86/include/uapi/asm/vmx.h
 -F:    arch/x86/kvm/
 -F:    arch/x86/kvm/*/
 -
 -KVM PARAVIRT (KVM/paravirt)
 -M:    Paolo Bonzini <[email protected]>
 -R:    Wanpeng Li <[email protected]>
 -R:    Vitaly Kuznetsov <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -T:    git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
 -F:    arch/x86/kernel/kvm.c
 -F:    arch/x86/kernel/kvmclock.c
 -F:    arch/x86/include/asm/pvclock-abi.h
 -F:    include/linux/kvm_para.h
 -F:    include/uapi/linux/kvm_para.h
 -F:    include/uapi/asm-generic/kvm_para.h
 -F:    include/asm-generic/kvm_para.h
 -F:    arch/um/include/asm/kvm_para.h
 -F:    arch/x86/include/asm/kvm_para.h
 -F:    arch/x86/include/uapi/asm/kvm_para.h
 -
 -KVM X86 HYPER-V (KVM/hyper-v)
 -M:    Vitaly Kuznetsov <[email protected]>
 -M:    Sean Christopherson <[email protected]>
 -M:    Paolo Bonzini <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -T:    git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
 -F:    arch/x86/kvm/hyperv.*
 -F:    arch/x86/kvm/kvm_onhyperv.*
 -F:    arch/x86/kvm/svm/hyperv.*
 -F:    arch/x86/kvm/svm/svm_onhyperv.*
 -F:    arch/x86/kvm/vmx/hyperv.*
 +F:    Documentation/virt/kvm/s390*
 +F:    arch/s390/include/asm/gmap.h
 +F:    arch/s390/include/asm/kvm*
 +F:    arch/s390/include/uapi/asm/kvm*
 +F:    arch/s390/include/uapi/asm/uvdevice.h
 +F:    arch/s390/kernel/uv.c
 +F:    arch/s390/kvm/
 +F:    arch/s390/mm/gmap.c
 +F:    drivers/s390/char/uvdevice.c
 +F:    tools/testing/selftests/drivers/s390x/uvdevice/
 +F:    tools/testing/selftests/kvm/*/s390x/
 +F:    tools/testing/selftests/kvm/s390x/
  
 -KVM X86 Xen (KVM/Xen)
 -M:    David Woodhouse <[email protected]>
 -M:    Paul Durrant <[email protected]>
 +KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
  M:    Sean Christopherson <[email protected]>
  M:    Paolo Bonzini <[email protected]>
  L:    [email protected]
  S:    Supported
 +P:    Documentation/process/maintainer-kvm-x86.rst
  T:    git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
 -F:    arch/x86/kvm/xen.*
 +F:    arch/x86/include/asm/kvm*
 +F:    arch/x86/include/asm/svm.h
 +F:    arch/x86/include/asm/vmx*.h
 +F:    arch/x86/include/uapi/asm/kvm*
 +F:    arch/x86/include/uapi/asm/svm.h
 +F:    arch/x86/include/uapi/asm/vmx.h
 +F:    arch/x86/kvm/
 +F:    arch/x86/kvm/*/
  
  KERNFS
  M:    Greg Kroah-Hartman <[email protected]>
@@@ -11627,6 -11430,14 +11627,6 @@@ F:  include/keys/trusted-type.
  F:    include/keys/trusted_tpm.h
  F:    security/keys/trusted-keys/
  
 -KEYS-TRUSTED-TEE
 -M:    Sumit Garg <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -S:    Supported
 -F:    include/keys/trusted_tee.h
 -F:    security/keys/trusted-keys/trusted_tee.c
 -
  KEYS-TRUSTED-CAAM
  M:    Ahmad Fatoum <[email protected]>
  R:    Pengutronix Kernel Team <[email protected]>
@@@ -11636,14 -11447,6 +11636,14 @@@ S: Maintaine
  F:    include/keys/trusted_caam.h
  F:    security/keys/trusted-keys/trusted_caam.c
  
 +KEYS-TRUSTED-TEE
 +M:    Sumit Garg <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Supported
 +F:    include/keys/trusted_tee.h
 +F:    security/keys/trusted-keys/trusted_tee.c
 +
  KEYS/KEYRINGS
  M:    David Howells <[email protected]>
  M:    Jarkko Sakkinen <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
  F:    drivers/mfd/khadas-mcu.c
 -F:    include/linux/mfd/khadas-mcu.h
  F:    drivers/thermal/khadas_mcu_fan.c
 +F:    include/linux/mfd/khadas-mcu.h
  
  KIONIX/ROHM KX022A ACCELEROMETER
  M:    Matti Vaittinen <[email protected]>
@@@ -11723,6 -11526,16 +11723,6 @@@ F:  include/linux/kmemleak.
  F:    mm/kmemleak.c
  F:    samples/kmemleak/kmemleak-test.c
  
 -KMOD KERNEL MODULE LOADER - USERMODE HELPER
 -M:    Luis Chamberlain <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -S:    Maintained
 -F:    include/linux/kmod.h
 -F:    kernel/kmod.c
 -F:    lib/test_kmod.c
 -F:    tools/testing/selftests/kmod/
 -
  KMSAN
  M:    Alexander Potapenko <[email protected]>
  R:    Marco Elver <[email protected]>
@@@ -11744,8 -11557,8 +11744,8 @@@ M:   "David S. Miller" <[email protected]
  M:    Masami Hiramatsu <[email protected]>
  L:    [email protected]
  L:    [email protected]
 -Q:    https://patchwork.kernel.org/project/linux-trace-kernel/list/
  S:    Maintained
 +Q:    https://patchwork.kernel.org/project/linux-trace-kernel/list/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
  F:    Documentation/trace/kprobes.rst
  F:    include/asm-generic/kprobes.h
@@@ -11779,47 -11592,6 +11779,47 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/leds/backlight/kinetic,ktz8866.yaml
  F:    drivers/video/backlight/ktz8866.c
  
 +KVM PARAVIRT (KVM/paravirt)
 +M:    Paolo Bonzini <[email protected]>
 +R:    Wanpeng Li <[email protected]>
 +R:    Vitaly Kuznetsov <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +T:    git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
 +F:    arch/um/include/asm/kvm_para.h
 +F:    arch/x86/include/asm/kvm_para.h
 +F:    arch/x86/include/asm/pvclock-abi.h
 +F:    arch/x86/include/uapi/asm/kvm_para.h
 +F:    arch/x86/kernel/kvm.c
 +F:    arch/x86/kernel/kvmclock.c
 +F:    include/asm-generic/kvm_para.h
 +F:    include/linux/kvm_para.h
 +F:    include/uapi/asm-generic/kvm_para.h
 +F:    include/uapi/linux/kvm_para.h
 +
 +KVM X86 HYPER-V (KVM/hyper-v)
 +M:    Vitaly Kuznetsov <[email protected]>
 +M:    Sean Christopherson <[email protected]>
 +M:    Paolo Bonzini <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +T:    git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
 +F:    arch/x86/kvm/hyperv.*
 +F:    arch/x86/kvm/kvm_onhyperv.*
 +F:    arch/x86/kvm/svm/hyperv.*
 +F:    arch/x86/kvm/svm/svm_onhyperv.*
 +F:    arch/x86/kvm/vmx/hyperv.*
 +
 +KVM X86 Xen (KVM/Xen)
 +M:    David Woodhouse <[email protected]>
 +M:    Paul Durrant <[email protected]>
 +M:    Sean Christopherson <[email protected]>
 +M:    Paolo Bonzini <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +T:    git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
 +F:    arch/x86/kvm/xen.*
 +
  L3MDEV
  M:    David Ahern <[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
  F:    Documentation/devicetree/bindings/leds/
 +F:    Documentation/leds/
  F:    drivers/leds/
  F:    include/dt-bindings/leds/
  F:    include/linux/leds.h
@@@ -11895,7 -11666,7 +11895,7 @@@ LEGO MINDSTORMS EV
  R:    David Lechner <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
 -F:    arch/arm/boot/dts/da850-lego-ev3.dts
 +F:    arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
  F:    drivers/power/supply/lego_ev3_battery.c
  
  LEGO USB Tower driver
@@@ -12061,17 -11832,16 +12061,17 @@@ F:        scripts/spdxexclud
  LINEAR RANGES HELPERS
  M:    Mark Brown <[email protected]>
  R:    Matti Vaittinen <[email protected]>
 +F:    include/linux/linear_range.h
  F:    lib/linear_ranges.c
  F:    lib/test_linear_ranges.c
 -F:    include/linux/linear_range.h
  
  LINUX FOR POWER MACINTOSH
 -M:    Benjamin Herrenschmidt <[email protected]>
  L:    [email protected]
 -S:    Odd Fixes
 +S:    Orphan
  F:    arch/powerpc/platforms/powermac/
  F:    drivers/macintosh/
 +X:    drivers/macintosh/adb-iop.c
 +X:    drivers/macintosh/via-macii.c
  
  LINUX FOR POWERPC (32-BIT AND 64-BIT)
  M:    Michael Ellerman <[email protected]>
@@@ -12127,7 -11897,6 +12127,7 @@@ M:   Scott Wood <[email protected]
  L:    [email protected]
  S:    Odd fixes
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
 +F:    Documentation/devicetree/bindings/cache/freescale-l2cache.txt
  F:    Documentation/devicetree/bindings/powerpc/fsl/
  F:    arch/powerpc/platforms/83xx/
  F:    arch/powerpc/platforms/85xx/
@@@ -12169,13 -11938,6 +12169,13 @@@ F: Documentation/litmus-tests
  F:    Documentation/memory-barriers.txt
  F:    tools/memory-model/
  
 +LINUX-NEXT TREE
 +M:    Stephen Rothwell <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +B:    mailto:[email protected] and the appropriate development tree
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/
 +
  LIS3LV02D ACCELEROMETER DRIVER
  M:    Eric Piel <[email protected]>
  S:    Maintained
@@@ -12198,11 -11960,11 +12198,11 @@@ M:        Joel Stanley <[email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/*/litex,*.yaml
  F:    arch/openrisc/boot/dts/or1klitex.dts
 -F:    include/linux/litex.h
 -F:    drivers/tty/serial/liteuart.c
 -F:    drivers/soc/litex/*
 -F:    drivers/net/ethernet/litex/*
  F:    drivers/mmc/host/litex_mmc.c
 +F:    drivers/net/ethernet/litex/*
 +F:    drivers/soc/litex/*
 +F:    drivers/tty/serial/liteuart.c
 +F:    include/linux/litex.h
  N:    litex
  
  LIVE PATCHING
@@@ -12331,17 -12093,10 +12331,17 @@@ R:        WANG Xuerui <[email protected]
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
 +F:    Documentation/arch/loongarch/
 +F:    Documentation/translations/zh_CN/arch/loongarch/
  F:    arch/loongarch/
  F:    drivers/*/*loongarch*
 -F:    Documentation/loongarch/
 -F:    Documentation/translations/zh_CN/loongarch/
 +
 +LOONGSON GPIO DRIVER
 +M:    Yinbo Zhu <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/gpio/loongson,ls-gpio.yaml
 +F:    drivers/gpio/gpio-loongson-64bit.c
  
  LOONGSON LS2X I2C DRIVER
  M:    Binbin Zhou <[email protected]>
@@@ -12350,24 -12105,6 +12350,24 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/i2c/loongson,ls2x-i2c.yaml
  F:    drivers/i2c/busses/i2c-ls2x.c
  
 +LOONGSON-2 SOC SERIES CLOCK DRIVER
 +M:    Yinbo Zhu <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml
 +F:    drivers/clk/clk-loongson2.c
 +F:    include/dt-bindings/clock/loongson,ls2k-clk.h
 +
 +LOONGSON SPI DRIVER
 +M:    Yinbo Zhu <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/spi/loongson,ls2k-spi.yaml
 +F:    drivers/spi/spi-loongson-core.c
 +F:    drivers/spi/spi-loongson-pci.c
 +F:    drivers/spi/spi-loongson-plat.c
 +F:    drivers/spi/spi-loongson.h
 +
  LOONGSON-2 SOC SERIES GUTS DRIVER
  M:    Yinbo Zhu <[email protected]>
  L:    [email protected]
@@@ -12375,13 -12112,6 +12375,13 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
  F:    drivers/soc/loongson/loongson2_guts.c
  
 +LOONGSON-2 SOC SERIES PM DRIVER
 +M:    Yinbo Zhu <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/soc/loongson/loongson,ls2k-pmc.yaml
 +F:    drivers/soc/loongson/loongson2_pm.c
 +
  LOONGSON-2 SOC SERIES PINCTRL DRIVER
  M:    zhanghongchen <[email protected]>
  M:    Yinbo Zhu <[email protected]>
@@@ -12390,6 -12120,13 +12390,6 @@@ S:  Maintaine
  F:    Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
  F:    drivers/pinctrl/pinctrl-loongson2.c
  
 -LOONGSON-2 SOC SERIES CLOCK DRIVER
 -M:    Yinbo Zhu <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml
 -F:    include/dt-bindings/clock/loongson,ls2k-clk.h
 -
  LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
  M:    Sathya Prakash <[email protected]>
  M:    Sreekanth Reddy <[email protected]>
@@@ -12542,7 -12279,7 +12542,7 @@@ T:   git git://git.kernel.org/pub/scm/lin
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
  F:    Documentation/networking/mac80211-injection.rst
  F:    Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
 -F:    drivers/net/wireless/mac80211_hwsim.[ch]
 +F:    drivers/net/wireless/virtual/mac80211_hwsim.[ch]
  F:    include/net/mac80211.h
  F:    net/mac80211/
  
@@@ -12550,26 -12287,20 +12550,26 @@@ MAILBOX AP
  M:    Jassi Brar <[email protected]>
  L:    [email protected]
  S:    Maintained
 +F:    Documentation/devicetree/bindings/mailbox/
  F:    drivers/mailbox/
 +F:    include/dt-bindings/mailbox/
  F:    include/linux/mailbox_client.h
  F:    include/linux/mailbox_controller.h
 -F:    include/dt-bindings/mailbox/
 -F:    Documentation/devicetree/bindings/mailbox/
  
  MAILBOX ARM MHUv2
  M:    Viresh Kumar <[email protected]>
  M:    Tushar Khandelwal <[email protected]>
  L:    [email protected]
  S:    Maintained
 +F:    Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
  F:    drivers/mailbox/arm_mhuv2.c
  F:    include/linux/mailbox/arm_mhuv2_message.h
 -F:    Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
 +
 +MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
 +M:    Michael Kerrisk <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +W:    http://www.kernel.org/doc/man-pages
  
  MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
  M:    Jeremy Kerr <[email protected]>
@@@ -12583,9 -12314,14 +12583,9 @@@ F:  include/net/mctpdevice.
  F:    include/net/netns/mctp.h
  F:    net/mctp/
  
 -MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
 -M:    Michael Kerrisk <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -W:    http://www.kernel.org/doc/man-pages
 -
  MAPLE TREE
  M:    Liam R. Howlett <[email protected]>
 +L:    [email protected]
  L:    [email protected]
  S:    Supported
  F:    Documentation/core-api/maple_tree.rst
@@@ -12615,8 -12351,8 +12615,8 @@@ F:   include/linux/platform_data/mv88e6xx
  MARVELL ARMADA 3700 PHY DRIVERS
  M:    Miquel Raynal <[email protected]>
  S:    Maintained
 -F:    Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
  F:    Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
 +F:    Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
  F:    drivers/phy/marvell/phy-mvebu-a3700-comphy.c
  F:    drivers/phy/marvell/phy-mvebu-a3700-utmi.c
  
@@@ -12697,29 -12433,27 +12697,29 @@@ F:        Documentation/devicetree/bindings/ne
  F:    drivers/net/ethernet/marvell/mvpp2/
  
  MARVELL MWIFIEX WIRELESS DRIVER
 -M:    Amitkumar Karwar <[email protected]>
 -M:    Ganapathi Bhat <[email protected]>
 -M:    Sharvari Harisangam <[email protected]>
 -M:    Xinming Hu <[email protected]>
 +M:    Brian Norris <[email protected]>
  L:    [email protected]
 -S:    Maintained
 +S:    Odd Fixes
  F:    drivers/net/wireless/marvell/mwifiex/
  
  MARVELL MWL8K WIRELESS DRIVER
 -M:    Lennert Buytenhek <[email protected]>
  L:    [email protected]
 -S:    Odd Fixes
 +S:    Orphan
  F:    drivers/net/wireless/marvell/mwl8k.c
  
  MARVELL NAND CONTROLLER DRIVER
  M:    Miquel Raynal <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    Documentation/devicetree/bindings/mtd/marvell-nand.txt
  F:    drivers/mtd/nand/raw/marvell_nand.c
  
 +MARVELL OCTEON ENDPOINT DRIVER
 +M:    Veerasenareddy Burru <[email protected]>
 +M:    Sathesh Edara <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    drivers/net/ethernet/marvell/octeon_ep
 +
  MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
  M:    Sunil Goutham <[email protected]>
  M:    Geetha sowjanya <[email protected]>
@@@ -12767,6 -12501,13 +12767,6 @@@ S:  Supporte
  F:    Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
  F:    drivers/mmc/host/sdhci-xenon*
  
 -MARVELL OCTEON ENDPOINT DRIVER
 -M:    Veerasenareddy Burru <[email protected]>
 -M:    Abhijit Ayarekar <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    drivers/net/ethernet/marvell/octeon_ep
 -
  MATROX FRAMEBUFFER DRIVER
  L:    [email protected]
  S:    Orphan
@@@ -12797,15 -12538,6 +12797,15 @@@ F: Documentation/userspace-api/media/dr
  F:    drivers/media/i2c/max2175*
  F:    include/uapi/linux/max2175.h
  
 +MAX31827 TEMPERATURE SWITCH DRIVER
 +M:    Daniel Matyas <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +W:    http://ez.analog.com/community/linux-device-drivers
 +F:    Documentation/devicetree/bindings/hwmon/adi,max31827.yaml
 +F:    Documentation/hwmon/max31827.rst
 +F:    drivers/hwmon/max31827.c
 +
  MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
  L:    [email protected]
  S:    Orphan
@@@ -12931,7 -12663,7 +12931,7 @@@ F:   drivers/power/supply/max77976_charge
  MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
  M:    Krzysztof Kozlowski <[email protected]>
  L:    [email protected]
 -S:    Supported
 +S:    Maintained
  B:    mailto:[email protected]
  F:    Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
  F:    Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
@@@ -12942,7 -12674,7 +12942,7 @@@ MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS 
  M:    Chanwoo Choi <[email protected]>
  M:    Krzysztof Kozlowski <[email protected]>
  L:    [email protected]
 -S:    Supported
 +S:    Maintained
  B:    mailto:[email protected]
  F:    Documentation/devicetree/bindings/*/maxim,max14577.yaml
  F:    Documentation/devicetree/bindings/*/maxim,max77686.yaml
  S:    Supported
  F:    drivers/net/phy/mxl-gpy.c
  
 -MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
 -R:    Yasushi SHOJI <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/net/can/usb/mcba_usb.c
 -
  MCAN MMIO DEVICE DRIVER
  M:    Chandrasekar Ramakrishnan <[email protected]>
  L:    [email protected]
@@@ -12984,12 -12722,6 +12984,12 @@@ F: drivers/net/can/m_can/m_can.
  F:    drivers/net/can/m_can/m_can.h
  F:    drivers/net/can/m_can/m_can_platform.c
  
 +MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
 +R:    Yasushi SHOJI <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/net/can/usb/mcba_usb.c
 +
  MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
  M:    Rishi Gupta <[email protected]>
  L:    [email protected]
@@@ -13023,13 -12755,6 +13023,13 @@@ F: Documentation/devicetree/bindings/ne
  F:    drivers/net/ieee802154/mcr20a.c
  F:    drivers/net/ieee802154/mcr20a.h
  
 +MDIO REGMAP DRIVER
 +M:    Maxime Chevallier <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/net/mdio/mdio-regmap.c
 +F:    include/linux/mdio/mdio-regmap.h
 +
  MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
  M:    William Breathitt Gray <[email protected]>
  L:    [email protected]
@@@ -13110,21 -12835,17 +13110,21 @@@ F:        drivers/staging/media/imx
  F:    include/linux/imx-media.h
  F:    include/media/imx.h
  
 -MEDIA DRIVERS FOR FREESCALE IMX7
 +MEDIA DRIVERS FOR FREESCALE IMX7/8
  M:    Rui Miguel Silva <[email protected]>
  M:    Laurent Pinchart <[email protected]>
 +M:    Martin Kepplinger <[email protected]>
 +R:    Purism Kernel Team <[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git git://linuxtv.org/media_tree.git
  F:    Documentation/admin-guide/media/imx7.rst
  F:    Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
  F:    Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
 +F:    Documentation/devicetree/bindings/media/nxp,imx8mq-mipi-csi2.yaml
  F:    drivers/media/platform/nxp/imx-mipi-csis.c
  F:    drivers/media/platform/nxp/imx7-media-csi.c
 +F:    drivers/media/platform/nxp/imx8mq-mipi-csi2.c
  
  MEDIA DRIVERS FOR HELENE
  M:    Abylay Ospan <[email protected]>
  S:    Maintained
  F:    drivers/net/ethernet/mediatek/
  
 +MEDIATEK ETHERNET PCS DRIVER
 +M:    Alexander Couzens <[email protected]>
 +M:    Daniel Golle <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/net/pcs/pcs-mtk-lynxi.c
 +F:    include/linux/pcs/pcs-mtk-lynxi.h
 +
 +MEDIATEK ETHERNET PHY DRIVERS
 +M:    Daniel Golle <[email protected]>
 +M:    Qingfang Deng <[email protected]>
 +M:    SkyLake Huang <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/net/phy/mediatek-ge-soc.c
 +F:    drivers/net/phy/mediatek-ge.c
 +
  MEDIATEK I2C CONTROLLER DRIVER
  M:    Qii Wang <[email protected]>
  L:    [email protected]
  S:    Supported
  F:    Documentation/devicetree/bindings/iommu/mediatek*
  F:    drivers/iommu/mtk_iommu*
 +F:    include/dt-bindings/memory/mediatek,mt*-port.h
  F:    include/dt-bindings/memory/mt*-port.h
  
  MEDIATEK JPEG DRIVER
@@@ -13404,7 -13107,6 +13404,7 @@@ R:   Shayne Chen <[email protected]
  R:    Sean Wang <[email protected]>
  L:    [email protected]
  S:    Maintained
 +T:    git https://github.com/nbd168/wireless
  F:    Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
  F:    drivers/net/wireless/mediatek/mt76/
  
@@@ -13420,6 -13122,13 +13420,6 @@@ S:  Maintaine
  F:    Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
  F:    drivers/clk/ralink/clk-mt7621.c
  
 -MEDIATEK MT7621/28/88 I2C DRIVER
 -M:    Stefan Roese <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
 -F:    drivers/i2c/busses/i2c-mt7621.c
 -
  MEDIATEK MT7621 PCIE CONTROLLER DRIVER
  M:    Sergio Paracuellos <[email protected]>
  S:    Maintained
@@@ -13432,19 -13141,6 +13432,19 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
  F:    drivers/phy/ralink/phy-mt7621-pci.c
  
 +MEDIATEK MT7621/28/88 I2C DRIVER
 +M:    Stefan Roese <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
 +F:    drivers/i2c/busses/i2c-mt7621.c
 +
 +MEDIATEK MTMIPS CLOCK DRIVER
 +M:    Sergio Paracuellos <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/clock/mediatek,mtmips-sysc.yaml
 +F:    drivers/clk/ralink/clk-mtmips.c
 +
  MEDIATEK NAND CONTROLLER DRIVER
  L:    [email protected]
  S:    Orphan
@@@ -13471,15 -13167,11 +13471,15 @@@ F:        drivers/memory/mtk-smi.
  F:    include/soc/mediatek/smi.h
  
  MEDIATEK SWITCH DRIVER
 -M:    Sean Wang <[email protected]>
 +M:    Arınç ÃœNAL <[email protected]>
 +M:    Daniel Golle <[email protected]>
  M:    Landen Chao <[email protected]>
  M:    DENG Qingfang <[email protected]>
 +M:    Sean Wang <[email protected]>
  L:    [email protected]
  S:    Maintained
 +F:    drivers/net/dsa/mt7530-mdio.c
 +F:    drivers/net/dsa/mt7530-mmio.c
  F:    drivers/net/dsa/mt7530.*
  F:    net/dsa/tag_mtk.c
  
@@@ -13680,14 -13372,13 +13680,14 @@@ F:        arch/powerpc/include/asm/membarrier.
  F:    include/uapi/linux/membarrier.h
  F:    kernel/sched/membarrier.c
  
 -MEMBLOCK
 +MEMBLOCK AND MEMORY MANAGEMENT INITIALIZATION
  M:    Mike Rapoport <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/core-api/boot-time-mm.rst
  F:    include/linux/memblock.h
  F:    mm/memblock.c
 +F:    mm/mm_init.c
  F:    tools/testing/memblock/
  
  MEMORY CONTROLLER DRIVERS
@@@ -13703,11 -13394,39 +13703,11 @@@ F:        include/memory
  
  MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
  M:    Dmitry Osipenko <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
 -S:    Maintained
 -F:    drivers/devfreq/tegra30-devfreq.c
 -
 -MEMORY MANAGEMENT
 -M:    Andrew Morton <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -W:    http://www.linux-mm.org
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
 -T:    quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
 -F:    include/linux/gfp.h
 -F:    include/linux/gfp_types.h
 -F:    include/linux/memory_hotplug.h
 -F:    include/linux/mm.h
 -F:    include/linux/mmzone.h
 -F:    include/linux/pagewalk.h
 -F:    mm/
 -F:    tools/mm/
 -F:    tools/testing/selftests/mm/
 -
 -VMALLOC
 -M:    Andrew Morton <[email protected]>
 -R:    Uladzislau Rezki <[email protected]>
 -R:    Christoph Hellwig <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -W:    http://www.linux-mm.org
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
 -F:    include/linux/vmalloc.h
 -F:    mm/vmalloc.c
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
 +F:    drivers/devfreq/tegra30-devfreq.c
  
  MEMORY HOT(UN)PLUG
  M:    David Hildenbrand <[email protected]>
@@@ -13721,24 -13440,6 +13721,24 @@@ F: include/linux/memory_hotplug.
  F:    mm/memory_hotplug.c
  F:    tools/testing/selftests/memory-hotplug/
  
 +MEMORY MANAGEMENT
 +M:    Andrew Morton <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +W:    http://www.linux-mm.org
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
 +T:    quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
 +F:    include/linux/gfp.h
 +F:    include/linux/gfp_types.h
 +F:    include/linux/memory_hotplug.h
 +F:    include/linux/mm.h
 +F:    include/linux/mmzone.h
 +F:    include/linux/pagewalk.h
 +F:    include/trace/events/ksm.h
 +F:    mm/
 +F:    tools/mm/
 +F:    tools/testing/selftests/mm/
 +
  MEMORY TECHNOLOGY DEVICES (MTD)
  M:    Miquel Raynal <[email protected]>
  M:    Richard Weinberger <[email protected]>
@@@ -13840,7 -13541,6 +13840,7 @@@ T:   git git://git.kernel.org/pub/scm/lin
  F:    Documentation/ABI/stable/sysfs-bus-mhi
  F:    Documentation/mhi/
  F:    drivers/bus/mhi/
 +F:    drivers/pci/endpoint/functions/pci-epf-mhi.c
  F:    include/linux/mhi.h
  
  MICROBLAZE ARCHITECTURE
@@@ -13850,12 -13550,6 +13850,12 @@@ W: http://www.monstr.eu/fdt
  T:    git git://git.monstr.eu/linux-2.6-microblaze.git
  F:    arch/microblaze/
  
 +MICROBLAZE TMR INJECT
 +M:    Appana Durga Kedareswara rao <[email protected]>
 +S:    Supported
 +F:    Documentation/devicetree/bindings/misc/xlnx,tmr-inject.yaml
 +F:    drivers/misc/xilinx_tmr_inject.c
 +
  MICROBLAZE TMR MANAGER
  M:    Appana Durga Kedareswara rao <[email protected]>
  S:    Supported
@@@ -13863,6 -13557,12 +13863,6 @@@ F:  Documentation/ABI/testing/sysfs-driv
  F:    Documentation/devicetree/bindings/misc/xlnx,tmr-manager.yaml
  F:    drivers/misc/xilinx_tmr_manager.c
  
 -MICROBLAZE TMR INJECT
 -M:    Appana Durga Kedareswara rao <[email protected]>
 -S:    Supported
 -F:    Documentation/devicetree/bindings/misc/xlnx,tmr-inject.yaml
 -F:    drivers/misc/xilinx_tmr_inject.c
 -
  MICROCHIP AT91 DMA DRIVERS
  M:    Ludovic Desroches <[email protected]>
  M:    Tudor Ambarus <[email protected]>
@@@ -13897,13 -13597,9 +13897,13 @@@ F: Documentation/devicetree/bindings/se
  F:    drivers/spi/spi-at91-usart.c
  
  MICROCHIP AUDIO ASOC DRIVERS
 -M:    Codrin Ciubotariu <[email protected]>
 +M:    Claudiu Beznea <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
 +F:    Documentation/devicetree/bindings/sound/atmel*
 +F:    Documentation/devicetree/bindings/sound/axentia,tse850-pcm5142.txt
 +F:    Documentation/devicetree/bindings/sound/microchip,sama7g5-*
 +F:    Documentation/devicetree/bindings/sound/mikroe,mikroe-proto.txt
  F:    sound/soc/atmel
  
  MICROCHIP CSI2DC DRIVER
@@@ -13920,10 -13616,9 +13920,10 @@@ S: Maintaine
  F:    drivers/crypto/atmel-ecc.*
  
  MICROCHIP EIC DRIVER
 -M:    Claudiu Beznea <claudiu.beznea@microchip.com>
 +M:    Claudiu Beznea <claudiu.beznea@tuxon.dev>
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
 +F:    Documentation/devicetree/bindings/interrupt-controller/microchip,sama7g5-eic.yaml
  F:    drivers/irqchip/irq-mchp-eic.c
  
  MICROCHIP I2C DRIVER
@@@ -13939,10 -13634,10 +13939,10 @@@ L:        [email protected]
  S:    Supported
  F:    Documentation/devicetree/bindings/media/atmel,isc.yaml
  F:    Documentation/devicetree/bindings/media/microchip,xisc.yaml
 -F:    drivers/staging/media/deprecated/atmel/atmel-isc*
 -F:    drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
  F:    drivers/media/platform/microchip/microchip-isc*
  F:    drivers/media/platform/microchip/microchip-sama*-isc*
 +F:    drivers/staging/media/deprecated/atmel/atmel-isc*
 +F:    drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
  F:    include/linux/atmel-isc-media.h
  
  MICROCHIP ISI DRIVER
@@@ -13964,6 -13659,13 +13964,6 @@@ F:  include/linux/dsa/ksz_common.
  F:    include/linux/platform_data/microchip-ksz.h
  F:    net/dsa/tag_ksz.c
  
 -MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
 -M:    Arun Ramadoss <[email protected]>
 -R:    [email protected]
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/net/phy/microchip_t1.c
 -
  MICROCHIP LAN743X ETHERNET DRIVER
  M:    Bryan Whitehead <[email protected]>
  M:    [email protected]
  S:    Maintained
  F:    drivers/net/ethernet/microchip/lan743x_*
  
 +MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
 +M:    Arun Ramadoss <[email protected]>
 +R:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/net/phy/microchip_t1.c
 +
  MICROCHIP LAN966X ETHERNET DRIVER
  M:    Horatiu Vultur <[email protected]>
  M:    [email protected]
@@@ -13993,7 -13688,7 +13993,7 @@@ F:   drivers/video/fbdev/atmel_lcdfb.
  F:    include/video/atmel_lcdc.h
  
  MICROCHIP MCP16502 PMIC DRIVER
 -M:    Claudiu Beznea <claudiu.beznea@microchip.com>
 +M:    Claudiu Beznea <claudiu.beznea@tuxon.dev>
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
  F:    Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
@@@ -14019,23 -13714,21 +14019,23 @@@ S:        Supporte
  F:    Documentation/devicetree/bindings/mtd/atmel-nand.txt
  F:    drivers/mtd/nand/raw/atmel/*
  
 +MICROCHIP OTPC DRIVER
 +M:    Claudiu Beznea <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Supported
 +F:    Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
 +F:    drivers/nvmem/microchip-otpc.c
 +F:    include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
 +
  MICROCHIP PCI1XXXX GP DRIVER
 +M:    Vaibhaav Ram T.L <[email protected]>
  M:    Kumaravel Thiagarajan <[email protected]>
  L:    [email protected]
  S:    Supported
  F:    drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
  F:    drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
  F:    drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
 -
 -MICROCHIP OTPC DRIVER
 -M:    Claudiu Beznea <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Supported
 -F:    Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
 -F:    drivers/nvmem/microchip-otpc.c
 -F:    include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
 +F:    drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_otpe2p.c
  
  MICROCHIP PCI1XXXX I2C DRIVER
  M:    Tharun Kumar P <[email protected]>
  S:    Maintained
  F:    drivers/tty/serial/8250/8250_pci1xxxx.c
  
 +MICROCHIP POLARFIRE FPGA DRIVERS
 +M:    Conor Dooley <[email protected]>
 +R:    Vladimir Georgiev <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
 +F:    drivers/fpga/microchip-spi.c
 +
  MICROCHIP PWM DRIVER
 -M:    Claudiu Beznea <claudiu.beznea@microchip.com>
 +M:    Claudiu Beznea <claudiu.beznea@tuxon.dev>
  L:    [email protected] (moderated for non-subscribers)
  L:    [email protected]
  S:    Supported
@@@ -14077,36 -13762,27 +14077,36 @@@ F:        drivers/iio/adc/at91-sama5d2_adc.
  F:    include/dt-bindings/iio/adc/at91-sama5d2_adc.h
  
  MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
 -M:    Claudiu Beznea <claudiu.beznea@microchip.com>
 +M:    Claudiu Beznea <claudiu.beznea@tuxon.dev>
  S:    Supported
 +F:    Documentation/devicetree/bindings/power/reset/atmel,sama5d2-shdwc.yaml
  F:    drivers/power/reset/at91-sama5d2_shdwc.c
  
 +MICROCHIP SOC DRIVERS
 +M:    Conor Dooley <[email protected]>
 +S:    Supported
 +T:    git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
 +F:    drivers/soc/microchip/
 +
  MICROCHIP SPI DRIVER
 -M:    Tudor Ambarus <[email protected]>
 +M:    Ryan Wanner <[email protected]>
  S:    Supported
  F:    drivers/spi/spi-atmel.*
  
  MICROCHIP SSC DRIVER
 -M:    Codrin Ciubotariu <[email protected]>
 +M:    Claudiu Beznea <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
 +F:    Documentation/devicetree/bindings/misc/atmel-ssc.txt
  F:    drivers/misc/atmel-ssc.c
  F:    include/linux/atmel-ssc.h
  
 -MICROCHIP SOC DRIVERS
 -M:    Conor Dooley <[email protected]>
 -S:    Supported
 -T:    git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
 -F:    drivers/soc/microchip/
 +Microchip Timer Counter Block (TCB) Capture Driver
 +M:    Kamel Bouhara <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/counter/microchip-tcb-capture.c
  
  MICROCHIP USB251XB DRIVER
  M:    Richard Leitner <[email protected]>
@@@ -14123,7 -13799,7 +14123,7 @@@ F:   drivers/usb/gadget/udc/atmel_usba_ud
  
  MICROCHIP WILC1000 WIFI DRIVER
  M:    Ajay Singh <[email protected]>
 -M:    Claudiu Beznea <claudiu.beznea@microchip.com>
 +M:    Claudiu Beznea <claudiu.beznea@tuxon.dev>
  L:    [email protected]
  S:    Supported
  F:    drivers/net/wireless/microchip/wilc1000/
  S:    Supported
  F:    drivers/platform/surface/surfacepro3_button.c
  
 +MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
 +M:    Maximilian Luz <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/platform/surface/surface_aggregator_hub.c
 +
  MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
  M:    Maximilian Luz <[email protected]>
  L:    [email protected]
@@@ -14244,6 -13914,12 +14244,6 @@@ F:  include/linux/surface_acpi_notify.
  F:    include/linux/surface_aggregator/
  F:    include/uapi/linux/surface_aggregator/
  
 -MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
 -M:    Maximilian Luz <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/platform/surface/surface_aggregator_hub.c
 -
  MICROTEK X6 SCANNER
  M:    Oliver Neukum <[email protected]>
  S:    Maintained
@@@ -14253,12 -13929,12 +14253,12 @@@ MIKROTIK CRS3XX 98DX3236 BOARD SUPPOR
  M:    Luka Kovacic <[email protected]>
  M:    Luka Perkov <[email protected]>
  S:    Maintained
 -F:    arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
 -F:    arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
 -F:    arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
 -F:    arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
 -F:    arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
 -F:    arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
 +F:    arch/arm/boot/dts/marvell/armada-xp-crs305-1g-4s-bit.dts
 +F:    arch/arm/boot/dts/marvell/armada-xp-crs305-1g-4s.dts
 +F:    arch/arm/boot/dts/marvell/armada-xp-crs326-24g-2s-bit.dts
 +F:    arch/arm/boot/dts/marvell/armada-xp-crs326-24g-2s.dts
 +F:    arch/arm/boot/dts/marvell/armada-xp-crs328-4c-20s-4s-bit.dts
 +F:    arch/arm/boot/dts/marvell/armada-xp-crs328-4c-20s-4s.dts
  
  MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
  M:    Sakari Ailus <[email protected]>
@@@ -14281,7 -13957,7 +14281,7 @@@ W:   http://www.linux-mips.org
  Q:    https://patchwork.kernel.org/project/linux-mips/list/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
  F:    Documentation/devicetree/bindings/mips/
 -F:    Documentation/mips/
 +F:    Documentation/arch/mips/
  F:    arch/mips/
  F:    drivers/platform/mips/
  F:    include/dt-bindings/mips/
  S:    Maintained
  F:    arch/mips/include/asm/mach-loongson32/
  F:    arch/mips/loongson32/
 -F:    drivers/*/*/*loongson1*
  F:    drivers/*/*loongson1*
  
  MIPS/LOONGSON2EF ARCHITECTURE
@@@ -14361,7 -14038,7 +14361,7 @@@ R:   Lubomir Rintel <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Odd Fixes
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
 -F:    arch/arm/boot/dts/mmp*
 +F:    arch/arm/boot/dts/marvell/mmp*
  F:    arch/arm/mach-mmp/
  F:    include/linux/soc/mmp/
  
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
 +F:    include/linux/kmod.h
  F:    include/linux/module.h
  F:    kernel/module/
 +F:    lib/test_kmod.c
  F:    scripts/module*
 +F:    tools/testing/selftests/kmod/
  
  MONOLITHIC POWER SYSTEM PMIC DRIVER
  M:    Saravanan Sekar <[email protected]>
@@@ -14468,13 -14142,6 +14468,13 @@@ S: Odd Fixe
  F:    Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
  F:    drivers/net/ieee802154/mrf24j40.c
  
 +MSI EC DRIVER
 +M:    Nikita Kravets <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +W:    https://github.com/BeardOverflow/msi-ec
 +F:    drivers/platform/x86/msi-ec.*
 +
  MSI LAPTOP SUPPORT
  M:    "Lee, Chun-Yi" <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    drivers/mtd/devices/docg3*
  
 -MT9M032 APTINA SENSOR DRIVER
 -M:    Laurent Pinchart <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -T:    git git://linuxtv.org/media_tree.git
 -F:    drivers/media/i2c/mt9m032.c
 -F:    include/media/i2c/mt9m032.h
 -
  MT9P031 APTINA CAMERA SENSOR
  M:    Laurent Pinchart <[email protected]>
  L:    [email protected]
@@@ -14528,6 -14203,14 +14528,6 @@@ F:  Documentation/devicetree/bindings/me
  F:    drivers/media/i2c/mt9p031.c
  F:    include/media/i2c/mt9p031.h
  
 -MT9T001 APTINA CAMERA SENSOR
 -M:    Laurent Pinchart <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -T:    git git://linuxtv.org/media_tree.git
 -F:    drivers/media/i2c/mt9t001.c
 -F:    include/media/i2c/mt9t001.h
 -
  MT9T112 APTINA CAMERA SENSOR
  M:    Jacopo Mondi <[email protected]>
  L:    [email protected]
@@@ -14752,7 -14435,7 +14752,7 @@@ F:   drivers/rtc/rtc-ntxec.
  F:    include/linux/mfd/ntxec.h
  
  NETRONOME ETHERNET DRIVERS
 -M:    Simon Horman <simon.horman@corigine.com>
 +M:    Louis Peens <louis.peens@corigine.com>
  R:    Jakub Kicinski <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -14799,7 -14482,6 +14799,7 @@@ F:   include/linux/inetdevice.
  F:    include/linux/netdevice.h
  F:    include/uapi/linux/if_*
  F:    include/uapi/linux/netdevice.h
 +X:    drivers/net/wireless/
  
  NETWORKING DRIVERS (WIRELESS)
  M:    Kalle Valo <[email protected]>
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
  F:    Documentation/core-api/netlink.rst
 +F:    Documentation/netlink/
  F:    Documentation/networking/
  F:    Documentation/process/maintainer-netdev.rst
  F:    Documentation/userspace-api/netlink/
@@@ -14856,7 -14537,6 +14856,7 @@@ F:   lib/random32.
  F:    net/
  F:    tools/net/
  F:    tools/testing/selftests/net/
 +X:    net/bluetooth/
  
  NETWORKING [IPSEC]
  M:    Steffen Klassert <[email protected]>
@@@ -14901,7 -14581,7 +14901,7 @@@ NETWORKING [LABELED] (NetLabel, Labele
  M:    Paul Moore <[email protected]>
  L:    [email protected]
  L:    [email protected]
 -S:    Maintained
 +S:    Supported
  W:    https://github.com/netlabel
  F:    Documentation/netlabel/
  F:    include/net/calipso.h
@@@ -14915,16 -14595,6 +14915,16 @@@ F: net/netfilter/xt_CONNSECMARK.
  F:    net/netfilter/xt_SECMARK.c
  F:    net/netlabel/
  
 +NETWORKING [MACSEC]
 +M:    Sabrina Dubroca <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/net/macsec.c
 +F:    include/net/macsec.h
 +F:    include/uapi/linux/if_macsec.h
 +K:    macsec
 +K:    \bmdo_
 +
  NETWORKING [MPTCP]
  M:    Matthieu Baerts <[email protected]>
  M:    Mat Martineau <[email protected]>
  S:    Maintained
  W:    https://github.com/multipath-tcp/mptcp_net-next/wiki
  B:    https://github.com/multipath-tcp/mptcp_net-next/issues
 +T:    git https://github.com/multipath-tcp/mptcp_net-next.git export-net
 +T:    git https://github.com/multipath-tcp/mptcp_net-next.git export
  F:    Documentation/networking/mptcp-sysctl.rst
  F:    include/net/mptcp.h
  F:    include/trace/events/mptcp.h
  S:    Maintained
  F:    Documentation/devicetree/bindings/net/nfc/
  F:    drivers/nfc/
 -F:    include/linux/platform_data/nfcmrvl.h
  F:    include/net/nfc/
  F:    include/uapi/linux/nfc.h
  F:    net/nfc/
  S:    Maintained
  W:    http://client.linux-nfs.org
  T:    git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
 +F:    Documentation/filesystems/nfs/
  F:    fs/lockd/
  F:    fs/nfs/
  F:    fs/nfs_common/
@@@ -15025,6 -14693,7 +15025,6 @@@ F:   include/linux/sunrpc
  F:    include/uapi/linux/nfs*
  F:    include/uapi/linux/sunrpc/
  F:    net/sunrpc/
 -F:    Documentation/filesystems/nfs/
  
  NILFS2 FILESYSTEM
  M:    Ryusuke Konishi <[email protected]>
@@@ -15109,18 -14778,11 +15109,18 @@@ F:        include/linux/power/bq27xxx_battery.
  
  NOLIBC HEADER FILE
  M:    Willy Tarreau <[email protected]>
 +M:    Thomas Weißschuh <[email protected]>
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
  F:    tools/include/nolibc/
  F:    tools/testing/selftests/nolibc/
  
 +NOVATEK NVT-TS I2C TOUCHSCREEN DRIVER
 +M:    Hans de Goede <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/input/touchscreen/novatek-nvt-ts.c
 +
  NSDEPS
  M:    Matthias Maennich <[email protected]>
  S:    Maintained
@@@ -15141,7 -14803,7 +15141,7 @@@ M:   Allen Hubbe <[email protected]
  L:    [email protected]
  S:    Supported
  W:    https://github.com/jonmason/ntb/wiki
 -T:    git git://github.com/jonmason/ntb.git
 +T:    git https://github.com/jonmason/ntb.git
  F:    drivers/net/ntb_netdev.c
  F:    drivers/ntb/
  F:    drivers/pci/endpoint/functions/pci-epf-*ntb.c
@@@ -15165,7 -14827,6 +15165,7 @@@ F:   drivers/ntb/hw/intel
  
  NTFS FILESYSTEM
  M:    Anton Altaparmakov <[email protected]>
 +R:    Namjae Jeon <[email protected]>
  L:    [email protected]
  S:    Supported
  W:    http://www.tuxera.com/
@@@ -15230,6 -14891,12 +15230,6 @@@ F:  drivers/nvme/target/auth.
  F:    drivers/nvme/target/fabrics-cmd-auth.c
  F:    include/linux/nvme-auth.h
  
 -NVM EXPRESS HARDWARE MONITORING SUPPORT
 -M:    Guenter Roeck <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    drivers/nvme/host/hwmon.c
 -
  NVM EXPRESS FC TRANSPORT DRIVERS
  M:    James Smart <[email protected]>
  L:    [email protected]
@@@ -15240,12 -14907,6 +15240,12 @@@ F: drivers/nvme/target/fcloop.
  F:    include/linux/nvme-fc-driver.h
  F:    include/linux/nvme-fc.h
  
 +NVM EXPRESS HARDWARE MONITORING SUPPORT
 +M:    Guenter Roeck <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    drivers/nvme/host/hwmon.c
 +
  NVM EXPRESS TARGET DRIVER
  M:    Christoph Hellwig <[email protected]>
  M:    Sagi Grimberg <[email protected]>
@@@ -15266,13 -14927,6 +15266,13 @@@ F: drivers/nvmem
  F:    include/linux/nvmem-consumer.h
  F:    include/linux/nvmem-provider.h
  
 +NXP BLUETOOTH WIRELESS DRIVERS
 +M:    Amitkumar Karwar <[email protected]>
 +M:    Neeraj Kale <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/net/bluetooth/nxp,88w8987-bt.yaml
 +F:    drivers/bluetooth/btnxpuart.c
 +
  NXP C45 TJA11XX PHY DRIVER
  M:    Radu Pirea <[email protected]>
  L:    [email protected]
@@@ -15298,33 -14952,16 +15298,33 @@@ F:        drivers/iio/gyro/fxas21002c_core.
  F:    drivers/iio/gyro/fxas21002c_i2c.c
  F:    drivers/iio/gyro/fxas21002c_spi.c
  
 -NXP i.MX CLOCK DRIVERS
 -M:    Abel Vesa <[email protected]>
 -R:    Peng Fan <[email protected]>
 -L:    [email protected]
 +NXP i.MX 7D/6SX/6UL/93 AND VF610 ADC DRIVER
 +M:    Haibo Chen <[email protected]>
 +L:    [email protected]
  L:    [email protected]
  S:    Maintained
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
 -F:    Documentation/devicetree/bindings/clock/imx*
 -F:    drivers/clk/imx/
 -F:    include/dt-bindings/clock/imx*
 +F:    Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
 +F:    Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
 +F:    Documentation/devicetree/bindings/iio/adc/nxp,imx93-adc.yaml
 +F:    drivers/iio/adc/imx7d_adc.c
 +F:    drivers/iio/adc/imx93_adc.c
 +F:    drivers/iio/adc/vf610_adc.c
 +
 +NXP i.MX 8M ISI DRIVER
 +M:    Laurent Pinchart <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
 +F:    drivers/media/platform/nxp/imx8-isi/
 +
 +NXP i.MX 8MP DW100 V4L2 DRIVER
 +M:    Xavier Roumegue <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/media/nxp,dw100.yaml
 +F:    Documentation/userspace-api/media/drivers/dw100.rst
 +F:    drivers/media/platform/nxp/dw100/
 +F:    include/uapi/linux/dw100.h
  
  NXP i.MX 8MQ DCSS DRIVER
  M:    Laurentiu Palcu <[email protected]>
@@@ -15343,24 -14980,17 +15343,24 @@@ S:        Maintaine
  F:    Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
  F:    drivers/iio/adc/imx8qxp-adc.c
  
 -NXP i.MX 7D/6SX/6UL/93 AND VF610 ADC DRIVER
 -M:    Haibo Chen <[email protected]>
 -L:    [email protected]
 +NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
 +M:    Mirela Rabulea <[email protected]>
 +R:    NXP Linux Team <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
 +F:    drivers/media/platform/nxp/imx-jpeg
 +
 +NXP i.MX CLOCK DRIVERS
 +M:    Abel Vesa <[email protected]>
 +R:    Peng Fan <[email protected]>
 +L:    [email protected]
  L:    [email protected]
  S:    Maintained
 -F:    Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
 -F:    Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
 -F:    Documentation/devicetree/bindings/iio/adc/nxp,imx93-adc.yaml
 -F:    drivers/iio/adc/imx7d_adc.c
 -F:    drivers/iio/adc/imx93_adc.c
 -F:    drivers/iio/adc/vf610_adc.c
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
 +F:    Documentation/devicetree/bindings/clock/imx*
 +F:    drivers/clk/imx/
 +F:    include/dt-bindings/clock/imx*
  
  NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
  M:    Jagan Teki <[email protected]>
@@@ -15406,17 -15036,34 +15406,17 @@@ S:        Maintaine
  F:    Documentation/devicetree/bindings/sound/tfa9879.txt
  F:    sound/soc/codecs/tfa9879*
  
 -NXP/Goodix TFA989X (TFA1) DRIVER
 -M:    Stephan Gerhold <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
 -F:    sound/soc/codecs/tfa989x.c
 -
  NXP-NCI NFC DRIVER
  S:    Orphan
  F:    Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
  F:    drivers/nfc/nxp-nci
  
 -NXP i.MX 8MP DW100 V4L2 DRIVER
 -M:    Xavier Roumegue <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/media/nxp,dw100.yaml
 -F:    Documentation/userspace-api/media/drivers/dw100.rst
 -F:    drivers/media/platform/nxp/dw100/
 -F:    include/uapi/linux/dw100.h
 -
 -NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
 -M:    Mirela Rabulea <[email protected]>
 -R:    NXP Linux Team <[email protected]>
 -L:    [email protected]
 +NXP/Goodix TFA989X (TFA1) DRIVER
 +M:    Stephan Gerhold <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 -F:    Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
 -F:    drivers/media/platform/nxp/imx-jpeg
 +F:    Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
 +F:    sound/soc/codecs/tfa989x.c
  
  NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
  M:    Jonas Malaco <[email protected]>
@@@ -15444,8 -15091,8 +15444,8 @@@ OBJTOO
  M:    Josh Poimboeuf <[email protected]>
  M:    Peter Zijlstra <[email protected]>
  S:    Supported
 +F:    include/linux/objtool*.h
  F:    tools/objtool/
 -F:    include/linux/objtool.h
  
  OCELOT ETHERNET SWITCH DRIVER
  M:    Vladimir Oltean <[email protected]>
@@@ -15504,13 -15151,19 +15504,13 @@@ M:        Tony Lindgren <[email protected]
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
 -F:    arch/arm/boot/dts/*am3*
 -F:    arch/arm/boot/dts/*am4*
 -F:    arch/arm/boot/dts/*am5*
 -F:    arch/arm/boot/dts/*dra7*
 -F:    arch/arm/boot/dts/*omap*
 -F:    arch/arm/boot/dts/logicpd-som-lv*
 -F:    arch/arm/boot/dts/logicpd-torpedo*
 +F:    arch/arm/boot/dts/ti/omap/
  
  OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
  L:    [email protected]
  L:    [email protected]
  S:    Orphan
 -F:    Documentation/arm/omap/dss.rst
 +F:    Documentation/arch/arm/omap/dss.rst
  F:    drivers/video/fbdev/omap2/
  
  OMAP FRAMEBUFFER SUPPORT
@@@ -15612,7 -15265,7 +15612,7 @@@ OMAP/NEWFLOW NANOBONE MACHINE SUPPOR
  M:    Mark Jackson <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    arch/arm/boot/dts/am335x-nano.dts
 +F:    arch/arm/boot/dts/ti/omap/am335x-nano.dts
  
  OMAP1 SUPPORT
  M:    Aaro Koskinen <[email protected]>
@@@ -15636,11 -15289,9 +15636,11 @@@ W: http://www.muru.com/linux/omap
  W:    http://linux.omap.com/
  Q:    http://patchwork.kernel.org/project/linux-omap/list/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
 +F:    Documentation/devicetree/bindings/arm/ti/omap.yaml
  F:    arch/arm/configs/omap2plus_defconfig
  F:    arch/arm/mach-omap2/
  F:    drivers/bus/ti-sysc.c
 +F:    drivers/gpio/gpio-tps65219.c
  F:    drivers/i2c/busses/i2c-omap.c
  F:    drivers/irqchip/irq-omap-intc.c
  F:    drivers/mfd/*omap*.c
@@@ -15672,23 -15323,29 +15672,23 @@@ S:        Maintaine
  F:    Documentation/filesystems/omfs.rst
  F:    fs/omfs/
  
 -OMNIKEY CARDMAN 4000 DRIVER
 -M:    Harald Welte <[email protected]>
 -S:    Maintained
 -F:    drivers/char/pcmcia/cm4000_cs.c
 -F:    include/linux/cm4000_cs.h
 -F:    include/uapi/linux/cm4000_cs.h
 -
 -OMNIKEY CARDMAN 4040 DRIVER
 -M:    Harald Welte <[email protected]>
 -S:    Maintained
 -F:    drivers/char/pcmcia/cm4040_cs.*
 -
  OMNIVISION OG01A1B SENSOR DRIVER
 -M:    Shawn Tu <shawnx.tu@intel.com>
 +M:    Sakari Ailus <sakari.ailus@linux.intel.com>
  L:    [email protected]
  S:    Maintained
  F:    drivers/media/i2c/og01a1b.c
  
 -OMNIVISION OV02A10 SENSOR DRIVER
 -M:    Dongchun Zhu <dongchun.zhu@mediatek.com>
 +OMNIVISION OV01A10 SENSOR DRIVER
 +M:    Bingbu Cao <bingbu.cao@intel.com>
  L:    [email protected]
  S:    Maintained
  T:    git git://linuxtv.org/media_tree.git
 +F:    drivers/media/i2c/ov01a10.c
 +
 +OMNIVISION OV02A10 SENSOR DRIVER
 +L:    [email protected]
 +S:    Orphan
 +T:    git git://linuxtv.org/media_tree.git
  F:    Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
  F:    drivers/media/i2c/ov02a10.c
  
@@@ -15722,7 -15379,6 +15722,7 @@@ F:   drivers/media/i2c/ov13b10.
  
  OMNIVISION OV2680 SENSOR DRIVER
  M:    Rui Miguel Silva <[email protected]>
 +M:    Hans de Goede <[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git git://linuxtv.org/media_tree.git
@@@ -15734,12 -15390,11 +15734,12 @@@ M:        Shunqian Zheng <[email protected]
  L:    [email protected]
  S:    Maintained
  T:    git git://linuxtv.org/media_tree.git
 +F:    Documentation/devicetree/bindings/media/i2c/ovti,ov2685.yaml
  F:    drivers/media/i2c/ov2685.c
  
  OMNIVISION OV2740 SENSOR DRIVER
  M:    Tianshu Qiu <[email protected]>
 -R:    Shawn Tu <shawnx.tu@intel.com>
 +R:    Sakari Ailus <sakari.ailus@linux.intel.com>
  R:    Bingbu Cao <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -15771,7 -15426,7 +15771,7 @@@ F:   Documentation/devicetree/bindings/me
  F:    drivers/media/i2c/ov5647.c
  
  OMNIVISION OV5670 SENSOR DRIVER
 -M:    Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
 +M:    Sakari Ailus <sakari.ailus@linux.intel.com>
  L:    [email protected]
  S:    Maintained
  T:    git git://linuxtv.org/media_tree.git
@@@ -15779,7 -15434,7 +15779,7 @@@ F:   Documentation/devicetree/bindings/me
  F:    drivers/media/i2c/ov5670.c
  
  OMNIVISION OV5675 SENSOR DRIVER
 -M:    Shawn Tu <shawnx.tu@intel.com>
 +M:    Sakari Ailus <sakari.ailus@linux.intel.com>
  L:    [email protected]
  S:    Maintained
  T:    git git://linuxtv.org/media_tree.git
@@@ -15818,14 -15473,15 +15818,14 @@@ F:        drivers/media/i2c/ov772x.
  F:    include/media/i2c/ov772x.h
  
  OMNIVISION OV7740 SENSOR DRIVER
 -M:    Wenyou Yang <[email protected]>
  L:    [email protected]
 -S:    Maintained
 +S:    Orphan
  T:    git git://linuxtv.org/media_tree.git
  F:    Documentation/devicetree/bindings/media/i2c/ov7740.txt
  F:    drivers/media/i2c/ov7740.c
  
  OMNIVISION OV8856 SENSOR DRIVER
 -M:    Dongchun Zhu <dongchun.zhu@mediatek.com>
 +M:    Sakari Ailus <[email protected].com>
  L:    [email protected]
  S:    Maintained
  T:    git git://linuxtv.org/media_tree.git
  S:    Maintained
  F:    drivers/hwmon/oxp-sensors.c
  
 +ONIE TLV NVMEM LAYOUT DRIVER
 +M:    Miquel Raynal <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
 +F:    drivers/nvmem/layouts/onie-tlv.c
 +
  ONION OMEGA2+ BOARD
  M:    Harvey Hunt <[email protected]>
  L:    [email protected]
@@@ -15944,8 -15594,8 +15944,8 @@@ M:   Rob Herring <[email protected]
  M:    Frank Rowand <[email protected]>
  L:    [email protected]
  S:    Maintained
 -C:    irc://irc.libera.chat/devicetree
  W:    http://www.devicetree.org/
 +C:    irc://irc.libera.chat/devicetree
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
  F:    Documentation/ABI/testing/sysfs-firmware-ofw
  F:    drivers/of/
@@@ -15958,11 -15608,10 +15958,11 @@@ K:        of_overlay_remov
  OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
  M:    Rob Herring <[email protected]>
  M:    Krzysztof Kozlowski <[email protected]>
 +M:    Conor Dooley <[email protected]>
  L:    [email protected]
  S:    Maintained
 -C:    irc://irc.libera.chat/devicetree
  Q:    http://patchwork.ozlabs.org/project/devicetree-bindings/list/
 +C:    irc://irc.libera.chat/devicetree
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
  F:    Documentation/devicetree/
  F:    arch/*/boot/dts/
  S:    Maintained
  W:    http://openrisc.io
  T:    git https://github.com/openrisc/linux.git
 -F:    Documentation/devicetree/bindings/openrisc/
  F:    Documentation/arch/openrisc/
 +F:    Documentation/devicetree/bindings/openrisc/
  F:    arch/openrisc/
  F:    drivers/irqchip/irq-ompic.c
  F:    drivers/irqchip/irq-or1k-*
@@@ -16032,7 -15681,7 +16032,7 @@@ ORACLE CLUSTER FILESYSTEM 2 (OCFS2
  M:    Mark Fasheh <[email protected]>
  M:    Joel Becker <[email protected]>
  M:    Joseph Qi <[email protected]>
 -L:    ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
 +L:    ocfs2-devel@lists.linux.dev
  S:    Supported
  W:    http://ocfs2.wiki.kernel.org
  F:    Documentation/filesystems/dlmfs.rst
@@@ -16067,7 -15716,6 +16067,7 @@@ F:   include/media/i2c/ov2659.
  
  OVERLAY FILESYSTEM
  M:    Miklos Szeredi <[email protected]>
 +M:    Amir Goldstein <[email protected]>
  L:    [email protected]
  S:    Supported
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
@@@ -16124,7 -15772,7 +16124,7 @@@ M:   Ilias Apalodimas <ilias.apalodimas@l
  L:    [email protected]
  S:    Supported
  F:    Documentation/networking/page_pool.rst
 -F:    include/net/page_pool.h
 +F:    include/net/page_pool/
  F:    include/trace/events/page_pool.h
  F:    net/core/page_pool.c
  
@@@ -16170,7 -15818,7 +16170,7 @@@ F:   include/uapi/linux/ppdev.
  
  PARAVIRT_OPS INTERFACE
  M:    Juergen Gross <[email protected]>
 -M:    Srivatsa S. Bhat (VMware) <[email protected]>
 +R:    Ajay Kaher <[email protected]>
  R:    Alexey Makhalov <[email protected]>
  R:    VMware PV-Drivers Reviewers <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    drivers/pci/controller/dwc/*layerscape*
  
 +PCI DRIVER FOR FU740
 +M:    Paul Walmsley <[email protected]>
 +M:    Greentime Hu <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
 +F:    drivers/pci/controller/dwc/pcie-fu740.c
 +
  PCI DRIVER FOR GENERIC OF HOSTS
  M:    Will Deacon <[email protected]>
  L:    [email protected]
@@@ -16334,11 -15974,17 +16334,11 @@@ M:        Lucas Stach <[email protected]
  L:    [email protected]
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
 +F:    Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-common.yaml
 +F:    Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.yaml
  F:    Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
  F:    drivers/pci/controller/dwc/*imx6*
  
 -PCI DRIVER FOR FU740
 -M:    Paul Walmsley <[email protected]>
 -M:    Greentime Hu <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
 -F:    drivers/pci/controller/dwc/pcie-fu740.c
 -
  PCI DRIVER FOR INTEL IXP4XX
  M:    Linus Walleij <[email protected]>
  S:    Maintained
@@@ -16416,11 -16062,10 +16416,11 @@@ F:        drivers/pci/controller/dwc/pci-exyno
  PCI DRIVER FOR SYNOPSYS DESIGNWARE
  M:    Jingoo Han <[email protected]>
  M:    Gustavo Pimentel <[email protected]>
 +M:    Manivannan Sadhasivam <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
  F:    Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
 +F:    Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
  F:    drivers/pci/controller/dwc/*designware*
  
  PCI DRIVER FOR TI DRA7XX/J721E
@@@ -16440,14 -16085,6 +16440,14 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
  F:    drivers/pci/controller/pci-v3-semi.c
  
 +PCI DRIVER FOR XILINX VERSAL CPM
 +M:    Bharat Kumar Gogada <[email protected]>
 +M:    Michal Simek <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
 +F:    drivers/pci/controller/pcie-xilinx-cpm.c
 +
  PCI ENDPOINT SUBSYSTEM
  M:    Lorenzo Pieralisi <[email protected]>
  M:    Krzysztof WilczyÅ„ski <[email protected]>
  S:    Supported
  F:    Documentation/PCI/pci-error-recovery.rst
  
 -PCI PEER-TO-PEER DMA (P2PDMA)
 -M:    Bjorn Helgaas <[email protected]>
 -M:    Logan Gunthorpe <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -Q:    https://patchwork.kernel.org/project/linux-pci/list/
 -B:    https://bugzilla.kernel.org
 -C:    irc://irc.oftc.net/linux-pci
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
 -F:    Documentation/driver-api/pci/p2pdma.rst
 -F:    drivers/pci/p2pdma.c
 -F:    include/linux/pci-p2pdma.h
 -
  PCI MSI DRIVER FOR ALTERA MSI IP
  M:    Joyce Ooi <[email protected]>
  L:    [email protected]
@@@ -16515,19 -16165,6 +16515,19 @@@ F: drivers/pci/controller
  F:    drivers/pci/pci-bridge-emul.c
  F:    drivers/pci/pci-bridge-emul.h
  
 +PCI PEER-TO-PEER DMA (P2PDMA)
 +M:    Bjorn Helgaas <[email protected]>
 +M:    Logan Gunthorpe <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +Q:    https://patchwork.kernel.org/project/linux-pci/list/
 +B:    https://bugzilla.kernel.org
 +C:    irc://irc.oftc.net/linux-pci
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
 +F:    Documentation/driver-api/pci/p2pdma.rst
 +F:    drivers/pci/p2pdma.c
 +F:    include/linux/pci-p2pdma.h
 +
  PCI SUBSYSTEM
  M:    Bjorn Helgaas <[email protected]>
  L:    [email protected]
@@@ -16607,7 -16244,7 +16607,7 @@@ F:   Documentation/devicetree/bindings/pc
  F:    drivers/pci/controller/dwc/pcie-keembay.c
  
  PCIE DRIVER FOR INTEL LGM GW SOC
 -M:    Rahul Tanwar <rtanwar@maxlinear.com>
 +M:    Chuanhua Lei <lchuanhua@maxlinear.com>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
  S:    Maintained
  F:    drivers/pci/controller/dwc/pcie-qcom.c
  
 -PCIE ENDPOINT DRIVER FOR QUALCOMM
 -M:    Manivannan Sadhasivam <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
 -F:    drivers/pci/controller/dwc/pcie-qcom-ep.c
 -
  PCIE DRIVER FOR ROCKCHIP
  M:    Shawn Lin <[email protected]>
  L:    [email protected]
@@@ -16657,13 -16302,13 +16657,13 @@@ L:        [email protected]
  S:    Maintained
  F:    drivers/pci/controller/dwc/*spear*
  
 -PCI DRIVER FOR XILINX VERSAL CPM
 -M:    Bharat Kumar Gogada <[email protected]>
 -M:    Michal Simek <[email protected]>
 +PCIE ENDPOINT DRIVER FOR QUALCOMM
 +M:    Manivannan Sadhasivam <[email protected]>
  L:    [email protected]
 +L:    [email protected]
  S:    Maintained
 -F:    Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
 -F:    drivers/pci/controller/pcie-xilinx-cpm.c
 +F:    Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
 +F:    drivers/pci/controller/dwc/pcie-qcom-ep.c
  
  PCMCIA SUBSYSTEM
  M:    Dominik Brodowski <[email protected]>
@@@ -16687,9 -16332,11 +16687,9 @@@ S:  Maintaine
  F:    crypto/pcrypt.c
  F:    include/crypto/pcrypt.h
  
 -PEAQ WMI HOTKEYS DRIVER
 -M:    Hans de Goede <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/platform/x86/peaq-wmi.c
 +PDS DSC VIRTIO DATA PATH ACCELERATOR
 +R:    Shannon Nelson <[email protected]>
 +F:    drivers/vdpa/pds/
  
  PECI HARDWARE MONITORING DRIVERS
  M:    Iwona Winiarska <[email protected]>
@@@ -16876,28 -16523,6 +16876,28 @@@ F: Documentation/devicetree/bindings/pi
  F:    Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
  F:    drivers/pinctrl/mediatek/
  
 +PIN CONTROLLER - MEDIATEK MIPS
 +M:    Arınç ÃœNAL <[email protected]>
 +M:    Sergio Paracuellos <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/pinctrl/mediatek,mt7620-pinctrl.yaml
 +F:    Documentation/devicetree/bindings/pinctrl/mediatek,mt7621-pinctrl.yaml
 +F:    Documentation/devicetree/bindings/pinctrl/mediatek,mt76x8-pinctrl.yaml
 +F:    Documentation/devicetree/bindings/pinctrl/ralink,rt2880-pinctrl.yaml
 +F:    Documentation/devicetree/bindings/pinctrl/ralink,rt305x-pinctrl.yaml
 +F:    Documentation/devicetree/bindings/pinctrl/ralink,rt3352-pinctrl.yaml
 +F:    Documentation/devicetree/bindings/pinctrl/ralink,rt3883-pinctrl.yaml
 +F:    Documentation/devicetree/bindings/pinctrl/ralink,rt5350-pinctrl.yaml
 +F:    drivers/pinctrl/mediatek/pinctrl-mt7620.c
 +F:    drivers/pinctrl/mediatek/pinctrl-mt7621.c
 +F:    drivers/pinctrl/mediatek/pinctrl-mt76x8.c
 +F:    drivers/pinctrl/mediatek/pinctrl-mtmips.*
 +F:    drivers/pinctrl/mediatek/pinctrl-rt2880.c
 +F:    drivers/pinctrl/mediatek/pinctrl-rt305x.c
 +F:    drivers/pinctrl/mediatek/pinctrl-rt3883.c
 +
  PIN CONTROLLER - MICROCHIP AT91
  M:    Ludovic Desroches <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
@@@ -16906,19 -16531,11 +16906,19 @@@ S:        Supporte
  F:    drivers/gpio/gpio-sama5d2-piobu.c
  F:    drivers/pinctrl/pinctrl-at91*
  
 +PIN CONTROLLER - NXP S32
 +M:    Chester Lin <[email protected]>
 +R:    NXP S32 Linux Team <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/pinctrl/nxp,s32*
 +F:    drivers/pinctrl/nxp/
 +
  PIN CONTROLLER - QUALCOMM
  M:    Bjorn Andersson <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    Documentation/devicetree/bindings/pinctrl/qcom,*.txt
 +F:    Documentation/devicetree/bindings/pinctrl/qcom,*
  F:    drivers/pinctrl/qcom/
  
  PIN CONTROLLER - RENESAS
@@@ -16937,9 -16554,9 +16937,9 @@@ R:   Alim Akhtar <[email protected]
  L:    [email protected] (moderated for non-subscribers)
  L:    [email protected]
  S:    Maintained
 -C:    irc://irc.libera.chat/linux-exynos
  Q:    https://patchwork.kernel.org/project/linux-samsung-soc/list/
  B:    mailto:[email protected]
 +C:    irc://irc.libera.chat/linux-exynos
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
  F:    Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
  F:    drivers/pinctrl/samsung/
  S:    Maintained
  F:    drivers/pinctrl/pinctrl-single.c
  
 -PIN CONTROLLER - THUNDERBAY
 -M:    Lakshmi Sowjanya D <[email protected]>
 -S:    Supported
 -F:    drivers/pinctrl/pinctrl-thunderbay.c
 -
  PIN CONTROLLER - SUNPLUS / TIBBO
  M:    Dvorkin Dmitry <[email protected]>
  M:    Wells Lu <[email protected]>
@@@ -17001,6 -16623,13 +17001,6 @@@ M:  Logan Gunthorpe <[email protected]
  S:    Maintained
  F:    drivers/dma/plx_dma.c
  
 -PM6764TR DRIVER
 -M:    Charles Hsu     <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/hwmon/pm6764tr.rst
 -F:    drivers/hwmon/pmbus/pm6764tr.c
 -
  PM-GRAPH UTILITY
  M:    "Todd E Brandt" <[email protected]>
  L:    [email protected]
@@@ -17010,13 -16639,6 +17010,13 @@@ B: https://bugzilla.kernel.org/buglist.
  T:    git git://github.com/intel/pm-graph
  F:    tools/power/pm-graph
  
 +PM6764TR DRIVER
 +M:    Charles Hsu     <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/hwmon/pm6764tr.rst
 +F:    drivers/hwmon/pmbus/pm6764tr.c
 +
  PMBUS HARDWARE MONITORING DRIVERS
  M:    Guenter Roeck <[email protected]>
  L:    [email protected]
@@@ -17097,6 -16719,15 +17097,6 @@@ F:  include/linux/pm_
  F:    include/linux/powercap.h
  F:    kernel/configs/nopm.config
  
 -DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
 -M:    Daniel Lezcano <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -B:    https://bugzilla.kernel.org
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
 -F:    drivers/powercap/dtpm*
 -F:    include/linux/dtpm.h
 -
  POWER STATE COORDINATION INTERFACE (PSCI)
  M:    Mark Rutland <[email protected]>
  M:    Lorenzo Pieralisi <[email protected]>
@@@ -17143,8 -16774,9 +17143,8 @@@ F:   include/uapi/linux/if_pppol2tp.
  F:    net/l2tp/l2tp_ppp.c
  
  PPP PROTOCOL DRIVERS AND COMPRESSORS
 -M:    Paul Mackerras <[email protected]>
  L:    [email protected]
 -S:    Maintained
 +S:    Orphan
  F:    drivers/net/ppp/ppp_*
  
  PPS SUPPORT
@@@ -17153,7 -16785,7 +17153,7 @@@ L:   [email protected] (subscriber
  S:    Maintained
  W:    http://wiki.enneenne.com/index.php/LinuxPPS_support
  F:    Documentation/ABI/testing/sysfs-pps
 -F:    Documentation/devicetree/bindings/pps/pps-gpio.txt
 +F:    Documentation/devicetree/bindings/pps/pps-gpio.yaml
  F:    Documentation/driver-api/pps.rst
  F:    drivers/pps/
  F:    include/linux/pps*.h
@@@ -17169,16 -16801,15 +17169,16 @@@ F:        drivers/net/ppp/pptp.
  PRESSURE STALL INFORMATION (PSI)
  M:    Johannes Weiner <[email protected]>
  M:    Suren Baghdasaryan <[email protected]>
 +R:    Peter Ziljstra <[email protected]>
  S:    Maintained
  F:    include/linux/psi*
  F:    kernel/sched/psi.c
  
  PRINTK
  M:    Petr Mladek <[email protected]>
- M:    Sergey Senozhatsky <[email protected]>
  R:    Steven Rostedt <[email protected]>
  R:    John Ogness <[email protected]>
+ R:    Sergey Senozhatsky <[email protected]>
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
  F:    include/linux/printk.h
@@@ -17256,8 -16887,8 +17256,8 @@@ R:   Guilherme G. Piccoli <gpiccoli@igali
  L:    [email protected]
  S:    Supported
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
 -F:    Documentation/admin-guide/ramoops.rst
  F:    Documentation/admin-guide/pstore-blk.rst
 +F:    Documentation/admin-guide/ramoops.rst
  F:    Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
  F:    drivers/acpi/apei/erst.c
  F:    drivers/firmware/efi/efi-pstore.c
@@@ -17277,13 -16908,6 +17277,13 @@@ F: drivers/ptp/
  F:    include/linux/ptp_cl*
  K:    (?:\b|_)ptp(?:\b|_)
  
 +PTP MOCKUP CLOCK SUPPORT
 +M:    Vladimir Oltean <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/ptp/ptp_mock.c
 +F:    include/linux/ptp_mock.h
 +
  PTP VIRTUAL CLOCK SUPPORT
  M:    Yangbo Lu <[email protected]>
  L:    [email protected]
  S:    Maintained
  T:    git git://github.com/hzhuang1/linux.git
  T:    git git://github.com/rjarzmik/linux.git
 -F:    arch/arm/boot/dts/pxa*
 +F:    arch/arm/boot/dts/intel/pxa/
  F:    arch/arm/mach-pxa/
  F:    drivers/dma/pxa*
  F:    drivers/pcmcia/pxa2xx*
@@@ -17396,7 -17020,7 +17396,7 @@@ QAT DRIVE
  M:    Giovanni Cabiddu <[email protected]>
  L:    [email protected]
  S:    Supported
 -F:    drivers/crypto/qat/
 +F:    drivers/crypto/intel/qat/
  
  QCOM AUDIO (ASoC) DRIVERS
  M:    Srinivas Kandagatla <[email protected]>
@@@ -17413,13 -17037,12 +17413,13 @@@ F:        sound/soc/codecs/lpass-va-macro.
  F:    sound/soc/codecs/lpass-wsa-macro.*
  F:    sound/soc/codecs/msm8916-wcd-analog.c
  F:    sound/soc/codecs/msm8916-wcd-digital.c
 -F:    sound/soc/codecs/wcd9335.*
 -F:    sound/soc/codecs/wcd934x.c
  F:    sound/soc/codecs/wcd-clsh-v2.*
  F:    sound/soc/codecs/wcd-mbhc-v2.*
 +F:    sound/soc/codecs/wcd9335.*
 +F:    sound/soc/codecs/wcd934x.c
  F:    sound/soc/codecs/wsa881x.c
  F:    sound/soc/codecs/wsa883x.c
 +F:    sound/soc/codecs/wsa884x.c
  F:    sound/soc/qcom/
  
  QCOM EMBEDDED USB DEBUGGER (EUD)
@@@ -17574,41 -17197,35 +17574,41 @@@ Q:        http://patchwork.linuxtv.org/project
  T:    git git://linuxtv.org/anttip/media_tree.git
  F:    drivers/media/tuners/qt1010*
  
 +QUALCOMM ATH12K WIRELESS DRIVER
 +M:    Kalle Valo <[email protected]>
 +M:    Jeff Johnson <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
 +F:    drivers/net/wireless/ath/ath12k/
 +
  QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
  M:    Kalle Valo <[email protected]>
 +M:    Jeff Johnson <[email protected]>
  L:    [email protected]
  S:    Supported
  W:    https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
 +F:    Documentation/devicetree/bindings/net/wireless/qcom,ath10k.yaml
  F:    drivers/net/wireless/ath/ath10k/
 -F:    Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
  
  QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
  M:    Kalle Valo <[email protected]>
 +M:    Jeff Johnson <[email protected]>
  L:    [email protected]
  S:    Supported
 +W:    https://wireless.wiki.kernel.org/en/users/Drivers/ath11k
 +B:    https://wireless.wiki.kernel.org/en/users/Drivers/ath11k/bugreport
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
  F:    Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
  F:    drivers/net/wireless/ath/ath11k/
  
 -QUALCOMM ATH12K WIRELESS DRIVER
 -M:    Kalle Valo <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
 -F:    drivers/net/wireless/ath/ath12k/
 -
  QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
  M:    Toke Høiland-Jørgensen <[email protected]>
  L:    [email protected]
  S:    Maintained
  W:    https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
  F:    Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
  F:    drivers/net/wireless/ath/ath9k/
  
@@@ -17623,7 -17240,6 +17623,7 @@@ F:   drivers/net/wwan/qcom_bam_dmux.
  QUALCOMM CAMERA SUBSYSTEM DRIVER
  M:    Robert Foss <[email protected]>
  M:    Todor Tomov <[email protected]>
 +M:    Bryan O'Donoghue <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/admin-guide/media/qcom_camss.rst
@@@ -17639,18 -17255,6 +17639,18 @@@ F: Documentation/devicetree/bindings/cl
  F:    drivers/clk/qcom/
  F:    include/dt-bindings/clock/qcom,*
  
 +QUALCOMM CLOUD AI (QAIC) DRIVER
 +M:    Jeffrey Hugo <[email protected]>
 +R:    Carl Vanderlip <[email protected]>
 +R:    Pranjal Ramajor Asha Kanojiya <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Supported
 +T:    git git://anongit.freedesktop.org/drm/drm-misc
 +F:    Documentation/accel/qaic/
 +F:    drivers/accel/qaic/
 +F:    include/uapi/drm/qaic_accel.h
 +
  QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
  M:    Bjorn Andersson <[email protected]>
  M:    Konrad Dybcio <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
 -F:    drivers/soc/qcom/cpr.c
 +F:    drivers/genpd/qcom/cpr.c
  
  QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
  M:    Ilia Lin <[email protected]>
@@@ -17673,7 -17277,6 +17673,7 @@@ M:   Thara Gopinath <thara.gopinath@gmail
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
 +F:    Documentation/devicetree/bindings/crypto/qcom-qce.yaml
  F:    drivers/crypto/qce/
  
  QUALCOMM EMAC GIGABIT ETHERNET DRIVER
@@@ -17686,9 -17289,8 +17686,9 @@@ QUALCOMM ETHQOS ETHERNET DRIVE
  M:    Vinod Koul <[email protected]>
  R:    Bhupesh Sharma <[email protected]>
  L:    [email protected]
 +L:    [email protected]
  S:    Maintained
 -F:    Documentation/devicetree/bindings/net/qcom,ethqos.txt
 +F:    Documentation/devicetree/bindings/net/qcom,ethqos.yaml
  F:    drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
  
  QUALCOMM FASTRPC DRIVER
@@@ -17703,8 -17305,8 +17703,8 @@@ F:   include/uapi/misc/fastrpc.
  QUALCOMM HEXAGON ARCHITECTURE
  M:    Brian Cain <[email protected]>
  L:    [email protected]
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
  S:    Supported
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
  F:    arch/hexagon/
  
  QUALCOMM HIDMA DRIVER
@@@ -17796,18 -17398,9 +17796,18 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
  F:    drivers/thermal/qcom/
  
 +QUALCOMM TYPEC PORT MANAGER DRIVER
 +M:    Bryan O'Donoghue <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/usb/qcom,pmic-*.yaml
 +F:    drivers/usb/typec/tcpm/qcom/
 +
  QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
  M:    Stanimir Varbanov <[email protected]>
  M:    Vikash Garodia <[email protected]>
 +R:    Bryan O'Donoghue <[email protected]>
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
@@@ -17835,9 -17428,9 +17835,9 @@@ M:   Christian König <christian.koenig@a
  M:    Pan, Xinhui <[email protected]>
  L:    [email protected]
  S:    Supported
 -T:    git https://gitlab.freedesktop.org/agd5f/linux.git
  B:    https://gitlab.freedesktop.org/drm/amd/-/issues
  C:    irc://irc.oftc.net/radeon
 +T:    git https://gitlab.freedesktop.org/agd5f/linux.git
  F:    Documentation/gpu/amdgpu/
  F:    drivers/gpu/drm/amd/
  F:    drivers/gpu/drm/radeon/
@@@ -17878,8 -17471,9 +17878,8 @@@ F:   drivers/block/rbd.
  F:    drivers/block/rbd_types.h
  
  RAGE128 FRAMEBUFFER DISPLAY DRIVER
 -M:    Paul Mackerras <[email protected]>
  L:    [email protected]
 -S:    Maintained
 +S:    Orphan
  F:    drivers/video/fbdev/aty/aty128fb.c
  
  RAINSHADOW-CEC DRIVER
  S:    Maintained
  F:    arch/mips/boot/dts/ralink/mt7621*
  
 -RALINK PINCTRL DRIVER
 -M:    Arınç ÃœNAL <[email protected]>
 -M:    Sergio Paracuellos <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/pinctrl/ralink/
 -
  RALINK RT2X00 WIRELESS LAN DRIVER
  M:    Stanislaw Gruszka <[email protected]>
  M:    Helmut Schaa <[email protected]>
@@@ -17925,8 -17526,8 +17925,8 @@@ F:   arch/mips/generic/board-ranchu.
  RANDOM NUMBER DRIVER
  M:    "Theodore Ts'o" <[email protected]>
  M:    Jason A. Donenfeld <[email protected]>
 -T:    git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
  S:    Maintained
 +T:    git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
  F:    drivers/char/random.c
  F:    drivers/virt/vmgenid.c
  
@@@ -17949,7 -17550,7 +17949,7 @@@ F:   include/ras/ras_event.
  RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
  L:    [email protected]
  S:    Orphan
 -F:    drivers/net/wireless/ray*
 +F:    drivers/net/wireless/legacy/ray*
  
  RC-CORE / LIRC FRAMEWORK
  M:    Sean Young <[email protected]>
@@@ -17960,8 -17561,8 +17960,8 @@@ T:   git git://linuxtv.org/media_tree.gi
  F:    Documentation/driver-api/media/rc-core.rst
  F:    Documentation/userspace-api/media/rc/
  F:    drivers/media/rc/
 -F:    include/media/rc-map.h
  F:    include/media/rc-core.h
 +F:    include/media/rc-map.h
  F:    include/uapi/linux/lirc.h
  
  RCMM REMOTE CONTROLS DECODER
@@@ -18050,7 -17651,7 +18050,7 @@@ M:   Boqun Feng <[email protected]
  R:    Steven Rostedt <[email protected]>
  R:    Mathieu Desnoyers <[email protected]>
  R:    Lai Jiangshan <[email protected]>
 -R:    Zqiang <qiang1.zhang@intel.com>
 +R:    Zqiang <qiang.zhang1211@gmail.com>
  L:    [email protected]
  S:    Supported
  W:    http://www.rdrop.com/users/paulmck/RCU/
@@@ -18078,14 -17679,6 +18078,14 @@@ F: include/linux/rtc
  F:    include/uapi/linux/rtc.h
  F:    tools/testing/selftests/rtc/
  
 +Real-time Linux Analysis (RTLA) tools
 +M:    Daniel Bristot de Oliveira <[email protected]>
 +M:    Steven Rostedt <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/tools/rtla/
 +F:    tools/tracing/rtla/
 +
  REALTEK AUDIO CODECS
  M:    Oder Chiou <[email protected]>
  S:    Maintained
@@@ -18115,7 -17708,7 +18115,7 @@@ T:   git git://git.kernel.org/pub/scm/lin
  F:    drivers/net/wireless/realtek/rtlwifi/
  
  REALTEK WIRELESS DRIVER (rtw88)
 -M:    Yan-Hsuan Chuang <tony0620emma@gmail.com>
 +M:    Ping-Ke Shih <pkshih@realtek.com>
  L:    [email protected]
  S:    Maintained
  F:    drivers/net/wireless/realtek/rtw88/
@@@ -18142,7 -17735,7 +18142,7 @@@ F:   include/linux/regmap.
  
  REISERFS FILE SYSTEM
  L:    [email protected]
 -S:    Supported
 +S:    Obsolete
  F:    fs/reiserfs/
  
  REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
@@@ -18209,14 -17802,6 +18209,14 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/sound/renesas,idt821034.yaml
  F:    sound/soc/codecs/idt821034.c
  
 +RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
 +M:    Miquel Raynal <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
 +F:    drivers/mtd/nand/raw/renesas-nand-controller.c
 +
  RENESAS R-CAR GYROADC DRIVER
  M:    Marek Vasut <[email protected]>
  L:    [email protected]
@@@ -18235,9 -17820,9 +18235,9 @@@ F:   drivers/i2c/busses/i2c-sh_mobile.
  
  RENESAS R-CAR SATA DRIVER
  R:    Sergey Shtylyov <[email protected]>
 -S:    Supported
  L:    [email protected]
  L:    [email protected]
 +S:    Supported
  F:    Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
  F:    drivers/ata/sata_rcar.c
  
@@@ -18257,6 -17842,12 +18257,6 @@@ S:  Supporte
  F:    Documentation/devicetree/bindings/i2c/renesas,riic.yaml
  F:    drivers/i2c/busses/i2c-riic.c
  
 -RENESAS USB PHY DRIVER
 -M:    Yoshihiro Shimoda <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/phy/renesas/phy-rcar-gen3-usb*.c
 -
  RENESAS RZ/G2L A/D DRIVER
  M:    Lad Prabhakar <[email protected]>
  L:    [email protected]
@@@ -18265,14 -17856,6 +18265,14 @@@ S: Supporte
  F:    Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
  F:    drivers/iio/adc/rzg2l_adc.c
  
 +RENESAS RZ/G2L MTU3a COUNTER DRIVER
 +M:    Biju Das <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Supported
 +F:    Documentation/devicetree/bindings/timer/renesas,rz-mtu3.yaml
 +F:    drivers/counter/rz-mtu3-cnt.c
 +
  RENESAS RZ/N1 A5PSW SWITCH DRIVER
  M:    Clément Léger <[email protected]>
  L:    [email protected]
@@@ -18302,19 -17885,13 +18302,19 @@@ S:        Maintaine
  F:    Documentation/devicetree/bindings/usb/renesas,rzn1-usbf.yaml
  F:    drivers/usb/gadget/udc/renesas_usbf.c
  
 -RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
 -M:    Miquel Raynal <[email protected]>
 -L:    [email protected]
 +RENESAS RZ/V2M I2C DRIVER
 +M:    Fabrizio Castro <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Supported
 +F:    Documentation/devicetree/bindings/i2c/renesas,rzv2m.yaml
 +F:    drivers/i2c/busses/i2c-rzv2m.c
 +
 +RENESAS USB PHY DRIVER
 +M:    Yoshihiro Shimoda <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
 -F:    drivers/mtd/nand/raw/renesas-nand-controller.c
 +F:    drivers/phy/renesas/phy-rcar-gen3-usb*.c
  
  RENESAS VERSACLOCK 7 CLOCK DRIVER
  M:    Alex Helms <[email protected]>
@@@ -18322,13 -17899,6 +18322,13 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
  F:    drivers/clk/clk-versaclock7.c
  
 +RENESAS X9250 DIGITAL POTENTIOMETERS DRIVER
 +M:    Herve Codina <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/iio/potentiometer/renesas,x9250.yaml
 +F:    drivers/iio/potentiometer/x9250.c
 +
  RESET CONTROLLER FRAMEWORK
  M:    Philipp Zabel <[email protected]>
  S:    Maintained
@@@ -18389,6 -17959,15 +18389,6 @@@ S:  Maintaine
  F:    drivers/mtd/nand/raw/r852.c
  F:    drivers/mtd/nand/raw/r852.h
  
 -RISC-V PMU DRIVERS
 -M:    Atish Patra <[email protected]>
 -R:    Anup Patel <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    drivers/perf/riscv_pmu.c
 -F:    drivers/perf/riscv_pmu_legacy.c
 -F:    drivers/perf/riscv_pmu_sbi.c
 -
  RISC-V ARCHITECTURE
  M:    Paul Walmsley <[email protected]>
  M:    Palmer Dabbelt <[email protected]>
@@@ -18424,7 -18003,6 +18424,7 @@@ F:   drivers/clk/microchip/clk-mpfs*.
  F:    drivers/i2c/busses/i2c-microchip-corei2c.c
  F:    drivers/mailbox/mailbox-mpfs.c
  F:    drivers/pci/controller/pcie-microchip-host.c
 +F:    drivers/pwm/pwm-microchip-core.c
  F:    drivers/reset/reset-mpfs.c
  F:    drivers/rtc/rtc-mpfs.c
  F:    drivers/soc/microchip/mpfs-sys-controller.c
@@@ -18441,25 -18019,6 +18441,25 @@@ Q: https://patchwork.kernel.org/project
  T:    git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
  F:    Documentation/devicetree/bindings/riscv/
  F:    arch/riscv/boot/dts/
 +X:    arch/riscv/boot/dts/allwinner/
 +X:    arch/riscv/boot/dts/renesas/
 +
 +RISC-V PMU DRIVERS
 +M:    Atish Patra <[email protected]>
 +R:    Anup Patel <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    drivers/perf/riscv_pmu.c
 +F:    drivers/perf/riscv_pmu_legacy.c
 +F:    drivers/perf/riscv_pmu_sbi.c
 +
 +RISC-V THEAD SoC SUPPORT
 +M:    Jisheng Zhang <[email protected]>
 +M:    Guo Ren <[email protected]>
 +M:    Fu Wei <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    arch/riscv/boot/dts/thead/
  
  RNBD BLOCK DRIVERS
  M:    Md. Haris Iqbal <[email protected]>
  S:    Maintained
  F:    Documentation/admin-guide/media/rkisp1.rst
  F:    Documentation/devicetree/bindings/media/rockchip-isp1.yaml
 -F:    Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
 +F:    Documentation/userspace-api/media/v4l/metafmt-rkisp1.rst
  F:    drivers/media/platform/rockchip/rkisp1
  F:    include/uapi/linux/rkisp1-config.h
  
@@@ -18542,13 -18101,6 +18542,13 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/iio/light/bh1750.yaml
  F:    drivers/iio/light/bh1750.c
  
 +ROHM BU270xx LIGHT SENSOR DRIVERs
 +M:    Matti Vaittinen <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    drivers/iio/light/rohm-bu27008.c
 +F:    drivers/iio/light/rohm-bu27034.c
 +
  ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
  M:    Marek Vasut <[email protected]>
  L:    [email protected]
@@@ -18640,14 -18192,17 +18640,14 @@@ RTL8180 WIRELESS DRIVE
  L:    [email protected]
  S:    Orphan
  W:    https://wireless.wiki.kernel.org/
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
  F:    drivers/net/wireless/realtek/rtl818x/rtl8180/
  
  RTL8187 WIRELESS DRIVER
 -M:    Herton Ronaldo Krzesinski <[email protected]>
 -M:    Hin-Tak Leung <[email protected]>
 +M:    Hin-Tak Leung <[email protected]>
  M:    Larry Finger <[email protected]>
  L:    [email protected]
  S:    Maintained
  W:    https://wireless.wiki.kernel.org/
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
  F:    drivers/net/wireless/realtek/rtl818x/rtl8187/
  
  RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
@@@ -18667,7 -18222,7 +18667,7 @@@ F:   drivers/infiniband/ulp/rtrs
  RUNTIME VERIFICATION (RV)
  M:    Daniel Bristot de Oliveira <[email protected]>
  M:    Steven Rostedt <[email protected]>
 -L:    linux-trace-dev[email protected]
 +L:    linux-trace-kern[email protected]
  S:    Maintained
  F:    Documentation/trace/rv/
  F:    include/linux/rv.h
@@@ -18682,9 -18237,6 +18682,9 @@@ M:   Wedson Almeida Filho <wedsonaf@gmail
  R:    Boqun Feng <[email protected]>
  R:    Gary Guo <[email protected]>
  R:    Björn Roy Baron <[email protected]>
 +R:    Benno Lossin <[email protected]>
 +R:    Andreas Hindborg <[email protected]>
 +R:    Alice Ryhl <[email protected]>
  L:    [email protected]
  S:    Supported
  W:    https://github.com/Rust-for-Linux/linux
  S:    Supported
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
  F:    Documentation/driver-api/s390-drivers.rst
 -F:    Documentation/s390/
 +F:    Documentation/arch/s390/
  F:    arch/s390/
  F:    drivers/s390/
  F:    drivers/watchdog/diag288_wdt.c
@@@ -18761,9 -18313,17 +18761,9 @@@ M:  Wenjia Zhang <[email protected]
  L:    [email protected]
  L:    [email protected]
  S:    Supported
 -F:    drivers/s390/net/*iucv*
 -F:    include/net/iucv/
 -F:    net/iucv/
 -
 -S390 NETWORK DRIVERS
 -M:    Alexandra Winter <[email protected]>
 -M:    Wenjia Zhang <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -S:    Supported
 -F:    drivers/s390/net/
 +F:    drivers/s390/net/*iucv*
 +F:    include/net/iucv/
 +F:    net/iucv/
  
  S390 MM
  M:    Alexander Gordeev <[email protected]>
@@@ -18774,22 -18334,14 +18774,22 @@@ T:        git git://git.kernel.org/pub/scm/lin
  F:    arch/s390/include/asm/pgtable.h
  F:    arch/s390/mm
  
 +S390 NETWORK DRIVERS
 +M:    Alexandra Winter <[email protected]>
 +M:    Wenjia Zhang <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Supported
 +F:    drivers/s390/net/
 +
  S390 PCI SUBSYSTEM
  M:    Niklas Schnelle <[email protected]>
  M:    Gerald Schaefer <[email protected]>
  L:    [email protected]
  S:    Supported
 +F:    Documentation/arch/s390/pci.rst
  F:    arch/s390/pci/
  F:    drivers/pci/hotplug/s390_pci_hpc.c
 -F:    Documentation/s390/pci.rst
  
  S390 SCM DRIVER
  M:    Vineeth Vijayan <[email protected]>
@@@ -18804,7 -18356,7 +18804,7 @@@ M:   Halil Pasic <[email protected]
  M:    Jason Herne <[email protected]>
  L:    [email protected]
  S:    Supported
 -F:    Documentation/s390/vfio-ap*
 +F:    Documentation/arch/s390/vfio-ap*
  F:    drivers/s390/crypto/vfio_ap*
  
  S390 VFIO-CCW DRIVER
@@@ -18814,7 -18366,7 +18814,7 @@@ R:   Halil Pasic <[email protected]
  L:    [email protected]
  L:    [email protected]
  S:    Supported
 -F:    Documentation/s390/vfio-ccw.rst
 +F:    Documentation/arch/s390/vfio-ccw.rst
  F:    drivers/s390/cio/vfio_ccw*
  F:    include/uapi/linux/vfio_ccw.h
  
@@@ -18874,9 -18426,10 +18874,9 @@@ F:  Documentation/admin-guide/LSM/SafeSe
  F:    security/safesetid/
  
  SAMSUNG AUDIO (ASoC) DRIVERS
 -M:    Krzysztof Kozlowski <[email protected]>
  M:    Sylwester Nawrocki <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
 -S:    Supported
 +S:    Maintained
  B:    mailto:[email protected]
  F:    Documentation/devicetree/bindings/sound/samsung*
  F:    sound/soc/samsung/
@@@ -18920,7 -18473,7 +18920,7 @@@ SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVE
  M:    Krzysztof Kozlowski <[email protected]>
  L:    [email protected]
  L:    [email protected]
 -S:    Supported
 +S:    Maintained
  B:    mailto:[email protected]
  F:    Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
  F:    Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
@@@ -18953,7 -18506,6 +18953,7 @@@ M:   Sylwester Nawrocki <s.nawrocki@samsu
  M:    Andrzej Hajda <[email protected]>
  L:    [email protected]
  S:    Supported
 +F:    Documentation/devicetree/bindings/media/samsung,s5c73m3.yaml
  F:    drivers/media/i2c/s5c73m3/*
  
  SAMSUNG S5K5BAF CAMERA DRIVER
@@@ -18978,11 -18530,6 +18978,11 @@@ M: Sylwester Nawrocki <s.nawrocki@samsu
  L:    [email protected]
  S:    Supported
  Q:    https://patchwork.linuxtv.org/project/linux-media/list/
 +F:    Documentation/devicetree/bindings/media/samsung,exynos4210-csis.yaml
 +F:    Documentation/devicetree/bindings/media/samsung,exynos4210-fimc.yaml
 +F:    Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-is.yaml
 +F:    Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-lite.yaml
 +F:    Documentation/devicetree/bindings/media/samsung,fimc.yaml
  F:    drivers/media/platform/samsung/exynos4-is/
  
  SAMSUNG SOC CLOCK DRIVERS
@@@ -18992,7 -18539,7 +18992,7 @@@ M:   Tomasz Figa <[email protected]
  M:    Chanwoo Choi <[email protected]>
  R:    Alim Akhtar <[email protected]>
  L:    [email protected]
 -S:    Supported
 +S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
  F:    Documentation/devicetree/bindings/clock/samsung,*.yaml
@@@ -19004,7 -18551,8 +19004,7 @@@ F:   include/dt-bindings/clock/samsung,*.
  F:    include/linux/clk/samsung.h
  
  SAMSUNG SPI DRIVERS
 -M:    Krzysztof Kozlowski <[email protected]>
 -M:    Andi Shyti <[email protected]>
 +M:    Andi Shyti <[email protected]>
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
@@@ -19044,7 -18592,7 +19044,7 @@@ SANCLOUD BEAGLEBONE ENHANCED DEVICE TRE
  M:    Paul Barker <[email protected]>
  R:    Marc Murphy <[email protected]>
  S:    Supported
 -F:    arch/arm/boot/dts/am335x-sancloud*
 +F:    arch/arm/boot/dts/ti/omap/am335x-sancloud*
  
  SC1200 WDT DRIVER
  M:    Zwane Mwaikambo <[email protected]>
@@@ -19071,15 -18619,10 +19071,15 @@@ F:        include/linux/wait.
  F:    include/uapi/linux/sched.h
  F:    kernel/sched/
  
 -SCR24X CHIP CARD INTERFACE DRIVER
 -M:    Lubomir Rintel <[email protected]>
 +SCSI LIBSAS SUBSYSTEM
 +R:    John Garry <[email protected]>
 +R:    Jason Yan <[email protected]>
 +L:    [email protected]
  S:    Supported
 -F:    drivers/char/pcmcia/scr24x_cs.c
 +F:    Documentation/scsi/libsas.rst
 +F:    drivers/scsi/libsas/
 +F:    include/scsi/libsas.h
 +F:    include/scsi/sas_ata.h
  
  SCSI RDMA PROTOCOL (SRP) INITIATOR
  M:    Bart Van Assche <[email protected]>
@@@ -19149,11 -18692,12 +19149,11 @@@ F:        drivers/target
  F:    include/target/
  
  SCTP PROTOCOL
 -M:    Neil Horman <[email protected]>
  M:    Marcelo Ricardo Leitner <[email protected]>
  M:    Xin Long <[email protected]>
  L:    [email protected]
  S:    Maintained
 -W:    http://lksctp.sourceforge.net
 +W:    https://github.com/sctp/lksctp-tools/wiki
  F:    Documentation/networking/sctp.rst
  F:    include/linux/sctp.h
  F:    include/net/sctp/
@@@ -19209,7 -18753,7 +19209,7 @@@ K:   \bsecure_computin
  K:    \bTIF_SECCOMP\b
  
  SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
 -M:    Kamal Dasu <kdasu.kdev@gmail.com>
 +M:    Kamal Dasu <kamal.dasu@broadcom.com>
  M:    Al Cooper <[email protected]>
  R:    Broadcom internal kernel review list <[email protected]>
  L:    [email protected]
  S:    Supported
  F:    drivers/mmc/host/sdhci-of-at91.c
  
 +SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
 +M:    Haibo Chen <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/mmc/host/sdhci-esdhc-imx.c
 +
  SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
  M:    Ben Dooks <[email protected]>
  M:    Jaehoon Chung <[email protected]>
  S:    Maintained
  F:    drivers/mmc/host/sdhci-omap.c
  
 -SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
 -M:    Haibo Chen <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/mmc/host/sdhci-esdhc-imx.c
 -
  SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
  M:    Jonathan Derrick <[email protected]>
  L:    [email protected]
@@@ -19264,15 -18808,6 +19264,15 @@@ F: block/sed
  F:    include/linux/sed*
  F:    include/uapi/linux/sed*
  
 +SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
 +M:    Mark Rutland <[email protected]>
 +M:    Lorenzo Pieralisi <[email protected]>
 +M:    Sudeep Holla <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Maintained
 +F:    drivers/firmware/smccc/
 +F:    include/linux/arm-smccc.h
 +
  SECURITY CONTACT
  M:    Security Officers <[email protected]>
  S:    Supported
@@@ -19356,6 -18891,13 +19356,6 @@@ F:  Documentation/devicetree/bindings/se
  F:    drivers/tty/serdev/
  F:    include/linux/serdev.h
  
 -SERIAL DRIVERS
 -M:    Greg Kroah-Hartman <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/serial/
 -F:    drivers/tty/serial/
 -
  SERIAL IR RECEIVER
  M:    Sean Young <[email protected]>
  L:    [email protected]
@@@ -19374,19 -18916,10 +19374,19 @@@ SFC NETWORK DRIVE
  M:    Edward Cree <[email protected]>
  M:    Martin Habets <[email protected]>
  L:    [email protected]
 +L:    [email protected]
  S:    Supported
  F:    Documentation/networking/devlink/sfc.rst
  F:    drivers/net/ethernet/sfc/
  
 +SFCTEMP HWMON DRIVER
 +M:    Emil Renner Berthing <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/hwmon/starfive,jh71x0-temp.yaml
 +F:    Documentation/hwmon/sfctemp.rst
 +F:    drivers/hwmon/sfctemp.c
 +
  SFF/SFP/SFP+ MODULE SUPPORT
  M:    Russell King <[email protected]>
  L:    [email protected]
@@@ -19407,6 -18940,7 +19407,6 @@@ F:   drivers/misc/sgi-gru
  SGI XP/XPC/XPNET DRIVER
  M:    Robin Holt <[email protected]>
  M:    Steve Wahl <[email protected]>
 -R:    Mike Travis <[email protected]>
  S:    Maintained
  F:    drivers/misc/sgi-xp/
  
@@@ -19414,9 -18948,6 +19414,9 @@@ SHARED MEMORY COMMUNICATIONS (SMC) SOCK
  M:    Karsten Graul <[email protected]>
  M:    Wenjia Zhang <[email protected]>
  M:    Jan Karcher <[email protected]>
 +R:    D. Wythe <[email protected]>
 +R:    Tony Lu <[email protected]>
 +R:    Wen Gu <[email protected]>
  L:    [email protected]
  S:    Supported
  F:    net/smc/
  S:    Odd Fixes
  W:    https://linuxtv.org
  T:    git git://linuxtv.org/media_tree.git
 +F:    Documentation/devicetree/bindings/media/silabs,si470x.yaml
  F:    drivers/media/radio/si470x/radio-si470x-i2c.c
  
  SI470X FM RADIO RECEIVER USB DRIVER
@@@ -19525,32 -19055,6 +19525,32 @@@ F: drivers/media/mmc/siano
  F:    drivers/media/usb/siano/
  F:    drivers/media/usb/siano/
  
 +SIEMENS IPC LED DRIVERS
 +M:    Gerd Haeussler <[email protected]>
 +M:    Xing Tong Wu <[email protected]>
 +M:    Tobias Schaffner <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/leds/simple/
 +
 +SIEMENS IPC PLATFORM DRIVERS
 +M:    Gerd Haeussler <[email protected]>
 +M:    Xing Tong Wu <[email protected]>
 +M:    Tobias Schaffner <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/platform/x86/siemens/
 +F:    include/linux/platform_data/x86/simatic-ipc-base.h
 +F:    include/linux/platform_data/x86/simatic-ipc.h
 +
 +SIEMENS IPC WATCHDOG DRIVERS
 +M:    Gerd Haeussler <[email protected]>
 +M:    Xing Tong Wu <[email protected]>
 +M:    Tobias Schaffner <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/watchdog/simatic-ipc-wdt.c
 +
  SIFIVE DRIVERS
  M:    Palmer Dabbelt <[email protected]>
  M:    Paul Walmsley <[email protected]>
@@@ -19579,7 -19083,6 +19579,7 @@@ M:   Conor Dooley <[email protected]
  L:    [email protected]
  S:    Maintained
  T:    git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
 +F:    Documentation/devicetree/bindings/cache/sifive,ccache0.yaml
  F:    drivers/soc/sifive/
  
  SILEAD TOUCHSCREEN DRIVER
@@@ -19689,12 -19192,6 +19689,12 @@@ F: drivers/irqchip/irq-sl28cpld.
  F:    drivers/pwm/pwm-sl28cpld.c
  F:    drivers/watchdog/sl28cpld_wdt.c
  
 +SL28 VPD NVMEM LAYOUT DRIVER
 +M:    Michael Walle <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/nvmem/layouts/kontron,sl28-vpd.yaml
 +F:    drivers/nvmem/layouts/sl28vpd.c
 +
  SLAB ALLOCATOR
  M:    Christoph Lameter <[email protected]>
  M:    Pekka Enberg <[email protected]>
@@@ -19743,6 -19240,22 +19743,6 @@@ M:  Nicolas Pitre <[email protected]
  S:    Odd Fixes
  F:    drivers/net/ethernet/smsc/smc91x.*
  
 -SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
 -M:    Mark Rutland <[email protected]>
 -M:    Lorenzo Pieralisi <[email protected]>
 -M:    Sudeep Holla <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -S:    Maintained
 -F:    drivers/firmware/smccc/
 -F:    include/linux/arm-smccc.h
 -
 -SMM665 HARDWARE MONITOR DRIVER
 -M:    Guenter Roeck <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/hwmon/smm665.rst
 -F:    drivers/hwmon/smm665.c
 -
  SMSC EMC2103 HARDWARE MONITOR DRIVER
  M:    Steve Glendinning <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    drivers/net/ethernet/smsc/smsc9420.*
  
 +SNET DPU VIRTIO DATA PATH ACCELERATOR
 +R:    Alvaro Karsz <[email protected]>
 +F:    drivers/vdpa/solidrun/
 +
  SOCIONEXT (SNI) AVE NETWORK DRIVER
  M:    Kunihiko Hayashi <[email protected]>
  L:    [email protected]
@@@ -19894,15 -19403,15 +19894,15 @@@ F:        include/uapi/linux/raid
  SOLIDRUN CLEARFOG SUPPORT
  M:    Russell King <[email protected]>
  S:    Maintained
 -F:    arch/arm/boot/dts/armada-388-clearfog*
 -F:    arch/arm/boot/dts/armada-38x-solidrun-*
 +F:    arch/arm/boot/dts/marvell/armada-388-clearfog*
 +F:    arch/arm/boot/dts/marvell/armada-38x-solidrun-*
  
  SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
  M:    Russell King <[email protected]>
  S:    Maintained
 -F:    arch/arm/boot/dts/imx6*-cubox-i*
 -F:    arch/arm/boot/dts/imx6*-hummingboard*
 -F:    arch/arm/boot/dts/imx6*-sr-*
 +F:    arch/arm/boot/dts/nxp/imx/imx6*-cubox-i*
 +F:    arch/arm/boot/dts/nxp/imx/imx6*-hummingboard*
 +F:    arch/arm/boot/dts/nxp/imx/imx6*-sr-*
  
  SONIC NETWORK DRIVER
  M:    Thomas Bogendoerfer <[email protected]>
@@@ -20056,13 -19565,6 +20056,13 @@@ F: include/uapi/sound
  F:    sound/
  F:    tools/testing/selftests/alsa
  
 +SOUND - ALSA SELFTESTS
 +M:    Mark Brown <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +L:    [email protected]
 +S:    Supported
 +F:    tools/testing/selftests/alsa
 +
  SOUND - COMPRESSED AUDIO
  M:    Vinod Koul <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
@@@ -20081,6 -19583,13 +20081,6 @@@ F:  include/sound/dmaengine_pcm.
  F:    sound/core/pcm_dmaengine.c
  F:    sound/soc/soc-generic-dmaengine-pcm.c
  
 -SOUND - ALSA SELFTESTS
 -M:    Mark Brown <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 -L:    [email protected]
 -S:    Supported
 -F:    tools/testing/selftests/alsa
 -
  SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
  M:    Liam Girdwood <[email protected]>
  M:    Mark Brown <[email protected]>
@@@ -20100,8 -19609,8 +20100,8 @@@ M:   Liam Girdwood <[email protected]
  M:    Peter Ujfalusi <[email protected]>
  M:    Bard Liao <[email protected]>
  M:    Ranjani Sridharan <[email protected]>
 -R:    Kai Vehmanen <[email protected]>
  M:    Daniel Baluta <[email protected]>
 +R:    Kai Vehmanen <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Supported
  W:    https://github.com/thesofproject/linux/
@@@ -20163,9 -19672,9 +20163,9 @@@ M:   "Luc Van Oostenryck" <luc.vanoostenr
  L:    [email protected]
  S:    Maintained
  W:    https://sparse.docs.kernel.org/
 -T:    git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
  Q:    https://patchwork.kernel.org/project/linux-sparse/list/
  B:    https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
 +T:    git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
  F:    include/linux/compiler.h
  
  SPEAKUP CONSOLE SPEECH DRIVER
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  W:    http://www.st.com/spear
 -F:    arch/arm/boot/dts/spear*
 +F:    arch/arm/boot/dts/st/spear*
  F:    arch/arm/mach-spear/
  F:    drivers/clk/spear/
  F:    drivers/pinctrl/spear/
@@@ -20400,31 -19909,17 +20400,31 @@@ M:        Ion Badulescu <[email protected]
  S:    Odd Fixes
  F:    drivers/net/ethernet/adaptec/starfire*
  
 +STARFIVE CRYPTO DRIVER
 +M:    Jia Jie Ho <[email protected]>
 +M:    William Qiu <[email protected]>
 +S:    Supported
 +F:    Documentation/devicetree/bindings/crypto/starfive*
 +F:    drivers/crypto/starfive/
 +
  STARFIVE DEVICETREES
  M:    Emil Renner Berthing <[email protected]>
  S:    Maintained
  F:    arch/riscv/boot/dts/starfive/
  
 -STARFIVE JH7100 CLOCK DRIVERS
 +STARFIVE DWMAC GLUE LAYER
  M:    Emil Renner Berthing <[email protected]>
 +M:    Samin Guo <[email protected]>
  S:    Maintained
 -F:    Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
 -F:    drivers/clk/starfive/clk-starfive-jh7100*
 -F:    include/dt-bindings/clock/starfive-jh7100*.h
 +F:    Documentation/devicetree/bindings/net/starfive,jh7110-dwmac.yaml
 +F:    drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
 +
 +STARFIVE JH7110 DPHY RX DRIVER
 +M:    Jack Zhu <[email protected]>
 +M:    Changhuang Liang <[email protected]>
 +S:    Supported
 +F:    Documentation/devicetree/bindings/phy/starfive,jh7110-dphy-rx.yaml
 +F:    drivers/phy/starfive/phy-jh7110-dphy-rx.c
  
  STARFIVE JH7110 MMC/SD/SDIO DRIVER
  M:    William Qiu <[email protected]>
@@@ -20432,32 -19927,6 +20432,32 @@@ S: Supporte
  F:    Documentation/devicetree/bindings/mmc/starfive*
  F:    drivers/mmc/host/dw_mmc-starfive.c
  
 +STARFIVE JH7110 PLL CLOCK DRIVER
 +M:    Xingyu Wu <[email protected]>
 +S:    Supported
 +F:    Documentation/devicetree/bindings/clock/starfive,jh7110-pll.yaml
 +F:    drivers/clk/starfive/clk-starfive-jh7110-pll.c
 +
 +STARFIVE JH7110 SYSCON
 +M:    William Qiu <[email protected]>
 +M:    Xingyu Wu <[email protected]>
 +S:    Supported
 +F:    Documentation/devicetree/bindings/soc/starfive/starfive,jh7110-syscon.yaml
 +
 +STARFIVE JH7110 TDM DRIVER
 +M:    Walker Chen <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/sound/starfive,jh7110-tdm.yaml
 +F:    sound/soc/starfive/jh7110_tdm.c
 +
 +STARFIVE JH71X0 CLOCK DRIVERS
 +M:    Emil Renner Berthing <[email protected]>
 +M:    Hal Feng <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/clock/starfive,jh71*.yaml
 +F:    drivers/clk/starfive/clk-starfive-jh71*
 +F:    include/dt-bindings/clock/starfive?jh71*.h
 +
  STARFIVE JH71X0 PINCTRL DRIVERS
  M:    Emil Renner Berthing <[email protected]>
  M:    Jianlong Huang <[email protected]>
@@@ -20468,32 -19937,24 +20468,32 @@@ F:        drivers/pinctrl/starfive/pinctrl-sta
  F:    include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
  F:    include/dt-bindings/pinctrl/starfive,jh7110-pinctrl.h
  
 -STARFIVE JH7100 RESET CONTROLLER DRIVER
 +STARFIVE JH71X0 RESET CONTROLLER DRIVERS
  M:    Emil Renner Berthing <[email protected]>
 +M:    Hal Feng <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
 -F:    drivers/reset/reset-starfive-jh7100.c
 -F:    include/dt-bindings/reset/starfive-jh7100.h
 +F:    drivers/reset/starfive/reset-starfive-jh71*
 +F:    include/dt-bindings/reset/starfive?jh71*.h
 +
 +STARFIVE JH71X0 USB DRIVERS
 +M:    Minda Chen <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/usb/starfive,jh7110-usb.yaml
 +F:    drivers/usb/cdns3/cdns3-starfive.c
  
  STARFIVE JH71XX PMU CONTROLLER DRIVER
  M:    Walker Chen <[email protected]>
  S:    Supported
  F:    Documentation/devicetree/bindings/power/starfive*
 -F:    drivers/soc/starfive/jh71xx_pmu.c
 +F:    drivers/genpd/starfive/jh71xx-pmu.c
  F:    include/dt-bindings/power/starfive,jh7110-pmu.h
  
  STARFIVE SOC DRIVERS
  M:    Conor Dooley <[email protected]>
  S:    Maintained
  T:    git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
 +F:    Documentation/devicetree/bindings/soc/starfive/
  F:    drivers/soc/starfive/
  
  STARFIVE TRNG DRIVER
@@@ -20502,21 -19963,6 +20502,21 @@@ S: Supporte
  F:    Documentation/devicetree/bindings/rng/starfive*
  F:    drivers/char/hw_random/jh7110-trng.c
  
 +STARFIVE WATCHDOG DRIVER
 +M:    Xingyu Wu <[email protected]>
 +M:    Samin Guo <[email protected]>
 +S:    Supported
 +F:    Documentation/devicetree/bindings/watchdog/starfive*
 +F:    drivers/watchdog/starfive-wdt.c
 +
 +STARFIVE JH71X0 PCIE AND USB PHY DRIVER
 +M:    Minda Chen <[email protected]>
 +S:    Supported
 +F:    Documentation/devicetree/bindings/phy/starfive,jh7110-pcie-phy.yaml
 +F:    Documentation/devicetree/bindings/phy/starfive,jh7110-usb-phy.yaml
 +F:    drivers/phy/starfive/phy-jh7110-pcie.c
 +F:    drivers/phy/starfive/phy-jh7110-usb.c
 +
  STATIC BRANCH/CALL
  M:    Peter Zijlstra <[email protected]>
  M:    Josh Poimboeuf <[email protected]>
@@@ -20572,6 -20018,7 +20572,6 @@@ F:   drivers/pwm/pwm-stm32
  F:    include/linux/*/stm32-*tim*
  
  STMMAC ETHERNET DRIVER
 -M:    Giuseppe Cavallaro <[email protected]>
  M:    Alexandre Torgue <[email protected]>
  M:    Jose Abreu <[email protected]>
  L:    [email protected]
@@@ -20580,11 -20027,6 +20580,11 @@@ W: http://www.stlinux.co
  F:    Documentation/networking/device_drivers/ethernet/stmicro/
  F:    drivers/net/ethernet/stmicro/stmmac/
  
 +SUN HAPPY MEAL ETHERNET DRIVER
 +M:    Sean Anderson <[email protected]>
 +S:    Maintained
 +F:    drivers/net/ethernet/sun/sunhme.*
 +
  SUN3/3X
  M:    Sam Creasey <[email protected]>
  S:    Maintained
  S:    Maintained
  F:    drivers/net/ethernet/dlink/sundance.c
  
 -SUN HAPPY MEAL ETHERNET DRIVER
 -M:    Sean Anderson <[email protected]>
 -S:    Maintained
 -F:    drivers/net/ethernet/sun/sunhme.*
 -
  SUNPLUS ETHERNET DRIVER
  M:    Wells Lu <[email protected]>
  L:    [email protected]
@@@ -20628,6 -20075,15 +20628,6 @@@ S:  Maintaine
  F:    Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
  F:    drivers/nvmem/sunplus-ocotp.c
  
 -SUNPLUS USB2 PHY DRIVER
 -M:    Vincent Shih <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
 -F:    drivers/phy/sunplus/Kconfig
 -F:    drivers/phy/sunplus/Makefile
 -F:    drivers/phy/sunplus/phy-sunplus-usb2.c
 -
  SUNPLUS PWM DRIVER
  M:    Hammer Hsieh <[email protected]>
  S:    Maintained
@@@ -20654,15 -20110,6 +20654,15 @@@ S: Maintaine
  F:    Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
  F:    drivers/tty/serial/sunplus-uart.c
  
 +SUNPLUS USB2 PHY DRIVER
 +M:    Vincent Shih <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
 +F:    drivers/phy/sunplus/Kconfig
 +F:    drivers/phy/sunplus/Makefile
 +F:    drivers/phy/sunplus/phy-sunplus-usb2.c
 +
  SUNPLUS WATCHDOG DRIVER
  M:    Xiantao Hu <[email protected]>
  L:    [email protected]
@@@ -21074,14 -20521,6 +21074,14 @@@ F: include/linux/if_team.
  F:    include/uapi/linux/if_team.h
  F:    tools/testing/selftests/drivers/net/team/
  
 +TECHNICAL ADVISORY BOARD PROCESS DOCS
 +M:    "Theodore Ts'o" <[email protected]>
 +M:    Greg Kroah-Hartman <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/process/contribution-maturity-model.rst
 +F:    Documentation/process/researcher-guidelines.rst
 +
  TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
  M:    "Savoir-faire Linux Inc." <[email protected]>
  S:    Maintained
@@@ -21161,14 -20600,6 +21161,14 @@@ M: Thierry Reding <thierry.reding@gmail
  S:    Supported
  F:    drivers/pwm/pwm-tegra.c
  
 +TEGRA QUAD SPI DRIVER
 +M:    Thierry Reding <[email protected]>
 +M:    Jonathan Hunter <[email protected]>
 +M:    Sowjanya Komatineni <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/spi/spi-tegra210-quad.c
 +
  TEGRA SERIAL DRIVER
  M:    Laxman Dewangan <[email protected]>
  S:    Supported
@@@ -21179,17 -20610,22 +21179,17 @@@ M:        Laxman Dewangan <[email protected]
  S:    Supported
  F:    drivers/spi/spi-tegra*
  
 -TEGRA QUAD SPI DRIVER
 -M:    Thierry Reding <[email protected]>
 -M:    Jonathan Hunter <[email protected]>
 -M:    Sowjanya Komatineni <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/spi/spi-tegra210-quad.c
 -
  TEGRA VIDEO DRIVER
  M:    Thierry Reding <[email protected]>
  M:    Jonathan Hunter <[email protected]>
  M:    Sowjanya Komatineni <[email protected]>
 +M:    Luca Ceresoli <[email protected]>
  L:    [email protected]
  L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
 +F:    Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-vi.yaml
 +F:    Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-vip.yaml
  F:    drivers/staging/media/tegra-video/
  
  TEGRA XUSB PADCTL DRIVER
@@@ -21230,38 -20666,12 +21230,38 @@@ S:        Maintaine
  F:    Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
  F:    sound/soc/ti/
  
 -TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
 -M:    Ricardo Ribalda <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
 -F:    drivers/iio/dac/ti-dac7612.c
 +TEXAS INSTRUMENTS AUDIO (ASoC/HDA) DRIVERS
 +M:    Shenghao Ding <[email protected]>
 +M:    Kevin Lu <[email protected]>
 +M:    Baojun Xu <[email protected]>
 +L:    [email protected] (moderated for non-subscribers)
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/sound/tas2552.txt
 +F:    Documentation/devicetree/bindings/sound/tas2562.yaml
 +F:    Documentation/devicetree/bindings/sound/tas2770.yaml
 +F:    Documentation/devicetree/bindings/sound/tas27xx.yaml
 +F:    Documentation/devicetree/bindings/sound/ti,pcm1681.txt
 +F:    Documentation/devicetree/bindings/sound/ti,pcm3168a.yaml
 +F:    Documentation/devicetree/bindings/sound/ti,tlv320*.yaml
 +F:    Documentation/devicetree/bindings/sound/tlv320adcx140.yaml
 +F:    Documentation/devicetree/bindings/sound/tlv320aic31xx.txt
 +F:    Documentation/devicetree/bindings/sound/tpa6130a2.txt
 +F:    include/sound/tas2*.h
 +F:    include/sound/tlv320*.h
 +F:    include/sound/tpa6130a2-plat.h
 +F:    sound/pci/hda/tas2781_hda_i2c.c
 +F:    sound/soc/codecs/pcm1681.c
 +F:    sound/soc/codecs/pcm1789*.*
 +F:    sound/soc/codecs/pcm179x*.*
 +F:    sound/soc/codecs/pcm186x*.*
 +F:    sound/soc/codecs/pcm3008.*
 +F:    sound/soc/codecs/pcm3060*.*
 +F:    sound/soc/codecs/pcm3168a*.*
 +F:    sound/soc/codecs/pcm5102a.c
 +F:    sound/soc/codecs/pcm512x*.*
 +F:    sound/soc/codecs/tas2*.*
 +F:    sound/soc/codecs/tlv320*.*
 +F:    sound/soc/codecs/tpa6130a2.*
  
  TEXAS INSTRUMENTS DMA DRIVERS
  M:    Peter Ujfalusi <[email protected]>
@@@ -21271,26 -20681,10 +21271,26 @@@ F:        Documentation/devicetree/bindings/dm
  F:    Documentation/devicetree/bindings/dma/ti-edma.txt
  F:    Documentation/devicetree/bindings/dma/ti/
  F:    drivers/dma/ti/
 -X:    drivers/dma/ti/cppi41.c
 +F:    include/linux/dma/k3-psil.h
  F:    include/linux/dma/k3-udma-glue.h
  F:    include/linux/dma/ti-cppi5.h
 -F:    include/linux/dma/k3-psil.h
 +X:    drivers/dma/ti/cppi41.c
 +
 +TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
 +M:    Robert Marko <[email protected]>
 +M:    Luka Perkov <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
 +F:    Documentation/hwmon/tps23861.rst
 +F:    drivers/hwmon/tps23861.c
 +
 +TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
 +M:    Ricardo Ribalda <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
 +F:    drivers/iio/dac/ti-dac7612.c
  
  TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
  M:    Nishanth Menon <[email protected]>
@@@ -21311,11 -20705,20 +21311,11 @@@ F:        drivers/irqchip/irq-ti-sci-inta.
  F:    drivers/irqchip/irq-ti-sci-intr.c
  F:    drivers/reset/reset-ti-sci.c
  F:    drivers/soc/ti/ti_sci_inta_msi.c
 -F:    drivers/soc/ti/ti_sci_pm_domains.c
 +F:    drivers/genpd/ti/ti_sci_pm_domains.c
  F:    include/dt-bindings/soc/ti,sci_pm_domain.h
  F:    include/linux/soc/ti/ti_sci_inta_msi.h
  F:    include/linux/soc/ti/ti_sci_protocol.h
  
 -TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
 -M:    Robert Marko <[email protected]>
 -M:    Luka Perkov <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
 -F:    Documentation/hwmon/tps23861.rst
 -F:    drivers/hwmon/tps23861.c
 -
  TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
  M:    Puranjay Mohan <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/driver-api/thermal/power_allocator.rst
  F:    drivers/thermal/gov_power_allocator.c
 -F:    include/trace/events/thermal_power_allocator.h
 +F:    drivers/thermal/thermal_trace_ipa.h
  
  THINKPAD ACPI EXTRAS DRIVER
  M:    Henrique de Moraes Holschuh <[email protected]>
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
  F:    Documentation/devicetree/bindings/i2c/i2c-davinci.txt
 -F:    arch/arm/boot/dts/da850*
 +F:    arch/arm/boot/dts/ti/davinci/
  F:    arch/arm/mach-davinci/
  F:    drivers/i2c/busses/i2c-davinci.c
  
@@@ -21538,14 -20941,6 +21538,14 @@@ F: drivers/misc/tifm
  F:    drivers/mmc/host/tifm_sd.c
  F:    include/linux/tifm.h
  
 +TI FPD-LINK DRIVERS
 +M:    Tomi Valkeinen <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/media/i2c/ti,ds90*
 +F:    drivers/media/i2c/ds90*
 +F:    include/media/i2c/ds90*
 +
  TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
  M:    Nishanth Menon <[email protected]>
  M:    Santosh Shilimkar <[email protected]>
  L:    [email protected] (moderated for non-subscribers)
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
 +F:    drivers/genpd/ti/omap_prm.c
  F:    drivers/soc/ti/*
  
  TI LM49xxx FAMILY ASoC CODEC DRIVERS
@@@ -21686,6 -21080,7 +21686,6 @@@ F:   Documentation/hwmon/tmp401.rs
  F:    drivers/hwmon/tmp401.c
  
  TMP464 HARDWARE MONITOR DRIVER
 -M:    Agathe Porte <[email protected]>
  M:    Guenter Roeck <[email protected]>
  L:    [email protected]
  S:    Maintained
@@@ -21801,8 -21196,8 +21801,8 @@@ M:   Steven Rostedt <[email protected]
  M:    Masami Hiramatsu <[email protected]>
  L:    [email protected]
  L:    [email protected]
 -Q:    https://patchwork.kernel.org/project/linux-trace-kernel/list/
  S:    Maintained
 +Q:    https://patchwork.kernel.org/project/linux-trace-kernel/list/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
  F:    Documentation/trace/*
  F:    fs/tracefs/
@@@ -21830,33 -21225,48 +21830,33 @@@ TRACING OS NOISE / LATENCY TRACER
  M:    Steven Rostedt <[email protected]>
  M:    Daniel Bristot de Oliveira <[email protected]>
  S:    Maintained
 -F:    kernel/trace/trace_osnoise.c
 +F:    Documentation/trace/hwlat_detector.rst
 +F:    Documentation/trace/osnoise-tracer.rst
 +F:    Documentation/trace/timerlat-tracer.rst
 +F:    arch/*/kernel/trace.c
  F:    include/trace/events/osnoise.h
  F:    kernel/trace/trace_hwlat.c
  F:    kernel/trace/trace_irqsoff.c
 +F:    kernel/trace/trace_osnoise.c
  F:    kernel/trace/trace_sched_wakeup.c
 -F:    Documentation/trace/osnoise-tracer.rst
 -F:    Documentation/trace/timerlat-tracer.rst
 -F:    Documentation/trace/hwlat_detector.rst
 -F:    arch/*/kernel/trace.c
 -
 -Real-time Linux Analysis (RTLA) tools
 -M:    Daniel Bristot de Oliveira <[email protected]>
 -M:    Steven Rostedt <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/tools/rtla/
 -F:    tools/tracing/rtla/
 -
 -TECHNICAL ADVISORY BOARD PROCESS DOCS
 -M:    "Theodore Ts'o" <[email protected]>
 -M:    Greg Kroah-Hartman <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/process/researcher-guidelines.rst
 -F:    Documentation/process/contribution-maturity-model.rst
  
  TRADITIONAL CHINESE DOCUMENTATION
 -M:    Hu Haowen <[email protected]>
 -L:    [email protected] (moderated for non-subscribers)
 +M:    Hu Haowen <[email protected]>
  S:    Maintained
  W:    https://github.com/srcres258/linux-doc
  T:    git git://github.com/srcres258/linux-doc.git doc-zh-tw
  F:    Documentation/translations/zh_TW/
  
 -TTY LAYER
 +TTY LAYER AND SERIAL DRIVERS
  M:    Greg Kroah-Hartman <[email protected]>
  M:    Jiri Slaby <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
  S:    Supported
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
 +F:    Documentation/devicetree/bindings/serial/
  F:    Documentation/driver-api/serial/
  F:    drivers/tty/
 -F:    drivers/tty/serial/serial_core.c
  F:    include/linux/selection.h
  F:    include/linux/serial.h
  F:    include/linux/serial_core.h
@@@ -21885,14 -21295,11 +21885,14 @@@ S:        Orpha
  F:    drivers/net/ethernet/dec/tulip/
  
  TUN/TAP driver
 -M:    Maxim Krasnyansky <[email protected]>
 +M:    Willem de Bruijn <[email protected]>
 +M:    Jason Wang <[email protected]>
  S:    Maintained
  W:    http://vtun.sourceforge.net/tun
  F:    Documentation/networking/tuntap.rst
  F:    arch/um/os-Linux/drivers/
 +F:    drivers/net/tap.c
 +F:    drivers/net/tun.c
  
  TURBOCHANNEL SUBSYSTEM
  M:    "Maciej W. Rozycki" <[email protected]>
@@@ -21978,8 -21385,10 +21978,8 @@@ F:  include/uapi/linux/ublk_cmd.
  UCLINUX (M68KNOMMU AND COLDFIRE)
  M:    Greg Ungerer <[email protected]>
  L:    [email protected]
 -L:    [email protected]  (subscribers-only)
  S:    Maintained
  W:    http://www.linux-m68k.org/
 -W:    http://www.uclinux.org/
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
  F:    arch/m68k/*/*_no.*
  F:    arch/m68k/68*/
@@@ -22005,7 -21414,7 +22005,7 @@@ F:   Documentation/admin-guide/ufs.rs
  F:    fs/ufs/
  
  UHID USERSPACE HID IO DRIVER
 -M:    David Rheinsberg <david[email protected]>
 +M:    David Rheinsberg <david@readahead.eu>
  L:    [email protected]
  S:    Maintained
  F:    drivers/hid/uhid.c
@@@ -22115,8 -21524,9 +22115,8 @@@ S:   Maintaine
  F:    drivers/usb/misc/apple-mfi-fastcharge.c
  
  USB AR5523 WIRELESS DRIVER
 -M:    Pontus Fuchs <[email protected]>
  L:    [email protected]
 -S:    Maintained
 +S:    Orphan
  F:    drivers/net/wireless/ath/ar5523/
  
  USB ATTACHED SCSI
@@@ -22199,8 -21609,8 +22199,8 @@@ USB ISP1760 DRIVE
  M:    Rui Miguel Silva <[email protected]>
  L:    [email protected]
  S:    Maintained
 -F:    drivers/usb/isp1760/*
  F:    Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
 +F:    drivers/usb/isp1760/*
  
  USB LAN78XX ETHERNET DRIVER
  M:    Woojung Huh <[email protected]>
  S:    Supported
  F:    drivers/usb/class/usblp.c
  
 +USB QMI WWAN NETWORK DRIVER
 +M:    Bjørn Mork <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/ABI/testing/sysfs-class-net-qmi
 +F:    drivers/net/usb/qmi_wwan.c
 +
  USB RAW GADGET DRIVER
  R:    Andrey Konovalov <[email protected]>
  L:    [email protected]
@@@ -22286,6 -21689,13 +22286,6 @@@ F:  Documentation/usb/raw-gadget.rs
  F:    drivers/usb/gadget/legacy/raw_gadget.c
  F:    include/uapi/linux/usb/raw_gadget.h
  
 -USB QMI WWAN NETWORK DRIVER
 -M:    Bjørn Mork <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    Documentation/ABI/testing/sysfs-class-net-qmi
 -F:    drivers/net/usb/qmi_wwan.c
 -
  USB RTL8150 DRIVER
  M:    Petko Manolov <[email protected]>
  L:    [email protected]
@@@ -22329,7 -21739,6 +22329,7 @@@ F:   drivers/usb
  F:    include/dt-bindings/usb/
  F:    include/linux/usb.h
  F:    include/linux/usb/
 +F:    include/uapi/linux/usb/
  
  USB TYPEC BUS FOR ALTERNATE MODES
  M:    Heikki Krogerus <[email protected]>
@@@ -22393,9 -21802,10 +22393,9 @@@ F:  drivers/usb/gadget/legacy/webcam.
  F:    include/uapi/linux/usb/g_uvc.h
  
  USB WIRELESS RNDIS DRIVER (rndis_wlan)
 -M:    Jussi Kivilinna <[email protected]>
  L:    [email protected]
 -S:    Maintained
 -F:    drivers/net/wireless/rndis_wlan.c
 +S:    Orphan
 +F:    drivers/net/wireless/legacy/rndis_wlan.c
  
  USB XHCI DRIVER
  M:    Mathias Nyman <[email protected]>
  S:    Maintained
  F:    drivers/clk/ux500/
  
 +V4L2 ASYNC AND FWNODE FRAMEWORKS
 +M:    Sakari Ailus <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +T:    git git://linuxtv.org/media_tree.git
 +F:    drivers/media/v4l2-core/v4l2-async.c
 +F:    drivers/media/v4l2-core/v4l2-fwnode.c
 +F:    include/media/v4l2-async.h
 +F:    include/media/v4l2-fwnode.h
 +
 +V4L2 LENS DRIVERS
 +M:    Sakari Ailus <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/media/i2c/ak*
 +F:    drivers/media/i2c/dw*
 +F:    drivers/media/i2c/lm*
 +
 +V4L2 CAMERA SENSOR DRIVERS
 +M:    Sakari Ailus <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/driver-api/media/camera-sensor.rst
 +F:    Documentation/driver-api/media/tx-rx.rst
 +F:    drivers/media/i2c/ar*
 +F:    drivers/media/i2c/hi*
 +F:    drivers/media/i2c/imx*
 +F:    drivers/media/i2c/mt*
 +F:    drivers/media/i2c/og*
 +F:    drivers/media/i2c/ov*
 +F:    drivers/media/i2c/s5*
 +F:    drivers/media/i2c/st-vgxy61.c
 +
  VF610 NAND DRIVER
  M:    Stefan Agner <[email protected]>
  L:    [email protected]
@@@ -22536,13 -21913,6 +22536,13 @@@ F: Documentation/filesystems/vfat.rs
  F:    fs/fat/
  F:    tools/testing/selftests/filesystems/fat/
  
 +VFIO CDX DRIVER
 +M:    Nipun Gupta <[email protected]>
 +M:    Nikhil Agarwal <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/vfio/cdx/*
 +
  VFIO DRIVER
  M:    Alex Williamson <[email protected]>
  L:    [email protected]
@@@ -22577,12 -21947,6 +22577,12 @@@ F: drivers/vfio/mdev
  F:    include/linux/mdev.h
  F:    samples/vfio-mdev/
  
 +VFIO MLX5 PCI DRIVER
 +M:    Yishai Hadas <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/vfio/pci/mlx5/
 +
  VFIO PCI DEVICE SPECIFIC DRIVERS
  R:    Jason Gunthorpe <[email protected]>
  R:    Yishai Hadas <[email protected]>
@@@ -22593,18 -21957,17 +22593,18 @@@ S:        Maintaine
  P:    Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
  F:    drivers/vfio/pci/*/
  
 -VFIO PLATFORM DRIVER
 -M:    Eric Auger <eric.auger@redhat.com>
 +VFIO PDS PCI DRIVER
 +M:    Brett Creeley <brett.creeley@amd.com>
  L:    [email protected]
  S:    Maintained
 -F:    drivers/vfio/platform/
 +F:    Documentation/networking/device_drivers/ethernet/amd/pds_vfio_pci.rst
 +F:    drivers/vfio/pci/pds/
  
 -VFIO MLX5 PCI DRIVER
 -M:    Yishai Hadas <yishaih@nvidia.com>
 +VFIO PLATFORM DRIVER
 +M:    Eric Auger <eric.auger@redhat.com>
  L:    [email protected]
  S:    Maintained
 -F:    drivers/vfio/pci/mlx5/
 +F:    drivers/vfio/platform/
  
  VGA_SWITCHEROO
  R:    Lukas Wunner <[email protected]>
@@@ -22615,8 -21978,8 +22615,8 @@@ F:   drivers/gpu/vga/vga_switcheroo.
  F:    include/linux/vga_switcheroo.h
  
  VIA RHINE NETWORK DRIVER
 -S:    Maintained
  M:    Kevin Brace <[email protected]>
 +S:    Maintained
  F:    drivers/net/ethernet/via/via-rhine.c
  
  VIA SD/MMC CARD CONTROLLER DRIVER
  S:    Maintained
  F:    drivers/video/fbdev/via/
  F:    include/linux/via-core.h
 -F:    include/linux/via-gpio.h
  F:    include/linux/via_i2c.h
  
  VIA VELOCITY NETWORK DRIVER
@@@ -22667,14 -22031,6 +22667,14 @@@ S: Maintaine
  F:    drivers/media/common/videobuf2/*
  F:    include/media/videobuf2-*
  
 +VIDTV VIRTUAL DIGITAL TV DRIVER
 +M:    Daniel W. S. Almeida <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +W:    https://linuxtv.org
 +T:    git git://linuxtv.org/media_tree.git
 +F:    drivers/media/test-drivers/vidtv/*
 +
  VIMC VIRTUAL MEDIA CONTROLLER DRIVER
  M:    Shuah Khan <[email protected]>
  R:    Kieran Bingham <[email protected]>
@@@ -22704,16 -22060,6 +22704,16 @@@ F: include/uapi/linux/virtio_vsock.
  F:    net/vmw_vsock/virtio_transport.c
  F:    net/vmw_vsock/virtio_transport_common.c
  
 +VIRTIO BALLOON
 +M:    "Michael S. Tsirkin" <[email protected]>
 +M:    David Hildenbrand <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/virtio/virtio_balloon.c
 +F:    include/linux/balloon_compaction.h
 +F:    include/uapi/linux/virtio_balloon.h
 +F:    mm/balloon_compaction.c
 +
  VIRTIO BLOCK AND SCSI DRIVERS
  M:    "Michael S. Tsirkin" <[email protected]>
  M:    Jason Wang <[email protected]>
  S:    Maintained
  F:    drivers/block/virtio_blk.c
  F:    drivers/scsi/virtio_scsi.c
 -F:    drivers/vhost/scsi.c
  F:    include/uapi/linux/virtio_blk.h
  F:    include/uapi/linux/virtio_scsi.h
  
@@@ -22737,7 -22084,6 +22737,7 @@@ F:   include/uapi/linux/virtio_console.
  VIRTIO CORE AND NET DRIVERS
  M:    "Michael S. Tsirkin" <[email protected]>
  M:    Jason Wang <[email protected]>
 +R:    Xuan Zhuo <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/ABI/testing/sysfs-bus-vdpa
@@@ -22751,10 -22097,33 +22751,10 @@@ F:        drivers/vdpa
  F:    drivers/virtio/
  F:    include/linux/vdpa.h
  F:    include/linux/virtio*.h
 +F:    include/linux/vringh.h
  F:    include/uapi/linux/virtio_*.h
  F:    tools/virtio/
  
 -VISL VIRTUAL STATELESS DECODER DRIVER
 -M:    Daniel Almeida <[email protected]>
 -L:    [email protected]
 -S:    Supported
 -F:    drivers/media/test-drivers/visl
 -
 -IFCVF VIRTIO DATA PATH ACCELERATOR
 -R:    Zhu Lingshan <[email protected]>
 -F:    drivers/vdpa/ifcvf/
 -
 -SNET DPU VIRTIO DATA PATH ACCELERATOR
 -R:    Alvaro Karsz <[email protected]>
 -F:    drivers/vdpa/solidrun/
 -
 -VIRTIO BALLOON
 -M:    "Michael S. Tsirkin" <[email protected]>
 -M:    David Hildenbrand <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/virtio/virtio_balloon.c
 -F:    include/uapi/linux/virtio_balloon.h
 -F:    include/linux/balloon_compaction.h
 -F:    mm/balloon_compaction.c
 -
  VIRTIO CRYPTO DRIVER
  M:    Gonglei <[email protected]>
  L:    [email protected]
@@@ -22815,30 -22184,11 +22815,30 @@@ L:        [email protected]
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
 -F:    kernel/vhost_task.c
  F:    drivers/vhost/
  F:    include/linux/sched/vhost_task.h
  F:    include/linux/vhost_iotlb.h
  F:    include/uapi/linux/vhost.h
 +F:    kernel/vhost_task.c
 +
 +VIRTIO HOST (VHOST-SCSI)
 +M:    "Michael S. Tsirkin" <[email protected]>
 +M:    Jason Wang <[email protected]>
 +M:    Mike Christie <[email protected]>
 +R:    Paolo Bonzini <[email protected]>
 +R:    Stefan Hajnoczi <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/vhost/scsi.c
 +
 +VIRTIO I2C DRIVER
 +M:    Conghui Chen <[email protected]>
 +M:    Viresh Kumar <[email protected]>
 +L:    [email protected]
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/i2c/busses/i2c-virtio.c
 +F:    include/uapi/linux/virtio_i2c.h
  
  VIRTIO INPUT DRIVER
  M:    Gerd Hoffmann <[email protected]>
@@@ -22861,13 -22211,6 +22861,13 @@@ W: https://virtio-mem.gitlab.io
  F:    drivers/virtio/virtio_mem.c
  F:    include/uapi/linux/virtio_mem.h
  
 +VIRTIO PMEM DRIVER
 +M:    Pankaj Gupta <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    drivers/nvdimm/nd_virtio.c
 +F:    drivers/nvdimm/virtio_pmem.c
 +
  VIRTIO SOUND DRIVER
  M:    Anton Yakovlev <[email protected]>
  M:    "Michael S. Tsirkin" <[email protected]>
@@@ -22877,6 -22220,22 +22877,6 @@@ S:  Maintaine
  F:    include/uapi/linux/virtio_snd.h
  F:    sound/virtio/*
  
 -VIRTIO I2C DRIVER
 -M:    Conghui Chen <[email protected]>
 -M:    Viresh Kumar <[email protected]>
 -L:    [email protected]
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/i2c/busses/i2c-virtio.c
 -F:    include/uapi/linux/virtio_i2c.h
 -
 -VIRTIO PMEM DRIVER
 -M:    Pankaj Gupta <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    drivers/nvdimm/virtio_pmem.c
 -F:    drivers/nvdimm/nd_virtio.c
 -
  VIRTUAL BOX GUEST DEVICE DRIVER
  M:    Hans de Goede <[email protected]>
  M:    Arnd Bergmann <[email protected]>
@@@ -22892,26 -22251,12 +22892,26 @@@ L:        [email protected]
  S:    Maintained
  F:    fs/vboxsf/*
  
 +VIRTUAL PCM TEST DRIVER
 +M:    Ivan Orlov <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/sound/cards/pcmtest.rst
 +F:    sound/drivers/pcmtest.c
 +F:    tools/testing/selftests/alsa/test-pcmtest-driver.c
 +
  VIRTUAL SERIO DEVICE DRIVER
  M:    Stephen Chandler Paul <[email protected]>
  S:    Maintained
  F:    drivers/input/serio/userio.c
  F:    include/uapi/linux/userio.h
  
 +VISL VIRTUAL STATELESS DECODER DRIVER
 +M:    Daniel Almeida <[email protected]>
 +L:    [email protected]
 +S:    Supported
 +F:    drivers/media/test-drivers/visl
 +
  VIVID VIRTUAL VIDEO DRIVER
  M:    Hans Verkuil <[email protected]>
  L:    [email protected]
@@@ -22920,6 -22265,14 +22920,6 @@@ W:  https://linuxtv.or
  T:    git git://linuxtv.org/media_tree.git
  F:    drivers/media/test-drivers/vivid/*
  
 -VIDTV VIRTUAL DIGITAL TV DRIVER
 -M:    Daniel W. S. Almeida <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -W:    https://linuxtv.org
 -T:    git git://linuxtv.org/media_tree.git
 -F:    drivers/media/test-drivers/vidtv/*
 -
  VLYNQ BUS
  M:    Florian Fainelli <[email protected]>
  L:    [email protected] (subscribers-only)
@@@ -22927,6 -22280,16 +22927,6 @@@ S:  Maintaine
  F:    drivers/vlynq/vlynq.c
  F:    include/linux/vlynq.h
  
 -VME SUBSYSTEM
 -M:    Martyn Welch <[email protected]>
 -M:    Manohar Vanga <[email protected]>
 -M:    Greg Kroah-Hartman <[email protected]>
 -L:    [email protected]
 -S:    Odd fixes
 -T:    git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
 -F:    Documentation/driver-api/vme.rst
 -F:    drivers/staging/vme_user/
 -
  VM SOCKETS (AF_VSOCK)
  M:    Stefano Garzarella <[email protected]>
  L:    [email protected]
@@@ -22940,28 -22303,6 +22940,28 @@@ F: include/uapi/linux/vsockmon.
  F:    net/vmw_vsock/
  F:    tools/testing/vsock/
  
 +VMALLOC
 +M:    Andrew Morton <[email protected]>
 +R:    Uladzislau Rezki <[email protected]>
 +R:    Christoph Hellwig <[email protected]>
 +R:    Lorenzo Stoakes <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +W:    http://www.linux-mm.org
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
 +F:    include/linux/vmalloc.h
 +F:    mm/vmalloc.c
 +
 +VME SUBSYSTEM
 +M:    Martyn Welch <[email protected]>
 +M:    Manohar Vanga <[email protected]>
 +M:    Greg Kroah-Hartman <[email protected]>
 +L:    [email protected]
 +S:    Odd fixes
 +T:    git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
 +F:    Documentation/driver-api/vme.rst
 +F:    drivers/staging/vme_user/
 +
  VMWARE BALLOON DRIVER
  M:    Nadav Amit <[email protected]>
  R:    VMware PV-Drivers Reviewers <[email protected]>
@@@ -22970,7 -22311,7 +22970,7 @@@ S:   Supporte
  F:    drivers/misc/vmw_balloon.c
  
  VMWARE HYPERVISOR INTERFACE
 -M:    Srivatsa S. Bhat (VMware) <[email protected]>
 +M:    Ajay Kaher <[email protected]>
  M:    Alexey Makhalov <[email protected]>
  R:    VMware PV-Drivers Reviewers <[email protected]>
  L:    [email protected]
@@@ -22997,8 -22338,8 +22997,8 @@@ F:   drivers/scsi/vmw_pvscsi.
  F:    drivers/scsi/vmw_pvscsi.h
  
  VMWARE VIRTUAL PTP CLOCK DRIVER
 -M:    Srivatsa S. Bhat (VMware) <[email protected]>
  M:    Deep Shah <[email protected]>
 +R:    Ajay Kaher <[email protected]>
  R:    Alexey Makhalov <[email protected]>
  R:    VMware PV-Drivers Reviewers <[email protected]>
  L:    [email protected]
@@@ -23072,9 -22413,9 +23072,9 @@@ F:   drivers/net/vrf.
  VSPRINTF
  M:    Petr Mladek <[email protected]>
  M:    Steven Rostedt <[email protected]>
- M:    Sergey Senozhatsky <[email protected]>
  R:    Andy Shevchenko <[email protected]>
  R:    Rasmus Villemoes <[email protected]>
+ R:    Sergey Senozhatsky <[email protected]>
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
  F:    Documentation/core-api/printk-formats.rst
@@@ -23101,7 -22442,7 +23101,7 @@@ S:   Orpha
  F:    drivers/mmc/host/vub300.c
  
  W1 DALLAS'S 1-WIRE BUS
 -M:    Evgeniy Polyakov <[email protected]>
 +M:    Krzysztof Kozlowski <[email protected]>
  S:    Maintained
  F:    Documentation/devicetree/bindings/w1/
  F:    Documentation/w1/
@@@ -23143,12 -22484,11 +23143,12 @@@ F:        drivers/input/tablet/wacom_serial4.
  WANGXUN ETHERNET DRIVER
  M:    Jiawen Wu <[email protected]>
  M:    Mengyuan Lou <[email protected]>
 -W:    https://www.net-swift.com
  L:    [email protected]
  S:    Maintained
 +W:    https://www.net-swift.com
  F:    Documentation/networking/device_drivers/ethernet/wangxun/*
  F:    drivers/net/ethernet/wangxun/
 +F:    drivers/net/pcs/pcs-xpcs-wx.c
  
  WATCHDOG DEVICE DRIVERS
  M:    Wim Van Sebroeck <[email protected]>
@@@ -23161,8 -22501,8 +23161,8 @@@ F:   Documentation/devicetree/bindings/wa
  F:    Documentation/watchdog/
  F:    drivers/watchdog/
  F:    include/linux/watchdog.h
 -F:    include/uapi/linux/watchdog.h
  F:    include/trace/events/watchdog.h
 +F:    include/uapi/linux/watchdog.h
  
  WHISKEYCOVE PMIC GPIO DRIVER
  M:    Kuppuswamy Sathyanarayanan <[email protected]>
@@@ -23177,7 -22517,7 +23177,7 @@@ S:   Maintaine
  F:    drivers/rtc/rtc-sd3078.c
  
  WIIMOTE HID DRIVER
 -M:    David Rheinsberg <david[email protected]>
 +M:    David Rheinsberg <david@readahead.eu>
  L:    [email protected]
  S:    Maintained
  F:    drivers/hid/hid-wiimote*
@@@ -23194,8 -22534,9 +23194,8 @@@ S:   Maintaine
  F:    drivers/media/rc/winbond-cir.c
  
  WINSYSTEMS EBC-C384 WATCHDOG DRIVER
 -M:    William Breathitt Gray <[email protected]>
  L:    [email protected]
 -S:    Maintained
 +S:    Orphan
  F:    drivers/watchdog/ebc-c384_wdt.c
  
  WINSYSTEMS WS16C48 GPIO DRIVER
@@@ -23219,17 -22560,8 +23219,17 @@@ F: drivers/input/misc/wistron_btns.
  
  WL3501 WIRELESS PCMCIA CARD DRIVER
  L:    [email protected]
 -S:    Odd fixes
 -F:    drivers/net/wireless/wl3501*
 +S:    Orphan
 +F:    drivers/net/wireless/legacy/wl3501*
 +
 +WMI BINARY MOF DRIVER
 +M:    Armin Wolf <[email protected]>
 +R:    Thomas Weißschuh <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    Documentation/ABI/stable/sysfs-platform-wmi-bmof
 +F:    Documentation/wmi/devices/wmi-bmof.rst
 +F:    drivers/platform/x86/wmi-bmof.c
  
  WOLFSON MICROELECTRONICS DRIVERS
  L:    [email protected]
@@@ -23280,7 -22612,6 +23280,7 @@@ T:   git git://git.kernel.org/pub/scm/lin
  F:    Documentation/core-api/workqueue.rst
  F:    include/linux/workqueue.h
  F:    kernel/workqueue.c
 +F:    kernel/workqueue_internal.h
  
  WWAN DRIVERS
  M:    Loic Poulain <[email protected]>
@@@ -23328,8 -22659,8 +23328,8 @@@ R:   "H. Peter Anvin" <[email protected]
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
 -F:    Documentation/devicetree/bindings/x86/
  F:    Documentation/arch/x86/
 +F:    Documentation/devicetree/bindings/x86/
  F:    arch/x86/
  
  X86 ENTRY CODE
@@@ -23378,7 -22709,7 +23378,7 @@@ M:   Hans de Goede <[email protected]
  L:    [email protected]
  S:    Maintained
  T:    git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
 -F:    drivers/platform/x86/x86-android-tablets.c
 +F:    drivers/platform/x86/x86-android-tablets/
  
  X86 PLATFORM DRIVERS
  M:    Hans de Goede <[email protected]>
@@@ -23401,8 -22732,7 +23401,8 @@@ F:   arch/x86/platfor
  
  X86 PLATFORM UV HPE SUPERDOME FLEX
  M:    Steve Wahl <[email protected]>
 -R:    Mike Travis <[email protected]>
 +R:    Justin Ernst <[email protected]>
 +R:    Kyle Meyer <[email protected]>
  R:    Dimitri Sivanich <[email protected]>
  R:    Russ Anderson <[email protected]>
  S:    Supported
@@@ -23461,8 -22791,6 +23461,8 @@@ M:   John Fastabend <john.fastabend@gmail
  L:    [email protected]
  L:    [email protected]
  S:    Supported
 +F:    drivers/net/ethernet/*/*/*/*/*xdp*
 +F:    drivers/net/ethernet/*/*/*xdp*
  F:    include/net/xdp.h
  F:    include/net/xdp_priv.h
  F:    include/trace/events/xdp.h
@@@ -23470,8 -22798,10 +23470,8 @@@ F:  kernel/bpf/cpumap.
  F:    kernel/bpf/devmap.c
  F:    net/core/xdp.c
  F:    samples/bpf/xdp*
 -F:    tools/testing/selftests/bpf/*xdp*
  F:    tools/testing/selftests/bpf/*/*xdp*
 -F:    drivers/net/ethernet/*/*/*/*/*xdp*
 -F:    drivers/net/ethernet/*/*/*xdp*
 +F:    tools/testing/selftests/bpf/*xdp*
  K:    (?:\b|_)xdp(?:\b|_)
  
  XDP SOCKETS (AF_XDP)
@@@ -23483,11 -22813,11 +23483,11 @@@ L:        [email protected]
  L:    [email protected]
  S:    Maintained
  F:    Documentation/networking/af_xdp.rst
 +F:    include/net/netns/xdp.h
  F:    include/net/xdp_sock*
  F:    include/net/xsk_buff_pool.h
  F:    include/uapi/linux/if_xdp.h
  F:    include/uapi/linux/xdp_diag.h
 -F:    include/net/netns/xdp.h
  F:    net/xdp/
  F:    tools/testing/selftests/bpf/*xsk*
  
@@@ -23589,14 -22919,12 +23589,14 @@@ F:        include/xen/arm/swiotlb-xen.
  F:    include/xen/swiotlb-xen.h
  
  XFS FILESYSTEM
 -C:    irc://irc.oftc.net/xfs
 -M:    Darrick J. Wong <[email protected]>
 +M:    Chandan Babu R <[email protected]>
 +R:    Darrick J. Wong <[email protected]>
  L:    [email protected]
  S:    Supported
  W:    http://xfs.org/
 +C:    irc://irc.oftc.net/xfs
  T:    git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
 +P:    Documentation/filesystems/xfs-maintainer-entry-profile.rst
  F:    Documentation/ABI/testing/sysfs-fs-xfs
  F:    Documentation/admin-guide/xfs.rst
  F:    Documentation/filesystems/xfs-delayed-logging-design.rst
@@@ -23613,9 -22941,8 +23613,9 @@@ F:   Documentation/devicetree/bindings/ii
  F:    drivers/iio/adc/xilinx-ams.c
  
  XILINX AXI ETHERNET DRIVER
 -M:    Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
 +M:    Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>
  S:    Maintained
 +F:    Documentation/devicetree/bindings/net/xlnx,axi-ethernet.yaml
  F:    drivers/net/ethernet/xilinx/xilinx_axienet*
  
  XILINX CAN DRIVER
@@@ -23626,31 -22953,19 +23626,31 @@@ S:        Maintaine
  F:    Documentation/devicetree/bindings/net/can/xilinx,can.yaml
  F:    drivers/net/can/xilinx_can.c
  
 +XILINX EVENT MANAGEMENT DRIVER
 +M:    Abhyuday Godhasara <[email protected]>
 +S:    Maintained
 +F:    drivers/soc/xilinx/xlnx_event_manager.c
 +F:    include/linux/firmware/xlnx-event-manager.h
 +
  XILINX GPIO DRIVER
 -M:    Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
 -R:    Srinivas Neeli <srinivas.neeli@xilinx.com>
 -R:    Michal Simek <michal.simek@xilinx.com>
 +M:    Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
 +R:    Srinivas Neeli <srinivas.neeli@amd.com>
 +R:    Michal Simek <michal.simek@amd.com>
  S:    Maintained
 -F:    Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
  F:    Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
 +F:    Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
  F:    drivers/gpio/gpio-xilinx.c
  F:    drivers/gpio/gpio-zynq.c
  
 +XILINX PWM DRIVER
 +M:    Sean Anderson <[email protected]>
 +S:    Maintained
 +F:    drivers/pwm/pwm-xilinx.c
 +F:    include/clocksource/timer-xilinx.h
 +
  XILINX SD-FEC IP CORES
 -M:    Derek Kiernan <derek.kiernan@xilinx.com>
 -M:    Dragan Cvetic <dragan.cvetic@xilinx.com>
 +M:    Derek Kiernan <derek.kiernan@amd.com>
 +M:    Dragan Cvetic <dragan.cvetic@amd.com>
  S:    Maintained
  F:    Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
  F:    Documentation/misc-devices/xilinx_sdfec.rst
@@@ -23659,6 -22974,12 +23659,6 @@@ F:  drivers/misc/Makefil
  F:    drivers/misc/xilinx_sdfec.c
  F:    include/uapi/misc/xilinx_sdfec.h
  
 -XILINX PWM DRIVER
 -M:    Sean Anderson <[email protected]>
 -S:    Maintained
 -F:    drivers/pwm/pwm-xilinx.c
 -F:    include/clocksource/timer-xilinx.h
 -
  XILINX UARTLITE SERIAL DRIVER
  M:    Peter Korsgaard <[email protected]>
  L:    [email protected]
@@@ -23666,6 -22987,7 +23666,6 @@@ S:   Maintaine
  F:    drivers/tty/serial/uartlite.c
  
  XILINX VIDEO IP CORES
 -M:    Hyun Kwon <[email protected]>
  M:    Laurent Pinchart <[email protected]>
  L:    [email protected]
  S:    Supported
@@@ -23674,16 -22996,6 +23674,16 @@@ F: Documentation/devicetree/bindings/me
  F:    drivers/media/platform/xilinx/
  F:    include/uapi/linux/xilinx-v4l2-controls.h
  
 +XILINX WATCHDOG DRIVER
 +M:    Srinivas Neeli <[email protected]>
 +R:    Shubhrajyoti Datta <[email protected]>
 +R:    Michal Simek <[email protected]>
 +S:    Maintained
 +F:    Documentation/devicetree/bindings/watchdog/xlnx,versal-wwdt.yaml
 +F:    Documentation/devicetree/bindings/watchdog/xlnx,xps-timebase-wdt.yaml
 +F:    drivers/watchdog/of_xilinx_wdt.c
 +F:    drivers/watchdog/xilinx_wwdt.c
 +
  XILINX XDMA DRIVER
  M:    Lizhi Hou <[email protected]>
  M:    Brian Xu <[email protected]>
@@@ -23696,6 -23008,7 +23696,6 @@@ F:   include/linux/dma/amd_xdma.
  F:    include/linux/platform_data/amd_xdma.h
  
  XILINX ZYNQMP DPDMA DRIVER
 -M:    Hyun Kwon <[email protected]>
  M:    Laurent Pinchart <[email protected]>
  L:    [email protected]
  S:    Supported
@@@ -23711,6 -23024,7 +23711,6 @@@ F:   Documentation/devicetree/bindings/me
  F:    drivers/edac/zynqmp_edac.c
  
  XILINX ZYNQMP PSGTR PHY DRIVER
 -M:    Anurag Kumar Vulisha <[email protected]>
  M:    Laurent Pinchart <[email protected]>
  L:    [email protected]
  S:    Supported
@@@ -23719,10 -23033,16 +23719,10 @@@ F:        Documentation/devicetree/bindings/ph
  F:    drivers/phy/xilinx/phy-zynqmp.c
  
  XILINX ZYNQMP SHA3 DRIVER
 -M:    Harsha <harsha.harsha@xilinx.com>
 +M:    Harsha <harsha.harsha@amd.com>
  S:    Maintained
  F:    drivers/crypto/xilinx/zynqmp-sha.c
  
 -XILINX EVENT MANAGEMENT DRIVER
 -M:    Abhyuday Godhasara <[email protected]>
 -S:    Maintained
 -F:    drivers/soc/xilinx/xlnx_event_manager.c
 -F:    include/linux/firmware/xlnx-event-manager.h
 -
  XILLYBUS DRIVER
  M:    Eli Billauer <[email protected]>
  L:    [email protected]
@@@ -23738,6 -23058,7 +23738,6 @@@ F:   drivers/i2c/busses/i2c-xlp9xx.
  
  XRA1403 GPIO EXPANDER
  M:    Nandor Han <[email protected]>
 -M:    Semi Malinen <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
@@@ -23770,13 -23091,6 +23770,13 @@@ S: Maintaine
  F:    Documentation/input/devices/yealink.rst
  F:    drivers/input/misc/yealink.*
  
 +Z3FOLD COMPRESSED PAGE ALLOCATOR
 +M:    Vitaly Wool <[email protected]>
 +R:    Miaohe Lin <[email protected]>
 +L:    [email protected]
 +S:    Maintained
 +F:    mm/z3fold.c
 +
  Z8530 DRIVER FOR AX.25
  M:    Joerg Reuter <[email protected]>
  L:    [email protected]
  S:    Maintained
  F:    mm/zbud.c
  
 -Z3FOLD COMPRESSED PAGE ALLOCATOR
 -M:    Vitaly Wool <[email protected]>
 -R:    Miaohe Lin <[email protected]>
 -L:    [email protected]
 -S:    Maintained
 -F:    mm/z3fold.c
 -
  ZD1211RW WIRELESS DRIVER
 -M:    Ulrich Kunitz <[email protected]>
  L:    [email protected]
 -L:    [email protected] (subscribers-only)
 -S:    Maintained
 -W:    http://zd1211.ath.cx/wiki/DriverRewrite
 +S:    Orphan
  F:    drivers/net/wireless/zydas/zd1211rw/
  
  ZD1301 MEDIA DRIVER
@@@ -23877,10 -23201,10 +23877,10 @@@ M:        Nick Terrell <[email protected]
  S:    Maintained
  B:    https://github.com/facebook/zstd/issues
  T:    git https://github.com/terrelln/linux.git
 +F:    crypto/zstd.c
  F:    include/linux/zstd*
 -F:    lib/zstd/
  F:    lib/decompress_unzstd.c
 -F:    crypto/zstd.c
 +F:    lib/zstd/
  N:    zstd
  K:    zstd
  
index 813cb6cf72d6b59bcf73edf75c761334e0b7fd73,e9139dfc1f0a88098b33e866d738da7b1da3ffbd..9443bc63c5a245548a1390ee85dd096091649607
@@@ -131,7 -131,6 +131,7 @@@ char kdb_getchar(void
        int escape_delay = 0;
        get_char_func *f, *f_prev = NULL;
        int key;
 +      static bool last_char_was_cr;
  
        for (f = &kdb_poll_funcs[0]; ; ++f) {
                if (*f == NULL) {
                        continue;
                }
  
 +              /*
 +               * The caller expects that newlines are either CR or LF. However
 +               * some terminals send _both_ CR and LF. Avoid having to handle
 +               * this in the caller by stripping the LF if we saw a CR right
 +               * before.
 +               */
 +              if (last_char_was_cr && key == '\n') {
 +                      last_char_was_cr = false;
 +                      continue;
 +              }
 +              last_char_was_cr = (key == '\r');
 +
                /*
                 * When the first character is received (or we get a change
                 * input source) we set ourselves up to handle an escape
@@@ -257,8 -244,7 +257,8 @@@ poll_again
                        *cp = tmp;
                }
                break;
 -      case 13: /* enter */
 +      case 10: /* linefeed */
 +      case 13: /* carriage return */
                *lastchar++ = '\n';
                *lastchar++ = '\0';
                if (!KDB_STATE(KGDB_TRANS)) {
@@@ -590,6 -576,8 +590,8 @@@ static void kdb_msg_write(const char *m
                        continue;
                if (c == dbg_io_ops->cons)
                        continue;
+               if (!c->write)
+                       continue;
                /*
                 * Set oops_in_progress to encourage the console drivers to
                 * disregard their internal spin locks: in the current calling
diff --combined kernel/printk/printk.c
index 357a4d18f6387cc5a626346dea2d3518fc2e4c86,1524893aebedb41d4b391a7df7a6c40a35208338..96fc38cb2e8415f6d1572384833ea8a55b3b90b7
@@@ -71,8 -71,6 +71,8 @@@ EXPORT_SYMBOL_GPL(console_printk)
  atomic_t ignore_console_lock_warning __read_mostly = ATOMIC_INIT(0);
  EXPORT_SYMBOL(ignore_console_lock_warning);
  
 +EXPORT_TRACEPOINT_SYMBOL_GPL(console);
 +
  /*
   * Low level drivers may need that to know if they can schedule in
   * their unblank() callback or not. So let's export it.
@@@ -88,10 -86,10 +88,10 @@@ EXPORT_SYMBOL(oops_in_progress)
  static DEFINE_MUTEX(console_mutex);
  
  /*
-  * console_sem protects updates to console->seq and console_suspended,
+  * console_sem protects updates to console->seq
   * and also provides serialization for console printing.
   */
 -static DEFINE_SEMAPHORE(console_sem);
 +static DEFINE_SEMAPHORE(console_sem, 1);
  HLIST_HEAD(console_list);
  EXPORT_SYMBOL_GPL(console_list);
  DEFINE_STATIC_SRCU(console_srcu);
@@@ -361,7 -359,7 +361,7 @@@ static bool panic_in_progress(void
   * paths in the console code where we end up in places I want
   * locked without the console semaphore held).
   */
- static int console_locked, console_suspended;
+ static int console_locked;
  
  /*
   *    Array of consoles built from command line options (console=)
@@@ -528,7 -526,7 +528,7 @@@ static u64 latched_seq_read_nolock(stru
                seq = raw_read_seqcount_latch(&ls->latch);
                idx = seq & 0x1;
                val = ls->val[idx];
 -      } while (read_seqcount_latch_retry(&ls->latch, seq));
 +      } while (raw_read_seqcount_latch_retry(&ls->latch, seq));
  
        return val;
  }
@@@ -538,12 -536,14 +538,14 @@@ char *log_buf_addr_get(void
  {
        return log_buf;
  }
+ EXPORT_SYMBOL_GPL(log_buf_addr_get);
  
  /* Return log buffer size */
  u32 log_buf_len_get(void)
  {
        return log_buf_len;
  }
+ EXPORT_SYMBOL_GPL(log_buf_len_get);
  
  /*
   * Define how much of the log buffer we could take at maximum. The value
@@@ -2308,7 -2308,11 +2310,11 @@@ asmlinkage int vprintk_emit(int facilit
                preempt_enable();
        }
  
-       wake_up_klogd();
+       if (in_sched)
+               defer_console_output();
+       else
+               wake_up_klogd();
        return printed_len;
  }
  EXPORT_SYMBOL(vprintk_emit);
@@@ -2547,22 -2551,46 +2553,46 @@@ MODULE_PARM_DESC(console_no_auto_verbos
   */
  void suspend_console(void)
  {
+       struct console *con;
        if (!console_suspend_enabled)
                return;
        pr_info("Suspending console(s) (use no_console_suspend to debug)\n");
        pr_flush(1000, true);
-       console_lock();
-       console_suspended = 1;
-       up_console_sem();
+       console_list_lock();
+       for_each_console(con)
+               console_srcu_write_flags(con, con->flags | CON_SUSPENDED);
+       console_list_unlock();
+       /*
+        * Ensure that all SRCU list walks have completed. All printing
+        * contexts must be able to see that they are suspended so that it
+        * is guaranteed that all printing has stopped when this function
+        * completes.
+        */
+       synchronize_srcu(&console_srcu);
  }
  
  void resume_console(void)
  {
+       struct console *con;
        if (!console_suspend_enabled)
                return;
-       down_console_sem();
-       console_suspended = 0;
-       console_unlock();
+       console_list_lock();
+       for_each_console(con)
+               console_srcu_write_flags(con, con->flags & ~CON_SUSPENDED);
+       console_list_unlock();
+       /*
+        * Ensure that all SRCU list walks have completed. All printing
+        * contexts must be able to see they are no longer suspended so
+        * that they are guaranteed to wake up and resume printing.
+        */
+       synchronize_srcu(&console_srcu);
        pr_flush(1000, true);
  }
  
@@@ -2585,6 -2613,26 +2615,26 @@@ static int console_cpu_notify(unsigned 
        return 0;
  }
  
+ /*
+  * Return true if a panic is in progress on a remote CPU.
+  *
+  * On true, the local CPU should immediately release any printing resources
+  * that may be needed by the panic CPU.
+  */
+ bool other_cpu_in_panic(void)
+ {
+       if (!panic_in_progress())
+               return false;
+       /*
+        * We can use raw_smp_processor_id() here because it is impossible for
+        * the task to be migrated to the panic_cpu, or away from it. If
+        * panic_cpu has already been set, and we're not currently executing on
+        * that CPU, then we never will be.
+        */
+       return atomic_read(&panic_cpu) != raw_smp_processor_id();
+ }
  /**
   * console_lock - block the console subsystem from printing
   *
@@@ -2597,9 -2645,11 +2647,11 @@@ void console_lock(void
  {
        might_sleep();
  
+       /* On panic, the console_lock must be left to the panic cpu. */
+       while (other_cpu_in_panic())
+               msleep(1000);
        down_console_sem();
-       if (console_suspended)
-               return;
        console_locked = 1;
        console_may_schedule = 1;
  }
@@@ -2615,12 -2665,11 +2667,11 @@@ EXPORT_SYMBOL(console_lock)
   */
  int console_trylock(void)
  {
-       if (down_trylock_console_sem())
+       /* On panic, the console_lock must be left to the panic cpu. */
+       if (other_cpu_in_panic())
                return 0;
-       if (console_suspended) {
-               up_console_sem();
+       if (down_trylock_console_sem())
                return 0;
-       }
        console_locked = 1;
        console_may_schedule = 0;
        return 1;
@@@ -2633,25 -2682,6 +2684,6 @@@ int is_console_locked(void
  }
  EXPORT_SYMBOL(is_console_locked);
  
- /*
-  * Return true when this CPU should unlock console_sem without pushing all
-  * messages to the console. This reduces the chance that the console is
-  * locked when the panic CPU tries to use it.
-  */
- static bool abandon_console_lock_in_panic(void)
- {
-       if (!panic_in_progress())
-               return false;
-       /*
-        * We can use raw_smp_processor_id() here because it is impossible for
-        * the task to be migrated to the panic_cpu, or away from it. If
-        * panic_cpu has already been set, and we're not currently executing on
-        * that CPU, then we never will be.
-        */
-       return atomic_read(&panic_cpu) != raw_smp_processor_id();
- }
  /*
   * Check if the given console is currently capable and allowed to print
   * records.
@@@ -2665,6 -2695,9 +2697,9 @@@ static inline bool console_is_usable(st
        if (!(flags & CON_ENABLED))
                return false;
  
+       if ((flags & CON_SUSPENDED))
+               return false;
        if (!con->write)
                return false;
  
@@@ -2948,7 -2981,7 +2983,7 @@@ static bool console_flush_all(bool do_c
                        any_progress = true;
  
                        /* Allow panic_cpu to take over the consoles safely. */
-                       if (abandon_console_lock_in_panic())
+                       if (other_cpu_in_panic())
                                goto abandon;
  
                        if (do_cond_resched)
@@@ -2983,11 -3016,6 +3018,6 @@@ void console_unlock(void
        bool flushed;
        u64 next_seq;
  
-       if (console_suspended) {
-               up_console_sem();
-               return;
-       }
        /*
         * Console drivers are called with interrupts disabled, so
         * @console_may_schedule should be cleared before; however, we may
@@@ -3045,9 -3073,27 +3075,27 @@@ EXPORT_SYMBOL(console_conditional_sched
  
  void console_unblank(void)
  {
+       bool found_unblank = false;
        struct console *c;
        int cookie;
  
+       /*
+        * First check if there are any consoles implementing the unblank()
+        * callback. If not, there is no reason to continue and take the
+        * console lock, which in particular can be dangerous if
+        * @oops_in_progress is set.
+        */
+       cookie = console_srcu_read_lock();
+       for_each_console_srcu(c) {
+               if ((console_srcu_read_flags(c) & CON_ENABLED) && c->unblank) {
+                       found_unblank = true;
+                       break;
+               }
+       }
+       console_srcu_read_unlock(cookie);
+       if (!found_unblank)
+               return;
        /*
         * Stop console printing because the unblank() callback may
         * assume the console is not within its write() callback.
         * In that case, attempt a trylock as best-effort.
         */
        if (oops_in_progress) {
+               /* Semaphores are not NMI-safe. */
+               if (in_nmi())
+                       return;
+               /*
+                * Attempting to trylock the console lock can deadlock
+                * if another CPU was stopped while modifying the
+                * semaphore. "Hope and pray" that this is not the
+                * current situation.
+                */
                if (down_trylock_console_sem() != 0)
                        return;
        } else
   */
  void console_flush_on_panic(enum con_flush_mode mode)
  {
+       bool handover;
+       u64 next_seq;
        /*
-        * If someone else is holding the console lock, trylock will fail
-        * and may_schedule may be set.  Ignore and proceed to unlock so
-        * that messages are flushed out.  As this can be called from any
-        * context and we don't want to get preempted while flushing,
-        * ensure may_schedule is cleared.
+        * Ignore the console lock and flush out the messages. Attempting a
+        * trylock would not be useful because:
+        *
+        *   - if it is contended, it must be ignored anyway
+        *   - console_lock() and console_trylock() block and fail
+        *     respectively in panic for non-panic CPUs
+        *   - semaphores are not NMI-safe
+        */
+       /*
+        * If another context is holding the console lock,
+        * @console_may_schedule might be set. Clear it so that
+        * this context does not call cond_resched() while flushing.
         */
-       console_trylock();
        console_may_schedule = 0;
  
        if (mode == CONSOLE_REPLAY_ALL) {
                cookie = console_srcu_read_lock();
                for_each_console_srcu(c) {
                        /*
-                        * If the above console_trylock() failed, this is an
-                        * unsynchronized assignment. But in that case, the
+                        * This is an unsynchronized assignment, but the
                         * kernel is in "hope and pray" mode anyway.
                         */
                        c->seq = seq;
                }
                console_srcu_read_unlock(cookie);
        }
-       console_unlock();
+       console_flush_all(false, &next_seq, &handover);
  }
  
  /*
@@@ -3679,8 -3745,7 +3747,7 @@@ static bool __pr_flush(struct console *
  
                /*
                 * Hold the console_lock to guarantee safe access to
-                * console->seq and to prevent changes to @console_suspended
-                * until all consoles have been processed.
+                * console->seq.
                 */
                console_lock();
  
                for_each_console_srcu(c) {
                        if (con && con != c)
                                continue;
+                       /*
+                        * If consoles are not usable, it cannot be expected
+                        * that they make forward progress, so only increment
+                        * @diff for usable consoles.
+                        */
                        if (!console_is_usable(c))
                                continue;
                        printk_seq = c->seq;
                }
                console_srcu_read_unlock(cookie);
  
-               /*
-                * If consoles are suspended, it cannot be expected that they
-                * make forward progress, so timeout immediately. @diff is
-                * still used to return a valid flush status.
-                */
-               if (console_suspended)
-                       remaining = 0;
-               else if (diff != last_diff && reset_on_progress)
+               if (diff != last_diff && reset_on_progress)
                        remaining = timeout_ms;
  
                console_unlock();
  
+               /* Note: @diff is 0 if there are no usable consoles. */
                if (diff == 0 || remaining == 0)
                        break;
  
   * printer has been seen to make some forward progress.
   *
   * Context: Process context. May sleep while acquiring console lock.
-  * Return: true if all enabled printers are caught up.
+  * Return: true if all usable printers are caught up.
   */
  static bool pr_flush(int timeout_ms, bool reset_on_progress)
  {
@@@ -3798,11 -3862,33 +3864,33 @@@ static void __wake_up_klogd(int val
        preempt_enable();
  }
  
+ /**
+  * wake_up_klogd - Wake kernel logging daemon
+  *
+  * Use this function when new records have been added to the ringbuffer
+  * and the console printing of those records has already occurred or is
+  * known to be handled by some other context. This function will only
+  * wake the logging daemon.
+  *
+  * Context: Any context.
+  */
  void wake_up_klogd(void)
  {
        __wake_up_klogd(PRINTK_PENDING_WAKEUP);
  }
  
+ /**
+  * defer_console_output - Wake kernel logging daemon and trigger
+  *    console printing in a deferred context
+  *
+  * Use this function when new records have been added to the ringbuffer,
+  * this context is responsible for console printing those records, but
+  * the current context is not allowed to perform the console printing.
+  * Trigger an irq_work context to perform the console printing. This
+  * function also wakes the logging daemon.
+  *
+  * Context: Any context.
+  */
  void defer_console_output(void)
  {
        /*
@@@ -3819,12 -3905,7 +3907,7 @@@ void printk_trigger_flush(void
  
  int vprintk_deferred(const char *fmt, va_list args)
  {
-       int r;
-       r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, fmt, args);
-       defer_console_output();
-       return r;
+       return vprintk_emit(0, LOGLEVEL_SCHED, NULL, fmt, args);
  }
  
  int _printk_deferred(const char *fmt, ...)
This page took 0.51737 seconds and 4 git commands to generate.