Merge tag 'coresight-next-v6.1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[platform/kernel/linux-starfive.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 L:      linux-bluetooth@vger.kernel.org
175 L:      linux-wpan@vger.kernel.org
176 S:      Maintained
177 F:      Documentation/networking/6lowpan.rst
178 F:      include/net/6lowpan.h
179 F:      net/6lowpan/
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
183 L:      linux-hams@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 802.11 (including CFG80211/NL80211)
188 M:      Johannes Berg <johannes@sipsolutions.net>
189 L:      linux-wireless@vger.kernel.org
190 S:      Maintained
191 W:      https://wireless.wiki.kernel.org/
192 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      include/uapi/linux/wireless.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A64FX DIAG DRIVER
245 M:      Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
246 S:      Supported
247 F:      drivers/soc/fujitsu/a64fx-diag.c
248
249 A8293 MEDIA DRIVER
250 M:      Antti Palosaari <crope@iki.fi>
251 L:      linux-media@vger.kernel.org
252 S:      Maintained
253 W:      https://linuxtv.org
254 W:      http://palosaari.fi/linux/
255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
256 T:      git git://linuxtv.org/anttip/media_tree.git
257 F:      drivers/media/dvb-frontends/a8293*
258
259 AACRAID SCSI RAID DRIVER
260 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
261 L:      linux-scsi@vger.kernel.org
262 S:      Supported
263 W:      http://www.adaptec.com/
264 F:      Documentation/scsi/aacraid.rst
265 F:      drivers/scsi/aacraid/
266
267 AB8500 BATTERY AND CHARGER DRIVERS
268 M:      Linus Walleij <linus.walleij@linaro.org>
269 F:      Documentation/devicetree/bindings/power/supply/*ab8500*
270 F:      drivers/power/supply/*ab8500*
271
272 ABI/API
273 L:      linux-api@vger.kernel.org
274 F:      include/linux/syscalls.h
275 F:      kernel/sys_ni.c
276 X:      include/uapi/
277 X:      arch/*/include/uapi/
278
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M:      Hans de Goede <hdegoede@redhat.com>
281 L:      linux-hwmon@vger.kernel.org
282 S:      Maintained
283 F:      drivers/hwmon/abituguru.c
284
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M:      Alistair John Strachan <alistair@devzero.co.uk>
287 L:      linux-hwmon@vger.kernel.org
288 S:      Maintained
289 F:      drivers/hwmon/abituguru3.c
290
291 ACCES 104-DIO-48E GPIO DRIVER
292 M:      William Breathitt Gray <william.gray@linaro.org>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-dio-48e.c
296
297 ACCES 104-IDI-48 GPIO DRIVER
298 M:      William Breathitt Gray <william.gray@linaro.org>
299 L:      linux-gpio@vger.kernel.org
300 S:      Maintained
301 F:      drivers/gpio/gpio-104-idi-48.c
302
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M:      William Breathitt Gray <william.gray@linaro.org>
305 L:      linux-gpio@vger.kernel.org
306 S:      Maintained
307 F:      drivers/gpio/gpio-104-idio-16.c
308
309 ACCES 104-QUAD-8 DRIVER
310 M:      William Breathitt Gray <william.gray@linaro.org>
311 L:      linux-iio@vger.kernel.org
312 S:      Maintained
313 F:      drivers/counter/104-quad-8.c
314
315 ACCES PCI-IDIO-16 GPIO DRIVER
316 M:      William Breathitt Gray <william.gray@linaro.org>
317 L:      linux-gpio@vger.kernel.org
318 S:      Maintained
319 F:      drivers/gpio/gpio-pci-idio-16.c
320
321 ACCES PCIe-IDIO-24 GPIO DRIVER
322 M:      William Breathitt Gray <william.gray@linaro.org>
323 L:      linux-gpio@vger.kernel.org
324 S:      Maintained
325 F:      drivers/gpio/gpio-pcie-idio-24.c
326
327 ACENIC DRIVER
328 M:      Jes Sorensen <jes@trained-monkey.org>
329 L:      linux-acenic@sunsite.dk
330 S:      Maintained
331 F:      drivers/net/ethernet/alteon/acenic*
332
333 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
334 M:      Peter Kaestle <peter@piie.net>
335 L:      platform-driver-x86@vger.kernel.org
336 S:      Maintained
337 W:      http://piie.net/?section=acerhdf
338 F:      drivers/platform/x86/acerhdf.c
339
340 ACER WMI LAPTOP EXTRAS
341 M:      "Lee, Chun-Yi" <jlee@suse.com>
342 L:      platform-driver-x86@vger.kernel.org
343 S:      Maintained
344 F:      drivers/platform/x86/acer-wmi.c
345
346 ACPI
347 M:      "Rafael J. Wysocki" <rafael@kernel.org>
348 R:      Len Brown <lenb@kernel.org>
349 L:      linux-acpi@vger.kernel.org
350 S:      Supported
351 W:      https://01.org/linux-acpi
352 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
353 B:      https://bugzilla.kernel.org
354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
355 F:      Documentation/ABI/testing/configfs-acpi
356 F:      Documentation/ABI/testing/sysfs-bus-acpi
357 F:      Documentation/firmware-guide/acpi/
358 F:      drivers/acpi/
359 F:      drivers/pci/*/*acpi*
360 F:      drivers/pci/*acpi*
361 F:      drivers/pnp/pnpacpi/
362 F:      include/acpi/
363 F:      include/linux/acpi.h
364 F:      include/linux/fwnode.h
365 F:      tools/power/acpi/
366
367 ACPI APEI
368 M:      "Rafael J. Wysocki" <rafael@kernel.org>
369 R:      Len Brown <lenb@kernel.org>
370 R:      James Morse <james.morse@arm.com>
371 R:      Tony Luck <tony.luck@intel.com>
372 R:      Borislav Petkov <bp@alien8.de>
373 L:      linux-acpi@vger.kernel.org
374 F:      drivers/acpi/apei/
375
376 ACPI COMPONENT ARCHITECTURE (ACPICA)
377 M:      Robert Moore <robert.moore@intel.com>
378 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
379 L:      linux-acpi@vger.kernel.org
380 L:      devel@acpica.org
381 S:      Supported
382 W:      https://acpica.org/
383 W:      https://github.com/acpica/acpica/
384 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
385 B:      https://bugzilla.kernel.org
386 B:      https://bugs.acpica.org
387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
388 F:      drivers/acpi/acpica/
389 F:      include/acpi/
390 F:      tools/power/acpi/
391
392 ACPI FOR ARM64 (ACPI/arm64)
393 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
394 M:      Hanjun Guo <guohanjun@huawei.com>
395 M:      Sudeep Holla <sudeep.holla@arm.com>
396 L:      linux-acpi@vger.kernel.org
397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
398 S:      Maintained
399 F:      drivers/acpi/arm64
400
401 ACPI SERIAL MULTI INSTANTIATE DRIVER
402 M:      Hans de Goede <hdegoede@redhat.com>
403 L:      platform-driver-x86@vger.kernel.org
404 S:      Maintained
405 F:      drivers/platform/x86/serial-multi-instantiate.c
406
407 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
408 M:      Sudeep Holla <sudeep.holla@arm.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 F:      drivers/mailbox/pcc.c
412
413 ACPI PMIC DRIVERS
414 M:      "Rafael J. Wysocki" <rafael@kernel.org>
415 M:      Len Brown <lenb@kernel.org>
416 R:      Andy Shevchenko <andy@kernel.org>
417 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
418 L:      linux-acpi@vger.kernel.org
419 S:      Supported
420 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
421 B:      https://bugzilla.kernel.org
422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
423 F:      drivers/acpi/pmic/
424
425 ACPI THERMAL DRIVER
426 M:      Rafael J. Wysocki <rafael@kernel.org>
427 R:      Zhang Rui <rui.zhang@intel.com>
428 L:      linux-acpi@vger.kernel.org
429 S:      Supported
430 W:      https://01.org/linux-acpi
431 B:      https://bugzilla.kernel.org
432 F:      drivers/acpi/*thermal*
433
434 ACPI VIOT DRIVER
435 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
436 L:      linux-acpi@vger.kernel.org
437 L:      iommu@lists.linux.dev
438 S:      Maintained
439 F:      drivers/acpi/viot.c
440 F:      include/linux/acpi_viot.h
441
442 ACPI WMI DRIVER
443 L:      platform-driver-x86@vger.kernel.org
444 S:      Orphan
445 F:      drivers/platform/x86/wmi.c
446 F:      include/uapi/linux/wmi.h
447
448 ACRN HYPERVISOR SERVICE MODULE
449 M:      Fei Li <fei1.li@intel.com>
450 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
451 S:      Supported
452 W:      https://projectacrn.org
453 F:      Documentation/virt/acrn/
454 F:      drivers/virt/acrn/
455 F:      include/uapi/linux/acrn.h
456
457 AD1889 ALSA SOUND DRIVER
458 L:      linux-parisc@vger.kernel.org
459 S:      Maintained
460 W:      https://parisc.wiki.kernel.org/index.php/AD1889
461 F:      sound/pci/ad1889.*
462
463 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
464 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
465 L:      linux-iio@vger.kernel.org
466 S:      Supported
467 F:      drivers/iio/potentiometer/ad5110.c
468
469 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
470 M:      Michael Hennerich <michael.hennerich@analog.com>
471 S:      Supported
472 W:      http://wiki.analog.com/AD5254
473 W:      https://ez.analog.com/linux-software-drivers
474 F:      drivers/misc/ad525x_dpot.c
475
476 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD5398
480 W:      https://ez.analog.com/linux-software-drivers
481 F:      drivers/regulator/ad5398.c
482
483 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7142
487 W:      https://ez.analog.com/linux-software-drivers
488 F:      drivers/input/misc/ad714x.c
489
490 AD7877 TOUCHSCREEN DRIVER
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7877
494 W:      https://ez.analog.com/linux-software-drivers
495 F:      drivers/input/touchscreen/ad7877.c
496
497 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 S:      Supported
500 W:      http://wiki.analog.com/AD7879
501 W:      https://ez.analog.com/linux-software-drivers
502 F:      drivers/input/touchscreen/ad7879.c
503
504 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
505 M:      Jiri Kosina <jikos@kernel.org>
506 S:      Maintained
507
508 ADF7242 IEEE 802.15.4 RADIO DRIVER
509 M:      Michael Hennerich <michael.hennerich@analog.com>
510 L:      linux-wpan@vger.kernel.org
511 S:      Supported
512 W:      https://wiki.analog.com/ADF7242
513 W:      https://ez.analog.com/linux-software-drivers
514 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
515 F:      drivers/net/ieee802154/adf7242.c
516
517 ADM1025 HARDWARE MONITOR DRIVER
518 M:      Jean Delvare <jdelvare@suse.com>
519 L:      linux-hwmon@vger.kernel.org
520 S:      Maintained
521 F:      Documentation/hwmon/adm1025.rst
522 F:      drivers/hwmon/adm1025.c
523
524 ADM1029 HARDWARE MONITOR DRIVER
525 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
526 L:      linux-hwmon@vger.kernel.org
527 S:      Maintained
528 F:      drivers/hwmon/adm1029.c
529
530 ADM8211 WIRELESS DRIVER
531 L:      linux-wireless@vger.kernel.org
532 S:      Orphan
533 W:      https://wireless.wiki.kernel.org/
534 F:      drivers/net/wireless/admtek/adm8211.*
535
536 ADP1653 FLASH CONTROLLER DRIVER
537 M:      Sakari Ailus <sakari.ailus@iki.fi>
538 L:      linux-media@vger.kernel.org
539 S:      Maintained
540 F:      drivers/media/i2c/adp1653.c
541 F:      include/media/i2c/adp1653.h
542
543 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5520
547 W:      https://ez.analog.com/linux-software-drivers
548 F:      drivers/gpio/gpio-adp5520.c
549 F:      drivers/input/keyboard/adp5520-keys.c
550 F:      drivers/leds/leds-adp5520.c
551 F:      drivers/mfd/adp5520.c
552 F:      drivers/video/backlight/adp5520_bl.c
553
554 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP5588
558 W:      https://ez.analog.com/linux-software-drivers
559 F:      drivers/gpio/gpio-adp5588.c
560 F:      drivers/input/keyboard/adp5588-keys.c
561
562 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
563 M:      Michael Hennerich <michael.hennerich@analog.com>
564 S:      Supported
565 W:      http://wiki.analog.com/ADP8860
566 W:      https://ez.analog.com/linux-software-drivers
567 F:      drivers/video/backlight/adp8860_bl.c
568
569 ADT746X FAN DRIVER
570 M:      Colin Leroy <colin@colino.net>
571 S:      Maintained
572 F:      drivers/macintosh/therm_adt746x.c
573
574 ADT7475 HARDWARE MONITOR DRIVER
575 M:      Jean Delvare <jdelvare@suse.com>
576 L:      linux-hwmon@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/hwmon/adt7475.rst
579 F:      drivers/hwmon/adt7475.c
580
581 ADVANSYS SCSI DRIVER
582 M:      Matthew Wilcox <willy@infradead.org>
583 M:      Hannes Reinecke <hare@suse.com>
584 L:      linux-scsi@vger.kernel.org
585 S:      Maintained
586 F:      Documentation/scsi/advansys.rst
587 F:      drivers/scsi/advansys.c
588
589 ADVANTECH SWBTN DRIVER
590 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
591 L:      platform-driver-x86@vger.kernel.org
592 S:      Maintained
593 F:      drivers/platform/x86/adv_swbutton.c
594
595 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
596 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
597 S:      Supported
598 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
599 F:      drivers/iio/accel/adxl313*
600
601 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
602 M:      Michael Hennerich <michael.hennerich@analog.com>
603 S:      Supported
604 W:      http://wiki.analog.com/ADXL345
605 W:      https://ez.analog.com/linux-software-drivers
606 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
607 F:      drivers/input/misc/adxl34x.c
608
609 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
610 M:      Puranjay Mohan <puranjay12@gmail.com>
611 L:      linux-iio@vger.kernel.org
612 S:      Supported
613 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
614 F:      drivers/iio/accel/adxl355.h
615 F:      drivers/iio/accel/adxl355_core.c
616 F:      drivers/iio/accel/adxl355_i2c.c
617 F:      drivers/iio/accel/adxl355_spi.c
618
619 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
620 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
621 L:      linux-iio@vger.kernel.org
622 S:      Supported
623 W:      https://ez.analog.com/linux-software-drivers
624 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
625 F:      drivers/iio/accel/adxl367*
626
627 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
628 M:      Michael Hennerich <michael.hennerich@analog.com>
629 S:      Supported
630 W:      https://ez.analog.com/linux-software-drivers
631 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
632 F:      drivers/iio/accel/adxl372.c
633 F:      drivers/iio/accel/adxl372_i2c.c
634 F:      drivers/iio/accel/adxl372_spi.c
635
636 AF9013 MEDIA DRIVER
637 M:      Antti Palosaari <crope@iki.fi>
638 L:      linux-media@vger.kernel.org
639 S:      Maintained
640 W:      https://linuxtv.org
641 W:      http://palosaari.fi/linux/
642 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
643 T:      git git://linuxtv.org/anttip/media_tree.git
644 F:      drivers/media/dvb-frontends/af9013*
645
646 AF9033 MEDIA DRIVER
647 M:      Antti Palosaari <crope@iki.fi>
648 L:      linux-media@vger.kernel.org
649 S:      Maintained
650 W:      https://linuxtv.org
651 W:      http://palosaari.fi/linux/
652 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
653 T:      git git://linuxtv.org/anttip/media_tree.git
654 F:      drivers/media/dvb-frontends/af9033*
655
656 AFFS FILE SYSTEM
657 M:      David Sterba <dsterba@suse.com>
658 L:      linux-fsdevel@vger.kernel.org
659 S:      Odd Fixes
660 F:      Documentation/filesystems/affs.rst
661 F:      fs/affs/
662
663 AFS FILESYSTEM
664 M:      David Howells <dhowells@redhat.com>
665 M:      Marc Dionne <marc.dionne@auristor.com>
666 L:      linux-afs@lists.infradead.org
667 S:      Supported
668 W:      https://www.infradead.org/~dhowells/kafs/
669 F:      Documentation/filesystems/afs.rst
670 F:      fs/afs/
671 F:      include/trace/events/afs.h
672
673 AGPGART DRIVER
674 M:      David Airlie <airlied@linux.ie>
675 S:      Maintained
676 T:      git git://anongit.freedesktop.org/drm/drm
677 F:      drivers/char/agp/
678 F:      include/linux/agp*
679 F:      include/uapi/linux/agp*
680
681 AHA152X SCSI DRIVER
682 M:      "Juergen E. Fischer" <fischer@norbit.de>
683 L:      linux-scsi@vger.kernel.org
684 S:      Maintained
685 F:      drivers/scsi/aha152x*
686 F:      drivers/scsi/pcmcia/aha152x*
687
688 AIC7XXX / AIC79XX SCSI DRIVER
689 M:      Hannes Reinecke <hare@suse.com>
690 L:      linux-scsi@vger.kernel.org
691 S:      Maintained
692 F:      drivers/scsi/aic7xxx/
693
694 AIMSLAB FM RADIO RECEIVER DRIVER
695 M:      Hans Verkuil <hverkuil@xs4all.nl>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 W:      https://linuxtv.org
699 T:      git git://linuxtv.org/media_tree.git
700 F:      drivers/media/radio/radio-aimslab*
701
702 AIO
703 M:      Benjamin LaHaise <bcrl@kvack.org>
704 L:      linux-aio@kvack.org
705 S:      Supported
706 F:      fs/aio.c
707 F:      include/linux/*aio*.h
708
709 AIRSPY MEDIA DRIVER
710 M:      Antti Palosaari <crope@iki.fi>
711 L:      linux-media@vger.kernel.org
712 S:      Maintained
713 W:      https://linuxtv.org
714 W:      http://palosaari.fi/linux/
715 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
716 T:      git git://linuxtv.org/anttip/media_tree.git
717 F:      drivers/media/usb/airspy/
718
719 ALACRITECH GIGABIT ETHERNET DRIVER
720 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
721 S:      Maintained
722 F:      drivers/net/ethernet/alacritech/*
723
724 ALCATEL SPEEDTOUCH USB DRIVER
725 M:      Duncan Sands <duncan.sands@free.fr>
726 L:      linux-usb@vger.kernel.org
727 S:      Maintained
728 W:      http://www.linux-usb.org/SpeedTouch/
729 F:      drivers/usb/atm/speedtch.c
730 F:      drivers/usb/atm/usbatm.c
731
732 ALCHEMY AU1XX0 MMC DRIVER
733 M:      Manuel Lauss <manuel.lauss@gmail.com>
734 S:      Maintained
735 F:      drivers/mmc/host/au1xmmc.c
736
737 ALI1563 I2C DRIVER
738 M:      Rudolf Marek <r.marek@assembler.cz>
739 L:      linux-i2c@vger.kernel.org
740 S:      Maintained
741 F:      Documentation/i2c/busses/i2c-ali1563.rst
742 F:      drivers/i2c/busses/i2c-ali1563.c
743
744 ALIBABA ELASTIC RDMA DRIVER
745 M:      Cheng Xu <chengyou@linux.alibaba.com>
746 M:      Kai Shen <kaishen@linux.alibaba.com>
747 L:      linux-rdma@vger.kernel.org
748 S:      Supported
749 F:      drivers/infiniband/hw/erdma
750 F:      include/uapi/rdma/erdma-abi.h
751
752 ALIENWARE WMI DRIVER
753 L:      Dell.Client.Kernel@dell.com
754 S:      Maintained
755 F:      drivers/platform/x86/dell/alienware-wmi.c
756
757 ALLEGRO DVT VIDEO IP CORE DRIVER
758 M:      Michael Tretter <m.tretter@pengutronix.de>
759 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
760 L:      linux-media@vger.kernel.org
761 S:      Maintained
762 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
763 F:      drivers/media/platform/allegro-dvt/
764
765 ALLWINNER A10 CSI DRIVER
766 M:      Maxime Ripard <mripard@kernel.org>
767 L:      linux-media@vger.kernel.org
768 S:      Maintained
769 T:      git git://linuxtv.org/media_tree.git
770 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
771 F:      drivers/media/platform/sunxi/sun4i-csi/
772
773 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
774 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
775 L:      linux-media@vger.kernel.org
776 S:      Maintained
777 T:      git git://linuxtv.org/media_tree.git
778 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
779 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
780
781 ALLWINNER CPUFREQ DRIVER
782 M:      Yangtao Li <tiny.windzz@gmail.com>
783 L:      linux-pm@vger.kernel.org
784 S:      Maintained
785 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
786 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
787
788 ALLWINNER CRYPTO DRIVERS
789 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
790 L:      linux-crypto@vger.kernel.org
791 S:      Maintained
792 F:      drivers/crypto/allwinner/
793
794 ALLWINNER HARDWARE SPINLOCK SUPPORT
795 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
796 S:      Maintained
797 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
798 F:      drivers/hwspinlock/sun6i_hwspinlock.c
799
800 ALLWINNER THERMAL DRIVER
801 M:      Vasily Khoruzhick <anarsoul@gmail.com>
802 M:      Yangtao Li <tiny.windzz@gmail.com>
803 L:      linux-pm@vger.kernel.org
804 S:      Maintained
805 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
806 F:      drivers/thermal/sun8i_thermal.c
807
808 ALLWINNER VPU DRIVER
809 M:      Maxime Ripard <mripard@kernel.org>
810 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
811 L:      linux-media@vger.kernel.org
812 S:      Maintained
813 F:      drivers/staging/media/sunxi/cedrus/
814
815 ALPHA PORT
816 M:      Richard Henderson <richard.henderson@linaro.org>
817 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
818 M:      Matt Turner <mattst88@gmail.com>
819 L:      linux-alpha@vger.kernel.org
820 S:      Odd Fixes
821 F:      arch/alpha/
822
823 ALPS PS/2 TOUCHPAD DRIVER
824 R:      Pali Rohár <pali@kernel.org>
825 F:      drivers/input/mouse/alps.*
826
827 ALTERA I2C CONTROLLER DRIVER
828 M:      Thor Thayer <thor.thayer@linux.intel.com>
829 S:      Maintained
830 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
831 F:      drivers/i2c/busses/i2c-altera.c
832
833 ALTERA MAILBOX DRIVER
834 M:      Mun Yew Tham <mun.yew.tham@intel.com>
835 S:      Maintained
836 F:      drivers/mailbox/mailbox-altera.c
837
838 ALTERA MSGDMA IP CORE DRIVER
839 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
840 R:      Stefan Roese <sr@denx.de>
841 L:      dmaengine@vger.kernel.org
842 S:      Odd Fixes
843 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
844 F:      drivers/dma/altera-msgdma.c
845
846 ALTERA PIO DRIVER
847 M:      Mun Yew Tham <mun.yew.tham@intel.com>
848 L:      linux-gpio@vger.kernel.org
849 S:      Maintained
850 F:      drivers/gpio/gpio-altera.c
851
852 ALTERA SYSTEM MANAGER DRIVER
853 M:      Thor Thayer <thor.thayer@linux.intel.com>
854 S:      Maintained
855 F:      drivers/mfd/altera-sysmgr.c
856 F:      include/linux/mfd/altera-sysmgr.h
857
858 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
859 M:      Thor Thayer <thor.thayer@linux.intel.com>
860 S:      Maintained
861 F:      drivers/gpio/gpio-altera-a10sr.c
862 F:      drivers/mfd/altera-a10sr.c
863 F:      drivers/reset/reset-a10sr.c
864 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
865 F:      include/linux/mfd/altera-a10sr.h
866
867 ALTERA TRIPLE SPEED ETHERNET DRIVER
868 M:      Joyce Ooi <joyce.ooi@intel.com>
869 L:      netdev@vger.kernel.org
870 S:      Maintained
871 F:      drivers/net/ethernet/altera/
872
873 ALTERA UART/JTAG UART SERIAL DRIVERS
874 M:      Tobias Klauser <tklauser@distanz.ch>
875 L:      linux-serial@vger.kernel.org
876 S:      Maintained
877 F:      drivers/tty/serial/altera_jtaguart.c
878 F:      drivers/tty/serial/altera_uart.c
879 F:      include/linux/altera_jtaguart.h
880 F:      include/linux/altera_uart.h
881
882 AMAZON ANNAPURNA LABS FIC DRIVER
883 M:      Talel Shenhar <talel@amazon.com>
884 S:      Maintained
885 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
886 F:      drivers/irqchip/irq-al-fic.c
887
888 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
889 M:      Talel Shenhar <talel@amazon.com>
890 M:      Talel Shenhar <talelshenhar@gmail.com>
891 S:      Maintained
892 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
893 F:      drivers/edac/al_mc_edac.c
894
895 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
896 M:      Talel Shenhar <talel@amazon.com>
897 S:      Maintained
898 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
899 F:      drivers/thermal/thermal_mmio.c
900
901 AMAZON ETHERNET DRIVERS
902 M:      Shay Agroskin <shayagr@amazon.com>
903 M:      Arthur Kiyanovski <akiyano@amazon.com>
904 R:      David Arinzon <darinzon@amazon.com>
905 R:      Noam Dagan <ndagan@amazon.com>
906 R:      Saeed Bishara <saeedb@amazon.com>
907 L:      netdev@vger.kernel.org
908 S:      Supported
909 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
910 F:      drivers/net/ethernet/amazon/
911
912 AMAZON RDMA EFA DRIVER
913 M:      Gal Pressman <galpress@amazon.com>
914 R:      Yossi Leybovich <sleybo@amazon.com>
915 L:      linux-rdma@vger.kernel.org
916 S:      Supported
917 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
918 F:      drivers/infiniband/hw/efa/
919 F:      include/uapi/rdma/efa-abi.h
920
921 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
922 M:      Tom Lendacky <thomas.lendacky@amd.com>
923 M:      John Allen <john.allen@amd.com>
924 L:      linux-crypto@vger.kernel.org
925 S:      Supported
926 F:      drivers/crypto/ccp/
927 F:      include/linux/ccp.h
928
929 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
930 M:      Brijesh Singh <brijesh.singh@amd.com>
931 M:      Tom Lendacky <thomas.lendacky@amd.com>
932 L:      linux-crypto@vger.kernel.org
933 S:      Supported
934 F:      drivers/crypto/ccp/sev*
935 F:      include/uapi/linux/psp-sev.h
936
937 AMD DISPLAY CORE
938 M:      Harry Wentland <harry.wentland@amd.com>
939 M:      Leo Li <sunpeng.li@amd.com>
940 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
941 L:      amd-gfx@lists.freedesktop.org
942 S:      Supported
943 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
944 F:      drivers/gpu/drm/amd/display/
945
946 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
947 M:      Huang Rui <ray.huang@amd.com>
948 L:      linux-hwmon@vger.kernel.org
949 S:      Supported
950 F:      Documentation/hwmon/fam15h_power.rst
951 F:      drivers/hwmon/fam15h_power.c
952
953 AMD FCH GPIO DRIVER
954 M:      Enrico Weigelt, metux IT consult <info@metux.net>
955 L:      linux-gpio@vger.kernel.org
956 S:      Maintained
957 F:      drivers/gpio/gpio-amd-fch.c
958 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
959
960 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
961 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
962 S:      Orphan
963 F:      drivers/usb/gadget/udc/amd5536udc.*
964
965 AMD GEODE PROCESSOR/CHIPSET SUPPORT
966 M:      Andres Salomon <dilinger@queued.net>
967 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
968 S:      Supported
969 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
970 F:      arch/x86/include/asm/geode.h
971 F:      drivers/char/hw_random/geode-rng.c
972 F:      drivers/crypto/geode*
973 F:      drivers/video/fbdev/geode/
974
975 AMD IOMMU (AMD-VI)
976 M:      Joerg Roedel <joro@8bytes.org>
977 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
978 L:      iommu@lists.linux.dev
979 S:      Maintained
980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
981 F:      drivers/iommu/amd/
982 F:      include/linux/amd-iommu.h
983
984 AMD KFD
985 M:      Felix Kuehling <Felix.Kuehling@amd.com>
986 L:      amd-gfx@lists.freedesktop.org
987 S:      Supported
988 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
989 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
990 F:      drivers/gpu/drm/amd/amdkfd/
991 F:      drivers/gpu/drm/amd/include/cik_structs.h
992 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
993 F:      drivers/gpu/drm/amd/include/v9_structs.h
994 F:      drivers/gpu/drm/amd/include/vi_structs.h
995 F:      include/uapi/linux/kfd_ioctl.h
996 F:      include/uapi/linux/kfd_sysfs.h
997
998 AMD SPI DRIVER
999 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1000 S:      Maintained
1001 F:      drivers/spi/spi-amd.c
1002
1003 AMD MP2 I2C DRIVER
1004 M:      Elie Morisse <syniurge@gmail.com>
1005 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1006 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1007 L:      linux-i2c@vger.kernel.org
1008 S:      Maintained
1009 F:      drivers/i2c/busses/i2c-amd-mp2*
1010
1011 AMD PMC DRIVER
1012 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1013 L:      platform-driver-x86@vger.kernel.org
1014 S:      Maintained
1015 F:      drivers/platform/x86/amd/pmc.c
1016
1017 AMD HSMP DRIVER
1018 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1019 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1020 L:      platform-driver-x86@vger.kernel.org
1021 S:      Maintained
1022 F:      Documentation/x86/amd_hsmp.rst
1023 F:      arch/x86/include/asm/amd_hsmp.h
1024 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1025 F:      drivers/platform/x86/amd/hsmp.c
1026
1027 AMD POWERPLAY AND SWSMU
1028 M:      Evan Quan <evan.quan@amd.com>
1029 L:      amd-gfx@lists.freedesktop.org
1030 S:      Supported
1031 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1032 F:      drivers/gpu/drm/amd/pm/
1033
1034 AMD PSTATE DRIVER
1035 M:      Huang Rui <ray.huang@amd.com>
1036 L:      linux-pm@vger.kernel.org
1037 S:      Supported
1038 F:      Documentation/admin-guide/pm/amd-pstate.rst
1039 F:      drivers/cpufreq/amd-pstate*
1040 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1041
1042 AMD PTDMA DRIVER
1043 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1044 L:      dmaengine@vger.kernel.org
1045 S:      Maintained
1046 F:      drivers/dma/ptdma/
1047
1048 AMD SEATTLE DEVICE TREE SUPPORT
1049 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1050 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1051 M:      Tom Lendacky <thomas.lendacky@amd.com>
1052 S:      Supported
1053 F:      arch/arm64/boot/dts/amd/
1054
1055 AMD XGBE DRIVER
1056 M:      Tom Lendacky <thomas.lendacky@amd.com>
1057 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1058 L:      netdev@vger.kernel.org
1059 S:      Supported
1060 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1061 F:      drivers/net/ethernet/amd/xgbe/
1062
1063 AMD SENSOR FUSION HUB DRIVER
1064 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1065 L:      linux-input@vger.kernel.org
1066 S:      Maintained
1067 F:      Documentation/hid/amd-sfh*
1068 F:      drivers/hid/amd-sfh-hid/
1069
1070 AMPHION VPU CODEC V4L2 DRIVER
1071 M:      Ming Qian <ming.qian@nxp.com>
1072 M:      Shijie Qin <shijie.qin@nxp.com>
1073 M:      Zhou Peng <eagle.zhou@nxp.com>
1074 L:      linux-media@vger.kernel.org
1075 S:      Maintained
1076 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1077 F:      drivers/media/platform/amphion/
1078
1079 AMS AS73211 DRIVER
1080 M:      Christian Eggers <ceggers@arri.de>
1081 L:      linux-iio@vger.kernel.org
1082 S:      Maintained
1083 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1084 F:      drivers/iio/light/as73211.c
1085
1086 AMT (Automatic Multicast Tunneling)
1087 M:      Taehee Yoo <ap420073@gmail.com>
1088 L:      netdev@vger.kernel.org
1089 S:      Maintained
1090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1092 F:      drivers/net/amt.c
1093
1094 ANALOG DEVICES INC AD7192 DRIVER
1095 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1096 L:      linux-iio@vger.kernel.org
1097 S:      Supported
1098 W:      https://ez.analog.com/linux-software-drivers
1099 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1100 F:      drivers/iio/adc/ad7192.c
1101
1102 ANALOG DEVICES INC AD7292 DRIVER
1103 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1104 L:      linux-iio@vger.kernel.org
1105 S:      Supported
1106 W:      https://ez.analog.com/linux-software-drivers
1107 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1108 F:      drivers/iio/adc/ad7292.c
1109
1110 ANALOG DEVICES INC AD3552R DRIVER
1111 M:      Nuno Sá <nuno.sa@analog.com>
1112 L:      linux-iio@vger.kernel.org
1113 S:      Supported
1114 W:      https://ez.analog.com/linux-software-drivers
1115 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1116 F:      drivers/iio/dac/ad3552r.c
1117
1118 ANALOG DEVICES INC AD7293 DRIVER
1119 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1120 L:      linux-iio@vger.kernel.org
1121 S:      Supported
1122 W:      https://ez.analog.com/linux-software-drivers
1123 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1124 F:      drivers/iio/dac/ad7293.c
1125
1126 ANALOG DEVICES INC AD7768-1 DRIVER
1127 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1128 L:      linux-iio@vger.kernel.org
1129 S:      Supported
1130 W:      https://ez.analog.com/linux-software-drivers
1131 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1132 F:      drivers/iio/adc/ad7768-1.c
1133
1134 ANALOG DEVICES INC AD7780 DRIVER
1135 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1136 M:      Renato Lui Geh <renatogeh@gmail.com>
1137 L:      linux-iio@vger.kernel.org
1138 S:      Supported
1139 W:      https://ez.analog.com/linux-software-drivers
1140 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1141 F:      drivers/iio/adc/ad7780.c
1142
1143 ANALOG DEVICES INC AD74413R DRIVER
1144 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1145 L:      linux-iio@vger.kernel.org
1146 S:      Supported
1147 W:      https://ez.analog.com/linux-software-drivers
1148 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1149 F:      drivers/iio/addac/ad74413r.c
1150 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1151
1152 ANALOG DEVICES INC AD9389B DRIVER
1153 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1154 L:      linux-media@vger.kernel.org
1155 S:      Maintained
1156 F:      drivers/media/i2c/ad9389b*
1157
1158 ANALOG DEVICES INC ADA4250 DRIVER
1159 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1160 L:      linux-iio@vger.kernel.org
1161 S:      Supported
1162 W:      https://ez.analog.com/linux-software-drivers
1163 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1164 F:      drivers/iio/amplifiers/ada4250.c
1165
1166 ANALOG DEVICES INC ADGS1408 DRIVER
1167 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1168 S:      Supported
1169 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1170 F:      drivers/mux/adgs1408.c
1171
1172 ANALOG DEVICES INC ADIN DRIVER
1173 M:      Michael Hennerich <michael.hennerich@analog.com>
1174 L:      netdev@vger.kernel.org
1175 S:      Supported
1176 W:      https://ez.analog.com/linux-software-drivers
1177 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1178 F:      drivers/net/phy/adin.c
1179
1180 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1181 M:      Nuno Sa <nuno.sa@analog.com>
1182 L:      linux-iio@vger.kernel.org
1183 S:      Supported
1184 F:      drivers/iio/imu/adis.c
1185 F:      drivers/iio/imu/adis_buffer.c
1186 F:      drivers/iio/imu/adis_trigger.c
1187 F:      include/linux/iio/imu/adis.h
1188
1189 ANALOG DEVICES INC ADIS16460 DRIVER
1190 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1191 L:      linux-iio@vger.kernel.org
1192 S:      Supported
1193 W:      https://ez.analog.com/linux-software-drivers
1194 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1195 F:      drivers/iio/imu/adis16460.c
1196
1197 ANALOG DEVICES INC ADIS16475 DRIVER
1198 M:      Nuno Sa <nuno.sa@analog.com>
1199 L:      linux-iio@vger.kernel.org
1200 W:      https://ez.analog.com/linux-software-drivers
1201 S:      Supported
1202 F:      drivers/iio/imu/adis16475.c
1203 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1204
1205 ANALOG DEVICES INC ADM1177 DRIVER
1206 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1207 L:      linux-hwmon@vger.kernel.org
1208 S:      Supported
1209 W:      https://ez.analog.com/linux-software-drivers
1210 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1211 F:      drivers/hwmon/adm1177.c
1212
1213 ANALOG DEVICES INC ADMV1013 DRIVER
1214 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1215 L:      linux-iio@vger.kernel.org
1216 S:      Supported
1217 W:      https://ez.analog.com/linux-software-drivers
1218 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1219 F:      drivers/iio/frequency/admv1013.c
1220
1221 ANALOG DEVICES INC ADMV8818 DRIVER
1222 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1223 L:      linux-iio@vger.kernel.org
1224 S:      Supported
1225 W:      https://ez.analog.com/linux-software-drivers
1226 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1227 F:      drivers/iio/filter/admv8818.c
1228
1229 ANALOG DEVICES INC ADMV1014 DRIVER
1230 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1231 L:      linux-iio@vger.kernel.org
1232 S:      Supported
1233 W:      https://ez.analog.com/linux-software-drivers
1234 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1235 F:      drivers/iio/frequency/admv1014.c
1236
1237 ANALOG DEVICES INC ADP5061 DRIVER
1238 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1239 L:      linux-pm@vger.kernel.org
1240 S:      Supported
1241 W:      https://ez.analog.com/linux-software-drivers
1242 F:      drivers/power/supply/adp5061.c
1243
1244 ANALOG DEVICES INC ADRF6780 DRIVER
1245 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1246 L:      linux-iio@vger.kernel.org
1247 S:      Supported
1248 W:      https://ez.analog.com/linux-software-drivers
1249 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1250 F:      drivers/iio/frequency/adrf6780.c
1251
1252 ANALOG DEVICES INC ADV7180 DRIVER
1253 M:      Lars-Peter Clausen <lars@metafoo.de>
1254 L:      linux-media@vger.kernel.org
1255 S:      Supported
1256 W:      https://ez.analog.com/linux-software-drivers
1257 F:      drivers/media/i2c/adv7180.c
1258 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1259
1260 ANALOG DEVICES INC ADV748X DRIVER
1261 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1262 L:      linux-media@vger.kernel.org
1263 S:      Maintained
1264 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1265 F:      drivers/media/i2c/adv748x/*
1266
1267 ANALOG DEVICES INC ADV7511 DRIVER
1268 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1269 L:      linux-media@vger.kernel.org
1270 S:      Maintained
1271 F:      drivers/media/i2c/adv7511*
1272
1273 ANALOG DEVICES INC ADV7604 DRIVER
1274 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1275 L:      linux-media@vger.kernel.org
1276 S:      Maintained
1277 F:      drivers/media/i2c/adv7604*
1278 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1279
1280 ANALOG DEVICES INC ADV7842 DRIVER
1281 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1282 L:      linux-media@vger.kernel.org
1283 S:      Maintained
1284 F:      drivers/media/i2c/adv7842*
1285
1286 ANALOG DEVICES INC ADXRS290 DRIVER
1287 M:      Nishant Malpani <nish.malpani25@gmail.com>
1288 L:      linux-iio@vger.kernel.org
1289 S:      Supported
1290 F:      drivers/iio/gyro/adxrs290.c
1291 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1292
1293 ANALOG DEVICES INC ASOC CODEC DRIVERS
1294 M:      Lars-Peter Clausen <lars@metafoo.de>
1295 M:      Nuno Sá <nuno.sa@analog.com>
1296 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1297 S:      Supported
1298 W:      http://wiki.analog.com/
1299 W:      https://ez.analog.com/linux-software-drivers
1300 F:      sound/soc/codecs/ad1*
1301 F:      sound/soc/codecs/ad7*
1302 F:      sound/soc/codecs/adau*
1303 F:      sound/soc/codecs/adav*
1304 F:      sound/soc/codecs/sigmadsp.*
1305 F:      sound/soc/codecs/ssm*
1306
1307 ANALOG DEVICES INC DMA DRIVERS
1308 M:      Lars-Peter Clausen <lars@metafoo.de>
1309 S:      Supported
1310 W:      https://ez.analog.com/linux-software-drivers
1311 F:      drivers/dma/dma-axi-dmac.c
1312
1313 ANALOG DEVICES INC IIO DRIVERS
1314 M:      Lars-Peter Clausen <lars@metafoo.de>
1315 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1316 S:      Supported
1317 W:      http://wiki.analog.com/
1318 W:      https://ez.analog.com/linux-software-drivers
1319 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1320 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1321 F:      Documentation/devicetree/bindings/iio/*/adi,*
1322 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1323 F:      drivers/iio/*/ad*
1324 F:      drivers/iio/adc/ltc249*
1325 F:      drivers/iio/amplifiers/hmc425a.c
1326 F:      drivers/staging/iio/*/ad*
1327 X:      drivers/iio/*/adjd*
1328
1329 ANALOGBITS PLL LIBRARIES
1330 M:      Paul Walmsley <paul.walmsley@sifive.com>
1331 S:      Supported
1332 F:      drivers/clk/analogbits/*
1333 F:      include/linux/clk/analogbits*
1334
1335 ANDROID CONFIG FRAGMENTS
1336 M:      Rob Herring <robh@kernel.org>
1337 S:      Supported
1338 F:      kernel/configs/android*
1339
1340 ANDROID DRIVERS
1341 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1342 M:      Arve Hjønnevåg <arve@android.com>
1343 M:      Todd Kjos <tkjos@android.com>
1344 M:      Martijn Coenen <maco@android.com>
1345 M:      Joel Fernandes <joel@joelfernandes.org>
1346 M:      Christian Brauner <christian@brauner.io>
1347 M:      Carlos Llamas <cmllamas@google.com>
1348 M:      Suren Baghdasaryan <surenb@google.com>
1349 L:      linux-kernel@vger.kernel.org
1350 S:      Supported
1351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1352 F:      drivers/android/
1353
1354 ANDROID GOLDFISH PIC DRIVER
1355 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1356 S:      Supported
1357 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1358 F:      drivers/irqchip/irq-goldfish-pic.c
1359
1360 ANDROID GOLDFISH RTC DRIVER
1361 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1362 S:      Supported
1363 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1364 F:      drivers/rtc/rtc-goldfish.c
1365
1366 AOA (Apple Onboard Audio) ALSA DRIVER
1367 M:      Johannes Berg <johannes@sipsolutions.net>
1368 L:      linuxppc-dev@lists.ozlabs.org
1369 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1370 S:      Maintained
1371 F:      sound/aoa/
1372
1373 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1374 M:      William Breathitt Gray <william.gray@linaro.org>
1375 L:      linux-iio@vger.kernel.org
1376 S:      Maintained
1377 F:      drivers/iio/addac/stx104.c
1378
1379 APM DRIVER
1380 M:      Jiri Kosina <jikos@kernel.org>
1381 S:      Odd fixes
1382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1383 F:      arch/x86/kernel/apm_32.c
1384 F:      drivers/char/apm-emulation.c
1385 F:      include/linux/apm_bios.h
1386 F:      include/uapi/linux/apm_bios.h
1387
1388 APPARMOR SECURITY MODULE
1389 M:      John Johansen <john.johansen@canonical.com>
1390 M:      John Johansen <john@apparmor.net>
1391 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1392 S:      Supported
1393 W:      apparmor.net
1394 B:      https://gitlab.com/apparmor/apparmor-kernel
1395 C:      irc://irc.oftc.net/apparmor
1396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1397 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1398 F:      Documentation/admin-guide/LSM/apparmor.rst
1399 F:      security/apparmor/
1400
1401 APPLE BCM5974 MULTITOUCH DRIVER
1402 M:      Henrik Rydberg <rydberg@bitmath.org>
1403 L:      linux-input@vger.kernel.org
1404 S:      Odd fixes
1405 F:      drivers/input/mouse/bcm5974.c
1406
1407 APPLE PCIE CONTROLLER DRIVER
1408 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1409 M:      Marc Zyngier <maz@kernel.org>
1410 L:      linux-pci@vger.kernel.org
1411 S:      Maintained
1412 F:      drivers/pci/controller/pcie-apple.c
1413
1414 APPLE SMC DRIVER
1415 M:      Henrik Rydberg <rydberg@bitmath.org>
1416 L:      linux-hwmon@vger.kernel.org
1417 S:      Odd fixes
1418 F:      drivers/hwmon/applesmc.c
1419
1420 APPLETALK NETWORK LAYER
1421 L:      netdev@vger.kernel.org
1422 S:      Odd fixes
1423 F:      drivers/net/appletalk/
1424 F:      include/linux/atalk.h
1425 F:      include/uapi/linux/atalk.h
1426 F:      net/appletalk/
1427
1428 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1429 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1430 S:      Supported
1431 F:      arch/arm64/boot/dts/apm/
1432
1433 APPLIED MICRO (APM) X-GENE SOC EDAC
1434 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1435 S:      Supported
1436 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1437 F:      drivers/edac/xgene_edac.c
1438
1439 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1440 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1441 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1442 S:      Supported
1443 F:      drivers/net/ethernet/apm/xgene-v2/
1444
1445 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1446 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1447 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1448 M:      Quan Nguyen <quan@os.amperecomputing.com>
1449 S:      Supported
1450 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1451 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1452 F:      drivers/net/ethernet/apm/xgene/
1453 F:      drivers/net/mdio/mdio-xgene.c
1454
1455 APPLIED MICRO (APM) X-GENE SOC PMU
1456 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1457 S:      Supported
1458 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1459 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1460 F:      drivers/perf/xgene_pmu.c
1461
1462 APTINA CAMERA SENSOR PLL
1463 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1464 L:      linux-media@vger.kernel.org
1465 S:      Maintained
1466 F:      drivers/media/i2c/aptina-pll.*
1467
1468 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1469 M:      Aleksa Savic <savicaleksa83@gmail.com>
1470 M:      Jack Doan <me@jackdoan.com>
1471 L:      linux-hwmon@vger.kernel.org
1472 S:      Maintained
1473 F:      Documentation/hwmon/aquacomputer_d5next.rst
1474 F:      drivers/hwmon/aquacomputer_d5next.c
1475
1476 AQUANTIA ETHERNET DRIVER (atlantic)
1477 M:      Igor Russkikh <irusskikh@marvell.com>
1478 L:      netdev@vger.kernel.org
1479 S:      Supported
1480 W:      https://www.marvell.com/
1481 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1482 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1483 F:      drivers/net/ethernet/aquantia/atlantic/
1484
1485 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1486 M:      Egor Pomozov <epomozov@marvell.com>
1487 L:      netdev@vger.kernel.org
1488 S:      Supported
1489 W:      http://www.aquantia.com
1490 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1491
1492 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1493 M:      Krzysztof Hałasa <khalasa@piap.pl>
1494 L:      linux-media@vger.kernel.org
1495 S:      Maintained
1496 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1497 F:      drivers/media/i2c/ar0521.c
1498
1499 ARASAN NAND CONTROLLER DRIVER
1500 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1501 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1502 L:      linux-mtd@lists.infradead.org
1503 S:      Maintained
1504 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1505 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1506
1507 ARC FRAMEBUFFER DRIVER
1508 M:      Jaya Kumar <jayalk@intworks.biz>
1509 S:      Maintained
1510 F:      drivers/video/fbdev/arcfb.c
1511 F:      drivers/video/fbdev/core/fb_defio.c
1512
1513 ARC PGU DRM DRIVER
1514 M:      Alexey Brodkin <abrodkin@synopsys.com>
1515 S:      Supported
1516 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1517 F:      drivers/gpu/drm/tiny/arcpgu.c
1518
1519 ARCNET NETWORK LAYER
1520 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1521 L:      netdev@vger.kernel.org
1522 S:      Maintained
1523 F:      drivers/net/arcnet/
1524 F:      include/uapi/linux/if_arcnet.h
1525
1526 ARM ARCHITECTED TIMER DRIVER
1527 M:      Mark Rutland <mark.rutland@arm.com>
1528 M:      Marc Zyngier <maz@kernel.org>
1529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1530 S:      Maintained
1531 F:      arch/arm/include/asm/arch_timer.h
1532 F:      arch/arm64/include/asm/arch_timer.h
1533 F:      drivers/clocksource/arm_arch_timer.c
1534
1535 ARM HDLCD DRM DRIVER
1536 M:      Liviu Dudau <liviu.dudau@arm.com>
1537 S:      Supported
1538 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1539 F:      drivers/gpu/drm/arm/hdlcd_*
1540
1541 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1542 M:      Linus Walleij <linus.walleij@linaro.org>
1543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1544 S:      Maintained
1545 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1546 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1547 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1548 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1549 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1550 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1551 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1552 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1553 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1554 F:      arch/arm/boot/dts/arm-realview-*
1555 F:      arch/arm/boot/dts/integrator*
1556 F:      arch/arm/boot/dts/versatile*
1557 F:      arch/arm/mach-versatile/
1558 F:      drivers/bus/arm-integrator-lm.c
1559 F:      drivers/clk/versatile/
1560 F:      drivers/i2c/busses/i2c-versatile.c
1561 F:      drivers/irqchip/irq-versatile-fpga.c
1562 F:      drivers/mtd/maps/physmap-versatile.*
1563 F:      drivers/power/reset/arm-versatile-reboot.c
1564 F:      drivers/soc/versatile/
1565
1566 ARM KOMEDA DRM-KMS DRIVER
1567 M:      James (Qian) Wang <james.qian.wang@arm.com>
1568 M:      Liviu Dudau <liviu.dudau@arm.com>
1569 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1570 L:      Mali DP Maintainers <malidp@foss.arm.com>
1571 S:      Supported
1572 T:      git git://anongit.freedesktop.org/drm/drm-misc
1573 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1574 F:      Documentation/gpu/komeda-kms.rst
1575 F:      drivers/gpu/drm/arm/display/include/
1576 F:      drivers/gpu/drm/arm/display/komeda/
1577
1578 ARM MALI PANFROST DRM DRIVER
1579 M:      Rob Herring <robh@kernel.org>
1580 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1581 R:      Steven Price <steven.price@arm.com>
1582 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1583 L:      dri-devel@lists.freedesktop.org
1584 S:      Supported
1585 T:      git git://anongit.freedesktop.org/drm/drm-misc
1586 F:      drivers/gpu/drm/panfrost/
1587 F:      include/uapi/drm/panfrost_drm.h
1588
1589 ARM MALI-DP DRM DRIVER
1590 M:      Liviu Dudau <liviu.dudau@arm.com>
1591 M:      Brian Starkey <brian.starkey@arm.com>
1592 L:      Mali DP Maintainers <malidp@foss.arm.com>
1593 S:      Supported
1594 T:      git git://anongit.freedesktop.org/drm/drm-misc
1595 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1596 F:      Documentation/gpu/afbc.rst
1597 F:      drivers/gpu/drm/arm/
1598
1599 ARM MFM AND FLOPPY DRIVERS
1600 M:      Ian Molton <spyro@f2s.com>
1601 S:      Maintained
1602 F:      arch/arm/include/asm/floppy.h
1603 F:      arch/arm/mach-rpc/floppydma.S
1604
1605 ARM PMU PROFILING AND DEBUGGING
1606 M:      Will Deacon <will@kernel.org>
1607 M:      Mark Rutland <mark.rutland@arm.com>
1608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1609 S:      Maintained
1610 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1611 F:      Documentation/devicetree/bindings/perf/
1612 F:      arch/arm*/include/asm/hw_breakpoint.h
1613 F:      arch/arm*/include/asm/perf_event.h
1614 F:      arch/arm*/kernel/hw_breakpoint.c
1615 F:      arch/arm*/kernel/perf_*
1616 F:      drivers/perf/
1617 F:      include/linux/perf/arm_pmu.h
1618
1619 ARM PORT
1620 M:      Russell King <linux@armlinux.org.uk>
1621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1622 S:      Odd Fixes
1623 W:      http://www.armlinux.org.uk/
1624 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1625 F:      arch/arm/
1626 X:      arch/arm/boot/dts/
1627
1628 ARM PRIMECELL AACI PL041 DRIVER
1629 M:      Russell King <linux@armlinux.org.uk>
1630 S:      Odd Fixes
1631 F:      sound/arm/aaci.*
1632
1633 ARM PRIMECELL BUS SUPPORT
1634 M:      Russell King <linux@armlinux.org.uk>
1635 S:      Odd Fixes
1636 F:      drivers/amba/
1637 F:      include/linux/amba/bus.h
1638
1639 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1640 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1641 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1642 L:      linux-mtd@lists.infradead.org
1643 S:      Maintained
1644 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1645 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1646
1647 ARM PRIMECELL PL35X SMC DRIVER
1648 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1649 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 S:      Maintained
1652 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1653 F:      drivers/memory/pl353-smc.c
1654
1655 ARM PRIMECELL CLCD PL110 DRIVER
1656 M:      Russell King <linux@armlinux.org.uk>
1657 S:      Odd Fixes
1658 F:      drivers/video/fbdev/amba-clcd.*
1659
1660 ARM PRIMECELL KMI PL050 DRIVER
1661 M:      Russell King <linux@armlinux.org.uk>
1662 S:      Odd Fixes
1663 F:      drivers/input/serio/ambakmi.*
1664 F:      include/linux/amba/kmi.h
1665
1666 ARM PRIMECELL MMCI PL180/1 DRIVER
1667 M:      Russell King <linux@armlinux.org.uk>
1668 S:      Odd Fixes
1669 F:      drivers/mmc/host/mmci.*
1670 F:      include/linux/amba/mmci.h
1671
1672 ARM PRIMECELL SSP PL022 SPI DRIVER
1673 M:      Linus Walleij <linus.walleij@linaro.org>
1674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1675 S:      Maintained
1676 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1677 F:      drivers/spi/spi-pl022.c
1678
1679 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1680 M:      Russell King <linux@armlinux.org.uk>
1681 S:      Odd Fixes
1682 F:      drivers/tty/serial/amba-pl01*.c
1683 F:      include/linux/amba/serial.h
1684
1685 ARM PRIMECELL VIC PL190/PL192 DRIVER
1686 M:      Linus Walleij <linus.walleij@linaro.org>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Maintained
1689 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1690 F:      drivers/irqchip/irq-vic.c
1691
1692 ARM SMC WATCHDOG DRIVER
1693 M:      Julius Werner <jwerner@chromium.org>
1694 R:      Evan Benn <evanbenn@chromium.org>
1695 S:      Maintained
1696 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1697 F:      drivers/watchdog/arm_smc_wdt.c
1698
1699 ARM SMMU DRIVERS
1700 M:      Will Deacon <will@kernel.org>
1701 R:      Robin Murphy <robin.murphy@arm.com>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1705 F:      drivers/iommu/arm/
1706 F:      drivers/iommu/io-pgtable-arm*
1707
1708 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1709 M:      Arnd Bergmann <arnd@arndb.de>
1710 M:      Olof Johansson <olof@lixom.net>
1711 M:      soc@kernel.org
1712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1713 S:      Maintained
1714 C:      irc://irc.libera.chat/armlinux
1715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1716 F:      arch/arm/boot/dts/Makefile
1717 F:      arch/arm64/boot/dts/Makefile
1718
1719 ARM SUB-ARCHITECTURES
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Maintained
1722 C:      irc://irc.libera.chat/armlinux
1723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1724 F:      arch/arm/mach-*/
1725 F:      arch/arm/plat-*/
1726
1727 ARM/ACTIONS SEMI ARCHITECTURE
1728 M:      Andreas Färber <afaerber@suse.de>
1729 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1732 S:      Maintained
1733 F:      Documentation/devicetree/bindings/arm/actions.yaml
1734 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1735 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1736 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1737 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1738 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1739 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1740 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1741 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1742 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1743 F:      arch/arm/boot/dts/owl-*
1744 F:      arch/arm/mach-actions/
1745 F:      arch/arm64/boot/dts/actions/
1746 F:      drivers/clk/actions/
1747 F:      drivers/clocksource/timer-owl*
1748 F:      drivers/dma/owl-dma.c
1749 F:      drivers/i2c/busses/i2c-owl.c
1750 F:      drivers/irqchip/irq-owl-sirq.c
1751 F:      drivers/mmc/host/owl-mmc.c
1752 F:      drivers/net/ethernet/actions/
1753 F:      drivers/pinctrl/actions/*
1754 F:      drivers/soc/actions/
1755 F:      include/dt-bindings/power/owl-*
1756 F:      include/dt-bindings/reset/actions,*
1757 F:      include/linux/soc/actions/
1758 N:      owl
1759
1760 ARM/ADS SPHERE MACHINE SUPPORT
1761 M:      Lennert Buytenhek <kernel@wantstofly.org>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764
1765 ARM/AFEB9260 MACHINE SUPPORT
1766 M:      Sergey Lapin <slapin@ossfans.org>
1767 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1768 S:      Maintained
1769
1770 ARM/AJECO 1ARM MACHINE SUPPORT
1771 M:      Lennert Buytenhek <kernel@wantstofly.org>
1772 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1773 S:      Maintained
1774
1775 ARM/Allwinner SoC Clock Support
1776 M:      Emilio López <emilio@elopez.com.ar>
1777 S:      Maintained
1778 F:      drivers/clk/sunxi/
1779
1780 ARM/Allwinner sunXi SoC support
1781 M:      Chen-Yu Tsai <wens@csie.org>
1782 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1783 M:      Samuel Holland <samuel@sholland.org>
1784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785 S:      Maintained
1786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1787 L:      linux-sunxi@lists.linux.dev
1788 F:      arch/arm/mach-sunxi/
1789 F:      arch/arm64/boot/dts/allwinner/
1790 F:      drivers/clk/sunxi-ng/
1791 F:      drivers/pinctrl/sunxi/
1792 F:      drivers/soc/sunxi/
1793 N:      allwinner
1794 N:      sun[x456789]i
1795 N:      sun50i
1796
1797 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1798 M:      Neil Armstrong <narmstrong@baylibre.com>
1799 M:      Jerome Brunet <jbrunet@baylibre.com>
1800 L:      linux-amlogic@lists.infradead.org
1801 S:      Maintained
1802 F:      Documentation/devicetree/bindings/clock/amlogic*
1803 F:      drivers/clk/meson/
1804 F:      include/dt-bindings/clock/gxbb*
1805 F:      include/dt-bindings/clock/meson*
1806
1807 ARM/Amlogic Meson SoC Crypto Drivers
1808 M:      Corentin Labbe <clabbe@baylibre.com>
1809 L:      linux-crypto@vger.kernel.org
1810 L:      linux-amlogic@lists.infradead.org
1811 S:      Maintained
1812 F:      Documentation/devicetree/bindings/crypto/amlogic*
1813 F:      drivers/crypto/amlogic/
1814
1815 ARM/Amlogic Meson SoC Sound Drivers
1816 M:      Jerome Brunet <jbrunet@baylibre.com>
1817 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1818 S:      Maintained
1819 F:      Documentation/devicetree/bindings/sound/amlogic*
1820 F:      sound/soc/meson/
1821
1822 ARM/Amlogic Meson SoC support
1823 M:      Neil Armstrong <narmstrong@baylibre.com>
1824 M:      Kevin Hilman <khilman@baylibre.com>
1825 R:      Jerome Brunet <jbrunet@baylibre.com>
1826 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 L:      linux-amlogic@lists.infradead.org
1829 S:      Maintained
1830 W:      http://linux-meson.com/
1831 F:      arch/arm/boot/dts/meson*
1832 F:      arch/arm/mach-meson/
1833 F:      arch/arm64/boot/dts/amlogic/
1834 F:      drivers/mmc/host/meson*
1835 F:      drivers/pinctrl/meson/
1836 F:      drivers/rtc/rtc-meson*
1837 F:      drivers/soc/amlogic/
1838 N:      meson
1839
1840 ARM/Annapurna Labs ALPINE ARCHITECTURE
1841 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1842 M:      Antoine Tenart <atenart@kernel.org>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845 F:      arch/arm/boot/dts/alpine*
1846 F:      arch/arm/mach-alpine/
1847 F:      arch/arm64/boot/dts/amazon/
1848 F:      drivers/*/*alpine*
1849
1850 ARM/APPLE MACHINE SUPPORT
1851 M:      Hector Martin <marcan@marcan.st>
1852 M:      Sven Peter <sven@svenpeter.dev>
1853 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1854 L:      asahi@lists.linux.dev
1855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1856 S:      Maintained
1857 W:      https://asahilinux.org
1858 B:      https://github.com/AsahiLinux/linux/issues
1859 C:      irc://irc.oftc.net/asahi-dev
1860 T:      git https://github.com/AsahiLinux/linux.git
1861 F:      Documentation/devicetree/bindings/arm/apple.yaml
1862 F:      Documentation/devicetree/bindings/arm/apple/*
1863 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1864 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1865 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1866 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1867 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1868 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1869 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1870 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1871 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1872 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1873 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1874 F:      Documentation/devicetree/bindings/power/apple*
1875 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1876 F:      arch/arm64/boot/dts/apple/
1877 F:      drivers/clk/clk-apple-nco.c
1878 F:      drivers/dma/apple-admac.c
1879 F:      drivers/i2c/busses/i2c-pasemi-core.c
1880 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1881 F:      drivers/iommu/apple-dart.c
1882 F:      drivers/irqchip/irq-apple-aic.c
1883 F:      drivers/mailbox/apple-mailbox.c
1884 F:      drivers/nvme/host/apple.c
1885 F:      drivers/nvmem/apple-efuses.c
1886 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1887 F:      drivers/soc/apple/*
1888 F:      drivers/watchdog/apple_wdt.c
1889 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1890 F:      include/dt-bindings/pinctrl/apple.h
1891 F:      include/linux/apple-mailbox.h
1892 F:      include/linux/soc/apple/*
1893
1894 ARM/ARTPEC MACHINE SUPPORT
1895 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1896 M:      Lars Persson <lars.persson@axis.com>
1897 L:      linux-arm-kernel@axis.com
1898 S:      Maintained
1899 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1900 F:      arch/arm/boot/dts/artpec6*
1901 F:      arch/arm/mach-artpec
1902 F:      drivers/clk/axis
1903 F:      drivers/crypto/axis
1904 F:      drivers/mmc/host/usdhi6rol0.c
1905 F:      drivers/pinctrl/pinctrl-artpec*
1906
1907 ARM/ASPEED I2C DRIVER
1908 M:      Brendan Higgins <brendanhiggins@google.com>
1909 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1910 R:      Joel Stanley <joel@jms.id.au>
1911 L:      linux-i2c@vger.kernel.org
1912 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1913 S:      Maintained
1914 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1915 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1916 F:      drivers/i2c/busses/i2c-aspeed.c
1917 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1918
1919 ARM/ASPEED MACHINE SUPPORT
1920 M:      Joel Stanley <joel@jms.id.au>
1921 R:      Andrew Jeffery <andrew@aj.id.au>
1922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1923 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1924 S:      Supported
1925 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1927 F:      Documentation/devicetree/bindings/arm/aspeed/
1928 F:      arch/arm/boot/dts/aspeed-*
1929 F:      arch/arm/mach-aspeed/
1930 N:      aspeed
1931
1932 ARM/BITMAIN ARCHITECTURE
1933 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Maintained
1936 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1937 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1938 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1939 F:      arch/arm64/boot/dts/bitmain/
1940 F:      drivers/clk/clk-bm1880.c
1941 F:      drivers/pinctrl/pinctrl-bm1880.c
1942
1943 ARM/CALXEDA HIGHBANK ARCHITECTURE
1944 M:      Andre Przywara <andre.przywara@arm.com>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Maintained
1947 F:      arch/arm/boot/dts/ecx-*.dts*
1948 F:      arch/arm/boot/dts/highbank.dts
1949 F:      arch/arm/mach-highbank/
1950
1951 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1952 M:      Krzysztof Halasa <khalasa@piap.pl>
1953 S:      Maintained
1954 F:      arch/arm/mach-cns3xxx/
1955
1956 ARM/CAVIUM THUNDER NETWORK DRIVER
1957 M:      Sunil Goutham <sgoutham@marvell.com>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Supported
1960 F:      drivers/net/ethernet/cavium/thunder/
1961
1962 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1963 M:      Lukasz Majewski <lukma@denx.de>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Maintained
1966 F:      arch/arm/mach-ep93xx/ts72xx.c
1967
1968 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1969 M:      Alexander Shiyan <shc_work@mail.ru>
1970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 S:      Odd Fixes
1972 N:      clps711x
1973
1974 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1975 M:      Lennert Buytenhek <kernel@wantstofly.org>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978
1979 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1980 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1981 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984 F:      arch/arm/mach-ep93xx/
1985 F:      arch/arm/mach-ep93xx/include/mach/
1986
1987 ARM/CLKDEV SUPPORT
1988 M:      Russell King <linux@armlinux.org.uk>
1989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1990 S:      Maintained
1991 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1992 F:      drivers/clk/clkdev.c
1993
1994 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1995 M:      Baruch Siach <baruch@tkos.co.il>
1996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1997 S:      Maintained
1998 F:      arch/arm/boot/dts/cx92755*
1999 N:      digicolor
2000
2001 ARM/CONTEC MICRO9 MACHINE SUPPORT
2002 M:      Hubert Feurstein <hubert.feurstein@contec.at>
2003 S:      Maintained
2004 F:      arch/arm/mach-ep93xx/micro9.c
2005
2006 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2007 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2008 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2009 R:      Mike Leach <mike.leach@linaro.org>
2010 R:      Leo Yan <leo.yan@linaro.org>
2011 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2013 S:      Maintained
2014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2015 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2016 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2017 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2018 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2019 F:      Documentation/trace/coresight/*
2020 F:      drivers/hwtracing/coresight/*
2021 F:      include/dt-bindings/arm/coresight-cti-dt.h
2022 F:      include/linux/coresight*
2023 F:      samples/coresight/*
2024 F:      tools/perf/arch/arm/util/auxtrace.c
2025 F:      tools/perf/arch/arm/util/cs-etm.c
2026 F:      tools/perf/arch/arm/util/cs-etm.h
2027 F:      tools/perf/arch/arm/util/pmu.c
2028 F:      tools/perf/util/cs-etm-decoder/*
2029 F:      tools/perf/util/cs-etm.*
2030
2031 ARM/CORGI MACHINE SUPPORT
2032 M:      Richard Purdie <rpurdie@rpsys.net>
2033 S:      Maintained
2034
2035 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2036 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2037 M:      Linus Walleij <linus.walleij@linaro.org>
2038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 S:      Maintained
2040 T:      git git://github.com/ulli-kroll/linux.git
2041 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2042 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2043 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2044 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2045 F:      arch/arm/boot/dts/gemini*
2046 F:      arch/arm/mach-gemini/
2047 F:      drivers/crypto/gemini/
2048 F:      drivers/net/ethernet/cortina/
2049 F:      drivers/pinctrl/pinctrl-gemini.c
2050 F:      drivers/rtc/rtc-ftrtc010.c
2051
2052 ARM/CZ.NIC TURRIS SUPPORT
2053 M:      Marek Behún <kabel@kernel.org>
2054 S:      Maintained
2055 W:      https://www.turris.cz/
2056 F:      Documentation/ABI/testing/debugfs-moxtet
2057 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2058 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2059 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2060 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2061 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2062 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2063 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2064 F:      drivers/bus/moxtet.c
2065 F:      drivers/firmware/turris-mox-rwtm.c
2066 F:      drivers/leds/leds-turris-omnia.c
2067 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2068 F:      drivers/gpio/gpio-moxtet.c
2069 F:      drivers/watchdog/armada_37xx_wdt.c
2070 F:      include/dt-bindings/bus/moxtet.h
2071 F:      include/linux/armada-37xx-rwtm-mailbox.h
2072 F:      include/linux/moxtet.h
2073
2074 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2075 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2077 S:      Maintained
2078 F:      arch/arm/mach-pxa/ezx.c
2079
2080 ARM/FARADAY FA526 PORT
2081 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2083 S:      Maintained
2084 T:      git git://git.berlios.de/gemini-board
2085 F:      arch/arm/mm/*-fa*
2086
2087 ARM/FOOTBRIDGE ARCHITECTURE
2088 M:      Russell King <linux@armlinux.org.uk>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Maintained
2091 W:      http://www.armlinux.org.uk/
2092 F:      arch/arm/include/asm/hardware/dec21285.h
2093 F:      arch/arm/mach-footbridge/
2094
2095 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2096 M:      Shawn Guo <shawnguo@kernel.org>
2097 M:      Sascha Hauer <s.hauer@pengutronix.de>
2098 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2099 R:      Fabio Estevam <festevam@gmail.com>
2100 R:      NXP Linux Team <linux-imx@nxp.com>
2101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S:      Maintained
2103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2104 X:      drivers/media/i2c/
2105 N:      imx
2106 N:      mxs
2107
2108 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2109 M:      Shawn Guo <shawnguo@kernel.org>
2110 M:      Li Yang <leoyang.li@nxp.com>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 S:      Maintained
2113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2114 F:      arch/arm/boot/dts/ls1021a*
2115 F:      arch/arm64/boot/dts/freescale/fsl-*
2116 F:      arch/arm64/boot/dts/freescale/qoriq-*
2117
2118 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2119 M:      Shawn Guo <shawnguo@kernel.org>
2120 M:      Sascha Hauer <s.hauer@pengutronix.de>
2121 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2122 R:      Stefan Agner <stefan@agner.ch>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Maintained
2125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2126 F:      arch/arm/boot/dts/vf*
2127 F:      arch/arm/mach-imx/*vf610*
2128
2129 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2130 M:      Lennert Buytenhek <kernel@wantstofly.org>
2131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2132 S:      Maintained
2133
2134 ARM/GUMSTIX MACHINE SUPPORT
2135 M:      Steve Sakoman <sakoman@gmail.com>
2136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2137 S:      Maintained
2138
2139 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2140 M:      Philipp Zabel <philipp.zabel@gmail.com>
2141 M:      Paul Parsons <lost.distance@yahoo.com>
2142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2143 S:      Maintained
2144 F:      arch/arm/mach-pxa/hx4700.c
2145 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2146 F:      sound/soc/pxa/hx4700.c
2147
2148 ARM/HISILICON SOC SUPPORT
2149 M:      Wei Xu <xuwei5@hisilicon.com>
2150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2151 S:      Supported
2152 W:      http://www.hisilicon.com
2153 T:      git git://github.com/hisilicon/linux-hisi.git
2154 F:      arch/arm/boot/dts/hi3*
2155 F:      arch/arm/boot/dts/hip*
2156 F:      arch/arm/boot/dts/hisi*
2157 F:      arch/arm/mach-hisi/
2158 F:      arch/arm64/boot/dts/hisilicon/
2159
2160 ARM/HP JORNADA 7XX MACHINE SUPPORT
2161 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2162 S:      Maintained
2163 W:      www.jlime.com
2164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2165 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2166 F:      arch/arm/mach-sa1100/jornada720.c
2167
2168 ARM/HPE GXP ARCHITECTURE
2169 M:      Jean-Marie Verdun <verdun@hpe.com>
2170 M:      Nick Hawkins <nick.hawkins@hpe.com>
2171 S:      Maintained
2172 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2173 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2174 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2175 F:      arch/arm/boot/dts/hpe-bmc*
2176 F:      arch/arm/boot/dts/hpe-gxp*
2177 F:      arch/arm/mach-hpe/
2178 F:      drivers/clocksource/timer-gxp.c
2179 F:      drivers/spi/spi-gxp.c
2180 F:      drivers/watchdog/gxp-wdt.c
2181
2182 ARM/IGEP MACHINE SUPPORT
2183 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2184 M:      Javier Martinez Canillas <javier@dowhile0.org>
2185 L:      linux-omap@vger.kernel.org
2186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2187 S:      Maintained
2188 F:      arch/arm/boot/dts/omap3-igep*
2189
2190 ARM/INCOME PXA270 SUPPORT
2191 M:      Marek Vasut <marek.vasut@gmail.com>
2192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2193 S:      Maintained
2194 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2195
2196 ARM/INTEL IOP32X ARM ARCHITECTURE
2197 M:      Lennert Buytenhek <kernel@wantstofly.org>
2198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2199 S:      Maintained
2200
2201 ARM/INTEL IQ81342EX MACHINE SUPPORT
2202 M:      Lennert Buytenhek <kernel@wantstofly.org>
2203 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2204 S:      Maintained
2205
2206 ARM/INTEL IXDP2850 MACHINE SUPPORT
2207 M:      Lennert Buytenhek <kernel@wantstofly.org>
2208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210
2211 ARM/INTEL IXP4XX ARM ARCHITECTURE
2212 M:      Linus Walleij <linusw@kernel.org>
2213 M:      Imre Kaloz <kaloz@openwrt.org>
2214 M:      Krzysztof Halasa <khalasa@piap.pl>
2215 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2216 S:      Maintained
2217 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2218 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2219 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2220 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2221 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2222 F:      arch/arm/mach-ixp4xx/
2223 F:      drivers/bus/intel-ixp4xx-eb.c
2224 F:      drivers/clocksource/timer-ixp4xx.c
2225 F:      drivers/crypto/ixp4xx_crypto.c
2226 F:      drivers/gpio/gpio-ixp4xx.c
2227 F:      drivers/irqchip/irq-ixp4xx.c
2228 F:      include/linux/irqchip/irq-ixp4xx.h
2229 F:      include/linux/platform_data/timer-ixp4xx.h
2230
2231 ARM/INTEL KEEMBAY ARCHITECTURE
2232 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2233 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2234 S:      Maintained
2235 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2236 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2237 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2238
2239 ARM/INTEL XSC3 (MANZANO) ARM CORE
2240 M:      Lennert Buytenhek <kernel@wantstofly.org>
2241 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2242 S:      Maintained
2243
2244 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2245 M:      Lennert Buytenhek <kernel@wantstofly.org>
2246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2247 S:      Maintained
2248
2249 ARM/LG1K ARCHITECTURE
2250 M:      Chanho Min <chanho.min@lge.com>
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Maintained
2253 F:      arch/arm64/boot/dts/lg/
2254
2255 ARM/LOGICPD PXA270 MACHINE SUPPORT
2256 M:      Lennert Buytenhek <kernel@wantstofly.org>
2257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2258 S:      Maintained
2259
2260 ARM/LPC18XX ARCHITECTURE
2261 M:      Vladimir Zapolskiy <vz@mleia.com>
2262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 S:      Maintained
2264 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2265 F:      arch/arm/boot/dts/lpc43*
2266 F:      drivers/i2c/busses/i2c-lpc2k.c
2267 F:      drivers/memory/pl172.c
2268 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2269 F:      drivers/rtc/rtc-lpc24xx.c
2270 N:      lpc18xx
2271
2272 ARM/LPC32XX SOC SUPPORT
2273 M:      Vladimir Zapolskiy <vz@mleia.com>
2274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2275 S:      Maintained
2276 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2277 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2278 F:      arch/arm/boot/dts/lpc32*
2279 F:      arch/arm/mach-lpc32xx/
2280 F:      drivers/i2c/busses/i2c-pnx.c
2281 F:      drivers/net/ethernet/nxp/lpc_eth.c
2282 F:      drivers/usb/host/ohci-nxp.c
2283 F:      drivers/watchdog/pnx4008_wdt.c
2284 N:      lpc32xx
2285
2286 ARM/MAGICIAN MACHINE SUPPORT
2287 M:      Philipp Zabel <philipp.zabel@gmail.com>
2288 S:      Maintained
2289
2290 ARM/Marvell Dove/MV78xx0/Orion SOC support
2291 M:      Andrew Lunn <andrew@lunn.ch>
2292 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2293 M:      Gregory Clement <gregory.clement@bootlin.com>
2294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2295 S:      Maintained
2296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2297 F:      Documentation/devicetree/bindings/soc/dove/
2298 F:      arch/arm/boot/dts/dove*
2299 F:      arch/arm/boot/dts/orion5x*
2300 F:      arch/arm/mach-dove/
2301 F:      arch/arm/mach-mv78xx0/
2302 F:      arch/arm/mach-orion5x/
2303 F:      arch/arm/plat-orion/
2304 F:      drivers/soc/dove/
2305
2306 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2307 M:      Andrew Lunn <andrew@lunn.ch>
2308 M:      Gregory Clement <gregory.clement@bootlin.com>
2309 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2311 S:      Maintained
2312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2313 F:      arch/arm/boot/dts/armada*
2314 F:      arch/arm/boot/dts/kirkwood*
2315 F:      arch/arm/configs/mvebu_*_defconfig
2316 F:      arch/arm/mach-mvebu/
2317 F:      arch/arm64/boot/dts/marvell/armada*
2318 F:      arch/arm64/boot/dts/marvell/cn913*
2319 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2320 F:      drivers/cpufreq/armada-8k-cpufreq.c
2321 F:      drivers/cpufreq/mvebu-cpufreq.c
2322 F:      drivers/irqchip/irq-armada-370-xp.c
2323 F:      drivers/irqchip/irq-mvebu-*
2324 F:      drivers/pinctrl/mvebu/
2325 F:      drivers/rtc/rtc-armada38x.c
2326
2327 ARM/Mediatek RTC DRIVER
2328 M:      Eddie Huang <eddie.huang@mediatek.com>
2329 M:      Sean Wang <sean.wang@mediatek.com>
2330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2331 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2332 S:      Maintained
2333 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2334 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2335 F:      drivers/rtc/rtc-mt2712.c
2336 F:      drivers/rtc/rtc-mt6397.c
2337 F:      drivers/rtc/rtc-mt7622.c
2338
2339 ARM/Mediatek SoC support
2340 M:      Matthias Brugger <matthias.bgg@gmail.com>
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2343 S:      Maintained
2344 W:      https://mtk.wiki.kernel.org/
2345 C:      irc://chat.freenode.net/linux-mediatek
2346 F:      arch/arm/boot/dts/mt6*
2347 F:      arch/arm/boot/dts/mt7*
2348 F:      arch/arm/boot/dts/mt8*
2349 F:      arch/arm/mach-mediatek/
2350 F:      arch/arm64/boot/dts/mediatek/
2351 F:      drivers/soc/mediatek/
2352 N:      mtk
2353 N:      mt[678]
2354 K:      mediatek
2355
2356 ARM/Mediatek USB3 PHY DRIVER
2357 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2359 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2360 S:      Maintained
2361 F:      Documentation/devicetree/bindings/phy/mediatek,*
2362 F:      drivers/phy/mediatek/
2363
2364 ARM/Microchip (AT91) SoC support
2365 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2366 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2367 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2369 S:      Supported
2370 W:      http://www.linux4sam.org
2371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2372 F:      arch/arm/boot/dts/at91*.dts
2373 F:      arch/arm/boot/dts/at91*.dtsi
2374 F:      arch/arm/boot/dts/sama*.dts
2375 F:      arch/arm/boot/dts/sama*.dtsi
2376 F:      arch/arm/include/debug/at91.S
2377 F:      arch/arm/mach-at91/
2378 F:      drivers/memory/atmel*
2379 F:      drivers/watchdog/sama5d4_wdt.c
2380 F:      include/soc/at91/
2381 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2382 X:      drivers/net/wireless/atmel/
2383 N:      at91
2384 N:      atmel
2385
2386 ARM/Microchip Sparx5 SoC support
2387 M:      Lars Povlsen <lars.povlsen@microchip.com>
2388 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2389 M:      UNGLinuxDriver@microchip.com
2390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2391 S:      Supported
2392 T:      git git://github.com/microchip-ung/linux-upstream.git
2393 F:      arch/arm64/boot/dts/microchip/
2394 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2395 N:      sparx5
2396
2397 Microchip Timer Counter Block (TCB) Capture Driver
2398 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2400 L:      linux-iio@vger.kernel.org
2401 S:      Maintained
2402 F:      drivers/counter/microchip-tcb-capture.c
2403
2404 ARM/MILBEAUT ARCHITECTURE
2405 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2406 M:      Takao Orito <orito.takao@socionext.com>
2407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2408 S:      Maintained
2409 F:      arch/arm/boot/dts/milbeaut*
2410 F:      arch/arm/mach-milbeaut/
2411 N:      milbeaut
2412
2413 ARM/MIOA701 MACHINE SUPPORT
2414 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2416 S:      Maintained
2417 F:      arch/arm/mach-pxa/mioa701.c
2418
2419 ARM/MStar/Sigmastar Armv7 SoC support
2420 M:      Daniel Palmer <daniel@thingy.jp>
2421 M:      Romain Perier <romain.perier@gmail.com>
2422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2423 S:      Maintained
2424 W:      http://linux-chenxing.org/
2425 T:      git git://github.com/linux-chenxing/linux.git
2426 F:      Documentation/devicetree/bindings/arm/mstar/*
2427 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2428 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2429 F:      arch/arm/boot/dts/mstar-*
2430 F:      arch/arm/mach-mstar/
2431 F:      drivers/clk/mstar/
2432 F:      drivers/clocksource/timer-msc313e.c
2433 F:      drivers/gpio/gpio-msc313.c
2434 F:      drivers/rtc/rtc-msc313.c
2435 F:      drivers/watchdog/msc313e_wdt.c
2436 F:      include/dt-bindings/clock/mstar-*
2437 F:      include/dt-bindings/gpio/msc313-gpio.h
2438
2439 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2440 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2441 S:      Maintained
2442
2443 ARM/NOMADIK/Ux500 ARCHITECTURES
2444 M:      Linus Walleij <linus.walleij@linaro.org>
2445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2446 S:      Maintained
2447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2448 F:      Documentation/devicetree/bindings/arm/ste-*
2449 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2450 F:      Documentation/devicetree/bindings/arm/ux500/
2451 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2452 F:      arch/arm/boot/dts/ste-*
2453 F:      arch/arm/mach-nomadik/
2454 F:      arch/arm/mach-ux500/
2455 F:      drivers/clk/clk-nomadik.c
2456 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2457 F:      drivers/dma/ste_dma40*
2458 F:      drivers/hwspinlock/u8500_hsem.c
2459 F:      drivers/i2c/busses/i2c-nomadik.c
2460 F:      drivers/iio/adc/ab8500-gpadc.c
2461 F:      drivers/mfd/ab8500*
2462 F:      drivers/mfd/abx500*
2463 F:      drivers/mfd/db8500*
2464 F:      drivers/pinctrl/nomadik/
2465 F:      drivers/rtc/rtc-ab8500.c
2466 F:      drivers/rtc/rtc-pl031.c
2467 F:      drivers/soc/ux500/
2468
2469 ARM/NUVOTON NPCM ARCHITECTURE
2470 M:      Avi Fishman <avifishman70@gmail.com>
2471 M:      Tomer Maimon <tmaimon77@gmail.com>
2472 M:      Tali Perry <tali.perry1@gmail.com>
2473 R:      Patrick Venture <venture@google.com>
2474 R:      Nancy Yuen <yuenn@google.com>
2475 R:      Benjamin Fair <benjaminfair@google.com>
2476 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2477 S:      Supported
2478 F:      Documentation/devicetree/bindings/*/*/*npcm*
2479 F:      Documentation/devicetree/bindings/*/*npcm*
2480 F:      Documentation/devicetree/bindings/arm/npcm/*
2481 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2482 F:      arch/arm/boot/dts/nuvoton-npcm*
2483 F:      arch/arm/mach-npcm/
2484 F:      arch/arm64/boot/dts/nuvoton/
2485 F:      drivers/*/*npcm*
2486 F:      drivers/*/*/*npcm*
2487 F:      drivers/rtc/rtc-nct3018y.c
2488 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2489 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2490
2491 ARM/NUVOTON WPCM450 ARCHITECTURE
2492 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2493 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2494 S:      Maintained
2495 W:      https://github.com/neuschaefer/wpcm450/wiki
2496 F:      Documentation/devicetree/bindings/*/*wpcm*
2497 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2498 F:      arch/arm/mach-npcm/wpcm450.c
2499 F:      drivers/*/*/*wpcm*
2500 F:      drivers/*/*wpcm*
2501
2502 ARM/NXP S32G ARCHITECTURE
2503 M:      Chester Lin <clin@suse.com>
2504 R:      Andreas Färber <afaerber@suse.de>
2505 R:      Matthias Brugger <mbrugger@suse.com>
2506 R:      NXP S32 Linux Team <s32@nxp.com>
2507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2508 S:      Maintained
2509 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2510
2511 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2512 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2513 S:      Orphan
2514 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2515 F:      arch/arm/mach-s3c/gta02.h
2516 F:      arch/arm/mach-s3c/mach-gta02.c
2517
2518 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2519 M:      Alexander Clouter <alex@digriz.org.uk>
2520 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2521 S:      Maintained
2522 W:      http://www.digriz.org.uk/ts78xx/kernel
2523 F:      arch/arm/mach-orion5x/ts78xx-*
2524
2525 ARM/OXNAS platform support
2526 M:      Neil Armstrong <narmstrong@baylibre.com>
2527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2528 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2529 S:      Maintained
2530 F:      arch/arm/boot/dts/ox8*.dts*
2531 F:      arch/arm/mach-oxnas/
2532 F:      drivers/power/reset/oxnas-restart.c
2533 N:      oxnas
2534
2535 ARM/PALM TREO SUPPORT
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 S:      Orphan
2538 F:      arch/arm/mach-pxa/palmtreo.*
2539
2540 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2541 M:      Marek Vasut <marek.vasut@gmail.com>
2542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2543 S:      Maintained
2544 W:      http://hackndev.com
2545 F:      arch/arm/mach-pxa/include/mach/palmld.h
2546 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2547 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2548 F:      arch/arm/mach-pxa/palmld.c
2549 F:      arch/arm/mach-pxa/palmt5.*
2550 F:      arch/arm/mach-pxa/palmtc.c
2551 F:      arch/arm/mach-pxa/palmte2.*
2552 F:      arch/arm/mach-pxa/palmtx.c
2553
2554 ARM/PALMZ72 SUPPORT
2555 M:      Sergey Lapin <slapin@ossfans.org>
2556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2557 S:      Maintained
2558 W:      http://hackndev.com
2559 F:      arch/arm/mach-pxa/palmz72.*
2560
2561 ARM/PLEB SUPPORT
2562 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2563 S:      Maintained
2564 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2565
2566 ARM/PT DIGITAL BOARD PORT
2567 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2569 S:      Maintained
2570 W:      http://www.armlinux.org.uk/
2571
2572 ARM/QUALCOMM SUPPORT
2573 M:      Andy Gross <agross@kernel.org>
2574 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2575 R:      Konrad Dybcio <konrad.dybcio@somainline.org>
2576 L:      linux-arm-msm@vger.kernel.org
2577 S:      Maintained
2578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2579 F:      Documentation/devicetree/bindings/*/qcom*
2580 F:      Documentation/devicetree/bindings/soc/qcom/
2581 F:      arch/arm/boot/dts/qcom-*.dts
2582 F:      arch/arm/boot/dts/qcom-*.dtsi
2583 F:      arch/arm/mach-qcom/
2584 F:      arch/arm64/boot/dts/qcom/
2585 F:      drivers/*/*/qcom*
2586 F:      drivers/*/*/qcom/
2587 F:      drivers/*/pm8???-*
2588 F:      drivers/*/qcom*
2589 F:      drivers/*/qcom/
2590 F:      drivers/bluetooth/btqcomsmd.c
2591 F:      drivers/clocksource/timer-qcom.c
2592 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2593 F:      drivers/extcon/extcon-qcom*
2594 F:      drivers/i2c/busses/i2c-qcom-geni.c
2595 F:      drivers/i2c/busses/i2c-qup.c
2596 F:      drivers/iommu/msm*
2597 F:      drivers/mfd/ssbi.c
2598 F:      drivers/mmc/host/mmci_qcom*
2599 F:      drivers/mmc/host/sdhci-msm.c
2600 F:      drivers/pci/controller/dwc/pcie-qcom.c
2601 F:      drivers/phy/qualcomm/
2602 F:      drivers/power/*/msm*
2603 F:      drivers/reset/reset-qcom-*
2604 F:      drivers/ufs/host/ufs-qcom*
2605 F:      drivers/spi/spi-geni-qcom.c
2606 F:      drivers/spi/spi-qcom-qspi.c
2607 F:      drivers/spi/spi-qup.c
2608 F:      drivers/tty/serial/msm_serial.c
2609 F:      drivers/usb/dwc3/dwc3-qcom.c
2610 F:      include/dt-bindings/*/qcom*
2611 F:      include/linux/*/qcom*
2612 F:      include/linux/soc/qcom/
2613
2614 ARM/RADISYS ENP2611 MACHINE SUPPORT
2615 M:      Lennert Buytenhek <kernel@wantstofly.org>
2616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2617 S:      Maintained
2618
2619 ARM/RDA MICRO ARCHITECTURE
2620 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2622 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2623 S:      Maintained
2624 F:      Documentation/devicetree/bindings/arm/rda.yaml
2625 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2626 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2627 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2628 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2629 F:      arch/arm/boot/dts/rda8810pl-*
2630 F:      drivers/clocksource/timer-rda.c
2631 F:      drivers/gpio/gpio-rda.c
2632 F:      drivers/irqchip/irq-rda-intc.c
2633 F:      drivers/tty/serial/rda-uart.c
2634
2635 ARM/REALTEK ARCHITECTURE
2636 M:      Andreas Färber <afaerber@suse.de>
2637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2638 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2639 S:      Maintained
2640 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2641 F:      arch/arm/boot/dts/rtd*
2642 F:      arch/arm/mach-realtek/
2643 F:      arch/arm64/boot/dts/realtek/
2644
2645 ARM/RENESAS ARM64 ARCHITECTURE
2646 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2647 M:      Magnus Damm <magnus.damm@gmail.com>
2648 L:      linux-renesas-soc@vger.kernel.org
2649 S:      Supported
2650 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2651 C:      irc://irc.libera.chat/renesas-soc
2652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2653 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2654 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2655 F:      Documentation/devicetree/bindings/soc/renesas/
2656 F:      arch/arm64/boot/dts/renesas/
2657 F:      drivers/soc/renesas/
2658 F:      include/linux/soc/renesas/
2659
2660 ARM/RISCPC ARCHITECTURE
2661 M:      Russell King <linux@armlinux.org.uk>
2662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2663 S:      Maintained
2664 W:      http://www.armlinux.org.uk/
2665 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2666 F:      arch/arm/include/asm/hardware/ioc.h
2667 F:      arch/arm/include/asm/hardware/iomd.h
2668 F:      arch/arm/include/asm/hardware/memc.h
2669 F:      arch/arm/mach-rpc/
2670 F:      drivers/net/ethernet/8390/etherh.c
2671 F:      drivers/net/ethernet/i825xx/ether1*
2672 F:      drivers/net/ethernet/seeq/ether3*
2673 F:      drivers/scsi/arm/
2674
2675 ARM/Rockchip SoC support
2676 M:      Heiko Stuebner <heiko@sntech.de>
2677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2678 L:      linux-rockchip@lists.infradead.org
2679 S:      Maintained
2680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2681 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2682 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2683 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2684 F:      arch/arm/boot/dts/rk3*
2685 F:      arch/arm/boot/dts/rv1108*
2686 F:      arch/arm/mach-rockchip/
2687 F:      drivers/*/*/*rockchip*
2688 F:      drivers/*/*rockchip*
2689 F:      drivers/clk/rockchip/
2690 F:      drivers/i2c/busses/i2c-rk3x.c
2691 F:      sound/soc/rockchip/
2692 N:      rockchip
2693
2694 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2695 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2696 R:      Alim Akhtar <alim.akhtar@samsung.com>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 L:      linux-samsung-soc@vger.kernel.org
2699 S:      Maintained
2700 C:      irc://irc.libera.chat/linux-exynos
2701 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2702 B:      mailto:linux-samsung-soc@vger.kernel.org
2703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2704 F:      Documentation/arm/samsung/
2705 F:      Documentation/devicetree/bindings/arm/samsung/
2706 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2707 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2708 F:      Documentation/devicetree/bindings/soc/samsung/
2709 F:      arch/arm/boot/dts/exynos*
2710 F:      arch/arm/boot/dts/s3c*
2711 F:      arch/arm/boot/dts/s5p*
2712 F:      arch/arm/mach-exynos*/
2713 F:      arch/arm/mach-s3c/
2714 F:      arch/arm/mach-s5p*/
2715 F:      arch/arm64/boot/dts/exynos/
2716 F:      drivers/*/*/*s3c24*
2717 F:      drivers/*/*s3c24*
2718 F:      drivers/*/*s3c64xx*
2719 F:      drivers/*/*s5pv210*
2720 F:      drivers/clocksource/samsung_pwm_timer.c
2721 F:      drivers/memory/samsung/
2722 F:      drivers/pwm/pwm-samsung.c
2723 F:      drivers/soc/samsung/
2724 F:      drivers/tty/serial/samsung*
2725 F:      include/clocksource/samsung_pwm.h
2726 F:      include/linux/platform_data/*s3c*
2727 F:      include/linux/serial_s3c.h
2728 F:      include/linux/soc/samsung/
2729 N:      exynos
2730 N:      s3c2410
2731 N:      s3c64xx
2732 N:      s5pv210
2733
2734 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2735 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2737 L:      linux-media@vger.kernel.org
2738 S:      Maintained
2739 F:      drivers/media/platform/samsung/s5p-g2d/
2740
2741 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2742 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2743 L:      linux-samsung-soc@vger.kernel.org
2744 L:      linux-media@vger.kernel.org
2745 S:      Maintained
2746 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2747 F:      drivers/media/cec/platform/s5p/
2748
2749 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2750 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2751 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2752 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2754 L:      linux-media@vger.kernel.org
2755 S:      Maintained
2756 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2757 F:      drivers/media/platform/samsung/s5p-jpeg/
2758
2759 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2760 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2761 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2763 L:      linux-media@vger.kernel.org
2764 S:      Maintained
2765 F:      drivers/media/platform/samsung/s5p-mfc/
2766
2767 ARM/SHMOBILE ARM ARCHITECTURE
2768 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2769 M:      Magnus Damm <magnus.damm@gmail.com>
2770 L:      linux-renesas-soc@vger.kernel.org
2771 S:      Supported
2772 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2773 C:      irc://irc.libera.chat/renesas-soc
2774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2775 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2776 F:      Documentation/devicetree/bindings/soc/renesas/
2777 F:      arch/arm/boot/dts/emev2*
2778 F:      arch/arm/boot/dts/gr-peach*
2779 F:      arch/arm/boot/dts/iwg20d-q7*
2780 F:      arch/arm/boot/dts/r7s*
2781 F:      arch/arm/boot/dts/r8a*
2782 F:      arch/arm/boot/dts/r9a*
2783 F:      arch/arm/boot/dts/sh*
2784 F:      arch/arm/configs/shmobile_defconfig
2785 F:      arch/arm/include/debug/renesas-scif.S
2786 F:      arch/arm/mach-shmobile/
2787 F:      drivers/soc/renesas/
2788 F:      include/linux/soc/renesas/
2789
2790 ARM/SOCFPGA ARCHITECTURE
2791 M:      Dinh Nguyen <dinguyen@kernel.org>
2792 S:      Maintained
2793 W:      http://www.rocketboards.org
2794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2795 F:      arch/arm/boot/dts/socfpga*
2796 F:      arch/arm/configs/socfpga_defconfig
2797 F:      arch/arm/mach-socfpga/
2798 F:      arch/arm64/boot/dts/altera/
2799 F:      arch/arm64/boot/dts/intel/
2800
2801 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2802 M:      Dinh Nguyen <dinguyen@kernel.org>
2803 S:      Maintained
2804 F:      drivers/clk/socfpga/
2805
2806 ARM/SOCFPGA EDAC SUPPORT
2807 M:      Dinh Nguyen <dinguyen@kernel.org>
2808 S:      Maintained
2809 F:      drivers/edac/altera_edac.[ch]
2810
2811 ARM/SPREADTRUM SoC SUPPORT
2812 M:      Orson Zhai <orsonzhai@gmail.com>
2813 M:      Baolin Wang <baolin.wang7@gmail.com>
2814 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2815 S:      Maintained
2816 F:      arch/arm64/boot/dts/sprd
2817 N:      sprd
2818 N:      sc27xx
2819 N:      sc2731
2820
2821 ARM/STI ARCHITECTURE
2822 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2824 S:      Maintained
2825 W:      http://www.stlinux.com
2826 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2827 F:      arch/arm/boot/dts/sti*
2828 F:      arch/arm/mach-sti/
2829 F:      drivers/ata/ahci_st.c
2830 F:      drivers/char/hw_random/st-rng.c
2831 F:      drivers/clocksource/arm_global_timer.c
2832 F:      drivers/clocksource/clksrc_st_lpc.c
2833 F:      drivers/cpufreq/sti-cpufreq.c
2834 F:      drivers/dma/st_fdma*
2835 F:      drivers/i2c/busses/i2c-st.c
2836 F:      drivers/media/platform/st/sti/c8sectpfe/
2837 F:      drivers/media/rc/st_rc.c
2838 F:      drivers/mmc/host/sdhci-st.c
2839 F:      drivers/phy/st/phy-miphy28lp.c
2840 F:      drivers/phy/st/phy-stih407-usb.c
2841 F:      drivers/pinctrl/pinctrl-st.c
2842 F:      drivers/remoteproc/st_remoteproc.c
2843 F:      drivers/remoteproc/st_slim_rproc.c
2844 F:      drivers/reset/sti/
2845 F:      drivers/rtc/rtc-st-lpc.c
2846 F:      drivers/tty/serial/st-asc.c
2847 F:      drivers/usb/dwc3/dwc3-st.c
2848 F:      drivers/usb/host/ehci-st.c
2849 F:      drivers/usb/host/ohci-st.c
2850 F:      drivers/watchdog/st_lpc_wdt.c
2851 F:      include/linux/remoteproc/st_slim_rproc.h
2852
2853 ARM/STM32 ARCHITECTURE
2854 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2855 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2856 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2858 S:      Maintained
2859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2860 F:      arch/arm/boot/dts/stm32*
2861 F:      arch/arm/mach-stm32/
2862 F:      drivers/clocksource/armv7m_systick.c
2863 N:      stm32
2864 N:      stm
2865
2866 ARM/SUNPLUS SP7021 SOC SUPPORT
2867 M:      Qin Jian <qinjian@cqplus1.com>
2868 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2869 S:      Maintained
2870 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2871 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2872 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2873 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2874 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2875 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2876 F:      arch/arm/configs/sp7021_*defconfig
2877 F:      arch/arm/mach-sunplus/
2878 F:      drivers/irqchip/irq-sp7021-intc.c
2879 F:      drivers/reset/reset-sunplus.c
2880 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2881 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2882
2883 ARM/Synaptics SoC support
2884 M:      Jisheng Zhang <jszhang@kernel.org>
2885 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2887 S:      Maintained
2888 F:      arch/arm/boot/dts/berlin*
2889 F:      arch/arm/mach-berlin/
2890 F:      arch/arm64/boot/dts/synaptics/
2891
2892 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2893 M:      Lennert Buytenhek <kernel@wantstofly.org>
2894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2895 S:      Maintained
2896
2897 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2898 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2899 L:      linux-tegra@vger.kernel.org
2900 L:      linux-media@vger.kernel.org
2901 S:      Maintained
2902 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2903 F:      drivers/media/cec/platform/tegra/
2904
2905 ARM/TESLA FSD SoC SUPPORT
2906 M:      Alim Akhtar <alim.akhtar@samsung.com>
2907 M:      linux-fsd@tesla.com
2908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2909 L:      linux-samsung-soc@vger.kernel.org
2910 S:      Maintained
2911 F:      arch/arm64/boot/dts/tesla*
2912
2913 ARM/TETON BGA MACHINE SUPPORT
2914 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2916 S:      Maintained
2917
2918 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2919 M:      Santosh Shilimkar <ssantosh@kernel.org>
2920 L:      linux-kernel@vger.kernel.org
2921 S:      Maintained
2922 F:      drivers/memory/*emif*
2923
2924 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2925 M:      Nishanth Menon <nm@ti.com>
2926 M:      Santosh Shilimkar <ssantosh@kernel.org>
2927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2928 S:      Maintained
2929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2930 F:      arch/arm/boot/dts/keystone-*
2931 F:      arch/arm/mach-keystone/
2932
2933 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2934 M:      Santosh Shilimkar <ssantosh@kernel.org>
2935 L:      linux-kernel@vger.kernel.org
2936 S:      Maintained
2937 F:      drivers/clk/keystone/
2938
2939 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2940 M:      Santosh Shilimkar <ssantosh@kernel.org>
2941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2942 L:      linux-kernel@vger.kernel.org
2943 S:      Maintained
2944 F:      drivers/clocksource/timer-keystone.c
2945
2946 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2947 M:      Santosh Shilimkar <ssantosh@kernel.org>
2948 L:      linux-kernel@vger.kernel.org
2949 S:      Maintained
2950 F:      drivers/power/reset/keystone-reset.c
2951
2952 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2953 M:      Nishanth Menon <nm@ti.com>
2954 M:      Vignesh Raghavendra <vigneshr@ti.com>
2955 M:      Tero Kristo <kristo@kernel.org>
2956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2957 S:      Supported
2958 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2959 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2960 F:      arch/arm64/boot/dts/ti/Makefile
2961 F:      arch/arm64/boot/dts/ti/k3-*
2962 F:      include/dt-bindings/pinctrl/k3.h
2963
2964 ARM/THECUS N2100 MACHINE SUPPORT
2965 M:      Lennert Buytenhek <kernel@wantstofly.org>
2966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2967 S:      Maintained
2968
2969 ARM/TOSA MACHINE SUPPORT
2970 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2971 M:      Dirk Opfer <dirk@opfer-online.de>
2972 S:      Maintained
2973
2974 ARM/TOSHIBA VISCONTI ARCHITECTURE
2975 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2977 S:      Supported
2978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2979 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2980 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2981 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2982 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2983 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2984 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2985 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2986 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2987 F:      arch/arm64/boot/dts/toshiba/
2988 F:      drivers/clk/visconti/
2989 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2990 F:      drivers/gpio/gpio-visconti.c
2991 F:      drivers/pci/controller/dwc/pcie-visconti.c
2992 F:      drivers/pinctrl/visconti/
2993 F:      drivers/watchdog/visconti_wdt.c
2994 N:      visconti
2995
2996 ARM/UNIPHIER ARCHITECTURE
2997 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2998 M:      Masami Hiramatsu <mhiramat@kernel.org>
2999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3000 S:      Maintained
3001 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
3002 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
3003 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
3004 F:      arch/arm/boot/dts/uniphier*
3005 F:      arch/arm/include/asm/hardware/cache-uniphier.h
3006 F:      arch/arm/mach-uniphier/
3007 F:      arch/arm/mm/cache-uniphier.c
3008 F:      arch/arm64/boot/dts/socionext/uniphier*
3009 F:      drivers/bus/uniphier-system-bus.c
3010 F:      drivers/clk/uniphier/
3011 F:      drivers/dma/uniphier-mdmac.c
3012 F:      drivers/gpio/gpio-uniphier.c
3013 F:      drivers/i2c/busses/i2c-uniphier*
3014 F:      drivers/irqchip/irq-uniphier-aidet.c
3015 F:      drivers/mmc/host/uniphier-sd.c
3016 F:      drivers/pinctrl/uniphier/
3017 F:      drivers/reset/reset-uniphier.c
3018 F:      drivers/tty/serial/8250/8250_uniphier.c
3019 N:      uniphier
3020
3021 ARM/VERSATILE EXPRESS PLATFORM
3022 M:      Liviu Dudau <liviu.dudau@arm.com>
3023 M:      Sudeep Holla <sudeep.holla@arm.com>
3024 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
3025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3026 S:      Maintained
3027 F:      */*/*/vexpress*
3028 F:      */*/vexpress*
3029 F:      arch/arm/boot/dts/vexpress*
3030 F:      arch/arm/mach-vexpress/
3031 F:      arch/arm64/boot/dts/arm/
3032 F:      drivers/clk/versatile/clk-vexpress-osc.c
3033 F:      drivers/clocksource/timer-versatile.c
3034 N:      mps2
3035
3036 ARM/VFP SUPPORT
3037 M:      Russell King <linux@armlinux.org.uk>
3038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3039 S:      Maintained
3040 W:      http://www.armlinux.org.uk/
3041 F:      arch/arm/vfp/
3042
3043 ARM/VOIPAC PXA270 SUPPORT
3044 M:      Marek Vasut <marek.vasut@gmail.com>
3045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3046 S:      Maintained
3047 F:      arch/arm/mach-pxa/include/mach/vpac270.h
3048 F:      arch/arm/mach-pxa/vpac270.c
3049
3050 ARM/VT8500 ARM ARCHITECTURE
3051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3052 S:      Orphan
3053 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3054 F:      arch/arm/mach-vt8500/
3055 F:      drivers/clocksource/timer-vt8500.c
3056 F:      drivers/i2c/busses/i2c-wmt.c
3057 F:      drivers/mmc/host/wmt-sdmmc.c
3058 F:      drivers/pwm/pwm-vt8500.c
3059 F:      drivers/rtc/rtc-vt8500.c
3060 F:      drivers/tty/serial/vt8500_serial.c
3061 F:      drivers/usb/host/ehci-platform.c
3062 F:      drivers/usb/host/uhci-platform.c
3063 F:      drivers/video/fbdev/vt8500lcdfb.*
3064 F:      drivers/video/fbdev/wm8505fb*
3065 F:      drivers/video/fbdev/wmt_ge_rops.*
3066
3067 ARM/ZIPIT Z2 SUPPORT
3068 M:      Marek Vasut <marek.vasut@gmail.com>
3069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3070 S:      Maintained
3071 F:      arch/arm/mach-pxa/include/mach/z2.h
3072 F:      arch/arm/mach-pxa/z2.c
3073
3074 ARM/ZYNQ ARCHITECTURE
3075 M:      Michal Simek <michal.simek@xilinx.com>
3076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3077 S:      Supported
3078 W:      http://wiki.xilinx.com
3079 T:      git https://github.com/Xilinx/linux-xlnx.git
3080 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3081 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3082 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3083 F:      arch/arm/mach-zynq/
3084 F:      drivers/clocksource/timer-cadence-ttc.c
3085 F:      drivers/cpuidle/cpuidle-zynq.c
3086 F:      drivers/edac/synopsys_edac.c
3087 F:      drivers/i2c/busses/i2c-cadence.c
3088 F:      drivers/i2c/busses/i2c-xiic.c
3089 F:      drivers/mmc/host/sdhci-of-arasan.c
3090 N:      zynq
3091 N:      xilinx
3092
3093 ARM64 PORT (AARCH64 ARCHITECTURE)
3094 M:      Catalin Marinas <catalin.marinas@arm.com>
3095 M:      Will Deacon <will@kernel.org>
3096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3097 S:      Maintained
3098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3099 F:      Documentation/arm64/
3100 F:      arch/arm64/
3101 F:      tools/testing/selftests/arm64/
3102 X:      arch/arm64/boot/dts/
3103
3104 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3105 M:      George McCollister <george.mccollister@gmail.com>
3106 L:      netdev@vger.kernel.org
3107 S:      Maintained
3108 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3109 F:      drivers/net/dsa/xrs700x/*
3110 F:      net/dsa/tag_xrs700x.c
3111
3112 AS3645A LED FLASH CONTROLLER DRIVER
3113 M:      Sakari Ailus <sakari.ailus@iki.fi>
3114 L:      linux-leds@vger.kernel.org
3115 S:      Maintained
3116 F:      drivers/leds/flash/leds-as3645a.c
3117
3118 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3119 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3120 L:      linux-media@vger.kernel.org
3121 S:      Maintained
3122 T:      git git://linuxtv.org/media_tree.git
3123 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3124 F:      drivers/media/i2c/ak7375.c
3125
3126 ASAHI KASEI AK8974 DRIVER
3127 M:      Linus Walleij <linus.walleij@linaro.org>
3128 L:      linux-iio@vger.kernel.org
3129 S:      Supported
3130 W:      http://www.akm.com/
3131 F:      drivers/iio/magnetometer/ak8974.c
3132
3133 ASC7621 HARDWARE MONITOR DRIVER
3134 M:      George Joseph <george.joseph@fairview5.com>
3135 L:      linux-hwmon@vger.kernel.org
3136 S:      Maintained
3137 F:      Documentation/hwmon/asc7621.rst
3138 F:      drivers/hwmon/asc7621.c
3139
3140 ASIX AX88796C SPI ETHERNET ADAPTER
3141 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3142 S:      Maintained
3143 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3144 F:      drivers/net/ethernet/asix/ax88796c_*
3145
3146 ASPEED PECI CONTROLLER
3147 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3148 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3149 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3150 S:      Supported
3151 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3152 F:      drivers/peci/controller/peci-aspeed.c
3153
3154 ASPEED PINCTRL DRIVERS
3155 M:      Andrew Jeffery <andrew@aj.id.au>
3156 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3157 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3158 L:      linux-gpio@vger.kernel.org
3159 S:      Maintained
3160 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3161 F:      drivers/pinctrl/aspeed/
3162
3163 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3164 M:      Eddie James <eajames@linux.ibm.com>
3165 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3166 S:      Maintained
3167 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3168 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3169 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3170
3171 ASPEED SD/MMC DRIVER
3172 M:      Andrew Jeffery <andrew@aj.id.au>
3173 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3174 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3175 L:      linux-mmc@vger.kernel.org
3176 S:      Maintained
3177 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3178 F:      drivers/mmc/host/sdhci-of-aspeed*
3179
3180 ASPEED SMC SPI DRIVER
3181 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3182 M:      Cédric Le Goater <clg@kaod.org>
3183 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3184 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3185 L:      linux-spi@vger.kernel.org
3186 S:      Maintained
3187 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3188 F:      drivers/spi/spi-aspeed-smc.c
3189
3190 ASPEED VIDEO ENGINE DRIVER
3191 M:      Eddie James <eajames@linux.ibm.com>
3192 L:      linux-media@vger.kernel.org
3193 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3194 S:      Maintained
3195 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3196 F:      drivers/media/platform/aspeed/
3197
3198 ASPEED USB UDC DRIVER
3199 M:      Neal Liu <neal_liu@aspeedtech.com>
3200 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3201 S:      Maintained
3202 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3203 F:      drivers/usb/gadget/udc/aspeed_udc.c
3204
3205 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3206 M:      Corentin Chary <corentin.chary@gmail.com>
3207 L:      acpi4asus-user@lists.sourceforge.net
3208 L:      platform-driver-x86@vger.kernel.org
3209 S:      Maintained
3210 W:      http://acpi4asus.sf.net
3211 F:      drivers/platform/x86/asus*.c
3212 F:      drivers/platform/x86/eeepc*.c
3213
3214 ASUS TF103C DOCK DRIVER
3215 M:      Hans de Goede <hdegoede@redhat.com>
3216 L:      platform-driver-x86@vger.kernel.org
3217 S:      Maintained
3218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3219 F:      drivers/platform/x86/asus-tf103c-dock.c
3220
3221 ASUS WMI HARDWARE MONITOR DRIVER
3222 M:      Ed Brindley <kernel@maidavale.org>
3223 M:      Denis Pauk <pauk.denis@gmail.com>
3224 L:      linux-hwmon@vger.kernel.org
3225 S:      Maintained
3226 F:      drivers/hwmon/asus_wmi_sensors.c
3227
3228 ASUS WMI EC HARDWARE MONITOR DRIVER
3229 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3230 M:      Denis Pauk <pauk.denis@gmail.com>
3231 L:      linux-hwmon@vger.kernel.org
3232 S:      Maintained
3233 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3234
3235 ASUS EC HARDWARE MONITOR DRIVER
3236 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3237 L:      linux-hwmon@vger.kernel.org
3238 S:      Maintained
3239 F:      drivers/hwmon/asus-ec-sensors.c
3240
3241 ASUS WIRELESS RADIO CONTROL DRIVER
3242 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3243 L:      platform-driver-x86@vger.kernel.org
3244 S:      Maintained
3245 F:      drivers/platform/x86/asus-wireless.c
3246
3247 ASYMMETRIC KEYS
3248 M:      David Howells <dhowells@redhat.com>
3249 L:      keyrings@vger.kernel.org
3250 S:      Maintained
3251 F:      Documentation/crypto/asymmetric-keys.rst
3252 F:      crypto/asymmetric_keys/
3253 F:      include/crypto/pkcs7.h
3254 F:      include/crypto/public_key.h
3255 F:      include/linux/verification.h
3256
3257 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3258 R:      Dan Williams <dan.j.williams@intel.com>
3259 S:      Odd fixes
3260 W:      http://sourceforge.net/projects/xscaleiop
3261 F:      Documentation/crypto/async-tx-api.rst
3262 F:      crypto/async_tx/
3263 F:      include/linux/async_tx.h
3264
3265 AT24 EEPROM DRIVER
3266 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3267 L:      linux-i2c@vger.kernel.org
3268 S:      Maintained
3269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3270 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3271 F:      drivers/misc/eeprom/at24.c
3272
3273 ATA OVER ETHERNET (AOE) DRIVER
3274 M:      "Justin Sanders" <justin@coraid.com>
3275 S:      Supported
3276 W:      http://www.openaoe.org/
3277 F:      Documentation/admin-guide/aoe/
3278 F:      drivers/block/aoe/
3279
3280 ATC260X PMIC MFD DRIVER
3281 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3282 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3283 L:      linux-actions@lists.infradead.org
3284 S:      Maintained
3285 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3286 F:      drivers/input/misc/atc260x-onkey.c
3287 F:      drivers/mfd/atc260*
3288 F:      drivers/power/reset/atc260x-poweroff.c
3289 F:      drivers/regulator/atc260x-regulator.c
3290 F:      include/linux/mfd/atc260x/*
3291
3292 ATHEROS 71XX/9XXX GPIO DRIVER
3293 M:      Alban Bedel <albeu@free.fr>
3294 S:      Maintained
3295 W:      https://github.com/AlbanBedel/linux
3296 T:      git git://github.com/AlbanBedel/linux
3297 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3298 F:      drivers/gpio/gpio-ath79.c
3299
3300 ATHEROS 71XX/9XXX USB PHY DRIVER
3301 M:      Alban Bedel <albeu@free.fr>
3302 S:      Maintained
3303 W:      https://github.com/AlbanBedel/linux
3304 T:      git git://github.com/AlbanBedel/linux
3305 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3306 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3307
3308 ATHEROS ATH GENERIC UTILITIES
3309 M:      Kalle Valo <kvalo@kernel.org>
3310 L:      linux-wireless@vger.kernel.org
3311 S:      Supported
3312 F:      drivers/net/wireless/ath/*
3313
3314 ATHEROS ATH5K WIRELESS DRIVER
3315 M:      Jiri Slaby <jirislaby@kernel.org>
3316 M:      Nick Kossifidis <mickflemm@gmail.com>
3317 M:      Luis Chamberlain <mcgrof@kernel.org>
3318 L:      linux-wireless@vger.kernel.org
3319 S:      Maintained
3320 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3321 F:      drivers/net/wireless/ath/ath5k/
3322
3323 ATHEROS ATH6KL WIRELESS DRIVER
3324 L:      linux-wireless@vger.kernel.org
3325 S:      Orphan
3326 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3327 F:      drivers/net/wireless/ath/ath6kl/
3328
3329 ATI_REMOTE2 DRIVER
3330 M:      Ville Syrjala <syrjala@sci.fi>
3331 S:      Maintained
3332 F:      drivers/input/misc/ati_remote2.c
3333
3334 ATK0110 HWMON DRIVER
3335 M:      Luca Tettamanti <kronos.it@gmail.com>
3336 L:      linux-hwmon@vger.kernel.org
3337 S:      Maintained
3338 F:      drivers/hwmon/asus_atk0110.c
3339
3340 ATLX ETHERNET DRIVERS
3341 M:      Chris Snook <chris.snook@gmail.com>
3342 L:      netdev@vger.kernel.org
3343 S:      Maintained
3344 W:      http://sourceforge.net/projects/atl1
3345 W:      http://atl1.sourceforge.net
3346 F:      drivers/net/ethernet/atheros/
3347
3348 ATM
3349 M:      Chas Williams <3chas3@gmail.com>
3350 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3351 L:      netdev@vger.kernel.org
3352 S:      Maintained
3353 W:      http://linux-atm.sourceforge.net
3354 F:      drivers/atm/
3355 F:      include/linux/atm*
3356 F:      include/uapi/linux/atm*
3357
3358 ATMEL MACB ETHERNET DRIVER
3359 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3360 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3361 S:      Supported
3362 F:      drivers/net/ethernet/cadence/
3363
3364 ATMEL MAXTOUCH DRIVER
3365 M:      Nick Dyer <nick@shmanahar.org>
3366 S:      Maintained
3367 T:      git git://github.com/ndyer/linux.git
3368 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3369 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3370
3371 ATMEL WIRELESS DRIVER
3372 M:      Simon Kelley <simon@thekelleys.org.uk>
3373 L:      linux-wireless@vger.kernel.org
3374 S:      Maintained
3375 W:      http://www.thekelleys.org.uk/atmel
3376 W:      http://atmelwlandriver.sourceforge.net/
3377 F:      drivers/net/wireless/atmel/atmel*
3378
3379 ATOMIC INFRASTRUCTURE
3380 M:      Will Deacon <will@kernel.org>
3381 M:      Peter Zijlstra <peterz@infradead.org>
3382 R:      Boqun Feng <boqun.feng@gmail.com>
3383 R:      Mark Rutland <mark.rutland@arm.com>
3384 L:      linux-kernel@vger.kernel.org
3385 S:      Maintained
3386 F:      arch/*/include/asm/atomic*.h
3387 F:      include/*/atomic*.h
3388 F:      include/linux/refcount.h
3389 F:      Documentation/atomic_*.txt
3390 F:      scripts/atomic/
3391
3392 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3393 M:      Bradley Grove <linuxdrivers@attotech.com>
3394 L:      linux-scsi@vger.kernel.org
3395 S:      Supported
3396 W:      http://www.attotech.com
3397 F:      drivers/scsi/esas2r
3398
3399 ATUSB IEEE 802.15.4 RADIO DRIVER
3400 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3401 L:      linux-wpan@vger.kernel.org
3402 S:      Maintained
3403 F:      drivers/net/ieee802154/at86rf230.h
3404 F:      drivers/net/ieee802154/atusb.c
3405 F:      drivers/net/ieee802154/atusb.h
3406
3407 AUDIT SUBSYSTEM
3408 M:      Paul Moore <paul@paul-moore.com>
3409 M:      Eric Paris <eparis@redhat.com>
3410 L:      linux-audit@redhat.com (moderated for non-subscribers)
3411 S:      Supported
3412 W:      https://github.com/linux-audit
3413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3414 F:      include/asm-generic/audit_*.h
3415 F:      include/linux/audit.h
3416 F:      include/linux/audit_arch.h
3417 F:      include/uapi/linux/audit.h
3418 F:      kernel/audit*
3419 F:      lib/*audit.c
3420
3421 AUXILIARY DISPLAY DRIVERS
3422 M:      Miguel Ojeda <ojeda@kernel.org>
3423 S:      Maintained
3424 F:      Documentation/devicetree/bindings/auxdisplay/
3425 F:      drivers/auxdisplay/
3426 F:      include/linux/cfag12864b.h
3427
3428 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3429 M:      Andreas Klinger <ak@it-klinger.de>
3430 L:      linux-iio@vger.kernel.org
3431 S:      Maintained
3432 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3433 F:      drivers/iio/adc/hx711.c
3434
3435 AX.25 NETWORK LAYER
3436 M:      Ralf Baechle <ralf@linux-mips.org>
3437 L:      linux-hams@vger.kernel.org
3438 S:      Maintained
3439 W:      http://www.linux-ax25.org/
3440 F:      include/net/ax25.h
3441 F:      include/uapi/linux/ax25.h
3442 F:      net/ax25/
3443
3444 AXENTIA ARM DEVICES
3445 M:      Peter Rosin <peda@axentia.se>
3446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3447 S:      Maintained
3448 F:      arch/arm/boot/dts/at91-linea.dtsi
3449 F:      arch/arm/boot/dts/at91-natte.dtsi
3450 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3451 F:      arch/arm/boot/dts/at91-tse850-3.dts
3452
3453 AXENTIA ASOC DRIVERS
3454 M:      Peter Rosin <peda@axentia.se>
3455 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3456 S:      Maintained
3457 F:      Documentation/devicetree/bindings/sound/axentia,*
3458 F:      sound/soc/atmel/tse850-pcm5142.c
3459
3460 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3461 M:      Nuno Sá <nuno.sa@analog.com>
3462 L:      linux-hwmon@vger.kernel.org
3463 S:      Supported
3464 W:      https://ez.analog.com/linux-software-drivers
3465 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3466 F:      drivers/hwmon/axi-fan-control.c
3467
3468 AXXIA I2C CONTROLLER
3469 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3470 L:      linux-i2c@vger.kernel.org
3471 S:      Maintained
3472 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3473 F:      drivers/i2c/busses/i2c-axxia.c
3474
3475 AZ6007 DVB DRIVER
3476 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3477 L:      linux-media@vger.kernel.org
3478 S:      Maintained
3479 W:      https://linuxtv.org
3480 T:      git git://linuxtv.org/media_tree.git
3481 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3482
3483 AZTECH FM RADIO RECEIVER DRIVER
3484 M:      Hans Verkuil <hverkuil@xs4all.nl>
3485 L:      linux-media@vger.kernel.org
3486 S:      Maintained
3487 W:      https://linuxtv.org
3488 T:      git git://linuxtv.org/media_tree.git
3489 F:      drivers/media/radio/radio-aztech*
3490
3491 B43 WIRELESS DRIVER
3492 L:      linux-wireless@vger.kernel.org
3493 L:      b43-dev@lists.infradead.org
3494 S:      Odd Fixes
3495 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3496 F:      drivers/net/wireless/broadcom/b43/
3497
3498 B43LEGACY WIRELESS DRIVER
3499 M:      Larry Finger <Larry.Finger@lwfinger.net>
3500 L:      linux-wireless@vger.kernel.org
3501 L:      b43-dev@lists.infradead.org
3502 S:      Maintained
3503 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3504 F:      drivers/net/wireless/broadcom/b43legacy/
3505
3506 BACKLIGHT CLASS/SUBSYSTEM
3507 M:      Lee Jones <lee@kernel.org>
3508 M:      Daniel Thompson <daniel.thompson@linaro.org>
3509 M:      Jingoo Han <jingoohan1@gmail.com>
3510 L:      dri-devel@lists.freedesktop.org
3511 S:      Maintained
3512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3513 F:      Documentation/ABI/stable/sysfs-class-backlight
3514 F:      Documentation/ABI/testing/sysfs-class-backlight
3515 F:      Documentation/devicetree/bindings/leds/backlight
3516 F:      drivers/video/backlight/
3517 F:      include/linux/backlight.h
3518 F:      include/linux/pwm_backlight.h
3519
3520 BARCO P50 GPIO DRIVER
3521 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3522 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3523 S:      Maintained
3524 F:      drivers/platform/x86/barco-p50-gpio.c
3525
3526 BATMAN ADVANCED
3527 M:      Marek Lindner <mareklindner@neomailbox.ch>
3528 M:      Simon Wunderlich <sw@simonwunderlich.de>
3529 M:      Antonio Quartulli <a@unstable.cc>
3530 M:      Sven Eckelmann <sven@narfation.org>
3531 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3532 S:      Maintained
3533 W:      https://www.open-mesh.org/
3534 Q:      https://patchwork.open-mesh.org/project/batman/list/
3535 B:      https://www.open-mesh.org/projects/batman-adv/issues
3536 C:      ircs://irc.hackint.org/batadv
3537 T:      git https://git.open-mesh.org/linux-merge.git
3538 F:      Documentation/networking/batman-adv.rst
3539 F:      include/uapi/linux/batadv_packet.h
3540 F:      include/uapi/linux/batman_adv.h
3541 F:      net/batman-adv/
3542
3543 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3544 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3545 L:      linux-hams@vger.kernel.org
3546 S:      Maintained
3547 W:      http://www.baycom.org/~tom/ham/ham.html
3548 F:      drivers/net/hamradio/baycom*
3549
3550 BCACHE (BLOCK LAYER CACHE)
3551 M:      Coly Li <colyli@suse.de>
3552 M:      Kent Overstreet <kent.overstreet@gmail.com>
3553 L:      linux-bcache@vger.kernel.org
3554 S:      Maintained
3555 W:      http://bcache.evilpiepirate.org
3556 C:      irc://irc.oftc.net/bcache
3557 F:      drivers/md/bcache/
3558
3559 BDISP ST MEDIA DRIVER
3560 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3561 L:      linux-media@vger.kernel.org
3562 S:      Supported
3563 W:      https://linuxtv.org
3564 T:      git git://linuxtv.org/media_tree.git
3565 F:      drivers/media/platform/st/sti/bdisp
3566
3567 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3568 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3569 L:      netdev@vger.kernel.org
3570 S:      Maintained
3571 F:      drivers/net/ethernet/ec_bhf.c
3572
3573 BEFS FILE SYSTEM
3574 M:      Luis de Bethencourt <luisbg@kernel.org>
3575 M:      Salah Triki <salah.triki@gmail.com>
3576 S:      Maintained
3577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3578 F:      Documentation/filesystems/befs.rst
3579 F:      fs/befs/
3580
3581 BFQ I/O SCHEDULER
3582 M:      Paolo Valente <paolo.valente@linaro.org>
3583 M:      Jens Axboe <axboe@kernel.dk>
3584 L:      linux-block@vger.kernel.org
3585 S:      Maintained
3586 F:      Documentation/block/bfq-iosched.rst
3587 F:      block/bfq-*
3588
3589 BFS FILE SYSTEM
3590 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3591 S:      Maintained
3592 F:      Documentation/filesystems/bfs.rst
3593 F:      fs/bfs/
3594 F:      include/uapi/linux/bfs_fs.h
3595
3596 BITMAP API
3597 M:      Yury Norov <yury.norov@gmail.com>
3598 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3599 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3600 S:      Maintained
3601 F:      include/linux/bitmap.h
3602 F:      include/linux/cpumask.h
3603 F:      include/linux/find.h
3604 F:      include/linux/nodemask.h
3605 F:      lib/bitmap.c
3606 F:      lib/cpumask.c
3607 F:      lib/cpumask_kunit.c
3608 F:      lib/find_bit.c
3609 F:      lib/find_bit_benchmark.c
3610 F:      lib/test_bitmap.c
3611 F:      tools/include/linux/bitmap.h
3612 F:      tools/include/linux/find.h
3613 F:      tools/lib/bitmap.c
3614 F:      tools/lib/find_bit.c
3615
3616 BLINKM RGB LED DRIVER
3617 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3618 S:      Maintained
3619 F:      drivers/leds/leds-blinkm.c
3620
3621 BLOCK LAYER
3622 M:      Jens Axboe <axboe@kernel.dk>
3623 L:      linux-block@vger.kernel.org
3624 S:      Maintained
3625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3626 F:      Documentation/ABI/stable/sysfs-block
3627 F:      Documentation/block/
3628 F:      block/
3629 F:      drivers/block/
3630 F:      include/linux/bio.h
3631 F:      include/linux/blk*
3632 F:      kernel/trace/blktrace.c
3633 F:      lib/sbitmap.c
3634
3635 BLOCK2MTD DRIVER
3636 M:      Joern Engel <joern@lazybastard.org>
3637 L:      linux-mtd@lists.infradead.org
3638 S:      Maintained
3639 F:      drivers/mtd/devices/block2mtd.c
3640
3641 BLUETOOTH DRIVERS
3642 M:      Marcel Holtmann <marcel@holtmann.org>
3643 M:      Johan Hedberg <johan.hedberg@gmail.com>
3644 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3645 L:      linux-bluetooth@vger.kernel.org
3646 S:      Supported
3647 W:      http://www.bluez.org/
3648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3650 F:      drivers/bluetooth/
3651
3652 BLUETOOTH SUBSYSTEM
3653 M:      Marcel Holtmann <marcel@holtmann.org>
3654 M:      Johan Hedberg <johan.hedberg@gmail.com>
3655 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3656 L:      linux-bluetooth@vger.kernel.org
3657 S:      Supported
3658 W:      http://www.bluez.org/
3659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3661 F:      include/net/bluetooth/
3662 F:      net/bluetooth/
3663
3664 BONDING DRIVER
3665 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3666 M:      Veaceslav Falico <vfalico@gmail.com>
3667 M:      Andy Gospodarek <andy@greyhouse.net>
3668 L:      netdev@vger.kernel.org
3669 S:      Supported
3670 W:      http://sourceforge.net/projects/bonding/
3671 F:      Documentation/networking/bonding.rst
3672 F:      drivers/net/bonding/
3673 F:      include/net/bond*
3674 F:      include/uapi/linux/if_bonding.h
3675 F:      tools/testing/selftests/drivers/net/bonding/
3676
3677 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3678 M:      Dan Robertson <dan@dlrobertson.com>
3679 L:      linux-iio@vger.kernel.org
3680 S:      Maintained
3681 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3682 F:      drivers/iio/accel/bma400*
3683
3684 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3685 M:      Alexei Starovoitov <ast@kernel.org>
3686 M:      Daniel Borkmann <daniel@iogearbox.net>
3687 M:      Andrii Nakryiko <andrii@kernel.org>
3688 R:      Martin KaFai Lau <martin.lau@linux.dev>
3689 R:      Song Liu <song@kernel.org>
3690 R:      Yonghong Song <yhs@fb.com>
3691 R:      John Fastabend <john.fastabend@gmail.com>
3692 R:      KP Singh <kpsingh@kernel.org>
3693 R:      Stanislav Fomichev <sdf@google.com>
3694 R:      Hao Luo <haoluo@google.com>
3695 R:      Jiri Olsa <jolsa@kernel.org>
3696 L:      bpf@vger.kernel.org
3697 S:      Supported
3698 W:      https://bpf.io/
3699 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3702 F:      Documentation/bpf/
3703 F:      Documentation/networking/filter.rst
3704 F:      Documentation/userspace-api/ebpf/
3705 F:      arch/*/net/*
3706 F:      include/linux/bpf*
3707 F:      include/linux/btf*
3708 F:      include/linux/filter.h
3709 F:      include/trace/events/xdp.h
3710 F:      include/uapi/linux/bpf*
3711 F:      include/uapi/linux/btf*
3712 F:      include/uapi/linux/filter.h
3713 F:      kernel/bpf/
3714 F:      kernel/trace/bpf_trace.c
3715 F:      lib/test_bpf.c
3716 F:      net/bpf/
3717 F:      net/core/filter.c
3718 F:      net/sched/act_bpf.c
3719 F:      net/sched/cls_bpf.c
3720 F:      samples/bpf/
3721 F:      scripts/bpf_doc.py
3722 F:      scripts/pahole-flags.sh
3723 F:      scripts/pahole-version.sh
3724 F:      tools/bpf/
3725 F:      tools/lib/bpf/
3726 F:      tools/testing/selftests/bpf/
3727
3728 BPF JIT for ARM
3729 M:      Shubham Bansal <illusionist.neo@gmail.com>
3730 L:      bpf@vger.kernel.org
3731 S:      Odd Fixes
3732 F:      arch/arm/net/
3733
3734 BPF JIT for ARM64
3735 M:      Daniel Borkmann <daniel@iogearbox.net>
3736 M:      Alexei Starovoitov <ast@kernel.org>
3737 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3738 L:      bpf@vger.kernel.org
3739 S:      Supported
3740 F:      arch/arm64/net/
3741
3742 BPF JIT for MIPS (32-BIT AND 64-BIT)
3743 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3744 M:      Paul Burton <paulburton@kernel.org>
3745 L:      bpf@vger.kernel.org
3746 S:      Maintained
3747 F:      arch/mips/net/
3748
3749 BPF JIT for NFP NICs
3750 M:      Jakub Kicinski <kuba@kernel.org>
3751 L:      bpf@vger.kernel.org
3752 S:      Odd Fixes
3753 F:      drivers/net/ethernet/netronome/nfp/bpf/
3754
3755 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3756 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3757 M:      Michael Ellerman <mpe@ellerman.id.au>
3758 L:      bpf@vger.kernel.org
3759 S:      Supported
3760 F:      arch/powerpc/net/
3761
3762 BPF JIT for RISC-V (32-bit)
3763 M:      Luke Nelson <luke.r.nels@gmail.com>
3764 M:      Xi Wang <xi.wang@gmail.com>
3765 L:      bpf@vger.kernel.org
3766 S:      Maintained
3767 F:      arch/riscv/net/
3768 X:      arch/riscv/net/bpf_jit_comp64.c
3769
3770 BPF JIT for RISC-V (64-bit)
3771 M:      Björn Töpel <bjorn@kernel.org>
3772 L:      bpf@vger.kernel.org
3773 S:      Maintained
3774 F:      arch/riscv/net/
3775 X:      arch/riscv/net/bpf_jit_comp32.c
3776
3777 BPF JIT for S390
3778 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3779 M:      Heiko Carstens <hca@linux.ibm.com>
3780 M:      Vasily Gorbik <gor@linux.ibm.com>
3781 L:      bpf@vger.kernel.org
3782 S:      Supported
3783 F:      arch/s390/net/
3784 X:      arch/s390/net/pnet.c
3785
3786 BPF JIT for SPARC (32-BIT AND 64-BIT)
3787 M:      David S. Miller <davem@davemloft.net>
3788 L:      bpf@vger.kernel.org
3789 S:      Odd Fixes
3790 F:      arch/sparc/net/
3791
3792 BPF JIT for X86 32-BIT
3793 M:      Wang YanQing <udknight@gmail.com>
3794 L:      bpf@vger.kernel.org
3795 S:      Odd Fixes
3796 F:      arch/x86/net/bpf_jit_comp32.c
3797
3798 BPF JIT for X86 64-BIT
3799 M:      Alexei Starovoitov <ast@kernel.org>
3800 M:      Daniel Borkmann <daniel@iogearbox.net>
3801 L:      bpf@vger.kernel.org
3802 S:      Supported
3803 F:      arch/x86/net/
3804 X:      arch/x86/net/bpf_jit_comp32.c
3805
3806 BPF [CORE]
3807 M:      Alexei Starovoitov <ast@kernel.org>
3808 M:      Daniel Borkmann <daniel@iogearbox.net>
3809 R:      John Fastabend <john.fastabend@gmail.com>
3810 L:      bpf@vger.kernel.org
3811 S:      Maintained
3812 F:      kernel/bpf/verifier.c
3813 F:      kernel/bpf/tnum.c
3814 F:      kernel/bpf/core.c
3815 F:      kernel/bpf/syscall.c
3816 F:      kernel/bpf/dispatcher.c
3817 F:      kernel/bpf/trampoline.c
3818 F:      include/linux/bpf*
3819 F:      include/linux/filter.h
3820
3821 BPF [BTF]
3822 M:      Martin KaFai Lau <martin.lau@linux.dev>
3823 L:      bpf@vger.kernel.org
3824 S:      Maintained
3825 F:      kernel/bpf/btf.c
3826 F:      include/linux/btf*
3827
3828 BPF [TRACING]
3829 M:      Song Liu <song@kernel.org>
3830 R:      Jiri Olsa <jolsa@kernel.org>
3831 L:      bpf@vger.kernel.org
3832 S:      Maintained
3833 F:      kernel/trace/bpf_trace.c
3834 F:      kernel/bpf/stackmap.c
3835
3836 BPF [NETWORKING] (tc BPF, sock_addr)
3837 M:      Martin KaFai Lau <martin.lau@linux.dev>
3838 M:      Daniel Borkmann <daniel@iogearbox.net>
3839 R:      John Fastabend <john.fastabend@gmail.com>
3840 L:      bpf@vger.kernel.org
3841 L:      netdev@vger.kernel.org
3842 S:      Maintained
3843 F:      net/core/filter.c
3844 F:      net/sched/act_bpf.c
3845 F:      net/sched/cls_bpf.c
3846
3847 BPF [NETWORKING] (struct_ops, reuseport)
3848 M:      Martin KaFai Lau <martin.lau@linux.dev>
3849 L:      bpf@vger.kernel.org
3850 L:      netdev@vger.kernel.org
3851 S:      Maintained
3852 F:      kernel/bpf/bpf_struct*
3853
3854 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3855 M:      KP Singh <kpsingh@kernel.org>
3856 R:      Florent Revest <revest@chromium.org>
3857 R:      Brendan Jackman <jackmanb@chromium.org>
3858 L:      bpf@vger.kernel.org
3859 S:      Maintained
3860 F:      Documentation/bpf/prog_lsm.rst
3861 F:      include/linux/bpf_lsm.h
3862 F:      kernel/bpf/bpf_lsm.c
3863 F:      security/bpf/
3864
3865 BPF [STORAGE & CGROUPS]
3866 M:      Martin KaFai Lau <martin.lau@linux.dev>
3867 L:      bpf@vger.kernel.org
3868 S:      Maintained
3869 F:      kernel/bpf/cgroup.c
3870 F:      kernel/bpf/*storage.c
3871 F:      kernel/bpf/bpf_lru*
3872
3873 BPF [RINGBUF]
3874 M:      Andrii Nakryiko <andrii@kernel.org>
3875 L:      bpf@vger.kernel.org
3876 S:      Maintained
3877 F:      kernel/bpf/ringbuf.c
3878
3879 BPF [ITERATOR]
3880 M:      Yonghong Song <yhs@fb.com>
3881 L:      bpf@vger.kernel.org
3882 S:      Maintained
3883 F:      kernel/bpf/*iter.c
3884
3885 BPF [L7 FRAMEWORK] (sockmap)
3886 M:      John Fastabend <john.fastabend@gmail.com>
3887 M:      Jakub Sitnicki <jakub@cloudflare.com>
3888 L:      netdev@vger.kernel.org
3889 L:      bpf@vger.kernel.org
3890 S:      Maintained
3891 F:      include/linux/skmsg.h
3892 F:      net/core/skmsg.c
3893 F:      net/core/sock_map.c
3894 F:      net/ipv4/tcp_bpf.c
3895 F:      net/ipv4/udp_bpf.c
3896 F:      net/unix/unix_bpf.c
3897
3898 BPF [LIBRARY] (libbpf)
3899 M:      Andrii Nakryiko <andrii@kernel.org>
3900 L:      bpf@vger.kernel.org
3901 S:      Maintained
3902 F:      tools/lib/bpf/
3903
3904 BPF [TOOLING] (bpftool)
3905 M:      Quentin Monnet <quentin@isovalent.com>
3906 L:      bpf@vger.kernel.org
3907 S:      Maintained
3908 F:      kernel/bpf/disasm.*
3909 F:      tools/bpf/bpftool/
3910
3911 BPF [SELFTESTS] (Test Runners & Infrastructure)
3912 M:      Andrii Nakryiko <andrii@kernel.org>
3913 R:      Mykola Lysenko <mykolal@fb.com>
3914 L:      bpf@vger.kernel.org
3915 S:      Maintained
3916 F:      tools/testing/selftests/bpf/
3917
3918 BPF [MISC]
3919 L:      bpf@vger.kernel.org
3920 S:      Odd Fixes
3921 K:      (?:\b|_)bpf(?:\b|_)
3922
3923 BROADCOM B44 10/100 ETHERNET DRIVER
3924 M:      Michael Chan <michael.chan@broadcom.com>
3925 L:      netdev@vger.kernel.org
3926 S:      Supported
3927 F:      drivers/net/ethernet/broadcom/b44.*
3928
3929 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3930 M:      Florian Fainelli <f.fainelli@gmail.com>
3931 L:      netdev@vger.kernel.org
3932 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3933 S:      Supported
3934 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3935 F:      drivers/net/dsa/b53/*
3936 F:      drivers/net/dsa/bcm_sf2*
3937 F:      include/linux/dsa/brcm.h
3938 F:      include/linux/platform_data/b53.h
3939
3940 BROADCOM BCMBCA ARM ARCHITECTURE
3941 M:      William Zhang <william.zhang@broadcom.com>
3942 M:      Anand Gore <anand.gore@broadcom.com>
3943 M:      Kursad Oney <kursad.oney@broadcom.com>
3944 M:      Florian Fainelli <f.fainelli@gmail.com>
3945 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3947 S:      Maintained
3948 T:      git git://github.com/broadcom/stblinux.git
3949 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3950 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3951 N:      bcmbca
3952 N:      bcm[9]?47622
3953 N:      bcm[9]?4912
3954 N:      bcm[9]?63138
3955 N:      bcm[9]?63146
3956 N:      bcm[9]?63148
3957 N:      bcm[9]?63158
3958 N:      bcm[9]?63178
3959 N:      bcm[9]?6756
3960 N:      bcm[9]?6813
3961 N:      bcm[9]?6846
3962 N:      bcm[9]?6855
3963 N:      bcm[9]?6856
3964 N:      bcm[9]?6858
3965 N:      bcm[9]?6878
3966
3967 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3968 M:      Florian Fainelli <f.fainelli@gmail.com>
3969 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3970 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3972 S:      Maintained
3973 T:      git git://github.com/broadcom/stblinux.git
3974 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3975 F:      drivers/pci/controller/pcie-brcmstb.c
3976 F:      drivers/staging/vc04_services
3977 N:      bcm2711
3978 N:      bcm283*
3979 N:      raspberrypi
3980
3981 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3982 M:      Florian Fainelli <f.fainelli@gmail.com>
3983 M:      Ray Jui <rjui@broadcom.com>
3984 M:      Scott Branden <sbranden@broadcom.com>
3985 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3986 S:      Maintained
3987 T:      git git://github.com/broadcom/mach-bcm
3988 F:      arch/arm/mach-bcm/
3989 N:      bcm281*
3990 N:      bcm113*
3991 N:      bcm216*
3992 N:      kona
3993
3994 BROADCOM BCM47XX MIPS ARCHITECTURE
3995 M:      Hauke Mehrtens <hauke@hauke-m.de>
3996 M:      Rafał Miłecki <zajec5@gmail.com>
3997 L:      linux-mips@vger.kernel.org
3998 S:      Maintained
3999 F:      Documentation/devicetree/bindings/mips/brcm/
4000 F:      arch/mips/bcm47xx/*
4001 F:      arch/mips/include/asm/mach-bcm47xx/*
4002
4003 BROADCOM BCM4908 ETHERNET DRIVER
4004 M:      Rafał Miłecki <rafal@milecki.pl>
4005 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4006 L:      netdev@vger.kernel.org
4007 S:      Maintained
4008 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
4009 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
4010 F:      drivers/net/ethernet/broadcom/unimac.h
4011
4012 BROADCOM BCM4908 PINMUX DRIVER
4013 M:      Rafał Miłecki <rafal@milecki.pl>
4014 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4015 L:      linux-gpio@vger.kernel.org
4016 S:      Maintained
4017 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
4018 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
4019
4020 BROADCOM BCM5301X ARM ARCHITECTURE
4021 M:      Florian Fainelli <f.fainelli@gmail.com>
4022 M:      Hauke Mehrtens <hauke@hauke-m.de>
4023 M:      Rafał Miłecki <zajec5@gmail.com>
4024 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4026 S:      Maintained
4027 F:      arch/arm/boot/dts/bcm470*
4028 F:      arch/arm/boot/dts/bcm5301*
4029 F:      arch/arm/boot/dts/bcm953012*
4030 F:      arch/arm/mach-bcm/bcm_5301x.c
4031
4032 BROADCOM BCM53573 ARM ARCHITECTURE
4033 M:      Florian Fainelli <f.fainelli@gmail.com>
4034 M:      Rafał Miłecki <rafal@milecki.pl>
4035 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4037 S:      Maintained
4038 F:      arch/arm/boot/dts/bcm47189*
4039 F:      arch/arm/boot/dts/bcm53573*
4040
4041 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4042 M:      Kevin Cernekee <cernekee@gmail.com>
4043 L:      linux-usb@vger.kernel.org
4044 S:      Maintained
4045 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4046
4047 BROADCOM BCM7XXX ARM ARCHITECTURE
4048 M:      Florian Fainelli <f.fainelli@gmail.com>
4049 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4051 S:      Maintained
4052 T:      git git://github.com/broadcom/stblinux.git
4053 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4054 F:      arch/arm/boot/dts/bcm7*.dts*
4055 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4056 F:      arch/arm/mach-bcm/*brcmstb*
4057 F:      arch/arm/mm/cache-b15-rac.c
4058 F:      drivers/bus/brcmstb_gisb.c
4059 F:      drivers/pci/controller/pcie-brcmstb.c
4060 N:      brcmstb
4061 N:      bcm7038
4062 N:      bcm7120
4063
4064 BROADCOM BDC DRIVER
4065 M:      Al Cooper <alcooperx@gmail.com>
4066 L:      linux-usb@vger.kernel.org
4067 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4068 S:      Maintained
4069 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4070 F:      drivers/usb/gadget/udc/bdc/
4071
4072 BROADCOM BMIPS CPUFREQ DRIVER
4073 M:      Markus Mayer <mmayer@broadcom.com>
4074 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4075 L:      linux-pm@vger.kernel.org
4076 S:      Maintained
4077 F:      drivers/cpufreq/bmips-cpufreq.c
4078
4079 BROADCOM BMIPS MIPS ARCHITECTURE
4080 M:      Florian Fainelli <f.fainelli@gmail.com>
4081 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4082 L:      linux-mips@vger.kernel.org
4083 S:      Maintained
4084 T:      git git://github.com/broadcom/stblinux.git
4085 F:      arch/mips/bmips/*
4086 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4087 F:      arch/mips/include/asm/mach-bmips/*
4088 F:      arch/mips/kernel/*bmips*
4089 F:      drivers/soc/bcm/bcm63xx
4090 F:      drivers/irqchip/irq-bcm63*
4091 F:      drivers/irqchip/irq-bcm7*
4092 F:      drivers/irqchip/irq-brcmstb*
4093 F:      include/linux/bcm963xx_nvram.h
4094 F:      include/linux/bcm963xx_tag.h
4095
4096 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4097 M:      Rasesh Mody <rmody@marvell.com>
4098 M:      GR-Linux-NIC-Dev@marvell.com
4099 L:      netdev@vger.kernel.org
4100 S:      Supported
4101 F:      drivers/net/ethernet/broadcom/bnx2.*
4102 F:      drivers/net/ethernet/broadcom/bnx2_*
4103
4104 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4105 M:      Saurav Kashyap <skashyap@marvell.com>
4106 M:      Javed Hasan <jhasan@marvell.com>
4107 M:      GR-QLogic-Storage-Upstream@marvell.com
4108 L:      linux-scsi@vger.kernel.org
4109 S:      Supported
4110 F:      drivers/scsi/bnx2fc/
4111
4112 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4113 M:      Nilesh Javali <njavali@marvell.com>
4114 M:      Manish Rangankar <mrangankar@marvell.com>
4115 M:      GR-QLogic-Storage-Upstream@marvell.com
4116 L:      linux-scsi@vger.kernel.org
4117 S:      Supported
4118 F:      drivers/scsi/bnx2i/
4119
4120 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4121 M:      Ariel Elior <aelior@marvell.com>
4122 M:      Sudarsana Kalluru <skalluru@marvell.com>
4123 M:      Manish Chopra <manishc@marvell.com>
4124 L:      netdev@vger.kernel.org
4125 S:      Supported
4126 F:      drivers/net/ethernet/broadcom/bnx2x/
4127
4128 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4129 M:      Michael Chan <michael.chan@broadcom.com>
4130 L:      netdev@vger.kernel.org
4131 S:      Supported
4132 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4133 F:      drivers/net/ethernet/broadcom/bnxt/
4134 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4135
4136 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4137 M:      Arend van Spriel <aspriel@gmail.com>
4138 M:      Franky Lin <franky.lin@broadcom.com>
4139 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4140 L:      linux-wireless@vger.kernel.org
4141 L:      brcm80211-dev-list.pdl@broadcom.com
4142 L:      SHA-cyfmac-dev-list@infineon.com
4143 S:      Supported
4144 F:      drivers/net/wireless/broadcom/brcm80211/
4145
4146 BROADCOM BRCMSTB GPIO DRIVER
4147 M:      Doug Berger <opendmb@gmail.com>
4148 M:      Florian Fainelli <f.fainelli@gmail.com>
4149 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4150 S:      Supported
4151 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4152 F:      drivers/gpio/gpio-brcmstb.c
4153
4154 BROADCOM BRCMSTB I2C DRIVER
4155 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4156 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4157 L:      linux-i2c@vger.kernel.org
4158 S:      Supported
4159 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4160 F:      drivers/i2c/busses/i2c-brcmstb.c
4161
4162 BROADCOM BRCMSTB UART DRIVER
4163 M:      Al Cooper <alcooperx@gmail.com>
4164 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4165 L:      linux-serial@vger.kernel.org
4166 S:      Maintained
4167 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4168 F:      drivers/tty/serial/8250/8250_bcm7271.c
4169
4170 BROADCOM BRCMSTB USB EHCI DRIVER
4171 M:      Al Cooper <alcooperx@gmail.com>
4172 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4173 L:      linux-usb@vger.kernel.org
4174 S:      Maintained
4175 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4176 F:      drivers/usb/host/ehci-brcm.*
4177
4178 BROADCOM BRCMSTB USB PIN MAP DRIVER
4179 M:      Al Cooper <alcooperx@gmail.com>
4180 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4181 L:      linux-usb@vger.kernel.org
4182 S:      Maintained
4183 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4184 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4185
4186 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4187 M:      Al Cooper <alcooperx@gmail.com>
4188 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4189 L:      linux-kernel@vger.kernel.org
4190 S:      Maintained
4191 F:      drivers/phy/broadcom/phy-brcm-usb*
4192
4193 BROADCOM ETHERNET PHY DRIVERS
4194 M:      Florian Fainelli <f.fainelli@gmail.com>
4195 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4196 L:      netdev@vger.kernel.org
4197 S:      Supported
4198 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4199 F:      drivers/net/phy/bcm*.[ch]
4200 F:      drivers/net/phy/broadcom.c
4201 F:      include/linux/brcmphy.h
4202
4203 BROADCOM GENET ETHERNET DRIVER
4204 M:      Doug Berger <opendmb@gmail.com>
4205 M:      Florian Fainelli <f.fainelli@gmail.com>
4206 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4207 L:      netdev@vger.kernel.org
4208 S:      Supported
4209 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4210 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4211 F:      drivers/net/ethernet/broadcom/genet/
4212 F:      drivers/net/ethernet/broadcom/unimac.h
4213 F:      drivers/net/mdio/mdio-bcm-unimac.c
4214 F:      include/linux/platform_data/bcmgenet.h
4215 F:      include/linux/platform_data/mdio-bcm-unimac.h
4216
4217 BROADCOM IPROC ARM ARCHITECTURE
4218 M:      Ray Jui <rjui@broadcom.com>
4219 M:      Scott Branden <sbranden@broadcom.com>
4220 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4222 S:      Maintained
4223 T:      git git://github.com/broadcom/stblinux.git
4224 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4225 F:      arch/arm64/boot/dts/broadcom/stingray/*
4226 F:      drivers/clk/bcm/clk-ns*
4227 F:      drivers/clk/bcm/clk-sr*
4228 F:      drivers/pinctrl/bcm/pinctrl-ns*
4229 F:      include/dt-bindings/clock/bcm-sr*
4230 N:      iproc
4231 N:      cygnus
4232 N:      bcm[-_]nsp
4233 N:      bcm9113*
4234 N:      bcm9583*
4235 N:      bcm9585*
4236 N:      bcm9586*
4237 N:      bcm988312
4238 N:      bcm113*
4239 N:      bcm583*
4240 N:      bcm585*
4241 N:      bcm586*
4242 N:      bcm88312
4243 N:      hr2
4244 N:      stingray
4245
4246 BROADCOM IPROC GBIT ETHERNET DRIVER
4247 M:      Rafał Miłecki <rafal@milecki.pl>
4248 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4249 L:      netdev@vger.kernel.org
4250 S:      Maintained
4251 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4252 F:      drivers/net/ethernet/broadcom/bgmac*
4253 F:      drivers/net/ethernet/broadcom/unimac.h
4254
4255 BROADCOM KONA GPIO DRIVER
4256 M:      Ray Jui <rjui@broadcom.com>
4257 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4258 S:      Supported
4259 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4260 F:      drivers/gpio/gpio-bcm-kona.c
4261
4262 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4263 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4264 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4265 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4266 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4267 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4268 L:      linux-scsi@vger.kernel.org
4269 S:      Supported
4270 W:      https://www.broadcom.com/support/storage
4271 F:      drivers/scsi/mpi3mr/
4272
4273 BROADCOM NETXTREME-E ROCE DRIVER
4274 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4275 L:      linux-rdma@vger.kernel.org
4276 S:      Supported
4277 W:      http://www.broadcom.com
4278 F:      drivers/infiniband/hw/bnxt_re/
4279 F:      include/uapi/rdma/bnxt_re-abi.h
4280
4281 BROADCOM NVRAM DRIVER
4282 M:      Rafał Miłecki <zajec5@gmail.com>
4283 L:      linux-mips@vger.kernel.org
4284 S:      Maintained
4285 F:      drivers/firmware/broadcom/*
4286
4287 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4288 M:      Rafał Miłecki <rafal@milecki.pl>
4289 M:      Florian Fainelli <f.fainelli@gmail.com>
4290 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4291 L:      linux-pm@vger.kernel.org
4292 S:      Maintained
4293 T:      git git://github.com/broadcom/stblinux.git
4294 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4295 F:      include/dt-bindings/soc/bcm-pmb.h
4296
4297 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4298 M:      Rafał Miłecki <zajec5@gmail.com>
4299 L:      linux-wireless@vger.kernel.org
4300 S:      Maintained
4301 F:      drivers/bcma/
4302 F:      include/linux/bcma/
4303
4304 BROADCOM SPI DRIVER
4305 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4306 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4307 S:      Maintained
4308 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4309 F:      drivers/spi/spi-bcm-qspi.*
4310 F:      drivers/spi/spi-brcmstb-qspi.c
4311 F:      drivers/spi/spi-iproc-qspi.c
4312
4313 BROADCOM STB AVS CPUFREQ DRIVER
4314 M:      Markus Mayer <mmayer@broadcom.com>
4315 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4316 L:      linux-pm@vger.kernel.org
4317 S:      Maintained
4318 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4319 F:      drivers/cpufreq/brcmstb*
4320
4321 BROADCOM STB AVS TMON DRIVER
4322 M:      Markus Mayer <mmayer@broadcom.com>
4323 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4324 L:      linux-pm@vger.kernel.org
4325 S:      Maintained
4326 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4327 F:      drivers/thermal/broadcom/brcmstb*
4328
4329 BROADCOM STB DPFE DRIVER
4330 M:      Markus Mayer <mmayer@broadcom.com>
4331 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4333 S:      Maintained
4334 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4335 F:      drivers/memory/brcmstb_dpfe.c
4336
4337 BROADCOM STB NAND FLASH DRIVER
4338 M:      Brian Norris <computersforpeace@gmail.com>
4339 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4340 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4341 L:      linux-mtd@lists.infradead.org
4342 S:      Maintained
4343 F:      drivers/mtd/nand/raw/brcmnand/
4344 F:      include/linux/platform_data/brcmnand.h
4345
4346 BROADCOM STB PCIE DRIVER
4347 M:      Jim Quinlan <jim2101024@gmail.com>
4348 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4349 M:      Florian Fainelli <f.fainelli@gmail.com>
4350 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4351 L:      linux-pci@vger.kernel.org
4352 S:      Maintained
4353 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4354 F:      drivers/pci/controller/pcie-brcmstb.c
4355
4356 BROADCOM SYSTEMPORT ETHERNET DRIVER
4357 M:      Florian Fainelli <f.fainelli@gmail.com>
4358 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4359 L:      netdev@vger.kernel.org
4360 S:      Supported
4361 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4362 F:      drivers/net/ethernet/broadcom/unimac.h
4363 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4364
4365 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4366 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4367 M:      Prashant Sreedharan <prashant@broadcom.com>
4368 M:      Michael Chan <mchan@broadcom.com>
4369 L:      netdev@vger.kernel.org
4370 S:      Supported
4371 F:      drivers/net/ethernet/broadcom/tg3.*
4372
4373 BROADCOM VK DRIVER
4374 M:      Scott Branden <scott.branden@broadcom.com>
4375 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4376 S:      Supported
4377 F:      drivers/misc/bcm-vk/
4378 F:      include/uapi/linux/misc/bcm_vk.h
4379
4380 BROCADE BFA FC SCSI DRIVER
4381 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4382 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4383 L:      linux-scsi@vger.kernel.org
4384 S:      Supported
4385 F:      drivers/scsi/bfa/
4386
4387 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4388 M:      Rasesh Mody <rmody@marvell.com>
4389 M:      Sudarsana Kalluru <skalluru@marvell.com>
4390 M:      GR-Linux-NIC-Dev@marvell.com
4391 L:      netdev@vger.kernel.org
4392 S:      Supported
4393 F:      drivers/net/ethernet/brocade/bna/
4394
4395 BSG (block layer generic sg v4 driver)
4396 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4397 L:      linux-scsi@vger.kernel.org
4398 S:      Supported
4399 F:      block/bsg.c
4400 F:      include/linux/bsg.h
4401 F:      include/uapi/linux/bsg.h
4402
4403 BT87X AUDIO DRIVER
4404 M:      Clemens Ladisch <clemens@ladisch.de>
4405 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4406 S:      Maintained
4407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4408 F:      Documentation/sound/cards/bt87x.rst
4409 F:      sound/pci/bt87x.c
4410
4411 BT8XXGPIO DRIVER
4412 M:      Michael Buesch <m@bues.ch>
4413 S:      Maintained
4414 W:      http://bu3sch.de/btgpio.php
4415 F:      drivers/gpio/gpio-bt8xx.c
4416
4417 BTRFS FILE SYSTEM
4418 M:      Chris Mason <clm@fb.com>
4419 M:      Josef Bacik <josef@toxicpanda.com>
4420 M:      David Sterba <dsterba@suse.com>
4421 L:      linux-btrfs@vger.kernel.org
4422 S:      Maintained
4423 W:      http://btrfs.wiki.kernel.org/
4424 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4425 C:      irc://irc.libera.chat/btrfs
4426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4427 F:      Documentation/filesystems/btrfs.rst
4428 F:      fs/btrfs/
4429 F:      include/linux/btrfs*
4430 F:      include/uapi/linux/btrfs*
4431
4432 BTTV VIDEO4LINUX DRIVER
4433 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4434 L:      linux-media@vger.kernel.org
4435 S:      Odd fixes
4436 W:      https://linuxtv.org
4437 T:      git git://linuxtv.org/media_tree.git
4438 F:      Documentation/driver-api/media/drivers/bttv*
4439 F:      drivers/media/pci/bt8xx/bttv*
4440
4441 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4442 M:      Chanwoo Choi <cw00.choi@samsung.com>
4443 L:      linux-pm@vger.kernel.org
4444 L:      linux-samsung-soc@vger.kernel.org
4445 S:      Maintained
4446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4447 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4448 F:      drivers/devfreq/exynos-bus.c
4449
4450 BUSLOGIC SCSI DRIVER
4451 M:      Khalid Aziz <khalid@gonehiking.org>
4452 L:      linux-scsi@vger.kernel.org
4453 S:      Maintained
4454 F:      drivers/scsi/BusLogic.*
4455 F:      drivers/scsi/FlashPoint.*
4456
4457 C-MEDIA CMI8788 DRIVER
4458 M:      Clemens Ladisch <clemens@ladisch.de>
4459 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4460 S:      Maintained
4461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4462 F:      sound/pci/oxygen/
4463
4464 C-SKY ARCHITECTURE
4465 M:      Guo Ren <guoren@kernel.org>
4466 L:      linux-csky@vger.kernel.org
4467 S:      Supported
4468 T:      git https://github.com/c-sky/csky-linux.git
4469 F:      Documentation/devicetree/bindings/csky/
4470 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4471 F:      Documentation/devicetree/bindings/timer/csky,*
4472 F:      arch/csky/
4473 F:      drivers/clocksource/timer-gx6605s.c
4474 F:      drivers/clocksource/timer-mp-csky.c
4475 F:      drivers/irqchip/irq-csky-*
4476 N:      csky
4477 K:      csky
4478
4479 CA8210 IEEE-802.15.4 RADIO DRIVER
4480 L:      linux-wpan@vger.kernel.org
4481 S:      Orphan
4482 W:      https://github.com/Cascoda/ca8210-linux.git
4483 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4484 F:      drivers/net/ieee802154/ca8210.c
4485
4486 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4487 M:      Damien Le Moal <damien.lemoal@wdc.com>
4488 L:      linux-riscv@lists.infradead.org
4489 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4490 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4491 F:      drivers/pinctrl/pinctrl-k210.c
4492
4493 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4494 M:      Damien Le Moal <damien.lemoal@wdc.com>
4495 L:      linux-kernel@vger.kernel.org
4496 L:      linux-riscv@lists.infradead.org
4497 S:      Maintained
4498 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4499 F:      drivers/reset/reset-k210.c
4500
4501 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4502 M:      Damien Le Moal <damien.lemoal@wdc.com>
4503 L:      linux-riscv@lists.infradead.org
4504 S:      Maintained
4505 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4506 F:      drivers/soc/canaan/
4507 F:      include/soc/canaan/
4508
4509 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4510 M:      David Howells <dhowells@redhat.com>
4511 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4512 S:      Supported
4513 F:      Documentation/filesystems/caching/cachefiles.rst
4514 F:      fs/cachefiles/
4515
4516 CADENCE MIPI-CSI2 BRIDGES
4517 M:      Maxime Ripard <mripard@kernel.org>
4518 L:      linux-media@vger.kernel.org
4519 S:      Maintained
4520 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4521 F:      drivers/media/platform/cadence/cdns-csi2*
4522
4523 CADENCE NAND DRIVER
4524 L:      linux-mtd@lists.infradead.org
4525 S:      Orphan
4526 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4527 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4528
4529 CADENCE USB3 DRD IP DRIVER
4530 M:      Peter Chen <peter.chen@kernel.org>
4531 M:      Pawel Laszczak <pawell@cadence.com>
4532 R:      Roger Quadros <rogerq@kernel.org>
4533 R:      Aswath Govindraju <a-govindraju@ti.com>
4534 L:      linux-usb@vger.kernel.org
4535 S:      Maintained
4536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4537 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4538 F:      drivers/usb/cdns3/
4539 X:      drivers/usb/cdns3/cdnsp*
4540
4541 CADENCE USBSSP DRD IP DRIVER
4542 M:      Pawel Laszczak <pawell@cadence.com>
4543 L:      linux-usb@vger.kernel.org
4544 S:      Maintained
4545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4546 F:      drivers/usb/cdns3/
4547 X:      drivers/usb/cdns3/cdns3*
4548
4549 CADET FM/AM RADIO RECEIVER DRIVER
4550 M:      Hans Verkuil <hverkuil@xs4all.nl>
4551 L:      linux-media@vger.kernel.org
4552 S:      Maintained
4553 W:      https://linuxtv.org
4554 T:      git git://linuxtv.org/media_tree.git
4555 F:      drivers/media/radio/radio-cadet*
4556
4557 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4558 L:      linux-media@vger.kernel.org
4559 S:      Orphan
4560 T:      git git://linuxtv.org/media_tree.git
4561 F:      Documentation/admin-guide/media/cafe_ccic*
4562 F:      drivers/media/platform/marvell/
4563
4564 CAIF NETWORK LAYER
4565 L:      netdev@vger.kernel.org
4566 S:      Orphan
4567 F:      Documentation/networking/caif/
4568 F:      drivers/net/caif/
4569 F:      include/net/caif/
4570 F:      include/uapi/linux/caif/
4571 F:      net/caif/
4572
4573 CAKE QDISC
4574 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4575 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4576 S:      Maintained
4577 F:      net/sched/sch_cake.c
4578
4579 CAN NETWORK DRIVERS
4580 M:      Wolfgang Grandegger <wg@grandegger.com>
4581 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4582 L:      linux-can@vger.kernel.org
4583 S:      Maintained
4584 W:      https://github.com/linux-can
4585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4587 F:      Documentation/devicetree/bindings/net/can/
4588 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4589 F:      drivers/net/can/
4590 F:      drivers/phy/phy-can-transceiver.c
4591 F:      include/linux/can/bittiming.h
4592 F:      include/linux/can/dev.h
4593 F:      include/linux/can/length.h
4594 F:      include/linux/can/platform/
4595 F:      include/linux/can/rx-offload.h
4596 F:      include/uapi/linux/can/error.h
4597 F:      include/uapi/linux/can/netlink.h
4598 F:      include/uapi/linux/can/vxcan.h
4599
4600 CAN NETWORK LAYER
4601 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4602 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4603 L:      linux-can@vger.kernel.org
4604 S:      Maintained
4605 W:      https://github.com/linux-can
4606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4608 F:      Documentation/networking/can.rst
4609 F:      include/linux/can/can-ml.h
4610 F:      include/linux/can/core.h
4611 F:      include/linux/can/skb.h
4612 F:      include/net/netns/can.h
4613 F:      include/uapi/linux/can.h
4614 F:      include/uapi/linux/can/bcm.h
4615 F:      include/uapi/linux/can/gw.h
4616 F:      include/uapi/linux/can/isotp.h
4617 F:      include/uapi/linux/can/raw.h
4618 F:      net/can/
4619
4620 CAN-J1939 NETWORK LAYER
4621 M:      Robin van der Gracht <robin@protonic.nl>
4622 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4623 R:      kernel@pengutronix.de
4624 L:      linux-can@vger.kernel.org
4625 S:      Maintained
4626 F:      Documentation/networking/j1939.rst
4627 F:      include/uapi/linux/can/j1939.h
4628 F:      net/can/j1939/
4629
4630 CAPABILITIES
4631 M:      Serge Hallyn <serge@hallyn.com>
4632 L:      linux-security-module@vger.kernel.org
4633 S:      Supported
4634 F:      include/linux/capability.h
4635 F:      include/uapi/linux/capability.h
4636 F:      kernel/capability.c
4637 F:      security/commoncap.c
4638
4639 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4640 M:      Kevin Tsai <ktsai@capellamicro.com>
4641 S:      Maintained
4642 F:      drivers/iio/light/cm*
4643
4644 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4645 M:      Christian Lamparter <chunkeey@googlemail.com>
4646 L:      linux-wireless@vger.kernel.org
4647 S:      Maintained
4648 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4649 F:      drivers/net/wireless/ath/carl9170/
4650
4651 CAVIUM I2C DRIVER
4652 M:      Robert Richter <rric@kernel.org>
4653 S:      Odd Fixes
4654 W:      http://www.marvell.com
4655 F:      drivers/i2c/busses/i2c-octeon*
4656 F:      drivers/i2c/busses/i2c-thunderx*
4657
4658 CAVIUM LIQUIDIO NETWORK DRIVER
4659 M:      Derek Chickles <dchickles@marvell.com>
4660 M:      Satanand Burla <sburla@marvell.com>
4661 M:      Felix Manlunas <fmanlunas@marvell.com>
4662 L:      netdev@vger.kernel.org
4663 S:      Supported
4664 W:      http://www.marvell.com
4665 F:      drivers/net/ethernet/cavium/liquidio/
4666
4667 CAVIUM MMC DRIVER
4668 M:      Robert Richter <rric@kernel.org>
4669 S:      Odd Fixes
4670 W:      http://www.marvell.com
4671 F:      drivers/mmc/host/cavium*
4672
4673 CAVIUM OCTEON-TX CRYPTO DRIVER
4674 M:      George Cherian <gcherian@marvell.com>
4675 L:      linux-crypto@vger.kernel.org
4676 S:      Supported
4677 W:      http://www.marvell.com
4678 F:      drivers/crypto/cavium/cpt/
4679
4680 CAVIUM THUNDERX2 ARM64 SOC
4681 M:      Robert Richter <rric@kernel.org>
4682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4683 S:      Odd Fixes
4684 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4685 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4686
4687 CBS/ETF/TAPRIO QDISCS
4688 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4689 S:      Maintained
4690 L:      netdev@vger.kernel.org
4691 F:      net/sched/sch_cbs.c
4692 F:      net/sched/sch_etf.c
4693 F:      net/sched/sch_taprio.c
4694
4695 CC2520 IEEE-802.15.4 RADIO DRIVER
4696 M:      Varka Bhadram <varkabhadram@gmail.com>
4697 L:      linux-wpan@vger.kernel.org
4698 S:      Maintained
4699 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4700 F:      drivers/net/ieee802154/cc2520.c
4701 F:      include/linux/spi/cc2520.h
4702
4703 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4704 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4705 L:      linux-crypto@vger.kernel.org
4706 S:      Supported
4707 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4708 F:      drivers/crypto/ccree/
4709
4710 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4711 M:      Hadar Gat <hadar.gat@arm.com>
4712 L:      linux-crypto@vger.kernel.org
4713 S:      Supported
4714 F:      drivers/char/hw_random/cctrng.c
4715 F:      drivers/char/hw_random/cctrng.h
4716 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4717 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4718
4719 CEC FRAMEWORK
4720 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4721 L:      linux-media@vger.kernel.org
4722 S:      Supported
4723 W:      http://linuxtv.org
4724 T:      git git://linuxtv.org/media_tree.git
4725 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4726 F:      Documentation/devicetree/bindings/media/cec.txt
4727 F:      Documentation/driver-api/media/cec-core.rst
4728 F:      Documentation/userspace-api/media/cec
4729 F:      drivers/media/cec/
4730 F:      drivers/media/rc/keymaps/rc-cec.c
4731 F:      include/media/cec-notifier.h
4732 F:      include/media/cec.h
4733 F:      include/uapi/linux/cec-funcs.h
4734 F:      include/uapi/linux/cec.h
4735
4736 CEC GPIO DRIVER
4737 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4738 L:      linux-media@vger.kernel.org
4739 S:      Supported
4740 W:      http://linuxtv.org
4741 T:      git git://linuxtv.org/media_tree.git
4742 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4743 F:      drivers/media/cec/platform/cec-gpio/
4744
4745 CELL BROADBAND ENGINE ARCHITECTURE
4746 M:      Arnd Bergmann <arnd@arndb.de>
4747 L:      linuxppc-dev@lists.ozlabs.org
4748 S:      Supported
4749 W:      http://www.ibm.com/developerworks/power/cell/
4750 F:      arch/powerpc/include/asm/cell*.h
4751 F:      arch/powerpc/include/asm/spu*.h
4752 F:      arch/powerpc/include/uapi/asm/spu*.h
4753 F:      arch/powerpc/platforms/cell/
4754
4755 CELLWISE CW2015 BATTERY DRIVER
4756 M:      Tobias Schrammm <t.schramm@manjaro.org>
4757 S:      Maintained
4758 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4759 F:      drivers/power/supply/cw2015_battery.c
4760
4761 CEPH COMMON CODE (LIBCEPH)
4762 M:      Ilya Dryomov <idryomov@gmail.com>
4763 M:      Xiubo Li <xiubli@redhat.com>
4764 R:      Jeff Layton <jlayton@kernel.org>
4765 L:      ceph-devel@vger.kernel.org
4766 S:      Supported
4767 W:      http://ceph.com/
4768 T:      git git://github.com/ceph/ceph-client.git
4769 F:      include/linux/ceph/
4770 F:      include/linux/crush/
4771 F:      net/ceph/
4772
4773 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4774 M:      Xiubo Li <xiubli@redhat.com>
4775 M:      Ilya Dryomov <idryomov@gmail.com>
4776 R:      Jeff Layton <jlayton@kernel.org>
4777 L:      ceph-devel@vger.kernel.org
4778 S:      Supported
4779 W:      http://ceph.com/
4780 T:      git git://github.com/ceph/ceph-client.git
4781 F:      Documentation/filesystems/ceph.rst
4782 F:      fs/ceph/
4783
4784 CERTIFICATE HANDLING
4785 M:      David Howells <dhowells@redhat.com>
4786 M:      David Woodhouse <dwmw2@infradead.org>
4787 L:      keyrings@vger.kernel.org
4788 S:      Maintained
4789 F:      Documentation/admin-guide/module-signing.rst
4790 F:      certs/
4791 F:      scripts/sign-file.c
4792 F:      tools/certs/
4793
4794 CFAG12864B LCD DRIVER
4795 M:      Miguel Ojeda <ojeda@kernel.org>
4796 S:      Maintained
4797 F:      drivers/auxdisplay/cfag12864b.c
4798 F:      include/linux/cfag12864b.h
4799
4800 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4801 M:      Miguel Ojeda <ojeda@kernel.org>
4802 S:      Maintained
4803 F:      drivers/auxdisplay/cfag12864bfb.c
4804 F:      include/linux/cfag12864b.h
4805
4806 CHAR and MISC DRIVERS
4807 M:      Arnd Bergmann <arnd@arndb.de>
4808 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4809 S:      Supported
4810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4811 F:      drivers/char/
4812 F:      drivers/misc/
4813 F:      include/linux/miscdevice.h
4814 X:      drivers/char/agp/
4815 X:      drivers/char/hw_random/
4816 X:      drivers/char/ipmi/
4817 X:      drivers/char/random.c
4818 X:      drivers/char/tpm/
4819
4820 CHECKPATCH
4821 M:      Andy Whitcroft <apw@canonical.com>
4822 M:      Joe Perches <joe@perches.com>
4823 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4824 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4825 S:      Maintained
4826 F:      scripts/checkpatch.pl
4827
4828 CHECKPATCH DOCUMENTATION
4829 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4830 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4831 R:      Joe Perches <joe@perches.com>
4832 S:      Maintained
4833 F:      Documentation/dev-tools/checkpatch.rst
4834
4835 CHINESE DOCUMENTATION
4836 M:      Alex Shi <alexs@kernel.org>
4837 M:      Yanteng Si <siyanteng@loongson.cn>
4838 S:      Maintained
4839 F:      Documentation/translations/zh_CN/
4840
4841 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4842 M:      Peter Chen <peter.chen@kernel.org>
4843 L:      linux-usb@vger.kernel.org
4844 S:      Maintained
4845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4846 F:      drivers/usb/chipidea/
4847
4848 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4849 M:      Hans de Goede <hdegoede@redhat.com>
4850 L:      linux-input@vger.kernel.org
4851 S:      Maintained
4852 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4853 F:      drivers/input/touchscreen/chipone_icn8318.c
4854
4855 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4856 M:      Hans de Goede <hdegoede@redhat.com>
4857 L:      linux-input@vger.kernel.org
4858 S:      Maintained
4859 F:      drivers/input/touchscreen/chipone_icn8505.c
4860
4861 CHROME HARDWARE PLATFORM SUPPORT
4862 M:      Benson Leung <bleung@chromium.org>
4863 L:      chrome-platform@lists.linux.dev
4864 S:      Maintained
4865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4866 F:      drivers/platform/chrome/
4867
4868 CHROMEOS EC CODEC DRIVER
4869 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4870 M:      Tzung-Bi Shih <tzungbi@google.com>
4871 R:      Guenter Roeck <groeck@chromium.org>
4872 L:      chrome-platform@lists.linux.dev
4873 S:      Maintained
4874 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4875 F:      sound/soc/codecs/cros_ec_codec.*
4876
4877 CHROMEOS EC SUBDRIVERS
4878 M:      Benson Leung <bleung@chromium.org>
4879 R:      Guenter Roeck <groeck@chromium.org>
4880 L:      chrome-platform@lists.linux.dev
4881 S:      Maintained
4882 F:      drivers/power/supply/cros_usbpd-charger.c
4883 N:      cros_ec
4884 N:      cros-ec
4885
4886 CHROMEOS EC USB TYPE-C DRIVER
4887 M:      Prashant Malani <pmalani@chromium.org>
4888 L:      chrome-platform@lists.linux.dev
4889 S:      Maintained
4890 F:      drivers/platform/chrome/cros_ec_typec.c
4891
4892 CHROMEOS EC USB PD NOTIFY DRIVER
4893 M:      Prashant Malani <pmalani@chromium.org>
4894 L:      chrome-platform@lists.linux.dev
4895 S:      Maintained
4896 F:      drivers/platform/chrome/cros_usbpd_notify.c
4897 F:      include/linux/platform_data/cros_usbpd_notify.h
4898
4899 CHRONTEL CH7322 CEC DRIVER
4900 M:      Joe Tessler <jrt@google.com>
4901 L:      linux-media@vger.kernel.org
4902 S:      Maintained
4903 T:      git git://linuxtv.org/media_tree.git
4904 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4905 F:      drivers/media/cec/i2c/ch7322.c
4906
4907 CIRRUS LOGIC AUDIO CODEC DRIVERS
4908 M:      James Schulman <james.schulman@cirrus.com>
4909 M:      David Rhodes <david.rhodes@cirrus.com>
4910 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4911 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4912 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4913 L:      patches@opensource.cirrus.com
4914 S:      Maintained
4915 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4916 F:      include/dt-bindings/sound/cs*
4917 F:      sound/pci/hda/cs*
4918 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4919 F:      sound/soc/codecs/cs*
4920
4921 CIRRUS LOGIC DSP FIRMWARE DRIVER
4922 M:      Simon Trimmer <simont@opensource.cirrus.com>
4923 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4924 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4925 L:      patches@opensource.cirrus.com
4926 S:      Supported
4927 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4928 T:      git https://github.com/CirrusLogic/linux-drivers.git
4929 F:      drivers/firmware/cirrus/*
4930 F:      include/linux/firmware/cirrus/*
4931
4932 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4933 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4934 L:      netdev@vger.kernel.org
4935 S:      Maintained
4936 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4937
4938 CIRRUS LOGIC LOCHNAGAR DRIVER
4939 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4940 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4941 L:      patches@opensource.cirrus.com
4942 S:      Supported
4943 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4944 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4945 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4946 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4947 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4948 F:      Documentation/hwmon/lochnagar.rst
4949 F:      drivers/clk/clk-lochnagar.c
4950 F:      drivers/hwmon/lochnagar-hwmon.c
4951 F:      drivers/mfd/lochnagar-i2c.c
4952 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4953 F:      drivers/regulator/lochnagar-regulator.c
4954 F:      include/dt-bindings/clk/lochnagar.h
4955 F:      include/dt-bindings/pinctrl/lochnagar.h
4956 F:      include/linux/mfd/lochnagar*
4957 F:      sound/soc/codecs/lochnagar-sc.c
4958
4959 CIRRUS LOGIC MADERA CODEC DRIVERS
4960 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4961 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4962 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4963 L:      patches@opensource.cirrus.com
4964 S:      Supported
4965 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4966 T:      git https://github.com/CirrusLogic/linux-drivers.git
4967 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4968 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4969 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4970 F:      drivers/gpio/gpio-madera*
4971 F:      drivers/irqchip/irq-madera*
4972 F:      drivers/mfd/cs47l*
4973 F:      drivers/mfd/madera*
4974 F:      drivers/pinctrl/cirrus/*
4975 F:      include/dt-bindings/sound/madera*
4976 F:      include/linux/irqchip/irq-madera*
4977 F:      include/linux/mfd/madera/*
4978 F:      include/sound/madera*
4979 F:      sound/soc/codecs/cs47l*
4980 F:      sound/soc/codecs/madera*
4981
4982 CISCO FCOE HBA DRIVER
4983 M:      Satish Kharat <satishkh@cisco.com>
4984 M:      Sesidhar Baddela <sebaddel@cisco.com>
4985 M:      Karan Tilak Kumar <kartilak@cisco.com>
4986 L:      linux-scsi@vger.kernel.org
4987 S:      Supported
4988 F:      drivers/scsi/fnic/
4989
4990 CISCO SCSI HBA DRIVER
4991 M:      Karan Tilak Kumar <kartilak@cisco.com>
4992 M:      Sesidhar Baddela <sebaddel@cisco.com>
4993 L:      linux-scsi@vger.kernel.org
4994 S:      Supported
4995 F:      drivers/scsi/snic/
4996
4997 CISCO VIC ETHERNET NIC DRIVER
4998 M:      Christian Benvenuti <benve@cisco.com>
4999 M:      Govindarajulu Varadarajan <_govind@gmx.com>
5000 S:      Supported
5001 F:      drivers/net/ethernet/cisco/enic/
5002
5003 CISCO VIC LOW LATENCY NIC DRIVER
5004 M:      Christian Benvenuti <benve@cisco.com>
5005 M:      Nelson Escobar <neescoba@cisco.com>
5006 S:      Supported
5007 F:      drivers/infiniband/hw/usnic/
5008
5009 CLANG-FORMAT FILE
5010 M:      Miguel Ojeda <ojeda@kernel.org>
5011 S:      Maintained
5012 F:      .clang-format
5013
5014 CLANG/LLVM BUILD SUPPORT
5015 M:      Nathan Chancellor <nathan@kernel.org>
5016 M:      Nick Desaulniers <ndesaulniers@google.com>
5017 R:      Tom Rix <trix@redhat.com>
5018 L:      llvm@lists.linux.dev
5019 S:      Supported
5020 W:      https://clangbuiltlinux.github.io/
5021 B:      https://github.com/ClangBuiltLinux/linux/issues
5022 C:      irc://irc.libera.chat/clangbuiltlinux
5023 F:      Documentation/kbuild/llvm.rst
5024 F:      include/linux/compiler-clang.h
5025 F:      scripts/Makefile.clang
5026 F:      scripts/clang-tools/
5027 K:      \b(?i:clang|llvm)\b
5028
5029 CLANG CONTROL FLOW INTEGRITY SUPPORT
5030 M:      Sami Tolvanen <samitolvanen@google.com>
5031 M:      Kees Cook <keescook@chromium.org>
5032 R:      Nathan Chancellor <nathan@kernel.org>
5033 R:      Nick Desaulniers <ndesaulniers@google.com>
5034 L:      llvm@lists.linux.dev
5035 S:      Supported
5036 B:      https://github.com/ClangBuiltLinux/linux/issues
5037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5038 F:      include/linux/cfi.h
5039 F:      kernel/cfi.c
5040
5041 CLK API
5042 M:      Russell King <linux@armlinux.org.uk>
5043 L:      linux-clk@vger.kernel.org
5044 S:      Maintained
5045 F:      include/linux/clk.h
5046
5047 CLOCKSOURCE, CLOCKEVENT DRIVERS
5048 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5049 M:      Thomas Gleixner <tglx@linutronix.de>
5050 L:      linux-kernel@vger.kernel.org
5051 S:      Supported
5052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5053 F:      Documentation/devicetree/bindings/timer/
5054 F:      drivers/clocksource/
5055
5056 CMPC ACPI DRIVER
5057 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5058 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5059 L:      platform-driver-x86@vger.kernel.org
5060 S:      Supported
5061 F:      drivers/platform/x86/classmate-laptop.c
5062
5063 COBALT MEDIA DRIVER
5064 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5065 L:      linux-media@vger.kernel.org
5066 S:      Supported
5067 W:      https://linuxtv.org
5068 T:      git git://linuxtv.org/media_tree.git
5069 F:      drivers/media/pci/cobalt/
5070
5071 COCCINELLE/Semantic Patches (SmPL)
5072 M:      Julia Lawall <Julia.Lawall@inria.fr>
5073 M:      Nicolas Palix <nicolas.palix@imag.fr>
5074 L:      cocci@inria.fr (moderated for non-subscribers)
5075 S:      Supported
5076 W:      https://coccinelle.gitlabpages.inria.fr/website/
5077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5078 F:      Documentation/dev-tools/coccinelle.rst
5079 F:      scripts/coccicheck
5080 F:      scripts/coccinelle/
5081
5082 CODA FILE SYSTEM
5083 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5084 M:      coda@cs.cmu.edu
5085 L:      codalist@coda.cs.cmu.edu
5086 S:      Maintained
5087 W:      http://www.coda.cs.cmu.edu/
5088 F:      Documentation/filesystems/coda.rst
5089 F:      fs/coda/
5090 F:      include/linux/coda*.h
5091 F:      include/uapi/linux/coda*.h
5092
5093 CODA V4L2 MEM2MEM DRIVER
5094 M:      Philipp Zabel <p.zabel@pengutronix.de>
5095 L:      linux-media@vger.kernel.org
5096 S:      Maintained
5097 F:      Documentation/devicetree/bindings/media/coda.yaml
5098 F:      drivers/media/platform/chips-media/
5099
5100 CODE OF CONDUCT
5101 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5102 S:      Supported
5103 F:      Documentation/process/code-of-conduct-interpretation.rst
5104 F:      Documentation/process/code-of-conduct.rst
5105
5106 COMEDI DRIVERS
5107 M:      Ian Abbott <abbotti@mev.co.uk>
5108 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5109 S:      Odd Fixes
5110 F:      drivers/comedi/
5111 F:      include/linux/comedi/
5112 F:      include/uapi/linux/comedi.h
5113
5114 COMMON CLK FRAMEWORK
5115 M:      Michael Turquette <mturquette@baylibre.com>
5116 M:      Stephen Boyd <sboyd@kernel.org>
5117 L:      linux-clk@vger.kernel.org
5118 S:      Maintained
5119 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5121 F:      Documentation/devicetree/bindings/clock/
5122 F:      drivers/clk/
5123 F:      include/dt-bindings/clock/
5124 F:      include/linux/clk-pr*
5125 F:      include/linux/clk/
5126 F:      include/linux/of_clk.h
5127 X:      drivers/clk/clkdev.c
5128
5129 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5130 M:      Steve French <sfrench@samba.org>
5131 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5132 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5133 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5134 L:      linux-cifs@vger.kernel.org
5135 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5136 S:      Supported
5137 W:      https://wiki.samba.org/index.php/LinuxCIFS
5138 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5139 F:      Documentation/admin-guide/cifs/
5140 F:      fs/cifs/
5141 F:      fs/smbfs_common/
5142 F:      include/uapi/linux/cifs
5143
5144 COMPACTPCI HOTPLUG CORE
5145 M:      Scott Murray <scott@spiteful.org>
5146 L:      linux-pci@vger.kernel.org
5147 S:      Maintained
5148 F:      drivers/pci/hotplug/cpci_hotplug*
5149
5150 COMPACTPCI HOTPLUG GENERIC DRIVER
5151 M:      Scott Murray <scott@spiteful.org>
5152 L:      linux-pci@vger.kernel.org
5153 S:      Maintained
5154 F:      drivers/pci/hotplug/cpcihp_generic.c
5155
5156 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5157 M:      Scott Murray <scott@spiteful.org>
5158 L:      linux-pci@vger.kernel.org
5159 S:      Maintained
5160 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5161
5162 COMPAL LAPTOP SUPPORT
5163 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5164 L:      platform-driver-x86@vger.kernel.org
5165 S:      Maintained
5166 F:      drivers/platform/x86/compal-laptop.c
5167
5168 COMPILER ATTRIBUTES
5169 M:      Miguel Ojeda <ojeda@kernel.org>
5170 R:      Nick Desaulniers <ndesaulniers@google.com>
5171 S:      Maintained
5172 F:      include/linux/compiler_attributes.h
5173
5174 COMPUTE EXPRESS LINK (CXL)
5175 M:      Alison Schofield <alison.schofield@intel.com>
5176 M:      Vishal Verma <vishal.l.verma@intel.com>
5177 M:      Ira Weiny <ira.weiny@intel.com>
5178 M:      Ben Widawsky <bwidawsk@kernel.org>
5179 M:      Dan Williams <dan.j.williams@intel.com>
5180 L:      linux-cxl@vger.kernel.org
5181 S:      Maintained
5182 F:      drivers/cxl/
5183 F:      include/uapi/linux/cxl_mem.h
5184
5185 CONEXANT ACCESSRUNNER USB DRIVER
5186 L:      accessrunner-general@lists.sourceforge.net
5187 S:      Orphan
5188 W:      http://accessrunner.sourceforge.net/
5189 F:      drivers/usb/atm/cxacru.c
5190
5191 CONFIGFS
5192 M:      Joel Becker <jlbec@evilplan.org>
5193 M:      Christoph Hellwig <hch@lst.de>
5194 S:      Supported
5195 T:      git git://git.infradead.org/users/hch/configfs.git
5196 F:      fs/configfs/
5197 F:      include/linux/configfs.h
5198 F:      samples/configfs/
5199
5200 CONSOLE SUBSYSTEM
5201 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5202 S:      Supported
5203 F:      drivers/video/console/
5204 F:      include/linux/console*
5205
5206 CONTEXT TRACKING
5207 M:      Frederic Weisbecker <frederic@kernel.org>
5208 M:      "Paul E. McKenney" <paulmck@kernel.org>
5209 S:      Maintained
5210 F:      kernel/context_tracking.c
5211 F:      include/linux/context_tracking*
5212
5213 CONTROL GROUP (CGROUP)
5214 M:      Tejun Heo <tj@kernel.org>
5215 M:      Zefan Li <lizefan.x@bytedance.com>
5216 M:      Johannes Weiner <hannes@cmpxchg.org>
5217 L:      cgroups@vger.kernel.org
5218 S:      Maintained
5219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5220 F:      Documentation/admin-guide/cgroup-v1/
5221 F:      Documentation/admin-guide/cgroup-v2.rst
5222 F:      include/linux/cgroup*
5223 F:      kernel/cgroup/
5224 F:      tools/testing/selftests/cgroup/
5225
5226 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5227 M:      Tejun Heo <tj@kernel.org>
5228 M:      Jens Axboe <axboe@kernel.dk>
5229 L:      cgroups@vger.kernel.org
5230 L:      linux-block@vger.kernel.org
5231 T:      git git://git.kernel.dk/linux-block
5232 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5233 F:      block/bfq-cgroup.c
5234 F:      block/blk-cgroup.c
5235 F:      block/blk-iolatency.c
5236 F:      block/blk-throttle.c
5237 F:      include/linux/blk-cgroup.h
5238
5239 CONTROL GROUP - CPUSET
5240 M:      Zefan Li <lizefan.x@bytedance.com>
5241 L:      cgroups@vger.kernel.org
5242 S:      Maintained
5243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5244 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5245 F:      include/linux/cpuset.h
5246 F:      kernel/cgroup/cpuset.c
5247
5248 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5249 M:      Johannes Weiner <hannes@cmpxchg.org>
5250 M:      Michal Hocko <mhocko@kernel.org>
5251 M:      Roman Gushchin <roman.gushchin@linux.dev>
5252 M:      Shakeel Butt <shakeelb@google.com>
5253 R:      Muchun Song <songmuchun@bytedance.com>
5254 L:      cgroups@vger.kernel.org
5255 L:      linux-mm@kvack.org
5256 S:      Maintained
5257 F:      mm/memcontrol.c
5258 F:      mm/swap_cgroup.c
5259 F:      tools/testing/selftests/cgroup/memcg_protection.m
5260 F:      tools/testing/selftests/cgroup/test_kmem.c
5261 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5262
5263 CORETEMP HARDWARE MONITORING DRIVER
5264 M:      Fenghua Yu <fenghua.yu@intel.com>
5265 L:      linux-hwmon@vger.kernel.org
5266 S:      Maintained
5267 F:      Documentation/hwmon/coretemp.rst
5268 F:      drivers/hwmon/coretemp.c
5269
5270 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5271 M:      Marius Zachmann <mail@mariuszachmann.de>
5272 L:      linux-hwmon@vger.kernel.org
5273 S:      Maintained
5274 F:      drivers/hwmon/corsair-cpro.c
5275
5276 CORSAIR-PSU HARDWARE MONITOR DRIVER
5277 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5278 L:      linux-hwmon@vger.kernel.org
5279 S:      Maintained
5280 F:      Documentation/hwmon/corsair-psu.rst
5281 F:      drivers/hwmon/corsair-psu.c
5282
5283 COUNTER SUBSYSTEM
5284 M:      William Breathitt Gray <william.gray@linaro.org>
5285 L:      linux-iio@vger.kernel.org
5286 S:      Maintained
5287 T:      git https://git.linaro.org/people/william.gray/counter.git
5288 F:      Documentation/ABI/testing/sysfs-bus-counter
5289 F:      Documentation/driver-api/generic-counter.rst
5290 F:      drivers/counter/
5291 F:      include/linux/counter.h
5292 F:      include/uapi/linux/counter.h
5293 F:      tools/counter/
5294
5295 CP2615 I2C DRIVER
5296 M:      Bence Csókás <bence98@sch.bme.hu>
5297 S:      Maintained
5298 F:      drivers/i2c/busses/i2c-cp2615.c
5299
5300 CPMAC ETHERNET DRIVER
5301 M:      Florian Fainelli <f.fainelli@gmail.com>
5302 L:      netdev@vger.kernel.org
5303 S:      Maintained
5304 F:      drivers/net/ethernet/ti/cpmac.c
5305
5306 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5307 M:      Viresh Kumar <viresh.kumar@linaro.org>
5308 M:      Sudeep Holla <sudeep.holla@arm.com>
5309 L:      linux-pm@vger.kernel.org
5310 S:      Maintained
5311 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5312 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5313
5314 CPU FREQUENCY SCALING FRAMEWORK
5315 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5316 M:      Viresh Kumar <viresh.kumar@linaro.org>
5317 L:      linux-pm@vger.kernel.org
5318 S:      Maintained
5319 B:      https://bugzilla.kernel.org
5320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5322 F:      Documentation/admin-guide/pm/cpufreq.rst
5323 F:      Documentation/admin-guide/pm/intel_pstate.rst
5324 F:      Documentation/cpu-freq/
5325 F:      Documentation/devicetree/bindings/cpufreq/
5326 F:      drivers/cpufreq/
5327 F:      include/linux/cpufreq.h
5328 F:      include/linux/sched/cpufreq.h
5329 F:      kernel/sched/cpufreq*.c
5330 F:      tools/testing/selftests/cpufreq/
5331
5332 CPU IDLE TIME MANAGEMENT FRAMEWORK
5333 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5334 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5335 L:      linux-pm@vger.kernel.org
5336 S:      Maintained
5337 B:      https://bugzilla.kernel.org
5338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5339 F:      Documentation/admin-guide/pm/cpuidle.rst
5340 F:      Documentation/driver-api/pm/cpuidle.rst
5341 F:      drivers/cpuidle/
5342 F:      include/linux/cpuidle.h
5343
5344 CPU POWER MONITORING SUBSYSTEM
5345 M:      Thomas Renninger <trenn@suse.com>
5346 M:      Shuah Khan <shuah@kernel.org>
5347 M:      Shuah Khan <skhan@linuxfoundation.org>
5348 L:      linux-pm@vger.kernel.org
5349 S:      Maintained
5350 F:      tools/power/cpupower/
5351
5352 CPUID/MSR DRIVER
5353 M:      "H. Peter Anvin" <hpa@zytor.com>
5354 S:      Maintained
5355 F:      arch/x86/kernel/cpuid.c
5356 F:      arch/x86/kernel/msr.c
5357
5358 CPUIDLE DRIVER - ARM BIG LITTLE
5359 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5360 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5361 L:      linux-pm@vger.kernel.org
5362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5363 S:      Maintained
5364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5365 F:      drivers/cpuidle/cpuidle-big_little.c
5366
5367 CPUIDLE DRIVER - ARM EXYNOS
5368 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5369 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5370 M:      Kukjin Kim <kgene@kernel.org>
5371 L:      linux-pm@vger.kernel.org
5372 L:      linux-samsung-soc@vger.kernel.org
5373 S:      Supported
5374 F:      arch/arm/mach-exynos/pm.c
5375 F:      drivers/cpuidle/cpuidle-exynos.c
5376 F:      include/linux/platform_data/cpuidle-exynos.h
5377
5378 CPUIDLE DRIVER - ARM PSCI
5379 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5380 M:      Sudeep Holla <sudeep.holla@arm.com>
5381 L:      linux-pm@vger.kernel.org
5382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5383 S:      Supported
5384 F:      drivers/cpuidle/cpuidle-psci.c
5385
5386 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5387 M:      Ulf Hansson <ulf.hansson@linaro.org>
5388 L:      linux-pm@vger.kernel.org
5389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5390 S:      Supported
5391 F:      drivers/cpuidle/cpuidle-psci.h
5392 F:      drivers/cpuidle/cpuidle-psci-domain.c
5393
5394 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5395 M:      Ulf Hansson <ulf.hansson@linaro.org>
5396 L:      linux-pm@vger.kernel.org
5397 S:      Supported
5398 F:      drivers/cpuidle/dt_idle_genpd.c
5399 F:      drivers/cpuidle/dt_idle_genpd.h
5400
5401 CPUIDLE DRIVER - RISC-V SBI
5402 M:      Anup Patel <anup@brainfault.org>
5403 L:      linux-pm@vger.kernel.org
5404 L:      linux-riscv@lists.infradead.org
5405 S:      Maintained
5406 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5407
5408 CRAMFS FILESYSTEM
5409 M:      Nicolas Pitre <nico@fluxnic.net>
5410 S:      Maintained
5411 F:      Documentation/filesystems/cramfs.rst
5412 F:      fs/cramfs/
5413
5414 CREATIVE SB0540
5415 M:      Bastien Nocera <hadess@hadess.net>
5416 L:      linux-input@vger.kernel.org
5417 S:      Maintained
5418 F:      drivers/hid/hid-creative-sb0540.c
5419
5420 CRYPTO API
5421 M:      Herbert Xu <herbert@gondor.apana.org.au>
5422 M:      "David S. Miller" <davem@davemloft.net>
5423 L:      linux-crypto@vger.kernel.org
5424 S:      Maintained
5425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5427 F:      Documentation/crypto/
5428 F:      Documentation/devicetree/bindings/crypto/
5429 F:      arch/*/crypto/
5430 F:      crypto/
5431 F:      drivers/crypto/
5432 F:      include/crypto/
5433 F:      include/linux/crypto*
5434 F:      lib/crypto/
5435
5436 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5437 M:      Neil Horman <nhorman@tuxdriver.com>
5438 L:      linux-crypto@vger.kernel.org
5439 S:      Maintained
5440 F:      crypto/ansi_cprng.c
5441 F:      crypto/rng.c
5442
5443 CS3308 MEDIA DRIVER
5444 M:      Hans Verkuil <hverkuil@xs4all.nl>
5445 L:      linux-media@vger.kernel.org
5446 S:      Odd Fixes
5447 W:      http://linuxtv.org
5448 T:      git git://linuxtv.org/media_tree.git
5449 F:      drivers/media/i2c/cs3308.c
5450
5451 CS5535 Audio ALSA driver
5452 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5453 S:      Maintained
5454 F:      sound/pci/cs5535audio/
5455
5456 CSI DRIVERS FOR ALLWINNER V3s
5457 M:      Yong Deng <yong.deng@magewell.com>
5458 L:      linux-media@vger.kernel.org
5459 S:      Maintained
5460 T:      git git://linuxtv.org/media_tree.git
5461 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5462 F:      drivers/media/platform/sunxi/sun6i-csi/
5463
5464 CTU CAN FD DRIVER
5465 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5466 M:      Ondrej Ille <ondrej.ille@gmail.com>
5467 L:      linux-can@vger.kernel.org
5468 S:      Maintained
5469 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5470 F:      drivers/net/can/ctucanfd/
5471
5472 CW1200 WLAN driver
5473 M:      Solomon Peachy <pizza@shaftnet.org>
5474 S:      Maintained
5475 F:      drivers/net/wireless/st/cw1200/
5476
5477 CX18 VIDEO4LINUX DRIVER
5478 M:      Andy Walls <awalls@md.metrocast.net>
5479 L:      linux-media@vger.kernel.org
5480 S:      Maintained
5481 W:      https://linuxtv.org
5482 T:      git git://linuxtv.org/media_tree.git
5483 F:      drivers/media/pci/cx18/
5484 F:      include/uapi/linux/ivtv*
5485
5486 CX2341X MPEG ENCODER HELPER MODULE
5487 M:      Hans Verkuil <hverkuil@xs4all.nl>
5488 L:      linux-media@vger.kernel.org
5489 S:      Maintained
5490 W:      https://linuxtv.org
5491 T:      git git://linuxtv.org/media_tree.git
5492 F:      drivers/media/common/cx2341x*
5493 F:      include/media/drv-intf/cx2341x.h
5494
5495 CX24120 MEDIA DRIVER
5496 M:      Jemma Denson <jdenson@gmail.com>
5497 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5498 L:      linux-media@vger.kernel.org
5499 S:      Maintained
5500 W:      https://linuxtv.org
5501 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5502 F:      drivers/media/dvb-frontends/cx24120*
5503
5504 CX88 VIDEO4LINUX DRIVER
5505 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5506 L:      linux-media@vger.kernel.org
5507 S:      Odd fixes
5508 W:      https://linuxtv.org
5509 T:      git git://linuxtv.org/media_tree.git
5510 F:      Documentation/driver-api/media/drivers/cx88*
5511 F:      drivers/media/pci/cx88/
5512
5513 CXD2820R MEDIA DRIVER
5514 M:      Antti Palosaari <crope@iki.fi>
5515 L:      linux-media@vger.kernel.org
5516 S:      Maintained
5517 W:      https://linuxtv.org
5518 W:      http://palosaari.fi/linux/
5519 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5520 T:      git git://linuxtv.org/anttip/media_tree.git
5521 F:      drivers/media/dvb-frontends/cxd2820r*
5522
5523 CXGB3 ETHERNET DRIVER (CXGB3)
5524 M:      Raju Rangoju <rajur@chelsio.com>
5525 L:      netdev@vger.kernel.org
5526 S:      Supported
5527 W:      http://www.chelsio.com
5528 F:      drivers/net/ethernet/chelsio/cxgb3/
5529
5530 CXGB3 ISCSI DRIVER (CXGB3I)
5531 M:      Varun Prakash <varun@chelsio.com>
5532 L:      linux-scsi@vger.kernel.org
5533 S:      Supported
5534 W:      http://www.chelsio.com
5535 F:      drivers/scsi/cxgbi/cxgb3i
5536
5537 CXGB4 CRYPTO DRIVER (chcr)
5538 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5539 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5540 M:      Rohit Maheshwari <rohitm@chelsio.com>
5541 L:      linux-crypto@vger.kernel.org
5542 S:      Supported
5543 W:      http://www.chelsio.com
5544 F:      drivers/crypto/chelsio
5545
5546 CXGB4 INLINE CRYPTO DRIVER
5547 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5548 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5549 M:      Rohit Maheshwari <rohitm@chelsio.com>
5550 L:      netdev@vger.kernel.org
5551 S:      Supported
5552 W:      http://www.chelsio.com
5553 F:      drivers/net/ethernet/chelsio/inline_crypto/
5554
5555 CXGB4 ETHERNET DRIVER (CXGB4)
5556 M:      Raju Rangoju <rajur@chelsio.com>
5557 L:      netdev@vger.kernel.org
5558 S:      Supported
5559 W:      http://www.chelsio.com
5560 F:      drivers/net/ethernet/chelsio/cxgb4/
5561
5562 CXGB4 ISCSI DRIVER (CXGB4I)
5563 M:      Varun Prakash <varun@chelsio.com>
5564 L:      linux-scsi@vger.kernel.org
5565 S:      Supported
5566 W:      http://www.chelsio.com
5567 F:      drivers/scsi/cxgbi/cxgb4i
5568
5569 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5570 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5571 L:      linux-rdma@vger.kernel.org
5572 S:      Supported
5573 W:      http://www.openfabrics.org
5574 F:      drivers/infiniband/hw/cxgb4/
5575 F:      include/uapi/rdma/cxgb4-abi.h
5576
5577 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5578 M:      Raju Rangoju <rajur@chelsio.com>
5579 L:      netdev@vger.kernel.org
5580 S:      Supported
5581 W:      http://www.chelsio.com
5582 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5583
5584 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5585 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5586 M:      Andrew Donnellan <ajd@linux.ibm.com>
5587 L:      linuxppc-dev@lists.ozlabs.org
5588 S:      Supported
5589 F:      Documentation/ABI/testing/sysfs-class-cxl
5590 F:      Documentation/powerpc/cxl.rst
5591 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5592 F:      drivers/misc/cxl/
5593 F:      include/misc/cxl*
5594 F:      include/uapi/misc/cxl.h
5595
5596 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5597 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5598 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5599 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5600 L:      linux-scsi@vger.kernel.org
5601 S:      Supported
5602 F:      Documentation/powerpc/cxlflash.rst
5603 F:      drivers/scsi/cxlflash/
5604 F:      include/uapi/scsi/cxlflash_ioctl.h
5605
5606 CYBERPRO FB DRIVER
5607 M:      Russell King <linux@armlinux.org.uk>
5608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5609 S:      Maintained
5610 W:      http://www.armlinux.org.uk/
5611 F:      drivers/video/fbdev/cyber2000fb.*
5612
5613 CYCLADES PC300 DRIVER
5614 S:      Orphan
5615 F:      drivers/net/wan/pc300*
5616
5617 CYPRESS_FIRMWARE MEDIA DRIVER
5618 M:      Antti Palosaari <crope@iki.fi>
5619 L:      linux-media@vger.kernel.org
5620 S:      Maintained
5621 W:      https://linuxtv.org
5622 W:      http://palosaari.fi/linux/
5623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5624 T:      git git://linuxtv.org/anttip/media_tree.git
5625 F:      drivers/media/common/cypress_firmware*
5626
5627 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5628 M:      Linus Walleij <linus.walleij@linaro.org>
5629 L:      linux-input@vger.kernel.org
5630 S:      Maintained
5631 F:      drivers/input/touchscreen/cy8ctma140.c
5632
5633 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5634 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5635 L:      linux-input@vger.kernel.org
5636 S:      Maintained
5637 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5638 F:      drivers/input/keyboard/cypress-sf.c
5639
5640 CYTTSP TOUCHSCREEN DRIVER
5641 M:      Linus Walleij <linus.walleij@linaro.org>
5642 L:      linux-input@vger.kernel.org
5643 S:      Maintained
5644 F:      drivers/input/touchscreen/cyttsp*
5645
5646 D-LINK DIR-685 TOUCHKEYS DRIVER
5647 M:      Linus Walleij <linus.walleij@linaro.org>
5648 L:      linux-input@vger.kernel.org
5649 S:      Supported
5650 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5651
5652 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5653 M:      Joshua Kinard <kumba@gentoo.org>
5654 S:      Maintained
5655 F:      drivers/rtc/rtc-ds1685.c
5656 F:      include/linux/rtc/ds1685.h
5657
5658 DAMA SLAVE for AX.25
5659 M:      Joerg Reuter <jreuter@yaina.de>
5660 L:      linux-hams@vger.kernel.org
5661 S:      Maintained
5662 W:      http://yaina.de/jreuter/
5663 W:      http://www.qsl.net/dl1bke/
5664 F:      net/ax25/af_ax25.c
5665 F:      net/ax25/ax25_dev.c
5666 F:      net/ax25/ax25_ds_*
5667 F:      net/ax25/ax25_in.c
5668 F:      net/ax25/ax25_out.c
5669 F:      net/ax25/ax25_timer.c
5670 F:      net/ax25/sysctl_net_ax25.c
5671
5672 DATA ACCESS MONITOR
5673 M:      SeongJae Park <sj@kernel.org>
5674 L:      damon@lists.linux.dev
5675 L:      linux-mm@kvack.org
5676 S:      Maintained
5677 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5678 F:      Documentation/admin-guide/mm/damon/
5679 F:      Documentation/mm/damon/
5680 F:      include/linux/damon.h
5681 F:      include/trace/events/damon.h
5682 F:      mm/damon/
5683 F:      tools/testing/selftests/damon/
5684
5685 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5686 L:      netdev@vger.kernel.org
5687 S:      Orphan
5688 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5689 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5690
5691 DC390/AM53C974 SCSI driver
5692 M:      Hannes Reinecke <hare@suse.com>
5693 L:      linux-scsi@vger.kernel.org
5694 S:      Maintained
5695 F:      drivers/scsi/am53c974.c
5696
5697 DC395x SCSI driver
5698 M:      Oliver Neukum <oliver@neukum.org>
5699 M:      Ali Akcaagac <aliakc@web.de>
5700 M:      Jamie Lenehan <lenehan@twibble.org>
5701 L:      dc395x@twibble.org
5702 S:      Maintained
5703 W:      http://twibble.org/dist/dc395x/
5704 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5705 F:      Documentation/scsi/dc395x.rst
5706 F:      drivers/scsi/dc395x.*
5707
5708 DCCP PROTOCOL
5709 L:      dccp@vger.kernel.org
5710 S:      Orphan
5711 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5712 F:      include/linux/dccp.h
5713 F:      include/linux/tfrc.h
5714 F:      include/uapi/linux/dccp.h
5715 F:      net/dccp/
5716
5717 DECnet NETWORK LAYER
5718 L:      linux-decnet-user@lists.sourceforge.net
5719 S:      Orphan
5720 W:      http://linux-decnet.sourceforge.net
5721 F:      Documentation/networking/decnet.rst
5722 F:      net/decnet/
5723
5724 DECSTATION PLATFORM SUPPORT
5725 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5726 L:      linux-mips@vger.kernel.org
5727 S:      Maintained
5728 W:      http://www.linux-mips.org/wiki/DECstation
5729 F:      arch/mips/dec/
5730 F:      arch/mips/include/asm/dec/
5731 F:      arch/mips/include/asm/mach-dec/
5732
5733 DEFXX FDDI NETWORK DRIVER
5734 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5735 S:      Maintained
5736 F:      drivers/net/fddi/defxx.*
5737
5738 DEFZA FDDI NETWORK DRIVER
5739 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5740 S:      Maintained
5741 F:      drivers/net/fddi/defza.*
5742
5743 DEINTERLACE DRIVERS FOR ALLWINNER H3
5744 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5745 L:      linux-media@vger.kernel.org
5746 S:      Maintained
5747 T:      git git://linuxtv.org/media_tree.git
5748 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5749 F:      drivers/media/platform/sunxi/sun8i-di/
5750
5751 DELL LAPTOP DRIVER
5752 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5753 M:      Pali Rohár <pali@kernel.org>
5754 L:      platform-driver-x86@vger.kernel.org
5755 S:      Maintained
5756 F:      drivers/platform/x86/dell/dell-laptop.c
5757
5758 DELL LAPTOP FREEFALL DRIVER
5759 M:      Pali Rohár <pali@kernel.org>
5760 S:      Maintained
5761 F:      drivers/platform/x86/dell/dell-smo8800.c
5762
5763 DELL LAPTOP RBTN DRIVER
5764 M:      Pali Rohár <pali@kernel.org>
5765 S:      Maintained
5766 F:      drivers/platform/x86/dell/dell-rbtn.*
5767
5768 DELL LAPTOP SMM DRIVER
5769 M:      Pali Rohár <pali@kernel.org>
5770 S:      Maintained
5771 F:      Documentation/ABI/obsolete/procfs-i8k
5772 F:      drivers/hwmon/dell-smm-hwmon.c
5773 F:      include/uapi/linux/i8k.h
5774
5775 DELL REMOTE BIOS UPDATE DRIVER
5776 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5777 L:      platform-driver-x86@vger.kernel.org
5778 S:      Maintained
5779 F:      drivers/platform/x86/dell/dell_rbu.c
5780
5781 DELL SMBIOS DRIVER
5782 M:      Pali Rohár <pali@kernel.org>
5783 L:      Dell.Client.Kernel@dell.com
5784 L:      platform-driver-x86@vger.kernel.org
5785 S:      Maintained
5786 F:      drivers/platform/x86/dell/dell-smbios.*
5787
5788 DELL SMBIOS SMM DRIVER
5789 L:      Dell.Client.Kernel@dell.com
5790 L:      platform-driver-x86@vger.kernel.org
5791 S:      Maintained
5792 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5793
5794 DELL SMBIOS WMI DRIVER
5795 L:      Dell.Client.Kernel@dell.com
5796 L:      platform-driver-x86@vger.kernel.org
5797 S:      Maintained
5798 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5799 F:      tools/wmi/dell-smbios-example.c
5800
5801 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5802 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5803 L:      platform-driver-x86@vger.kernel.org
5804 S:      Maintained
5805 F:      Documentation/driver-api/dcdbas.rst
5806 F:      drivers/platform/x86/dell/dcdbas.*
5807
5808 DELL WMI DESCRIPTOR DRIVER
5809 L:      Dell.Client.Kernel@dell.com
5810 S:      Maintained
5811 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5812
5813 DELL WMI SYSMAN DRIVER
5814 M:      Divya Bharathi <divya.bharathi@dell.com>
5815 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5816 L:      Dell.Client.Kernel@dell.com
5817 L:      platform-driver-x86@vger.kernel.org
5818 S:      Maintained
5819 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5820 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5821
5822 DELL WMI NOTIFICATIONS DRIVER
5823 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5824 M:      Pali Rohár <pali@kernel.org>
5825 S:      Maintained
5826 F:      drivers/platform/x86/dell/dell-wmi-base.c
5827
5828 DELL WMI HARDWARE PRIVACY SUPPORT
5829 M:      Perry Yuan <Perry.Yuan@dell.com>
5830 L:      Dell.Client.Kernel@dell.com
5831 L:      platform-driver-x86@vger.kernel.org
5832 S:      Maintained
5833 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5834
5835 DELTA ST MEDIA DRIVER
5836 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5837 L:      linux-media@vger.kernel.org
5838 S:      Supported
5839 W:      https://linuxtv.org
5840 T:      git git://linuxtv.org/media_tree.git
5841 F:      drivers/media/platform/st/sti/delta
5842
5843 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5844 M:      Zev Weiss <zev@bewilderbeest.net>
5845 L:      linux-hwmon@vger.kernel.org
5846 S:      Maintained
5847 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5848
5849 DELTA DPS920AB PSU DRIVER
5850 M:      Robert Marko <robert.marko@sartura.hr>
5851 L:      linux-hwmon@vger.kernel.org
5852 S:      Maintained
5853 F:      Documentation/hwmon/dps920ab.rst
5854 F:      drivers/hwmon/pmbus/dps920ab.c
5855
5856 DELTA NETWORKS TN48M CPLD DRIVERS
5857 M:      Robert Marko <robert.marko@sartura.hr>
5858 S:      Maintained
5859 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5860 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5861 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5862 F:      drivers/gpio/gpio-tn48m.c
5863 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5864
5865 DENALI NAND DRIVER
5866 L:      linux-mtd@lists.infradead.org
5867 S:      Orphan
5868 F:      drivers/mtd/nand/raw/denali*
5869
5870 DESIGNWARE EDMA CORE IP DRIVER
5871 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5872 L:      dmaengine@vger.kernel.org
5873 S:      Maintained
5874 F:      drivers/dma/dw-edma/
5875 F:      include/linux/dma/edma.h
5876
5877 DESIGNWARE XDATA IP DRIVER
5878 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5879 L:      linux-pci@vger.kernel.org
5880 S:      Maintained
5881 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5882 F:      drivers/misc/dw-xdata-pcie.c
5883
5884 DESIGNWARE USB2 DRD IP DRIVER
5885 M:      Minas Harutyunyan <hminas@synopsys.com>
5886 L:      linux-usb@vger.kernel.org
5887 S:      Maintained
5888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5889 F:      drivers/usb/dwc2/
5890
5891 DESIGNWARE USB3 DRD IP DRIVER
5892 M:      Felipe Balbi <balbi@kernel.org>
5893 L:      linux-usb@vger.kernel.org
5894 S:      Maintained
5895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5896 F:      drivers/usb/dwc3/
5897
5898 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5899 M:      Andreas Klinger <ak@it-klinger.de>
5900 L:      linux-iio@vger.kernel.org
5901 S:      Maintained
5902 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5903 F:      drivers/iio/proximity/srf*.c
5904
5905 DEVICE COREDUMP (DEV_COREDUMP)
5906 M:      Johannes Berg <johannes@sipsolutions.net>
5907 L:      linux-kernel@vger.kernel.org
5908 S:      Maintained
5909 F:      drivers/base/devcoredump.c
5910 F:      include/linux/devcoredump.h
5911
5912 DEVICE DEPENDENCY HELPER SCRIPT
5913 M:      Saravana Kannan <saravanak@google.com>
5914 L:      linux-kernel@vger.kernel.org
5915 S:      Maintained
5916 F:      scripts/dev-needs.sh
5917
5918 DEVICE DIRECT ACCESS (DAX)
5919 M:      Dan Williams <dan.j.williams@intel.com>
5920 M:      Vishal Verma <vishal.l.verma@intel.com>
5921 M:      Dave Jiang <dave.jiang@intel.com>
5922 L:      nvdimm@lists.linux.dev
5923 S:      Supported
5924 F:      drivers/dax/
5925
5926 DEVICE FREQUENCY (DEVFREQ)
5927 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5928 M:      Kyungmin Park <kyungmin.park@samsung.com>
5929 M:      Chanwoo Choi <cw00.choi@samsung.com>
5930 L:      linux-pm@vger.kernel.org
5931 S:      Maintained
5932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5933 F:      Documentation/devicetree/bindings/devfreq/
5934 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5935 F:      drivers/devfreq/
5936 F:      include/linux/devfreq.h
5937 F:      include/trace/events/devfreq.h
5938
5939 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5940 M:      Chanwoo Choi <cw00.choi@samsung.com>
5941 L:      linux-pm@vger.kernel.org
5942 S:      Supported
5943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5944 F:      Documentation/devicetree/bindings/devfreq/event/
5945 F:      drivers/devfreq/devfreq-event.c
5946 F:      drivers/devfreq/event/
5947 F:      include/dt-bindings/pmu/exynos_ppmu.h
5948 F:      include/linux/devfreq-event.h
5949
5950 DEVICE NUMBER REGISTRY
5951 M:      Torben Mathiasen <device@lanana.org>
5952 S:      Maintained
5953 W:      http://lanana.org/docs/device-list/index.html
5954
5955 DEVICE RESOURCE MANAGEMENT HELPERS
5956 M:      Hans de Goede <hdegoede@redhat.com>
5957 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5958 S:      Maintained
5959 F:      include/linux/devm-helpers.h
5960
5961 DEVICE-MAPPER  (LVM)
5962 M:      Alasdair Kergon <agk@redhat.com>
5963 M:      Mike Snitzer <snitzer@kernel.org>
5964 M:      dm-devel@redhat.com
5965 L:      dm-devel@redhat.com
5966 S:      Maintained
5967 W:      http://sources.redhat.com/dm
5968 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5970 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5971 F:      Documentation/admin-guide/device-mapper/
5972 F:      drivers/md/Kconfig
5973 F:      drivers/md/Makefile
5974 F:      drivers/md/dm*
5975 F:      drivers/md/persistent-data/
5976 F:      include/linux/device-mapper.h
5977 F:      include/linux/dm-*.h
5978 F:      include/uapi/linux/dm-*.h
5979
5980 DEVLINK
5981 M:      Jiri Pirko <jiri@nvidia.com>
5982 L:      netdev@vger.kernel.org
5983 S:      Supported
5984 F:      Documentation/networking/devlink
5985 F:      include/net/devlink.h
5986 F:      include/uapi/linux/devlink.h
5987 F:      net/core/devlink.c
5988
5989 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5990 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5991 L:      kernel@dh-electronics.com
5992 S:      Maintained
5993 F:      arch/arm/boot/dts/imx6*-dhcom-*
5994
5995 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5996 M:      Marek Vasut <marex@denx.de>
5997 L:      kernel@dh-electronics.com
5998 S:      Maintained
5999 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
6000 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
6001
6002 DIALOG SEMICONDUCTOR DRIVERS
6003 M:      Support Opensource <support.opensource@diasemi.com>
6004 S:      Supported
6005 W:      http://www.dialog-semiconductor.com/products
6006 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
6007 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
6008 F:      Documentation/devicetree/bindings/mfd/da90*.txt
6009 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
6010 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
6011 F:      Documentation/devicetree/bindings/regulator/da92*.txt
6012 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
6013 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
6014 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
6015 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
6016 F:      Documentation/hwmon/da90??.rst
6017 F:      drivers/gpio/gpio-da90??.c
6018 F:      drivers/hwmon/da90??-hwmon.c
6019 F:      drivers/iio/adc/da91??-*.c
6020 F:      drivers/input/misc/da72??.[ch]
6021 F:      drivers/input/misc/da90??_onkey.c
6022 F:      drivers/input/touchscreen/da9052_tsi.c
6023 F:      drivers/leds/leds-da90??.c
6024 F:      drivers/mfd/da903x.c
6025 F:      drivers/mfd/da90??-*.c
6026 F:      drivers/mfd/da91??-*.c
6027 F:      drivers/pinctrl/pinctrl-da90??.c
6028 F:      drivers/power/supply/da9052-battery.c
6029 F:      drivers/power/supply/da91??-*.c
6030 F:      drivers/regulator/da9???-regulator.[ch]
6031 F:      drivers/regulator/slg51000-regulator.[ch]
6032 F:      drivers/rtc/rtc-da90??.c
6033 F:      drivers/thermal/da90??-thermal.c
6034 F:      drivers/video/backlight/da90??_bl.c
6035 F:      drivers/watchdog/da90??_wdt.c
6036 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6037 F:      include/linux/mfd/da903x.h
6038 F:      include/linux/mfd/da9052/
6039 F:      include/linux/mfd/da9055/
6040 F:      include/linux/mfd/da9062/
6041 F:      include/linux/mfd/da9063/
6042 F:      include/linux/mfd/da9150/
6043 F:      include/linux/regulator/da9211.h
6044 F:      include/sound/da[79]*.h
6045 F:      sound/soc/codecs/da[79]*.[ch]
6046
6047 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6048 M:      William Breathitt Gray <william.gray@linaro.org>
6049 L:      linux-gpio@vger.kernel.org
6050 S:      Maintained
6051 F:      drivers/gpio/gpio-gpio-mm.c
6052
6053 DIOLAN U2C-12 I2C DRIVER
6054 M:      Guenter Roeck <linux@roeck-us.net>
6055 L:      linux-i2c@vger.kernel.org
6056 S:      Maintained
6057 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6058
6059 DIRECTORY NOTIFICATION (DNOTIFY)
6060 M:      Jan Kara <jack@suse.cz>
6061 R:      Amir Goldstein <amir73il@gmail.com>
6062 L:      linux-fsdevel@vger.kernel.org
6063 S:      Maintained
6064 F:      Documentation/filesystems/dnotify.rst
6065 F:      fs/notify/dnotify/
6066 F:      include/linux/dnotify.h
6067
6068 DISK GEOMETRY AND PARTITION HANDLING
6069 M:      Andries Brouwer <aeb@cwi.nl>
6070 S:      Maintained
6071 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6072 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6073 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6074
6075 DISKQUOTA
6076 M:      Jan Kara <jack@suse.com>
6077 S:      Maintained
6078 F:      Documentation/filesystems/quota.rst
6079 F:      fs/quota/
6080 F:      include/linux/quota*.h
6081 F:      include/uapi/linux/quota*.h
6082
6083 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6084 M:      Bernie Thompson <bernie@plugable.com>
6085 L:      linux-fbdev@vger.kernel.org
6086 S:      Maintained
6087 W:      http://plugable.com/category/projects/udlfb/
6088 F:      Documentation/fb/udlfb.rst
6089 F:      drivers/video/fbdev/udlfb.c
6090 F:      include/video/udlfb.h
6091
6092 DISTRIBUTED LOCK MANAGER (DLM)
6093 M:      Christine Caulfield <ccaulfie@redhat.com>
6094 M:      David Teigland <teigland@redhat.com>
6095 L:      cluster-devel@redhat.com
6096 S:      Supported
6097 W:      http://sources.redhat.com/cluster/
6098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6099 F:      fs/dlm/
6100
6101 DMA BUFFER SHARING FRAMEWORK
6102 M:      Sumit Semwal <sumit.semwal@linaro.org>
6103 M:      Christian König <christian.koenig@amd.com>
6104 L:      linux-media@vger.kernel.org
6105 L:      dri-devel@lists.freedesktop.org
6106 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6107 S:      Maintained
6108 T:      git git://anongit.freedesktop.org/drm/drm-misc
6109 F:      Documentation/driver-api/dma-buf.rst
6110 F:      drivers/dma-buf/
6111 F:      include/linux/*fence.h
6112 F:      include/linux/dma-buf.h
6113 F:      include/linux/dma-resv.h
6114 K:      \bdma_(?:buf|fence|resv)\b
6115
6116 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6117 M:      Vinod Koul <vkoul@kernel.org>
6118 L:      dmaengine@vger.kernel.org
6119 S:      Maintained
6120 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6122 F:      Documentation/devicetree/bindings/dma/
6123 F:      Documentation/driver-api/dmaengine/
6124 F:      drivers/dma/
6125 F:      include/dt-bindings/dma/
6126 F:      include/linux/dma/
6127 F:      include/linux/dmaengine.h
6128 F:      include/linux/of_dma.h
6129
6130 DMA MAPPING HELPERS
6131 M:      Christoph Hellwig <hch@lst.de>
6132 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6133 R:      Robin Murphy <robin.murphy@arm.com>
6134 L:      iommu@lists.linux.dev
6135 S:      Supported
6136 W:      http://git.infradead.org/users/hch/dma-mapping.git
6137 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6138 F:      include/asm-generic/dma-mapping.h
6139 F:      include/linux/dma-direct.h
6140 F:      include/linux/dma-mapping.h
6141 F:      include/linux/dma-map-ops.h
6142 F:      kernel/dma/
6143
6144 DMA MAPPING BENCHMARK
6145 M:      Xiang Chen <chenxiang66@hisilicon.com>
6146 L:      iommu@lists.linux.dev
6147 F:      kernel/dma/map_benchmark.c
6148 F:      tools/testing/selftests/dma/
6149
6150 DMA-BUF HEAPS FRAMEWORK
6151 M:      Sumit Semwal <sumit.semwal@linaro.org>
6152 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6153 R:      Liam Mark <lmark@codeaurora.org>
6154 R:      Laura Abbott <labbott@redhat.com>
6155 R:      Brian Starkey <Brian.Starkey@arm.com>
6156 R:      John Stultz <jstultz@google.com>
6157 L:      linux-media@vger.kernel.org
6158 L:      dri-devel@lists.freedesktop.org
6159 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6160 S:      Maintained
6161 T:      git git://anongit.freedesktop.org/drm/drm-misc
6162 F:      drivers/dma-buf/dma-heap.c
6163 F:      drivers/dma-buf/heaps/*
6164 F:      include/linux/dma-heap.h
6165 F:      include/uapi/linux/dma-heap.h
6166
6167 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6168 M:      Lukasz Luba <lukasz.luba@arm.com>
6169 L:      linux-pm@vger.kernel.org
6170 L:      linux-samsung-soc@vger.kernel.org
6171 S:      Maintained
6172 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6173 F:      drivers/memory/samsung/exynos5422-dmc.c
6174
6175 DME1737 HARDWARE MONITOR DRIVER
6176 M:      Juerg Haefliger <juergh@gmail.com>
6177 L:      linux-hwmon@vger.kernel.org
6178 S:      Maintained
6179 F:      Documentation/hwmon/dme1737.rst
6180 F:      drivers/hwmon/dme1737.c
6181
6182 DMI/SMBIOS SUPPORT
6183 M:      Jean Delvare <jdelvare@suse.com>
6184 S:      Maintained
6185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6186 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6187 F:      drivers/firmware/dmi-id.c
6188 F:      drivers/firmware/dmi_scan.c
6189 F:      include/linux/dmi.h
6190
6191 DOCUMENTATION
6192 M:      Jonathan Corbet <corbet@lwn.net>
6193 L:      linux-doc@vger.kernel.org
6194 S:      Maintained
6195 P:      Documentation/doc-guide/maintainer-profile.rst
6196 T:      git git://git.lwn.net/linux.git docs-next
6197 F:      Documentation/
6198 F:      scripts/documentation-file-ref-check
6199 F:      scripts/kernel-doc
6200 F:      scripts/sphinx-pre-install
6201 X:      Documentation/ABI/
6202 X:      Documentation/admin-guide/media/
6203 X:      Documentation/devicetree/
6204 X:      Documentation/driver-api/media/
6205 X:      Documentation/firmware-guide/acpi/
6206 X:      Documentation/i2c/
6207 X:      Documentation/power/
6208 X:      Documentation/spi/
6209 X:      Documentation/userspace-api/media/
6210
6211 DOCUMENTATION REPORTING ISSUES
6212 M:      Thorsten Leemhuis <linux@leemhuis.info>
6213 L:      linux-doc@vger.kernel.org
6214 S:      Maintained
6215 F:      Documentation/admin-guide/reporting-issues.rst
6216
6217 DOCUMENTATION SCRIPTS
6218 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6219 L:      linux-doc@vger.kernel.org
6220 S:      Maintained
6221 F:      Documentation/sphinx/parse-headers.pl
6222 F:      scripts/documentation-file-ref-check
6223 F:      scripts/sphinx-pre-install
6224
6225 DOCUMENTATION/ITALIAN
6226 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6227 L:      linux-doc@vger.kernel.org
6228 S:      Maintained
6229 F:      Documentation/translations/it_IT
6230
6231 DOCUMENTATION/JAPANESE
6232 R:      Akira Yokosawa <akiyks@gmail.com>
6233 L:      linux-doc@vger.kernel.org
6234 S:      Maintained
6235 F:      Documentation/translations/ja_JP
6236
6237 DONGWOON DW9714 LENS VOICE COIL DRIVER
6238 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6239 L:      linux-media@vger.kernel.org
6240 S:      Maintained
6241 T:      git git://linuxtv.org/media_tree.git
6242 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6243 F:      drivers/media/i2c/dw9714.c
6244
6245 DONGWOON DW9768 LENS VOICE COIL DRIVER
6246 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6247 L:      linux-media@vger.kernel.org
6248 S:      Maintained
6249 T:      git git://linuxtv.org/media_tree.git
6250 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6251 F:      drivers/media/i2c/dw9768.c
6252
6253 DONGWOON DW9807 LENS VOICE COIL DRIVER
6254 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6255 L:      linux-media@vger.kernel.org
6256 S:      Maintained
6257 T:      git git://linuxtv.org/media_tree.git
6258 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6259 F:      drivers/media/i2c/dw9807-vcm.c
6260
6261 DOUBLETALK DRIVER
6262 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6263 L:      blinux-list@redhat.com
6264 S:      Maintained
6265 F:      drivers/char/dtlk.c
6266 F:      include/linux/dtlk.h
6267
6268 DPAA2 DATAPATH I/O (DPIO) DRIVER
6269 M:      Roy Pledge <Roy.Pledge@nxp.com>
6270 L:      linux-kernel@vger.kernel.org
6271 S:      Maintained
6272 F:      drivers/soc/fsl/dpio
6273
6274 DPAA2 ETHERNET DRIVER
6275 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6276 L:      netdev@vger.kernel.org
6277 S:      Maintained
6278 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6279 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6280 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6281 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6282 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6283 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6284 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6285 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6286 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6287
6288 DPAA2 ETHERNET SWITCH DRIVER
6289 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6290 L:      netdev@vger.kernel.org
6291 S:      Maintained
6292 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6293 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6294 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6295
6296 DRBD DRIVER
6297 M:      Philipp Reisner <philipp.reisner@linbit.com>
6298 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6299 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6300 L:      drbd-dev@lists.linbit.com
6301 S:      Supported
6302 W:      http://www.drbd.org
6303 T:      git git://git.linbit.com/linux-drbd.git
6304 T:      git git://git.linbit.com/drbd-8.4.git
6305 F:      Documentation/admin-guide/blockdev/
6306 F:      drivers/block/drbd/
6307 F:      lib/lru_cache.c
6308
6309 DRIVER COMPONENT FRAMEWORK
6310 L:      dri-devel@lists.freedesktop.org
6311 F:      drivers/base/component.c
6312 F:      include/linux/component.h
6313
6314 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6315 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6316 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6317 S:      Supported
6318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6319 F:      Documentation/core-api/kobject.rst
6320 F:      drivers/base/
6321 F:      fs/debugfs/
6322 F:      fs/sysfs/
6323 F:      include/linux/debugfs.h
6324 F:      include/linux/kobj*
6325 F:      lib/kobj*
6326
6327 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6328 M:      Nishanth Menon <nm@ti.com>
6329 L:      linux-pm@vger.kernel.org
6330 S:      Maintained
6331 F:      drivers/soc/ti/smartreflex.c
6332 F:      include/linux/power/smartreflex.h
6333
6334 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6335 M:      Maxime Ripard <mripard@kernel.org>
6336 M:      Chen-Yu Tsai <wens@csie.org>
6337 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6338 L:      dri-devel@lists.freedesktop.org
6339 S:      Supported
6340 T:      git git://anongit.freedesktop.org/drm/drm-misc
6341 F:      drivers/gpu/drm/sun4i/sun8i*
6342
6343 DRM DRIVER FOR ARM PL111 CLCD
6344 M:      Emma Anholt <emma@anholt.net>
6345 S:      Supported
6346 T:      git git://anongit.freedesktop.org/drm/drm-misc
6347 F:      drivers/gpu/drm/pl111/
6348
6349 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6350 M:      Linus Walleij <linus.walleij@linaro.org>
6351 S:      Maintained
6352 T:      git git://anongit.freedesktop.org/drm/drm-misc
6353 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6354 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6355
6356 DRM DRIVER FOR ASPEED BMC GFX
6357 M:      Joel Stanley <joel@jms.id.au>
6358 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6359 S:      Supported
6360 T:      git git://anongit.freedesktop.org/drm/drm-misc
6361 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6362 F:      drivers/gpu/drm/aspeed/
6363
6364 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6365 M:      Dave Airlie <airlied@redhat.com>
6366 R:      Thomas Zimmermann <tzimmermann@suse.de>
6367 L:      dri-devel@lists.freedesktop.org
6368 S:      Supported
6369 T:      git git://anongit.freedesktop.org/drm/drm-misc
6370 F:      drivers/gpu/drm/ast/
6371
6372 DRM DRIVER FOR BOCHS VIRTUAL GPU
6373 M:      Gerd Hoffmann <kraxel@redhat.com>
6374 L:      virtualization@lists.linux-foundation.org
6375 S:      Maintained
6376 T:      git git://anongit.freedesktop.org/drm/drm-misc
6377 F:      drivers/gpu/drm/tiny/bochs.c
6378
6379 DRM DRIVER FOR BOE HIMAX8279D PANELS
6380 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6381 S:      Maintained
6382 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6383 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6384
6385 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6386 M:      Jagan Teki <jagan@amarulasolutions.com>
6387 S:      Maintained
6388 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6389 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6390
6391 DRM DRIVER FOR EBBG FT8719 PANEL
6392 M:      Joel Selvaraj <jo@jsfamily.in>
6393 S:      Maintained
6394 T:      git git://anongit.freedesktop.org/drm/drm-misc
6395 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6396 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6397
6398 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6399 M:      Linus Walleij <linus.walleij@linaro.org>
6400 S:      Maintained
6401 T:      git git://anongit.freedesktop.org/drm/drm-misc
6402 F:      drivers/gpu/drm/tve200/
6403
6404 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6405 M:      Icenowy Zheng <icenowy@aosc.io>
6406 S:      Maintained
6407 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6408 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6409
6410 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6411 M:      Jagan Teki <jagan@amarulasolutions.com>
6412 S:      Maintained
6413 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6414 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6415
6416 DRM DRIVER FOR GENERIC USB DISPLAY
6417 M:      Noralf Trønnes <noralf@tronnes.org>
6418 S:      Maintained
6419 W:      https://github.com/notro/gud/wiki
6420 T:      git git://anongit.freedesktop.org/drm/drm-misc
6421 F:      drivers/gpu/drm/gud/
6422 F:      include/drm/gud.h
6423
6424 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6425 M:      Hans de Goede <hdegoede@redhat.com>
6426 S:      Maintained
6427 T:      git git://anongit.freedesktop.org/drm/drm-misc
6428 F:      drivers/gpu/drm/tiny/gm12u320.c
6429
6430 DRM DRIVER FOR HX8357D PANELS
6431 M:      Emma Anholt <emma@anholt.net>
6432 S:      Maintained
6433 T:      git git://anongit.freedesktop.org/drm/drm-misc
6434 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6435 F:      drivers/gpu/drm/tiny/hx8357d.c
6436
6437 DRM DRIVER FOR ILITEK ILI9225 PANELS
6438 M:      David Lechner <david@lechnology.com>
6439 S:      Maintained
6440 T:      git git://anongit.freedesktop.org/drm/drm-misc
6441 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6442 F:      drivers/gpu/drm/tiny/ili9225.c
6443
6444 DRM DRIVER FOR ILITEK ILI9486 PANELS
6445 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6446 S:      Maintained
6447 T:      git git://anongit.freedesktop.org/drm/drm-misc
6448 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6449 F:      drivers/gpu/drm/tiny/ili9486.c
6450
6451 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6452 S:      Orphan / Obsolete
6453 F:      drivers/gpu/drm/i810/
6454 F:      include/uapi/drm/i810_drm.h
6455
6456 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6457 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6458 S:      Supported
6459 T:      git git://anongit.freedesktop.org/drm/drm-misc
6460 F:      drivers/gpu/drm/logicvc/
6461
6462 DRM DRIVER FOR LVDS PANELS
6463 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6464 L:      dri-devel@lists.freedesktop.org
6465 T:      git git://anongit.freedesktop.org/drm/drm-misc
6466 S:      Maintained
6467 F:      drivers/gpu/drm/panel/panel-lvds.c
6468 F:      Documentation/devicetree/bindings/display/lvds.yaml
6469 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6470
6471 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6472 M:      Guido Günther <agx@sigxcpu.org>
6473 R:      Purism Kernel Team <kernel@puri.sm>
6474 S:      Maintained
6475 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6476 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6477
6478 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6479 S:      Orphan / Obsolete
6480 F:      drivers/gpu/drm/mga/
6481 F:      include/uapi/drm/mga_drm.h
6482
6483 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6484 M:      Dave Airlie <airlied@redhat.com>
6485 R:      Thomas Zimmermann <tzimmermann@suse.de>
6486 L:      dri-devel@lists.freedesktop.org
6487 S:      Supported
6488 T:      git git://anongit.freedesktop.org/drm/drm-misc
6489 F:      drivers/gpu/drm/mgag200/
6490
6491 DRM DRIVER FOR MI0283QT
6492 M:      Noralf Trønnes <noralf@tronnes.org>
6493 S:      Maintained
6494 T:      git git://anongit.freedesktop.org/drm/drm-misc
6495 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6496 F:      drivers/gpu/drm/tiny/mi0283qt.c
6497
6498 DRM DRIVER FOR MIPI DBI compatible panels
6499 M:      Noralf Trønnes <noralf@tronnes.org>
6500 S:      Maintained
6501 W:      https://github.com/notro/panel-mipi-dbi/wiki
6502 T:      git git://anongit.freedesktop.org/drm/drm-misc
6503 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6504 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6505
6506 DRM DRIVER FOR MSM ADRENO GPU
6507 M:      Rob Clark <robdclark@gmail.com>
6508 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6509 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6510 R:      Sean Paul <sean@poorly.run>
6511 L:      linux-arm-msm@vger.kernel.org
6512 L:      dri-devel@lists.freedesktop.org
6513 L:      freedreno@lists.freedesktop.org
6514 S:      Maintained
6515 T:      git https://gitlab.freedesktop.org/drm/msm.git
6516 F:      Documentation/devicetree/bindings/display/msm/
6517 F:      drivers/gpu/drm/msm/
6518 F:      include/uapi/drm/msm_drm.h
6519
6520 DRM DRIVER FOR NOVATEK NT35510 PANELS
6521 M:      Linus Walleij <linus.walleij@linaro.org>
6522 S:      Maintained
6523 T:      git git://anongit.freedesktop.org/drm/drm-misc
6524 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6525 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6526
6527 DRM DRIVER FOR NOVATEK NT35560 PANELS
6528 M:      Linus Walleij <linus.walleij@linaro.org>
6529 S:      Maintained
6530 T:      git git://anongit.freedesktop.org/drm/drm-misc
6531 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6532 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6533
6534 DRM DRIVER FOR NOVATEK NT36672A PANELS
6535 M:      Sumit Semwal <sumit.semwal@linaro.org>
6536 S:      Maintained
6537 T:      git git://anongit.freedesktop.org/drm/drm-misc
6538 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6539 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6540
6541 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6542 M:      Ben Skeggs <bskeggs@redhat.com>
6543 M:      Karol Herbst <kherbst@redhat.com>
6544 M:      Lyude Paul <lyude@redhat.com>
6545 L:      dri-devel@lists.freedesktop.org
6546 L:      nouveau@lists.freedesktop.org
6547 S:      Supported
6548 W:      https://nouveau.freedesktop.org/
6549 Q:      https://patchwork.freedesktop.org/project/nouveau/
6550 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6551 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6552 C:      irc://irc.oftc.net/nouveau
6553 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6554 F:      drivers/gpu/drm/nouveau/
6555 F:      include/uapi/drm/nouveau_drm.h
6556
6557 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6558 M:      Stefan Mavrodiev <stefan@olimex.com>
6559 S:      Maintained
6560 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6561 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6562
6563 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6564 R:      Douglas Anderson <dianders@chromium.org>
6565 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6566 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6567
6568 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6569 M:      Noralf Trønnes <noralf@tronnes.org>
6570 S:      Maintained
6571 T:      git git://anongit.freedesktop.org/drm/drm-misc
6572 F:      Documentation/devicetree/bindings/display/repaper.txt
6573 F:      drivers/gpu/drm/tiny/repaper.c
6574
6575 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6576 M:      Javier Martinez Canillas <javierm@redhat.com>
6577 S:      Maintained
6578 T:      git git://anongit.freedesktop.org/drm/drm-misc
6579 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6580 F:      drivers/gpu/drm/solomon/ssd130x*
6581
6582 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6583 M:      Dave Airlie <airlied@redhat.com>
6584 M:      Gerd Hoffmann <kraxel@redhat.com>
6585 L:      virtualization@lists.linux-foundation.org
6586 S:      Obsolete
6587 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6588 T:      git git://anongit.freedesktop.org/drm/drm-misc
6589 F:      drivers/gpu/drm/tiny/cirrus.c
6590
6591 DRM DRIVER FOR QXL VIRTUAL GPU
6592 M:      Dave Airlie <airlied@redhat.com>
6593 M:      Gerd Hoffmann <kraxel@redhat.com>
6594 L:      virtualization@lists.linux-foundation.org
6595 L:      spice-devel@lists.freedesktop.org
6596 S:      Maintained
6597 T:      git git://anongit.freedesktop.org/drm/drm-misc
6598 F:      drivers/gpu/drm/qxl/
6599 F:      include/uapi/drm/qxl_drm.h
6600
6601 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6602 S:      Orphan / Obsolete
6603 F:      drivers/gpu/drm/r128/
6604 F:      include/uapi/drm/r128_drm.h
6605
6606 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6607 M:      Robert Chiras <robert.chiras@nxp.com>
6608 S:      Maintained
6609 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6610 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6611
6612 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6613 M:      Linus Walleij <linus.walleij@linaro.org>
6614 S:      Maintained
6615 T:      git git://anongit.freedesktop.org/drm/drm-misc
6616 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6617 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6618
6619 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6620 M:      Markuss Broks <markuss.broks@gmail.com>
6621 S:      Maintained
6622 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6623 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6624
6625 DRM DRIVER FOR SITRONIX ST7703 PANELS
6626 M:      Guido Günther <agx@sigxcpu.org>
6627 R:      Purism Kernel Team <kernel@puri.sm>
6628 R:      Ondrej Jirman <megous@megous.com>
6629 S:      Maintained
6630 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6631 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6632
6633 DRM DRIVER FOR SAVAGE VIDEO CARDS
6634 S:      Orphan / Obsolete
6635 F:      drivers/gpu/drm/savage/
6636 F:      include/uapi/drm/savage_drm.h
6637
6638 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6639 M:      Thomas Zimmermann <tzimmermann@suse.de>
6640 M:      Javier Martinez Canillas <javierm@redhat.com>
6641 L:      dri-devel@lists.freedesktop.org
6642 S:      Maintained
6643 T:      git git://anongit.freedesktop.org/drm/drm-misc
6644 F:      drivers/gpu/drm/drm_aperture.c
6645 F:      drivers/gpu/drm/tiny/simpledrm.c
6646 F:      drivers/video/aperture.c
6647 F:      include/drm/drm_aperture.h
6648 F:      include/linux/aperture.h
6649
6650 DRM DRIVER FOR SIS VIDEO CARDS
6651 S:      Orphan / Obsolete
6652 F:      drivers/gpu/drm/sis/
6653 F:      include/uapi/drm/sis_drm.h
6654
6655 DRM DRIVER FOR SITRONIX ST7586 PANELS
6656 M:      David Lechner <david@lechnology.com>
6657 S:      Maintained
6658 T:      git git://anongit.freedesktop.org/drm/drm-misc
6659 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6660 F:      drivers/gpu/drm/tiny/st7586.c
6661
6662 DRM DRIVER FOR SITRONIX ST7701 PANELS
6663 M:      Jagan Teki <jagan@amarulasolutions.com>
6664 S:      Maintained
6665 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6666 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6667
6668 DRM DRIVER FOR SITRONIX ST7735R PANELS
6669 M:      David Lechner <david@lechnology.com>
6670 S:      Maintained
6671 T:      git git://anongit.freedesktop.org/drm/drm-misc
6672 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6673 F:      drivers/gpu/drm/tiny/st7735r.c
6674
6675 DRM DRIVER FOR ST-ERICSSON MCDE
6676 M:      Linus Walleij <linus.walleij@linaro.org>
6677 S:      Maintained
6678 T:      git git://anongit.freedesktop.org/drm/drm-misc
6679 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6680 F:      drivers/gpu/drm/mcde/
6681
6682 DRM DRIVER FOR TDFX VIDEO CARDS
6683 S:      Orphan / Obsolete
6684 F:      drivers/gpu/drm/tdfx/
6685
6686 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6687 M:      Jagan Teki <jagan@amarulasolutions.com>
6688 S:      Maintained
6689 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6690 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6691
6692 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6693 R:      Douglas Anderson <dianders@chromium.org>
6694 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6695 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6696
6697 DRM DRIVER FOR TPO TPG110 PANELS
6698 M:      Linus Walleij <linus.walleij@linaro.org>
6699 S:      Maintained
6700 T:      git git://anongit.freedesktop.org/drm/drm-misc
6701 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6702 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6703
6704 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6705 M:      Dave Airlie <airlied@redhat.com>
6706 R:      Sean Paul <sean@poorly.run>
6707 R:      Thomas Zimmermann <tzimmermann@suse.de>
6708 L:      dri-devel@lists.freedesktop.org
6709 S:      Supported
6710 T:      git git://anongit.freedesktop.org/drm/drm-misc
6711 F:      drivers/gpu/drm/udl/
6712
6713 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6714 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6715 M:      Melissa Wen <melissa.srw@gmail.com>
6716 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6717 R:      Daniel Vetter <daniel@ffwll.ch>
6718 L:      dri-devel@lists.freedesktop.org
6719 S:      Maintained
6720 T:      git git://anongit.freedesktop.org/drm/drm-misc
6721 F:      Documentation/gpu/vkms.rst
6722 F:      drivers/gpu/drm/vkms/
6723
6724 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6725 M:      Hans de Goede <hdegoede@redhat.com>
6726 L:      dri-devel@lists.freedesktop.org
6727 S:      Maintained
6728 T:      git git://anongit.freedesktop.org/drm/drm-misc
6729 F:      drivers/gpu/drm/vboxvideo/
6730
6731 DRM DRIVER FOR VMWARE VIRTUAL GPU
6732 M:      Zack Rusin <zackr@vmware.com>
6733 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6734 L:      dri-devel@lists.freedesktop.org
6735 S:      Supported
6736 T:      git git://anongit.freedesktop.org/drm/drm-misc
6737 F:      drivers/gpu/drm/vmwgfx/
6738 F:      include/uapi/drm/vmwgfx_drm.h
6739
6740 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6741 M:      Linus Walleij <linus.walleij@linaro.org>
6742 S:      Maintained
6743 T:      git git://anongit.freedesktop.org/drm/drm-misc
6744 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6745 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6746
6747 DRM DRIVERS
6748 M:      David Airlie <airlied@linux.ie>
6749 M:      Daniel Vetter <daniel@ffwll.ch>
6750 L:      dri-devel@lists.freedesktop.org
6751 S:      Maintained
6752 B:      https://gitlab.freedesktop.org/drm
6753 C:      irc://irc.oftc.net/dri-devel
6754 T:      git git://anongit.freedesktop.org/drm/drm
6755 F:      Documentation/devicetree/bindings/display/
6756 F:      Documentation/devicetree/bindings/gpu/
6757 F:      Documentation/gpu/
6758 F:      drivers/gpu/
6759 F:      include/drm/
6760 F:      include/linux/vga*
6761 F:      include/uapi/drm/
6762
6763 DRM DRIVERS AND MISC GPU PATCHES
6764 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6765 M:      Maxime Ripard <mripard@kernel.org>
6766 M:      Thomas Zimmermann <tzimmermann@suse.de>
6767 S:      Maintained
6768 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6769 T:      git git://anongit.freedesktop.org/drm/drm-misc
6770 F:      Documentation/gpu/
6771 F:      drivers/gpu/drm/*
6772 F:      drivers/gpu/vga/
6773 F:      include/drm/drm*
6774 F:      include/linux/vga*
6775 F:      include/uapi/drm/drm*
6776
6777 DRM DRIVERS FOR ALLWINNER A10
6778 M:      Maxime Ripard <mripard@kernel.org>
6779 M:      Chen-Yu Tsai <wens@csie.org>
6780 L:      dri-devel@lists.freedesktop.org
6781 S:      Supported
6782 T:      git git://anongit.freedesktop.org/drm/drm-misc
6783 F:      Documentation/devicetree/bindings/display/allwinner*
6784 F:      drivers/gpu/drm/sun4i/
6785
6786 DRM DRIVERS FOR AMLOGIC SOCS
6787 M:      Neil Armstrong <narmstrong@baylibre.com>
6788 L:      dri-devel@lists.freedesktop.org
6789 L:      linux-amlogic@lists.infradead.org
6790 S:      Supported
6791 W:      http://linux-meson.com/
6792 T:      git git://anongit.freedesktop.org/drm/drm-misc
6793 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6794 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6795 F:      Documentation/gpu/meson.rst
6796 F:      drivers/gpu/drm/meson/
6797
6798 DRM DRIVERS FOR ATMEL HLCDC
6799 M:      Sam Ravnborg <sam@ravnborg.org>
6800 M:      Boris Brezillon <bbrezillon@kernel.org>
6801 L:      dri-devel@lists.freedesktop.org
6802 S:      Supported
6803 T:      git git://anongit.freedesktop.org/drm/drm-misc
6804 F:      Documentation/devicetree/bindings/display/atmel/
6805 F:      drivers/gpu/drm/atmel-hlcdc/
6806
6807 DRM DRIVERS FOR BRIDGE CHIPS
6808 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6809 M:      Neil Armstrong <narmstrong@baylibre.com>
6810 M:      Robert Foss <robert.foss@linaro.org>
6811 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6812 R:      Jonas Karlman <jonas@kwiboo.se>
6813 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6814 S:      Maintained
6815 T:      git git://anongit.freedesktop.org/drm/drm-misc
6816 F:      Documentation/devicetree/bindings/display/bridge/
6817 F:      drivers/gpu/drm/bridge/
6818
6819 DRM DRIVERS FOR EXYNOS
6820 M:      Inki Dae <inki.dae@samsung.com>
6821 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6822 M:      Kyungmin Park <kyungmin.park@samsung.com>
6823 L:      dri-devel@lists.freedesktop.org
6824 S:      Supported
6825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6826 F:      Documentation/devicetree/bindings/display/exynos/
6827 F:      Documentation/devicetree/bindings/display/samsung/
6828 F:      drivers/gpu/drm/exynos/
6829 F:      include/uapi/drm/exynos_drm.h
6830
6831 DRM DRIVERS FOR FREESCALE DCU
6832 M:      Stefan Agner <stefan@agner.ch>
6833 M:      Alison Wang <alison.wang@nxp.com>
6834 L:      dri-devel@lists.freedesktop.org
6835 S:      Supported
6836 T:      git git://anongit.freedesktop.org/drm/drm-misc
6837 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6838 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6839 F:      drivers/gpu/drm/fsl-dcu/
6840
6841 DRM DRIVERS FOR FREESCALE IMX
6842 M:      Philipp Zabel <p.zabel@pengutronix.de>
6843 L:      dri-devel@lists.freedesktop.org
6844 S:      Maintained
6845 F:      Documentation/devicetree/bindings/display/imx/
6846 F:      drivers/gpu/drm/imx/
6847 F:      drivers/gpu/ipu-v3/
6848
6849 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6850 M:      Liu Ying <victor.liu@nxp.com>
6851 L:      dri-devel@lists.freedesktop.org
6852 S:      Maintained
6853 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6854 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6855 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6856 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6857 F:      drivers/gpu/drm/bridge/imx/
6858
6859 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6860 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6861 L:      dri-devel@lists.freedesktop.org
6862 S:      Maintained
6863 T:      git git://github.com/patjak/drm-gma500
6864 F:      drivers/gpu/drm/gma500/
6865
6866 DRM DRIVERS FOR HISILICON
6867 M:      Xinliang Liu <xinliang.liu@linaro.org>
6868 M:      Tian Tao  <tiantao6@hisilicon.com>
6869 R:      John Stultz <jstultz@google.com>
6870 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6871 R:      Chen Feng <puck.chen@hisilicon.com>
6872 L:      dri-devel@lists.freedesktop.org
6873 S:      Maintained
6874 T:      git git://anongit.freedesktop.org/drm/drm-misc
6875 F:      Documentation/devicetree/bindings/display/hisilicon/
6876 F:      drivers/gpu/drm/hisilicon/
6877
6878 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6879 M:      Deepak Rawat <drawat.floss@gmail.com>
6880 L:      linux-hyperv@vger.kernel.org
6881 L:      dri-devel@lists.freedesktop.org
6882 S:      Maintained
6883 T:      git git://anongit.freedesktop.org/drm/drm-misc
6884 F:      drivers/gpu/drm/hyperv
6885
6886 DRM DRIVERS FOR LIMA
6887 M:      Qiang Yu <yuq825@gmail.com>
6888 L:      dri-devel@lists.freedesktop.org
6889 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6890 S:      Maintained
6891 T:      git git://anongit.freedesktop.org/drm/drm-misc
6892 F:      drivers/gpu/drm/lima/
6893 F:      include/uapi/drm/lima_drm.h
6894
6895 DRM DRIVERS FOR MEDIATEK
6896 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6897 M:      Philipp Zabel <p.zabel@pengutronix.de>
6898 L:      dri-devel@lists.freedesktop.org
6899 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6900 S:      Supported
6901 F:      Documentation/devicetree/bindings/display/mediatek/
6902 F:      drivers/gpu/drm/mediatek/
6903 F:      drivers/phy/mediatek/phy-mtk-dp.c
6904 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6905 F:      drivers/phy/mediatek/phy-mtk-mipi*
6906
6907 DRM DRIVERS FOR NVIDIA TEGRA
6908 M:      Thierry Reding <thierry.reding@gmail.com>
6909 L:      dri-devel@lists.freedesktop.org
6910 L:      linux-tegra@vger.kernel.org
6911 S:      Supported
6912 T:      git git://anongit.freedesktop.org/tegra/linux.git
6913 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6914 F:      Documentation/devicetree/bindings/gpu/host1x/
6915 F:      drivers/gpu/drm/tegra/
6916 F:      drivers/gpu/host1x/
6917 F:      include/linux/host1x.h
6918 F:      include/uapi/drm/tegra_drm.h
6919
6920 DRM DRIVERS FOR RENESAS
6921 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6922 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6923 L:      dri-devel@lists.freedesktop.org
6924 L:      linux-renesas-soc@vger.kernel.org
6925 S:      Supported
6926 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6927 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6928 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6929 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6930 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6931 F:      drivers/gpu/drm/rcar-du/
6932 F:      drivers/gpu/drm/shmobile/
6933 F:      include/linux/platform_data/shmob_drm.h
6934
6935 DRM DRIVERS FOR ROCKCHIP
6936 M:      Sandy Huang <hjc@rock-chips.com>
6937 M:      Heiko Stübner <heiko@sntech.de>
6938 L:      dri-devel@lists.freedesktop.org
6939 S:      Maintained
6940 T:      git git://anongit.freedesktop.org/drm/drm-misc
6941 F:      Documentation/devicetree/bindings/display/rockchip/
6942 F:      drivers/gpu/drm/rockchip/
6943
6944 DRM DRIVERS FOR STI
6945 M:      Alain Volmat <alain.volmat@foss.st.com>
6946 L:      dri-devel@lists.freedesktop.org
6947 S:      Maintained
6948 T:      git git://anongit.freedesktop.org/drm/drm-misc
6949 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6950 F:      drivers/gpu/drm/sti
6951
6952 DRM DRIVERS FOR STM
6953 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6954 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6955 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6956 L:      dri-devel@lists.freedesktop.org
6957 S:      Maintained
6958 T:      git git://anongit.freedesktop.org/drm/drm-misc
6959 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6960 F:      drivers/gpu/drm/stm
6961
6962 DRM DRIVERS FOR TI KEYSTONE
6963 M:      Jyri Sarha <jyri.sarha@iki.fi>
6964 M:      Tomi Valkeinen <tomba@kernel.org>
6965 L:      dri-devel@lists.freedesktop.org
6966 S:      Maintained
6967 T:      git git://anongit.freedesktop.org/drm/drm-misc
6968 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6969 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6970 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6971 F:      drivers/gpu/drm/tidss/
6972
6973 DRM DRIVERS FOR TI LCDC
6974 M:      Jyri Sarha <jyri.sarha@iki.fi>
6975 R:      Tomi Valkeinen <tomba@kernel.org>
6976 L:      dri-devel@lists.freedesktop.org
6977 S:      Maintained
6978 F:      Documentation/devicetree/bindings/display/tilcdc/
6979 F:      drivers/gpu/drm/tilcdc/
6980
6981 DRM DRIVERS FOR TI OMAP
6982 M:      Tomi Valkeinen <tomba@kernel.org>
6983 L:      dri-devel@lists.freedesktop.org
6984 S:      Maintained
6985 F:      Documentation/devicetree/bindings/display/ti/
6986 F:      drivers/gpu/drm/omapdrm/
6987
6988 DRM DRIVERS FOR V3D
6989 M:      Emma Anholt <emma@anholt.net>
6990 M:      Melissa Wen <mwen@igalia.com>
6991 S:      Supported
6992 T:      git git://anongit.freedesktop.org/drm/drm-misc
6993 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6994 F:      drivers/gpu/drm/v3d/
6995 F:      include/uapi/drm/v3d_drm.h
6996
6997 DRM DRIVERS FOR VC4
6998 M:      Emma Anholt <emma@anholt.net>
6999 M:      Maxime Ripard <mripard@kernel.org>
7000 S:      Supported
7001 T:      git git://github.com/anholt/linux
7002 T:      git git://anongit.freedesktop.org/drm/drm-misc
7003 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7004 F:      drivers/gpu/drm/vc4/
7005 F:      include/uapi/drm/vc4_drm.h
7006
7007 DRM DRIVERS FOR VIVANTE GPU IP
7008 M:      Lucas Stach <l.stach@pengutronix.de>
7009 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7010 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7011 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7012 L:      dri-devel@lists.freedesktop.org
7013 S:      Maintained
7014 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7015 F:      drivers/gpu/drm/etnaviv/
7016 F:      include/uapi/drm/etnaviv_drm.h
7017
7018 DRM DRIVERS FOR XEN
7019 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7020 L:      dri-devel@lists.freedesktop.org
7021 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7022 S:      Supported
7023 T:      git git://anongit.freedesktop.org/drm/drm-misc
7024 F:      Documentation/gpu/xen-front.rst
7025 F:      drivers/gpu/drm/xen/
7026
7027 DRM DRIVERS FOR XILINX
7028 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7029 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7030 L:      dri-devel@lists.freedesktop.org
7031 S:      Maintained
7032 T:      git git://anongit.freedesktop.org/drm/drm-misc
7033 F:      Documentation/devicetree/bindings/display/xlnx/
7034 F:      drivers/gpu/drm/xlnx/
7035
7036 DRM PANEL DRIVERS
7037 M:      Thierry Reding <thierry.reding@gmail.com>
7038 R:      Sam Ravnborg <sam@ravnborg.org>
7039 L:      dri-devel@lists.freedesktop.org
7040 S:      Maintained
7041 T:      git git://anongit.freedesktop.org/drm/drm-misc
7042 F:      Documentation/devicetree/bindings/display/panel/
7043 F:      drivers/gpu/drm/drm_panel.c
7044 F:      drivers/gpu/drm/panel/
7045 F:      include/drm/drm_panel.h
7046
7047 DRM PRIVACY-SCREEN CLASS
7048 M:      Hans de Goede <hdegoede@redhat.com>
7049 L:      dri-devel@lists.freedesktop.org
7050 S:      Maintained
7051 T:      git git://anongit.freedesktop.org/drm/drm-misc
7052 F:      drivers/gpu/drm/drm_privacy_screen*
7053 F:      include/drm/drm_privacy_screen*
7054
7055 DRM TTM SUBSYSTEM
7056 M:      Christian Koenig <christian.koenig@amd.com>
7057 M:      Huang Rui <ray.huang@amd.com>
7058 L:      dri-devel@lists.freedesktop.org
7059 S:      Maintained
7060 T:      git git://anongit.freedesktop.org/drm/drm-misc
7061 F:      drivers/gpu/drm/ttm/
7062 F:      include/drm/ttm/
7063
7064 DRM GPU SCHEDULER
7065 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
7066 L:      dri-devel@lists.freedesktop.org
7067 S:      Maintained
7068 T:      git git://anongit.freedesktop.org/drm/drm-misc
7069 F:      drivers/gpu/drm/scheduler/
7070 F:      include/drm/gpu_scheduler.h
7071
7072 DSBR100 USB FM RADIO DRIVER
7073 M:      Alexey Klimov <klimov.linux@gmail.com>
7074 L:      linux-media@vger.kernel.org
7075 S:      Maintained
7076 T:      git git://linuxtv.org/media_tree.git
7077 F:      drivers/media/radio/dsbr100.c
7078
7079 DT3155 MEDIA DRIVER
7080 M:      Hans Verkuil <hverkuil@xs4all.nl>
7081 L:      linux-media@vger.kernel.org
7082 S:      Odd Fixes
7083 W:      https://linuxtv.org
7084 T:      git git://linuxtv.org/media_tree.git
7085 F:      drivers/media/pci/dt3155/
7086
7087 DVB_USB_AF9015 MEDIA DRIVER
7088 M:      Antti Palosaari <crope@iki.fi>
7089 L:      linux-media@vger.kernel.org
7090 S:      Maintained
7091 W:      https://linuxtv.org
7092 W:      http://palosaari.fi/linux/
7093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7094 T:      git git://linuxtv.org/anttip/media_tree.git
7095 F:      drivers/media/usb/dvb-usb-v2/af9015*
7096
7097 DVB_USB_AF9035 MEDIA DRIVER
7098 M:      Antti Palosaari <crope@iki.fi>
7099 L:      linux-media@vger.kernel.org
7100 S:      Maintained
7101 W:      https://linuxtv.org
7102 W:      http://palosaari.fi/linux/
7103 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7104 T:      git git://linuxtv.org/anttip/media_tree.git
7105 F:      drivers/media/usb/dvb-usb-v2/af9035*
7106
7107 DVB_USB_ANYSEE MEDIA DRIVER
7108 M:      Antti Palosaari <crope@iki.fi>
7109 L:      linux-media@vger.kernel.org
7110 S:      Maintained
7111 W:      https://linuxtv.org
7112 W:      http://palosaari.fi/linux/
7113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7114 T:      git git://linuxtv.org/anttip/media_tree.git
7115 F:      drivers/media/usb/dvb-usb-v2/anysee*
7116
7117 DVB_USB_AU6610 MEDIA DRIVER
7118 M:      Antti Palosaari <crope@iki.fi>
7119 L:      linux-media@vger.kernel.org
7120 S:      Maintained
7121 W:      https://linuxtv.org
7122 W:      http://palosaari.fi/linux/
7123 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7124 T:      git git://linuxtv.org/anttip/media_tree.git
7125 F:      drivers/media/usb/dvb-usb-v2/au6610*
7126
7127 DVB_USB_CE6230 MEDIA DRIVER
7128 M:      Antti Palosaari <crope@iki.fi>
7129 L:      linux-media@vger.kernel.org
7130 S:      Maintained
7131 W:      https://linuxtv.org
7132 W:      http://palosaari.fi/linux/
7133 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7134 T:      git git://linuxtv.org/anttip/media_tree.git
7135 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7136
7137 DVB_USB_CXUSB MEDIA DRIVER
7138 M:      Michael Krufky <mkrufky@linuxtv.org>
7139 L:      linux-media@vger.kernel.org
7140 S:      Maintained
7141 W:      https://linuxtv.org
7142 W:      http://github.com/mkrufky
7143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7144 T:      git git://linuxtv.org/media_tree.git
7145 F:      drivers/media/usb/dvb-usb/cxusb*
7146
7147 DVB_USB_EC168 MEDIA DRIVER
7148 M:      Antti Palosaari <crope@iki.fi>
7149 L:      linux-media@vger.kernel.org
7150 S:      Maintained
7151 W:      https://linuxtv.org
7152 W:      http://palosaari.fi/linux/
7153 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7154 T:      git git://linuxtv.org/anttip/media_tree.git
7155 F:      drivers/media/usb/dvb-usb-v2/ec168*
7156
7157 DVB_USB_GL861 MEDIA DRIVER
7158 M:      Antti Palosaari <crope@iki.fi>
7159 L:      linux-media@vger.kernel.org
7160 S:      Maintained
7161 W:      https://linuxtv.org
7162 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7163 T:      git git://linuxtv.org/anttip/media_tree.git
7164 F:      drivers/media/usb/dvb-usb-v2/gl861*
7165
7166 DVB_USB_MXL111SF MEDIA DRIVER
7167 M:      Michael Krufky <mkrufky@linuxtv.org>
7168 L:      linux-media@vger.kernel.org
7169 S:      Maintained
7170 W:      https://linuxtv.org
7171 W:      http://github.com/mkrufky
7172 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7173 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7174 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7175
7176 DVB_USB_RTL28XXU MEDIA DRIVER
7177 M:      Antti Palosaari <crope@iki.fi>
7178 L:      linux-media@vger.kernel.org
7179 S:      Maintained
7180 W:      https://linuxtv.org
7181 W:      http://palosaari.fi/linux/
7182 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7183 T:      git git://linuxtv.org/anttip/media_tree.git
7184 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7185
7186 DVB_USB_V2 MEDIA DRIVER
7187 M:      Antti Palosaari <crope@iki.fi>
7188 L:      linux-media@vger.kernel.org
7189 S:      Maintained
7190 W:      https://linuxtv.org
7191 W:      http://palosaari.fi/linux/
7192 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7193 T:      git git://linuxtv.org/anttip/media_tree.git
7194 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7195 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7196
7197 DYNAMIC DEBUG
7198 M:      Jason Baron <jbaron@akamai.com>
7199 S:      Maintained
7200 F:      include/linux/dynamic_debug.h
7201 F:      lib/dynamic_debug.c
7202
7203 DYNAMIC INTERRUPT MODERATION
7204 M:      Tal Gilboa <talgi@nvidia.com>
7205 S:      Maintained
7206 F:      Documentation/networking/net_dim.rst
7207 F:      include/linux/dim.h
7208 F:      lib/dim/
7209
7210 DZ DECSTATION DZ11 SERIAL DRIVER
7211 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7212 S:      Maintained
7213 F:      drivers/tty/serial/dz.*
7214
7215 E3X0 POWER BUTTON DRIVER
7216 M:      Moritz Fischer <moritz.fischer@ettus.com>
7217 L:      usrp-users@lists.ettus.com
7218 S:      Supported
7219 W:      http://www.ettus.com
7220 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7221 F:      drivers/input/misc/e3x0-button.c
7222
7223 E4000 MEDIA DRIVER
7224 M:      Antti Palosaari <crope@iki.fi>
7225 L:      linux-media@vger.kernel.org
7226 S:      Maintained
7227 W:      https://linuxtv.org
7228 W:      http://palosaari.fi/linux/
7229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7230 T:      git git://linuxtv.org/anttip/media_tree.git
7231 F:      drivers/media/tuners/e4000*
7232
7233 EARTH_PT1 MEDIA DRIVER
7234 M:      Akihiro Tsukada <tskd08@gmail.com>
7235 L:      linux-media@vger.kernel.org
7236 S:      Odd Fixes
7237 F:      drivers/media/pci/pt1/
7238
7239 EARTH_PT3 MEDIA DRIVER
7240 M:      Akihiro Tsukada <tskd08@gmail.com>
7241 L:      linux-media@vger.kernel.org
7242 S:      Odd Fixes
7243 F:      drivers/media/pci/pt3/
7244
7245 EC100 MEDIA DRIVER
7246 M:      Antti Palosaari <crope@iki.fi>
7247 L:      linux-media@vger.kernel.org
7248 S:      Maintained
7249 W:      https://linuxtv.org
7250 W:      http://palosaari.fi/linux/
7251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7252 T:      git git://linuxtv.org/anttip/media_tree.git
7253 F:      drivers/media/dvb-frontends/ec100*
7254
7255 ECRYPT FILE SYSTEM
7256 M:      Tyler Hicks <code@tyhicks.com>
7257 L:      ecryptfs@vger.kernel.org
7258 S:      Odd Fixes
7259 W:      http://ecryptfs.org
7260 W:      https://launchpad.net/ecryptfs
7261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7262 F:      Documentation/filesystems/ecryptfs.rst
7263 F:      fs/ecryptfs/
7264
7265 EDAC-AMD64
7266 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7267 L:      linux-edac@vger.kernel.org
7268 S:      Supported
7269 F:      drivers/edac/amd64_edac*
7270 F:      drivers/edac/mce_amd*
7271
7272 EDAC-ARMADA
7273 M:      Jan Luebbe <jlu@pengutronix.de>
7274 L:      linux-edac@vger.kernel.org
7275 S:      Maintained
7276 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7277 F:      drivers/edac/armada_xp_*
7278
7279 EDAC-AST2500
7280 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7281 S:      Supported
7282 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7283 F:      drivers/edac/aspeed_edac.c
7284
7285 EDAC-BLUEFIELD
7286 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7287 S:      Supported
7288 F:      drivers/edac/bluefield_edac.c
7289
7290 EDAC-CALXEDA
7291 M:      Andre Przywara <andre.przywara@arm.com>
7292 L:      linux-edac@vger.kernel.org
7293 S:      Maintained
7294 F:      drivers/edac/highbank*
7295
7296 EDAC-CAVIUM OCTEON
7297 M:      Ralf Baechle <ralf@linux-mips.org>
7298 L:      linux-edac@vger.kernel.org
7299 L:      linux-mips@vger.kernel.org
7300 S:      Supported
7301 F:      drivers/edac/octeon_edac*
7302
7303 EDAC-CAVIUM THUNDERX
7304 M:      Robert Richter <rric@kernel.org>
7305 L:      linux-edac@vger.kernel.org
7306 S:      Odd Fixes
7307 F:      drivers/edac/thunderx_edac*
7308
7309 EDAC-CORE
7310 M:      Borislav Petkov <bp@alien8.de>
7311 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7312 M:      Tony Luck <tony.luck@intel.com>
7313 R:      James Morse <james.morse@arm.com>
7314 R:      Robert Richter <rric@kernel.org>
7315 L:      linux-edac@vger.kernel.org
7316 S:      Supported
7317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7318 F:      Documentation/admin-guide/ras.rst
7319 F:      Documentation/driver-api/edac.rst
7320 F:      drivers/edac/
7321 F:      include/linux/edac.h
7322
7323 EDAC-DMC520
7324 M:      Lei Wang <lewan@microsoft.com>
7325 L:      linux-edac@vger.kernel.org
7326 S:      Supported
7327 F:      drivers/edac/dmc520_edac.c
7328
7329 EDAC-E752X
7330 M:      Mark Gross <markgross@kernel.org>
7331 L:      linux-edac@vger.kernel.org
7332 S:      Maintained
7333 F:      drivers/edac/e752x_edac.c
7334
7335 EDAC-E7XXX
7336 L:      linux-edac@vger.kernel.org
7337 S:      Maintained
7338 F:      drivers/edac/e7xxx_edac.c
7339
7340 EDAC-FSL_DDR
7341 M:      York Sun <york.sun@nxp.com>
7342 L:      linux-edac@vger.kernel.org
7343 S:      Maintained
7344 F:      drivers/edac/fsl_ddr_edac.*
7345
7346 EDAC-GHES
7347 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7348 L:      linux-edac@vger.kernel.org
7349 S:      Maintained
7350 F:      drivers/edac/ghes_edac.c
7351
7352 EDAC-I10NM
7353 M:      Tony Luck <tony.luck@intel.com>
7354 L:      linux-edac@vger.kernel.org
7355 S:      Maintained
7356 F:      drivers/edac/i10nm_base.c
7357
7358 EDAC-I3000
7359 L:      linux-edac@vger.kernel.org
7360 S:      Orphan
7361 F:      drivers/edac/i3000_edac.c
7362
7363 EDAC-I5000
7364 L:      linux-edac@vger.kernel.org
7365 S:      Maintained
7366 F:      drivers/edac/i5000_edac.c
7367
7368 EDAC-I5400
7369 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7370 L:      linux-edac@vger.kernel.org
7371 S:      Maintained
7372 F:      drivers/edac/i5400_edac.c
7373
7374 EDAC-I7300
7375 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7376 L:      linux-edac@vger.kernel.org
7377 S:      Maintained
7378 F:      drivers/edac/i7300_edac.c
7379
7380 EDAC-I7CORE
7381 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7382 L:      linux-edac@vger.kernel.org
7383 S:      Maintained
7384 F:      drivers/edac/i7core_edac.c
7385
7386 EDAC-I82443BXGX
7387 M:      Tim Small <tim@buttersideup.com>
7388 L:      linux-edac@vger.kernel.org
7389 S:      Maintained
7390 F:      drivers/edac/i82443bxgx_edac.c
7391
7392 EDAC-I82975X
7393 M:      "Arvind R." <arvino55@gmail.com>
7394 L:      linux-edac@vger.kernel.org
7395 S:      Maintained
7396 F:      drivers/edac/i82975x_edac.c
7397
7398 EDAC-IE31200
7399 M:      Jason Baron <jbaron@akamai.com>
7400 L:      linux-edac@vger.kernel.org
7401 S:      Maintained
7402 F:      drivers/edac/ie31200_edac.c
7403
7404 EDAC-IGEN6
7405 M:      Tony Luck <tony.luck@intel.com>
7406 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7407 L:      linux-edac@vger.kernel.org
7408 S:      Maintained
7409 F:      drivers/edac/igen6_edac.c
7410
7411 EDAC-MPC85XX
7412 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7413 L:      linux-edac@vger.kernel.org
7414 S:      Maintained
7415 F:      drivers/edac/mpc85xx_edac.[ch]
7416
7417 EDAC-PASEMI
7418 M:      Egor Martovetsky <egor@pasemi.com>
7419 L:      linux-edac@vger.kernel.org
7420 S:      Maintained
7421 F:      drivers/edac/pasemi_edac.c
7422
7423 EDAC-PND2
7424 M:      Tony Luck <tony.luck@intel.com>
7425 L:      linux-edac@vger.kernel.org
7426 S:      Maintained
7427 F:      drivers/edac/pnd2_edac.[ch]
7428
7429 EDAC-QCOM
7430 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7431 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7432 L:      linux-arm-msm@vger.kernel.org
7433 L:      linux-edac@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/edac/qcom_edac.c
7436
7437 EDAC-R82600
7438 M:      Tim Small <tim@buttersideup.com>
7439 L:      linux-edac@vger.kernel.org
7440 S:      Maintained
7441 F:      drivers/edac/r82600_edac.c
7442
7443 EDAC-SBRIDGE
7444 M:      Tony Luck <tony.luck@intel.com>
7445 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7446 L:      linux-edac@vger.kernel.org
7447 S:      Maintained
7448 F:      drivers/edac/sb_edac.c
7449
7450 EDAC-SKYLAKE
7451 M:      Tony Luck <tony.luck@intel.com>
7452 L:      linux-edac@vger.kernel.org
7453 S:      Maintained
7454 F:      drivers/edac/skx_*.[ch]
7455
7456 EDAC-TI
7457 M:      Tero Kristo <kristo@kernel.org>
7458 L:      linux-edac@vger.kernel.org
7459 S:      Odd Fixes
7460 F:      drivers/edac/ti_edac.c
7461
7462 EDIROL UA-101/UA-1000 DRIVER
7463 M:      Clemens Ladisch <clemens@ladisch.de>
7464 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7465 S:      Maintained
7466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7467 F:      sound/usb/misc/ua101.c
7468
7469 EFI TEST DRIVER
7470 M:      Ivan Hu <ivan.hu@canonical.com>
7471 M:      Ard Biesheuvel <ardb@kernel.org>
7472 L:      linux-efi@vger.kernel.org
7473 S:      Maintained
7474 F:      drivers/firmware/efi/test/
7475
7476 EFI VARIABLE FILESYSTEM
7477 M:      Matthew Garrett <matthew.garrett@nebula.com>
7478 M:      Jeremy Kerr <jk@ozlabs.org>
7479 M:      Ard Biesheuvel <ardb@kernel.org>
7480 L:      linux-efi@vger.kernel.org
7481 S:      Maintained
7482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7483 F:      fs/efivarfs/
7484
7485 EFIFB FRAMEBUFFER DRIVER
7486 M:      Peter Jones <pjones@redhat.com>
7487 L:      linux-fbdev@vger.kernel.org
7488 S:      Maintained
7489 F:      drivers/video/fbdev/efifb.c
7490
7491 EFS FILESYSTEM
7492 S:      Orphan
7493 W:      http://aeschi.ch.eu.org/efs/
7494 F:      fs/efs/
7495
7496 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7497 M:      Douglas Miller <dougmill@linux.ibm.com>
7498 L:      netdev@vger.kernel.org
7499 S:      Maintained
7500 F:      drivers/net/ethernet/ibm/ehea/
7501
7502 ELM327 CAN NETWORK DRIVER
7503 M:      Max Staudt <max@enpas.org>
7504 L:      linux-can@vger.kernel.org
7505 S:      Maintained
7506 F:      Documentation/networking/device_drivers/can/can327.rst
7507 F:      drivers/net/can/can327.c
7508
7509 EM28XX VIDEO4LINUX DRIVER
7510 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7511 L:      linux-media@vger.kernel.org
7512 S:      Maintained
7513 W:      https://linuxtv.org
7514 T:      git git://linuxtv.org/media_tree.git
7515 F:      Documentation/admin-guide/media/em28xx*
7516 F:      drivers/media/usb/em28xx/
7517
7518 EMBEDDED LINUX
7519 M:      Olivia Mackall <olivia@selenic.com>
7520 M:      David Woodhouse <dwmw2@infradead.org>
7521 L:      linux-embedded@vger.kernel.org
7522 S:      Maintained
7523
7524 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7525 M:      Adrian Hunter <adrian.hunter@intel.com>
7526 M:      Ritesh Harjani <riteshh@codeaurora.org>
7527 M:      Asutosh Das <asutoshd@codeaurora.org>
7528 L:      linux-mmc@vger.kernel.org
7529 S:      Maintained
7530 F:      drivers/mmc/host/cqhci*
7531
7532 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7533 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7534 L:      linux-scsi@vger.kernel.org
7535 S:      Supported
7536 W:      http://www.broadcom.com
7537 F:      drivers/scsi/be2iscsi/
7538
7539 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7540 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7541 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7542 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7543 L:      netdev@vger.kernel.org
7544 S:      Supported
7545 W:      http://www.emulex.com
7546 F:      drivers/net/ethernet/emulex/benet/
7547
7548 EMULEX ONECONNECT ROCE DRIVER
7549 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7550 L:      linux-rdma@vger.kernel.org
7551 S:      Odd Fixes
7552 W:      http://www.broadcom.com
7553 F:      drivers/infiniband/hw/ocrdma/
7554 F:      include/uapi/rdma/ocrdma-abi.h
7555
7556 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7557 M:      James Smart <james.smart@broadcom.com>
7558 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7559 L:      linux-scsi@vger.kernel.org
7560 S:      Supported
7561 W:      http://www.broadcom.com
7562 F:      drivers/scsi/lpfc/
7563
7564 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7565 M:      James Smart <james.smart@broadcom.com>
7566 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7567 L:      linux-scsi@vger.kernel.org
7568 L:      target-devel@vger.kernel.org
7569 S:      Supported
7570 W:      http://www.broadcom.com
7571 F:      drivers/scsi/elx/
7572
7573 ENE CB710 FLASH CARD READER DRIVER
7574 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7575 S:      Maintained
7576 F:      drivers/misc/cb710/
7577 F:      drivers/mmc/host/cb710-mmc.*
7578 F:      include/linux/cb710.h
7579
7580 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7581 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7582 S:      Maintained
7583 F:      drivers/media/rc/ene_ir.*
7584
7585 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7586 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7587 L:      linuxppc-dev@lists.ozlabs.org
7588 S:      Maintained
7589 F:      drivers/tty/ehv_bytechan.c
7590
7591 EPSON S1D13XXX FRAMEBUFFER DRIVER
7592 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7593 S:      Maintained
7594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7595 F:      drivers/video/fbdev/s1d13xxxfb.c
7596 F:      include/video/s1d13xxxfb.h
7597
7598 EROFS FILE SYSTEM
7599 M:      Gao Xiang <xiang@kernel.org>
7600 M:      Chao Yu <chao@kernel.org>
7601 R:      Yue Hu <huyue2@coolpad.com>
7602 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7603 L:      linux-erofs@lists.ozlabs.org
7604 S:      Maintained
7605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7606 F:      Documentation/filesystems/erofs.rst
7607 F:      fs/erofs/
7608 F:      include/trace/events/erofs.h
7609
7610 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7611 M:      Jeff Layton <jlayton@kernel.org>
7612 S:      Maintained
7613 F:      include/linux/errseq.h
7614 F:      lib/errseq.c
7615
7616 ESD CAN/USB DRIVERS
7617 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7618 R:      socketcan@esd.eu
7619 L:      linux-can@vger.kernel.org
7620 S:      Maintained
7621 F:      drivers/net/can/usb/esd_usb.c
7622
7623 ET131X NETWORK DRIVER
7624 M:      Mark Einon <mark.einon@gmail.com>
7625 S:      Odd Fixes
7626 F:      drivers/net/ethernet/agere/
7627
7628 ETAS ES58X CAN/USB DRIVER
7629 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7630 L:      linux-can@vger.kernel.org
7631 S:      Maintained
7632 F:      drivers/net/can/usb/etas_es58x/
7633
7634 ETHERNET BRIDGE
7635 M:      Roopa Prabhu <roopa@nvidia.com>
7636 M:      Nikolay Aleksandrov <razor@blackwall.org>
7637 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7638 L:      netdev@vger.kernel.org
7639 S:      Maintained
7640 W:      http://www.linuxfoundation.org/en/Net:Bridge
7641 F:      include/linux/netfilter_bridge/
7642 F:      net/bridge/
7643
7644 ETHERNET PHY LIBRARY
7645 M:      Andrew Lunn <andrew@lunn.ch>
7646 M:      Heiner Kallweit <hkallweit1@gmail.com>
7647 R:      Russell King <linux@armlinux.org.uk>
7648 L:      netdev@vger.kernel.org
7649 S:      Maintained
7650 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7651 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7652 F:      Documentation/devicetree/bindings/net/mdio*
7653 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7654 F:      Documentation/networking/phy.rst
7655 F:      drivers/net/mdio/
7656 F:      drivers/net/mdio/acpi_mdio.c
7657 F:      drivers/net/mdio/fwnode_mdio.c
7658 F:      drivers/net/mdio/of_mdio.c
7659 F:      drivers/net/pcs/
7660 F:      drivers/net/phy/
7661 F:      include/dt-bindings/net/qca-ar803x.h
7662 F:      include/linux/linkmode.h
7663 F:      include/linux/*mdio*.h
7664 F:      include/linux/mdio/*.h
7665 F:      include/linux/mii.h
7666 F:      include/linux/of_net.h
7667 F:      include/linux/phy.h
7668 F:      include/linux/phy_fixed.h
7669 F:      include/linux/platform_data/mdio-bcm-unimac.h
7670 F:      include/linux/platform_data/mdio-gpio.h
7671 F:      include/trace/events/mdio.h
7672 F:      include/uapi/linux/mdio.h
7673 F:      include/uapi/linux/mii.h
7674 F:      net/core/of_net.c
7675
7676 EXEC & BINFMT API
7677 R:      Eric Biederman <ebiederm@xmission.com>
7678 R:      Kees Cook <keescook@chromium.org>
7679 L:      linux-mm@kvack.org
7680 S:      Supported
7681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7682 F:      arch/alpha/kernel/binfmt_loader.c
7683 F:      fs/*binfmt_*.c
7684 F:      fs/exec.c
7685 F:      include/linux/binfmts.h
7686 F:      include/linux/elf.h
7687 F:      include/uapi/linux/binfmts.h
7688 F:      include/uapi/linux/elf.h
7689 F:      tools/testing/selftests/exec/
7690 N:      asm/elf.h
7691 N:      binfmt
7692
7693 EXFAT FILE SYSTEM
7694 M:      Namjae Jeon <linkinjeon@kernel.org>
7695 M:      Sungjong Seo <sj1557.seo@samsung.com>
7696 L:      linux-fsdevel@vger.kernel.org
7697 S:      Maintained
7698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7699 F:      fs/exfat/
7700
7701 EXT2 FILE SYSTEM
7702 M:      Jan Kara <jack@suse.com>
7703 L:      linux-ext4@vger.kernel.org
7704 S:      Maintained
7705 F:      Documentation/filesystems/ext2.rst
7706 F:      fs/ext2/
7707 F:      include/linux/ext2*
7708
7709 EXT4 FILE SYSTEM
7710 M:      "Theodore Ts'o" <tytso@mit.edu>
7711 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7712 L:      linux-ext4@vger.kernel.org
7713 S:      Maintained
7714 W:      http://ext4.wiki.kernel.org
7715 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7717 F:      Documentation/filesystems/ext4/
7718 F:      fs/ext4/
7719 F:      include/trace/events/ext4.h
7720
7721 Extended Verification Module (EVM)
7722 M:      Mimi Zohar <zohar@linux.ibm.com>
7723 L:      linux-integrity@vger.kernel.org
7724 S:      Supported
7725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7726 F:      security/integrity/evm/
7727 F:      security/integrity/
7728
7729 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7730 M:      Ard Biesheuvel <ardb@kernel.org>
7731 L:      linux-efi@vger.kernel.org
7732 S:      Maintained
7733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7734 F:      Documentation/admin-guide/efi-stub.rst
7735 F:      arch/*/include/asm/efi.h
7736 F:      arch/*/kernel/efi.c
7737 F:      arch/arm/boot/compressed/efi-header.S
7738 F:      arch/arm64/kernel/efi-entry.S
7739 F:      arch/x86/platform/efi/
7740 F:      drivers/firmware/efi/
7741 F:      include/linux/efi*.h
7742
7743 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7744 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7745 M:      Chanwoo Choi <cw00.choi@samsung.com>
7746 L:      linux-kernel@vger.kernel.org
7747 S:      Maintained
7748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7749 F:      Documentation/devicetree/bindings/extcon/
7750 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7751 F:      drivers/extcon/
7752 F:      include/linux/extcon.h
7753 F:      include/linux/extcon/
7754
7755 EXTRA BOOT CONFIG
7756 M:      Masami Hiramatsu <mhiramat@kernel.org>
7757 S:      Maintained
7758 F:      Documentation/admin-guide/bootconfig.rst
7759 F:      fs/proc/bootconfig.c
7760 F:      include/linux/bootconfig.h
7761 F:      lib/bootconfig-data.S
7762 F:      lib/bootconfig.c
7763 F:      tools/bootconfig/*
7764 F:      tools/bootconfig/scripts/*
7765
7766 EXYNOS DP DRIVER
7767 M:      Jingoo Han <jingoohan1@gmail.com>
7768 L:      dri-devel@lists.freedesktop.org
7769 S:      Maintained
7770 F:      drivers/gpu/drm/exynos/exynos_dp*
7771
7772 EXYNOS SYSMMU (IOMMU) driver
7773 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7774 L:      iommu@lists.linux.dev
7775 S:      Maintained
7776 F:      drivers/iommu/exynos-iommu.c
7777
7778 F2FS FILE SYSTEM
7779 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7780 M:      Chao Yu <chao@kernel.org>
7781 L:      linux-f2fs-devel@lists.sourceforge.net
7782 S:      Maintained
7783 W:      https://f2fs.wiki.kernel.org/
7784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7785 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7786 F:      Documentation/filesystems/f2fs.rst
7787 F:      fs/f2fs/
7788 F:      include/linux/f2fs_fs.h
7789 F:      include/trace/events/f2fs.h
7790 F:      include/uapi/linux/f2fs.h
7791
7792 F71805F HARDWARE MONITORING DRIVER
7793 M:      Jean Delvare <jdelvare@suse.com>
7794 L:      linux-hwmon@vger.kernel.org
7795 S:      Maintained
7796 F:      Documentation/hwmon/f71805f.rst
7797 F:      drivers/hwmon/f71805f.c
7798
7799 FADDR2LINE
7800 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7801 S:      Maintained
7802 F:      scripts/faddr2line
7803
7804 FAILOVER MODULE
7805 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7806 L:      netdev@vger.kernel.org
7807 S:      Supported
7808 F:      Documentation/networking/failover.rst
7809 F:      include/net/failover.h
7810 F:      net/core/failover.c
7811
7812 FANOTIFY
7813 M:      Jan Kara <jack@suse.cz>
7814 R:      Amir Goldstein <amir73il@gmail.com>
7815 R:      Matthew Bobrowski <repnop@google.com>
7816 L:      linux-fsdevel@vger.kernel.org
7817 S:      Maintained
7818 F:      fs/notify/fanotify/
7819 F:      include/linux/fanotify.h
7820 F:      include/uapi/linux/fanotify.h
7821
7822 FARSYNC SYNCHRONOUS DRIVER
7823 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7824 S:      Supported
7825 W:      http://www.farsite.co.uk/
7826 F:      drivers/net/wan/farsync.*
7827
7828 FAULT INJECTION SUPPORT
7829 M:      Akinobu Mita <akinobu.mita@gmail.com>
7830 S:      Supported
7831 F:      Documentation/fault-injection/
7832 F:      lib/fault-inject.c
7833
7834 FBTFT Framebuffer drivers
7835 L:      dri-devel@lists.freedesktop.org
7836 L:      linux-fbdev@vger.kernel.org
7837 S:      Orphan
7838 F:      drivers/staging/fbtft/
7839
7840 FC0011 TUNER DRIVER
7841 M:      Michael Buesch <m@bues.ch>
7842 L:      linux-media@vger.kernel.org
7843 S:      Maintained
7844 F:      drivers/media/tuners/fc0011.c
7845 F:      drivers/media/tuners/fc0011.h
7846
7847 FC2580 MEDIA DRIVER
7848 M:      Antti Palosaari <crope@iki.fi>
7849 L:      linux-media@vger.kernel.org
7850 S:      Maintained
7851 W:      https://linuxtv.org
7852 W:      http://palosaari.fi/linux/
7853 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7854 T:      git git://linuxtv.org/anttip/media_tree.git
7855 F:      drivers/media/tuners/fc2580*
7856
7857 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7858 M:      Hannes Reinecke <hare@suse.de>
7859 L:      linux-scsi@vger.kernel.org
7860 S:      Supported
7861 W:      www.Open-FCoE.org
7862 F:      drivers/scsi/fcoe/
7863 F:      drivers/scsi/libfc/
7864 F:      include/scsi/fc/
7865 F:      include/scsi/libfc.h
7866 F:      include/scsi/libfcoe.h
7867 F:      include/uapi/scsi/fc/
7868
7869 FILE LOCKING (flock() and fcntl()/lockf())
7870 M:      Jeff Layton <jlayton@kernel.org>
7871 M:      Chuck Lever <chuck.lever@oracle.com>
7872 L:      linux-fsdevel@vger.kernel.org
7873 S:      Maintained
7874 F:      fs/fcntl.c
7875 F:      fs/locks.c
7876 F:      include/linux/fcntl.h
7877 F:      include/uapi/linux/fcntl.h
7878
7879 FILESYSTEM DIRECT ACCESS (DAX)
7880 M:      Dan Williams <dan.j.williams@intel.com>
7881 R:      Matthew Wilcox <willy@infradead.org>
7882 R:      Jan Kara <jack@suse.cz>
7883 L:      linux-fsdevel@vger.kernel.org
7884 L:      nvdimm@lists.linux.dev
7885 S:      Supported
7886 F:      fs/dax.c
7887 F:      include/linux/dax.h
7888 F:      include/trace/events/fs_dax.h
7889
7890 FILESYSTEMS (VFS and infrastructure)
7891 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7892 L:      linux-fsdevel@vger.kernel.org
7893 S:      Maintained
7894 F:      fs/*
7895 F:      include/linux/fs.h
7896 F:      include/linux/fs_types.h
7897 F:      include/uapi/linux/fs.h
7898 F:      include/uapi/linux/openat2.h
7899
7900 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7901 M:      Riku Voipio <riku.voipio@iki.fi>
7902 L:      linux-hwmon@vger.kernel.org
7903 S:      Maintained
7904 F:      drivers/hwmon/f75375s.c
7905 F:      include/linux/f75375s.h
7906
7907 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7908 M:      Clemens Ladisch <clemens@ladisch.de>
7909 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7910 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7911 S:      Maintained
7912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7913 F:      include/uapi/sound/firewire.h
7914 F:      sound/firewire/
7915
7916 FIREWIRE MEDIA DRIVERS (firedtv)
7917 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7918 L:      linux-media@vger.kernel.org
7919 L:      linux1394-devel@lists.sourceforge.net
7920 S:      Maintained
7921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7922 F:      drivers/media/firewire/
7923
7924 FIREWIRE SBP-2 TARGET
7925 M:      Chris Boot <bootc@bootc.net>
7926 L:      linux-scsi@vger.kernel.org
7927 L:      target-devel@vger.kernel.org
7928 L:      linux1394-devel@lists.sourceforge.net
7929 S:      Maintained
7930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7931 F:      drivers/target/sbp/
7932
7933 FIREWIRE SUBSYSTEM
7934 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7935 L:      linux1394-devel@lists.sourceforge.net
7936 S:      Maintained
7937 W:      http://ieee1394.wiki.kernel.org/
7938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7939 F:      drivers/firewire/
7940 F:      include/linux/firewire.h
7941 F:      include/uapi/linux/firewire*.h
7942 F:      tools/firewire/
7943
7944 FIRMWARE FRAMEWORK FOR ARMV8-A
7945 M:      Sudeep Holla <sudeep.holla@arm.com>
7946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7947 S:      Maintained
7948 F:      drivers/firmware/arm_ffa/
7949 F:      include/linux/arm_ffa.h
7950
7951 FIRMWARE LOADER (request_firmware)
7952 M:      Luis Chamberlain <mcgrof@kernel.org>
7953 M:      Russ Weight <russell.h.weight@intel.com>
7954 L:      linux-kernel@vger.kernel.org
7955 S:      Maintained
7956 F:      Documentation/firmware_class/
7957 F:      drivers/base/firmware_loader/
7958 F:      include/linux/firmware.h
7959
7960 FLEXTIMER FTM-QUADDEC DRIVER
7961 M:      Patrick Havelange <patrick.havelange@essensium.com>
7962 L:      linux-iio@vger.kernel.org
7963 S:      Maintained
7964 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7965 F:      drivers/counter/ftm-quaddec.c
7966
7967 FLOPPY DRIVER
7968 M:      Denis Efremov <efremov@linux.com>
7969 L:      linux-block@vger.kernel.org
7970 S:      Odd Fixes
7971 F:      drivers/block/floppy.c
7972
7973 FLYSKY FSIA6B RC RECEIVER
7974 M:      Markus Koch <markus@notsyncing.net>
7975 L:      linux-input@vger.kernel.org
7976 S:      Maintained
7977 F:      drivers/input/joystick/fsia6b.c
7978
7979 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7980 M:      Geoffrey D. Bennett <g@b4.vu>
7981 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7982 S:      Maintained
7983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7984 F:      sound/usb/mixer_scarlett_gen2.c
7985
7986 FORCEDETH GIGABIT ETHERNET DRIVER
7987 M:      Rain River <rain.1986.08.12@gmail.com>
7988 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7989 L:      netdev@vger.kernel.org
7990 S:      Maintained
7991 F:      drivers/net/ethernet/nvidia/*
7992
7993 FORTIFY_SOURCE
7994 M:      Kees Cook <keescook@chromium.org>
7995 L:      linux-hardening@vger.kernel.org
7996 S:      Supported
7997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
7998 F:      include/linux/fortify-string.h
7999 F:      lib/test_fortify/*
8000 F:      scripts/test_fortify.sh
8001 K:      \b__NO_FORTIFY\b
8002
8003 FPGA DFL DRIVERS
8004 M:      Wu Hao <hao.wu@intel.com>
8005 R:      Tom Rix <trix@redhat.com>
8006 L:      linux-fpga@vger.kernel.org
8007 S:      Maintained
8008 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8009 F:      Documentation/fpga/dfl.rst
8010 F:      drivers/fpga/dfl*
8011 F:      drivers/uio/uio_dfl.c
8012 F:      include/linux/dfl.h
8013 F:      include/uapi/linux/fpga-dfl.h
8014
8015 FPGA MANAGER FRAMEWORK
8016 M:      Moritz Fischer <mdf@kernel.org>
8017 M:      Wu Hao <hao.wu@intel.com>
8018 M:      Xu Yilun <yilun.xu@intel.com>
8019 R:      Tom Rix <trix@redhat.com>
8020 L:      linux-fpga@vger.kernel.org
8021 S:      Maintained
8022 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8024 F:      Documentation/devicetree/bindings/fpga/
8025 F:      Documentation/driver-api/fpga/
8026 F:      Documentation/fpga/
8027 F:      drivers/fpga/
8028 F:      include/linux/fpga/
8029
8030 INTEL MAX10 BMC SECURE UPDATES
8031 M:      Russ Weight <russell.h.weight@intel.com>
8032 L:      linux-fpga@vger.kernel.org
8033 S:      Maintained
8034 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8035 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8036
8037 MICROCHIP POLARFIRE FPGA DRIVERS
8038 M:      Conor Dooley <conor.dooley@microchip.com>
8039 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8040 L:      linux-fpga@vger.kernel.org
8041 S:      Supported
8042 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8043 F:      drivers/fpga/microchip-spi.c
8044
8045 FPU EMULATOR
8046 M:      Bill Metzenthen <billm@melbpc.org.au>
8047 S:      Maintained
8048 W:      http://floatingpoint.sourceforge.net/emulator/index.html
8049 F:      arch/x86/math-emu/
8050
8051 FRAMEBUFFER CORE
8052 M:      Daniel Vetter <daniel@ffwll.ch>
8053 F:      drivers/video/fbdev/core/
8054 S:      Odd Fixes
8055 T:      git git://anongit.freedesktop.org/drm/drm-misc
8056
8057 FRAMEBUFFER LAYER
8058 M:      Helge Deller <deller@gmx.de>
8059 L:      linux-fbdev@vger.kernel.org
8060 L:      dri-devel@lists.freedesktop.org
8061 S:      Maintained
8062 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8064 F:      Documentation/fb/
8065 F:      drivers/video/
8066 F:      include/linux/fb.h
8067 F:      include/uapi/linux/fb.h
8068 F:      include/uapi/video/
8069 F:      include/video/
8070
8071 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8072 M:      Horia Geantă <horia.geanta@nxp.com>
8073 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8074 M:      Gaurav Jain <gaurav.jain@nxp.com>
8075 L:      linux-crypto@vger.kernel.org
8076 S:      Maintained
8077 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8078 F:      drivers/crypto/caam/
8079
8080 FREESCALE COLDFIRE M5441X MMC DRIVER
8081 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8082 L:      linux-mmc@vger.kernel.org
8083 S:      Maintained
8084 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8085 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8086
8087 FREESCALE DIU FRAMEBUFFER DRIVER
8088 M:      Timur Tabi <timur@kernel.org>
8089 L:      linux-fbdev@vger.kernel.org
8090 S:      Maintained
8091 F:      drivers/video/fbdev/fsl-diu-fb.*
8092
8093 FREESCALE DMA DRIVER
8094 M:      Li Yang <leoyang.li@nxp.com>
8095 M:      Zhang Wei <zw@zh-kernel.org>
8096 L:      linuxppc-dev@lists.ozlabs.org
8097 S:      Maintained
8098 F:      drivers/dma/fsldma.*
8099
8100 FREESCALE DSPI DRIVER
8101 M:      Vladimir Oltean <olteanv@gmail.com>
8102 L:      linux-spi@vger.kernel.org
8103 S:      Maintained
8104 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8105 F:      drivers/spi/spi-fsl-dspi.c
8106 F:      include/linux/spi/spi-fsl-dspi.h
8107
8108 FREESCALE ENETC ETHERNET DRIVERS
8109 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8110 L:      netdev@vger.kernel.org
8111 S:      Maintained
8112 F:      drivers/net/ethernet/freescale/enetc/
8113
8114 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8115 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8116 L:      netdev@vger.kernel.org
8117 S:      Maintained
8118 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8119 F:      drivers/net/ethernet/freescale/gianfar*
8120
8121 FREESCALE GPMI NAND DRIVER
8122 M:      Han Xu <han.xu@nxp.com>
8123 L:      linux-mtd@lists.infradead.org
8124 S:      Maintained
8125 F:      drivers/mtd/nand/raw/gpmi-nand/*
8126
8127 FREESCALE I2C CPM DRIVER
8128 M:      Jochen Friedrich <jochen@scram.de>
8129 L:      linuxppc-dev@lists.ozlabs.org
8130 L:      linux-i2c@vger.kernel.org
8131 S:      Maintained
8132 F:      drivers/i2c/busses/i2c-cpm.c
8133
8134 FREESCALE IMX / MXC FEC DRIVER
8135 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
8136 L:      netdev@vger.kernel.org
8137 S:      Maintained
8138 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8139 F:      drivers/net/ethernet/freescale/fec.h
8140 F:      drivers/net/ethernet/freescale/fec_main.c
8141 F:      drivers/net/ethernet/freescale/fec_ptp.c
8142
8143 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8144 M:      Sascha Hauer <s.hauer@pengutronix.de>
8145 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8146 L:      linux-fbdev@vger.kernel.org
8147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8148 S:      Maintained
8149 F:      drivers/video/fbdev/imxfb.c
8150
8151 FREESCALE IMX DDR PMU DRIVER
8152 M:      Frank Li <Frank.li@nxp.com>
8153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8154 S:      Maintained
8155 F:      Documentation/admin-guide/perf/imx-ddr.rst
8156 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8157 F:      drivers/perf/fsl_imx8_ddr_perf.c
8158
8159 FREESCALE IMX I2C DRIVER
8160 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8161 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8162 L:      linux-i2c@vger.kernel.org
8163 S:      Maintained
8164 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8165 F:      drivers/i2c/busses/i2c-imx.c
8166
8167 FREESCALE IMX LPI2C DRIVER
8168 M:      Dong Aisheng <aisheng.dong@nxp.com>
8169 L:      linux-i2c@vger.kernel.org
8170 L:      linux-imx@nxp.com
8171 S:      Maintained
8172 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8173 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8174
8175 FREESCALE MPC I2C DRIVER
8176 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8177 L:      linux-i2c@vger.kernel.org
8178 S:      Maintained
8179 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8180 F:      drivers/i2c/busses/i2c-mpc.c
8181
8182 FREESCALE QORIQ DPAA ETHERNET DRIVER
8183 M:      Madalin Bucur <madalin.bucur@nxp.com>
8184 L:      netdev@vger.kernel.org
8185 S:      Maintained
8186 F:      drivers/net/ethernet/freescale/dpaa
8187
8188 FREESCALE QORIQ DPAA FMAN DRIVER
8189 M:      Madalin Bucur <madalin.bucur@nxp.com>
8190 L:      netdev@vger.kernel.org
8191 S:      Maintained
8192 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8193 F:      drivers/net/ethernet/freescale/fman
8194
8195 FREESCALE QORIQ PTP CLOCK DRIVER
8196 M:      Yangbo Lu <yangbo.lu@nxp.com>
8197 L:      netdev@vger.kernel.org
8198 S:      Maintained
8199 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8200 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8201 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8202 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8203 F:      drivers/ptp/ptp_qoriq.c
8204 F:      drivers/ptp/ptp_qoriq_debugfs.c
8205 F:      include/linux/fsl/ptp_qoriq.h
8206
8207 FREESCALE QUAD SPI DRIVER
8208 M:      Han Xu <han.xu@nxp.com>
8209 L:      linux-spi@vger.kernel.org
8210 S:      Maintained
8211 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8212 F:      drivers/spi/spi-fsl-qspi.c
8213
8214 FREESCALE QUICC ENGINE LIBRARY
8215 M:      Qiang Zhao <qiang.zhao@nxp.com>
8216 L:      linuxppc-dev@lists.ozlabs.org
8217 S:      Maintained
8218 F:      drivers/soc/fsl/qe/
8219 F:      include/soc/fsl/qe/
8220
8221 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8222 M:      Li Yang <leoyang.li@nxp.com>
8223 L:      netdev@vger.kernel.org
8224 L:      linuxppc-dev@lists.ozlabs.org
8225 S:      Maintained
8226 F:      drivers/net/ethernet/freescale/ucc_geth*
8227
8228 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8229 M:      Zhao Qiang <qiang.zhao@nxp.com>
8230 L:      netdev@vger.kernel.org
8231 L:      linuxppc-dev@lists.ozlabs.org
8232 S:      Maintained
8233 F:      drivers/net/wan/fsl_ucc_hdlc*
8234
8235 FREESCALE QUICC ENGINE UCC UART DRIVER
8236 M:      Timur Tabi <timur@kernel.org>
8237 L:      linuxppc-dev@lists.ozlabs.org
8238 S:      Maintained
8239 F:      drivers/tty/serial/ucc_uart.c
8240
8241 FREESCALE SOC DRIVERS
8242 M:      Li Yang <leoyang.li@nxp.com>
8243 L:      linuxppc-dev@lists.ozlabs.org
8244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8245 S:      Maintained
8246 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8247 F:      Documentation/devicetree/bindings/soc/fsl/
8248 F:      drivers/soc/fsl/
8249 F:      include/linux/fsl/
8250 F:      include/soc/fsl/
8251
8252 FREESCALE SOC FS_ENET DRIVER
8253 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8254 L:      linuxppc-dev@lists.ozlabs.org
8255 L:      netdev@vger.kernel.org
8256 S:      Maintained
8257 F:      drivers/net/ethernet/freescale/fs_enet/
8258 F:      include/linux/fs_enet_pd.h
8259
8260 FREESCALE SOC SOUND DRIVERS
8261 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8262 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8263 R:      Fabio Estevam <festevam@gmail.com>
8264 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8265 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8266 L:      linuxppc-dev@lists.ozlabs.org
8267 S:      Maintained
8268 F:      sound/soc/fsl/fsl*
8269 F:      sound/soc/fsl/imx*
8270 F:      sound/soc/fsl/mpc8610_hpcd.c
8271
8272 FREESCALE USB PERIPHERAL DRIVERS
8273 M:      Li Yang <leoyang.li@nxp.com>
8274 L:      linux-usb@vger.kernel.org
8275 L:      linuxppc-dev@lists.ozlabs.org
8276 S:      Maintained
8277 F:      drivers/usb/gadget/udc/fsl*
8278
8279 FREESCALE USB PHY DRIVER
8280 M:      Ran Wang <ran.wang_1@nxp.com>
8281 L:      linux-usb@vger.kernel.org
8282 L:      linuxppc-dev@lists.ozlabs.org
8283 S:      Maintained
8284 F:      drivers/usb/phy/phy-fsl-usb*
8285
8286 FREEVXFS FILESYSTEM
8287 M:      Christoph Hellwig <hch@infradead.org>
8288 S:      Maintained
8289 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8290 F:      fs/freevxfs/
8291
8292 FREEZER
8293 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8294 M:      Pavel Machek <pavel@ucw.cz>
8295 L:      linux-pm@vger.kernel.org
8296 S:      Supported
8297 F:      Documentation/power/freezing-of-tasks.rst
8298 F:      include/linux/freezer.h
8299 F:      kernel/freezer.c
8300
8301 FRONTSWAP API
8302 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8303 L:      linux-kernel@vger.kernel.org
8304 S:      Maintained
8305 F:      include/linux/frontswap.h
8306 F:      mm/frontswap.c
8307
8308 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8309 M:      David Howells <dhowells@redhat.com>
8310 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8311 S:      Supported
8312 F:      Documentation/filesystems/caching/
8313 F:      fs/fscache/
8314 F:      include/linux/fscache*.h
8315
8316 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8317 M:      Theodore Y. Ts'o <tytso@mit.edu>
8318 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8319 M:      Eric Biggers <ebiggers@kernel.org>
8320 L:      linux-fscrypt@vger.kernel.org
8321 S:      Supported
8322 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8323 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8324 F:      Documentation/filesystems/fscrypt.rst
8325 F:      fs/crypto/
8326 F:      include/linux/fscrypt*.h
8327 F:      include/uapi/linux/fscrypt.h
8328
8329 FSI SUBSYSTEM
8330 M:      Jeremy Kerr <jk@ozlabs.org>
8331 M:      Joel Stanley <joel@jms.id.au>
8332 R:      Alistar Popple <alistair@popple.id.au>
8333 R:      Eddie James <eajames@linux.ibm.com>
8334 L:      linux-fsi@lists.ozlabs.org
8335 S:      Supported
8336 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8338 F:      drivers/fsi/
8339 F:      include/linux/fsi*.h
8340 F:      include/trace/events/fsi*.h
8341
8342 FSI-ATTACHED I2C DRIVER
8343 M:      Eddie James <eajames@linux.ibm.com>
8344 L:      linux-i2c@vger.kernel.org
8345 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8346 S:      Maintained
8347 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8348 F:      drivers/i2c/busses/i2c-fsi.c
8349
8350 FSI-ATTACHED SPI DRIVER
8351 M:      Eddie James <eajames@linux.ibm.com>
8352 L:      linux-spi@vger.kernel.org
8353 S:      Maintained
8354 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8355 F:      drivers/spi/spi-fsi.c
8356
8357 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8358 M:      Jan Kara <jack@suse.cz>
8359 R:      Amir Goldstein <amir73il@gmail.com>
8360 L:      linux-fsdevel@vger.kernel.org
8361 S:      Maintained
8362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8363 F:      fs/notify/
8364 F:      include/linux/fsnotify*.h
8365
8366 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8367 M:      Eric Biggers <ebiggers@kernel.org>
8368 M:      Theodore Y. Ts'o <tytso@mit.edu>
8369 L:      linux-fscrypt@vger.kernel.org
8370 S:      Supported
8371 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8372 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8373 F:      Documentation/filesystems/fsverity.rst
8374 F:      fs/verity/
8375 F:      include/linux/fsverity.h
8376 F:      include/uapi/linux/fsverity.h
8377
8378 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8379 M:      Michael Zaidman <michael.zaidman@gmail.com>
8380 L:      linux-i2c@vger.kernel.org
8381 L:      linux-input@vger.kernel.org
8382 S:      Maintained
8383 F:      drivers/hid/hid-ft260.c
8384
8385 FUJITSU LAPTOP EXTRAS
8386 M:      Jonathan Woithe <jwoithe@just42.net>
8387 L:      platform-driver-x86@vger.kernel.org
8388 S:      Maintained
8389 F:      drivers/platform/x86/fujitsu-laptop.c
8390
8391 FUJITSU M-5MO LS CAMERA ISP DRIVER
8392 M:      Kyungmin Park <kyungmin.park@samsung.com>
8393 M:      Heungjun Kim <riverful.kim@samsung.com>
8394 L:      linux-media@vger.kernel.org
8395 S:      Maintained
8396 F:      drivers/media/i2c/m5mols/
8397 F:      include/media/i2c/m5mols.h
8398
8399 FUJITSU TABLET EXTRAS
8400 M:      Robert Gerlach <khnz@gmx.de>
8401 L:      platform-driver-x86@vger.kernel.org
8402 S:      Maintained
8403 F:      drivers/platform/x86/fujitsu-tablet.c
8404
8405 FUNGIBLE ETHERNET DRIVERS
8406 M:      Dimitris Michailidis <dmichail@fungible.com>
8407 L:      netdev@vger.kernel.org
8408 S:      Supported
8409 F:      drivers/net/ethernet/fungible/
8410
8411 FUSE: FILESYSTEM IN USERSPACE
8412 M:      Miklos Szeredi <miklos@szeredi.hu>
8413 L:      linux-fsdevel@vger.kernel.org
8414 S:      Maintained
8415 W:      https://github.com/libfuse/
8416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8417 F:      Documentation/filesystems/fuse.rst
8418 F:      fs/fuse/
8419 F:      include/uapi/linux/fuse.h
8420
8421 FUTEX SUBSYSTEM
8422 M:      Thomas Gleixner <tglx@linutronix.de>
8423 M:      Ingo Molnar <mingo@redhat.com>
8424 R:      Peter Zijlstra <peterz@infradead.org>
8425 R:      Darren Hart <dvhart@infradead.org>
8426 R:      Davidlohr Bueso <dave@stgolabs.net>
8427 R:      André Almeida <andrealmeid@igalia.com>
8428 L:      linux-kernel@vger.kernel.org
8429 S:      Maintained
8430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8431 F:      Documentation/locking/*futex*
8432 F:      include/asm-generic/futex.h
8433 F:      include/linux/futex.h
8434 F:      include/uapi/linux/futex.h
8435 F:      kernel/futex/*
8436 F:      tools/perf/bench/futex*
8437 F:      tools/testing/selftests/futex/
8438
8439 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8440 M:      Tim Harvey <tharvey@gateworks.com>
8441 M:      Robert Jones <rjones@gateworks.com>
8442 S:      Maintained
8443 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8444 F:      drivers/mfd/gateworks-gsc.c
8445 F:      include/linux/mfd/gsc.h
8446 F:      Documentation/hwmon/gsc-hwmon.rst
8447 F:      drivers/hwmon/gsc-hwmon.c
8448 F:      include/linux/platform_data/gsc_hwmon.h
8449
8450 GCC PLUGINS
8451 M:      Kees Cook <keescook@chromium.org>
8452 L:      linux-hardening@vger.kernel.org
8453 S:      Maintained
8454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8455 F:      Documentation/kbuild/gcc-plugins.rst
8456 F:      scripts/Makefile.gcc-plugins
8457 F:      scripts/gcc-plugins/
8458
8459 GCOV BASED KERNEL PROFILING
8460 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8461 S:      Maintained
8462 F:      Documentation/dev-tools/gcov.rst
8463 F:      kernel/gcov/
8464
8465 GDB KERNEL DEBUGGING HELPER SCRIPTS
8466 M:      Jan Kiszka <jan.kiszka@siemens.com>
8467 M:      Kieran Bingham <kbingham@kernel.org>
8468 S:      Supported
8469 F:      scripts/gdb/
8470
8471 GEMINI CRYPTO DRIVER
8472 M:      Corentin Labbe <clabbe@baylibre.com>
8473 L:      linux-crypto@vger.kernel.org
8474 S:      Maintained
8475 F:      drivers/crypto/gemini/
8476
8477 GEMTEK FM RADIO RECEIVER DRIVER
8478 M:      Hans Verkuil <hverkuil@xs4all.nl>
8479 L:      linux-media@vger.kernel.org
8480 S:      Maintained
8481 W:      https://linuxtv.org
8482 T:      git git://linuxtv.org/media_tree.git
8483 F:      drivers/media/radio/radio-gemtek*
8484
8485 GENERIC ARCHITECTURE TOPOLOGY
8486 M:      Sudeep Holla <sudeep.holla@arm.com>
8487 L:      linux-kernel@vger.kernel.org
8488 S:      Maintained
8489 F:      drivers/base/arch_topology.c
8490 F:      include/linux/arch_topology.h
8491
8492 GENERIC ENTRY CODE
8493 M:      Thomas Gleixner <tglx@linutronix.de>
8494 M:      Peter Zijlstra <peterz@infradead.org>
8495 M:      Andy Lutomirski <luto@kernel.org>
8496 L:      linux-kernel@vger.kernel.org
8497 S:      Maintained
8498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8499 F:      include/linux/entry-common.h
8500 F:      include/linux/entry-kvm.h
8501 F:      kernel/entry/
8502
8503 GENERIC GPIO I2C DRIVER
8504 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8505 S:      Supported
8506 F:      drivers/i2c/busses/i2c-gpio.c
8507 F:      include/linux/platform_data/i2c-gpio.h
8508
8509 GENERIC GPIO I2C MULTIPLEXER DRIVER
8510 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8511 L:      linux-i2c@vger.kernel.org
8512 S:      Supported
8513 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8514 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8515 F:      include/linux/platform_data/i2c-mux-gpio.h
8516
8517 GENERIC HDLC (WAN) DRIVERS
8518 M:      Krzysztof Halasa <khc@pm.waw.pl>
8519 S:      Maintained
8520 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8521 F:      drivers/net/wan/c101.c
8522 F:      drivers/net/wan/hd6457*
8523 F:      drivers/net/wan/hdlc*
8524 F:      drivers/net/wan/n2.c
8525 F:      drivers/net/wan/pc300too.c
8526 F:      drivers/net/wan/pci200syn.c
8527 F:      drivers/net/wan/wanxl*
8528
8529 GENERIC INCLUDE/ASM HEADER FILES
8530 M:      Arnd Bergmann <arnd@arndb.de>
8531 L:      linux-arch@vger.kernel.org
8532 S:      Maintained
8533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8534 F:      include/asm-generic/
8535 F:      include/uapi/asm-generic/
8536
8537 GENERIC PHY FRAMEWORK
8538 M:      Kishon Vijay Abraham I <kishon@ti.com>
8539 M:      Vinod Koul <vkoul@kernel.org>
8540 L:      linux-phy@lists.infradead.org
8541 S:      Supported
8542 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8544 F:      Documentation/devicetree/bindings/phy/
8545 F:      drivers/phy/
8546 F:      include/dt-bindings/phy/
8547 F:      include/linux/phy/
8548
8549 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8550 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8551 S:      Supported
8552 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8553
8554 GENERIC PM DOMAINS
8555 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8556 M:      Kevin Hilman <khilman@kernel.org>
8557 M:      Ulf Hansson <ulf.hansson@linaro.org>
8558 L:      linux-pm@vger.kernel.org
8559 S:      Supported
8560 F:      Documentation/devicetree/bindings/power/power?domain*
8561 F:      drivers/base/power/domain*.c
8562 F:      include/linux/pm_domain.h
8563
8564 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8565 M:      Eugen Hristev <eugen.hristev@microchip.com>
8566 L:      linux-input@vger.kernel.org
8567 S:      Maintained
8568 F:      drivers/input/touchscreen/resistive-adc-touch.c
8569
8570 GENERIC STRING LIBRARY
8571 R:      Andy Shevchenko <andy@kernel.org>
8572 S:      Maintained
8573 F:      lib/string.c
8574 F:      lib/string_helpers.c
8575 F:      lib/test_string.c
8576 F:      lib/test-string_helpers.c
8577
8578 GENERIC UIO DRIVER FOR PCI DEVICES
8579 M:      "Michael S. Tsirkin" <mst@redhat.com>
8580 L:      kvm@vger.kernel.org
8581 S:      Supported
8582 F:      drivers/uio/uio_pci_generic.c
8583
8584 GENERIC VDSO LIBRARY
8585 M:      Andy Lutomirski <luto@kernel.org>
8586 M:      Thomas Gleixner <tglx@linutronix.de>
8587 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8588 L:      linux-kernel@vger.kernel.org
8589 S:      Maintained
8590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8591 F:      include/asm-generic/vdso/vsyscall.h
8592 F:      include/vdso/
8593 F:      kernel/time/vsyscall.c
8594 F:      lib/vdso/
8595
8596 GENWQE (IBM Generic Workqueue Card)
8597 M:      Frank Haverkamp <haver@linux.ibm.com>
8598 S:      Supported
8599 F:      drivers/misc/genwqe/
8600
8601 GET_MAINTAINER SCRIPT
8602 M:      Joe Perches <joe@perches.com>
8603 S:      Maintained
8604 F:      scripts/get_maintainer.pl
8605
8606 GFS2 FILE SYSTEM
8607 M:      Bob Peterson <rpeterso@redhat.com>
8608 M:      Andreas Gruenbacher <agruenba@redhat.com>
8609 L:      cluster-devel@redhat.com
8610 S:      Supported
8611 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8613 F:      Documentation/filesystems/gfs2*
8614 F:      fs/gfs2/
8615 F:      include/uapi/linux/gfs2_ondisk.h
8616
8617 GIGABYTE WMI DRIVER
8618 M:      Thomas Weißschuh <thomas@weissschuh.net>
8619 L:      platform-driver-x86@vger.kernel.org
8620 S:      Maintained
8621 F:      drivers/platform/x86/gigabyte-wmi.c
8622
8623 GNSS SUBSYSTEM
8624 M:      Johan Hovold <johan@kernel.org>
8625 S:      Maintained
8626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8627 F:      Documentation/ABI/testing/sysfs-class-gnss
8628 F:      Documentation/devicetree/bindings/gnss/
8629 F:      drivers/gnss/
8630 F:      include/linux/gnss.h
8631
8632 GO7007 MPEG CODEC
8633 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8634 L:      linux-media@vger.kernel.org
8635 S:      Maintained
8636 F:      drivers/media/usb/go7007/
8637
8638 GOODIX TOUCHSCREEN
8639 M:      Bastien Nocera <hadess@hadess.net>
8640 M:      Hans de Goede <hdegoede@redhat.com>
8641 L:      linux-input@vger.kernel.org
8642 S:      Maintained
8643 F:      drivers/input/touchscreen/goodix*
8644
8645 GOOGLE ETHERNET DRIVERS
8646 M:      Jeroen de Borst <jeroendb@google.com>
8647 R:      Catherine Sullivan <csully@google.com>
8648 R:      David Awogbemila <awogbemila@google.com>
8649 L:      netdev@vger.kernel.org
8650 S:      Supported
8651 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8652 F:      drivers/net/ethernet/google
8653
8654 GPD POCKET FAN DRIVER
8655 M:      Hans de Goede <hdegoede@redhat.com>
8656 L:      platform-driver-x86@vger.kernel.org
8657 S:      Maintained
8658 F:      drivers/platform/x86/gpd-pocket-fan.c
8659
8660 GPIO ACPI SUPPORT
8661 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8662 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8663 L:      linux-gpio@vger.kernel.org
8664 L:      linux-acpi@vger.kernel.org
8665 S:      Supported
8666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8667 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8668 F:      drivers/gpio/gpiolib-acpi.c
8669 F:      drivers/gpio/gpiolib-acpi.h
8670
8671 GPIO AGGREGATOR
8672 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8673 L:      linux-gpio@vger.kernel.org
8674 S:      Supported
8675 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8676 F:      drivers/gpio/gpio-aggregator.c
8677
8678 GPIO IR Transmitter
8679 M:      Sean Young <sean@mess.org>
8680 L:      linux-media@vger.kernel.org
8681 S:      Maintained
8682 F:      drivers/media/rc/gpio-ir-tx.c
8683
8684 GPIO MOCKUP DRIVER
8685 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8686 L:      linux-gpio@vger.kernel.org
8687 S:      Maintained
8688 F:      drivers/gpio/gpio-mockup.c
8689 F:      tools/testing/selftests/gpio/
8690
8691 GPIO REGMAP
8692 R:      Michael Walle <michael@walle.cc>
8693 S:      Maintained
8694 F:      drivers/gpio/gpio-regmap.c
8695 F:      include/linux/gpio/regmap.h
8696
8697 GPIO SUBSYSTEM
8698 M:      Linus Walleij <linus.walleij@linaro.org>
8699 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8700 L:      linux-gpio@vger.kernel.org
8701 S:      Maintained
8702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8703 F:      Documentation/ABI/obsolete/sysfs-gpio
8704 F:      Documentation/ABI/testing/gpio-cdev
8705 F:      Documentation/admin-guide/gpio/
8706 F:      Documentation/devicetree/bindings/gpio/
8707 F:      Documentation/driver-api/gpio/
8708 F:      drivers/gpio/
8709 F:      include/asm-generic/gpio.h
8710 F:      include/dt-bindings/gpio/
8711 F:      include/linux/gpio.h
8712 F:      include/linux/gpio/
8713 F:      include/linux/of_gpio.h
8714 F:      include/uapi/linux/gpio.h
8715 F:      tools/gpio/
8716
8717 GRE DEMULTIPLEXER DRIVER
8718 M:      Dmitry Kozlov <xeb@mail.ru>
8719 L:      netdev@vger.kernel.org
8720 S:      Maintained
8721 F:      include/net/gre.h
8722 F:      net/ipv4/gre_demux.c
8723 F:      net/ipv4/gre_offload.c
8724
8725 GRETH 10/100/1G Ethernet MAC device driver
8726 M:      Andreas Larsson <andreas@gaisler.com>
8727 L:      netdev@vger.kernel.org
8728 S:      Maintained
8729 F:      drivers/net/ethernet/aeroflex/
8730
8731 GREYBUS AUDIO PROTOCOLS DRIVERS
8732 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8733 M:      Mark Greer <mgreer@animalcreek.com>
8734 S:      Maintained
8735 F:      drivers/staging/greybus/audio_apbridgea.c
8736 F:      drivers/staging/greybus/audio_apbridgea.h
8737 F:      drivers/staging/greybus/audio_codec.c
8738 F:      drivers/staging/greybus/audio_codec.h
8739 F:      drivers/staging/greybus/audio_gb.c
8740 F:      drivers/staging/greybus/audio_manager.c
8741 F:      drivers/staging/greybus/audio_manager.h
8742 F:      drivers/staging/greybus/audio_manager_module.c
8743 F:      drivers/staging/greybus/audio_manager_private.h
8744 F:      drivers/staging/greybus/audio_manager_sysfs.c
8745 F:      drivers/staging/greybus/audio_module.c
8746 F:      drivers/staging/greybus/audio_topology.c
8747
8748 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8749 M:      Viresh Kumar <vireshk@kernel.org>
8750 S:      Maintained
8751 F:      drivers/staging/greybus/authentication.c
8752 F:      drivers/staging/greybus/bootrom.c
8753 F:      drivers/staging/greybus/firmware.h
8754 F:      drivers/staging/greybus/fw-core.c
8755 F:      drivers/staging/greybus/fw-download.c
8756 F:      drivers/staging/greybus/fw-management.c
8757 F:      drivers/staging/greybus/greybus_authentication.h
8758 F:      drivers/staging/greybus/greybus_firmware.h
8759 F:      drivers/staging/greybus/hid.c
8760 F:      drivers/staging/greybus/i2c.c
8761 F:      drivers/staging/greybus/spi.c
8762 F:      drivers/staging/greybus/spilib.c
8763 F:      drivers/staging/greybus/spilib.h
8764
8765 GREYBUS LOOPBACK DRIVER
8766 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8767 S:      Maintained
8768 F:      drivers/staging/greybus/loopback.c
8769
8770 GREYBUS PLATFORM DRIVERS
8771 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8772 S:      Maintained
8773 F:      drivers/staging/greybus/arche-apb-ctrl.c
8774 F:      drivers/staging/greybus/arche-platform.c
8775 F:      drivers/staging/greybus/arche_platform.h
8776
8777 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8778 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8779 S:      Maintained
8780 F:      drivers/staging/greybus/gpio.c
8781 F:      drivers/staging/greybus/light.c
8782 F:      drivers/staging/greybus/power_supply.c
8783 F:      drivers/staging/greybus/sdio.c
8784 F:      drivers/staging/greybus/spi.c
8785 F:      drivers/staging/greybus/spilib.c
8786
8787 GREYBUS SUBSYSTEM
8788 M:      Johan Hovold <johan@kernel.org>
8789 M:      Alex Elder <elder@kernel.org>
8790 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8791 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8792 S:      Maintained
8793 F:      drivers/greybus/
8794 F:      drivers/staging/greybus/
8795 F:      include/linux/greybus.h
8796 F:      include/linux/greybus/
8797
8798 GREYBUS UART PROTOCOLS DRIVERS
8799 M:      David Lin <dtwlin@gmail.com>
8800 S:      Maintained
8801 F:      drivers/staging/greybus/log.c
8802 F:      drivers/staging/greybus/uart.c
8803
8804 GS1662 VIDEO SERIALIZER
8805 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8806 L:      linux-media@vger.kernel.org
8807 S:      Maintained
8808 T:      git git://linuxtv.org/media_tree.git
8809 F:      drivers/media/spi/gs1662.c
8810
8811 GSPCA FINEPIX SUBDRIVER
8812 M:      Frank Zago <frank@zago.net>
8813 L:      linux-media@vger.kernel.org
8814 S:      Maintained
8815 T:      git git://linuxtv.org/media_tree.git
8816 F:      drivers/media/usb/gspca/finepix.c
8817
8818 GSPCA GL860 SUBDRIVER
8819 M:      Olivier Lorin <o.lorin@laposte.net>
8820 L:      linux-media@vger.kernel.org
8821 S:      Maintained
8822 T:      git git://linuxtv.org/media_tree.git
8823 F:      drivers/media/usb/gspca/gl860/
8824
8825 GSPCA M5602 SUBDRIVER
8826 M:      Erik Andren <erik.andren@gmail.com>
8827 L:      linux-media@vger.kernel.org
8828 S:      Maintained
8829 T:      git git://linuxtv.org/media_tree.git
8830 F:      drivers/media/usb/gspca/m5602/
8831
8832 GSPCA PAC207 SONIXB SUBDRIVER
8833 M:      Hans Verkuil <hverkuil@xs4all.nl>
8834 L:      linux-media@vger.kernel.org
8835 S:      Odd Fixes
8836 T:      git git://linuxtv.org/media_tree.git
8837 F:      drivers/media/usb/gspca/pac207.c
8838
8839 GSPCA SN9C20X SUBDRIVER
8840 M:      Brian Johnson <brijohn@gmail.com>
8841 L:      linux-media@vger.kernel.org
8842 S:      Maintained
8843 T:      git git://linuxtv.org/media_tree.git
8844 F:      drivers/media/usb/gspca/sn9c20x.c
8845
8846 GSPCA T613 SUBDRIVER
8847 M:      Leandro Costantino <lcostantino@gmail.com>
8848 L:      linux-media@vger.kernel.org
8849 S:      Maintained
8850 T:      git git://linuxtv.org/media_tree.git
8851 F:      drivers/media/usb/gspca/t613.c
8852
8853 GSPCA USB WEBCAM DRIVER
8854 M:      Hans Verkuil <hverkuil@xs4all.nl>
8855 L:      linux-media@vger.kernel.org
8856 S:      Odd Fixes
8857 T:      git git://linuxtv.org/media_tree.git
8858 F:      drivers/media/usb/gspca/
8859
8860 GTP (GPRS Tunneling Protocol)
8861 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8862 M:      Harald Welte <laforge@gnumonks.org>
8863 L:      osmocom-net-gprs@lists.osmocom.org
8864 S:      Maintained
8865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8866 F:      drivers/net/gtp.c
8867
8868 GUID PARTITION TABLE (GPT)
8869 M:      Davidlohr Bueso <dave@stgolabs.net>
8870 L:      linux-efi@vger.kernel.org
8871 S:      Maintained
8872 F:      block/partitions/efi.*
8873
8874 HABANALABS PCI DRIVER
8875 M:      Oded Gabbay <ogabbay@kernel.org>
8876 S:      Supported
8877 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8878 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8879 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8880 F:      drivers/misc/habanalabs/
8881 F:      include/uapi/misc/habanalabs.h
8882
8883 HACKRF MEDIA DRIVER
8884 M:      Antti Palosaari <crope@iki.fi>
8885 L:      linux-media@vger.kernel.org
8886 S:      Maintained
8887 W:      https://linuxtv.org
8888 W:      http://palosaari.fi/linux/
8889 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8890 T:      git git://linuxtv.org/anttip/media_tree.git
8891 F:      drivers/media/usb/hackrf/
8892
8893 HANTRO VPU CODEC DRIVER
8894 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8895 M:      Philipp Zabel <p.zabel@pengutronix.de>
8896 L:      linux-media@vger.kernel.org
8897 L:      linux-rockchip@lists.infradead.org
8898 S:      Maintained
8899 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8900 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8901 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8902 F:      drivers/staging/media/hantro/
8903
8904 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8905 M:      Frank Seidel <frank@f-seidel.de>
8906 L:      platform-driver-x86@vger.kernel.org
8907 S:      Maintained
8908 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8909 F:      drivers/platform/x86/hdaps.c
8910
8911 HARDWARE MONITORING
8912 M:      Jean Delvare <jdelvare@suse.com>
8913 M:      Guenter Roeck <linux@roeck-us.net>
8914 L:      linux-hwmon@vger.kernel.org
8915 S:      Maintained
8916 W:      http://hwmon.wiki.kernel.org/
8917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8918 F:      Documentation/ABI/testing/sysfs-class-hwmon
8919 F:      Documentation/devicetree/bindings/hwmon/
8920 F:      Documentation/hwmon/
8921 F:      drivers/hwmon/
8922 F:      include/linux/hwmon*.h
8923 F:      include/trace/events/hwmon*.h
8924 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8925
8926 HARDWARE RANDOM NUMBER GENERATOR CORE
8927 M:      Olivia Mackall <olivia@selenic.com>
8928 M:      Herbert Xu <herbert@gondor.apana.org.au>
8929 L:      linux-crypto@vger.kernel.org
8930 S:      Odd fixes
8931 F:      Documentation/admin-guide/hw_random.rst
8932 F:      Documentation/devicetree/bindings/rng/
8933 F:      drivers/char/hw_random/
8934 F:      include/linux/hw_random.h
8935
8936 HARDWARE SPINLOCK CORE
8937 M:      Ohad Ben-Cohen <ohad@wizery.com>
8938 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8939 R:      Baolin Wang <baolin.wang7@gmail.com>
8940 L:      linux-remoteproc@vger.kernel.org
8941 S:      Maintained
8942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8943 F:      Documentation/devicetree/bindings/hwlock/
8944 F:      Documentation/locking/hwspinlock.rst
8945 F:      drivers/hwspinlock/
8946 F:      include/linux/hwspinlock.h
8947
8948 HARDWARE TRACING FACILITIES
8949 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8950 S:      Maintained
8951 F:      drivers/hwtracing/
8952
8953 HARMONY SOUND DRIVER
8954 L:      linux-parisc@vger.kernel.org
8955 S:      Maintained
8956 F:      sound/parisc/harmony.*
8957
8958 HDPVR USB VIDEO ENCODER DRIVER
8959 M:      Hans Verkuil <hverkuil@xs4all.nl>
8960 L:      linux-media@vger.kernel.org
8961 S:      Odd Fixes
8962 W:      https://linuxtv.org
8963 T:      git git://linuxtv.org/media_tree.git
8964 F:      drivers/media/usb/hdpvr/
8965
8966 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8967 M:      Matt Hsiao <matt.hsiao@hpe.com>
8968 S:      Supported
8969 F:      drivers/misc/hpilo.[ch]
8970
8971 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8972 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8973 S:      Supported
8974 F:      Documentation/watchdog/hpwdt.rst
8975 F:      drivers/watchdog/hpwdt.c
8976
8977 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8978 M:      Don Brace <don.brace@microchip.com>
8979 L:      storagedev@microchip.com
8980 L:      linux-scsi@vger.kernel.org
8981 S:      Supported
8982 F:      Documentation/scsi/hpsa.rst
8983 F:      drivers/scsi/hpsa*.[ch]
8984 F:      include/linux/cciss*.h
8985 F:      include/uapi/linux/cciss*.h
8986
8987 HFI1 DRIVER
8988 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8989 L:      linux-rdma@vger.kernel.org
8990 S:      Supported
8991 F:      drivers/infiniband/hw/hfi1
8992
8993 HFS FILESYSTEM
8994 L:      linux-fsdevel@vger.kernel.org
8995 S:      Orphan
8996 F:      Documentation/filesystems/hfs.rst
8997 F:      fs/hfs/
8998
8999 HFSPLUS FILESYSTEM
9000 L:      linux-fsdevel@vger.kernel.org
9001 S:      Orphan
9002 F:      Documentation/filesystems/hfsplus.rst
9003 F:      fs/hfsplus/
9004
9005 HGA FRAMEBUFFER DRIVER
9006 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9007 L:      linux-nvidia@lists.surfsouth.com
9008 S:      Maintained
9009 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9010 F:      drivers/video/fbdev/hgafb.c
9011
9012 HIBERNATION (aka Software Suspend, aka swsusp)
9013 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9014 M:      Pavel Machek <pavel@ucw.cz>
9015 L:      linux-pm@vger.kernel.org
9016 S:      Supported
9017 B:      https://bugzilla.kernel.org
9018 F:      arch/*/include/asm/suspend*.h
9019 F:      arch/x86/power/
9020 F:      drivers/base/power/
9021 F:      include/linux/freezer.h
9022 F:      include/linux/pm.h
9023 F:      include/linux/suspend.h
9024 F:      kernel/power/
9025
9026 HID CORE LAYER
9027 M:      Jiri Kosina <jikos@kernel.org>
9028 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9029 L:      linux-input@vger.kernel.org
9030 S:      Maintained
9031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9032 F:      drivers/hid/
9033 F:      include/linux/hid*
9034 F:      include/uapi/linux/hid*
9035
9036 HID LOGITECH DRIVERS
9037 R:      Filipe Laíns <lains@riseup.net>
9038 L:      linux-input@vger.kernel.org
9039 S:      Maintained
9040 F:      drivers/hid/hid-logitech-*
9041
9042 HID PLAYSTATION DRIVER
9043 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9044 L:      linux-input@vger.kernel.org
9045 S:      Supported
9046 F:      drivers/hid/hid-playstation.c
9047
9048 HID SENSOR HUB DRIVERS
9049 M:      Jiri Kosina <jikos@kernel.org>
9050 M:      Jonathan Cameron <jic23@kernel.org>
9051 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9052 L:      linux-input@vger.kernel.org
9053 L:      linux-iio@vger.kernel.org
9054 S:      Maintained
9055 F:      Documentation/hid/hid-sensor*
9056 F:      drivers/hid/hid-sensor-*
9057 F:      drivers/iio/*/hid-*
9058 F:      include/linux/hid-sensor-*
9059
9060 HID WACOM DRIVER
9061 M:      Ping Cheng <ping.cheng@wacom.com>
9062 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9063 L:      linux-input@vger.kernel.org
9064 S:      Maintained
9065 F:      drivers/hid/wacom.h
9066 F:      drivers/hid/wacom_*
9067
9068 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9069 M:      Thomas Gleixner <tglx@linutronix.de>
9070 L:      linux-kernel@vger.kernel.org
9071 S:      Maintained
9072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9073 F:      Documentation/timers/
9074 F:      include/linux/clockchips.h
9075 F:      include/linux/hrtimer.h
9076 F:      kernel/time/clockevents.c
9077 F:      kernel/time/hrtimer.c
9078 F:      kernel/time/timer_*.c
9079
9080 HIGH-SPEED SCC DRIVER FOR AX.25
9081 L:      linux-hams@vger.kernel.org
9082 S:      Orphan
9083 F:      drivers/net/hamradio/scc.c
9084
9085 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9086 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9087 S:      Supported
9088 W:      http://www.highpoint-tech.com
9089 F:      Documentation/scsi/hptiop.rst
9090 F:      drivers/scsi/hptiop.c
9091
9092 HIPPI
9093 M:      Jes Sorensen <jes@trained-monkey.org>
9094 L:      linux-hippi@sunsite.dk
9095 S:      Maintained
9096 F:      drivers/net/hippi/
9097 F:      include/linux/hippidevice.h
9098 F:      include/uapi/linux/if_hippi.h
9099 F:      net/802/hippi.c
9100
9101 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9102 M:      Kurt Kanzenbach <kurt@linutronix.de>
9103 L:      netdev@vger.kernel.org
9104 S:      Maintained
9105 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9106 F:      drivers/net/dsa/hirschmann/*
9107 F:      include/linux/platform_data/hirschmann-hellcreek.h
9108 F:      net/dsa/tag_hellcreek.c
9109
9110 HISILICON DMA DRIVER
9111 M:      Zhou Wang <wangzhou1@hisilicon.com>
9112 L:      dmaengine@vger.kernel.org
9113 S:      Maintained
9114 F:      drivers/dma/hisi_dma.c
9115
9116 HISILICON GPIO DRIVER
9117 M:      Luo Jiaxing <luojiaxing@huawei.com>
9118 L:      linux-gpio@vger.kernel.org
9119 S:      Maintained
9120 F:      drivers/gpio/gpio-hisi.c
9121
9122 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9123 M:      Longfang Liu <liulongfang@huawei.com>
9124 L:      linux-crypto@vger.kernel.org
9125 S:      Maintained
9126 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9127 F:      drivers/crypto/hisilicon/hpre/hpre.h
9128 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9129 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9130
9131 HISILICON I2C CONTROLLER DRIVER
9132 M:      Yicong Yang <yangyicong@hisilicon.com>
9133 L:      linux-i2c@vger.kernel.org
9134 S:      Maintained
9135 W:      https://www.hisilicon.com
9136 F:      drivers/i2c/busses/i2c-hisi.c
9137
9138 HISILICON LPC BUS DRIVER
9139 M:      john.garry@huawei.com
9140 S:      Maintained
9141 W:      http://www.hisilicon.com
9142 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9143 F:      drivers/bus/hisi_lpc.c
9144
9145 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9146 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9147 M:      Salil Mehta <salil.mehta@huawei.com>
9148 L:      netdev@vger.kernel.org
9149 S:      Maintained
9150 W:      http://www.hisilicon.com
9151 F:      drivers/net/ethernet/hisilicon/hns3/
9152
9153 HISILICON NETWORK SUBSYSTEM DRIVER
9154 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9155 M:      Salil Mehta <salil.mehta@huawei.com>
9156 L:      netdev@vger.kernel.org
9157 S:      Maintained
9158 W:      http://www.hisilicon.com
9159 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9160 F:      drivers/net/ethernet/hisilicon/
9161
9162 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9163 M:      John Stultz <jstultz@google.com>
9164 L:      linux-kernel@vger.kernel.org
9165 S:      Maintained
9166 F:      drivers/misc/hisi_hikey_usb.c
9167
9168 HISILICON PMU DRIVER
9169 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9170 M:      Qi Liu <liuqi115@huawei.com>
9171 S:      Supported
9172 W:      http://www.hisilicon.com
9173 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9174 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9175 F:      drivers/perf/hisilicon
9176
9177 HISILICON HNS3 PMU DRIVER
9178 M:      Guangbin Huang <huangguangbin2@huawei.com>
9179 S:      Supported
9180 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9181 F:      drivers/perf/hisilicon/hns3_pmu.c
9182
9183 HISILICON PTT DRIVER
9184 M:      Yicong Yang <yangyicong@hisilicon.com>
9185 L:      linux-kernel@vger.kernel.org
9186 S:      Maintained
9187 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9188 F:      Documentation/trace/hisi-ptt.rst
9189 F:      drivers/hwtracing/ptt/
9190
9191 HISILICON QM DRIVER
9192 M:      Weili Qian <qianweili@huawei.com>
9193 M:      Zhou Wang <wangzhou1@hisilicon.com>
9194 L:      linux-crypto@vger.kernel.org
9195 S:      Maintained
9196 F:      drivers/crypto/hisilicon/Kconfig
9197 F:      drivers/crypto/hisilicon/Makefile
9198 F:      drivers/crypto/hisilicon/qm.c
9199 F:      drivers/crypto/hisilicon/sgl.c
9200 F:      include/linux/hisi_acc_qm.h
9201
9202 HISILICON ZIP Controller DRIVER
9203 M:      Yang Shen <shenyang39@huawei.com>
9204 M:      Zhou Wang <wangzhou1@hisilicon.com>
9205 L:      linux-crypto@vger.kernel.org
9206 S:      Maintained
9207 F:      Documentation/ABI/testing/debugfs-hisi-zip
9208 F:      drivers/crypto/hisilicon/zip/
9209
9210 HISILICON ROCE DRIVER
9211 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9212 M:      Weihang Li <liweihang@huawei.com>
9213 L:      linux-rdma@vger.kernel.org
9214 S:      Maintained
9215 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9216 F:      drivers/infiniband/hw/hns/
9217
9218 HISILICON SAS Controller
9219 M:      John Garry <john.garry@huawei.com>
9220 S:      Supported
9221 W:      http://www.hisilicon.com
9222 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9223 F:      drivers/scsi/hisi_sas/
9224
9225 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9226 M:      Kai Ye <yekai13@huawei.com>
9227 M:      Longfang Liu <liulongfang@huawei.com>
9228 L:      linux-crypto@vger.kernel.org
9229 S:      Maintained
9230 F:      Documentation/ABI/testing/debugfs-hisi-sec
9231 F:      drivers/crypto/hisilicon/sec2/sec.h
9232 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9233 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9234 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9235
9236 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9237 M:      Jay Fang <f.fangjian@huawei.com>
9238 L:      linux-spi@vger.kernel.org
9239 S:      Maintained
9240 W:      http://www.hisilicon.com
9241 F:      drivers/spi/spi-hisi-kunpeng.c
9242
9243 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9244 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9245 L:      linux-kernel@vger.kernel.org
9246 S:      Maintained
9247 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9248 F:      drivers/spmi/hisi-spmi-controller.c
9249
9250 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9251 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9252 L:      linux-kernel@vger.kernel.org
9253 S:      Maintained
9254 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9255 F:      drivers/mfd/hi6421-spmi-pmic.c
9256
9257 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9258 M:      Weili Qian <qianweili@huawei.com>
9259 S:      Maintained
9260 F:      drivers/crypto/hisilicon/trng/trng.c
9261
9262 HISILICON V3XX SPI NOR FLASH Controller Driver
9263 M:      John Garry <john.garry@huawei.com>
9264 S:      Maintained
9265 W:      http://www.hisilicon.com
9266 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9267
9268 HMM - Heterogeneous Memory Management
9269 M:      Jérôme Glisse <jglisse@redhat.com>
9270 L:      linux-mm@kvack.org
9271 S:      Maintained
9272 F:      Documentation/mm/hmm.rst
9273 F:      include/linux/hmm*
9274 F:      lib/test_hmm*
9275 F:      mm/hmm*
9276 F:      tools/testing/selftests/vm/*hmm*
9277
9278 HOST AP DRIVER
9279 M:      Jouni Malinen <j@w1.fi>
9280 L:      linux-wireless@vger.kernel.org
9281 S:      Obsolete
9282 W:      http://w1.fi/hostap-driver.html
9283 F:      drivers/net/wireless/intersil/hostap/
9284
9285 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9286 L:      platform-driver-x86@vger.kernel.org
9287 S:      Orphan
9288 F:      drivers/platform/x86/tc1100-wmi.c
9289
9290 HPET:   High Precision Event Timers driver
9291 M:      Clemens Ladisch <clemens@ladisch.de>
9292 S:      Maintained
9293 F:      Documentation/timers/hpet.rst
9294 F:      drivers/char/hpet.c
9295 F:      include/linux/hpet.h
9296 F:      include/uapi/linux/hpet.h
9297
9298 HPET:   x86
9299 S:      Orphan
9300 F:      arch/x86/include/asm/hpet.h
9301 F:      arch/x86/kernel/hpet.c
9302
9303 HPFS FILESYSTEM
9304 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9305 S:      Maintained
9306 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9307 F:      fs/hpfs/
9308
9309 HSI SUBSYSTEM
9310 M:      Sebastian Reichel <sre@kernel.org>
9311 S:      Maintained
9312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9313 F:      Documentation/ABI/testing/sysfs-bus-hsi
9314 F:      Documentation/driver-api/hsi.rst
9315 F:      drivers/hsi/
9316 F:      include/linux/hsi/
9317 F:      include/uapi/linux/hsi/
9318
9319 HSO 3G MODEM DRIVER
9320 L:      linux-usb@vger.kernel.org
9321 S:      Orphan
9322 F:      drivers/net/usb/hso.c
9323
9324 HSR NETWORK PROTOCOL
9325 L:      netdev@vger.kernel.org
9326 S:      Orphan
9327 F:      net/hsr/
9328
9329 HT16K33 LED CONTROLLER DRIVER
9330 M:      Robin van der Gracht <robin@protonic.nl>
9331 S:      Maintained
9332 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9333 F:      drivers/auxdisplay/ht16k33.c
9334
9335 HTCPEN TOUCHSCREEN DRIVER
9336 M:      Pau Oliva Fora <pof@eslack.org>
9337 L:      linux-input@vger.kernel.org
9338 S:      Maintained
9339 F:      drivers/input/touchscreen/htcpen.c
9340
9341 HTE SUBSYSTEM
9342 M:      Dipen Patel <dipenp@nvidia.com>
9343 S:      Maintained
9344 F:      Documentation/devicetree/bindings/timestamp/
9345 F:      Documentation/driver-api/hte/
9346 F:      drivers/hte/
9347 F:      include/linux/hte.h
9348
9349 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9350 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9351 L:      linux-iio@vger.kernel.org
9352 S:      Maintained
9353 W:      http://www.st.com/
9354 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9355 F:      drivers/iio/humidity/hts221*
9356
9357 HUAWEI ETHERNET DRIVER
9358 L:      netdev@vger.kernel.org
9359 S:      Orphan
9360 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9361 F:      drivers/net/ethernet/huawei/hinic/
9362
9363 HUGETLB SUBSYSTEM
9364 M:      Mike Kravetz <mike.kravetz@oracle.com>
9365 M:      Muchun Song <songmuchun@bytedance.com>
9366 L:      linux-mm@kvack.org
9367 S:      Maintained
9368 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9369 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9370 F:      Documentation/mm/hugetlbfs_reserv.rst
9371 F:      Documentation/mm/vmemmap_dedup.rst
9372 F:      fs/hugetlbfs/
9373 F:      include/linux/hugetlb.h
9374 F:      mm/hugetlb.c
9375 F:      mm/hugetlb_vmemmap.c
9376 F:      mm/hugetlb_vmemmap.h
9377
9378 HVA ST MEDIA DRIVER
9379 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9380 L:      linux-media@vger.kernel.org
9381 S:      Supported
9382 W:      https://linuxtv.org
9383 T:      git git://linuxtv.org/media_tree.git
9384 F:      drivers/media/platform/st/sti/hva
9385
9386 HWPOISON MEMORY FAILURE HANDLING
9387 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9388 R:      Miaohe Lin <linmiaohe@huawei.com>
9389 L:      linux-mm@kvack.org
9390 S:      Maintained
9391 F:      mm/hwpoison-inject.c
9392 F:      mm/memory-failure.c
9393
9394 HYCON HY46XX TOUCHSCREEN SUPPORT
9395 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9396 L:      linux-input@vger.kernel.org
9397 S:      Maintained
9398 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9399 F:      drivers/input/touchscreen/hycon-hy46xx.c
9400
9401 HYGON PROCESSOR SUPPORT
9402 M:      Pu Wen <puwen@hygon.cn>
9403 L:      linux-kernel@vger.kernel.org
9404 S:      Maintained
9405 F:      arch/x86/kernel/cpu/hygon.c
9406
9407 HYNIX HI556 SENSOR DRIVER
9408 M:      Shawn Tu <shawnx.tu@intel.com>
9409 L:      linux-media@vger.kernel.org
9410 S:      Maintained
9411 T:      git git://linuxtv.org/media_tree.git
9412 F:      drivers/media/i2c/hi556.c
9413
9414 HYNIX HI846 SENSOR DRIVER
9415 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9416 L:      linux-media@vger.kernel.org
9417 S:      Maintained
9418 F:      drivers/media/i2c/hi846.c
9419
9420 HYNIX HI847 SENSOR DRIVER
9421 M:      Shawn Tu <shawnx.tu@intel.com>
9422 L:      linux-media@vger.kernel.org
9423 S:      Maintained
9424 F:      drivers/media/i2c/hi847.c
9425
9426 Hyper-V/Azure CORE AND DRIVERS
9427 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9428 M:      Haiyang Zhang <haiyangz@microsoft.com>
9429 M:      Stephen Hemminger <sthemmin@microsoft.com>
9430 M:      Wei Liu <wei.liu@kernel.org>
9431 M:      Dexuan Cui <decui@microsoft.com>
9432 L:      linux-hyperv@vger.kernel.org
9433 S:      Supported
9434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9435 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9436 F:      Documentation/ABI/testing/debugfs-hyperv
9437 F:      Documentation/virt/hyperv
9438 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9439 F:      arch/arm64/hyperv
9440 F:      arch/arm64/include/asm/hyperv-tlfs.h
9441 F:      arch/arm64/include/asm/mshyperv.h
9442 F:      arch/x86/hyperv
9443 F:      arch/x86/include/asm/hyperv-tlfs.h
9444 F:      arch/x86/include/asm/mshyperv.h
9445 F:      arch/x86/include/asm/trace/hyperv.h
9446 F:      arch/x86/kernel/cpu/mshyperv.c
9447 F:      drivers/clocksource/hyperv_timer.c
9448 F:      drivers/hid/hid-hyperv.c
9449 F:      drivers/hv/
9450 F:      drivers/input/serio/hyperv-keyboard.c
9451 F:      drivers/iommu/hyperv-iommu.c
9452 F:      drivers/net/ethernet/microsoft/
9453 F:      drivers/net/hyperv/
9454 F:      drivers/pci/controller/pci-hyperv-intf.c
9455 F:      drivers/pci/controller/pci-hyperv.c
9456 F:      drivers/scsi/storvsc_drv.c
9457 F:      drivers/uio/uio_hv_generic.c
9458 F:      drivers/video/fbdev/hyperv_fb.c
9459 F:      include/asm-generic/hyperv-tlfs.h
9460 F:      include/asm-generic/mshyperv.h
9461 F:      include/clocksource/hyperv_timer.h
9462 F:      include/linux/hyperv.h
9463 F:      include/uapi/linux/hyperv.h
9464 F:      net/vmw_vsock/hyperv_transport.c
9465 F:      tools/hv/
9466
9467 HYPERBUS SUPPORT
9468 M:      Vignesh Raghavendra <vigneshr@ti.com>
9469 L:      linux-mtd@lists.infradead.org
9470 S:      Supported
9471 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9472 C:      irc://irc.oftc.net/mtd
9473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9474 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9475 F:      drivers/mtd/hyperbus/
9476 F:      include/linux/mtd/hyperbus.h
9477
9478 HYPERVISOR VIRTUAL CONSOLE DRIVER
9479 L:      linuxppc-dev@lists.ozlabs.org
9480 S:      Odd Fixes
9481 F:      drivers/tty/hvc/
9482
9483 I2C ACPI SUPPORT
9484 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9485 L:      linux-i2c@vger.kernel.org
9486 L:      linux-acpi@vger.kernel.org
9487 S:      Maintained
9488 F:      drivers/i2c/i2c-core-acpi.c
9489
9490 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9491 M:      Ajay Gupta <ajayg@nvidia.com>
9492 L:      linux-i2c@vger.kernel.org
9493 S:      Maintained
9494 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9495 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9496
9497 I2C MUXES
9498 M:      Peter Rosin <peda@axentia.se>
9499 L:      linux-i2c@vger.kernel.org
9500 S:      Maintained
9501 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9502 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9503 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9504 F:      Documentation/i2c/i2c-topology.rst
9505 F:      Documentation/i2c/muxes/
9506 F:      drivers/i2c/i2c-mux.c
9507 F:      drivers/i2c/muxes/
9508 F:      include/linux/i2c-mux.h
9509
9510 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9511 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9512 L:      linux-i2c@vger.kernel.org
9513 S:      Maintained
9514 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9515 F:      drivers/i2c/busses/i2c-mv64xxx.c
9516
9517 I2C OVER PARALLEL PORT
9518 M:      Jean Delvare <jdelvare@suse.com>
9519 L:      linux-i2c@vger.kernel.org
9520 S:      Maintained
9521 F:      Documentation/i2c/busses/i2c-parport.rst
9522 F:      drivers/i2c/busses/i2c-parport.c
9523
9524 I2C SUBSYSTEM
9525 M:      Wolfram Sang <wsa@kernel.org>
9526 L:      linux-i2c@vger.kernel.org
9527 S:      Maintained
9528 W:      https://i2c.wiki.kernel.org/
9529 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9531 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9532 F:      Documentation/i2c/
9533 F:      drivers/i2c/*
9534 F:      include/dt-bindings/i2c/i2c.h
9535 F:      include/linux/i2c-dev.h
9536 F:      include/linux/i2c-smbus.h
9537 F:      include/linux/i2c.h
9538 F:      include/uapi/linux/i2c-*.h
9539 F:      include/uapi/linux/i2c.h
9540
9541 I2C SUBSYSTEM HOST DRIVERS
9542 L:      linux-i2c@vger.kernel.org
9543 S:      Odd Fixes
9544 W:      https://i2c.wiki.kernel.org/
9545 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9547 F:      Documentation/devicetree/bindings/i2c/
9548 F:      drivers/i2c/algos/
9549 F:      drivers/i2c/busses/
9550 F:      include/dt-bindings/i2c/
9551
9552 I2C-TAOS-EVM DRIVER
9553 M:      Jean Delvare <jdelvare@suse.com>
9554 L:      linux-i2c@vger.kernel.org
9555 S:      Maintained
9556 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9557 F:      drivers/i2c/busses/i2c-taos-evm.c
9558
9559 I2C-TINY-USB DRIVER
9560 M:      Till Harbaum <till@harbaum.org>
9561 L:      linux-i2c@vger.kernel.org
9562 S:      Maintained
9563 W:      http://www.harbaum.org/till/i2c_tiny_usb
9564 F:      drivers/i2c/busses/i2c-tiny-usb.c
9565
9566 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9567 M:      Jean Delvare <jdelvare@suse.com>
9568 L:      linux-i2c@vger.kernel.org
9569 S:      Maintained
9570 F:      Documentation/i2c/busses/i2c-ali1535.rst
9571 F:      Documentation/i2c/busses/i2c-ali1563.rst
9572 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9573 F:      Documentation/i2c/busses/i2c-amd756.rst
9574 F:      Documentation/i2c/busses/i2c-amd8111.rst
9575 F:      Documentation/i2c/busses/i2c-i801.rst
9576 F:      Documentation/i2c/busses/i2c-nforce2.rst
9577 F:      Documentation/i2c/busses/i2c-piix4.rst
9578 F:      Documentation/i2c/busses/i2c-sis5595.rst
9579 F:      Documentation/i2c/busses/i2c-sis630.rst
9580 F:      Documentation/i2c/busses/i2c-sis96x.rst
9581 F:      Documentation/i2c/busses/i2c-via.rst
9582 F:      Documentation/i2c/busses/i2c-viapro.rst
9583 F:      drivers/i2c/busses/i2c-ali1535.c
9584 F:      drivers/i2c/busses/i2c-ali1563.c
9585 F:      drivers/i2c/busses/i2c-ali15x3.c
9586 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9587 F:      drivers/i2c/busses/i2c-amd756.c
9588 F:      drivers/i2c/busses/i2c-amd8111.c
9589 F:      drivers/i2c/busses/i2c-i801.c
9590 F:      drivers/i2c/busses/i2c-isch.c
9591 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9592 F:      drivers/i2c/busses/i2c-nforce2.c
9593 F:      drivers/i2c/busses/i2c-piix4.c
9594 F:      drivers/i2c/busses/i2c-sis5595.c
9595 F:      drivers/i2c/busses/i2c-sis630.c
9596 F:      drivers/i2c/busses/i2c-sis96x.c
9597 F:      drivers/i2c/busses/i2c-via.c
9598 F:      drivers/i2c/busses/i2c-viapro.c
9599
9600 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9601 M:      Hans de Goede <hdegoede@redhat.com>
9602 L:      linux-i2c@vger.kernel.org
9603 S:      Maintained
9604 F:      drivers/i2c/busses/i2c-cht-wc.c
9605
9606 I2C/SMBUS ISMT DRIVER
9607 M:      Seth Heasley <seth.heasley@intel.com>
9608 M:      Neil Horman <nhorman@tuxdriver.com>
9609 L:      linux-i2c@vger.kernel.org
9610 F:      Documentation/i2c/busses/i2c-ismt.rst
9611 F:      drivers/i2c/busses/i2c-ismt.c
9612
9613 I2C/SMBUS STUB DRIVER
9614 M:      Jean Delvare <jdelvare@suse.com>
9615 L:      linux-i2c@vger.kernel.org
9616 S:      Maintained
9617 F:      drivers/i2c/i2c-stub.c
9618
9619 I3C DRIVER FOR CADENCE I3C MASTER IP
9620 M:      Przemysław Gaj <pgaj@cadence.com>
9621 S:      Maintained
9622 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9623 F:      drivers/i3c/master/i3c-master-cdns.c
9624
9625 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9626 M:      Vitor Soares <vitor.soares@synopsys.com>
9627 S:      Maintained
9628 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9629 F:      drivers/i3c/master/dw*
9630
9631 I3C SUBSYSTEM
9632 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9633 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9634 S:      Maintained
9635 C:      irc://chat.freenode.net/linux-i3c
9636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9637 F:      Documentation/ABI/testing/sysfs-bus-i3c
9638 F:      Documentation/devicetree/bindings/i3c/
9639 F:      Documentation/driver-api/i3c
9640 F:      drivers/i3c/
9641 F:      include/linux/i3c/
9642
9643 IA64 (Itanium) PLATFORM
9644 L:      linux-ia64@vger.kernel.org
9645 S:      Orphan
9646 F:      Documentation/ia64/
9647 F:      arch/ia64/
9648
9649 IBM Power 842 compression accelerator
9650 M:      Haren Myneni <haren@us.ibm.com>
9651 S:      Supported
9652 F:      crypto/842.c
9653 F:      drivers/crypto/nx/Kconfig
9654 F:      drivers/crypto/nx/Makefile
9655 F:      drivers/crypto/nx/nx-842*
9656 F:      include/linux/sw842.h
9657 F:      lib/842/
9658
9659 IBM Power in-Nest Crypto Acceleration
9660 M:      Breno Leitão <leitao@debian.org>
9661 M:      Nayna Jain <nayna@linux.ibm.com>
9662 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9663 L:      linux-crypto@vger.kernel.org
9664 S:      Supported
9665 F:      drivers/crypto/nx/Kconfig
9666 F:      drivers/crypto/nx/Makefile
9667 F:      drivers/crypto/nx/nx-aes*
9668 F:      drivers/crypto/nx/nx-sha*
9669 F:      drivers/crypto/nx/nx.*
9670 F:      drivers/crypto/nx/nx_csbcpb.h
9671 F:      drivers/crypto/nx/nx_debugfs.c
9672
9673 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9674 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9675 L:      linux-pci@vger.kernel.org
9676 L:      linuxppc-dev@lists.ozlabs.org
9677 S:      Supported
9678 F:      drivers/pci/hotplug/rpadlpar*
9679
9680 IBM Power Linux RAID adapter
9681 M:      Brian King <brking@us.ibm.com>
9682 S:      Supported
9683 F:      drivers/scsi/ipr.*
9684
9685 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9686 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9687 L:      linux-pci@vger.kernel.org
9688 L:      linuxppc-dev@lists.ozlabs.org
9689 S:      Supported
9690 F:      drivers/pci/hotplug/rpaphp*
9691
9692 IBM Power SRIOV Virtual NIC Device Driver
9693 M:      Dany Madden <drt@linux.ibm.com>
9694 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9695 L:      netdev@vger.kernel.org
9696 S:      Supported
9697 F:      drivers/net/ethernet/ibm/ibmvnic.*
9698
9699 IBM Power Virtual Accelerator Switchboard
9700 L:      linuxppc-dev@lists.ozlabs.org
9701 S:      Supported
9702 F:      arch/powerpc/include/asm/vas.h
9703 F:      arch/powerpc/platforms/powernv/copy-paste.h
9704 F:      arch/powerpc/platforms/powernv/vas*
9705
9706 IBM Power Virtual Ethernet Device Driver
9707 M:      Nick Child <nnac123@linux.ibm.com>
9708 L:      netdev@vger.kernel.org
9709 S:      Supported
9710 F:      drivers/net/ethernet/ibm/ibmveth.*
9711
9712 IBM Power Virtual FC Device Drivers
9713 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9714 L:      linux-scsi@vger.kernel.org
9715 S:      Supported
9716 F:      drivers/scsi/ibmvscsi/ibmvfc*
9717
9718 IBM Power Virtual Management Channel Driver
9719 M:      Brad Warrum <bwarrum@linux.ibm.com>
9720 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9721 S:      Supported
9722 F:      drivers/misc/ibmvmc.*
9723
9724 IBM Power Virtual SCSI Device Drivers
9725 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9726 L:      linux-scsi@vger.kernel.org
9727 S:      Supported
9728 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9729 F:      include/scsi/viosrp.h
9730
9731 IBM Power Virtual SCSI Device Target Driver
9732 M:      Michael Cyr <mikecyr@linux.ibm.com>
9733 L:      linux-scsi@vger.kernel.org
9734 L:      target-devel@vger.kernel.org
9735 S:      Supported
9736 F:      drivers/scsi/ibmvscsi_tgt/
9737
9738 IBM Power VMX Cryptographic instructions
9739 M:      Breno Leitão <leitao@debian.org>
9740 M:      Nayna Jain <nayna@linux.ibm.com>
9741 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9742 L:      linux-crypto@vger.kernel.org
9743 S:      Supported
9744 F:      drivers/crypto/vmx/Kconfig
9745 F:      drivers/crypto/vmx/Makefile
9746 F:      drivers/crypto/vmx/aes*
9747 F:      drivers/crypto/vmx/ghash*
9748 F:      drivers/crypto/vmx/ppc-xlate.pl
9749 F:      drivers/crypto/vmx/vmx.c
9750
9751 IBM ServeRAID RAID DRIVER
9752 S:      Orphan
9753 F:      drivers/scsi/ips.*
9754
9755 ICH LPC AND GPIO DRIVER
9756 M:      Peter Tyser <ptyser@xes-inc.com>
9757 S:      Maintained
9758 F:      drivers/gpio/gpio-ich.c
9759 F:      drivers/mfd/lpc_ich.c
9760
9761 ICY I2C DRIVER
9762 M:      Max Staudt <max@enpas.org>
9763 L:      linux-i2c@vger.kernel.org
9764 S:      Maintained
9765 F:      drivers/i2c/busses/i2c-icy.c
9766
9767 IDEAPAD LAPTOP EXTRAS DRIVER
9768 M:      Ike Panhc <ike.pan@canonical.com>
9769 L:      platform-driver-x86@vger.kernel.org
9770 S:      Maintained
9771 W:      http://launchpad.net/ideapad-laptop
9772 F:      drivers/platform/x86/ideapad-laptop.c
9773
9774 IDEAPAD LAPTOP SLIDEBAR DRIVER
9775 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9776 L:      linux-input@vger.kernel.org
9777 S:      Maintained
9778 W:      https://github.com/o2genum/ideapad-slidebar
9779 F:      drivers/input/misc/ideapad_slidebar.c
9780
9781 IDMAPPED MOUNTS
9782 M:      Christian Brauner <brauner@kernel.org>
9783 M:      Seth Forshee <sforshee@kernel.org>
9784 L:      linux-fsdevel@vger.kernel.org
9785 S:      Maintained
9786 T:      git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9787 F:      Documentation/filesystems/idmappings.rst
9788 F:      tools/testing/selftests/mount_setattr/
9789 F:      include/linux/mnt_idmapping.h
9790
9791 IDT VersaClock 5 CLOCK DRIVER
9792 M:      Luca Ceresoli <luca@lucaceresoli.net>
9793 S:      Maintained
9794 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9795 F:      drivers/clk/clk-versaclock5.c
9796
9797 IEEE 802.15.4 SUBSYSTEM
9798 M:      Alexander Aring <alex.aring@gmail.com>
9799 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9800 L:      linux-wpan@vger.kernel.org
9801 S:      Maintained
9802 W:      https://linux-wpan.org/
9803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9805 F:      Documentation/networking/ieee802154.rst
9806 F:      drivers/net/ieee802154/
9807 F:      include/linux/ieee802154.h
9808 F:      include/linux/nl802154.h
9809 F:      include/net/af_ieee802154.h
9810 F:      include/net/cfg802154.h
9811 F:      include/net/ieee802154_netdev.h
9812 F:      include/net/mac802154.h
9813 F:      include/net/nl802154.h
9814 F:      net/ieee802154/
9815 F:      net/mac802154/
9816
9817 IFE PROTOCOL
9818 M:      Yotam Gigi <yotam.gi@gmail.com>
9819 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9820 F:      include/net/ife.h
9821 F:      include/uapi/linux/ife.h
9822 F:      net/ife
9823
9824 IGORPLUG-USB IR RECEIVER
9825 M:      Sean Young <sean@mess.org>
9826 L:      linux-media@vger.kernel.org
9827 S:      Maintained
9828 F:      drivers/media/rc/igorplugusb.c
9829
9830 IGUANAWORKS USB IR TRANSCEIVER
9831 M:      Sean Young <sean@mess.org>
9832 L:      linux-media@vger.kernel.org
9833 S:      Maintained
9834 F:      drivers/media/rc/iguanair.c
9835
9836 IIO DIGITAL POTENTIOMETER DAC
9837 M:      Peter Rosin <peda@axentia.se>
9838 L:      linux-iio@vger.kernel.org
9839 S:      Maintained
9840 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9841 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9842 F:      drivers/iio/dac/dpot-dac.c
9843
9844 IIO ENVELOPE DETECTOR
9845 M:      Peter Rosin <peda@axentia.se>
9846 L:      linux-iio@vger.kernel.org
9847 S:      Maintained
9848 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9849 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9850 F:      drivers/iio/adc/envelope-detector.c
9851
9852 IIO MULTIPLEXER
9853 M:      Peter Rosin <peda@axentia.se>
9854 L:      linux-iio@vger.kernel.org
9855 S:      Maintained
9856 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9857 F:      drivers/iio/multiplexer/iio-mux.c
9858
9859 IIO SCMI BASED DRIVER
9860 M:      Jyoti Bhayana <jbhayana@google.com>
9861 L:      linux-iio@vger.kernel.org
9862 S:      Maintained
9863 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9864
9865 IIO SUBSYSTEM AND DRIVERS
9866 M:      Jonathan Cameron <jic23@kernel.org>
9867 R:      Lars-Peter Clausen <lars@metafoo.de>
9868 L:      linux-iio@vger.kernel.org
9869 S:      Maintained
9870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9871 F:      Documentation/ABI/testing/configfs-iio*
9872 F:      Documentation/ABI/testing/sysfs-bus-iio*
9873 F:      Documentation/devicetree/bindings/iio/
9874 F:      drivers/iio/
9875 F:      drivers/staging/iio/
9876 F:      include/dt-bindings/iio/
9877 F:      include/linux/iio/
9878 F:      tools/iio/
9879
9880 IIO UNIT CONVERTER
9881 M:      Peter Rosin <peda@axentia.se>
9882 L:      linux-iio@vger.kernel.org
9883 S:      Maintained
9884 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9885 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9886 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9887 F:      drivers/iio/afe/iio-rescale.c
9888
9889 IKANOS/ADI EAGLE ADSL USB DRIVER
9890 M:      Matthieu Castet <castet.matthieu@free.fr>
9891 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9892 S:      Maintained
9893 F:      drivers/usb/atm/ueagle-atm.c
9894
9895 IMAGIS TOUCHSCREEN DRIVER
9896 M:      Markuss Broks <markuss.broks@gmail.com>
9897 S:      Maintained
9898 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9899 F:      drivers/input/touchscreen/imagis.c
9900
9901 IMGTEC ASCII LCD DRIVER
9902 M:      Paul Burton <paulburton@kernel.org>
9903 S:      Maintained
9904 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9905 F:      drivers/auxdisplay/img-ascii-lcd.c
9906
9907 IMGTEC IR DECODER DRIVER
9908 S:      Orphan
9909 F:      drivers/media/rc/img-ir/
9910
9911 IMON SOUNDGRAPH USB IR RECEIVER
9912 M:      Sean Young <sean@mess.org>
9913 L:      linux-media@vger.kernel.org
9914 S:      Maintained
9915 F:      drivers/media/rc/imon.c
9916 F:      drivers/media/rc/imon_raw.c
9917
9918 IMS TWINTURBO FRAMEBUFFER DRIVER
9919 L:      linux-fbdev@vger.kernel.org
9920 S:      Orphan
9921 F:      drivers/video/fbdev/imsttfb.c
9922
9923 INA209 HARDWARE MONITOR DRIVER
9924 M:      Guenter Roeck <linux@roeck-us.net>
9925 L:      linux-hwmon@vger.kernel.org
9926 S:      Maintained
9927 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9928 F:      Documentation/hwmon/ina209.rst
9929 F:      drivers/hwmon/ina209.c
9930
9931 INA2XX HARDWARE MONITOR DRIVER
9932 M:      Guenter Roeck <linux@roeck-us.net>
9933 L:      linux-hwmon@vger.kernel.org
9934 S:      Maintained
9935 F:      Documentation/hwmon/ina2xx.rst
9936 F:      drivers/hwmon/ina2xx.c
9937 F:      include/linux/platform_data/ina2xx.h
9938
9939 INDUSTRY PACK SUBSYSTEM (IPACK)
9940 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9941 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9942 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9943 L:      industrypack-devel@lists.sourceforge.net
9944 S:      Maintained
9945 W:      http://industrypack.sourceforge.net
9946 F:      drivers/ipack/
9947
9948 INFINEON DPS310 Driver
9949 M:      Eddie James <eajames@linux.ibm.com>
9950 L:      linux-iio@vger.kernel.org
9951 S:      Maintained
9952 F:      drivers/iio/pressure/dps310.c
9953
9954 INFINIBAND SUBSYSTEM
9955 M:      Jason Gunthorpe <jgg@nvidia.com>
9956 M:      Leon Romanovsky <leonro@nvidia.com>
9957 L:      linux-rdma@vger.kernel.org
9958 S:      Supported
9959 W:      https://github.com/linux-rdma/rdma-core
9960 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9962 F:      Documentation/devicetree/bindings/infiniband/
9963 F:      Documentation/infiniband/
9964 F:      drivers/infiniband/
9965 F:      include/rdma/
9966 F:      include/trace/events/ib_mad.h
9967 F:      include/trace/events/ib_umad.h
9968 F:      include/uapi/linux/if_infiniband.h
9969 F:      include/uapi/rdma/
9970 F:      samples/bpf/ibumad_kern.c
9971 F:      samples/bpf/ibumad_user.c
9972
9973 INGENIC JZ4780 NAND DRIVER
9974 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9975 L:      linux-mtd@lists.infradead.org
9976 L:      linux-mips@vger.kernel.org
9977 S:      Maintained
9978 F:      drivers/mtd/nand/raw/ingenic/
9979
9980 INGENIC JZ47xx SoCs
9981 M:      Paul Cercueil <paul@crapouillou.net>
9982 L:      linux-mips@vger.kernel.org
9983 S:      Maintained
9984 F:      arch/mips/boot/dts/ingenic/
9985 F:      arch/mips/generic/board-ingenic.c
9986 F:      arch/mips/include/asm/mach-ingenic/
9987 F:      arch/mips/ingenic/Kconfig
9988 F:      drivers/clk/ingenic/
9989 F:      drivers/dma/dma-jz4780.c
9990 F:      drivers/gpu/drm/ingenic/
9991 F:      drivers/i2c/busses/i2c-jz4780.c
9992 F:      drivers/iio/adc/ingenic-adc.c
9993 F:      drivers/irqchip/irq-ingenic.c
9994 F:      drivers/memory/jz4780-nemc.c
9995 F:      drivers/mmc/host/jz4740_mmc.c
9996 F:      drivers/mtd/nand/raw/ingenic/
9997 F:      drivers/pinctrl/pinctrl-ingenic.c
9998 F:      drivers/power/supply/ingenic-battery.c
9999 F:      drivers/pwm/pwm-jz4740.c
10000 F:      drivers/remoteproc/ingenic_rproc.c
10001 F:      drivers/rtc/rtc-jz4740.c
10002 F:      drivers/tty/serial/8250/8250_ingenic.c
10003 F:      drivers/usb/musb/jz4740.c
10004 F:      drivers/watchdog/jz4740_wdt.c
10005 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10006 F:      include/linux/mfd/ingenic-tcu.h
10007 F:      sound/soc/codecs/jz47*
10008 F:      sound/soc/jz4740/
10009
10010 INJOINIC IP5xxx POWER BANK IC DRIVER
10011 M:      Samuel Holland <samuel@sholland.org>
10012 S:      Maintained
10013 F:      drivers/power/supply/ip5xxx_power.c
10014
10015 INOTIFY
10016 M:      Jan Kara <jack@suse.cz>
10017 R:      Amir Goldstein <amir73il@gmail.com>
10018 L:      linux-fsdevel@vger.kernel.org
10019 S:      Maintained
10020 F:      Documentation/filesystems/inotify.rst
10021 F:      fs/notify/inotify/
10022 F:      include/linux/inotify.h
10023 F:      include/uapi/linux/inotify.h
10024
10025 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10026 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10027 L:      linux-input@vger.kernel.org
10028 S:      Maintained
10029 Q:      http://patchwork.kernel.org/project/linux-input/list/
10030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10031 F:      Documentation/devicetree/bindings/input/
10032 F:      Documentation/devicetree/bindings/serio/
10033 F:      Documentation/input/
10034 F:      drivers/input/
10035 F:      include/dt-bindings/input/
10036 F:      include/linux/input.h
10037 F:      include/linux/input/
10038 F:      include/uapi/linux/input-event-codes.h
10039 F:      include/uapi/linux/input.h
10040
10041 INPUT MULTITOUCH (MT) PROTOCOL
10042 M:      Henrik Rydberg <rydberg@bitmath.org>
10043 L:      linux-input@vger.kernel.org
10044 S:      Odd fixes
10045 F:      Documentation/input/multi-touch-protocol.rst
10046 F:      drivers/input/input-mt.c
10047 K:      \b(ABS|SYN)_MT_
10048
10049 INSIDE SECURE CRYPTO DRIVER
10050 M:      Antoine Tenart <atenart@kernel.org>
10051 L:      linux-crypto@vger.kernel.org
10052 S:      Maintained
10053 F:      drivers/crypto/inside-secure/
10054
10055 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10056 M:      Mimi Zohar <zohar@linux.ibm.com>
10057 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10058 L:      linux-integrity@vger.kernel.org
10059 S:      Supported
10060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10061 F:      security/integrity/ima/
10062 F:      security/integrity/
10063
10064 INTEL 810/815 FRAMEBUFFER DRIVER
10065 M:      Antonino Daplas <adaplas@gmail.com>
10066 L:      linux-fbdev@vger.kernel.org
10067 S:      Maintained
10068 F:      drivers/video/fbdev/i810/
10069
10070 INTEL 8255 GPIO DRIVER
10071 M:      William Breathitt Gray <william.gray@linaro.org>
10072 L:      linux-gpio@vger.kernel.org
10073 S:      Maintained
10074 F:      drivers/gpio/gpio-i8255.c
10075 F:      drivers/gpio/gpio-i8255.h
10076
10077 INTEL ASoC DRIVERS
10078 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10079 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10080 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10081 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10082 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10083 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10084 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10085 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10086 S:      Supported
10087 F:      sound/soc/intel/
10088
10089 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10090 M:      Hans de Goede <hdegoede@redhat.com>
10091 L:      platform-driver-x86@vger.kernel.org
10092 S:      Maintained
10093 F:      drivers/platform/x86/intel/atomisp2/pm.c
10094
10095 INTEL ATOMISP2 LED DRIVER
10096 M:      Hans de Goede <hdegoede@redhat.com>
10097 L:      platform-driver-x86@vger.kernel.org
10098 S:      Maintained
10099 F:      drivers/platform/x86/intel/atomisp2/led.c
10100
10101 INTEL BIOS SAR INT1092 DRIVER
10102 M:      Shravan Sudhakar <s.shravan@intel.com>
10103 M:      Intel Corporation <linuxwwan@intel.com>
10104 L:      platform-driver-x86@vger.kernel.org
10105 S:      Maintained
10106 F:      drivers/platform/x86/intel/int1092/
10107
10108 INTEL BROXTON PMC DRIVER
10109 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10110 M:      Zha Qipeng <qipeng.zha@intel.com>
10111 S:      Maintained
10112 F:      drivers/mfd/intel_pmc_bxt.c
10113 F:      include/linux/mfd/intel_pmc_bxt.h
10114
10115 INTEL C600 SERIES SAS CONTROLLER DRIVER
10116 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10117 L:      linux-scsi@vger.kernel.org
10118 S:      Supported
10119 T:      git git://git.code.sf.net/p/intel-sas/isci
10120 F:      drivers/scsi/isci/
10121
10122 INTEL CPU family model numbers
10123 M:      Tony Luck <tony.luck@intel.com>
10124 M:      x86@kernel.org
10125 L:      linux-kernel@vger.kernel.org
10126 S:      Supported
10127 F:      arch/x86/include/asm/intel-family.h
10128
10129 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10130 M:      Jani Nikula <jani.nikula@linux.intel.com>
10131 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10132 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10133 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10134 L:      intel-gfx@lists.freedesktop.org
10135 S:      Supported
10136 W:      https://01.org/linuxgraphics/
10137 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10138 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10139 C:      irc://irc.oftc.net/intel-gfx
10140 T:      git git://anongit.freedesktop.org/drm-intel
10141 F:      Documentation/gpu/i915.rst
10142 F:      drivers/gpu/drm/i915/
10143 F:      include/drm/i915*
10144 F:      include/uapi/drm/i915_drm.h
10145
10146 INTEL ETHERNET DRIVERS
10147 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10148 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10149 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10150 S:      Supported
10151 W:      http://www.intel.com/support/feedback.htm
10152 W:      http://e1000.sourceforge.net/
10153 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10156 F:      Documentation/networking/device_drivers/ethernet/intel/
10157 F:      drivers/net/ethernet/intel/
10158 F:      drivers/net/ethernet/intel/*/
10159 F:      include/linux/avf/virtchnl.h
10160 F:      include/linux/net/intel/iidc.h
10161
10162 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10163 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10164 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10165 L:      linux-rdma@vger.kernel.org
10166 S:      Supported
10167 F:      drivers/infiniband/hw/irdma/
10168 F:      include/uapi/rdma/irdma-abi.h
10169
10170 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10171 M:      Maik Broemme <mbroemme@libmpq.org>
10172 L:      linux-fbdev@vger.kernel.org
10173 S:      Maintained
10174 F:      Documentation/fb/intelfb.rst
10175 F:      drivers/video/fbdev/intelfb/
10176
10177 INTEL GPIO DRIVERS
10178 M:      Andy Shevchenko <andy@kernel.org>
10179 L:      linux-gpio@vger.kernel.org
10180 S:      Supported
10181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10182 F:      drivers/gpio/gpio-ich.c
10183 F:      drivers/gpio/gpio-merrifield.c
10184 F:      drivers/gpio/gpio-ml-ioh.c
10185 F:      drivers/gpio/gpio-pch.c
10186 F:      drivers/gpio/gpio-sch.c
10187 F:      drivers/gpio/gpio-sodaville.c
10188
10189 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10190 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10191 M:      Zhi Wang <zhi.a.wang@intel.com>
10192 L:      intel-gvt-dev@lists.freedesktop.org
10193 L:      intel-gfx@lists.freedesktop.org
10194 S:      Supported
10195 W:      https://01.org/igvt-g
10196 T:      git https://github.com/intel/gvt-linux.git
10197 F:      drivers/gpu/drm/i915/gvt/
10198
10199 INTEL HID EVENT DRIVER
10200 M:      Alex Hung <alex.hung@canonical.com>
10201 L:      platform-driver-x86@vger.kernel.org
10202 S:      Maintained
10203 F:      drivers/platform/x86/intel/hid.c
10204
10205 INTEL I/OAT DMA DRIVER
10206 M:      Dave Jiang <dave.jiang@intel.com>
10207 R:      Dan Williams <dan.j.williams@intel.com>
10208 L:      dmaengine@vger.kernel.org
10209 S:      Supported
10210 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10211 F:      drivers/dma/ioat*
10212
10213 INTEL IDXD DRIVER
10214 M:      Fenghua Yu <fenghua.yu@intel.com>
10215 M:      Dave Jiang <dave.jiang@intel.com>
10216 L:      dmaengine@vger.kernel.org
10217 S:      Supported
10218 F:      drivers/dma/idxd/*
10219 F:      include/uapi/linux/idxd.h
10220
10221 INTEL IDLE DRIVER
10222 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10223 M:      Len Brown <lenb@kernel.org>
10224 L:      linux-pm@vger.kernel.org
10225 S:      Supported
10226 B:      https://bugzilla.kernel.org
10227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10228 F:      drivers/idle/intel_idle.c
10229
10230 INTEL IN FIELD SCAN (IFS) DEVICE
10231 M:      Jithu Joseph <jithu.joseph@intel.com>
10232 R:      Ashok Raj <ashok.raj@intel.com>
10233 R:      Tony Luck <tony.luck@intel.com>
10234 S:      Maintained
10235 F:      drivers/platform/x86/intel/ifs
10236 F:      include/trace/events/intel_ifs.h
10237
10238 INTEL INTEGRATED SENSOR HUB DRIVER
10239 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10240 M:      Jiri Kosina <jikos@kernel.org>
10241 L:      linux-input@vger.kernel.org
10242 S:      Maintained
10243 F:      drivers/hid/intel-ish-hid/
10244
10245 INTEL IOMMU (VT-d)
10246 M:      David Woodhouse <dwmw2@infradead.org>
10247 M:      Lu Baolu <baolu.lu@linux.intel.com>
10248 L:      iommu@lists.linux.dev
10249 S:      Supported
10250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10251 F:      drivers/iommu/intel/
10252 F:      include/linux/intel-svm.h
10253
10254 INTEL IOP-ADMA DMA DRIVER
10255 R:      Dan Williams <dan.j.williams@intel.com>
10256 S:      Odd fixes
10257 F:      drivers/dma/iop-adma.c
10258
10259 INTEL IPU3 CSI-2 CIO2 DRIVER
10260 M:      Yong Zhi <yong.zhi@intel.com>
10261 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10262 M:      Bingbu Cao <bingbu.cao@intel.com>
10263 M:      Dan Scally <djrscally@gmail.com>
10264 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10265 L:      linux-media@vger.kernel.org
10266 S:      Maintained
10267 T:      git git://linuxtv.org/media_tree.git
10268 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10269 F:      drivers/media/pci/intel/ipu3/
10270
10271 INTEL IPU3 CSI-2 IMGU DRIVER
10272 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10273 R:      Bingbu Cao <bingbu.cao@intel.com>
10274 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10275 L:      linux-media@vger.kernel.org
10276 S:      Maintained
10277 F:      Documentation/admin-guide/media/ipu3.rst
10278 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10279 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10280 F:      drivers/staging/media/ipu3/
10281
10282 INTEL IXP4XX CRYPTO SUPPORT
10283 M:      Corentin Labbe <clabbe@baylibre.com>
10284 L:      linux-crypto@vger.kernel.org
10285 S:      Maintained
10286 F:      drivers/crypto/ixp4xx_crypto.c
10287
10288 INTEL ISHTP ECLITE DRIVER
10289 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10290 L:      platform-driver-x86@vger.kernel.org
10291 S:      Supported
10292 F:      drivers/platform/x86/intel/ishtp_eclite.c
10293
10294 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10295 M:      Krzysztof Halasa <khalasa@piap.pl>
10296 S:      Maintained
10297 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10298 F:      drivers/net/wan/ixp4xx_hss.c
10299 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10300 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10301 F:      include/linux/soc/ixp4xx/npe.h
10302 F:      include/linux/soc/ixp4xx/qmgr.h
10303
10304 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10305 M:      Deepak Saxena <dsaxena@plexity.net>
10306 S:      Maintained
10307 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10308 F:      drivers/char/hw_random/ixp4xx-rng.c
10309
10310 INTEL KEEM BAY DRM DRIVER
10311 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10312 M:      Edmund Dea <edmund.j.dea@intel.com>
10313 S:      Maintained
10314 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10315 F:      drivers/gpu/drm/kmb/
10316
10317 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10318 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10319 S:      Maintained
10320 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10321 F:      drivers/crypto/keembay/Kconfig
10322 F:      drivers/crypto/keembay/Makefile
10323 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10324 F:      drivers/crypto/keembay/ocs-aes.c
10325 F:      drivers/crypto/keembay/ocs-aes.h
10326
10327 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10328 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10329 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10330 M:      Mark Gross <mgross@linux.intel.com>
10331 S:      Maintained
10332 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10333 F:      drivers/crypto/keembay/Kconfig
10334 F:      drivers/crypto/keembay/Makefile
10335 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10336
10337 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10338 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10339 M:      Declan Murphy <declan.murphy@intel.com>
10340 S:      Maintained
10341 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10342 F:      drivers/crypto/keembay/Kconfig
10343 F:      drivers/crypto/keembay/Makefile
10344 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10345 F:      drivers/crypto/keembay/ocs-hcu.c
10346 F:      drivers/crypto/keembay/ocs-hcu.h
10347
10348 INTEL THUNDER BAY EMMC PHY DRIVER
10349 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10350 M:      Rashmi A <rashmi.a@intel.com>
10351 S:      Maintained
10352 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10353 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10354
10355 INTEL MANAGEMENT ENGINE (mei)
10356 M:      Tomas Winkler <tomas.winkler@intel.com>
10357 L:      linux-kernel@vger.kernel.org
10358 S:      Supported
10359 F:      Documentation/driver-api/mei/*
10360 F:      drivers/misc/mei/
10361 F:      drivers/watchdog/mei_wdt.c
10362 F:      include/linux/mei_aux.h
10363 F:      include/linux/mei_cl_bus.h
10364 F:      include/uapi/linux/mei.h
10365 F:      samples/mei/*
10366
10367 INTEL MAX 10 BMC MFD DRIVER
10368 M:      Xu Yilun <yilun.xu@intel.com>
10369 R:      Tom Rix <trix@redhat.com>
10370 S:      Maintained
10371 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10372 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10373 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10374 F:      drivers/mfd/intel-m10-bmc.c
10375 F:      include/linux/mfd/intel-m10-bmc.h
10376
10377 INTEL MENLOW THERMAL DRIVER
10378 M:      Sujith Thomas <sujith.thomas@intel.com>
10379 L:      linux-pm@vger.kernel.org
10380 S:      Supported
10381 W:      https://01.org/linux-acpi
10382 F:      drivers/thermal/intel/intel_menlow.c
10383
10384 INTEL P-Unit IPC DRIVER
10385 M:      Zha Qipeng <qipeng.zha@intel.com>
10386 L:      platform-driver-x86@vger.kernel.org
10387 S:      Maintained
10388 F:      arch/x86/include/asm/intel_punit_ipc.h
10389 F:      drivers/platform/x86/intel/punit_ipc.c
10390
10391 INTEL PMC CORE DRIVER
10392 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10393 M:      David E Box <david.e.box@intel.com>
10394 L:      platform-driver-x86@vger.kernel.org
10395 S:      Maintained
10396 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10397 F:      drivers/platform/x86/intel/pmc/
10398
10399 INTEL PMIC GPIO DRIVERS
10400 M:      Andy Shevchenko <andy@kernel.org>
10401 S:      Supported
10402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10403 F:      drivers/gpio/gpio-*cove.c
10404
10405 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10406 M:      Andy Shevchenko <andy@kernel.org>
10407 S:      Supported
10408 F:      drivers/mfd/intel_soc_pmic*
10409 F:      include/linux/mfd/intel_soc_pmic*
10410
10411 INTEL PMT DRIVERS
10412 M:      David E. Box <david.e.box@linux.intel.com>
10413 S:      Supported
10414 F:      drivers/platform/x86/intel/pmt/
10415
10416 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10417 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10418 L:      linux-wireless@vger.kernel.org
10419 S:      Maintained
10420 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10421 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10422 F:      drivers/net/wireless/intel/ipw2x00/
10423
10424 INTEL PSTATE DRIVER
10425 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10426 M:      Len Brown <lenb@kernel.org>
10427 L:      linux-pm@vger.kernel.org
10428 S:      Supported
10429 F:      drivers/cpufreq/intel_pstate.c
10430
10431 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10432 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10433 L:      linux-iio@vger.kernel.org
10434 F:      drivers/counter/intel-qep.c
10435
10436 INTEL SCU DRIVERS
10437 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10438 S:      Maintained
10439 F:      arch/x86/include/asm/intel_scu_ipc.h
10440 F:      drivers/platform/x86/intel_scu_*
10441
10442 INTEL SDSI DRIVER
10443 M:      David E. Box <david.e.box@linux.intel.com>
10444 S:      Supported
10445 F:      drivers/platform/x86/intel/sdsi.c
10446 F:      tools/arch/x86/intel_sdsi/
10447 F:      tools/testing/selftests/drivers/sdsi/
10448
10449 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10450 M:      Daniel Scally <djrscally@gmail.com>
10451 S:      Maintained
10452 F:      drivers/platform/x86/intel/int3472/
10453
10454 INTEL SPEED SELECT TECHNOLOGY
10455 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10456 L:      platform-driver-x86@vger.kernel.org
10457 S:      Maintained
10458 F:      drivers/platform/x86/intel/speed_select_if/
10459 F:      include/uapi/linux/isst_if.h
10460 F:      tools/power/x86/intel-speed-select/
10461
10462 INTEL STRATIX10 FIRMWARE DRIVERS
10463 M:      Dinh Nguyen <dinguyen@kernel.org>
10464 L:      linux-kernel@vger.kernel.org
10465 S:      Maintained
10466 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10467 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10468 F:      drivers/firmware/stratix10-rsu.c
10469 F:      drivers/firmware/stratix10-svc.c
10470 F:      include/linux/firmware/intel/stratix10-smc.h
10471 F:      include/linux/firmware/intel/stratix10-svc-client.h
10472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10473
10474 INTEL TELEMETRY DRIVER
10475 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10476 M:      "David E. Box" <david.e.box@linux.intel.com>
10477 L:      platform-driver-x86@vger.kernel.org
10478 S:      Maintained
10479 F:      arch/x86/include/asm/intel_telemetry.h
10480 F:      drivers/platform/x86/intel/telemetry/
10481
10482 INTEL UNCORE FREQUENCY CONTROL
10483 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10484 L:      platform-driver-x86@vger.kernel.org
10485 S:      Maintained
10486 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10487 F:      drivers/platform/x86/intel/uncore-frequency/
10488
10489 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10490 M:      David E. Box <david.e.box@linux.intel.com>
10491 S:      Supported
10492 F:      drivers/platform/x86/intel/vsec.*
10493
10494 INTEL VIRTUAL BUTTON DRIVER
10495 M:      AceLan Kao <acelan.kao@canonical.com>
10496 L:      platform-driver-x86@vger.kernel.org
10497 S:      Maintained
10498 F:      drivers/platform/x86/intel/vbtn.c
10499
10500 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10501 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10502 L:      linux-wireless@vger.kernel.org
10503 S:      Supported
10504 F:      drivers/net/wireless/intel/iwlegacy/
10505
10506 INTEL WIRELESS WIFI LINK (iwlwifi)
10507 M:      Gregory Greenman <gregory.greenman@intel.com>
10508 L:      linux-wireless@vger.kernel.org
10509 S:      Supported
10510 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10512 F:      drivers/net/wireless/intel/iwlwifi/
10513
10514 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10515 M:      Jithu Joseph <jithu.joseph@intel.com>
10516 R:      Maurice Ma <maurice.ma@intel.com>
10517 S:      Maintained
10518 W:      https://slimbootloader.github.io/security/firmware-update.html
10519 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10520
10521 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10522 L:      Dell.Client.Kernel@dell.com
10523 S:      Maintained
10524 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10525
10526 INTEL WWAN IOSM DRIVER
10527 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10528 M:      Intel Corporation <linuxwwan@intel.com>
10529 L:      netdev@vger.kernel.org
10530 S:      Maintained
10531 F:      drivers/net/wwan/iosm/
10532
10533 INTEL(R) TRACE HUB
10534 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10535 S:      Supported
10536 F:      Documentation/trace/intel_th.rst
10537 F:      drivers/hwtracing/intel_th/
10538 F:      include/linux/intel_th.h
10539
10540 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10541 M:      Ning Sun <ning.sun@intel.com>
10542 L:      tboot-devel@lists.sourceforge.net
10543 S:      Supported
10544 W:      http://tboot.sourceforge.net
10545 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10546 F:      Documentation/x86/intel_txt.rst
10547 F:      arch/x86/kernel/tboot.c
10548 F:      include/linux/tboot.h
10549
10550 INTEL SGX
10551 M:      Jarkko Sakkinen <jarkko@kernel.org>
10552 R:      Dave Hansen <dave.hansen@linux.intel.com>
10553 L:      linux-sgx@vger.kernel.org
10554 S:      Supported
10555 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10557 F:      Documentation/x86/sgx.rst
10558 F:      arch/x86/entry/vdso/vsgx.S
10559 F:      arch/x86/include/asm/sgx.h
10560 F:      arch/x86/include/uapi/asm/sgx.h
10561 F:      arch/x86/kernel/cpu/sgx/*
10562 F:      tools/testing/selftests/sgx/*
10563 K:      \bSGX_
10564
10565 INTERCONNECT API
10566 M:      Georgi Djakov <djakov@kernel.org>
10567 L:      linux-pm@vger.kernel.org
10568 S:      Maintained
10569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10570 F:      Documentation/devicetree/bindings/interconnect/
10571 F:      Documentation/driver-api/interconnect.rst
10572 F:      drivers/interconnect/
10573 F:      include/dt-bindings/interconnect/
10574 F:      include/linux/interconnect-provider.h
10575 F:      include/linux/interconnect.h
10576
10577 INTERRUPT COUNTER DRIVER
10578 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10579 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10580 L:      linux-iio@vger.kernel.org
10581 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10582 F:      drivers/counter/interrupt-cnt.c
10583
10584 INTERSIL ISL7998X VIDEO DECODER DRIVER
10585 M:      Michael Tretter <m.tretter@pengutronix.de>
10586 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10587 L:      linux-media@vger.kernel.org
10588 S:      Maintained
10589 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10590 F:      drivers/media/i2c/isl7998x.c
10591
10592 INVENSENSE ICM-426xx IMU DRIVER
10593 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10594 L:      linux-iio@vger.kernel.org
10595 S:      Maintained
10596 W:      https://invensense.tdk.com/
10597 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10598 F:      drivers/iio/imu/inv_icm42600/
10599
10600 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10601 M:      Linus Walleij <linus.walleij@linaro.org>
10602 L:      linux-iio@vger.kernel.org
10603 S:      Maintained
10604 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10605 F:      drivers/iio/gyro/mpu3050*
10606
10607 IOC3 ETHERNET DRIVER
10608 M:      Ralf Baechle <ralf@linux-mips.org>
10609 L:      linux-mips@vger.kernel.org
10610 S:      Maintained
10611 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10612
10613 IOMAP FILESYSTEM LIBRARY
10614 M:      Christoph Hellwig <hch@infradead.org>
10615 M:      Darrick J. Wong <djwong@kernel.org>
10616 L:      linux-xfs@vger.kernel.org
10617 L:      linux-fsdevel@vger.kernel.org
10618 S:      Supported
10619 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10620 F:      fs/iomap/
10621 F:      include/linux/iomap.h
10622
10623 IOMMU DMA-API LAYER
10624 M:      Robin Murphy <robin.murphy@arm.com>
10625 L:      iommu@lists.linux.dev
10626 S:      Maintained
10627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10628 F:      drivers/iommu/dma-iommu.c
10629 F:      drivers/iommu/iova.c
10630 F:      include/linux/dma-iommu.h
10631 F:      include/linux/iova.h
10632
10633 IOMMU SUBSYSTEM
10634 M:      Joerg Roedel <joro@8bytes.org>
10635 M:      Will Deacon <will@kernel.org>
10636 R:      Robin Murphy <robin.murphy@arm.com>
10637 L:      iommu@lists.linux.dev
10638 S:      Maintained
10639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10640 F:      Documentation/devicetree/bindings/iommu/
10641 F:      Documentation/userspace-api/iommu.rst
10642 F:      drivers/iommu/
10643 F:      include/linux/iommu.h
10644 F:      include/linux/iova.h
10645 F:      include/linux/of_iommu.h
10646 F:      include/uapi/linux/iommu.h
10647
10648 IOSYS-MAP HELPERS
10649 M:      Thomas Zimmermann <tzimmermann@suse.de>
10650 L:      dri-devel@lists.freedesktop.org
10651 S:      Maintained
10652 T:      git git://anongit.freedesktop.org/drm/drm-misc
10653 F:      include/linux/iosys-map.h
10654
10655 IO_URING
10656 M:      Jens Axboe <axboe@kernel.dk>
10657 R:      Pavel Begunkov <asml.silence@gmail.com>
10658 L:      io-uring@vger.kernel.org
10659 S:      Maintained
10660 T:      git git://git.kernel.dk/linux-block
10661 T:      git git://git.kernel.dk/liburing
10662 F:      io_uring/
10663 F:      include/linux/io_uring.h
10664 F:      include/linux/io_uring_types.h
10665 F:      include/uapi/linux/io_uring.h
10666 F:      tools/io_uring/
10667
10668 IPMI SUBSYSTEM
10669 M:      Corey Minyard <minyard@acm.org>
10670 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10671 S:      Supported
10672 W:      http://openipmi.sourceforge.net/
10673 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10674 F:      Documentation/driver-api/ipmi.rst
10675 F:      Documentation/devicetree/bindings/ipmi/
10676 F:      drivers/char/ipmi/
10677 F:      include/linux/ipmi*
10678 F:      include/uapi/linux/ipmi*
10679
10680 IPS SCSI RAID DRIVER
10681 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10682 L:      linux-scsi@vger.kernel.org
10683 S:      Maintained
10684 W:      http://www.adaptec.com/
10685 F:      drivers/scsi/ips*
10686
10687 IPVS
10688 M:      Simon Horman <horms@verge.net.au>
10689 M:      Julian Anastasov <ja@ssi.bg>
10690 L:      netdev@vger.kernel.org
10691 L:      lvs-devel@vger.kernel.org
10692 S:      Maintained
10693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10695 F:      Documentation/networking/ipvs-sysctl.rst
10696 F:      include/net/ip_vs.h
10697 F:      include/uapi/linux/ip_vs.h
10698 F:      net/netfilter/ipvs/
10699
10700 IPWIRELESS DRIVER
10701 M:      Jiri Kosina <jikos@kernel.org>
10702 M:      David Sterba <dsterba@suse.com>
10703 S:      Odd Fixes
10704 F:      drivers/tty/ipwireless/
10705
10706 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10707 M:      Marc Zyngier <maz@kernel.org>
10708 S:      Maintained
10709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10710 F:      Documentation/core-api/irq/irq-domain.rst
10711 F:      include/linux/irqdomain.h
10712 F:      kernel/irq/irqdomain.c
10713 F:      kernel/irq/msi.c
10714
10715 IRQ SUBSYSTEM
10716 M:      Thomas Gleixner <tglx@linutronix.de>
10717 L:      linux-kernel@vger.kernel.org
10718 S:      Maintained
10719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10720 F:      kernel/irq/
10721
10722 IRQCHIP DRIVERS
10723 M:      Thomas Gleixner <tglx@linutronix.de>
10724 M:      Marc Zyngier <maz@kernel.org>
10725 L:      linux-kernel@vger.kernel.org
10726 S:      Maintained
10727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10728 F:      Documentation/devicetree/bindings/interrupt-controller/
10729 F:      drivers/irqchip/
10730
10731 ISA
10732 M:      William Breathitt Gray <william.gray@linaro.org>
10733 S:      Maintained
10734 F:      Documentation/driver-api/isa.rst
10735 F:      drivers/base/isa.c
10736 F:      include/linux/isa.h
10737
10738 ISA RADIO MODULE
10739 M:      Hans Verkuil <hverkuil@xs4all.nl>
10740 L:      linux-media@vger.kernel.org
10741 S:      Maintained
10742 W:      https://linuxtv.org
10743 T:      git git://linuxtv.org/media_tree.git
10744 F:      drivers/media/radio/radio-isa*
10745
10746 ISAPNP
10747 M:      Jaroslav Kysela <perex@perex.cz>
10748 S:      Maintained
10749 F:      Documentation/driver-api/isapnp.rst
10750 F:      drivers/pnp/isapnp/
10751 F:      include/linux/isapnp.h
10752
10753 ISCSI
10754 M:      Lee Duncan <lduncan@suse.com>
10755 M:      Chris Leech <cleech@redhat.com>
10756 M:      Mike Christie <michael.christie@oracle.com>
10757 L:      open-iscsi@googlegroups.com
10758 L:      linux-scsi@vger.kernel.org
10759 S:      Maintained
10760 W:      www.open-iscsi.com
10761 F:      drivers/scsi/*iscsi*
10762 F:      include/scsi/*iscsi*
10763
10764 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10765 M:      Peter Jones <pjones@redhat.com>
10766 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10767 S:      Maintained
10768 F:      drivers/firmware/iscsi_ibft*
10769
10770 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10771 M:      Sagi Grimberg <sagi@grimberg.me>
10772 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10773 L:      linux-rdma@vger.kernel.org
10774 S:      Supported
10775 W:      http://www.openfabrics.org
10776 W:      www.open-iscsi.org
10777 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10778 F:      drivers/infiniband/ulp/iser/
10779
10780 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10781 M:      Sagi Grimberg <sagi@grimberg.me>
10782 L:      linux-rdma@vger.kernel.org
10783 L:      target-devel@vger.kernel.org
10784 S:      Supported
10785 W:      http://www.linux-iscsi.org
10786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10787 F:      drivers/infiniband/ulp/isert
10788
10789 ISDN/CMTP OVER BLUETOOTH
10790 M:      Karsten Keil <isdn@linux-pingi.de>
10791 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10792 L:      netdev@vger.kernel.org
10793 S:      Odd Fixes
10794 W:      http://www.isdn4linux.de
10795 F:      Documentation/isdn/
10796 F:      drivers/isdn/capi/
10797 F:      include/linux/isdn/
10798 F:      include/uapi/linux/isdn/
10799 F:      net/bluetooth/cmtp/
10800
10801 ISDN/mISDN SUBSYSTEM
10802 M:      Karsten Keil <isdn@linux-pingi.de>
10803 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10804 L:      netdev@vger.kernel.org
10805 S:      Maintained
10806 W:      http://www.isdn4linux.de
10807 F:      drivers/isdn/Kconfig
10808 F:      drivers/isdn/Makefile
10809 F:      drivers/isdn/hardware/
10810 F:      drivers/isdn/mISDN/
10811
10812 IT87 HARDWARE MONITORING DRIVER
10813 M:      Jean Delvare <jdelvare@suse.com>
10814 L:      linux-hwmon@vger.kernel.org
10815 S:      Maintained
10816 F:      Documentation/hwmon/it87.rst
10817 F:      drivers/hwmon/it87.c
10818
10819 IT913X MEDIA DRIVER
10820 M:      Antti Palosaari <crope@iki.fi>
10821 L:      linux-media@vger.kernel.org
10822 S:      Maintained
10823 W:      https://linuxtv.org
10824 W:      http://palosaari.fi/linux/
10825 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10826 T:      git git://linuxtv.org/anttip/media_tree.git
10827 F:      drivers/media/tuners/it913x*
10828
10829 ITE IT66121 HDMI BRIDGE DRIVER
10830 M:      Phong LE <ple@baylibre.com>
10831 M:      Neil Armstrong <narmstrong@baylibre.com>
10832 S:      Maintained
10833 T:      git git://anongit.freedesktop.org/drm/drm-misc
10834 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10835 F:      drivers/gpu/drm/bridge/ite-it66121.c
10836
10837 IVTV VIDEO4LINUX DRIVER
10838 M:      Andy Walls <awalls@md.metrocast.net>
10839 L:      linux-media@vger.kernel.org
10840 S:      Maintained
10841 W:      https://linuxtv.org
10842 T:      git git://linuxtv.org/media_tree.git
10843 F:      Documentation/admin-guide/media/ivtv*
10844 F:      drivers/media/pci/ivtv/
10845 F:      include/uapi/linux/ivtv*
10846
10847 IX2505V MEDIA DRIVER
10848 M:      Malcolm Priestley <tvboxspy@gmail.com>
10849 L:      linux-media@vger.kernel.org
10850 S:      Maintained
10851 W:      https://linuxtv.org
10852 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10853 F:      drivers/media/dvb-frontends/ix2505v*
10854
10855 JAILHOUSE HYPERVISOR INTERFACE
10856 M:      Jan Kiszka <jan.kiszka@siemens.com>
10857 L:      jailhouse-dev@googlegroups.com
10858 S:      Maintained
10859 F:      arch/x86/include/asm/jailhouse_para.h
10860 F:      arch/x86/kernel/jailhouse.c
10861
10862 JC42.4 TEMPERATURE SENSOR DRIVER
10863 M:      Guenter Roeck <linux@roeck-us.net>
10864 L:      linux-hwmon@vger.kernel.org
10865 S:      Maintained
10866 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10867 F:      Documentation/hwmon/jc42.rst
10868 F:      drivers/hwmon/jc42.c
10869
10870 JFS FILESYSTEM
10871 M:      Dave Kleikamp <shaggy@kernel.org>
10872 L:      jfs-discussion@lists.sourceforge.net
10873 S:      Maintained
10874 W:      http://jfs.sourceforge.net/
10875 T:      git git://github.com/kleikamp/linux-shaggy.git
10876 F:      Documentation/admin-guide/jfs.rst
10877 F:      fs/jfs/
10878
10879 JME NETWORK DRIVER
10880 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10881 L:      netdev@vger.kernel.org
10882 S:      Maintained
10883 F:      drivers/net/ethernet/jme.*
10884
10885 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10886 M:      David Woodhouse <dwmw2@infradead.org>
10887 M:      Richard Weinberger <richard@nod.at>
10888 L:      linux-mtd@lists.infradead.org
10889 S:      Odd Fixes
10890 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10891 T:      git git://git.infradead.org/ubifs-2.6.git
10892 F:      fs/jffs2/
10893 F:      include/uapi/linux/jffs2.h
10894
10895 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10896 M:      "Theodore Ts'o" <tytso@mit.edu>
10897 M:      Jan Kara <jack@suse.com>
10898 L:      linux-ext4@vger.kernel.org
10899 S:      Maintained
10900 F:      fs/jbd2/
10901 F:      include/linux/jbd2.h
10902
10903 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10904 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10905 L:      linux-media@vger.kernel.org
10906 L:      linux-renesas-soc@vger.kernel.org
10907 S:      Maintained
10908 F:      drivers/media/platform/renesas/rcar_jpu.c
10909
10910 JSM Neo PCI based serial card
10911 L:      linux-serial@vger.kernel.org
10912 S:      Orphan
10913 F:      drivers/tty/serial/jsm/
10914
10915 K10TEMP HARDWARE MONITORING DRIVER
10916 M:      Clemens Ladisch <clemens@ladisch.de>
10917 L:      linux-hwmon@vger.kernel.org
10918 S:      Maintained
10919 F:      Documentation/hwmon/k10temp.rst
10920 F:      drivers/hwmon/k10temp.c
10921
10922 K8TEMP HARDWARE MONITORING DRIVER
10923 M:      Rudolf Marek <r.marek@assembler.cz>
10924 L:      linux-hwmon@vger.kernel.org
10925 S:      Maintained
10926 F:      Documentation/hwmon/k8temp.rst
10927 F:      drivers/hwmon/k8temp.c
10928
10929 KASAN
10930 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10931 R:      Alexander Potapenko <glider@google.com>
10932 R:      Andrey Konovalov <andreyknvl@gmail.com>
10933 R:      Dmitry Vyukov <dvyukov@google.com>
10934 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10935 L:      kasan-dev@googlegroups.com
10936 S:      Maintained
10937 F:      Documentation/dev-tools/kasan.rst
10938 F:      arch/*/include/asm/*kasan.h
10939 F:      arch/*/mm/kasan_init*
10940 F:      include/linux/kasan*.h
10941 F:      lib/Kconfig.kasan
10942 F:      lib/test_kasan*.c
10943 F:      mm/kasan/
10944 F:      scripts/Makefile.kasan
10945
10946 KCONFIG
10947 M:      Masahiro Yamada <masahiroy@kernel.org>
10948 L:      linux-kbuild@vger.kernel.org
10949 S:      Maintained
10950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10951 F:      Documentation/kbuild/kconfig*
10952 F:      scripts/Kconfig.include
10953 F:      scripts/kconfig/
10954
10955 KCOV
10956 R:      Dmitry Vyukov <dvyukov@google.com>
10957 R:      Andrey Konovalov <andreyknvl@gmail.com>
10958 L:      kasan-dev@googlegroups.com
10959 S:      Maintained
10960 F:      Documentation/dev-tools/kcov.rst
10961 F:      include/linux/kcov.h
10962 F:      include/uapi/linux/kcov.h
10963 F:      kernel/kcov.c
10964 F:      scripts/Makefile.kcov
10965
10966 KCSAN
10967 M:      Marco Elver <elver@google.com>
10968 R:      Dmitry Vyukov <dvyukov@google.com>
10969 L:      kasan-dev@googlegroups.com
10970 S:      Maintained
10971 F:      Documentation/dev-tools/kcsan.rst
10972 F:      include/linux/kcsan*.h
10973 F:      kernel/kcsan/
10974 F:      lib/Kconfig.kcsan
10975 F:      scripts/Makefile.kcsan
10976
10977 KDUMP
10978 M:      Baoquan He <bhe@redhat.com>
10979 R:      Vivek Goyal <vgoyal@redhat.com>
10980 R:      Dave Young <dyoung@redhat.com>
10981 L:      kexec@lists.infradead.org
10982 S:      Maintained
10983 W:      http://lse.sourceforge.net/kdump/
10984 F:      Documentation/admin-guide/kdump/
10985 F:      fs/proc/vmcore.c
10986 F:      include/linux/crash_core.h
10987 F:      include/linux/crash_dump.h
10988 F:      include/uapi/linux/vmcore.h
10989 F:      kernel/crash_*.c
10990
10991 KEENE FM RADIO TRANSMITTER DRIVER
10992 M:      Hans Verkuil <hverkuil@xs4all.nl>
10993 L:      linux-media@vger.kernel.org
10994 S:      Maintained
10995 W:      https://linuxtv.org
10996 T:      git git://linuxtv.org/media_tree.git
10997 F:      drivers/media/radio/radio-keene*
10998
10999 KERNEL AUTOMOUNTER
11000 M:      Ian Kent <raven@themaw.net>
11001 L:      autofs@vger.kernel.org
11002 S:      Maintained
11003 F:      fs/autofs/
11004
11005 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11006 M:      Masahiro Yamada <masahiroy@kernel.org>
11007 M:      Michal Marek <michal.lkml@markovi.net>
11008 R:      Nick Desaulniers <ndesaulniers@google.com>
11009 L:      linux-kbuild@vger.kernel.org
11010 S:      Maintained
11011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11012 F:      Documentation/kbuild/
11013 F:      Makefile
11014 F:      scripts/*vmlinux*
11015 F:      scripts/Kbuild*
11016 F:      scripts/Makefile*
11017 F:      scripts/basic/
11018 F:      scripts/dummy-tools/
11019 F:      scripts/mk*
11020 F:      scripts/mod/
11021 F:      scripts/package/
11022
11023 KERNEL HARDENING (not covered by other areas)
11024 M:      Kees Cook <keescook@chromium.org>
11025 L:      linux-hardening@vger.kernel.org
11026 S:      Supported
11027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11028 F:      include/linux/overflow.h
11029 F:      include/linux/randomize_kstack.h
11030 F:      mm/usercopy.c
11031 K:      \b(add|choose)_random_kstack_offset\b
11032 K:      \b__check_(object_size|heap_object)\b
11033
11034 KERNEL JANITORS
11035 L:      kernel-janitors@vger.kernel.org
11036 S:      Odd Fixes
11037 W:      http://kernelnewbies.org/KernelJanitors
11038
11039 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11040 M:      Chuck Lever <chuck.lever@oracle.com>
11041 M:      Jeff Layton <jlayton@kernel.org>
11042 L:      linux-nfs@vger.kernel.org
11043 S:      Supported
11044 W:      http://nfs.sourceforge.net/
11045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11046 F:      fs/lockd/
11047 F:      fs/nfs_common/
11048 F:      fs/nfsd/
11049 F:      include/linux/lockd/
11050 F:      include/linux/sunrpc/
11051 F:      include/uapi/linux/nfsd/
11052 F:      include/uapi/linux/sunrpc/
11053 F:      net/sunrpc/
11054 F:      Documentation/filesystems/nfs/
11055
11056 KERNEL REGRESSIONS
11057 M:      Thorsten Leemhuis <linux@leemhuis.info>
11058 L:      regressions@lists.linux.dev
11059 S:      Supported
11060 F:      Documentation/admin-guide/reporting-regressions.rst
11061 F:      Documentation/process/handling-regressions.rst
11062
11063 KERNEL SELFTEST FRAMEWORK
11064 M:      Shuah Khan <shuah@kernel.org>
11065 M:      Shuah Khan <skhan@linuxfoundation.org>
11066 L:      linux-kselftest@vger.kernel.org
11067 S:      Maintained
11068 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11070 F:      Documentation/dev-tools/kselftest*
11071 F:      tools/testing/selftests/
11072
11073 KERNEL SMB3 SERVER (KSMBD)
11074 M:      Namjae Jeon <linkinjeon@kernel.org>
11075 M:      Steve French <sfrench@samba.org>
11076 M:      Hyunchul Lee <hyc.lee@gmail.com>
11077 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11078 L:      linux-cifs@vger.kernel.org
11079 S:      Maintained
11080 T:      git git://git.samba.org/ksmbd.git
11081 F:      Documentation/filesystems/cifs/ksmbd.rst
11082 F:      fs/ksmbd/
11083 F:      fs/smbfs_common/
11084
11085 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11086 M:      Brendan Higgins <brendanhiggins@google.com>
11087 M:      David Gow <davidgow@google.com>
11088 L:      linux-kselftest@vger.kernel.org
11089 L:      kunit-dev@googlegroups.com
11090 S:      Maintained
11091 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11092 F:      Documentation/dev-tools/kunit/
11093 F:      include/kunit/
11094 F:      lib/kunit/
11095 F:      tools/testing/kunit/
11096
11097 KERNEL USERMODE HELPER
11098 M:      Luis Chamberlain <mcgrof@kernel.org>
11099 L:      linux-kernel@vger.kernel.org
11100 S:      Maintained
11101 F:      include/linux/umh.h
11102 F:      kernel/umh.c
11103
11104 KERNEL VIRTUAL MACHINE (KVM)
11105 M:      Paolo Bonzini <pbonzini@redhat.com>
11106 L:      kvm@vger.kernel.org
11107 S:      Supported
11108 W:      http://www.linux-kvm.org
11109 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11110 F:      Documentation/virt/kvm/
11111 F:      include/asm-generic/kvm*
11112 F:      include/kvm/iodev.h
11113 F:      include/linux/kvm*
11114 F:      include/trace/events/kvm.h
11115 F:      include/uapi/asm-generic/kvm*
11116 F:      include/uapi/linux/kvm*
11117 F:      tools/kvm/
11118 F:      tools/testing/selftests/kvm/
11119 F:      virt/kvm/*
11120
11121 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11122 M:      Marc Zyngier <maz@kernel.org>
11123 R:      James Morse <james.morse@arm.com>
11124 R:      Alexandru Elisei <alexandru.elisei@arm.com>
11125 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11126 R:      Oliver Upton <oliver.upton@linux.dev>
11127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11128 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
11129 S:      Maintained
11130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11131 F:      arch/arm64/include/asm/kvm*
11132 F:      arch/arm64/include/uapi/asm/kvm*
11133 F:      arch/arm64/kvm/
11134 F:      include/kvm/arm_*
11135 F:      tools/testing/selftests/kvm/*/aarch64/
11136 F:      tools/testing/selftests/kvm/aarch64/
11137
11138 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11139 M:      Huacai Chen <chenhuacai@kernel.org>
11140 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11141 L:      linux-mips@vger.kernel.org
11142 L:      kvm@vger.kernel.org
11143 S:      Maintained
11144 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11145 F:      arch/mips/include/asm/kvm*
11146 F:      arch/mips/include/uapi/asm/kvm*
11147 F:      arch/mips/kvm/
11148
11149 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11150 L:      linuxppc-dev@lists.ozlabs.org
11151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11152 F:      arch/powerpc/include/asm/kvm*
11153 F:      arch/powerpc/include/uapi/asm/kvm*
11154 F:      arch/powerpc/kernel/kvm*
11155 F:      arch/powerpc/kvm/
11156
11157 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11158 M:      Anup Patel <anup@brainfault.org>
11159 R:      Atish Patra <atishp@atishpatra.org>
11160 L:      kvm@vger.kernel.org
11161 L:      kvm-riscv@lists.infradead.org
11162 L:      linux-riscv@lists.infradead.org
11163 S:      Maintained
11164 T:      git git://github.com/kvm-riscv/linux.git
11165 F:      arch/riscv/include/asm/kvm*
11166 F:      arch/riscv/include/uapi/asm/kvm*
11167 F:      arch/riscv/kvm/
11168 F:      tools/testing/selftests/kvm/*/riscv/
11169
11170 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11171 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11172 M:      Janosch Frank <frankja@linux.ibm.com>
11173 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11174 R:      David Hildenbrand <david@redhat.com>
11175 L:      kvm@vger.kernel.org
11176 S:      Supported
11177 W:      http://www.ibm.com/developerworks/linux/linux390/
11178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11179 F:      Documentation/virt/kvm/s390*
11180 F:      arch/s390/include/asm/gmap.h
11181 F:      arch/s390/include/asm/kvm*
11182 F:      arch/s390/include/uapi/asm/kvm*
11183 F:      arch/s390/include/uapi/asm/uvdevice.h
11184 F:      arch/s390/kernel/uv.c
11185 F:      arch/s390/kvm/
11186 F:      arch/s390/mm/gmap.c
11187 F:      drivers/s390/char/uvdevice.c
11188 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11189 F:      tools/testing/selftests/kvm/*/s390x/
11190 F:      tools/testing/selftests/kvm/s390x/
11191
11192 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11193 M:      Sean Christopherson <seanjc@google.com>
11194 M:      Paolo Bonzini <pbonzini@redhat.com>
11195 L:      kvm@vger.kernel.org
11196 S:      Supported
11197 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11198 F:      arch/x86/include/asm/kvm*
11199 F:      arch/x86/include/asm/svm.h
11200 F:      arch/x86/include/asm/vmx*.h
11201 F:      arch/x86/include/uapi/asm/kvm*
11202 F:      arch/x86/include/uapi/asm/svm.h
11203 F:      arch/x86/include/uapi/asm/vmx.h
11204 F:      arch/x86/kvm/
11205 F:      arch/x86/kvm/*/
11206
11207 KVM PARAVIRT (KVM/paravirt)
11208 M:      Paolo Bonzini <pbonzini@redhat.com>
11209 R:      Wanpeng Li <wanpengli@tencent.com>
11210 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11211 L:      kvm@vger.kernel.org
11212 S:      Supported
11213 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11214 F:      arch/x86/kernel/kvm.c
11215 F:      arch/x86/kernel/kvmclock.c
11216 F:      arch/x86/include/asm/pvclock-abi.h
11217 F:      include/linux/kvm_para.h
11218 F:      include/uapi/linux/kvm_para.h
11219 F:      include/uapi/asm-generic/kvm_para.h
11220 F:      include/asm-generic/kvm_para.h
11221 F:      arch/um/include/asm/kvm_para.h
11222 F:      arch/x86/include/asm/kvm_para.h
11223 F:      arch/x86/include/uapi/asm/kvm_para.h
11224
11225 KVM X86 HYPER-V (KVM/hyper-v)
11226 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11227 M:      Sean Christopherson <seanjc@google.com>
11228 M:      Paolo Bonzini <pbonzini@redhat.com>
11229 L:      kvm@vger.kernel.org
11230 S:      Supported
11231 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11232 F:      arch/x86/kvm/hyperv.*
11233 F:      arch/x86/kvm/kvm_onhyperv.*
11234 F:      arch/x86/kvm/svm/hyperv.*
11235 F:      arch/x86/kvm/svm/svm_onhyperv.*
11236 F:      arch/x86/kvm/vmx/evmcs.*
11237
11238 KERNFS
11239 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11240 M:      Tejun Heo <tj@kernel.org>
11241 S:      Supported
11242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11243 F:      fs/kernfs/
11244 F:      include/linux/kernfs.h
11245
11246 KEXEC
11247 M:      Eric Biederman <ebiederm@xmission.com>
11248 L:      kexec@lists.infradead.org
11249 S:      Maintained
11250 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11251 F:      include/linux/kexec.h
11252 F:      include/uapi/linux/kexec.h
11253 F:      kernel/kexec*
11254
11255 KEYS-ENCRYPTED
11256 M:      Mimi Zohar <zohar@linux.ibm.com>
11257 L:      linux-integrity@vger.kernel.org
11258 L:      keyrings@vger.kernel.org
11259 S:      Supported
11260 F:      Documentation/security/keys/trusted-encrypted.rst
11261 F:      include/keys/encrypted-type.h
11262 F:      security/keys/encrypted-keys/
11263
11264 KEYS-TRUSTED
11265 M:      James Bottomley <jejb@linux.ibm.com>
11266 M:      Jarkko Sakkinen <jarkko@kernel.org>
11267 M:      Mimi Zohar <zohar@linux.ibm.com>
11268 L:      linux-integrity@vger.kernel.org
11269 L:      keyrings@vger.kernel.org
11270 S:      Supported
11271 F:      Documentation/security/keys/trusted-encrypted.rst
11272 F:      include/keys/trusted-type.h
11273 F:      include/keys/trusted_tpm.h
11274 F:      security/keys/trusted-keys/
11275
11276 KEYS-TRUSTED-TEE
11277 M:      Sumit Garg <sumit.garg@linaro.org>
11278 L:      linux-integrity@vger.kernel.org
11279 L:      keyrings@vger.kernel.org
11280 S:      Supported
11281 F:      include/keys/trusted_tee.h
11282 F:      security/keys/trusted-keys/trusted_tee.c
11283
11284 KEYS-TRUSTED-CAAM
11285 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11286 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11287 L:      linux-integrity@vger.kernel.org
11288 L:      keyrings@vger.kernel.org
11289 S:      Maintained
11290 F:      include/keys/trusted_caam.h
11291 F:      security/keys/trusted-keys/trusted_caam.c
11292
11293 KEYS/KEYRINGS
11294 M:      David Howells <dhowells@redhat.com>
11295 M:      Jarkko Sakkinen <jarkko@kernel.org>
11296 L:      keyrings@vger.kernel.org
11297 S:      Maintained
11298 F:      Documentation/security/keys/core.rst
11299 F:      include/keys/
11300 F:      include/linux/key-type.h
11301 F:      include/linux/key.h
11302 F:      include/linux/keyctl.h
11303 F:      include/uapi/linux/keyctl.h
11304 F:      security/keys/
11305
11306 KEYS/KEYRINGS_INTEGRITY
11307 M:      Jarkko Sakkinen <jarkko@kernel.org>
11308 M:      Mimi Zohar <zohar@linux.ibm.com>
11309 L:      linux-integrity@vger.kernel.org
11310 L:      keyrings@vger.kernel.org
11311 S:      Supported
11312 F:      security/integrity/platform_certs
11313
11314 KFENCE
11315 M:      Alexander Potapenko <glider@google.com>
11316 M:      Marco Elver <elver@google.com>
11317 R:      Dmitry Vyukov <dvyukov@google.com>
11318 L:      kasan-dev@googlegroups.com
11319 S:      Maintained
11320 F:      Documentation/dev-tools/kfence.rst
11321 F:      arch/*/include/asm/kfence.h
11322 F:      include/linux/kfence.h
11323 F:      lib/Kconfig.kfence
11324 F:      mm/kfence/
11325
11326 KFIFO
11327 M:      Stefani Seibold <stefani@seibold.net>
11328 S:      Maintained
11329 F:      include/linux/kfifo.h
11330 F:      lib/kfifo.c
11331 F:      samples/kfifo/
11332
11333 KGDB / KDB /debug_core
11334 M:      Jason Wessel <jason.wessel@windriver.com>
11335 M:      Daniel Thompson <daniel.thompson@linaro.org>
11336 R:      Douglas Anderson <dianders@chromium.org>
11337 L:      kgdb-bugreport@lists.sourceforge.net
11338 S:      Maintained
11339 W:      http://kgdb.wiki.kernel.org/
11340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11341 F:      Documentation/dev-tools/kgdb.rst
11342 F:      drivers/misc/kgdbts.c
11343 F:      drivers/tty/serial/kgdboc.c
11344 F:      include/linux/kdb.h
11345 F:      include/linux/kgdb.h
11346 F:      kernel/debug/
11347 F:      kernel/module/kdb.c
11348
11349 KHADAS MCU MFD DRIVER
11350 M:      Neil Armstrong <narmstrong@baylibre.com>
11351 L:      linux-amlogic@lists.infradead.org
11352 S:      Maintained
11353 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11354 F:      drivers/mfd/khadas-mcu.c
11355 F:      include/linux/mfd/khadas-mcu.h
11356 F:      drivers/thermal/khadas_mcu_fan.c
11357
11358 KMEMLEAK
11359 M:      Catalin Marinas <catalin.marinas@arm.com>
11360 S:      Maintained
11361 F:      Documentation/dev-tools/kmemleak.rst
11362 F:      include/linux/kmemleak.h
11363 F:      mm/kmemleak.c
11364 F:      samples/kmemleak/kmemleak-test.c
11365
11366 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11367 M:      Luis Chamberlain <mcgrof@kernel.org>
11368 L:      linux-kernel@vger.kernel.org
11369 L:      linux-modules@vger.kernel.org
11370 S:      Maintained
11371 F:      include/linux/kmod.h
11372 F:      kernel/kmod.c
11373 F:      lib/test_kmod.c
11374 F:      tools/testing/selftests/kmod/
11375
11376 KPROBES
11377 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11378 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11379 M:      "David S. Miller" <davem@davemloft.net>
11380 M:      Masami Hiramatsu <mhiramat@kernel.org>
11381 S:      Maintained
11382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
11383 F:      Documentation/trace/kprobes.rst
11384 F:      include/asm-generic/kprobes.h
11385 F:      include/linux/kprobes.h
11386 F:      kernel/kprobes.c
11387 F:      lib/test_kprobes.c
11388 F:      samples/kprobes
11389
11390 KS0108 LCD CONTROLLER DRIVER
11391 M:      Miguel Ojeda <ojeda@kernel.org>
11392 S:      Maintained
11393 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11394 F:      drivers/auxdisplay/ks0108.c
11395 F:      include/linux/ks0108.h
11396
11397 KTD253 BACKLIGHT DRIVER
11398 M:      Linus Walleij <linus.walleij@linaro.org>
11399 S:      Maintained
11400 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11401 F:      drivers/video/backlight/ktd253-backlight.c
11402
11403 KTEST
11404 M:      Steven Rostedt <rostedt@goodmis.org>
11405 M:      John Hawley <warthog9@eaglescrag.net>
11406 S:      Maintained
11407 F:      tools/testing/ktest
11408
11409 L3MDEV
11410 M:      David Ahern <dsahern@kernel.org>
11411 L:      netdev@vger.kernel.org
11412 S:      Maintained
11413 F:      include/net/l3mdev.h
11414 F:      net/l3mdev
11415
11416 LANDLOCK SECURITY MODULE
11417 M:      Mickaël Salaün <mic@digikod.net>
11418 L:      linux-security-module@vger.kernel.org
11419 S:      Supported
11420 W:      https://landlock.io
11421 T:      git https://github.com/landlock-lsm/linux.git
11422 F:      Documentation/security/landlock.rst
11423 F:      Documentation/userspace-api/landlock.rst
11424 F:      include/uapi/linux/landlock.h
11425 F:      samples/landlock/
11426 F:      security/landlock/
11427 F:      tools/testing/selftests/landlock/
11428 K:      landlock
11429 K:      LANDLOCK
11430
11431 LANTIQ / INTEL Ethernet drivers
11432 M:      Hauke Mehrtens <hauke@hauke-m.de>
11433 L:      netdev@vger.kernel.org
11434 S:      Maintained
11435 F:      drivers/net/dsa/lantiq_gswip.c
11436 F:      drivers/net/dsa/lantiq_pce.h
11437 F:      drivers/net/ethernet/lantiq_xrx200.c
11438 F:      net/dsa/tag_gswip.c
11439
11440 LANTIQ MIPS ARCHITECTURE
11441 M:      John Crispin <john@phrozen.org>
11442 L:      linux-mips@vger.kernel.org
11443 S:      Maintained
11444 F:      arch/mips/lantiq
11445 F:      drivers/soc/lantiq
11446
11447 LASI 53c700 driver for PARISC
11448 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11449 L:      linux-scsi@vger.kernel.org
11450 S:      Maintained
11451 F:      Documentation/scsi/53c700.rst
11452 F:      drivers/scsi/53c700*
11453
11454 LEAKING_ADDRESSES
11455 M:      Tobin C. Harding <me@tobin.cc>
11456 M:      Tycho Andersen <tycho@tycho.pizza>
11457 L:      linux-hardening@vger.kernel.org
11458 S:      Maintained
11459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11460 F:      scripts/leaking_addresses.pl
11461
11462 LED SUBSYSTEM
11463 M:      Pavel Machek <pavel@ucw.cz>
11464 L:      linux-leds@vger.kernel.org
11465 S:      Maintained
11466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11467 F:      Documentation/devicetree/bindings/leds/
11468 F:      drivers/leds/
11469 F:      include/linux/leds.h
11470
11471 LEGACY EEPROM DRIVER
11472 M:      Jean Delvare <jdelvare@suse.com>
11473 S:      Maintained
11474 F:      Documentation/misc-devices/eeprom.rst
11475 F:      drivers/misc/eeprom/eeprom.c
11476
11477 LEGO MINDSTORMS EV3
11478 R:      David Lechner <david@lechnology.com>
11479 S:      Maintained
11480 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11481 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11482 F:      drivers/power/supply/lego_ev3_battery.c
11483
11484 LEGO USB Tower driver
11485 M:      Juergen Stuber <starblue@users.sourceforge.net>
11486 L:      legousb-devel@lists.sourceforge.net
11487 S:      Maintained
11488 W:      http://legousb.sourceforge.net/
11489 F:      drivers/usb/misc/legousbtower.c
11490
11491 LETSKETCH HID TABLET DRIVER
11492 M:      Hans de Goede <hdegoede@redhat.com>
11493 L:      linux-input@vger.kernel.org
11494 S:      Maintained
11495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11496 F:      drivers/hid/hid-letsketch.c
11497
11498 LG LAPTOP EXTRAS
11499 M:      Matan Ziv-Av <matan@svgalib.org>
11500 L:      platform-driver-x86@vger.kernel.org
11501 S:      Maintained
11502 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11503 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11504 F:      drivers/platform/x86/lg-laptop.c
11505
11506 LG2160 MEDIA DRIVER
11507 M:      Michael Krufky <mkrufky@linuxtv.org>
11508 L:      linux-media@vger.kernel.org
11509 S:      Maintained
11510 W:      https://linuxtv.org
11511 W:      http://github.com/mkrufky
11512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11513 T:      git git://linuxtv.org/mkrufky/tuners.git
11514 F:      drivers/media/dvb-frontends/lg2160.*
11515
11516 LGDT3305 MEDIA DRIVER
11517 M:      Michael Krufky <mkrufky@linuxtv.org>
11518 L:      linux-media@vger.kernel.org
11519 S:      Maintained
11520 W:      https://linuxtv.org
11521 W:      http://github.com/mkrufky
11522 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11523 T:      git git://linuxtv.org/mkrufky/tuners.git
11524 F:      drivers/media/dvb-frontends/lgdt3305.*
11525
11526 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11527 M:      Viresh Kumar <vireshk@kernel.org>
11528 L:      linux-ide@vger.kernel.org
11529 S:      Maintained
11530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11531 F:      drivers/ata/pata_arasan_cf.c
11532 F:      include/linux/pata_arasan_cf_data.h
11533
11534 LIBATA PATA DRIVERS
11535 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11536 L:      linux-ide@vger.kernel.org
11537 F:      drivers/ata/ata_*.c
11538 F:      drivers/ata/pata_*.c
11539
11540 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11541 M:      Linus Walleij <linus.walleij@linaro.org>
11542 L:      linux-ide@vger.kernel.org
11543 S:      Maintained
11544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11545 F:      drivers/ata/pata_ftide010.c
11546 F:      drivers/ata/sata_gemini.c
11547 F:      drivers/ata/sata_gemini.h
11548
11549 LIBATA SATA AHCI PLATFORM devices support
11550 M:      Hans de Goede <hdegoede@redhat.com>
11551 M:      Jens Axboe <axboe@kernel.dk>
11552 L:      linux-ide@vger.kernel.org
11553 S:      Maintained
11554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11555 F:      drivers/ata/ahci_platform.c
11556 F:      drivers/ata/libahci_platform.c
11557 F:      include/linux/ahci_platform.h
11558
11559 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11560 M:      Mikael Pettersson <mikpelinux@gmail.com>
11561 L:      linux-ide@vger.kernel.org
11562 S:      Maintained
11563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11564 F:      drivers/ata/sata_promise.*
11565
11566 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11567 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11568 L:      linux-ide@vger.kernel.org
11569 S:      Maintained
11570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11571 F:      Documentation/ABI/testing/sysfs-ata
11572 F:      Documentation/devicetree/bindings/ata/
11573 F:      drivers/ata/
11574 F:      include/linux/ata.h
11575 F:      include/linux/libata.h
11576
11577 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11578 M:      Vishal Verma <vishal.l.verma@intel.com>
11579 M:      Dan Williams <dan.j.williams@intel.com>
11580 M:      Dave Jiang <dave.jiang@intel.com>
11581 L:      nvdimm@lists.linux.dev
11582 S:      Supported
11583 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11584 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11585 F:      drivers/nvdimm/btt*
11586
11587 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11588 M:      Dan Williams <dan.j.williams@intel.com>
11589 M:      Vishal Verma <vishal.l.verma@intel.com>
11590 M:      Dave Jiang <dave.jiang@intel.com>
11591 L:      nvdimm@lists.linux.dev
11592 S:      Supported
11593 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11594 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11595 F:      drivers/nvdimm/pmem*
11596
11597 LIBNVDIMM: DEVICETREE BINDINGS
11598 M:      Oliver O'Halloran <oohall@gmail.com>
11599 L:      nvdimm@lists.linux.dev
11600 S:      Supported
11601 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11602 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11603 F:      drivers/nvdimm/of_pmem.c
11604
11605 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11606 M:      Dan Williams <dan.j.williams@intel.com>
11607 M:      Vishal Verma <vishal.l.verma@intel.com>
11608 M:      Dave Jiang <dave.jiang@intel.com>
11609 M:      Ira Weiny <ira.weiny@intel.com>
11610 L:      nvdimm@lists.linux.dev
11611 S:      Supported
11612 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11613 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11615 F:      drivers/acpi/nfit/*
11616 F:      drivers/nvdimm/*
11617 F:      include/linux/libnvdimm.h
11618 F:      include/linux/nd.h
11619 F:      include/uapi/linux/ndctl.h
11620 F:      tools/testing/nvdimm/
11621
11622 LICENSES and SPDX stuff
11623 M:      Thomas Gleixner <tglx@linutronix.de>
11624 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11625 L:      linux-spdx@vger.kernel.org
11626 S:      Maintained
11627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11628 F:      COPYING
11629 F:      Documentation/process/license-rules.rst
11630 F:      LICENSES/
11631 F:      scripts/spdxcheck-test.sh
11632 F:      scripts/spdxcheck.py
11633 F:      scripts/spdxexclude
11634
11635 LINEAR RANGES HELPERS
11636 M:      Mark Brown <broonie@kernel.org>
11637 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11638 F:      lib/linear_ranges.c
11639 F:      lib/test_linear_ranges.c
11640 F:      include/linux/linear_range.h
11641
11642 LINUX FOR POWER MACINTOSH
11643 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11644 L:      linuxppc-dev@lists.ozlabs.org
11645 S:      Odd Fixes
11646 F:      arch/powerpc/platforms/powermac/
11647 F:      drivers/macintosh/
11648
11649 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11650 M:      Michael Ellerman <mpe@ellerman.id.au>
11651 R:      Nicholas Piggin <npiggin@gmail.com>
11652 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11653 L:      linuxppc-dev@lists.ozlabs.org
11654 S:      Supported
11655 W:      https://github.com/linuxppc/wiki/wiki
11656 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11658 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11659 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11660 F:      Documentation/devicetree/bindings/powerpc/
11661 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11662 F:      Documentation/powerpc/
11663 F:      arch/powerpc/
11664 F:      drivers/*/*/*pasemi*
11665 F:      drivers/*/*pasemi*
11666 F:      drivers/char/tpm/tpm_ibmvtpm*
11667 F:      drivers/crypto/nx/
11668 F:      drivers/crypto/vmx/
11669 F:      drivers/i2c/busses/i2c-opal.c
11670 F:      drivers/net/ethernet/ibm/ibmveth.*
11671 F:      drivers/net/ethernet/ibm/ibmvnic.*
11672 F:      drivers/pci/hotplug/pnv_php.c
11673 F:      drivers/pci/hotplug/rpa*
11674 F:      drivers/rtc/rtc-opal.c
11675 F:      drivers/scsi/ibmvscsi/
11676 F:      drivers/tty/hvc/hvc_opal.c
11677 F:      drivers/watchdog/wdrtas.c
11678 F:      tools/testing/selftests/powerpc
11679 N:      /pmac
11680 N:      powermac
11681 N:      powernv
11682 N:      [^a-z0-9]ps3
11683 N:      pseries
11684
11685 LINUX FOR POWERPC EMBEDDED MPC5XXX
11686 M:      Anatolij Gustschin <agust@denx.de>
11687 L:      linuxppc-dev@lists.ozlabs.org
11688 S:      Odd Fixes
11689 F:      arch/powerpc/platforms/512x/
11690 F:      arch/powerpc/platforms/52xx/
11691
11692 LINUX FOR POWERPC EMBEDDED PPC4XX
11693 L:      linuxppc-dev@lists.ozlabs.org
11694 S:      Orphan
11695 F:      arch/powerpc/platforms/40x/
11696 F:      arch/powerpc/platforms/44x/
11697
11698 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11699 M:      Scott Wood <oss@buserror.net>
11700 L:      linuxppc-dev@lists.ozlabs.org
11701 S:      Odd fixes
11702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11703 F:      Documentation/devicetree/bindings/powerpc/fsl/
11704 F:      arch/powerpc/platforms/83xx/
11705 F:      arch/powerpc/platforms/85xx/
11706
11707 LINUX FOR POWERPC EMBEDDED PPC8XX
11708 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11709 L:      linuxppc-dev@lists.ozlabs.org
11710 S:      Maintained
11711 F:      arch/powerpc/platforms/8xx/
11712
11713 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11714 M:      Kees Cook <keescook@chromium.org>
11715 S:      Maintained
11716 F:      drivers/misc/lkdtm/*
11717 F:      tools/testing/selftests/lkdtm/*
11718
11719 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11720 M:      Alan Stern <stern@rowland.harvard.edu>
11721 M:      Andrea Parri <parri.andrea@gmail.com>
11722 M:      Will Deacon <will@kernel.org>
11723 M:      Peter Zijlstra <peterz@infradead.org>
11724 M:      Boqun Feng <boqun.feng@gmail.com>
11725 M:      Nicholas Piggin <npiggin@gmail.com>
11726 M:      David Howells <dhowells@redhat.com>
11727 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11728 M:      Luc Maranget <luc.maranget@inria.fr>
11729 M:      "Paul E. McKenney" <paulmck@kernel.org>
11730 R:      Akira Yokosawa <akiyks@gmail.com>
11731 R:      Daniel Lustig <dlustig@nvidia.com>
11732 R:      Joel Fernandes <joel@joelfernandes.org>
11733 L:      linux-kernel@vger.kernel.org
11734 L:      linux-arch@vger.kernel.org
11735 S:      Supported
11736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11737 F:      Documentation/atomic_bitops.txt
11738 F:      Documentation/atomic_t.txt
11739 F:      Documentation/core-api/refcount-vs-atomic.rst
11740 F:      Documentation/litmus-tests/
11741 F:      Documentation/memory-barriers.txt
11742 F:      tools/memory-model/
11743
11744 LIS3LV02D ACCELEROMETER DRIVER
11745 M:      Eric Piel <eric.piel@tremplin-utc.net>
11746 S:      Maintained
11747 F:      Documentation/misc-devices/lis3lv02d.rst
11748 F:      drivers/misc/lis3lv02d/
11749 F:      drivers/platform/x86/hp_accel.c
11750
11751 LIST KUNIT TEST
11752 M:      David Gow <davidgow@google.com>
11753 L:      linux-kselftest@vger.kernel.org
11754 L:      kunit-dev@googlegroups.com
11755 S:      Maintained
11756 F:      lib/list-test.c
11757
11758 LITEX PLATFORM
11759 M:      Karol Gugala <kgugala@antmicro.com>
11760 M:      Mateusz Holenko <mholenko@antmicro.com>
11761 M:      Gabriel Somlo <gsomlo@gmail.com>
11762 M:      Joel Stanley <joel@jms.id.au>
11763 S:      Maintained
11764 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11765 F:      arch/openrisc/boot/dts/or1klitex.dts
11766 F:      include/linux/litex.h
11767 F:      drivers/tty/serial/liteuart.c
11768 F:      drivers/soc/litex/*
11769 F:      drivers/net/ethernet/litex/*
11770 F:      drivers/mmc/host/litex_mmc.c
11771 N:      litex
11772
11773 LIVE PATCHING
11774 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11775 M:      Jiri Kosina <jikos@kernel.org>
11776 M:      Miroslav Benes <mbenes@suse.cz>
11777 M:      Petr Mladek <pmladek@suse.com>
11778 R:      Joe Lawrence <joe.lawrence@redhat.com>
11779 L:      live-patching@vger.kernel.org
11780 S:      Maintained
11781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11782 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11783 F:      Documentation/livepatch/
11784 F:      arch/powerpc/include/asm/livepatch.h
11785 F:      include/linux/livepatch.h
11786 F:      kernel/livepatch/
11787 F:      kernel/module/livepatch.c
11788 F:      lib/livepatch/
11789 F:      samples/livepatch/
11790 F:      tools/testing/selftests/livepatch/
11791
11792 LLC (802.2)
11793 L:      netdev@vger.kernel.org
11794 S:      Odd fixes
11795 F:      include/linux/llc.h
11796 F:      include/net/llc*
11797 F:      include/uapi/linux/llc.h
11798 F:      net/llc/
11799
11800 LM73 HARDWARE MONITOR DRIVER
11801 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11802 L:      linux-hwmon@vger.kernel.org
11803 S:      Maintained
11804 F:      drivers/hwmon/lm73.c
11805
11806 LM78 HARDWARE MONITOR DRIVER
11807 M:      Jean Delvare <jdelvare@suse.com>
11808 L:      linux-hwmon@vger.kernel.org
11809 S:      Maintained
11810 F:      Documentation/hwmon/lm78.rst
11811 F:      drivers/hwmon/lm78.c
11812
11813 LM83 HARDWARE MONITOR DRIVER
11814 M:      Jean Delvare <jdelvare@suse.com>
11815 L:      linux-hwmon@vger.kernel.org
11816 S:      Maintained
11817 F:      Documentation/hwmon/lm83.rst
11818 F:      drivers/hwmon/lm83.c
11819
11820 LM90 HARDWARE MONITOR DRIVER
11821 M:      Jean Delvare <jdelvare@suse.com>
11822 L:      linux-hwmon@vger.kernel.org
11823 S:      Maintained
11824 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11825 F:      Documentation/hwmon/lm90.rst
11826 F:      drivers/hwmon/lm90.c
11827 F:      include/dt-bindings/thermal/lm90.h
11828
11829 LM95234 HARDWARE MONITOR DRIVER
11830 M:      Guenter Roeck <linux@roeck-us.net>
11831 L:      linux-hwmon@vger.kernel.org
11832 S:      Maintained
11833 F:      Documentation/hwmon/lm95234.rst
11834 F:      drivers/hwmon/lm95234.c
11835
11836 LME2510 MEDIA DRIVER
11837 M:      Malcolm Priestley <tvboxspy@gmail.com>
11838 L:      linux-media@vger.kernel.org
11839 S:      Maintained
11840 W:      https://linuxtv.org
11841 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11842 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11843
11844 LOADPIN SECURITY MODULE
11845 M:      Kees Cook <keescook@chromium.org>
11846 S:      Supported
11847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11848 F:      Documentation/admin-guide/LSM/LoadPin.rst
11849 F:      security/loadpin/
11850
11851 LOCKING PRIMITIVES
11852 M:      Peter Zijlstra <peterz@infradead.org>
11853 M:      Ingo Molnar <mingo@redhat.com>
11854 M:      Will Deacon <will@kernel.org>
11855 R:      Waiman Long <longman@redhat.com>
11856 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11857 L:      linux-kernel@vger.kernel.org
11858 S:      Maintained
11859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11860 F:      Documentation/locking/
11861 F:      arch/*/include/asm/spinlock*.h
11862 F:      include/linux/lockdep.h
11863 F:      include/linux/mutex*.h
11864 F:      include/linux/rwlock*.h
11865 F:      include/linux/rwsem*.h
11866 F:      include/linux/seqlock.h
11867 F:      include/linux/spinlock*.h
11868 F:      kernel/locking/
11869 F:      lib/locking*.[ch]
11870 X:      kernel/locking/locktorture.c
11871
11872 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11873 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11874 L:      linux-ntfs-dev@lists.sourceforge.net
11875 S:      Maintained
11876 W:      http://www.linux-ntfs.org/content/view/19/37/
11877 F:      Documentation/admin-guide/ldm.rst
11878 F:      block/partitions/ldm.*
11879
11880 LOGITECH HID GAMING KEYBOARDS
11881 M:      Hans de Goede <hdegoede@redhat.com>
11882 L:      linux-input@vger.kernel.org
11883 S:      Maintained
11884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11885 F:      drivers/hid/hid-lg-g15.c
11886
11887 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11888 M:      Adrien Grassein <adrien.grassein@gmail.com>
11889 S:      Maintained
11890 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11891 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11892
11893 LOONGARCH
11894 M:      Huacai Chen <chenhuacai@kernel.org>
11895 R:      WANG Xuerui <kernel@xen0n.name>
11896 L:      loongarch@lists.linux.dev
11897 S:      Maintained
11898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
11899 F:      arch/loongarch/
11900 F:      drivers/*/*loongarch*
11901 F:      Documentation/loongarch/
11902 F:      Documentation/translations/zh_CN/loongarch/
11903
11904 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11905 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11906 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11907 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11908 L:      MPT-FusionLinux.pdl@broadcom.com
11909 L:      linux-scsi@vger.kernel.org
11910 S:      Supported
11911 W:      http://www.avagotech.com/support/
11912 F:      drivers/message/fusion/
11913 F:      drivers/scsi/mpt3sas/
11914
11915 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11916 M:      Matthew Wilcox <willy@infradead.org>
11917 L:      linux-scsi@vger.kernel.org
11918 S:      Maintained
11919 F:      drivers/scsi/sym53c8xx_2/
11920
11921 LTC1660 DAC DRIVER
11922 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11923 L:      linux-iio@vger.kernel.org
11924 S:      Maintained
11925 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11926 F:      drivers/iio/dac/ltc1660.c
11927
11928 LTC2688 IIO DAC DRIVER
11929 M:      Nuno Sá <nuno.sa@analog.com>
11930 L:      linux-iio@vger.kernel.org
11931 S:      Supported
11932 W:      https://ez.analog.com/linux-software-drivers
11933 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11934 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11935 F:      drivers/iio/dac/ltc2688.c
11936
11937 LTC2947 HARDWARE MONITOR DRIVER
11938 M:      Nuno Sá <nuno.sa@analog.com>
11939 L:      linux-hwmon@vger.kernel.org
11940 S:      Supported
11941 W:      https://ez.analog.com/linux-software-drivers
11942 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11943 F:      drivers/hwmon/ltc2947-core.c
11944 F:      drivers/hwmon/ltc2947-i2c.c
11945 F:      drivers/hwmon/ltc2947-spi.c
11946 F:      drivers/hwmon/ltc2947.h
11947
11948 LTC2983 IIO TEMPERATURE DRIVER
11949 M:      Nuno Sá <nuno.sa@analog.com>
11950 L:      linux-iio@vger.kernel.org
11951 S:      Supported
11952 W:      https://ez.analog.com/linux-software-drivers
11953 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11954 F:      drivers/iio/temperature/ltc2983.c
11955
11956 LTC4261 HARDWARE MONITOR DRIVER
11957 M:      Guenter Roeck <linux@roeck-us.net>
11958 L:      linux-hwmon@vger.kernel.org
11959 S:      Maintained
11960 F:      Documentation/hwmon/ltc4261.rst
11961 F:      drivers/hwmon/ltc4261.c
11962
11963 LTC4306 I2C MULTIPLEXER DRIVER
11964 M:      Michael Hennerich <michael.hennerich@analog.com>
11965 L:      linux-i2c@vger.kernel.org
11966 S:      Supported
11967 W:      https://ez.analog.com/linux-software-drivers
11968 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11969 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11970
11971 LTP (Linux Test Project)
11972 M:      Mike Frysinger <vapier@gentoo.org>
11973 M:      Cyril Hrubis <chrubis@suse.cz>
11974 M:      Wanlong Gao <wanlong.gao@gmail.com>
11975 M:      Jan Stancek <jstancek@redhat.com>
11976 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11977 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11978 L:      ltp@lists.linux.it (subscribers-only)
11979 S:      Maintained
11980 W:      http://linux-test-project.github.io/
11981 T:      git git://github.com/linux-test-project/ltp.git
11982
11983 LYNX 28G SERDES PHY DRIVER
11984 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11985 L:      netdev@vger.kernel.org
11986 S:      Supported
11987 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11988 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11989
11990 LYNX PCS MODULE
11991 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11992 L:      netdev@vger.kernel.org
11993 S:      Supported
11994 F:      drivers/net/pcs/pcs-lynx.c
11995 F:      include/linux/pcs-lynx.h
11996
11997 M68K ARCHITECTURE
11998 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11999 L:      linux-m68k@lists.linux-m68k.org
12000 S:      Maintained
12001 W:      http://www.linux-m68k.org/
12002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12003 F:      arch/m68k/
12004 F:      drivers/zorro/
12005
12006 M68K ON APPLE MACINTOSH
12007 M:      Joshua Thompson <funaho@jurai.org>
12008 L:      linux-m68k@lists.linux-m68k.org
12009 S:      Maintained
12010 W:      http://www.mac.linux-m68k.org/
12011 F:      arch/m68k/mac/
12012 F:      drivers/macintosh/adb-iop.c
12013 F:      drivers/macintosh/via-macii.c
12014
12015 M68K ON HP9000/300
12016 M:      Philip Blundell <philb@gnu.org>
12017 S:      Maintained
12018 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12019 F:      arch/m68k/hp300/
12020
12021 M88DS3103 MEDIA DRIVER
12022 M:      Antti Palosaari <crope@iki.fi>
12023 L:      linux-media@vger.kernel.org
12024 S:      Maintained
12025 W:      https://linuxtv.org
12026 W:      http://palosaari.fi/linux/
12027 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12028 T:      git git://linuxtv.org/anttip/media_tree.git
12029 F:      drivers/media/dvb-frontends/m88ds3103*
12030
12031 M88RS2000 MEDIA DRIVER
12032 M:      Malcolm Priestley <tvboxspy@gmail.com>
12033 L:      linux-media@vger.kernel.org
12034 S:      Maintained
12035 W:      https://linuxtv.org
12036 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12037 F:      drivers/media/dvb-frontends/m88rs2000*
12038
12039 MA901 MASTERKIT USB FM RADIO DRIVER
12040 M:      Alexey Klimov <klimov.linux@gmail.com>
12041 L:      linux-media@vger.kernel.org
12042 S:      Maintained
12043 T:      git git://linuxtv.org/media_tree.git
12044 F:      drivers/media/radio/radio-ma901.c
12045
12046 MAC80211
12047 M:      Johannes Berg <johannes@sipsolutions.net>
12048 L:      linux-wireless@vger.kernel.org
12049 S:      Maintained
12050 W:      https://wireless.wiki.kernel.org/
12051 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12054 F:      Documentation/networking/mac80211-injection.rst
12055 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12056 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12057 F:      include/net/mac80211.h
12058 F:      net/mac80211/
12059
12060 MAILBOX API
12061 M:      Jassi Brar <jassisinghbrar@gmail.com>
12062 L:      linux-kernel@vger.kernel.org
12063 S:      Maintained
12064 F:      drivers/mailbox/
12065 F:      include/linux/mailbox_client.h
12066 F:      include/linux/mailbox_controller.h
12067 F:      include/dt-bindings/mailbox/
12068 F:      Documentation/devicetree/bindings/mailbox/
12069
12070 MAILBOX ARM MHUv2
12071 M:      Viresh Kumar <viresh.kumar@linaro.org>
12072 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12073 L:      linux-kernel@vger.kernel.org
12074 S:      Maintained
12075 F:      drivers/mailbox/arm_mhuv2.c
12076 F:      include/linux/mailbox/arm_mhuv2_message.h
12077 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12078
12079 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12080 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12081 M:      Matt Johnston <matt@codeconstruct.com.au>
12082 L:      netdev@vger.kernel.org
12083 S:      Maintained
12084 F:      Documentation/networking/mctp.rst
12085 F:      drivers/net/mctp/
12086 F:      include/net/mctp.h
12087 F:      include/net/mctpdevice.h
12088 F:      include/net/netns/mctp.h
12089 F:      net/mctp/
12090
12091 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12092 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12093 L:      linux-man@vger.kernel.org
12094 S:      Maintained
12095 W:      http://www.kernel.org/doc/man-pages
12096
12097 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12098 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12099 L:      linux-mips@vger.kernel.org
12100 S:      Maintained
12101 F:      arch/mips/boot/dts/img/pistachio*
12102
12103 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12104 M:      Andrew Lunn <andrew@lunn.ch>
12105 M:      Vivien Didelot <vivien.didelot@gmail.com>
12106 L:      netdev@vger.kernel.org
12107 S:      Maintained
12108 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12109 F:      Documentation/networking/devlink/mv88e6xxx.rst
12110 F:      drivers/net/dsa/mv88e6xxx/
12111 F:      include/linux/dsa/mv88e6xxx.h
12112 F:      include/linux/platform_data/mv88e6xxx.h
12113
12114 MARVELL ARMADA 3700 PHY DRIVERS
12115 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12116 S:      Maintained
12117 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12118 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12119 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12120 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12121
12122 MARVELL ARMADA 3700 SERIAL DRIVER
12123 M:      Pali Rohár <pali@kernel.org>
12124 S:      Maintained
12125 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12126 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12127 F:      drivers/tty/serial/mvebu-uart.c
12128
12129 MARVELL ARMADA DRM SUPPORT
12130 M:      Russell King <linux@armlinux.org.uk>
12131 S:      Maintained
12132 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12133 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12134 F:      Documentation/devicetree/bindings/display/armada/
12135 F:      drivers/gpu/drm/armada/
12136 F:      include/uapi/drm/armada_drm.h
12137
12138 MARVELL CRYPTO DRIVER
12139 M:      Boris Brezillon <bbrezillon@kernel.org>
12140 M:      Arnaud Ebalard <arno@natisbad.org>
12141 M:      Srujana Challa <schalla@marvell.com>
12142 L:      linux-crypto@vger.kernel.org
12143 S:      Maintained
12144 F:      drivers/crypto/marvell/
12145 F:      include/linux/soc/marvell/octeontx2/
12146
12147 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12148 M:      Mirko Lindner <mlindner@marvell.com>
12149 M:      Stephen Hemminger <stephen@networkplumber.org>
12150 L:      netdev@vger.kernel.org
12151 S:      Maintained
12152 F:      drivers/net/ethernet/marvell/sk*
12153
12154 MARVELL LIBERTAS WIRELESS DRIVER
12155 L:      libertas-dev@lists.infradead.org
12156 S:      Orphan
12157 F:      drivers/net/wireless/marvell/libertas/
12158
12159 MARVELL MACCHIATOBIN SUPPORT
12160 M:      Russell King <linux@armlinux.org.uk>
12161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12162 S:      Maintained
12163 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12164
12165 MARVELL MV643XX ETHERNET DRIVER
12166 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12167 L:      netdev@vger.kernel.org
12168 S:      Maintained
12169 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12170 F:      include/linux/mv643xx.h
12171
12172 MARVELL MV88X3310 PHY DRIVER
12173 M:      Russell King <linux@armlinux.org.uk>
12174 M:      Marek Behún <kabel@kernel.org>
12175 L:      netdev@vger.kernel.org
12176 S:      Maintained
12177 F:      drivers/net/phy/marvell10g.c
12178
12179 MARVELL MVEBU THERMAL DRIVER
12180 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12181 S:      Maintained
12182 F:      drivers/thermal/armada_thermal.c
12183
12184 MARVELL MVNETA ETHERNET DRIVER
12185 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12186 L:      netdev@vger.kernel.org
12187 S:      Maintained
12188 F:      drivers/net/ethernet/marvell/mvneta.*
12189
12190 MARVELL MVPP2 ETHERNET DRIVER
12191 M:      Marcin Wojtas <mw@semihalf.com>
12192 M:      Russell King <linux@armlinux.org.uk>
12193 L:      netdev@vger.kernel.org
12194 S:      Maintained
12195 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
12196 F:      drivers/net/ethernet/marvell/mvpp2/
12197
12198 MARVELL MWIFIEX WIRELESS DRIVER
12199 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12200 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12201 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12202 M:      Xinming Hu <huxinming820@gmail.com>
12203 L:      linux-wireless@vger.kernel.org
12204 S:      Maintained
12205 F:      drivers/net/wireless/marvell/mwifiex/
12206
12207 MARVELL MWL8K WIRELESS DRIVER
12208 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12209 L:      linux-wireless@vger.kernel.org
12210 S:      Odd Fixes
12211 F:      drivers/net/wireless/marvell/mwl8k.c
12212
12213 MARVELL NAND CONTROLLER DRIVER
12214 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12215 L:      linux-mtd@lists.infradead.org
12216 S:      Maintained
12217 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12218 F:      drivers/mtd/nand/raw/marvell_nand.c
12219
12220 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12221 M:      Sunil Goutham <sgoutham@marvell.com>
12222 M:      Geetha sowjanya <gakula@marvell.com>
12223 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12224 M:      hariprasad <hkelam@marvell.com>
12225 L:      netdev@vger.kernel.org
12226 S:      Supported
12227 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12228 F:      include/linux/soc/marvell/octeontx2/
12229
12230 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12231 M:      Sunil Goutham <sgoutham@marvell.com>
12232 M:      Linu Cherian <lcherian@marvell.com>
12233 M:      Geetha sowjanya <gakula@marvell.com>
12234 M:      Jerin Jacob <jerinj@marvell.com>
12235 M:      hariprasad <hkelam@marvell.com>
12236 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12237 L:      netdev@vger.kernel.org
12238 S:      Supported
12239 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12240 F:      drivers/net/ethernet/marvell/octeontx2/af/
12241
12242 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12243 M:      Taras Chornyi <tchornyi@marvell.com>
12244 S:      Supported
12245 W:      https://github.com/Marvell-switching/switchdev-prestera
12246 F:      drivers/net/ethernet/marvell/prestera/
12247
12248 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12249 M:      Nicolas Pitre <nico@fluxnic.net>
12250 S:      Odd Fixes
12251 F:      drivers/mmc/host/mvsdio.*
12252
12253 MARVELL USB MDIO CONTROLLER DRIVER
12254 M:      Tobias Waldekranz <tobias@waldekranz.com>
12255 L:      netdev@vger.kernel.org
12256 S:      Maintained
12257 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12258 F:      drivers/net/mdio/mdio-mvusb.c
12259
12260 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12261 M:      Hu Ziji <huziji@marvell.com>
12262 L:      linux-mmc@vger.kernel.org
12263 S:      Supported
12264 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12265 F:      drivers/mmc/host/sdhci-xenon*
12266
12267 MARVELL OCTEON ENDPOINT DRIVER
12268 M:      Veerasenareddy Burru <vburru@marvell.com>
12269 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12270 L:      netdev@vger.kernel.org
12271 S:      Supported
12272 F:      drivers/net/ethernet/marvell/octeon_ep
12273
12274 MATROX FRAMEBUFFER DRIVER
12275 L:      linux-fbdev@vger.kernel.org
12276 S:      Orphan
12277 F:      drivers/video/fbdev/matrox/matroxfb_*
12278 F:      include/uapi/linux/matroxfb.h
12279
12280 MAX15301 DRIVER
12281 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12282 L:      linux-hwmon@vger.kernel.org
12283 S:      Maintained
12284 F:      Documentation/hwmon/max15301.rst
12285 F:      drivers/hwmon/pmbus/max15301.c
12286
12287 MAX16065 HARDWARE MONITOR DRIVER
12288 M:      Guenter Roeck <linux@roeck-us.net>
12289 L:      linux-hwmon@vger.kernel.org
12290 S:      Maintained
12291 F:      Documentation/hwmon/max16065.rst
12292 F:      drivers/hwmon/max16065.c
12293
12294 MAX2175 SDR TUNER DRIVER
12295 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12296 L:      linux-media@vger.kernel.org
12297 S:      Maintained
12298 T:      git git://linuxtv.org/media_tree.git
12299 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12300 F:      Documentation/userspace-api/media/drivers/max2175.rst
12301 F:      drivers/media/i2c/max2175*
12302 F:      include/uapi/linux/max2175.h
12303
12304 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12305 L:      linux-hwmon@vger.kernel.org
12306 S:      Orphan
12307 F:      Documentation/hwmon/max6650.rst
12308 F:      drivers/hwmon/max6650.c
12309
12310 MAX6697 HARDWARE MONITOR DRIVER
12311 M:      Guenter Roeck <linux@roeck-us.net>
12312 L:      linux-hwmon@vger.kernel.org
12313 S:      Maintained
12314 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12315 F:      Documentation/hwmon/max6697.rst
12316 F:      drivers/hwmon/max6697.c
12317 F:      include/linux/platform_data/max6697.h
12318
12319 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12320 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12321 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12322 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12323 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12324 L:      linux-media@vger.kernel.org
12325 S:      Maintained
12326 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12327 F:      drivers/media/i2c/max9286.c
12328
12329 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12330 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12331 L:      linux-media@vger.kernel.org
12332 S:      Maintained
12333 F:      drivers/staging/media/max96712/max96712.c
12334
12335 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12336 M:      Peter Rosin <peda@axentia.se>
12337 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12338 S:      Maintained
12339 F:      Documentation/devicetree/bindings/sound/max9860.txt
12340 F:      sound/soc/codecs/max9860.*
12341
12342 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12343 M:      Andreas Klinger <ak@it-klinger.de>
12344 L:      linux-iio@vger.kernel.org
12345 S:      Maintained
12346 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12347 F:      drivers/iio/proximity/mb1232.c
12348
12349 MAXIM MAX11205 DRIVER
12350 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12351 L:      linux-iio@vger.kernel.org
12352 S:      Supported
12353 W:      https://ez.analog.com/linux-software-drivers
12354 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12355 F:      drivers/iio/adc/max11205.c
12356
12357 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12358 R:      Iskren Chernev <iskren.chernev@gmail.com>
12359 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12360 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12361 R:      Matheus Castello <matheus@castello.eng.br>
12362 L:      linux-pm@vger.kernel.org
12363 S:      Maintained
12364 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12365 F:      drivers/power/supply/max17040_battery.c
12366
12367 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12368 R:      Hans de Goede <hdegoede@redhat.com>
12369 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12370 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12371 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12372 R:      Purism Kernel Team <kernel@puri.sm>
12373 L:      linux-pm@vger.kernel.org
12374 S:      Maintained
12375 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12376 F:      drivers/power/supply/max17042_battery.c
12377
12378 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12379 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12380 L:      linux-kernel@vger.kernel.org
12381 S:      Maintained
12382 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12383 F:      drivers/regulator/max20086-regulator.c
12384
12385 MAXIM MAX77650 PMIC MFD DRIVER
12386 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12387 L:      linux-kernel@vger.kernel.org
12388 S:      Maintained
12389 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12390 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12391 F:      drivers/gpio/gpio-max77650.c
12392 F:      drivers/input/misc/max77650-onkey.c
12393 F:      drivers/leds/leds-max77650.c
12394 F:      drivers/mfd/max77650.c
12395 F:      drivers/power/supply/max77650-charger.c
12396 F:      drivers/regulator/max77650-regulator.c
12397 F:      include/linux/mfd/max77650.h
12398
12399 MAXIM MAX77714 PMIC MFD DRIVER
12400 M:      Luca Ceresoli <luca@lucaceresoli.net>
12401 S:      Maintained
12402 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12403 F:      drivers/mfd/max77714.c
12404 F:      include/linux/mfd/max77714.h
12405
12406 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12407 M:      Javier Martinez Canillas <javier@dowhile0.org>
12408 L:      linux-kernel@vger.kernel.org
12409 S:      Supported
12410 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12411 F:      drivers/regulator/max77802-regulator.c
12412 F:      include/dt-bindings/*/*max77802.h
12413
12414 MAXIM MAX77976 BATTERY CHARGER
12415 M:      Luca Ceresoli <luca@lucaceresoli.net>
12416 S:      Supported
12417 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12418 F:      drivers/power/supply/max77976_charger.c
12419
12420 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12421 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12422 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12423 L:      linux-pm@vger.kernel.org
12424 S:      Supported
12425 B:      mailto:linux-samsung-soc@vger.kernel.org
12426 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12427 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12428 F:      drivers/power/supply/max14577_charger.c
12429 F:      drivers/power/supply/max77693_charger.c
12430
12431 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12432 M:      Chanwoo Choi <cw00.choi@samsung.com>
12433 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12434 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12435 L:      linux-kernel@vger.kernel.org
12436 S:      Supported
12437 B:      mailto:linux-samsung-soc@vger.kernel.org
12438 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12439 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12440 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12441 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12442 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12443 F:      drivers/*/*max77843.c
12444 F:      drivers/*/max14577*.c
12445 F:      drivers/*/max77686*.c
12446 F:      drivers/*/max77693*.c
12447 F:      drivers/clk/clk-max77686.c
12448 F:      drivers/extcon/extcon-max14577.c
12449 F:      drivers/extcon/extcon-max77693.c
12450 F:      drivers/rtc/rtc-max77686.c
12451 F:      include/linux/mfd/max14577*.h
12452 F:      include/linux/mfd/max77686*.h
12453 F:      include/linux/mfd/max77693*.h
12454
12455 MAXIRADIO FM RADIO RECEIVER DRIVER
12456 M:      Hans Verkuil <hverkuil@xs4all.nl>
12457 L:      linux-media@vger.kernel.org
12458 S:      Maintained
12459 W:      https://linuxtv.org
12460 T:      git git://linuxtv.org/media_tree.git
12461 F:      drivers/media/radio/radio-maxiradio*
12462
12463 MAXLINEAR ETHERNET PHY DRIVER
12464 M:      Xu Liang <lxu@maxlinear.com>
12465 L:      netdev@vger.kernel.org
12466 S:      Supported
12467 F:      drivers/net/phy/mxl-gpy.c
12468
12469 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12470 R:      Yasushi SHOJI <yashi@spacecubics.com>
12471 L:      linux-can@vger.kernel.org
12472 S:      Maintained
12473 F:      drivers/net/can/usb/mcba_usb.c
12474
12475 MCAN MMIO DEVICE DRIVER
12476 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12477 L:      linux-can@vger.kernel.org
12478 S:      Maintained
12479 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12480 F:      drivers/net/can/m_can/m_can.c
12481 F:      drivers/net/can/m_can/m_can.h
12482 F:      drivers/net/can/m_can/m_can_platform.c
12483
12484 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12485 M:      Rishi Gupta <gupt21@gmail.com>
12486 L:      linux-i2c@vger.kernel.org
12487 L:      linux-input@vger.kernel.org
12488 S:      Maintained
12489 F:      drivers/hid/hid-mcp2221.c
12490
12491 MCP251XFD SPI-CAN NETWORK DRIVER
12492 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12493 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12494 R:      Thomas Kopp <thomas.kopp@microchip.com>
12495 L:      linux-can@vger.kernel.org
12496 S:      Maintained
12497 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12498 F:      drivers/net/can/spi/mcp251xfd/
12499
12500 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12501 M:      Peter Rosin <peda@axentia.se>
12502 L:      linux-iio@vger.kernel.org
12503 S:      Maintained
12504 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12505 F:      drivers/iio/potentiometer/mcp4018.c
12506 F:      drivers/iio/potentiometer/mcp4531.c
12507
12508 MCR20A IEEE-802.15.4 RADIO DRIVER
12509 M:      Xue Liu <liuxuenetmail@gmail.com>
12510 L:      linux-wpan@vger.kernel.org
12511 S:      Maintained
12512 W:      https://github.com/xueliu/mcr20a-linux
12513 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12514 F:      drivers/net/ieee802154/mcr20a.c
12515 F:      drivers/net/ieee802154/mcr20a.h
12516
12517 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12518 M:      William Breathitt Gray <william.gray@linaro.org>
12519 L:      linux-iio@vger.kernel.org
12520 S:      Maintained
12521 F:      drivers/iio/dac/cio-dac.c
12522
12523 MEDIA CONTROLLER FRAMEWORK
12524 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12525 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12526 L:      linux-media@vger.kernel.org
12527 S:      Supported
12528 W:      https://www.linuxtv.org
12529 T:      git git://linuxtv.org/media_tree.git
12530 F:      drivers/media/mc/
12531 F:      include/media/media-*.h
12532 F:      include/uapi/linux/media.h
12533
12534 MEDIA DRIVER FOR FREESCALE IMX PXP
12535 M:      Philipp Zabel <p.zabel@pengutronix.de>
12536 L:      linux-media@vger.kernel.org
12537 S:      Maintained
12538 T:      git git://linuxtv.org/media_tree.git
12539 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12540
12541 MEDIA DRIVERS FOR ASCOT2E
12542 M:      Sergey Kozlov <serjk@netup.ru>
12543 M:      Abylay Ospan <aospan@netup.ru>
12544 L:      linux-media@vger.kernel.org
12545 S:      Supported
12546 W:      https://linuxtv.org
12547 W:      http://netup.tv/
12548 T:      git git://linuxtv.org/media_tree.git
12549 F:      drivers/media/dvb-frontends/ascot2e*
12550
12551 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12552 M:      Jasmin Jessich <jasmin@anw.at>
12553 L:      linux-media@vger.kernel.org
12554 S:      Maintained
12555 W:      https://linuxtv.org
12556 T:      git git://linuxtv.org/media_tree.git
12557 F:      drivers/media/dvb-frontends/cxd2099*
12558
12559 MEDIA DRIVERS FOR CXD2841ER
12560 M:      Sergey Kozlov <serjk@netup.ru>
12561 M:      Abylay Ospan <aospan@netup.ru>
12562 L:      linux-media@vger.kernel.org
12563 S:      Supported
12564 W:      https://linuxtv.org
12565 W:      http://netup.tv/
12566 T:      git git://linuxtv.org/media_tree.git
12567 F:      drivers/media/dvb-frontends/cxd2841er*
12568
12569 MEDIA DRIVERS FOR CXD2880
12570 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12571 L:      linux-media@vger.kernel.org
12572 S:      Supported
12573 W:      http://linuxtv.org/
12574 T:      git git://linuxtv.org/media_tree.git
12575 F:      drivers/media/dvb-frontends/cxd2880/*
12576 F:      drivers/media/spi/cxd2880*
12577
12578 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12579 L:      linux-media@vger.kernel.org
12580 S:      Orphan
12581 W:      https://linuxtv.org
12582 T:      git git://linuxtv.org/media_tree.git
12583 F:      drivers/media/pci/ddbridge/*
12584
12585 MEDIA DRIVERS FOR FREESCALE IMX
12586 M:      Steve Longerbeam <slongerbeam@gmail.com>
12587 M:      Philipp Zabel <p.zabel@pengutronix.de>
12588 L:      linux-media@vger.kernel.org
12589 S:      Maintained
12590 T:      git git://linuxtv.org/media_tree.git
12591 F:      Documentation/admin-guide/media/imx.rst
12592 F:      Documentation/devicetree/bindings/media/imx.txt
12593 F:      drivers/staging/media/imx/
12594 F:      include/linux/imx-media.h
12595 F:      include/media/imx.h
12596
12597 MEDIA DRIVERS FOR FREESCALE IMX7
12598 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12599 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12600 L:      linux-media@vger.kernel.org
12601 S:      Maintained
12602 T:      git git://linuxtv.org/media_tree.git
12603 F:      Documentation/admin-guide/media/imx7.rst
12604 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12605 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12606 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12607 F:      drivers/staging/media/imx/imx7-media-csi.c
12608
12609 MEDIA DRIVERS FOR HELENE
12610 M:      Abylay Ospan <aospan@netup.ru>
12611 L:      linux-media@vger.kernel.org
12612 S:      Supported
12613 W:      https://linuxtv.org
12614 W:      http://netup.tv/
12615 T:      git git://linuxtv.org/media_tree.git
12616 F:      drivers/media/dvb-frontends/helene*
12617
12618 MEDIA DRIVERS FOR HORUS3A
12619 M:      Sergey Kozlov <serjk@netup.ru>
12620 M:      Abylay Ospan <aospan@netup.ru>
12621 L:      linux-media@vger.kernel.org
12622 S:      Supported
12623 W:      https://linuxtv.org
12624 W:      http://netup.tv/
12625 T:      git git://linuxtv.org/media_tree.git
12626 F:      drivers/media/dvb-frontends/horus3a*
12627
12628 MEDIA DRIVERS FOR LNBH25
12629 M:      Sergey Kozlov <serjk@netup.ru>
12630 M:      Abylay Ospan <aospan@netup.ru>
12631 L:      linux-media@vger.kernel.org
12632 S:      Supported
12633 W:      https://linuxtv.org
12634 W:      http://netup.tv/
12635 T:      git git://linuxtv.org/media_tree.git
12636 F:      drivers/media/dvb-frontends/lnbh25*
12637
12638 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12639 L:      linux-media@vger.kernel.org
12640 S:      Orphan
12641 W:      https://linuxtv.org
12642 T:      git git://linuxtv.org/media_tree.git
12643 F:      drivers/media/dvb-frontends/mxl5xx*
12644
12645 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12646 M:      Sergey Kozlov <serjk@netup.ru>
12647 M:      Abylay Ospan <aospan@netup.ru>
12648 L:      linux-media@vger.kernel.org
12649 S:      Supported
12650 W:      https://linuxtv.org
12651 W:      http://netup.tv/
12652 T:      git git://linuxtv.org/media_tree.git
12653 F:      drivers/media/pci/netup_unidvb/*
12654
12655 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12656 M:      Dmitry Osipenko <digetx@gmail.com>
12657 L:      linux-media@vger.kernel.org
12658 L:      linux-tegra@vger.kernel.org
12659 S:      Maintained
12660 T:      git git://linuxtv.org/media_tree.git
12661 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12662 F:      drivers/media/platform/nvidia/tegra-vde/
12663
12664 MEDIA DRIVERS FOR RENESAS - CEU
12665 M:      Jacopo Mondi <jacopo@jmondi.org>
12666 L:      linux-media@vger.kernel.org
12667 L:      linux-renesas-soc@vger.kernel.org
12668 S:      Supported
12669 T:      git git://linuxtv.org/media_tree.git
12670 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12671 F:      drivers/media/platform/renesas/renesas-ceu.c
12672 F:      include/media/drv-intf/renesas-ceu.h
12673
12674 MEDIA DRIVERS FOR RENESAS - DRIF
12675 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12676 L:      linux-media@vger.kernel.org
12677 L:      linux-renesas-soc@vger.kernel.org
12678 S:      Supported
12679 T:      git git://linuxtv.org/media_tree.git
12680 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12681 F:      drivers/media/platform/renesas/rcar_drif.c
12682
12683 MEDIA DRIVERS FOR RENESAS - FCP
12684 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12685 L:      linux-media@vger.kernel.org
12686 L:      linux-renesas-soc@vger.kernel.org
12687 S:      Supported
12688 T:      git git://linuxtv.org/media_tree.git
12689 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12690 F:      drivers/media/platform/renesas/rcar-fcp.c
12691 F:      include/media/rcar-fcp.h
12692
12693 MEDIA DRIVERS FOR RENESAS - FDP1
12694 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12695 L:      linux-media@vger.kernel.org
12696 L:      linux-renesas-soc@vger.kernel.org
12697 S:      Supported
12698 T:      git git://linuxtv.org/media_tree.git
12699 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12700 F:      drivers/media/platform/renesas/rcar_fdp1.c
12701
12702 MEDIA DRIVERS FOR RENESAS - VIN
12703 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12704 L:      linux-media@vger.kernel.org
12705 L:      linux-renesas-soc@vger.kernel.org
12706 S:      Supported
12707 T:      git git://linuxtv.org/media_tree.git
12708 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12709 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12710 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12711 F:      drivers/media/platform/renesas/rcar-isp.c
12712 F:      drivers/media/platform/renesas/rcar-vin/
12713
12714 MEDIA DRIVERS FOR RENESAS - VSP1
12715 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12716 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12717 L:      linux-media@vger.kernel.org
12718 L:      linux-renesas-soc@vger.kernel.org
12719 S:      Supported
12720 T:      git git://linuxtv.org/media_tree.git
12721 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12722 F:      drivers/media/platform/renesas/vsp1/
12723
12724 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12725 L:      linux-media@vger.kernel.org
12726 S:      Orphan
12727 W:      https://linuxtv.org
12728 T:      git git://linuxtv.org/media_tree.git
12729 F:      drivers/media/dvb-frontends/stv0910*
12730
12731 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12732 L:      linux-media@vger.kernel.org
12733 S:      Orphan
12734 W:      https://linuxtv.org
12735 T:      git git://linuxtv.org/media_tree.git
12736 F:      drivers/media/dvb-frontends/stv6111*
12737
12738 MEDIA DRIVERS FOR STM32 - DCMI
12739 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12740 L:      linux-media@vger.kernel.org
12741 S:      Supported
12742 T:      git git://linuxtv.org/media_tree.git
12743 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12744 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12745
12746 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12747 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12748 L:      linux-media@vger.kernel.org
12749 S:      Maintained
12750 W:      https://linuxtv.org
12751 Q:      http://patchwork.kernel.org/project/linux-media/list/
12752 T:      git git://linuxtv.org/media_tree.git
12753 F:      Documentation/admin-guide/media/
12754 F:      Documentation/devicetree/bindings/media/
12755 F:      Documentation/driver-api/media/
12756 F:      Documentation/userspace-api/media/
12757 F:      drivers/media/
12758 F:      drivers/staging/media/
12759 F:      include/dt-bindings/media/
12760 F:      include/linux/platform_data/media/
12761 F:      include/media/
12762 F:      include/uapi/linux/dvb/
12763 F:      include/uapi/linux/ivtv*
12764 F:      include/uapi/linux/media.h
12765 F:      include/uapi/linux/meye.h
12766 F:      include/uapi/linux/uvcvideo.h
12767 F:      include/uapi/linux/v4l2-*
12768 F:      include/uapi/linux/videodev2.h
12769
12770 MEDIATEK BLUETOOTH DRIVER
12771 M:      Sean Wang <sean.wang@mediatek.com>
12772 L:      linux-bluetooth@vger.kernel.org
12773 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12774 S:      Maintained
12775 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12776 F:      drivers/bluetooth/btmtkuart.c
12777
12778 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12779 M:      Sean Wang <sean.wang@mediatek.com>
12780 L:      linux-pm@vger.kernel.org
12781 S:      Maintained
12782 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12783 F:      drivers/power/reset/mt6323-poweroff.c
12784
12785 MEDIATEK CIR DRIVER
12786 M:      Sean Wang <sean.wang@mediatek.com>
12787 S:      Maintained
12788 F:      drivers/media/rc/mtk-cir.c
12789
12790 MEDIATEK DMA DRIVER
12791 M:      Sean Wang <sean.wang@mediatek.com>
12792 L:      dmaengine@vger.kernel.org
12793 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12794 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12795 S:      Maintained
12796 F:      Documentation/devicetree/bindings/dma/mtk-*
12797 F:      drivers/dma/mediatek/
12798
12799 MEDIATEK ETHERNET DRIVER
12800 M:      Felix Fietkau <nbd@nbd.name>
12801 M:      John Crispin <john@phrozen.org>
12802 M:      Sean Wang <sean.wang@mediatek.com>
12803 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12804 L:      netdev@vger.kernel.org
12805 S:      Maintained
12806 F:      drivers/net/ethernet/mediatek/
12807
12808 MEDIATEK I2C CONTROLLER DRIVER
12809 M:      Qii Wang <qii.wang@mediatek.com>
12810 L:      linux-i2c@vger.kernel.org
12811 S:      Maintained
12812 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12813 F:      drivers/i2c/busses/i2c-mt65xx.c
12814
12815 MEDIATEK IOMMU DRIVER
12816 M:      Yong Wu <yong.wu@mediatek.com>
12817 L:      iommu@lists.linux.dev
12818 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12819 S:      Supported
12820 F:      Documentation/devicetree/bindings/iommu/mediatek*
12821 F:      drivers/iommu/mtk_iommu*
12822 F:      include/dt-bindings/memory/mt*-port.h
12823
12824 MEDIATEK JPEG DRIVER
12825 M:      Bin Liu <bin.liu@mediatek.com>
12826 S:      Supported
12827 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12828 F:      drivers/media/platform/mediatek/jpeg/
12829
12830 MEDIATEK MDP DRIVER
12831 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12832 M:      Houlong Wei <houlong.wei@mediatek.com>
12833 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12834 S:      Supported
12835 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12836 F:      drivers/media/platform/mediatek/mdp/
12837 F:      drivers/media/platform/mediatek/vpu/
12838
12839 MEDIATEK MEDIA DRIVER
12840 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12841 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12842 M:      Yunfei Dong <yunfei.dong@mediatek.com>
12843 S:      Supported
12844 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12845 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12846 F:      drivers/media/platform/mediatek/vcodec/
12847 F:      drivers/media/platform/mediatek/vpu/
12848
12849 MEDIATEK MMC/SD/SDIO DRIVER
12850 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12851 S:      Maintained
12852 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12853 F:      drivers/mmc/host/mtk-sd.c
12854
12855 MEDIATEK MT76 WIRELESS LAN DRIVER
12856 M:      Felix Fietkau <nbd@nbd.name>
12857 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12858 M:      Ryder Lee <ryder.lee@mediatek.com>
12859 R:      Shayne Chen <shayne.chen@mediatek.com>
12860 R:      Sean Wang <sean.wang@mediatek.com>
12861 L:      linux-wireless@vger.kernel.org
12862 S:      Maintained
12863 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12864 F:      drivers/net/wireless/mediatek/mt76/
12865
12866 MEDIATEK MT7601U WIRELESS LAN DRIVER
12867 M:      Jakub Kicinski <kuba@kernel.org>
12868 L:      linux-wireless@vger.kernel.org
12869 S:      Maintained
12870 F:      drivers/net/wireless/mediatek/mt7601u/
12871
12872 MEDIATEK MT7621 CLOCK DRIVER
12873 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12874 S:      Maintained
12875 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12876 F:      drivers/clk/ralink/clk-mt7621.c
12877
12878 MEDIATEK MT7621/28/88 I2C DRIVER
12879 M:      Stefan Roese <sr@denx.de>
12880 L:      linux-i2c@vger.kernel.org
12881 S:      Maintained
12882 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12883 F:      drivers/i2c/busses/i2c-mt7621.c
12884
12885 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12886 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12887 S:      Maintained
12888 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12889 F:      drivers/pci/controller/pcie-mt7621.c
12890
12891 MEDIATEK MT7621 PHY PCI DRIVER
12892 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12893 S:      Maintained
12894 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12895 F:      drivers/phy/ralink/phy-mt7621-pci.c
12896
12897 MEDIATEK NAND CONTROLLER DRIVER
12898 L:      linux-mtd@lists.infradead.org
12899 S:      Orphan
12900 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12901 F:      drivers/mtd/nand/raw/mtk_*
12902
12903 MEDIATEK PMIC LED DRIVER
12904 M:      Sean Wang <sean.wang@mediatek.com>
12905 S:      Maintained
12906 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12907 F:      drivers/leds/leds-mt6323.c
12908
12909 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12910 M:      Sean Wang <sean.wang@mediatek.com>
12911 S:      Maintained
12912 F:      drivers/char/hw_random/mtk-rng.c
12913
12914 MEDIATEK SMI DRIVER
12915 M:      Yong Wu <yong.wu@mediatek.com>
12916 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12917 S:      Supported
12918 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12919 F:      drivers/memory/mtk-smi.c
12920 F:      include/soc/mediatek/smi.h
12921
12922 MEDIATEK SWITCH DRIVER
12923 M:      Sean Wang <sean.wang@mediatek.com>
12924 M:      Landen Chao <Landen.Chao@mediatek.com>
12925 M:      DENG Qingfang <dqfext@gmail.com>
12926 L:      netdev@vger.kernel.org
12927 S:      Maintained
12928 F:      drivers/net/dsa/mt7530.*
12929 F:      net/dsa/tag_mtk.c
12930
12931 MEDIATEK T7XX 5G WWAN MODEM DRIVER
12932 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
12933 M:      Intel Corporation <linuxwwan@intel.com>
12934 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
12935 R:      Liu Haijun <haijun.liu@mediatek.com>
12936 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
12937 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
12938 L:      netdev@vger.kernel.org
12939 S:      Supported
12940 F:      drivers/net/wwan/t7xx/
12941
12942 MEDIATEK USB3 DRD IP DRIVER
12943 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12944 L:      linux-usb@vger.kernel.org
12945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12946 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12947 S:      Maintained
12948 F:      Documentation/devicetree/bindings/usb/mediatek,*
12949 F:      drivers/usb/host/xhci-mtk*
12950 F:      drivers/usb/mtu3/
12951
12952 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12953 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12954 M:      Martin Donnelly <martin.donnelly@ge.com>
12955 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12956 S:      Maintained
12957 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12958 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12959
12960 MEGARAID SCSI/SAS DRIVERS
12961 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12962 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12963 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12964 L:      megaraidlinux.pdl@broadcom.com
12965 L:      linux-scsi@vger.kernel.org
12966 S:      Maintained
12967 W:      http://www.avagotech.com/support/
12968 F:      Documentation/scsi/megaraid.rst
12969 F:      drivers/scsi/megaraid.*
12970 F:      drivers/scsi/megaraid/
12971
12972 MELEXIS MLX90614 DRIVER
12973 M:      Crt Mori <cmo@melexis.com>
12974 L:      linux-iio@vger.kernel.org
12975 S:      Supported
12976 W:      http://www.melexis.com
12977 F:      drivers/iio/temperature/mlx90614.c
12978
12979 MELEXIS MLX90632 DRIVER
12980 M:      Crt Mori <cmo@melexis.com>
12981 L:      linux-iio@vger.kernel.org
12982 S:      Supported
12983 W:      http://www.melexis.com
12984 F:      drivers/iio/temperature/mlx90632.c
12985
12986 MELFAS MIP4 TOUCHSCREEN DRIVER
12987 M:      Sangwon Jee <jeesw@melfas.com>
12988 S:      Supported
12989 W:      http://www.melfas.com
12990 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12991 F:      drivers/input/touchscreen/melfas_mip4.c
12992
12993 MELLANOX BLUEFIELD I2C DRIVER
12994 M:      Khalil Blaiech <kblaiech@nvidia.com>
12995 L:      linux-i2c@vger.kernel.org
12996 S:      Supported
12997 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12998 F:      drivers/i2c/busses/i2c-mlxbf.c
12999
13000 MELLANOX ETHERNET DRIVER (mlx4_en)
13001 M:      Tariq Toukan <tariqt@nvidia.com>
13002 L:      netdev@vger.kernel.org
13003 S:      Supported
13004 W:      http://www.mellanox.com
13005 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13006 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13007
13008 MELLANOX ETHERNET DRIVER (mlx5e)
13009 M:      Saeed Mahameed <saeedm@nvidia.com>
13010 L:      netdev@vger.kernel.org
13011 S:      Supported
13012 W:      http://www.mellanox.com
13013 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13014 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13015
13016 MELLANOX ETHERNET INNOVA DRIVERS
13017 R:      Boris Pismenny <borisp@nvidia.com>
13018 L:      netdev@vger.kernel.org
13019 S:      Supported
13020 W:      http://www.mellanox.com
13021 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13022 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13023 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13024 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13025
13026 MELLANOX ETHERNET SWITCH DRIVERS
13027 M:      Ido Schimmel <idosch@nvidia.com>
13028 M:      Petr Machata <petrm@nvidia.com>
13029 L:      netdev@vger.kernel.org
13030 S:      Supported
13031 W:      http://www.mellanox.com
13032 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13033 F:      drivers/net/ethernet/mellanox/mlxsw/
13034 F:      tools/testing/selftests/drivers/net/mlxsw/
13035
13036 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13037 M:      mlxsw@nvidia.com
13038 L:      netdev@vger.kernel.org
13039 S:      Supported
13040 W:      http://www.mellanox.com
13041 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13042 F:      drivers/net/ethernet/mellanox/mlxfw/
13043
13044 MELLANOX HARDWARE PLATFORM SUPPORT
13045 M:      Hans de Goede <hdegoede@redhat.com>
13046 M:      Mark Gross <markgross@kernel.org>
13047 M:      Vadim Pasternak <vadimp@nvidia.com>
13048 L:      platform-driver-x86@vger.kernel.org
13049 S:      Supported
13050 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13051 F:      drivers/platform/mellanox/
13052 F:      include/linux/platform_data/mlxreg.h
13053
13054 MELLANOX MLX4 core VPI driver
13055 M:      Tariq Toukan <tariqt@nvidia.com>
13056 L:      netdev@vger.kernel.org
13057 L:      linux-rdma@vger.kernel.org
13058 S:      Supported
13059 W:      http://www.mellanox.com
13060 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13061 F:      drivers/net/ethernet/mellanox/mlx4/
13062 F:      include/linux/mlx4/
13063
13064 MELLANOX MLX4 IB driver
13065 M:      Yishai Hadas <yishaih@nvidia.com>
13066 L:      linux-rdma@vger.kernel.org
13067 S:      Supported
13068 W:      http://www.mellanox.com
13069 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13070 F:      drivers/infiniband/hw/mlx4/
13071 F:      include/linux/mlx4/
13072 F:      include/uapi/rdma/mlx4-abi.h
13073
13074 MELLANOX MLX5 core VPI driver
13075 M:      Saeed Mahameed <saeedm@nvidia.com>
13076 M:      Leon Romanovsky <leonro@nvidia.com>
13077 L:      netdev@vger.kernel.org
13078 L:      linux-rdma@vger.kernel.org
13079 S:      Supported
13080 W:      http://www.mellanox.com
13081 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13082 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13083 F:      drivers/net/ethernet/mellanox/mlx5/core/
13084 F:      include/linux/mlx5/
13085
13086 MELLANOX MLX5 IB driver
13087 M:      Leon Romanovsky <leonro@nvidia.com>
13088 L:      linux-rdma@vger.kernel.org
13089 S:      Supported
13090 W:      http://www.mellanox.com
13091 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13092 F:      drivers/infiniband/hw/mlx5/
13093 F:      include/linux/mlx5/
13094 F:      include/uapi/rdma/mlx5-abi.h
13095
13096 MELLANOX MLXCPLD I2C AND MUX DRIVER
13097 M:      Vadim Pasternak <vadimp@nvidia.com>
13098 M:      Michael Shych <michaelsh@nvidia.com>
13099 L:      linux-i2c@vger.kernel.org
13100 S:      Supported
13101 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13102 F:      drivers/i2c/busses/i2c-mlxcpld.c
13103 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13104
13105 MELLANOX MLXCPLD LED DRIVER
13106 M:      Vadim Pasternak <vadimp@nvidia.com>
13107 L:      linux-leds@vger.kernel.org
13108 S:      Supported
13109 F:      Documentation/leds/leds-mlxcpld.rst
13110 F:      drivers/leds/leds-mlxcpld.c
13111 F:      drivers/leds/leds-mlxreg.c
13112
13113 MELLANOX PLATFORM DRIVER
13114 M:      Vadim Pasternak <vadimp@nvidia.com>
13115 L:      platform-driver-x86@vger.kernel.org
13116 S:      Supported
13117 F:      drivers/platform/x86/mlx-platform.c
13118
13119 MEMBARRIER SUPPORT
13120 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13121 M:      "Paul E. McKenney" <paulmck@kernel.org>
13122 L:      linux-kernel@vger.kernel.org
13123 S:      Supported
13124 F:      arch/powerpc/include/asm/membarrier.h
13125 F:      include/uapi/linux/membarrier.h
13126 F:      kernel/sched/membarrier.c
13127
13128 MEMBLOCK
13129 M:      Mike Rapoport <rppt@kernel.org>
13130 L:      linux-mm@kvack.org
13131 S:      Maintained
13132 F:      Documentation/core-api/boot-time-mm.rst
13133 F:      include/linux/memblock.h
13134 F:      mm/memblock.c
13135 F:      tools/testing/memblock/
13136
13137 MEMORY CONTROLLER DRIVERS
13138 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13139 L:      linux-kernel@vger.kernel.org
13140 S:      Maintained
13141 B:      mailto:krzysztof.kozlowski@linaro.org
13142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13143 F:      Documentation/devicetree/bindings/memory-controllers/
13144 F:      drivers/memory/
13145 F:      include/dt-bindings/memory/
13146 F:      include/memory/
13147
13148 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13149 M:      Dmitry Osipenko <digetx@gmail.com>
13150 L:      linux-pm@vger.kernel.org
13151 L:      linux-tegra@vger.kernel.org
13152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13153 S:      Maintained
13154 F:      drivers/devfreq/tegra30-devfreq.c
13155
13156 MEMORY MANAGEMENT
13157 M:      Andrew Morton <akpm@linux-foundation.org>
13158 L:      linux-mm@kvack.org
13159 S:      Maintained
13160 W:      http://www.linux-mm.org
13161 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13162 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13163 F:      include/linux/gfp.h
13164 F:      include/linux/gfp_types.h
13165 F:      include/linux/memory_hotplug.h
13166 F:      include/linux/mm.h
13167 F:      include/linux/mmzone.h
13168 F:      include/linux/pagewalk.h
13169 F:      include/linux/vmalloc.h
13170 F:      mm/
13171 F:      tools/testing/selftests/vm/
13172
13173 MEMORY HOT(UN)PLUG
13174 M:      David Hildenbrand <david@redhat.com>
13175 M:      Oscar Salvador <osalvador@suse.de>
13176 L:      linux-mm@kvack.org
13177 S:      Maintained
13178 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13179 F:      Documentation/core-api/memory-hotplug.rst
13180 F:      drivers/base/memory.c
13181 F:      include/linux/memory_hotplug.h
13182 F:      mm/memory_hotplug.c
13183 F:      tools/testing/selftests/memory-hotplug/
13184
13185 MEMORY TECHNOLOGY DEVICES (MTD)
13186 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13187 M:      Richard Weinberger <richard@nod.at>
13188 M:      Vignesh Raghavendra <vigneshr@ti.com>
13189 L:      linux-mtd@lists.infradead.org
13190 S:      Maintained
13191 W:      http://www.linux-mtd.infradead.org/
13192 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13193 C:      irc://irc.oftc.net/mtd
13194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13196 F:      Documentation/devicetree/bindings/mtd/
13197 F:      drivers/mtd/
13198 F:      include/linux/mtd/
13199 F:      include/uapi/mtd/
13200
13201 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13202 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13203 L:      linux-iio@vger.kernel.org
13204 S:      Maintained
13205 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13206 F:      drivers/iio/accel/msa311.c
13207
13208 MEN A21 WATCHDOG DRIVER
13209 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13210 L:      linux-watchdog@vger.kernel.org
13211 S:      Maintained
13212 F:      drivers/watchdog/mena21_wdt.c
13213
13214 MEN CHAMELEON BUS (mcb)
13215 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13216 S:      Maintained
13217 F:      Documentation/driver-api/men-chameleon-bus.rst
13218 F:      drivers/mcb/
13219 F:      include/linux/mcb.h
13220
13221 MEN F21BMC (Board Management Controller)
13222 M:      Andreas Werner <andreas.werner@men.de>
13223 S:      Supported
13224 F:      Documentation/hwmon/menf21bmc.rst
13225 F:      drivers/hwmon/menf21bmc_hwmon.c
13226 F:      drivers/leds/leds-menf21bmc.c
13227 F:      drivers/mfd/menf21bmc.c
13228 F:      drivers/watchdog/menf21bmc_wdt.c
13229
13230 MEN Z069 WATCHDOG DRIVER
13231 M:      Johannes Thumshirn <jth@kernel.org>
13232 L:      linux-watchdog@vger.kernel.org
13233 S:      Maintained
13234 F:      drivers/watchdog/menz69_wdt.c
13235
13236 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13237 M:      Neil Armstrong <narmstrong@baylibre.com>
13238 L:      linux-media@vger.kernel.org
13239 L:      linux-amlogic@lists.infradead.org
13240 S:      Supported
13241 W:      http://linux-meson.com/
13242 T:      git git://linuxtv.org/media_tree.git
13243 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13244 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13245 F:      drivers/media/cec/platform/meson/ao-cec.c
13246
13247 MESON GE2D DRIVER FOR AMLOGIC SOCS
13248 M:      Neil Armstrong <narmstrong@baylibre.com>
13249 L:      linux-media@vger.kernel.org
13250 L:      linux-amlogic@lists.infradead.org
13251 S:      Supported
13252 T:      git git://linuxtv.org/media_tree.git
13253 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13254 F:      drivers/media/platform/amlogic/meson-ge2d/
13255
13256 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13257 M:      Liang Yang <liang.yang@amlogic.com>
13258 L:      linux-mtd@lists.infradead.org
13259 S:      Maintained
13260 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
13261 F:      drivers/mtd/nand/raw/meson_*
13262
13263 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13264 M:      Neil Armstrong <narmstrong@baylibre.com>
13265 L:      linux-media@vger.kernel.org
13266 L:      linux-amlogic@lists.infradead.org
13267 S:      Supported
13268 T:      git git://linuxtv.org/media_tree.git
13269 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13270 F:      drivers/staging/media/meson/vdec/
13271
13272 METHODE UDPU SUPPORT
13273 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13274 S:      Maintained
13275 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13276
13277 MHI BUS
13278 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13279 R:      Hemant Kumar <quic_hemantk@quicinc.com>
13280 L:      mhi@lists.linux.dev
13281 L:      linux-arm-msm@vger.kernel.org
13282 S:      Maintained
13283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13284 F:      Documentation/ABI/stable/sysfs-bus-mhi
13285 F:      Documentation/mhi/
13286 F:      drivers/bus/mhi/
13287 F:      include/linux/mhi.h
13288
13289 MICROBLAZE ARCHITECTURE
13290 M:      Michal Simek <monstr@monstr.eu>
13291 S:      Supported
13292 W:      http://www.monstr.eu/fdt/
13293 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13294 F:      arch/microblaze/
13295
13296 MICROCHIP AT91 DMA DRIVERS
13297 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13298 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13299 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13300 L:      dmaengine@vger.kernel.org
13301 S:      Supported
13302 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13303 F:      drivers/dma/at_hdmac.c
13304 F:      drivers/dma/at_hdmac_regs.h
13305 F:      drivers/dma/at_xdmac.c
13306 F:      include/dt-bindings/dma/at91.h
13307
13308 MICROCHIP AT91 SERIAL DRIVER
13309 M:      Richard Genoud <richard.genoud@gmail.com>
13310 S:      Maintained
13311 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13312 F:      drivers/tty/serial/atmel_serial.c
13313 F:      drivers/tty/serial/atmel_serial.h
13314
13315 MICROCHIP AT91 USART MFD DRIVER
13316 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13317 L:      linux-kernel@vger.kernel.org
13318 S:      Supported
13319 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13320 F:      drivers/mfd/at91-usart.c
13321 F:      include/dt-bindings/mfd/at91-usart.h
13322
13323 MICROCHIP AT91 USART SPI DRIVER
13324 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13325 L:      linux-spi@vger.kernel.org
13326 S:      Supported
13327 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13328 F:      drivers/spi/spi-at91-usart.c
13329
13330 MICROCHIP AUDIO ASOC DRIVERS
13331 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13332 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13333 S:      Supported
13334 F:      sound/soc/atmel
13335
13336 MICROCHIP CSI2DC DRIVER
13337 M:      Eugen Hristev <eugen.hristev@microchip.com>
13338 L:      linux-media@vger.kernel.org
13339 S:      Supported
13340 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13341 F:      drivers/media/platform/atmel/microchip-csi2dc.c
13342
13343 MICROCHIP ECC DRIVER
13344 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13345 L:      linux-crypto@vger.kernel.org
13346 S:      Maintained
13347 F:      drivers/crypto/atmel-ecc.*
13348
13349 MICROCHIP EIC DRIVER
13350 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13352 S:      Supported
13353 F:      drivers/irqchip/irq-mchp-eic.c
13354
13355 MICROCHIP I2C DRIVER
13356 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13357 L:      linux-i2c@vger.kernel.org
13358 S:      Supported
13359 F:      drivers/i2c/busses/i2c-at91-*.c
13360 F:      drivers/i2c/busses/i2c-at91.h
13361
13362 MICROCHIP ISC DRIVER
13363 M:      Eugen Hristev <eugen.hristev@microchip.com>
13364 L:      linux-media@vger.kernel.org
13365 S:      Supported
13366 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13367 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13368 F:      drivers/media/platform/atmel/atmel-isc*
13369 F:      drivers/media/platform/atmel/atmel-sama*-isc*
13370 F:      include/linux/atmel-isc-media.h
13371
13372 MICROCHIP ISI DRIVER
13373 M:      Eugen Hristev <eugen.hristev@microchip.com>
13374 L:      linux-media@vger.kernel.org
13375 S:      Supported
13376 F:      drivers/media/platform/atmel/atmel-isi.c
13377 F:      drivers/media/platform/atmel/atmel-isi.h
13378
13379 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13380 M:      Woojung Huh <woojung.huh@microchip.com>
13381 M:      UNGLinuxDriver@microchip.com
13382 L:      netdev@vger.kernel.org
13383 S:      Maintained
13384 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13385 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13386 F:      drivers/net/dsa/microchip/*
13387 F:      include/linux/platform_data/microchip-ksz.h
13388 F:      net/dsa/tag_ksz.c
13389
13390 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13391 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13392 R:      UNGLinuxDriver@microchip.com
13393 L:      netdev@vger.kernel.org
13394 S:      Maintained
13395 F:      drivers/net/phy/microchip_t1.c
13396
13397 MICROCHIP LAN743X ETHERNET DRIVER
13398 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13399 M:      UNGLinuxDriver@microchip.com
13400 L:      netdev@vger.kernel.org
13401 S:      Maintained
13402 F:      drivers/net/ethernet/microchip/lan743x_*
13403
13404 MICROCHIP LAN966X ETHERNET DRIVER
13405 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13406 M:      UNGLinuxDriver@microchip.com
13407 L:      netdev@vger.kernel.org
13408 S:      Maintained
13409 F:      drivers/net/ethernet/microchip/lan966x/*
13410
13411 MICROCHIP LCDFB DRIVER
13412 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13413 L:      linux-fbdev@vger.kernel.org
13414 S:      Maintained
13415 F:      drivers/video/fbdev/atmel_lcdfb.c
13416 F:      include/video/atmel_lcdc.h
13417
13418 MICROCHIP MCP16502 PMIC DRIVER
13419 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13421 S:      Supported
13422 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13423 F:      drivers/regulator/mcp16502.c
13424
13425 MICROCHIP MCP3911 ADC DRIVER
13426 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13427 M:      Kent Gustavsson <kent@minoris.se>
13428 L:      linux-iio@vger.kernel.org
13429 S:      Maintained
13430 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13431 F:      drivers/iio/adc/mcp3911.c
13432
13433 MICROCHIP MMC/SD/SDIO MCI DRIVER
13434 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13435 S:      Maintained
13436 F:      drivers/mmc/host/atmel-mci.c
13437
13438 MICROCHIP NAND DRIVER
13439 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13440 L:      linux-mtd@lists.infradead.org
13441 S:      Supported
13442 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13443 F:      drivers/mtd/nand/raw/atmel/*
13444
13445 MICROCHIP PCI1XXXX GP DRIVER
13446 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13447 L:      linux-gpio@vger.kernel.org
13448 S:      Supported
13449 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13450 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13451 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13452
13453 MICROCHIP OTPC DRIVER
13454 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13456 S:      Supported
13457 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13458 F:      drivers/nvmem/microchip-otpc.c
13459 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13460
13461 MICROCHIP PWM DRIVER
13462 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13464 L:      linux-pwm@vger.kernel.org
13465 S:      Supported
13466 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13467 F:      drivers/pwm/pwm-atmel.c
13468
13469 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13470 M:      Eugen Hristev <eugen.hristev@microchip.com>
13471 L:      linux-iio@vger.kernel.org
13472 S:      Supported
13473 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13474 F:      drivers/iio/adc/at91-sama5d2_adc.c
13475 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13476
13477 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13478 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13479 S:      Supported
13480 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13481
13482 MICROCHIP SPI DRIVER
13483 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13484 S:      Supported
13485 F:      drivers/spi/spi-atmel.*
13486
13487 MICROCHIP SSC DRIVER
13488 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13489 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13490 S:      Supported
13491 F:      drivers/misc/atmel-ssc.c
13492 F:      include/linux/atmel-ssc.h
13493
13494 MICROCHIP USB251XB DRIVER
13495 M:      Richard Leitner <richard.leitner@skidata.com>
13496 L:      linux-usb@vger.kernel.org
13497 S:      Maintained
13498 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13499 F:      drivers/usb/misc/usb251xb.c
13500
13501 MICROCHIP USBA UDC DRIVER
13502 M:      Cristian Birsan <cristian.birsan@microchip.com>
13503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13504 S:      Supported
13505 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13506
13507 MICROCHIP WILC1000 WIFI DRIVER
13508 M:      Ajay Singh <ajay.kathat@microchip.com>
13509 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13510 L:      linux-wireless@vger.kernel.org
13511 S:      Supported
13512 F:      drivers/net/wireless/microchip/wilc1000/
13513
13514 MICROSEMI MIPS SOCS
13515 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13516 M:      UNGLinuxDriver@microchip.com
13517 L:      linux-mips@vger.kernel.org
13518 S:      Supported
13519 F:      Documentation/devicetree/bindings/mips/mscc.txt
13520 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13521 F:      arch/mips/boot/dts/mscc/
13522 F:      arch/mips/configs/generic/board-ocelot.config
13523 F:      arch/mips/generic/board-ocelot.c
13524
13525 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13526 M:      Don Brace <don.brace@microchip.com>
13527 L:      storagedev@microchip.com
13528 L:      linux-scsi@vger.kernel.org
13529 S:      Supported
13530 F:      Documentation/scsi/smartpqi.rst
13531 F:      drivers/scsi/smartpqi/Kconfig
13532 F:      drivers/scsi/smartpqi/Makefile
13533 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13534 F:      include/linux/cciss*.h
13535 F:      include/uapi/linux/cciss*.h
13536
13537 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13538 M:      Maximilian Luz <luzmaximilian@gmail.com>
13539 L:      platform-driver-x86@vger.kernel.org
13540 S:      Maintained
13541 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13542
13543 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13544 M:      Maximilian Luz <luzmaximilian@gmail.com>
13545 L:      linux-pm@vger.kernel.org
13546 L:      platform-driver-x86@vger.kernel.org
13547 S:      Maintained
13548 F:      drivers/power/supply/surface_battery.c
13549 F:      drivers/power/supply/surface_charger.c
13550
13551 MICROSOFT SURFACE DTX DRIVER
13552 M:      Maximilian Luz <luzmaximilian@gmail.com>
13553 L:      platform-driver-x86@vger.kernel.org
13554 S:      Maintained
13555 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13556 F:      drivers/platform/surface/surface_dtx.c
13557 F:      include/uapi/linux/surface_aggregator/dtx.h
13558
13559 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13560 M:      Maximilian Luz <luzmaximilian@gmail.com>
13561 L:      platform-driver-x86@vger.kernel.org
13562 S:      Maintained
13563 F:      drivers/platform/surface/surface_gpe.c
13564
13565 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13566 M:      Hans de Goede <hdegoede@redhat.com>
13567 M:      Mark Gross <markgross@kernel.org>
13568 M:      Maximilian Luz <luzmaximilian@gmail.com>
13569 L:      platform-driver-x86@vger.kernel.org
13570 S:      Maintained
13571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13572 F:      drivers/platform/surface/
13573
13574 MICROSOFT SURFACE HID TRANSPORT DRIVER
13575 M:      Maximilian Luz <luzmaximilian@gmail.com>
13576 L:      linux-input@vger.kernel.org
13577 L:      platform-driver-x86@vger.kernel.org
13578 S:      Maintained
13579 F:      drivers/hid/surface-hid/
13580
13581 MICROSOFT SURFACE HOT-PLUG DRIVER
13582 M:      Maximilian Luz <luzmaximilian@gmail.com>
13583 L:      platform-driver-x86@vger.kernel.org
13584 S:      Maintained
13585 F:      drivers/platform/surface/surface_hotplug.c
13586
13587 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13588 M:      Maximilian Luz <luzmaximilian@gmail.com>
13589 L:      platform-driver-x86@vger.kernel.org
13590 S:      Maintained
13591 F:      drivers/platform/surface/surface_platform_profile.c
13592
13593 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13594 M:      Chen Yu <yu.c.chen@intel.com>
13595 L:      platform-driver-x86@vger.kernel.org
13596 S:      Supported
13597 F:      drivers/platform/surface/surfacepro3_button.c
13598
13599 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13600 M:      Maximilian Luz <luzmaximilian@gmail.com>
13601 L:      platform-driver-x86@vger.kernel.org
13602 S:      Maintained
13603 W:      https://github.com/linux-surface/surface-aggregator-module
13604 C:      irc://irc.libera.chat/linux-surface
13605 F:      Documentation/driver-api/surface_aggregator/
13606 F:      drivers/platform/surface/aggregator/
13607 F:      drivers/platform/surface/surface_acpi_notify.c
13608 F:      drivers/platform/surface/surface_aggregator_cdev.c
13609 F:      drivers/platform/surface/surface_aggregator_registry.c
13610 F:      include/linux/surface_acpi_notify.h
13611 F:      include/linux/surface_aggregator/
13612 F:      include/uapi/linux/surface_aggregator/
13613
13614 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13615 M:      Maximilian Luz <luzmaximilian@gmail.com>
13616 L:      platform-driver-x86@vger.kernel.org
13617 S:      Maintained
13618 F:      drivers/platform/surface/surface_aggregator_hub.c
13619
13620 MICROTEK X6 SCANNER
13621 M:      Oliver Neukum <oliver@neukum.org>
13622 S:      Maintained
13623 F:      drivers/usb/image/microtek.*
13624
13625 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13626 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13627 M:      Luka Perkov <luka.perkov@sartura.hr>
13628 S:      Maintained
13629 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13630 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13631 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13632 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13633 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13634 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13635
13636 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13637 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13638 L:      linux-media@vger.kernel.org
13639 S:      Maintained
13640 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13641 F:      Documentation/driver-api/media/drivers/ccs/
13642 F:      Documentation/userspace-api/media/drivers/ccs.rst
13643 F:      drivers/media/i2c/ccs-pll.c
13644 F:      drivers/media/i2c/ccs-pll.h
13645 F:      drivers/media/i2c/ccs/
13646 F:      include/uapi/linux/ccs.h
13647 F:      include/uapi/linux/smiapp.h
13648
13649 MIPS
13650 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13651 L:      linux-mips@vger.kernel.org
13652 S:      Maintained
13653 W:      http://www.linux-mips.org/
13654 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13656 F:      Documentation/devicetree/bindings/mips/
13657 F:      Documentation/mips/
13658 F:      arch/mips/
13659 F:      drivers/platform/mips/
13660 F:      include/dt-bindings/mips/
13661
13662 MIPS BOSTON DEVELOPMENT BOARD
13663 M:      Paul Burton <paulburton@kernel.org>
13664 L:      linux-mips@vger.kernel.org
13665 S:      Maintained
13666 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13667 F:      arch/mips/boot/dts/img/boston.dts
13668 F:      arch/mips/configs/generic/board-boston.config
13669 F:      drivers/clk/imgtec/clk-boston.c
13670 F:      include/dt-bindings/clock/boston-clock.h
13671
13672 MIPS CORE DRIVERS
13673 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13674 M:      Serge Semin <fancer.lancer@gmail.com>
13675 L:      linux-mips@vger.kernel.org
13676 S:      Supported
13677 F:      drivers/bus/mips_cdmm.c
13678 F:      drivers/clocksource/mips-gic-timer.c
13679 F:      drivers/cpuidle/cpuidle-cps.c
13680 F:      drivers/irqchip/irq-mips-cpu.c
13681 F:      drivers/irqchip/irq-mips-gic.c
13682
13683 MIPS GENERIC PLATFORM
13684 M:      Paul Burton <paulburton@kernel.org>
13685 L:      linux-mips@vger.kernel.org
13686 S:      Supported
13687 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13688 F:      arch/mips/generic/
13689 F:      arch/mips/tools/generic-board-config.sh
13690
13691 MIPS RINT INSTRUCTION EMULATION
13692 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13693 L:      linux-mips@vger.kernel.org
13694 S:      Supported
13695 F:      arch/mips/math-emu/dp_rint.c
13696 F:      arch/mips/math-emu/sp_rint.c
13697
13698 MIPS/LOONGSON1 ARCHITECTURE
13699 M:      Keguang Zhang <keguang.zhang@gmail.com>
13700 L:      linux-mips@vger.kernel.org
13701 S:      Maintained
13702 F:      arch/mips/include/asm/mach-loongson32/
13703 F:      arch/mips/loongson32/
13704 F:      drivers/*/*/*loongson1*
13705 F:      drivers/*/*loongson1*
13706
13707 MIPS/LOONGSON2EF ARCHITECTURE
13708 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13709 L:      linux-mips@vger.kernel.org
13710 S:      Maintained
13711 F:      arch/mips/include/asm/mach-loongson2ef/
13712 F:      arch/mips/loongson2ef/
13713 F:      drivers/cpufreq/loongson2_cpufreq.c
13714
13715 MIPS/LOONGSON64 ARCHITECTURE
13716 M:      Huacai Chen <chenhuacai@kernel.org>
13717 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13718 L:      linux-mips@vger.kernel.org
13719 S:      Maintained
13720 F:      arch/mips/include/asm/mach-loongson64/
13721 F:      arch/mips/loongson64/
13722 F:      drivers/irqchip/irq-loongson*
13723 F:      drivers/platform/mips/cpu_hwmon.c
13724
13725 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13726 M:      Hans Verkuil <hverkuil@xs4all.nl>
13727 L:      linux-media@vger.kernel.org
13728 S:      Odd Fixes
13729 W:      https://linuxtv.org
13730 T:      git git://linuxtv.org/media_tree.git
13731 F:      drivers/media/radio/radio-miropcm20*
13732
13733 MMP SUPPORT
13734 R:      Lubomir Rintel <lkundrak@v3.sk>
13735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13736 S:      Odd Fixes
13737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13738 F:      arch/arm/boot/dts/mmp*
13739 F:      arch/arm/mach-mmp/
13740 F:      include/linux/soc/mmp/
13741
13742 MMP USB PHY DRIVERS
13743 R:      Lubomir Rintel <lkundrak@v3.sk>
13744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13745 S:      Maintained
13746 F:      drivers/phy/marvell/phy-mmp3-usb.c
13747 F:      drivers/phy/marvell/phy-pxa-usb.c
13748
13749 MMU GATHER AND TLB INVALIDATION
13750 M:      Will Deacon <will@kernel.org>
13751 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13752 M:      Andrew Morton <akpm@linux-foundation.org>
13753 M:      Nick Piggin <npiggin@gmail.com>
13754 M:      Peter Zijlstra <peterz@infradead.org>
13755 L:      linux-arch@vger.kernel.org
13756 L:      linux-mm@kvack.org
13757 S:      Maintained
13758 F:      arch/*/include/asm/tlb.h
13759 F:      include/asm-generic/tlb.h
13760 F:      mm/mmu_gather.c
13761
13762 MN88472 MEDIA DRIVER
13763 M:      Antti Palosaari <crope@iki.fi>
13764 L:      linux-media@vger.kernel.org
13765 S:      Maintained
13766 W:      https://linuxtv.org
13767 W:      http://palosaari.fi/linux/
13768 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13769 F:      drivers/media/dvb-frontends/mn88472*
13770
13771 MN88473 MEDIA DRIVER
13772 M:      Antti Palosaari <crope@iki.fi>
13773 L:      linux-media@vger.kernel.org
13774 S:      Maintained
13775 W:      https://linuxtv.org
13776 W:      http://palosaari.fi/linux/
13777 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13778 F:      drivers/media/dvb-frontends/mn88473*
13779
13780 MODULE SUPPORT
13781 M:      Luis Chamberlain <mcgrof@kernel.org>
13782 L:      linux-modules@vger.kernel.org
13783 L:      linux-kernel@vger.kernel.org
13784 S:      Maintained
13785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13786 F:      include/linux/module.h
13787 F:      kernel/module/
13788 F:      scripts/module*
13789
13790 MONOLITHIC POWER SYSTEM PMIC DRIVER
13791 M:      Saravanan Sekar <sravanhome@gmail.com>
13792 S:      Maintained
13793 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13794 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13795 F:      drivers/iio/adc/mp2629_adc.c
13796 F:      drivers/mfd/mp2629.c
13797 F:      drivers/power/supply/mp2629_charger.c
13798 F:      drivers/regulator/mp5416.c
13799 F:      drivers/regulator/mpq7920.c
13800 F:      drivers/regulator/mpq7920.h
13801 F:      include/linux/mfd/mp2629.h
13802
13803 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13804 S:      Orphan
13805 W:      http://popies.net/meye/
13806 F:      Documentation/userspace-api/media/drivers/meye*
13807 F:      drivers/media/pci/meye/
13808 F:      include/uapi/linux/meye.h
13809
13810 MOTORCOMM PHY DRIVER
13811 M:      Peter Geis <pgwipeout@gmail.com>
13812 L:      netdev@vger.kernel.org
13813 S:      Maintained
13814 F:      drivers/net/phy/motorcomm.c
13815
13816 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13817 M:      Jiri Slaby <jirislaby@kernel.org>
13818 S:      Maintained
13819 F:      Documentation/driver-api/tty/moxa-smartio.rst
13820 F:      drivers/tty/mxser.*
13821
13822 MR800 AVERMEDIA USB FM RADIO DRIVER
13823 M:      Alexey Klimov <klimov.linux@gmail.com>
13824 L:      linux-media@vger.kernel.org
13825 S:      Maintained
13826 T:      git git://linuxtv.org/media_tree.git
13827 F:      drivers/media/radio/radio-mr800.c
13828
13829 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13830 M:      Alan Ott <alan@signal11.us>
13831 L:      linux-wpan@vger.kernel.org
13832 S:      Maintained
13833 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13834 F:      drivers/net/ieee802154/mrf24j40.c
13835
13836 MSI LAPTOP SUPPORT
13837 M:      "Lee, Chun-Yi" <jlee@suse.com>
13838 L:      platform-driver-x86@vger.kernel.org
13839 S:      Maintained
13840 F:      drivers/platform/x86/msi-laptop.c
13841
13842 MSI WMI SUPPORT
13843 L:      platform-driver-x86@vger.kernel.org
13844 S:      Orphan
13845 F:      drivers/platform/x86/msi-wmi.c
13846
13847 MSI001 MEDIA DRIVER
13848 M:      Antti Palosaari <crope@iki.fi>
13849 L:      linux-media@vger.kernel.org
13850 S:      Maintained
13851 W:      https://linuxtv.org
13852 W:      http://palosaari.fi/linux/
13853 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13854 T:      git git://linuxtv.org/anttip/media_tree.git
13855 F:      drivers/media/tuners/msi001*
13856
13857 MSI2500 MEDIA DRIVER
13858 M:      Antti Palosaari <crope@iki.fi>
13859 L:      linux-media@vger.kernel.org
13860 S:      Maintained
13861 W:      https://linuxtv.org
13862 W:      http://palosaari.fi/linux/
13863 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13864 T:      git git://linuxtv.org/anttip/media_tree.git
13865 F:      drivers/media/usb/msi2500/
13866
13867 MSTAR INTERRUPT CONTROLLER DRIVER
13868 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13869 M:      Daniel Palmer <daniel@thingy.jp>
13870 S:      Maintained
13871 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13872 F:      drivers/irqchip/irq-mst-intc.c
13873
13874 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13875 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13876 L:      linux-mtd@lists.infradead.org
13877 S:      Maintained
13878 F:      drivers/mtd/devices/docg3*
13879
13880 MT9M032 APTINA SENSOR DRIVER
13881 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13882 L:      linux-media@vger.kernel.org
13883 S:      Maintained
13884 T:      git git://linuxtv.org/media_tree.git
13885 F:      drivers/media/i2c/mt9m032.c
13886 F:      include/media/i2c/mt9m032.h
13887
13888 MT9P031 APTINA CAMERA SENSOR
13889 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13890 L:      linux-media@vger.kernel.org
13891 S:      Maintained
13892 T:      git git://linuxtv.org/media_tree.git
13893 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13894 F:      drivers/media/i2c/mt9p031.c
13895 F:      include/media/i2c/mt9p031.h
13896
13897 MT9T001 APTINA CAMERA SENSOR
13898 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13899 L:      linux-media@vger.kernel.org
13900 S:      Maintained
13901 T:      git git://linuxtv.org/media_tree.git
13902 F:      drivers/media/i2c/mt9t001.c
13903 F:      include/media/i2c/mt9t001.h
13904
13905 MT9T112 APTINA CAMERA SENSOR
13906 M:      Jacopo Mondi <jacopo@jmondi.org>
13907 L:      linux-media@vger.kernel.org
13908 S:      Odd Fixes
13909 T:      git git://linuxtv.org/media_tree.git
13910 F:      drivers/media/i2c/mt9t112.c
13911 F:      include/media/i2c/mt9t112.h
13912
13913 MT9V032 APTINA CAMERA SENSOR
13914 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13915 L:      linux-media@vger.kernel.org
13916 S:      Maintained
13917 T:      git git://linuxtv.org/media_tree.git
13918 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13919 F:      drivers/media/i2c/mt9v032.c
13920 F:      include/media/i2c/mt9v032.h
13921
13922 MT9V111 APTINA CAMERA SENSOR
13923 M:      Jacopo Mondi <jacopo@jmondi.org>
13924 L:      linux-media@vger.kernel.org
13925 S:      Maintained
13926 T:      git git://linuxtv.org/media_tree.git
13927 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13928 F:      drivers/media/i2c/mt9v111.c
13929
13930 MULTIFUNCTION DEVICES (MFD)
13931 M:      Lee Jones <lee@kernel.org>
13932 S:      Supported
13933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13934 F:      Documentation/devicetree/bindings/mfd/
13935 F:      drivers/mfd/
13936 F:      include/dt-bindings/mfd/
13937 F:      include/linux/mfd/
13938
13939 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13940 S:      Orphan
13941 F:      drivers/mmc/host/mmc_spi.c
13942 F:      include/linux/spi/mmc_spi.h
13943
13944 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13945 M:      Ulf Hansson <ulf.hansson@linaro.org>
13946 L:      linux-mmc@vger.kernel.org
13947 S:      Maintained
13948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13949 F:      Documentation/devicetree/bindings/mmc/
13950 F:      drivers/mmc/
13951 F:      include/linux/mmc/
13952 F:      include/uapi/linux/mmc/
13953
13954 MULTIPLEXER SUBSYSTEM
13955 M:      Peter Rosin <peda@axentia.se>
13956 S:      Maintained
13957 F:      Documentation/ABI/testing/sysfs-class-mux*
13958 F:      Documentation/devicetree/bindings/mux/
13959 F:      drivers/mux/
13960 F:      include/dt-bindings/mux/
13961 F:      include/linux/mux/
13962
13963 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13964 M:      Bin Liu <b-liu@ti.com>
13965 L:      linux-usb@vger.kernel.org
13966 S:      Maintained
13967 F:      drivers/usb/musb/
13968
13969 MXL301RF MEDIA DRIVER
13970 M:      Akihiro Tsukada <tskd08@gmail.com>
13971 L:      linux-media@vger.kernel.org
13972 S:      Odd Fixes
13973 F:      drivers/media/tuners/mxl301rf*
13974
13975 MXL5007T MEDIA DRIVER
13976 M:      Michael Krufky <mkrufky@linuxtv.org>
13977 L:      linux-media@vger.kernel.org
13978 S:      Maintained
13979 W:      https://linuxtv.org
13980 W:      http://github.com/mkrufky
13981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13982 T:      git git://linuxtv.org/mkrufky/tuners.git
13983 F:      drivers/media/tuners/mxl5007t.*
13984
13985 MXSFB DRM DRIVER
13986 M:      Marek Vasut <marex@denx.de>
13987 M:      Stefan Agner <stefan@agner.ch>
13988 L:      dri-devel@lists.freedesktop.org
13989 S:      Supported
13990 T:      git git://anongit.freedesktop.org/drm/drm-misc
13991 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13992 F:      drivers/gpu/drm/mxsfb/
13993
13994 MYLEX DAC960 PCI RAID Controller
13995 M:      Hannes Reinecke <hare@kernel.org>
13996 L:      linux-scsi@vger.kernel.org
13997 S:      Supported
13998 F:      drivers/scsi/myrb.*
13999 F:      drivers/scsi/myrs.*
14000
14001 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14002 M:      Chris Lee <christopher.lee@cspi.com>
14003 L:      netdev@vger.kernel.org
14004 S:      Supported
14005 W:      https://www.cspi.com/ethernet-products/support/downloads/
14006 F:      drivers/net/ethernet/myricom/myri10ge/
14007
14008 NAND FLASH SUBSYSTEM
14009 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14010 R:      Richard Weinberger <richard@nod.at>
14011 L:      linux-mtd@lists.infradead.org
14012 S:      Maintained
14013 W:      http://www.linux-mtd.infradead.org/
14014 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14015 C:      irc://irc.oftc.net/mtd
14016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14017 F:      drivers/mtd/nand/
14018 F:      include/linux/mtd/*nand*.h
14019
14020 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14021 M:      Daniel Mack <zonque@gmail.com>
14022 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14023 S:      Maintained
14024 W:      http://www.native-instruments.com
14025 F:      sound/usb/caiaq/
14026
14027 NATSEMI ETHERNET DRIVER (DP8381x)
14028 S:      Orphan
14029 F:      drivers/net/ethernet/natsemi/natsemi.c
14030
14031 NCR 5380 SCSI DRIVERS
14032 M:      Finn Thain <fthain@linux-m68k.org>
14033 M:      Michael Schmitz <schmitzmic@gmail.com>
14034 L:      linux-scsi@vger.kernel.org
14035 S:      Maintained
14036 F:      Documentation/scsi/g_NCR5380.rst
14037 F:      drivers/scsi/NCR5380.*
14038 F:      drivers/scsi/arm/cumana_1.c
14039 F:      drivers/scsi/arm/oak.c
14040 F:      drivers/scsi/atari_scsi.*
14041 F:      drivers/scsi/dmx3191d.c
14042 F:      drivers/scsi/g_NCR5380.*
14043 F:      drivers/scsi/mac_scsi.*
14044 F:      drivers/scsi/sun3_scsi.*
14045 F:      drivers/scsi/sun3_scsi_vme.c
14046
14047 NCSI LIBRARY
14048 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14049 S:      Maintained
14050 F:      net/ncsi/
14051
14052 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14053 M:      Guenter Roeck <linux@roeck-us.net>
14054 L:      linux-hwmon@vger.kernel.org
14055 S:      Maintained
14056 F:      Documentation/hwmon/nct6775.rst
14057 F:      drivers/hwmon/nct6775-core.c
14058 F:      drivers/hwmon/nct6775-platform.c
14059 F:      drivers/hwmon/nct6775.h
14060
14061 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14062 M:      Zev Weiss <zev@bewilderbeest.net>
14063 L:      linux-hwmon@vger.kernel.org
14064 S:      Maintained
14065 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14066 F:      drivers/hwmon/nct6775-i2c.c
14067
14068 NETDEVSIM
14069 M:      Jakub Kicinski <kuba@kernel.org>
14070 S:      Maintained
14071 F:      drivers/net/netdevsim/*
14072
14073 NETEM NETWORK EMULATOR
14074 M:      Stephen Hemminger <stephen@networkplumber.org>
14075 L:      netdev@vger.kernel.org
14076 S:      Maintained
14077 F:      net/sched/sch_netem.c
14078
14079 NETERION 10GbE DRIVERS (s2io)
14080 M:      Jon Mason <jdmason@kudzu.us>
14081 L:      netdev@vger.kernel.org
14082 S:      Supported
14083 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14084 F:      drivers/net/ethernet/neterion/
14085
14086 NETFILTER
14087 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14088 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14089 M:      Florian Westphal <fw@strlen.de>
14090 L:      netfilter-devel@vger.kernel.org
14091 L:      coreteam@netfilter.org
14092 S:      Maintained
14093 W:      http://www.netfilter.org/
14094 W:      http://www.iptables.org/
14095 W:      http://www.nftables.org/
14096 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14097 C:      irc://irc.libera.chat/netfilter
14098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14100 F:      include/linux/netfilter*
14101 F:      include/linux/netfilter/
14102 F:      include/net/netfilter/
14103 F:      include/uapi/linux/netfilter*
14104 F:      include/uapi/linux/netfilter/
14105 F:      net/*/netfilter.c
14106 F:      net/*/netfilter/
14107 F:      net/bridge/br_netfilter*.c
14108 F:      net/netfilter/
14109
14110 NETROM NETWORK LAYER
14111 M:      Ralf Baechle <ralf@linux-mips.org>
14112 L:      linux-hams@vger.kernel.org
14113 S:      Maintained
14114 W:      http://www.linux-ax25.org/
14115 F:      include/net/netrom.h
14116 F:      include/uapi/linux/netrom.h
14117 F:      net/netrom/
14118
14119 NETRONIX EMBEDDED CONTROLLER
14120 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14121 S:      Maintained
14122 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14123 F:      drivers/mfd/ntxec.c
14124 F:      drivers/pwm/pwm-ntxec.c
14125 F:      drivers/rtc/rtc-ntxec.c
14126 F:      include/linux/mfd/ntxec.h
14127
14128 NETRONOME ETHERNET DRIVERS
14129 M:      Simon Horman <simon.horman@corigine.com>
14130 R:      Jakub Kicinski <kuba@kernel.org>
14131 L:      oss-drivers@corigine.com
14132 S:      Maintained
14133 F:      drivers/net/ethernet/netronome/
14134
14135 NETWORK BLOCK DEVICE (NBD)
14136 M:      Josef Bacik <josef@toxicpanda.com>
14137 L:      linux-block@vger.kernel.org
14138 L:      nbd@other.debian.org
14139 S:      Maintained
14140 F:      Documentation/admin-guide/blockdev/nbd.rst
14141 F:      drivers/block/nbd.c
14142 F:      include/trace/events/nbd.h
14143 F:      include/uapi/linux/nbd.h
14144
14145 NETWORK DROP MONITOR
14146 M:      Neil Horman <nhorman@tuxdriver.com>
14147 L:      netdev@vger.kernel.org
14148 S:      Maintained
14149 W:      https://fedorahosted.org/dropwatch/
14150 F:      include/uapi/linux/net_dropmon.h
14151 F:      net/core/drop_monitor.c
14152
14153 NETWORKING DRIVERS
14154 M:      "David S. Miller" <davem@davemloft.net>
14155 M:      Eric Dumazet <edumazet@google.com>
14156 M:      Jakub Kicinski <kuba@kernel.org>
14157 M:      Paolo Abeni <pabeni@redhat.com>
14158 L:      netdev@vger.kernel.org
14159 S:      Maintained
14160 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14163 F:      Documentation/devicetree/bindings/net/
14164 F:      drivers/connector/
14165 F:      drivers/net/
14166 F:      include/dt-bindings/net/
14167 F:      include/linux/etherdevice.h
14168 F:      include/linux/fcdevice.h
14169 F:      include/linux/fddidevice.h
14170 F:      include/linux/hippidevice.h
14171 F:      include/linux/if_*
14172 F:      include/linux/inetdevice.h
14173 F:      include/linux/netdevice.h
14174 F:      include/uapi/linux/if_*
14175 F:      include/uapi/linux/netdevice.h
14176
14177 NETWORKING DRIVERS (WIRELESS)
14178 M:      Kalle Valo <kvalo@kernel.org>
14179 L:      linux-wireless@vger.kernel.org
14180 S:      Maintained
14181 W:      https://wireless.wiki.kernel.org/
14182 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14185 F:      Documentation/devicetree/bindings/net/wireless/
14186 F:      drivers/net/wireless/
14187
14188 NETWORKING [DSA]
14189 M:      Andrew Lunn <andrew@lunn.ch>
14190 M:      Vivien Didelot <vivien.didelot@gmail.com>
14191 M:      Florian Fainelli <f.fainelli@gmail.com>
14192 M:      Vladimir Oltean <olteanv@gmail.com>
14193 S:      Maintained
14194 F:      Documentation/devicetree/bindings/net/dsa/
14195 F:      drivers/net/dsa/
14196 F:      include/linux/dsa/
14197 F:      include/linux/platform_data/dsa.h
14198 F:      include/net/dsa.h
14199 F:      net/dsa/
14200 F:      tools/testing/selftests/drivers/net/dsa/
14201
14202 NETWORKING [GENERAL]
14203 M:      "David S. Miller" <davem@davemloft.net>
14204 M:      Eric Dumazet <edumazet@google.com>
14205 M:      Jakub Kicinski <kuba@kernel.org>
14206 M:      Paolo Abeni <pabeni@redhat.com>
14207 L:      netdev@vger.kernel.org
14208 S:      Maintained
14209 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14210 B:      mailto:netdev@vger.kernel.org
14211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14213 F:      Documentation/networking/
14214 F:      Documentation/process/maintainer-netdev.rst
14215 F:      include/linux/in.h
14216 F:      include/linux/net.h
14217 F:      include/linux/netdevice.h
14218 F:      include/net/
14219 F:      include/uapi/linux/in.h
14220 F:      include/uapi/linux/net.h
14221 F:      include/uapi/linux/net_namespace.h
14222 F:      include/uapi/linux/netdevice.h
14223 F:      lib/net_utils.c
14224 F:      lib/random32.c
14225 F:      net/
14226 F:      tools/testing/selftests/net/
14227
14228 NETWORKING [IPSEC]
14229 M:      Steffen Klassert <steffen.klassert@secunet.com>
14230 M:      Herbert Xu <herbert@gondor.apana.org.au>
14231 M:      "David S. Miller" <davem@davemloft.net>
14232 L:      netdev@vger.kernel.org
14233 S:      Maintained
14234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14236 F:      include/net/xfrm.h
14237 F:      include/uapi/linux/xfrm.h
14238 F:      net/ipv4/ah4.c
14239 F:      net/ipv4/esp4*
14240 F:      net/ipv4/ip_vti.c
14241 F:      net/ipv4/ipcomp.c
14242 F:      net/ipv4/xfrm*
14243 F:      net/ipv6/ah6.c
14244 F:      net/ipv6/esp6*
14245 F:      net/ipv6/ip6_vti.c
14246 F:      net/ipv6/ipcomp6.c
14247 F:      net/ipv6/xfrm*
14248 F:      net/key/
14249 F:      net/xfrm/
14250 F:      tools/testing/selftests/net/ipsec.c
14251
14252 NETWORKING [IPv4/IPv6]
14253 M:      "David S. Miller" <davem@davemloft.net>
14254 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
14255 M:      David Ahern <dsahern@kernel.org>
14256 L:      netdev@vger.kernel.org
14257 S:      Maintained
14258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14259 F:      arch/x86/net/*
14260 F:      include/linux/ip.h
14261 F:      include/linux/ipv6*
14262 F:      include/net/fib*
14263 F:      include/net/ip*
14264 F:      include/net/route.h
14265 F:      net/ipv4/
14266 F:      net/ipv6/
14267
14268 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14269 M:      Paul Moore <paul@paul-moore.com>
14270 L:      netdev@vger.kernel.org
14271 L:      linux-security-module@vger.kernel.org
14272 S:      Maintained
14273 W:      https://github.com/netlabel
14274 F:      Documentation/netlabel/
14275 F:      include/net/calipso.h
14276 F:      include/net/cipso_ipv4.h
14277 F:      include/net/netlabel.h
14278 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14279 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14280 F:      net/ipv4/cipso_ipv4.c
14281 F:      net/ipv6/calipso.c
14282 F:      net/netfilter/xt_CONNSECMARK.c
14283 F:      net/netfilter/xt_SECMARK.c
14284 F:      net/netlabel/
14285
14286 NETWORKING [MPTCP]
14287 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
14288 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14289 L:      netdev@vger.kernel.org
14290 L:      mptcp@lists.linux.dev
14291 S:      Maintained
14292 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14293 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14294 F:      Documentation/networking/mptcp-sysctl.rst
14295 F:      include/net/mptcp.h
14296 F:      include/trace/events/mptcp.h
14297 F:      include/uapi/linux/mptcp.h
14298 F:      net/mptcp/
14299 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14300 F:      tools/testing/selftests/net/mptcp/
14301
14302 NETWORKING [TCP]
14303 M:      Eric Dumazet <edumazet@google.com>
14304 L:      netdev@vger.kernel.org
14305 S:      Maintained
14306 F:      include/linux/tcp.h
14307 F:      include/net/tcp.h
14308 F:      include/trace/events/tcp.h
14309 F:      include/uapi/linux/tcp.h
14310 F:      net/ipv4/syncookies.c
14311 F:      net/ipv4/tcp*.c
14312 F:      net/ipv6/syncookies.c
14313 F:      net/ipv6/tcp*.c
14314
14315 NETWORKING [TLS]
14316 M:      Boris Pismenny <borisp@nvidia.com>
14317 M:      John Fastabend <john.fastabend@gmail.com>
14318 M:      Jakub Kicinski <kuba@kernel.org>
14319 L:      netdev@vger.kernel.org
14320 S:      Maintained
14321 F:      include/net/tls.h
14322 F:      include/uapi/linux/tls.h
14323 F:      net/tls/*
14324
14325 NETXEN (1/10) GbE SUPPORT
14326 M:      Manish Chopra <manishc@marvell.com>
14327 M:      Rahul Verma <rahulv@marvell.com>
14328 M:      GR-Linux-NIC-Dev@marvell.com
14329 L:      netdev@vger.kernel.org
14330 S:      Supported
14331 F:      drivers/net/ethernet/qlogic/netxen/
14332
14333 NET_FAILOVER MODULE
14334 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14335 L:      netdev@vger.kernel.org
14336 S:      Supported
14337 F:      Documentation/networking/net_failover.rst
14338 F:      drivers/net/net_failover.c
14339 F:      include/net/net_failover.h
14340
14341 NEXTHOP
14342 M:      David Ahern <dsahern@kernel.org>
14343 L:      netdev@vger.kernel.org
14344 S:      Maintained
14345 F:      include/net/netns/nexthop.h
14346 F:      include/net/nexthop.h
14347 F:      include/uapi/linux/nexthop.h
14348 F:      net/ipv4/nexthop.c
14349
14350 NFC SUBSYSTEM
14351 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14352 L:      linux-nfc@lists.01.org (subscribers-only)
14353 L:      netdev@vger.kernel.org
14354 S:      Maintained
14355 B:      mailto:linux-nfc@lists.01.org
14356 F:      Documentation/devicetree/bindings/net/nfc/
14357 F:      drivers/nfc/
14358 F:      include/linux/platform_data/nfcmrvl.h
14359 F:      include/net/nfc/
14360 F:      include/uapi/linux/nfc.h
14361 F:      net/nfc/
14362
14363 NFC VIRTUAL NCI DEVICE DRIVER
14364 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14365 L:      netdev@vger.kernel.org
14366 L:      linux-nfc@lists.01.org (subscribers-only)
14367 S:      Supported
14368 F:      drivers/nfc/virtual_ncidev.c
14369 F:      tools/testing/selftests/nci/
14370
14371 NFS, SUNRPC, AND LOCKD CLIENTS
14372 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14373 M:      Anna Schumaker <anna@kernel.org>
14374 L:      linux-nfs@vger.kernel.org
14375 S:      Maintained
14376 W:      http://client.linux-nfs.org
14377 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14378 F:      fs/lockd/
14379 F:      fs/nfs/
14380 F:      fs/nfs_common/
14381 F:      include/linux/lockd/
14382 F:      include/linux/nfs*
14383 F:      include/linux/sunrpc/
14384 F:      include/uapi/linux/nfs*
14385 F:      include/uapi/linux/sunrpc/
14386 F:      net/sunrpc/
14387 F:      Documentation/filesystems/nfs/
14388
14389 NILFS2 FILESYSTEM
14390 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14391 L:      linux-nilfs@vger.kernel.org
14392 S:      Supported
14393 W:      https://nilfs.sourceforge.io/
14394 W:      https://nilfs.osdn.jp/
14395 T:      git git://github.com/konis/nilfs2.git
14396 F:      Documentation/filesystems/nilfs2.rst
14397 F:      fs/nilfs2/
14398 F:      include/trace/events/nilfs2.h
14399 F:      include/uapi/linux/nilfs2_api.h
14400 F:      include/uapi/linux/nilfs2_ondisk.h
14401
14402 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14403 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14404 S:      Maintained
14405 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14406 F:      Documentation/scsi/NinjaSCSI.rst
14407 F:      drivers/scsi/pcmcia/nsp_*
14408
14409 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14410 M:      GOTO Masanori <gotom@debian.or.jp>
14411 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14412 S:      Maintained
14413 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14414 F:      Documentation/scsi/NinjaSCSI.rst
14415 F:      drivers/scsi/nsp32*
14416
14417 NINTENDO HID DRIVER
14418 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14419 L:      linux-input@vger.kernel.org
14420 S:      Maintained
14421 F:      drivers/hid/hid-nintendo*
14422
14423 NIOS2 ARCHITECTURE
14424 M:      Dinh Nguyen <dinguyen@kernel.org>
14425 S:      Maintained
14426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14427 F:      arch/nios2/
14428
14429 NITRO ENCLAVES (NE)
14430 M:      Andra Paraschiv <andraprs@amazon.com>
14431 M:      Alexandru Vasile <lexnv@amazon.com>
14432 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14433 L:      linux-kernel@vger.kernel.org
14434 S:      Supported
14435 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14436 F:      Documentation/virt/ne_overview.rst
14437 F:      drivers/virt/nitro_enclaves/
14438 F:      include/linux/nitro_enclaves.h
14439 F:      include/uapi/linux/nitro_enclaves.h
14440 F:      samples/nitro_enclaves/
14441
14442 NOHZ, DYNTICKS SUPPORT
14443 M:      Frederic Weisbecker <fweisbec@gmail.com>
14444 M:      Thomas Gleixner <tglx@linutronix.de>
14445 M:      Ingo Molnar <mingo@kernel.org>
14446 L:      linux-kernel@vger.kernel.org
14447 S:      Maintained
14448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14449 F:      include/linux/sched/nohz.h
14450 F:      include/linux/tick.h
14451 F:      kernel/time/tick*.*
14452
14453 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14454 M:      Pavel Machek <pavel@ucw.cz>
14455 M:      Sakari Ailus <sakari.ailus@iki.fi>
14456 L:      linux-media@vger.kernel.org
14457 S:      Maintained
14458 F:      drivers/media/i2c/ad5820.c
14459 F:      drivers/media/i2c/et8ek8
14460
14461 NOKIA N900 POWER SUPPLY DRIVERS
14462 R:      Pali Rohár <pali@kernel.org>
14463 F:      drivers/power/supply/bq2415x_charger.c
14464 F:      drivers/power/supply/bq27xxx_battery.c
14465 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14466 F:      drivers/power/supply/isp1704_charger.c
14467 F:      drivers/power/supply/rx51_battery.c
14468 F:      include/linux/power/bq2415x_charger.h
14469 F:      include/linux/power/bq27xxx_battery.h
14470
14471 NOLIBC HEADER FILE
14472 M:      Willy Tarreau <w@1wt.eu>
14473 S:      Maintained
14474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14475 F:      tools/include/nolibc/
14476
14477 NSDEPS
14478 M:      Matthias Maennich <maennich@google.com>
14479 S:      Maintained
14480 F:      Documentation/core-api/symbol-namespaces.rst
14481 F:      scripts/nsdeps
14482
14483 NTB AMD DRIVER
14484 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14485 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14486 L:      ntb@lists.linux.dev
14487 S:      Supported
14488 F:      drivers/ntb/hw/amd/
14489
14490 NTB DRIVER CORE
14491 M:      Jon Mason <jdmason@kudzu.us>
14492 M:      Dave Jiang <dave.jiang@intel.com>
14493 M:      Allen Hubbe <allenbh@gmail.com>
14494 L:      ntb@lists.linux.dev
14495 S:      Supported
14496 W:      https://github.com/jonmason/ntb/wiki
14497 T:      git git://github.com/jonmason/ntb.git
14498 F:      drivers/net/ntb_netdev.c
14499 F:      drivers/ntb/
14500 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14501 F:      include/linux/ntb.h
14502 F:      include/linux/ntb_transport.h
14503 F:      tools/testing/selftests/ntb/
14504
14505 NTB IDT DRIVER
14506 M:      Serge Semin <fancer.lancer@gmail.com>
14507 L:      ntb@lists.linux.dev
14508 S:      Supported
14509 F:      drivers/ntb/hw/idt/
14510
14511 NTB INTEL DRIVER
14512 M:      Dave Jiang <dave.jiang@intel.com>
14513 L:      ntb@lists.linux.dev
14514 S:      Supported
14515 W:      https://github.com/davejiang/linux/wiki
14516 T:      git https://github.com/davejiang/linux.git
14517 F:      drivers/ntb/hw/intel/
14518
14519 NTFS FILESYSTEM
14520 M:      Anton Altaparmakov <anton@tuxera.com>
14521 L:      linux-ntfs-dev@lists.sourceforge.net
14522 S:      Supported
14523 W:      http://www.tuxera.com/
14524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14525 F:      Documentation/filesystems/ntfs.rst
14526 F:      fs/ntfs/
14527
14528 NTFS3 FILESYSTEM
14529 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14530 L:      ntfs3@lists.linux.dev
14531 S:      Supported
14532 W:      http://www.paragon-software.com/
14533 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14534 F:      Documentation/filesystems/ntfs3.rst
14535 F:      fs/ntfs3/
14536
14537 NUBUS SUBSYSTEM
14538 M:      Finn Thain <fthain@linux-m68k.org>
14539 L:      linux-m68k@lists.linux-m68k.org
14540 S:      Maintained
14541 F:      arch/*/include/asm/nubus.h
14542 F:      drivers/nubus/
14543 F:      include/linux/nubus.h
14544 F:      include/uapi/linux/nubus.h
14545
14546 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14547 M:      Antonino Daplas <adaplas@gmail.com>
14548 L:      linux-fbdev@vger.kernel.org
14549 S:      Maintained
14550 F:      drivers/video/fbdev/nvidia/
14551 F:      drivers/video/fbdev/riva/
14552
14553 NVIDIA WMI EC BACKLIGHT DRIVER
14554 M:      Daniel Dadap <ddadap@nvidia.com>
14555 L:      platform-driver-x86@vger.kernel.org
14556 S:      Supported
14557 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14558
14559 NVM EXPRESS DRIVER
14560 M:      Keith Busch <kbusch@kernel.org>
14561 M:      Jens Axboe <axboe@fb.com>
14562 M:      Christoph Hellwig <hch@lst.de>
14563 M:      Sagi Grimberg <sagi@grimberg.me>
14564 L:      linux-nvme@lists.infradead.org
14565 S:      Supported
14566 W:      http://git.infradead.org/nvme.git
14567 T:      git://git.infradead.org/nvme.git
14568 F:      drivers/nvme/host/
14569 F:      drivers/nvme/common/
14570 F:      include/linux/nvme*
14571 F:      include/uapi/linux/nvme_ioctl.h
14572
14573 NVM EXPRESS FC TRANSPORT DRIVERS
14574 M:      James Smart <james.smart@broadcom.com>
14575 L:      linux-nvme@lists.infradead.org
14576 S:      Supported
14577 F:      drivers/nvme/host/fc.c
14578 F:      drivers/nvme/target/fc.c
14579 F:      drivers/nvme/target/fcloop.c
14580 F:      include/linux/nvme-fc-driver.h
14581 F:      include/linux/nvme-fc.h
14582
14583 NVM EXPRESS TARGET DRIVER
14584 M:      Christoph Hellwig <hch@lst.de>
14585 M:      Sagi Grimberg <sagi@grimberg.me>
14586 M:      Chaitanya Kulkarni <kch@nvidia.com>
14587 L:      linux-nvme@lists.infradead.org
14588 S:      Supported
14589 W:      http://git.infradead.org/nvme.git
14590 T:      git://git.infradead.org/nvme.git
14591 F:      drivers/nvme/target/
14592
14593 NVMEM FRAMEWORK
14594 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14595 S:      Maintained
14596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14597 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14598 F:      Documentation/devicetree/bindings/nvmem/
14599 F:      drivers/nvmem/
14600 F:      include/linux/nvmem-consumer.h
14601 F:      include/linux/nvmem-provider.h
14602
14603 NXP C45 TJA11XX PHY DRIVER
14604 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14605 L:      netdev@vger.kernel.org
14606 S:      Maintained
14607 F:      drivers/net/phy/nxp-c45-tja11xx.c
14608
14609 NXP FSPI DRIVER
14610 M:      Han Xu <han.xu@nxp.com>
14611 M:      Haibo Chen <haibo.chen@nxp.com>
14612 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14613 L:      linux-spi@vger.kernel.org
14614 S:      Maintained
14615 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14616 F:      drivers/spi/spi-nxp-fspi.c
14617
14618 NXP FXAS21002C DRIVER
14619 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14620 L:      linux-iio@vger.kernel.org
14621 S:      Maintained
14622 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14623 F:      drivers/iio/gyro/fxas21002c.h
14624 F:      drivers/iio/gyro/fxas21002c_core.c
14625 F:      drivers/iio/gyro/fxas21002c_i2c.c
14626 F:      drivers/iio/gyro/fxas21002c_spi.c
14627
14628 NXP i.MX CLOCK DRIVERS
14629 M:      Abel Vesa <abelvesa@kernel.org>
14630 L:      linux-clk@vger.kernel.org
14631 L:      linux-imx@nxp.com
14632 S:      Maintained
14633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14634 F:      Documentation/devicetree/bindings/clock/imx*
14635 F:      drivers/clk/imx/
14636 F:      include/dt-bindings/clock/imx*
14637
14638 NXP i.MX 8MQ DCSS DRIVER
14639 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14640 R:      Lucas Stach <l.stach@pengutronix.de>
14641 L:      dri-devel@lists.freedesktop.org
14642 S:      Maintained
14643 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14644 F:      drivers/gpu/drm/imx/dcss/
14645
14646 NXP i.MX 8QXP ADC DRIVER
14647 M:      Cai Huoqing <cai.huoqing@linux.dev>
14648 M:      Haibo Chen <haibo.chen@nxp.com>
14649 L:      linux-imx@nxp.com
14650 L:      linux-iio@vger.kernel.org
14651 S:      Maintained
14652 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14653 F:      drivers/iio/adc/imx8qxp-adc.c
14654
14655 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14656 M:      Haibo Chen <haibo.chen@nxp.com>
14657 L:      linux-iio@vger.kernel.org
14658 L:      linux-imx@nxp.com
14659 S:      Maintained
14660 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14661 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14662 F:      drivers/iio/adc/imx7d_adc.c
14663 F:      drivers/iio/adc/vf610_adc.c
14664
14665 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14666 M:      Jagan Teki <jagan@amarulasolutions.com>
14667 S:      Maintained
14668 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14669 F:      drivers/regulator/pf8x00-regulator.c
14670
14671 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14672 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14673 L:      linux-kernel@vger.kernel.org
14674 S:      Maintained
14675 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14676 F:      drivers/extcon/extcon-ptn5150.c
14677
14678 NXP SGTL5000 DRIVER
14679 M:      Fabio Estevam <festevam@gmail.com>
14680 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14681 S:      Maintained
14682 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14683 F:      sound/soc/codecs/sgtl5000*
14684
14685 NXP SJA1105 ETHERNET SWITCH DRIVER
14686 M:      Vladimir Oltean <olteanv@gmail.com>
14687 L:      linux-kernel@vger.kernel.org
14688 S:      Maintained
14689 F:      drivers/net/dsa/sja1105
14690 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14691
14692 NXP TDA998X DRM DRIVER
14693 M:      Russell King <linux@armlinux.org.uk>
14694 S:      Maintained
14695 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14696 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14697 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14698 F:      include/drm/i2c/tda998x.h
14699 F:      include/dt-bindings/display/tda998x.h
14700 K:      "nxp,tda998x"
14701
14702 NXP TFA9879 DRIVER
14703 M:      Peter Rosin <peda@axentia.se>
14704 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14705 S:      Maintained
14706 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14707 F:      sound/soc/codecs/tfa9879*
14708
14709 NXP/Goodix TFA989X (TFA1) DRIVER
14710 M:      Stephan Gerhold <stephan@gerhold.net>
14711 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14712 S:      Maintained
14713 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14714 F:      sound/soc/codecs/tfa989x.c
14715
14716 NXP-NCI NFC DRIVER
14717 L:      linux-nfc@lists.01.org (subscribers-only)
14718 S:      Orphan
14719 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14720 F:      drivers/nfc/nxp-nci
14721
14722 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14723 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14724 R:      NXP Linux Team <linux-imx@nxp.com>
14725 L:      linux-media@vger.kernel.org
14726 S:      Maintained
14727 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14728 F:      drivers/media/platform/nxp/imx-jpeg
14729
14730 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14731 M:      Jonas Malaco <jonas@protocubo.io>
14732 L:      linux-hwmon@vger.kernel.org
14733 S:      Maintained
14734 F:      Documentation/hwmon/nzxt-kraken2.rst
14735 F:      drivers/hwmon/nzxt-kraken2.c
14736
14737 NZXT-SMART2 HARDWARE MONITORING DRIVER
14738 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14739 L:      linux-hwmon@vger.kernel.org
14740 S:      Maintained
14741 F:      Documentation/hwmon/nzxt-smart2.rst
14742 F:      drivers/hwmon/nzxt-smart2.c
14743
14744 OBJAGG
14745 M:      Jiri Pirko <jiri@nvidia.com>
14746 L:      netdev@vger.kernel.org
14747 S:      Supported
14748 F:      include/linux/objagg.h
14749 F:      lib/objagg.c
14750 F:      lib/test_objagg.c
14751
14752 OBJTOOL
14753 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14754 M:      Peter Zijlstra <peterz@infradead.org>
14755 S:      Supported
14756 F:      tools/objtool/
14757 F:      include/linux/objtool.h
14758
14759 OCELOT ETHERNET SWITCH DRIVER
14760 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14761 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14762 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14763 M:      UNGLinuxDriver@microchip.com
14764 L:      netdev@vger.kernel.org
14765 S:      Supported
14766 F:      drivers/net/dsa/ocelot/*
14767 F:      drivers/net/ethernet/mscc/
14768 F:      include/soc/mscc/ocelot*
14769 F:      net/dsa/tag_ocelot.c
14770 F:      net/dsa/tag_ocelot_8021q.c
14771 F:      tools/testing/selftests/drivers/net/ocelot/*
14772
14773 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14774 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14775 M:      Andrew Donnellan <ajd@linux.ibm.com>
14776 L:      linuxppc-dev@lists.ozlabs.org
14777 S:      Supported
14778 F:      Documentation/userspace-api/accelerators/ocxl.rst
14779 F:      arch/powerpc/include/asm/pnv-ocxl.h
14780 F:      arch/powerpc/platforms/powernv/ocxl.c
14781 F:      drivers/misc/ocxl/
14782 F:      include/misc/ocxl*
14783 F:      include/uapi/misc/ocxl.h
14784
14785 OMAP AUDIO SUPPORT
14786 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14787 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14788 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14789 L:      linux-omap@vger.kernel.org
14790 S:      Maintained
14791 F:      sound/soc/ti/n810.c
14792 F:      sound/soc/ti/omap*
14793 F:      sound/soc/ti/rx51.c
14794 F:      sound/soc/ti/sdma-pcm.*
14795
14796 OMAP CLOCK FRAMEWORK SUPPORT
14797 M:      Paul Walmsley <paul@pwsan.com>
14798 L:      linux-omap@vger.kernel.org
14799 S:      Maintained
14800 F:      arch/arm/*omap*/*clock*
14801
14802 OMAP DEVICE TREE SUPPORT
14803 M:      Benoît Cousson <bcousson@baylibre.com>
14804 M:      Tony Lindgren <tony@atomide.com>
14805 L:      linux-omap@vger.kernel.org
14806 L:      devicetree@vger.kernel.org
14807 S:      Maintained
14808 F:      arch/arm/boot/dts/*am3*
14809 F:      arch/arm/boot/dts/*am4*
14810 F:      arch/arm/boot/dts/*am5*
14811 F:      arch/arm/boot/dts/*dra7*
14812 F:      arch/arm/boot/dts/*omap*
14813 F:      arch/arm/boot/dts/logicpd-som-lv*
14814 F:      arch/arm/boot/dts/logicpd-torpedo*
14815
14816 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14817 L:      linux-omap@vger.kernel.org
14818 L:      linux-fbdev@vger.kernel.org
14819 S:      Orphan
14820 F:      Documentation/arm/omap/dss.rst
14821 F:      drivers/video/fbdev/omap2/
14822
14823 OMAP FRAMEBUFFER SUPPORT
14824 L:      linux-fbdev@vger.kernel.org
14825 L:      linux-omap@vger.kernel.org
14826 S:      Orphan
14827 F:      drivers/video/fbdev/omap/
14828
14829 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14830 M:      Roger Quadros <rogerq@kernel.org>
14831 M:      Tony Lindgren <tony@atomide.com>
14832 L:      linux-omap@vger.kernel.org
14833 S:      Maintained
14834 F:      arch/arm/mach-omap2/*gpmc*
14835 F:      drivers/memory/omap-gpmc.c
14836
14837 OMAP GPIO DRIVER
14838 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14839 M:      Santosh Shilimkar <ssantosh@kernel.org>
14840 M:      Kevin Hilman <khilman@kernel.org>
14841 L:      linux-omap@vger.kernel.org
14842 S:      Maintained
14843 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14844 F:      drivers/gpio/gpio-omap.c
14845
14846 OMAP HARDWARE SPINLOCK SUPPORT
14847 M:      Ohad Ben-Cohen <ohad@wizery.com>
14848 L:      linux-omap@vger.kernel.org
14849 S:      Maintained
14850 F:      drivers/hwspinlock/omap_hwspinlock.c
14851
14852 OMAP HS MMC SUPPORT
14853 L:      linux-mmc@vger.kernel.org
14854 L:      linux-omap@vger.kernel.org
14855 S:      Orphan
14856 F:      drivers/mmc/host/omap_hsmmc.c
14857
14858 OMAP HWMOD DATA
14859 M:      Paul Walmsley <paul@pwsan.com>
14860 L:      linux-omap@vger.kernel.org
14861 S:      Maintained
14862 F:      arch/arm/mach-omap2/omap_hwmod*data*
14863
14864 OMAP HWMOD SUPPORT
14865 M:      Benoît Cousson <bcousson@baylibre.com>
14866 M:      Paul Walmsley <paul@pwsan.com>
14867 L:      linux-omap@vger.kernel.org
14868 S:      Maintained
14869 F:      arch/arm/mach-omap2/omap_hwmod.*
14870
14871 OMAP I2C DRIVER
14872 M:      Vignesh R <vigneshr@ti.com>
14873 L:      linux-omap@vger.kernel.org
14874 L:      linux-i2c@vger.kernel.org
14875 S:      Maintained
14876 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14877 F:      drivers/i2c/busses/i2c-omap.c
14878
14879 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14880 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14881 L:      linux-media@vger.kernel.org
14882 S:      Maintained
14883 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14884 F:      drivers/media/platform/ti/omap3isp/
14885 F:      drivers/staging/media/omap4iss/
14886
14887 OMAP MMC SUPPORT
14888 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14889 L:      linux-omap@vger.kernel.org
14890 S:      Odd Fixes
14891 F:      drivers/mmc/host/omap.c
14892
14893 OMAP POWER MANAGEMENT SUPPORT
14894 M:      Kevin Hilman <khilman@kernel.org>
14895 L:      linux-omap@vger.kernel.org
14896 S:      Maintained
14897 F:      arch/arm/*omap*/*pm*
14898 F:      drivers/cpufreq/omap-cpufreq.c
14899
14900 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14901 M:      Paul Walmsley <paul@pwsan.com>
14902 L:      linux-omap@vger.kernel.org
14903 S:      Maintained
14904 F:      arch/arm/mach-omap2/prm*
14905
14906 OMAP RANDOM NUMBER GENERATOR SUPPORT
14907 M:      Deepak Saxena <dsaxena@plexity.net>
14908 S:      Maintained
14909 F:      drivers/char/hw_random/omap-rng.c
14910
14911 OMAP USB SUPPORT
14912 L:      linux-usb@vger.kernel.org
14913 L:      linux-omap@vger.kernel.org
14914 S:      Orphan
14915 F:      arch/arm/*omap*/usb*
14916 F:      drivers/usb/*/*omap*
14917
14918 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14919 M:      Mark Jackson <mpfj@newflow.co.uk>
14920 L:      linux-omap@vger.kernel.org
14921 S:      Maintained
14922 F:      arch/arm/boot/dts/am335x-nano.dts
14923
14924 OMAP1 SUPPORT
14925 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14926 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
14927 M:      Tony Lindgren <tony@atomide.com>
14928 L:      linux-omap@vger.kernel.org
14929 S:      Maintained
14930 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14932 F:      arch/arm/configs/omap1_defconfig
14933 F:      arch/arm/mach-omap1/
14934 F:      arch/arm/plat-omap/
14935 F:      drivers/i2c/busses/i2c-omap.c
14936 F:      include/linux/platform_data/ams-delta-fiq.h
14937 F:      include/linux/platform_data/i2c-omap.h
14938
14939 OMAP2+ SUPPORT
14940 M:      Tony Lindgren <tony@atomide.com>
14941 L:      linux-omap@vger.kernel.org
14942 S:      Maintained
14943 W:      http://www.muru.com/linux/omap/
14944 W:      http://linux.omap.com/
14945 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14947 F:      arch/arm/configs/omap2plus_defconfig
14948 F:      arch/arm/mach-omap2/
14949 F:      arch/arm/plat-omap/
14950 F:      drivers/bus/ti-sysc.c
14951 F:      drivers/i2c/busses/i2c-omap.c
14952 F:      drivers/irqchip/irq-omap-intc.c
14953 F:      drivers/mfd/*omap*.c
14954 F:      drivers/mfd/menelaus.c
14955 F:      drivers/mfd/palmas.c
14956 F:      drivers/mfd/tps65217.c
14957 F:      drivers/mfd/tps65218.c
14958 F:      drivers/mfd/tps65910.c
14959 F:      drivers/mfd/twl-core.[ch]
14960 F:      drivers/mfd/twl4030*.c
14961 F:      drivers/mfd/twl6030*.c
14962 F:      drivers/mfd/twl6040*.c
14963 F:      drivers/regulator/palmas-regulator*.c
14964 F:      drivers/regulator/pbias-regulator.c
14965 F:      drivers/regulator/tps65217-regulator.c
14966 F:      drivers/regulator/tps65218-regulator.c
14967 F:      drivers/regulator/tps65910-regulator.c
14968 F:      drivers/regulator/twl-regulator.c
14969 F:      drivers/regulator/twl6030-regulator.c
14970 F:      include/linux/platform_data/i2c-omap.h
14971 F:      include/linux/platform_data/ti-sysc.h
14972
14973 OMFS FILESYSTEM
14974 M:      Bob Copeland <me@bobcopeland.com>
14975 L:      linux-karma-devel@lists.sourceforge.net
14976 S:      Maintained
14977 F:      Documentation/filesystems/omfs.rst
14978 F:      fs/omfs/
14979
14980 OMNIKEY CARDMAN 4000 DRIVER
14981 M:      Harald Welte <laforge@gnumonks.org>
14982 S:      Maintained
14983 F:      drivers/char/pcmcia/cm4000_cs.c
14984 F:      include/linux/cm4000_cs.h
14985 F:      include/uapi/linux/cm4000_cs.h
14986
14987 OMNIKEY CARDMAN 4040 DRIVER
14988 M:      Harald Welte <laforge@gnumonks.org>
14989 S:      Maintained
14990 F:      drivers/char/pcmcia/cm4040_cs.*
14991
14992 OMNIVISION OG01A1B SENSOR DRIVER
14993 M:      Shawn Tu <shawnx.tu@intel.com>
14994 L:      linux-media@vger.kernel.org
14995 S:      Maintained
14996 F:      drivers/media/i2c/og01a1b.c
14997
14998 OMNIVISION OV02A10 SENSOR DRIVER
14999 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15000 L:      linux-media@vger.kernel.org
15001 S:      Maintained
15002 T:      git git://linuxtv.org/media_tree.git
15003 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15004 F:      drivers/media/i2c/ov02a10.c
15005
15006 OMNIVISION OV08D10 SENSOR DRIVER
15007 M:      Jimmy Su <jimmy.su@intel.com>
15008 L:      linux-media@vger.kernel.org
15009 S:      Maintained
15010 T:      git git://linuxtv.org/media_tree.git
15011 F:      drivers/media/i2c/ov08d10.c
15012
15013 OMNIVISION OV13858 SENSOR DRIVER
15014 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15015 L:      linux-media@vger.kernel.org
15016 S:      Maintained
15017 T:      git git://linuxtv.org/media_tree.git
15018 F:      drivers/media/i2c/ov13858.c
15019
15020 OMNIVISION OV13B10 SENSOR DRIVER
15021 M:      Arec Kao <arec.kao@intel.com>
15022 L:      linux-media@vger.kernel.org
15023 S:      Maintained
15024 T:      git git://linuxtv.org/media_tree.git
15025 F:      drivers/media/i2c/ov13b10.c
15026
15027 OMNIVISION OV2680 SENSOR DRIVER
15028 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15029 L:      linux-media@vger.kernel.org
15030 S:      Maintained
15031 T:      git git://linuxtv.org/media_tree.git
15032 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15033 F:      drivers/media/i2c/ov2680.c
15034
15035 OMNIVISION OV2685 SENSOR DRIVER
15036 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15037 L:      linux-media@vger.kernel.org
15038 S:      Maintained
15039 T:      git git://linuxtv.org/media_tree.git
15040 F:      drivers/media/i2c/ov2685.c
15041
15042 OMNIVISION OV2740 SENSOR DRIVER
15043 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15044 R:      Shawn Tu <shawnx.tu@intel.com>
15045 R:      Bingbu Cao <bingbu.cao@intel.com>
15046 L:      linux-media@vger.kernel.org
15047 S:      Maintained
15048 T:      git git://linuxtv.org/media_tree.git
15049 F:      drivers/media/i2c/ov2740.c
15050
15051 OMNIVISION OV5640 SENSOR DRIVER
15052 M:      Steve Longerbeam <slongerbeam@gmail.com>
15053 L:      linux-media@vger.kernel.org
15054 S:      Maintained
15055 T:      git git://linuxtv.org/media_tree.git
15056 F:      drivers/media/i2c/ov5640.c
15057
15058 OMNIVISION OV5647 SENSOR DRIVER
15059 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15060 M:      Jacopo Mondi <jacopo@jmondi.org>
15061 L:      linux-media@vger.kernel.org
15062 S:      Maintained
15063 T:      git git://linuxtv.org/media_tree.git
15064 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15065 F:      drivers/media/i2c/ov5647.c
15066
15067 OMNIVISION OV5670 SENSOR DRIVER
15068 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15069 L:      linux-media@vger.kernel.org
15070 S:      Maintained
15071 T:      git git://linuxtv.org/media_tree.git
15072 F:      drivers/media/i2c/ov5670.c
15073
15074 OMNIVISION OV5675 SENSOR DRIVER
15075 M:      Shawn Tu <shawnx.tu@intel.com>
15076 L:      linux-media@vger.kernel.org
15077 S:      Maintained
15078 T:      git git://linuxtv.org/media_tree.git
15079 F:      drivers/media/i2c/ov5675.c
15080
15081 OMNIVISION OV5693 SENSOR DRIVER
15082 M:      Daniel Scally <djrscally@gmail.com>
15083 L:      linux-media@vger.kernel.org
15084 S:      Maintained
15085 T:      git git://linuxtv.org/media_tree.git
15086 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15087 F:      drivers/media/i2c/ov5693.c
15088
15089 OMNIVISION OV5695 SENSOR DRIVER
15090 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15091 L:      linux-media@vger.kernel.org
15092 S:      Maintained
15093 T:      git git://linuxtv.org/media_tree.git
15094 F:      drivers/media/i2c/ov5695.c
15095
15096 OMNIVISION OV7670 SENSOR DRIVER
15097 L:      linux-media@vger.kernel.org
15098 S:      Orphan
15099 T:      git git://linuxtv.org/media_tree.git
15100 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15101 F:      drivers/media/i2c/ov7670.c
15102
15103 OMNIVISION OV772x SENSOR DRIVER
15104 M:      Jacopo Mondi <jacopo@jmondi.org>
15105 L:      linux-media@vger.kernel.org
15106 S:      Odd fixes
15107 T:      git git://linuxtv.org/media_tree.git
15108 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15109 F:      drivers/media/i2c/ov772x.c
15110 F:      include/media/i2c/ov772x.h
15111
15112 OMNIVISION OV7740 SENSOR DRIVER
15113 M:      Wenyou Yang <wenyou.yang@microchip.com>
15114 L:      linux-media@vger.kernel.org
15115 S:      Maintained
15116 T:      git git://linuxtv.org/media_tree.git
15117 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15118 F:      drivers/media/i2c/ov7740.c
15119
15120 OMNIVISION OV8856 SENSOR DRIVER
15121 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15122 L:      linux-media@vger.kernel.org
15123 S:      Maintained
15124 T:      git git://linuxtv.org/media_tree.git
15125 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15126 F:      drivers/media/i2c/ov8856.c
15127
15128 OMNIVISION OV9282 SENSOR DRIVER
15129 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15130 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15131 L:      linux-media@vger.kernel.org
15132 S:      Maintained
15133 T:      git git://linuxtv.org/media_tree.git
15134 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15135 F:      drivers/media/i2c/ov9282.c
15136
15137 OMNIVISION OV9640 SENSOR DRIVER
15138 M:      Petr Cvek <petrcvekcz@gmail.com>
15139 L:      linux-media@vger.kernel.org
15140 S:      Maintained
15141 F:      drivers/media/i2c/ov9640.*
15142
15143 OMNIVISION OV9650 SENSOR DRIVER
15144 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15145 R:      Akinobu Mita <akinobu.mita@gmail.com>
15146 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15147 L:      linux-media@vger.kernel.org
15148 S:      Maintained
15149 T:      git git://linuxtv.org/media_tree.git
15150 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15151 F:      drivers/media/i2c/ov9650.c
15152
15153 OMNIVISION OV9734 SENSOR DRIVER
15154 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15155 R:      Bingbu Cao <bingbu.cao@intel.com>
15156 L:      linux-media@vger.kernel.org
15157 S:      Maintained
15158 T:      git git://linuxtv.org/media_tree.git
15159 F:      drivers/media/i2c/ov9734.c
15160
15161 ONBOARD USB HUB DRIVER
15162 M:      Matthias Kaehlcke <mka@chromium.org>
15163 L:      linux-usb@vger.kernel.org
15164 S:      Maintained
15165 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15166 F:      drivers/usb/misc/onboard_usb_hub.c
15167
15168 ONENAND FLASH DRIVER
15169 M:      Kyungmin Park <kyungmin.park@samsung.com>
15170 L:      linux-mtd@lists.infradead.org
15171 S:      Maintained
15172 F:      drivers/mtd/nand/onenand/
15173 F:      include/linux/mtd/onenand*.h
15174
15175 ONION OMEGA2+ BOARD
15176 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15177 L:      linux-mips@vger.kernel.org
15178 S:      Maintained
15179 F:      arch/mips/boot/dts/ralink/omega2p.dts
15180
15181 OP-TEE DRIVER
15182 M:      Jens Wiklander <jens.wiklander@linaro.org>
15183 L:      op-tee@lists.trustedfirmware.org
15184 S:      Maintained
15185 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15186 F:      drivers/tee/optee/
15187
15188 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15189 M:      Sumit Garg <sumit.garg@linaro.org>
15190 L:      op-tee@lists.trustedfirmware.org
15191 S:      Maintained
15192 F:      drivers/char/hw_random/optee-rng.c
15193
15194 OP-TEE RTC DRIVER
15195 M:      Clément Léger <clement.leger@bootlin.com>
15196 L:      linux-rtc@vger.kernel.org
15197 S:      Maintained
15198 F:      drivers/rtc/rtc-optee.c
15199
15200 OPA-VNIC DRIVER
15201 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15202 L:      linux-rdma@vger.kernel.org
15203 S:      Supported
15204 F:      drivers/infiniband/ulp/opa_vnic
15205
15206 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
15207 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
15208 M:      Frank Rowand <frowand.list@gmail.com>
15209 L:      devicetree@vger.kernel.org
15210 S:      Maintained
15211 F:      Documentation/devicetree/dynamic-resolution-notes.rst
15212 F:      Documentation/devicetree/overlay-notes.rst
15213 F:      drivers/of/overlay.c
15214 F:      drivers/of/resolver.c
15215 K:      of_overlay_notifier_
15216
15217 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15218 M:      Rob Herring <robh+dt@kernel.org>
15219 M:      Frank Rowand <frowand.list@gmail.com>
15220 L:      devicetree@vger.kernel.org
15221 S:      Maintained
15222 C:      irc://irc.libera.chat/devicetree
15223 W:      http://www.devicetree.org/
15224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15225 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15226 F:      drivers/of/
15227 F:      include/linux/of*.h
15228 F:      scripts/dtc/
15229
15230 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15231 M:      Rob Herring <robh+dt@kernel.org>
15232 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15233 L:      devicetree@vger.kernel.org
15234 S:      Maintained
15235 C:      irc://irc.libera.chat/devicetree
15236 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15238 F:      Documentation/devicetree/
15239 F:      arch/*/boot/dts/
15240 F:      include/dt-bindings/
15241
15242 OPENCOMPUTE PTP CLOCK DRIVER
15243 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15244 M:      Vadim Fedorenko <vadfed@fb.com>
15245 L:      netdev@vger.kernel.org
15246 S:      Maintained
15247 F:      drivers/ptp/ptp_ocp.c
15248
15249 OPENCORES I2C BUS DRIVER
15250 M:      Peter Korsgaard <peter@korsgaard.com>
15251 M:      Andrew Lunn <andrew@lunn.ch>
15252 L:      linux-i2c@vger.kernel.org
15253 S:      Maintained
15254 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15255 F:      Documentation/i2c/busses/i2c-ocores.rst
15256 F:      drivers/i2c/busses/i2c-ocores.c
15257 F:      include/linux/platform_data/i2c-ocores.h
15258
15259 OPENRISC ARCHITECTURE
15260 M:      Jonas Bonn <jonas@southpole.se>
15261 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15262 M:      Stafford Horne <shorne@gmail.com>
15263 L:      openrisc@lists.librecores.org
15264 S:      Maintained
15265 W:      http://openrisc.io
15266 T:      git git://github.com/openrisc/linux.git
15267 F:      Documentation/devicetree/bindings/openrisc/
15268 F:      Documentation/openrisc/
15269 F:      arch/openrisc/
15270 F:      drivers/irqchip/irq-ompic.c
15271 F:      drivers/irqchip/irq-or1k-*
15272
15273 OPENVSWITCH
15274 M:      Pravin B Shelar <pshelar@ovn.org>
15275 L:      netdev@vger.kernel.org
15276 L:      dev@openvswitch.org
15277 S:      Maintained
15278 W:      http://openvswitch.org
15279 F:      include/uapi/linux/openvswitch.h
15280 F:      net/openvswitch/
15281
15282 OPERATING PERFORMANCE POINTS (OPP)
15283 M:      Viresh Kumar <vireshk@kernel.org>
15284 M:      Nishanth Menon <nm@ti.com>
15285 M:      Stephen Boyd <sboyd@kernel.org>
15286 L:      linux-pm@vger.kernel.org
15287 S:      Maintained
15288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15289 F:      Documentation/devicetree/bindings/opp/
15290 F:      Documentation/power/opp.rst
15291 F:      drivers/opp/
15292 F:      include/linux/pm_opp.h
15293
15294 OPL4 DRIVER
15295 M:      Clemens Ladisch <clemens@ladisch.de>
15296 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15297 S:      Maintained
15298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15299 F:      sound/drivers/opl4/
15300
15301 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15302 M:      Mark Fasheh <mark@fasheh.com>
15303 M:      Joel Becker <jlbec@evilplan.org>
15304 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15305 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15306 S:      Supported
15307 W:      http://ocfs2.wiki.kernel.org
15308 F:      Documentation/filesystems/dlmfs.rst
15309 F:      Documentation/filesystems/ocfs2.rst
15310 F:      fs/ocfs2/
15311
15312 ORANGEFS FILESYSTEM
15313 M:      Mike Marshall <hubcap@omnibond.com>
15314 R:      Martin Brandenburg <martin@omnibond.com>
15315 L:      devel@lists.orangefs.org
15316 S:      Supported
15317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15318 F:      Documentation/filesystems/orangefs.rst
15319 F:      fs/orangefs/
15320
15321 ORINOCO DRIVER
15322 L:      linux-wireless@vger.kernel.org
15323 S:      Orphan
15324 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15325 W:      http://www.nongnu.org/orinoco/
15326 F:      drivers/net/wireless/intersil/orinoco/
15327
15328 OV2659 OMNIVISION SENSOR DRIVER
15329 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15330 L:      linux-media@vger.kernel.org
15331 S:      Maintained
15332 W:      https://linuxtv.org
15333 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15334 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15335 F:      drivers/media/i2c/ov2659.c
15336 F:      include/media/i2c/ov2659.h
15337
15338 OVERLAY FILESYSTEM
15339 M:      Miklos Szeredi <miklos@szeredi.hu>
15340 L:      linux-unionfs@vger.kernel.org
15341 S:      Supported
15342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15343 F:      Documentation/filesystems/overlayfs.rst
15344 F:      fs/overlayfs/
15345
15346 P54 WIRELESS DRIVER
15347 M:      Christian Lamparter <chunkeey@googlemail.com>
15348 L:      linux-wireless@vger.kernel.org
15349 S:      Maintained
15350 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15351 F:      drivers/net/wireless/intersil/p54/
15352
15353 PACKING
15354 M:      Vladimir Oltean <olteanv@gmail.com>
15355 L:      netdev@vger.kernel.org
15356 S:      Supported
15357 F:      Documentation/core-api/packing.rst
15358 F:      include/linux/packing.h
15359 F:      lib/packing.c
15360
15361 PADATA PARALLEL EXECUTION MECHANISM
15362 M:      Steffen Klassert <steffen.klassert@secunet.com>
15363 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15364 L:      linux-crypto@vger.kernel.org
15365 L:      linux-kernel@vger.kernel.org
15366 S:      Maintained
15367 F:      Documentation/core-api/padata.rst
15368 F:      include/linux/padata.h
15369 F:      kernel/padata.c
15370
15371 PAGE CACHE
15372 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15373 L:      linux-fsdevel@vger.kernel.org
15374 S:      Supported
15375 T:      git git://git.infradead.org/users/willy/pagecache.git
15376 F:      Documentation/filesystems/locking.rst
15377 F:      Documentation/filesystems/vfs.rst
15378 F:      include/linux/pagemap.h
15379 F:      mm/filemap.c
15380 F:      mm/page-writeback.c
15381 F:      mm/readahead.c
15382 F:      mm/truncate.c
15383
15384 PAGE POOL
15385 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15386 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15387 L:      netdev@vger.kernel.org
15388 S:      Supported
15389 F:      Documentation/networking/page_pool.rst
15390 F:      include/net/page_pool.h
15391 F:      include/trace/events/page_pool.h
15392 F:      net/core/page_pool.c
15393
15394 PAGE TABLE CHECK
15395 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15396 M:      Andrew Morton <akpm@linux-foundation.org>
15397 L:      linux-mm@kvack.org
15398 S:      Maintained
15399 F:      Documentation/mm/page_table_check.rst
15400 F:      include/linux/page_table_check.h
15401 F:      mm/page_table_check.c
15402
15403 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15404 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15405 L:      platform-driver-x86@vger.kernel.org
15406 S:      Maintained
15407 F:      drivers/platform/x86/panasonic-laptop.c
15408
15409 PARALLAX PING IIO SENSOR DRIVER
15410 M:      Andreas Klinger <ak@it-klinger.de>
15411 L:      linux-iio@vger.kernel.org
15412 S:      Maintained
15413 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15414 F:      drivers/iio/proximity/ping.c
15415
15416 PARALLEL LCD/KEYPAD PANEL DRIVER
15417 M:      Willy Tarreau <willy@haproxy.com>
15418 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15419 S:      Odd Fixes
15420 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15421 F:      drivers/auxdisplay/panel.c
15422
15423 PARALLEL PORT SUBSYSTEM
15424 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15425 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15426 L:      linux-parport@lists.infradead.org (subscribers-only)
15427 S:      Maintained
15428 F:      Documentation/driver-api/parport*.rst
15429 F:      drivers/char/ppdev.c
15430 F:      drivers/parport/
15431 F:      include/linux/parport*.h
15432 F:      include/uapi/linux/ppdev.h
15433
15434 PARAVIRT_OPS INTERFACE
15435 M:      Juergen Gross <jgross@suse.com>
15436 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15437 R:      Alexey Makhalov <amakhalov@vmware.com>
15438 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15439 L:      virtualization@lists.linux-foundation.org
15440 L:      x86@kernel.org
15441 S:      Supported
15442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15443 F:      Documentation/virt/paravirt_ops.rst
15444 F:      arch/*/include/asm/paravirt*.h
15445 F:      arch/*/kernel/paravirt*
15446 F:      include/linux/hypervisor.h
15447
15448 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15449 M:      Tim Waugh <tim@cyberelk.net>
15450 L:      linux-parport@lists.infradead.org (subscribers-only)
15451 S:      Maintained
15452 F:      Documentation/admin-guide/blockdev/paride.rst
15453 F:      drivers/block/paride/
15454
15455 PARISC ARCHITECTURE
15456 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15457 M:      Helge Deller <deller@gmx.de>
15458 L:      linux-parisc@vger.kernel.org
15459 S:      Maintained
15460 W:      https://parisc.wiki.kernel.org
15461 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15464 F:      Documentation/parisc/
15465 F:      arch/parisc/
15466 F:      drivers/char/agp/parisc-agp.c
15467 F:      drivers/input/misc/hp_sdc_rtc.c
15468 F:      drivers/input/serio/gscps2.c
15469 F:      drivers/input/serio/hp_sdc*
15470 F:      drivers/parisc/
15471 F:      drivers/parport/parport_gsc.*
15472 F:      drivers/tty/serial/8250/8250_gsc.c
15473 F:      drivers/video/console/sti*
15474 F:      drivers/video/fbdev/sti*
15475 F:      drivers/video/logo/logo_parisc*
15476 F:      include/linux/hp_sdc.h
15477
15478 PARMAN
15479 M:      Jiri Pirko <jiri@nvidia.com>
15480 L:      netdev@vger.kernel.org
15481 S:      Supported
15482 F:      include/linux/parman.h
15483 F:      lib/parman.c
15484 F:      lib/test_parman.c
15485
15486 PC ENGINES APU BOARD DRIVER
15487 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15488 S:      Maintained
15489 F:      drivers/platform/x86/pcengines-apuv2.c
15490
15491 PC87360 HARDWARE MONITORING DRIVER
15492 M:      Jim Cromie <jim.cromie@gmail.com>
15493 L:      linux-hwmon@vger.kernel.org
15494 S:      Maintained
15495 F:      Documentation/hwmon/pc87360.rst
15496 F:      drivers/hwmon/pc87360.c
15497
15498 PC8736x GPIO DRIVER
15499 M:      Jim Cromie <jim.cromie@gmail.com>
15500 S:      Maintained
15501 F:      drivers/char/pc8736x_gpio.c
15502
15503 PC87427 HARDWARE MONITORING DRIVER
15504 M:      Jean Delvare <jdelvare@suse.com>
15505 L:      linux-hwmon@vger.kernel.org
15506 S:      Maintained
15507 F:      Documentation/hwmon/pc87427.rst
15508 F:      drivers/hwmon/pc87427.c
15509
15510 PCA9532 LED DRIVER
15511 M:      Riku Voipio <riku.voipio@iki.fi>
15512 S:      Maintained
15513 F:      drivers/leds/leds-pca9532.c
15514 F:      include/linux/leds-pca9532.h
15515
15516 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15517 M:      Guenter Roeck <linux@roeck-us.net>
15518 L:      linux-i2c@vger.kernel.org
15519 S:      Maintained
15520 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15521
15522 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15523 M:      Khalid Aziz <khalid@gonehiking.org>
15524 S:      Maintained
15525 F:      drivers/firmware/pcdp.*
15526
15527 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15528 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15529 M:      Pali Rohár <pali@kernel.org>
15530 L:      linux-pci@vger.kernel.org
15531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15532 S:      Maintained
15533 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15534 F:      drivers/pci/controller/pci-aardvark.c
15535
15536 PCI DRIVER FOR ALTERA PCIE IP
15537 M:      Joyce Ooi <joyce.ooi@intel.com>
15538 L:      linux-pci@vger.kernel.org
15539 S:      Supported
15540 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15541 F:      drivers/pci/controller/pcie-altera.c
15542
15543 PCI DRIVER FOR APPLIEDMICRO XGENE
15544 M:      Toan Le <toan@os.amperecomputing.com>
15545 L:      linux-pci@vger.kernel.org
15546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15547 S:      Maintained
15548 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15549 F:      drivers/pci/controller/pci-xgene.c
15550
15551 PCI DRIVER FOR ARM VERSATILE PLATFORM
15552 M:      Rob Herring <robh@kernel.org>
15553 L:      linux-pci@vger.kernel.org
15554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15555 S:      Maintained
15556 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15557 F:      drivers/pci/controller/pci-versatile.c
15558
15559 PCI DRIVER FOR ARMADA 8K
15560 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15561 L:      linux-pci@vger.kernel.org
15562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15563 S:      Maintained
15564 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15565 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15566
15567 PCI DRIVER FOR CADENCE PCIE IP
15568 M:      Tom Joseph <tjoseph@cadence.com>
15569 L:      linux-pci@vger.kernel.org
15570 S:      Maintained
15571 F:      Documentation/devicetree/bindings/pci/cdns,*
15572 F:      drivers/pci/controller/cadence/
15573
15574 PCI DRIVER FOR FREESCALE LAYERSCAPE
15575 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15576 M:      Mingkai Hu <mingkai.hu@nxp.com>
15577 M:      Roy Zang <roy.zang@nxp.com>
15578 L:      linuxppc-dev@lists.ozlabs.org
15579 L:      linux-pci@vger.kernel.org
15580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15581 S:      Maintained
15582 F:      drivers/pci/controller/dwc/*layerscape*
15583
15584 PCI DRIVER FOR GENERIC OF HOSTS
15585 M:      Will Deacon <will@kernel.org>
15586 L:      linux-pci@vger.kernel.org
15587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15588 S:      Maintained
15589 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15590 F:      drivers/pci/controller/pci-host-common.c
15591 F:      drivers/pci/controller/pci-host-generic.c
15592
15593 PCI DRIVER FOR IMX6
15594 M:      Richard Zhu <hongxing.zhu@nxp.com>
15595 M:      Lucas Stach <l.stach@pengutronix.de>
15596 L:      linux-pci@vger.kernel.org
15597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15598 S:      Maintained
15599 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15600 F:      drivers/pci/controller/dwc/*imx6*
15601
15602 PCI DRIVER FOR FU740
15603 M:      Paul Walmsley <paul.walmsley@sifive.com>
15604 M:      Greentime Hu <greentime.hu@sifive.com>
15605 L:      linux-pci@vger.kernel.org
15606 S:      Maintained
15607 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15608 F:      drivers/pci/controller/dwc/pcie-fu740.c
15609
15610 PCI DRIVER FOR INTEL IXP4XX
15611 M:      Linus Walleij <linus.walleij@linaro.org>
15612 S:      Maintained
15613 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15614 F:      drivers/pci/controller/pci-ixp4xx.c
15615
15616 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15617 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15618 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15619 L:      linux-pci@vger.kernel.org
15620 S:      Supported
15621 F:      drivers/pci/controller/vmd.c
15622
15623 PCI DRIVER FOR MICROSEMI SWITCHTEC
15624 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15625 M:      Logan Gunthorpe <logang@deltatee.com>
15626 L:      linux-pci@vger.kernel.org
15627 S:      Maintained
15628 F:      Documentation/ABI/testing/sysfs-class-switchtec
15629 F:      Documentation/driver-api/switchtec.rst
15630 F:      drivers/ntb/hw/mscc/
15631 F:      drivers/pci/switch/switchtec*
15632 F:      include/linux/switchtec.h
15633 F:      include/uapi/linux/switchtec_ioctl.h
15634
15635 PCI DRIVER FOR MOBIVEIL PCIE IP
15636 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15637 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15638 L:      linux-pci@vger.kernel.org
15639 S:      Supported
15640 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15641 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15642
15643 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15644 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15645 M:      Pali Rohár <pali@kernel.org>
15646 L:      linux-pci@vger.kernel.org
15647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15648 S:      Maintained
15649 F:      drivers/pci/controller/*mvebu*
15650
15651 PCI DRIVER FOR NVIDIA TEGRA
15652 M:      Thierry Reding <thierry.reding@gmail.com>
15653 L:      linux-tegra@vger.kernel.org
15654 L:      linux-pci@vger.kernel.org
15655 S:      Supported
15656 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15657 F:      drivers/pci/controller/pci-tegra.c
15658
15659 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15660 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15661 L:      linux-pci@vger.kernel.org
15662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15663 S:      Maintained
15664 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15665 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15666
15667 PCI DRIVER FOR RENESAS R-CAR
15668 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15669 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15670 L:      linux-pci@vger.kernel.org
15671 L:      linux-renesas-soc@vger.kernel.org
15672 S:      Maintained
15673 F:      Documentation/devicetree/bindings/pci/*rcar*
15674 F:      drivers/pci/controller/*rcar*
15675
15676 PCI DRIVER FOR SAMSUNG EXYNOS
15677 M:      Jingoo Han <jingoohan1@gmail.com>
15678 L:      linux-pci@vger.kernel.org
15679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15680 L:      linux-samsung-soc@vger.kernel.org
15681 S:      Maintained
15682 F:      drivers/pci/controller/dwc/pci-exynos.c
15683
15684 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15685 M:      Jingoo Han <jingoohan1@gmail.com>
15686 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15687 L:      linux-pci@vger.kernel.org
15688 S:      Maintained
15689 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15690 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15691 F:      drivers/pci/controller/dwc/*designware*
15692
15693 PCI DRIVER FOR TI DRA7XX/J721E
15694 M:      Kishon Vijay Abraham I <kishon@ti.com>
15695 L:      linux-omap@vger.kernel.org
15696 L:      linux-pci@vger.kernel.org
15697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15698 S:      Supported
15699 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15700 F:      drivers/pci/controller/cadence/pci-j721e.c
15701 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15702
15703 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15704 M:      Linus Walleij <linus.walleij@linaro.org>
15705 L:      linux-pci@vger.kernel.org
15706 S:      Maintained
15707 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15708 F:      drivers/pci/controller/pci-v3-semi.c
15709
15710 PCI ENDPOINT SUBSYSTEM
15711 M:      Kishon Vijay Abraham I <kishon@ti.com>
15712 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15713 R:      Krzysztof Wilczyński <kw@linux.com>
15714 L:      linux-pci@vger.kernel.org
15715 S:      Supported
15716 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15717 B:      https://bugzilla.kernel.org
15718 C:      irc://irc.oftc.net/linux-pci
15719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15720 F:      Documentation/PCI/endpoint/*
15721 F:      Documentation/misc-devices/pci-endpoint-test.rst
15722 F:      drivers/misc/pci_endpoint_test.c
15723 F:      drivers/pci/endpoint/
15724 F:      tools/pci/
15725
15726 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15727 M:      Russell Currey <ruscur@russell.cc>
15728 M:      Oliver O'Halloran <oohall@gmail.com>
15729 L:      linuxppc-dev@lists.ozlabs.org
15730 S:      Supported
15731 F:      Documentation/PCI/pci-error-recovery.rst
15732 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15733 F:      arch/powerpc/include/*/eeh*.h
15734 F:      arch/powerpc/kernel/eeh*.c
15735 F:      arch/powerpc/platforms/*/eeh*.c
15736 F:      drivers/pci/pcie/aer.c
15737 F:      drivers/pci/pcie/dpc.c
15738 F:      drivers/pci/pcie/err.c
15739
15740 PCI ERROR RECOVERY
15741 M:      Linas Vepstas <linasvepstas@gmail.com>
15742 L:      linux-pci@vger.kernel.org
15743 S:      Supported
15744 F:      Documentation/PCI/pci-error-recovery.rst
15745
15746 PCI PEER-TO-PEER DMA (P2PDMA)
15747 M:      Bjorn Helgaas <bhelgaas@google.com>
15748 M:      Logan Gunthorpe <logang@deltatee.com>
15749 L:      linux-pci@vger.kernel.org
15750 S:      Supported
15751 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15752 B:      https://bugzilla.kernel.org
15753 C:      irc://irc.oftc.net/linux-pci
15754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15755 F:      Documentation/driver-api/pci/p2pdma.rst
15756 F:      drivers/pci/p2pdma.c
15757 F:      include/linux/pci-p2pdma.h
15758
15759 PCI MSI DRIVER FOR ALTERA MSI IP
15760 M:      Joyce Ooi <joyce.ooi@intel.com>
15761 L:      linux-pci@vger.kernel.org
15762 S:      Supported
15763 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15764 F:      drivers/pci/controller/pcie-altera-msi.c
15765
15766 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15767 M:      Toan Le <toan@os.amperecomputing.com>
15768 L:      linux-pci@vger.kernel.org
15769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15770 S:      Maintained
15771 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15772 F:      drivers/pci/controller/pci-xgene-msi.c
15773
15774 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15775 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15776 R:      Rob Herring <robh@kernel.org>
15777 R:      Krzysztof Wilczyński <kw@linux.com>
15778 L:      linux-pci@vger.kernel.org
15779 S:      Supported
15780 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15781 B:      https://bugzilla.kernel.org
15782 C:      irc://irc.oftc.net/linux-pci
15783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15784 F:      drivers/pci/controller/
15785 F:      drivers/pci/pci-bridge-emul.c
15786 F:      drivers/pci/pci-bridge-emul.h
15787
15788 PCI SUBSYSTEM
15789 M:      Bjorn Helgaas <bhelgaas@google.com>
15790 L:      linux-pci@vger.kernel.org
15791 S:      Supported
15792 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15793 B:      https://bugzilla.kernel.org
15794 C:      irc://irc.oftc.net/linux-pci
15795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15796 F:      Documentation/PCI/
15797 F:      Documentation/devicetree/bindings/pci/
15798 F:      arch/x86/kernel/early-quirks.c
15799 F:      arch/x86/kernel/quirks.c
15800 F:      arch/x86/pci/
15801 F:      drivers/acpi/pci*
15802 F:      drivers/pci/
15803 F:      include/asm-generic/pci*
15804 F:      include/linux/of_pci.h
15805 F:      include/linux/pci*
15806 F:      include/uapi/linux/pci*
15807 F:      lib/pci*
15808
15809 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15810 M:      Jonathan Chocron <jonnyc@amazon.com>
15811 L:      linux-pci@vger.kernel.org
15812 S:      Maintained
15813 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15814 F:      drivers/pci/controller/dwc/pcie-al.c
15815
15816 PCIE DRIVER FOR AMLOGIC MESON
15817 M:      Yue Wang <yue.wang@Amlogic.com>
15818 L:      linux-pci@vger.kernel.org
15819 L:      linux-amlogic@lists.infradead.org
15820 S:      Maintained
15821 F:      drivers/pci/controller/dwc/pci-meson.c
15822
15823 PCIE DRIVER FOR AXIS ARTPEC
15824 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15825 L:      linux-arm-kernel@axis.com
15826 L:      linux-pci@vger.kernel.org
15827 S:      Maintained
15828 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15829 F:      drivers/pci/controller/dwc/*artpec*
15830
15831 PCIE DRIVER FOR CAVIUM THUNDERX
15832 M:      Robert Richter <rric@kernel.org>
15833 L:      linux-pci@vger.kernel.org
15834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15835 S:      Odd Fixes
15836 F:      drivers/pci/controller/pci-thunder-*
15837
15838 PCIE DRIVER FOR HISILICON
15839 M:      Zhou Wang <wangzhou1@hisilicon.com>
15840 L:      linux-pci@vger.kernel.org
15841 S:      Maintained
15842 F:      drivers/pci/controller/dwc/pcie-hisi.c
15843
15844 PCIE DRIVER FOR HISILICON KIRIN
15845 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15846 M:      Binghui Wang <wangbinghui@hisilicon.com>
15847 L:      linux-pci@vger.kernel.org
15848 S:      Maintained
15849 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15850 F:      drivers/pci/controller/dwc/pcie-kirin.c
15851
15852 PCIE DRIVER FOR HISILICON STB
15853 M:      Shawn Guo <shawn.guo@linaro.org>
15854 L:      linux-pci@vger.kernel.org
15855 S:      Maintained
15856 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15857 F:      drivers/pci/controller/dwc/pcie-histb.c
15858
15859 PCIE DRIVER FOR INTEL KEEM BAY
15860 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15861 L:      linux-pci@vger.kernel.org
15862 S:      Supported
15863 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15864 F:      drivers/pci/controller/dwc/pcie-keembay.c
15865
15866 PCIE DRIVER FOR INTEL LGM GW SOC
15867 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15868 L:      linux-pci@vger.kernel.org
15869 S:      Maintained
15870 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15871 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15872
15873 PCIE DRIVER FOR MEDIATEK
15874 M:      Ryder Lee <ryder.lee@mediatek.com>
15875 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15876 L:      linux-pci@vger.kernel.org
15877 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15878 S:      Supported
15879 F:      Documentation/devicetree/bindings/pci/mediatek*
15880 F:      drivers/pci/controller/*mediatek*
15881
15882 PCIE DRIVER FOR MICROCHIP
15883 M:      Daire McNamara <daire.mcnamara@microchip.com>
15884 L:      linux-pci@vger.kernel.org
15885 S:      Supported
15886 F:      Documentation/devicetree/bindings/pci/microchip*
15887 F:      drivers/pci/controller/*microchip*
15888
15889 PCIE DRIVER FOR QUALCOMM MSM
15890 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15891 L:      linux-pci@vger.kernel.org
15892 L:      linux-arm-msm@vger.kernel.org
15893 S:      Maintained
15894 F:      drivers/pci/controller/dwc/pcie-qcom.c
15895
15896 PCIE ENDPOINT DRIVER FOR QUALCOMM
15897 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15898 L:      linux-pci@vger.kernel.org
15899 L:      linux-arm-msm@vger.kernel.org
15900 S:      Maintained
15901 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15902 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15903
15904 PCIE DRIVER FOR ROCKCHIP
15905 M:      Shawn Lin <shawn.lin@rock-chips.com>
15906 L:      linux-pci@vger.kernel.org
15907 L:      linux-rockchip@lists.infradead.org
15908 S:      Maintained
15909 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15910 F:      drivers/pci/controller/pcie-rockchip*
15911
15912 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15913 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15914 L:      linux-pci@vger.kernel.org
15915 S:      Maintained
15916 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
15917 F:      drivers/pci/controller/dwc/pcie-uniphier*
15918
15919 PCIE DRIVER FOR ST SPEAR13XX
15920 M:      Pratyush Anand <pratyush.anand@gmail.com>
15921 L:      linux-pci@vger.kernel.org
15922 S:      Maintained
15923 F:      drivers/pci/controller/dwc/*spear*
15924
15925 PCI DRIVER FOR XILINX VERSAL CPM
15926 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
15927 M:      Michal Simek <michal.simek@amd.com>
15928 L:      linux-pci@vger.kernel.org
15929 S:      Maintained
15930 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
15931 F:      drivers/pci/controller/pcie-xilinx-cpm.c
15932
15933 PCMCIA SUBSYSTEM
15934 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15935 S:      Odd Fixes
15936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15937 F:      Documentation/pcmcia/
15938 F:      drivers/pcmcia/
15939 F:      include/pcmcia/
15940 F:      tools/pcmcia/
15941
15942 PCNET32 NETWORK DRIVER
15943 M:      Don Fry <pcnet32@frontier.com>
15944 L:      netdev@vger.kernel.org
15945 S:      Maintained
15946 F:      drivers/net/ethernet/amd/pcnet32.c
15947
15948 PCRYPT PARALLEL CRYPTO ENGINE
15949 M:      Steffen Klassert <steffen.klassert@secunet.com>
15950 L:      linux-crypto@vger.kernel.org
15951 S:      Maintained
15952 F:      crypto/pcrypt.c
15953 F:      include/crypto/pcrypt.h
15954
15955 PEAQ WMI HOTKEYS DRIVER
15956 M:      Hans de Goede <hdegoede@redhat.com>
15957 L:      platform-driver-x86@vger.kernel.org
15958 S:      Maintained
15959 F:      drivers/platform/x86/peaq-wmi.c
15960
15961 PECI HARDWARE MONITORING DRIVERS
15962 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15963 L:      linux-hwmon@vger.kernel.org
15964 S:      Supported
15965 F:      Documentation/hwmon/peci-cputemp.rst
15966 F:      Documentation/hwmon/peci-dimmtemp.rst
15967 F:      drivers/hwmon/peci/
15968
15969 PECI SUBSYSTEM
15970 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15971 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15972 S:      Supported
15973 F:      Documentation/devicetree/bindings/peci/
15974 F:      Documentation/peci/
15975 F:      drivers/peci/
15976 F:      include/linux/peci-cpu.h
15977 F:      include/linux/peci.h
15978
15979 PENSANDO ETHERNET DRIVERS
15980 M:      Shannon Nelson <snelson@pensando.io>
15981 M:      drivers@pensando.io
15982 L:      netdev@vger.kernel.org
15983 S:      Supported
15984 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15985 F:      drivers/net/ethernet/pensando/
15986
15987 PER-CPU MEMORY ALLOCATOR
15988 M:      Dennis Zhou <dennis@kernel.org>
15989 M:      Tejun Heo <tj@kernel.org>
15990 M:      Christoph Lameter <cl@linux.com>
15991 L:      linux-mm@kvack.org
15992 S:      Maintained
15993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15994 F:      arch/*/include/asm/percpu.h
15995 F:      include/linux/percpu*.h
15996 F:      lib/percpu*.c
15997 F:      mm/percpu*.c
15998
15999 PER-TASK DELAY ACCOUNTING
16000 M:      Balbir Singh <bsingharora@gmail.com>
16001 S:      Maintained
16002 F:      include/linux/delayacct.h
16003 F:      kernel/delayacct.c
16004
16005 PERFORMANCE EVENTS SUBSYSTEM
16006 M:      Peter Zijlstra <peterz@infradead.org>
16007 M:      Ingo Molnar <mingo@redhat.com>
16008 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16009 R:      Mark Rutland <mark.rutland@arm.com>
16010 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16011 R:      Jiri Olsa <jolsa@kernel.org>
16012 R:      Namhyung Kim <namhyung@kernel.org>
16013 L:      linux-perf-users@vger.kernel.org
16014 L:      linux-kernel@vger.kernel.org
16015 S:      Supported
16016 W:      https://perf.wiki.kernel.org/
16017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16018 F:      arch/*/events/*
16019 F:      arch/*/events/*/*
16020 F:      arch/*/include/asm/perf_event.h
16021 F:      arch/*/kernel/*/*/perf_event*.c
16022 F:      arch/*/kernel/*/perf_event*.c
16023 F:      arch/*/kernel/perf_callchain.c
16024 F:      arch/*/kernel/perf_event*.c
16025 F:      include/linux/perf_event.h
16026 F:      include/uapi/linux/perf_event.h
16027 F:      kernel/events/*
16028 F:      tools/lib/perf/
16029 F:      tools/perf/
16030
16031 PERFORMANCE EVENTS TOOLING ARM64
16032 R:      John Garry <john.garry@huawei.com>
16033 R:      Will Deacon <will@kernel.org>
16034 R:      James Clark <james.clark@arm.com>
16035 R:      Mike Leach <mike.leach@linaro.org>
16036 R:      Leo Yan <leo.yan@linaro.org>
16037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16038 S:      Supported
16039 F:      tools/build/feature/test-libopencsd.c
16040 F:      tools/perf/arch/arm*/
16041 F:      tools/perf/pmu-events/arch/arm64/
16042 F:      tools/perf/util/arm-spe*
16043 F:      tools/perf/util/cs-etm*
16044
16045 PERSONALITY HANDLING
16046 M:      Christoph Hellwig <hch@infradead.org>
16047 L:      linux-abi-devel@lists.sourceforge.net
16048 S:      Maintained
16049 F:      include/linux/personality.h
16050 F:      include/uapi/linux/personality.h
16051
16052 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16053 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16054 L:      linux-input@vger.kernel.org
16055 S:      Maintained
16056 F:      Documentation/input/devices/pxrc.rst
16057 F:      drivers/input/joystick/pxrc.c
16058
16059 PHONET PROTOCOL
16060 M:      Remi Denis-Courmont <courmisch@gmail.com>
16061 S:      Supported
16062 F:      Documentation/networking/phonet.rst
16063 F:      include/linux/phonet.h
16064 F:      include/net/phonet/
16065 F:      include/uapi/linux/phonet.h
16066 F:      net/phonet/
16067
16068 PHRAM MTD DRIVER
16069 M:      Joern Engel <joern@lazybastard.org>
16070 L:      linux-mtd@lists.infradead.org
16071 S:      Maintained
16072 F:      drivers/mtd/devices/phram.c
16073
16074 PICOLCD HID DRIVER
16075 M:      Bruno Prémont <bonbons@linux-vserver.org>
16076 L:      linux-input@vger.kernel.org
16077 S:      Maintained
16078 F:      drivers/hid/hid-picolcd*
16079
16080 PIDFD API
16081 M:      Christian Brauner <christian@brauner.io>
16082 L:      linux-kernel@vger.kernel.org
16083 S:      Maintained
16084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16085 F:      samples/pidfd/
16086 F:      tools/testing/selftests/clone3/
16087 F:      tools/testing/selftests/pid_namespace/
16088 F:      tools/testing/selftests/pidfd/
16089 K:      (?i)pidfd
16090 K:      (?i)clone3
16091 K:      \b(clone_args|kernel_clone_args)\b
16092
16093 PIN CONTROL SUBSYSTEM
16094 M:      Linus Walleij <linus.walleij@linaro.org>
16095 L:      linux-gpio@vger.kernel.org
16096 S:      Maintained
16097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16098 F:      Documentation/devicetree/bindings/pinctrl/
16099 F:      Documentation/driver-api/pin-control.rst
16100 F:      drivers/pinctrl/
16101 F:      include/dt-bindings/pinctrl/
16102 F:      include/linux/pinctrl/
16103
16104 PIN CONTROLLER - AMD
16105 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16106 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16107 S:      Maintained
16108 F:      drivers/pinctrl/pinctrl-amd.c
16109
16110 PIN CONTROLLER - FREESCALE
16111 M:      Dong Aisheng <aisheng.dong@nxp.com>
16112 M:      Fabio Estevam <festevam@gmail.com>
16113 M:      Shawn Guo <shawnguo@kernel.org>
16114 M:      Jacky Bai <ping.bai@nxp.com>
16115 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16116 L:      linux-gpio@vger.kernel.org
16117 S:      Maintained
16118 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16119 F:      drivers/pinctrl/freescale/
16120
16121 PIN CONTROLLER - INTEL
16122 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16123 M:      Andy Shevchenko <andy@kernel.org>
16124 S:      Supported
16125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16126 F:      drivers/pinctrl/intel/
16127
16128 PIN CONTROLLER - KEEMBAY
16129 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16130 S:      Supported
16131 F:      drivers/pinctrl/pinctrl-keembay*
16132
16133 PIN CONTROLLER - MEDIATEK
16134 M:      Sean Wang <sean.wang@kernel.org>
16135 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16136 S:      Maintained
16137 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16138 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
16139 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16140 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16141 F:      drivers/pinctrl/mediatek/
16142
16143 PIN CONTROLLER - MICROCHIP AT91
16144 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16146 L:      linux-gpio@vger.kernel.org
16147 S:      Supported
16148 F:      drivers/gpio/gpio-sama5d2-piobu.c
16149 F:      drivers/pinctrl/pinctrl-at91*
16150
16151 PIN CONTROLLER - QUALCOMM
16152 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16153 L:      linux-arm-msm@vger.kernel.org
16154 S:      Maintained
16155 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16156 F:      drivers/pinctrl/qcom/
16157
16158 PIN CONTROLLER - RENESAS
16159 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16160 L:      linux-renesas-soc@vger.kernel.org
16161 S:      Supported
16162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16163 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16164 F:      drivers/pinctrl/renesas/
16165
16166 PIN CONTROLLER - SAMSUNG
16167 M:      Tomasz Figa <tomasz.figa@gmail.com>
16168 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16169 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16170 R:      Alim Akhtar <alim.akhtar@samsung.com>
16171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16172 L:      linux-samsung-soc@vger.kernel.org
16173 S:      Maintained
16174 C:      irc://irc.libera.chat/linux-exynos
16175 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16176 B:      mailto:linux-samsung-soc@vger.kernel.org
16177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16178 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16179 F:      drivers/pinctrl/samsung/
16180 F:      include/dt-bindings/pinctrl/samsung.h
16181
16182 PIN CONTROLLER - SINGLE
16183 M:      Tony Lindgren <tony@atomide.com>
16184 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16186 L:      linux-omap@vger.kernel.org
16187 S:      Maintained
16188 F:      drivers/pinctrl/pinctrl-single.c
16189
16190 PIN CONTROLLER - THUNDERBAY
16191 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16192 S:      Supported
16193 F:      drivers/pinctrl/pinctrl-thunderbay.c
16194
16195 PIN CONTROLLER - SUNPLUS / TIBBO
16196 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16197 M:      Wells Lu <wellslutw@gmail.com>
16198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16199 S:      Maintained
16200 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16201 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16202 F:      drivers/pinctrl/sunplus/
16203 F:      include/dt-bindings/pinctrl/sppctl*.h
16204
16205 PKTCDVD DRIVER
16206 M:      linux-block@vger.kernel.org
16207 S:      Orphan
16208 F:      drivers/block/pktcdvd.c
16209 F:      include/linux/pktcdvd.h
16210 F:      include/uapi/linux/pktcdvd.h
16211
16212 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16213 M:      Tomasz Duszynski <tduszyns@gmail.com>
16214 S:      Maintained
16215 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16216 F:      drivers/iio/chemical/pms7003.c
16217
16218 PLDMFW LIBRARY
16219 M:      Jacob Keller <jacob.e.keller@intel.com>
16220 S:      Maintained
16221 F:      Documentation/driver-api/pldmfw/
16222 F:      include/linux/pldmfw.h
16223 F:      lib/pldmfw/
16224
16225 PLX DMA DRIVER
16226 M:      Logan Gunthorpe <logang@deltatee.com>
16227 S:      Maintained
16228 F:      drivers/dma/plx_dma.c
16229
16230 PM6764TR DRIVER
16231 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16232 L:      linux-hwmon@vger.kernel.org
16233 S:      Maintained
16234 F:      Documentation/hwmon/pm6764tr.rst
16235 F:      drivers/hwmon/pmbus/pm6764tr.c
16236
16237 PM-GRAPH UTILITY
16238 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16239 L:      linux-pm@vger.kernel.org
16240 S:      Supported
16241 W:      https://01.org/pm-graph
16242 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16243 T:      git git://github.com/intel/pm-graph
16244 F:      tools/power/pm-graph
16245
16246 PMBUS HARDWARE MONITORING DRIVERS
16247 M:      Guenter Roeck <linux@roeck-us.net>
16248 L:      linux-hwmon@vger.kernel.org
16249 S:      Maintained
16250 W:      http://hwmon.wiki.kernel.org/
16251 W:      http://www.roeck-us.net/linux/drivers/
16252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16253 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16254 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16255 F:      Documentation/hwmon/adm1275.rst
16256 F:      Documentation/hwmon/ibm-cffps.rst
16257 F:      Documentation/hwmon/ir35221.rst
16258 F:      Documentation/hwmon/lm25066.rst
16259 F:      Documentation/hwmon/ltc2978.rst
16260 F:      Documentation/hwmon/ltc3815.rst
16261 F:      Documentation/hwmon/max16064.rst
16262 F:      Documentation/hwmon/max20751.rst
16263 F:      Documentation/hwmon/max31785.rst
16264 F:      Documentation/hwmon/max34440.rst
16265 F:      Documentation/hwmon/max8688.rst
16266 F:      Documentation/hwmon/pmbus-core.rst
16267 F:      Documentation/hwmon/pmbus.rst
16268 F:      Documentation/hwmon/tps40422.rst
16269 F:      Documentation/hwmon/ucd9000.rst
16270 F:      Documentation/hwmon/ucd9200.rst
16271 F:      Documentation/hwmon/zl6100.rst
16272 F:      drivers/hwmon/pmbus/
16273 F:      include/linux/pmbus.h
16274
16275 PMC SIERRA MaxRAID DRIVER
16276 L:      linux-scsi@vger.kernel.org
16277 S:      Orphan
16278 W:      http://www.pmc-sierra.com/
16279 F:      drivers/scsi/pmcraid.*
16280
16281 PMC SIERRA PM8001 DRIVER
16282 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16283 L:      linux-scsi@vger.kernel.org
16284 S:      Supported
16285 F:      drivers/scsi/pm8001/
16286
16287 PNI RM3100 IIO DRIVER
16288 M:      Song Qiang <songqiang1304521@gmail.com>
16289 L:      linux-iio@vger.kernel.org
16290 S:      Maintained
16291 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16292 F:      drivers/iio/magnetometer/rm3100*
16293
16294 PNP SUPPORT
16295 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16296 L:      linux-acpi@vger.kernel.org
16297 S:      Maintained
16298 F:      drivers/pnp/
16299 F:      include/linux/pnp.h
16300
16301 POSIX CLOCKS and TIMERS
16302 M:      Thomas Gleixner <tglx@linutronix.de>
16303 L:      linux-kernel@vger.kernel.org
16304 S:      Maintained
16305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16306 F:      fs/timerfd.c
16307 F:      include/linux/time_namespace.h
16308 F:      include/linux/timer*
16309 F:      kernel/time/*timer*
16310 F:      kernel/time/namespace.c
16311
16312 POWER MANAGEMENT CORE
16313 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16314 L:      linux-pm@vger.kernel.org
16315 S:      Supported
16316 B:      https://bugzilla.kernel.org
16317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16318 F:      drivers/base/power/
16319 F:      drivers/powercap/
16320 F:      include/linux/intel_rapl.h
16321 F:      include/linux/pm.h
16322 F:      include/linux/pm_*
16323 F:      include/linux/powercap.h
16324 F:      kernel/configs/nopm.config
16325
16326 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16327 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16328 L:      linux-pm@vger.kernel.org
16329 S:      Supported
16330 B:      https://bugzilla.kernel.org
16331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16332 F:      drivers/powercap/dtpm*
16333 F:      include/linux/dtpm.h
16334
16335 POWER STATE COORDINATION INTERFACE (PSCI)
16336 M:      Mark Rutland <mark.rutland@arm.com>
16337 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16339 S:      Maintained
16340 F:      drivers/firmware/psci/
16341 F:      include/linux/psci.h
16342 F:      include/uapi/linux/psci.h
16343
16344 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16345 M:      Sebastian Reichel <sre@kernel.org>
16346 L:      linux-pm@vger.kernel.org
16347 S:      Maintained
16348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16349 F:      Documentation/ABI/testing/sysfs-class-power
16350 F:      Documentation/devicetree/bindings/power/supply/
16351 F:      drivers/power/supply/
16352 F:      include/linux/power/
16353 F:      include/linux/power_supply.h
16354
16355 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16356 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16357 L:      linuxppc-dev@lists.ozlabs.org
16358 S:      Maintained
16359 F:      drivers/char/powernv-op-panel.c
16360
16361 PPP OVER ATM (RFC 2364)
16362 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16363 S:      Maintained
16364 F:      include/uapi/linux/atmppp.h
16365 F:      net/atm/pppoatm.c
16366
16367 PPP OVER ETHERNET
16368 M:      Michal Ostrowski <mostrows@earthlink.net>
16369 S:      Maintained
16370 F:      drivers/net/ppp/pppoe.c
16371 F:      drivers/net/ppp/pppox.c
16372
16373 PPP OVER L2TP
16374 M:      James Chapman <jchapman@katalix.com>
16375 S:      Maintained
16376 F:      include/linux/if_pppol2tp.h
16377 F:      include/uapi/linux/if_pppol2tp.h
16378 F:      net/l2tp/l2tp_ppp.c
16379
16380 PPP PROTOCOL DRIVERS AND COMPRESSORS
16381 M:      Paul Mackerras <paulus@samba.org>
16382 L:      linux-ppp@vger.kernel.org
16383 S:      Maintained
16384 F:      drivers/net/ppp/ppp_*
16385
16386 PPS SUPPORT
16387 M:      Rodolfo Giometti <giometti@enneenne.com>
16388 L:      linuxpps@ml.enneenne.com (subscribers-only)
16389 S:      Maintained
16390 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16391 F:      Documentation/ABI/testing/sysfs-pps
16392 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16393 F:      Documentation/driver-api/pps.rst
16394 F:      drivers/pps/
16395 F:      include/linux/pps*.h
16396 F:      include/uapi/linux/pps.h
16397
16398 PPTP DRIVER
16399 M:      Dmitry Kozlov <xeb@mail.ru>
16400 L:      netdev@vger.kernel.org
16401 S:      Maintained
16402 W:      http://sourceforge.net/projects/accel-pptp
16403 F:      drivers/net/ppp/pptp.c
16404
16405 PRESSURE STALL INFORMATION (PSI)
16406 M:      Johannes Weiner <hannes@cmpxchg.org>
16407 M:      Suren Baghdasaryan <surenb@google.com>
16408 S:      Maintained
16409 F:      include/linux/psi*
16410 F:      kernel/sched/psi.c
16411
16412 PRINTK
16413 M:      Petr Mladek <pmladek@suse.com>
16414 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16415 R:      Steven Rostedt <rostedt@goodmis.org>
16416 R:      John Ogness <john.ogness@linutronix.de>
16417 S:      Maintained
16418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16419 F:      include/linux/printk.h
16420 F:      kernel/printk/
16421
16422 PRINTK INDEXING
16423 R:      Chris Down <chris@chrisdown.name>
16424 S:      Maintained
16425 F:      Documentation/core-api/printk-index.rst
16426 F:      kernel/printk/index.c
16427 K:      printk_index
16428
16429 PROC FILESYSTEM
16430 L:      linux-kernel@vger.kernel.org
16431 L:      linux-fsdevel@vger.kernel.org
16432 S:      Maintained
16433 F:      Documentation/filesystems/proc.rst
16434 F:      fs/proc/
16435 F:      include/linux/proc_fs.h
16436 F:      tools/testing/selftests/proc/
16437
16438 PROC SYSCTL
16439 M:      Luis Chamberlain <mcgrof@kernel.org>
16440 M:      Kees Cook <keescook@chromium.org>
16441 M:      Iurii Zaikin <yzaikin@google.com>
16442 L:      linux-kernel@vger.kernel.org
16443 L:      linux-fsdevel@vger.kernel.org
16444 S:      Maintained
16445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16446 F:      fs/proc/proc_sysctl.c
16447 F:      include/linux/sysctl.h
16448 F:      kernel/sysctl-test.c
16449 F:      kernel/sysctl.c
16450 F:      tools/testing/selftests/sysctl/
16451
16452 PS3 NETWORK SUPPORT
16453 M:      Geoff Levand <geoff@infradead.org>
16454 L:      netdev@vger.kernel.org
16455 L:      linuxppc-dev@lists.ozlabs.org
16456 S:      Maintained
16457 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16458
16459 PS3 PLATFORM SUPPORT
16460 M:      Geoff Levand <geoff@infradead.org>
16461 L:      linuxppc-dev@lists.ozlabs.org
16462 S:      Maintained
16463 F:      arch/powerpc/boot/ps3*
16464 F:      arch/powerpc/include/asm/lv1call.h
16465 F:      arch/powerpc/include/asm/ps3*.h
16466 F:      arch/powerpc/platforms/ps3/
16467 F:      drivers/*/ps3*
16468 F:      drivers/ps3/
16469 F:      drivers/rtc/rtc-ps3.c
16470 F:      drivers/usb/host/*ps3.c
16471 F:      sound/ppc/snd_ps3*
16472
16473 PS3VRAM DRIVER
16474 M:      Jim Paris <jim@jtan.com>
16475 M:      Geoff Levand <geoff@infradead.org>
16476 L:      linuxppc-dev@lists.ozlabs.org
16477 S:      Maintained
16478 F:      drivers/block/ps3vram.c
16479
16480 PSAMPLE PACKET SAMPLING SUPPORT
16481 M:      Yotam Gigi <yotam.gi@gmail.com>
16482 S:      Maintained
16483 F:      include/net/psample.h
16484 F:      include/uapi/linux/psample.h
16485 F:      net/psample
16486
16487 PSTORE FILESYSTEM
16488 M:      Kees Cook <keescook@chromium.org>
16489 M:      Anton Vorontsov <anton@enomsg.org>
16490 M:      Colin Cross <ccross@android.com>
16491 M:      Tony Luck <tony.luck@intel.com>
16492 S:      Maintained
16493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16494 F:      Documentation/admin-guide/ramoops.rst
16495 F:      Documentation/admin-guide/pstore-blk.rst
16496 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16497 F:      drivers/acpi/apei/erst.c
16498 F:      drivers/firmware/efi/efi-pstore.c
16499 F:      fs/pstore/
16500 F:      include/linux/pstore*
16501 K:      \b(pstore|ramoops)
16502
16503 PTP HARDWARE CLOCK SUPPORT
16504 M:      Richard Cochran <richardcochran@gmail.com>
16505 L:      netdev@vger.kernel.org
16506 S:      Maintained
16507 W:      http://linuxptp.sourceforge.net/
16508 F:      Documentation/ABI/testing/sysfs-ptp
16509 F:      Documentation/driver-api/ptp.rst
16510 F:      drivers/net/phy/dp83640*
16511 F:      drivers/ptp/*
16512 F:      include/linux/ptp_cl*
16513
16514 PTP VIRTUAL CLOCK SUPPORT
16515 M:      Yangbo Lu <yangbo.lu@nxp.com>
16516 L:      netdev@vger.kernel.org
16517 S:      Maintained
16518 F:      drivers/ptp/ptp_vclock.c
16519 F:      net/ethtool/phc_vclocks.c
16520
16521 PTRACE SUPPORT
16522 M:      Oleg Nesterov <oleg@redhat.com>
16523 S:      Maintained
16524 F:      arch/*/*/ptrace*.c
16525 F:      arch/*/include/asm/ptrace*.h
16526 F:      arch/*/ptrace*.c
16527 F:      include/asm-generic/syscall.h
16528 F:      include/linux/ptrace.h
16529 F:      include/linux/regset.h
16530 F:      include/uapi/linux/ptrace.h
16531 F:      kernel/ptrace.c
16532
16533 PULSE8-CEC DRIVER
16534 M:      Hans Verkuil <hverkuil@xs4all.nl>
16535 L:      linux-media@vger.kernel.org
16536 S:      Maintained
16537 T:      git git://linuxtv.org/media_tree.git
16538 F:      Documentation/admin-guide/media/pulse8-cec.rst
16539 F:      drivers/media/cec/usb/pulse8/
16540
16541 PURELIFI PLFXLC DRIVER
16542 M:      Srinivasan Raju <srini.raju@purelifi.com>
16543 L:      linux-wireless@vger.kernel.org
16544 S:      Supported
16545 F:      drivers/net/wireless/purelifi/plfxlc/
16546
16547 PVRUSB2 VIDEO4LINUX DRIVER
16548 M:      Mike Isely <isely@pobox.com>
16549 L:      pvrusb2@isely.net       (subscribers-only)
16550 L:      linux-media@vger.kernel.org
16551 S:      Maintained
16552 W:      http://www.isely.net/pvrusb2/
16553 T:      git git://linuxtv.org/media_tree.git
16554 F:      Documentation/driver-api/media/drivers/pvrusb2*
16555 F:      drivers/media/usb/pvrusb2/
16556
16557 PWC WEBCAM DRIVER
16558 M:      Hans Verkuil <hverkuil@xs4all.nl>
16559 L:      linux-media@vger.kernel.org
16560 S:      Odd Fixes
16561 T:      git git://linuxtv.org/media_tree.git
16562 F:      drivers/media/usb/pwc/*
16563 F:      include/trace/events/pwc.h
16564
16565 PWM FAN DRIVER
16566 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16567 L:      linux-hwmon@vger.kernel.org
16568 S:      Supported
16569 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16570 F:      Documentation/hwmon/pwm-fan.rst
16571 F:      drivers/hwmon/pwm-fan.c
16572
16573 PWM IR Transmitter
16574 M:      Sean Young <sean@mess.org>
16575 L:      linux-media@vger.kernel.org
16576 S:      Maintained
16577 F:      drivers/media/rc/pwm-ir-tx.c
16578
16579 PWM SUBSYSTEM
16580 M:      Thierry Reding <thierry.reding@gmail.com>
16581 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16582 L:      linux-pwm@vger.kernel.org
16583 S:      Maintained
16584 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16586 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16587 F:      Documentation/devicetree/bindings/pwm/
16588 F:      Documentation/driver-api/pwm.rst
16589 F:      drivers/gpio/gpio-mvebu.c
16590 F:      drivers/pwm/
16591 F:      drivers/video/backlight/pwm_bl.c
16592 F:      include/dt-bindings/pwm/
16593 F:      include/linux/pwm.h
16594 F:      include/linux/pwm_backlight.h
16595 K:      pwm_(config|apply_state|ops)
16596
16597 PXA GPIO DRIVER
16598 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16599 L:      linux-gpio@vger.kernel.org
16600 S:      Maintained
16601 F:      drivers/gpio/gpio-pxa.c
16602
16603 PXA MMCI DRIVER
16604 S:      Orphan
16605
16606 PXA RTC DRIVER
16607 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16608 L:      linux-rtc@vger.kernel.org
16609 S:      Maintained
16610
16611 PXA2xx/PXA3xx SUPPORT
16612 M:      Daniel Mack <daniel@zonque.org>
16613 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16614 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16616 S:      Maintained
16617 T:      git git://github.com/hzhuang1/linux.git
16618 T:      git git://github.com/rjarzmik/linux.git
16619 F:      arch/arm/boot/dts/pxa*
16620 F:      arch/arm/mach-pxa/
16621 F:      drivers/dma/pxa*
16622 F:      drivers/pcmcia/pxa2xx*
16623 F:      drivers/pinctrl/pxa/
16624 F:      drivers/spi/spi-pxa2xx*
16625 F:      drivers/usb/gadget/udc/pxa2*
16626 F:      include/sound/pxa2xx-lib.h
16627 F:      sound/arm/pxa*
16628 F:      sound/soc/pxa/
16629
16630 QAT DRIVER
16631 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16632 L:      qat-linux@intel.com
16633 S:      Supported
16634 F:      drivers/crypto/qat/
16635
16636 QCOM AUDIO (ASoC) DRIVERS
16637 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16638 M:      Banajit Goswami <bgoswami@quicinc.com>
16639 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16640 S:      Supported
16641 F:      include/dt-bindings/sound/qcom,wcd9335.h
16642 F:      sound/soc/codecs/lpass-rx-macro.*
16643 F:      sound/soc/codecs/lpass-tx-macro.*
16644 F:      sound/soc/codecs/lpass-va-macro.c
16645 F:      sound/soc/codecs/lpass-wsa-macro.*
16646 F:      sound/soc/codecs/msm8916-wcd-analog.c
16647 F:      sound/soc/codecs/msm8916-wcd-digital.c
16648 F:      sound/soc/codecs/wcd9335.*
16649 F:      sound/soc/codecs/wcd934x.c
16650 F:      sound/soc/codecs/wcd-clsh-v2.*
16651 F:      sound/soc/codecs/wcd-mbhc-v2.*
16652 F:      sound/soc/codecs/wsa881x.c
16653 F:      sound/soc/codecs/wsa883x.c
16654 F:      sound/soc/qcom/
16655
16656 QCOM EMBEDDED USB DEBUGGER (EUD)
16657 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16658 L:      linux-arm-msm@vger.kernel.org
16659 S:      Maintained
16660 F:      Documentation/ABI/testing/sysfs-driver-eud
16661 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16662 F:      drivers/usb/misc/qcom_eud.c
16663
16664 QCOM IPA DRIVER
16665 M:      Alex Elder <elder@kernel.org>
16666 L:      netdev@vger.kernel.org
16667 S:      Supported
16668 F:      drivers/net/ipa/
16669
16670 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16671 M:      Gabriel Somlo <somlo@cmu.edu>
16672 M:      "Michael S. Tsirkin" <mst@redhat.com>
16673 L:      qemu-devel@nongnu.org
16674 S:      Maintained
16675 F:      drivers/firmware/qemu_fw_cfg.c
16676 F:      include/uapi/linux/qemu_fw_cfg.h
16677
16678 QIB DRIVER
16679 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16680 L:      linux-rdma@vger.kernel.org
16681 S:      Supported
16682 F:      drivers/infiniband/hw/qib/
16683
16684 QLOGIC QL41xxx FCOE DRIVER
16685 M:      Saurav Kashyap <skashyap@marvell.com>
16686 M:      Javed Hasan <jhasan@marvell.com>
16687 M:      GR-QLogic-Storage-Upstream@marvell.com
16688 L:      linux-scsi@vger.kernel.org
16689 S:      Supported
16690 F:      drivers/scsi/qedf/
16691
16692 QLOGIC QL41xxx ISCSI DRIVER
16693 M:      Nilesh Javali <njavali@marvell.com>
16694 M:      Manish Rangankar <mrangankar@marvell.com>
16695 M:      GR-QLogic-Storage-Upstream@marvell.com
16696 L:      linux-scsi@vger.kernel.org
16697 S:      Supported
16698 F:      drivers/scsi/qedi/
16699
16700 QLOGIC QL4xxx ETHERNET DRIVER
16701 M:      Ariel Elior <aelior@marvell.com>
16702 M:      Manish Chopra <manishc@marvell.com>
16703 L:      netdev@vger.kernel.org
16704 S:      Supported
16705 F:      drivers/net/ethernet/qlogic/qed/
16706 F:      drivers/net/ethernet/qlogic/qede/
16707 F:      include/linux/qed/
16708
16709 QLOGIC QL4xxx RDMA DRIVER
16710 M:      Michal Kalderon <mkalderon@marvell.com>
16711 M:      Ariel Elior <aelior@marvell.com>
16712 L:      linux-rdma@vger.kernel.org
16713 S:      Supported
16714 F:      drivers/infiniband/hw/qedr/
16715 F:      include/uapi/rdma/qedr-abi.h
16716
16717 QLOGIC QLA1280 SCSI DRIVER
16718 M:      Michael Reed <mdr@sgi.com>
16719 L:      linux-scsi@vger.kernel.org
16720 S:      Maintained
16721 F:      drivers/scsi/qla1280.[ch]
16722
16723 QLOGIC QLA2XXX FC-SCSI DRIVER
16724 M:      Nilesh Javali <njavali@marvell.com>
16725 M:      GR-QLogic-Storage-Upstream@marvell.com
16726 L:      linux-scsi@vger.kernel.org
16727 S:      Supported
16728 F:      drivers/scsi/qla2xxx/
16729
16730 QLOGIC QLA3XXX NETWORK DRIVER
16731 M:      GR-Linux-NIC-Dev@marvell.com
16732 L:      netdev@vger.kernel.org
16733 S:      Supported
16734 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16735
16736 QLOGIC QLA4XXX iSCSI DRIVER
16737 M:      Nilesh Javali <njavali@marvell.com>
16738 M:      Manish Rangankar <mrangankar@marvell.com>
16739 M:      GR-QLogic-Storage-Upstream@marvell.com
16740 L:      linux-scsi@vger.kernel.org
16741 S:      Supported
16742 F:      drivers/scsi/qla4xxx/
16743
16744 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16745 M:      Shahed Shaikh <shshaikh@marvell.com>
16746 M:      Manish Chopra <manishc@marvell.com>
16747 M:      GR-Linux-NIC-Dev@marvell.com
16748 L:      netdev@vger.kernel.org
16749 S:      Supported
16750 F:      drivers/net/ethernet/qlogic/qlcnic/
16751
16752 QLOGIC QLGE 10Gb ETHERNET DRIVER
16753 M:      Manish Chopra <manishc@marvell.com>
16754 M:      GR-Linux-NIC-Dev@marvell.com
16755 M:      Coiby Xu <coiby.xu@gmail.com>
16756 L:      netdev@vger.kernel.org
16757 S:      Supported
16758 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16759 F:      drivers/staging/qlge/
16760
16761 QM1D1B0004 MEDIA DRIVER
16762 M:      Akihiro Tsukada <tskd08@gmail.com>
16763 L:      linux-media@vger.kernel.org
16764 S:      Odd Fixes
16765 F:      drivers/media/tuners/qm1d1b0004*
16766
16767 QM1D1C0042 MEDIA DRIVER
16768 M:      Akihiro Tsukada <tskd08@gmail.com>
16769 L:      linux-media@vger.kernel.org
16770 S:      Odd Fixes
16771 F:      drivers/media/tuners/qm1d1c0042*
16772
16773 QNX4 FILESYSTEM
16774 M:      Anders Larsen <al@alarsen.net>
16775 S:      Maintained
16776 W:      http://www.alarsen.net/linux/qnx4fs/
16777 F:      fs/qnx4/
16778 F:      include/uapi/linux/qnx4_fs.h
16779 F:      include/uapi/linux/qnxtypes.h
16780
16781 QORIQ DPAA2 FSL-MC BUS DRIVER
16782 M:      Stuart Yoder <stuyoder@gmail.com>
16783 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16784 L:      linux-kernel@vger.kernel.org
16785 S:      Maintained
16786 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16787 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16788 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16789 F:      drivers/bus/fsl-mc/
16790 F:      include/uapi/linux/fsl_mc.h
16791
16792 QT1010 MEDIA DRIVER
16793 M:      Antti Palosaari <crope@iki.fi>
16794 L:      linux-media@vger.kernel.org
16795 S:      Maintained
16796 W:      https://linuxtv.org
16797 W:      http://palosaari.fi/linux/
16798 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16799 T:      git git://linuxtv.org/anttip/media_tree.git
16800 F:      drivers/media/tuners/qt1010*
16801
16802 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16803 M:      Kalle Valo <kvalo@kernel.org>
16804 L:      ath10k@lists.infradead.org
16805 S:      Supported
16806 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16808 F:      drivers/net/wireless/ath/ath10k/
16809 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16810
16811 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16812 M:      Kalle Valo <kvalo@kernel.org>
16813 L:      ath11k@lists.infradead.org
16814 S:      Supported
16815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16816 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16817 F:      drivers/net/wireless/ath/ath11k/
16818
16819 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16820 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16821 L:      linux-wireless@vger.kernel.org
16822 S:      Maintained
16823 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16824 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16825 F:      drivers/net/wireless/ath/ath9k/
16826
16827 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16828 M:      Stephan Gerhold <stephan@gerhold.net>
16829 L:      netdev@vger.kernel.org
16830 L:      linux-arm-msm@vger.kernel.org
16831 S:      Maintained
16832 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16833 F:      drivers/net/wwan/qcom_bam_dmux.c
16834
16835 QUALCOMM CAMERA SUBSYSTEM DRIVER
16836 M:      Robert Foss <robert.foss@linaro.org>
16837 M:      Todor Tomov <todor.too@gmail.com>
16838 L:      linux-media@vger.kernel.org
16839 S:      Maintained
16840 F:      Documentation/admin-guide/media/qcom_camss.rst
16841 F:      Documentation/devicetree/bindings/media/*camss*
16842 F:      drivers/media/platform/qcom/camss/
16843
16844 QUALCOMM CLOCK DRIVERS
16845 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16846 L:      linux-arm-msm@vger.kernel.org
16847 S:      Supported
16848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16849 F:      Documentation/devicetree/bindings/clock/qcom,*
16850 F:      drivers/clk/qcom/
16851 F:      include/dt-bindings/clock/qcom,*
16852
16853 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16854 M:      Niklas Cassel <nks@flawful.org>
16855 L:      linux-pm@vger.kernel.org
16856 L:      linux-arm-msm@vger.kernel.org
16857 S:      Maintained
16858 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16859 F:      drivers/soc/qcom/cpr.c
16860
16861 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16862 M:      Ilia Lin <ilia.lin@kernel.org>
16863 L:      linux-pm@vger.kernel.org
16864 S:      Maintained
16865 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16866 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16867 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16868
16869 QUALCOMM CRYPTO DRIVERS
16870 M:      Thara Gopinath <thara.gopinath@gmail.com>
16871 L:      linux-crypto@vger.kernel.org
16872 L:      linux-arm-msm@vger.kernel.org
16873 S:      Maintained
16874 F:      drivers/crypto/qce/
16875
16876 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16877 M:      Timur Tabi <timur@kernel.org>
16878 L:      netdev@vger.kernel.org
16879 S:      Maintained
16880 F:      drivers/net/ethernet/qualcomm/emac/
16881
16882 QUALCOMM ETHQOS ETHERNET DRIVER
16883 M:      Vinod Koul <vkoul@kernel.org>
16884 L:      netdev@vger.kernel.org
16885 S:      Maintained
16886 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16887 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16888
16889 QUALCOMM FASTRPC DRIVER
16890 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16891 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16892 L:      linux-arm-msm@vger.kernel.org
16893 S:      Maintained
16894 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16895 F:      drivers/misc/fastrpc.c
16896 F:      include/uapi/misc/fastrpc.h
16897
16898 QUALCOMM HEXAGON ARCHITECTURE
16899 M:      Brian Cain <bcain@quicinc.com>
16900 L:      linux-hexagon@vger.kernel.org
16901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16902 S:      Supported
16903 F:      arch/hexagon/
16904
16905 QUALCOMM HIDMA DRIVER
16906 M:      Sinan Kaya <okaya@kernel.org>
16907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16908 L:      linux-arm-msm@vger.kernel.org
16909 L:      dmaengine@vger.kernel.org
16910 S:      Supported
16911 F:      drivers/dma/qcom/hidma*
16912
16913 QUALCOMM I2C CCI DRIVER
16914 M:      Loic Poulain <loic.poulain@linaro.org>
16915 M:      Robert Foss <robert.foss@linaro.org>
16916 L:      linux-i2c@vger.kernel.org
16917 L:      linux-arm-msm@vger.kernel.org
16918 S:      Maintained
16919 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
16920 F:      drivers/i2c/busses/i2c-qcom-cci.c
16921
16922 QUALCOMM INTERCONNECT BWMON DRIVER
16923 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16924 L:      linux-arm-msm@vger.kernel.org
16925 S:      Maintained
16926 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
16927 F:      drivers/soc/qcom/icc-bwmon.c
16928
16929 QUALCOMM IOMMU
16930 M:      Rob Clark <robdclark@gmail.com>
16931 L:      iommu@lists.linux.dev
16932 L:      linux-arm-msm@vger.kernel.org
16933 S:      Maintained
16934 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16935
16936 QUALCOMM IPC ROUTER (QRTR) DRIVER
16937 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16938 L:      linux-arm-msm@vger.kernel.org
16939 S:      Maintained
16940 F:      include/trace/events/qrtr.h
16941 F:      include/uapi/linux/qrtr.h
16942 F:      net/qrtr/
16943
16944 QUALCOMM IPCC MAILBOX DRIVER
16945 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16946 L:      linux-arm-msm@vger.kernel.org
16947 S:      Supported
16948 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16949 F:      drivers/mailbox/qcom-ipcc.c
16950 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16951
16952 QUALCOMM IPQ4019 USB PHY DRIVER
16953 M:      Robert Marko <robert.marko@sartura.hr>
16954 M:      Luka Perkov <luka.perkov@sartura.hr>
16955 L:      linux-arm-msm@vger.kernel.org
16956 S:      Maintained
16957 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16958 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16959
16960 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16961 M:      Robert Marko <robert.marko@sartura.hr>
16962 M:      Luka Perkov <luka.perkov@sartura.hr>
16963 L:      linux-arm-msm@vger.kernel.org
16964 S:      Maintained
16965 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16966 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16967
16968 QUALCOMM NAND CONTROLLER DRIVER
16969 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16970 L:      linux-mtd@lists.infradead.org
16971 L:      linux-arm-msm@vger.kernel.org
16972 S:      Maintained
16973 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16974 F:      drivers/mtd/nand/raw/qcom_nandc.c
16975
16976 QUALCOMM RMNET DRIVER
16977 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16978 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16979 L:      netdev@vger.kernel.org
16980 S:      Maintained
16981 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16982 F:      drivers/net/ethernet/qualcomm/rmnet/
16983 F:      include/linux/if_rmnet.h
16984
16985 QUALCOMM TSENS THERMAL DRIVER
16986 M:      Amit Kucheria <amitk@kernel.org>
16987 M:      Thara Gopinath <thara.gopinath@gmail.com>
16988 L:      linux-pm@vger.kernel.org
16989 L:      linux-arm-msm@vger.kernel.org
16990 S:      Maintained
16991 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16992 F:      drivers/thermal/qcom/
16993
16994 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16995 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16996 L:      linux-media@vger.kernel.org
16997 L:      linux-arm-msm@vger.kernel.org
16998 S:      Maintained
16999 T:      git git://linuxtv.org/media_tree.git
17000 F:      Documentation/devicetree/bindings/media/*venus*
17001 F:      drivers/media/platform/qcom/venus/
17002
17003 QUALCOMM WCN36XX WIRELESS DRIVER
17004 M:      Loic Poulain <loic.poulain@linaro.org>
17005 L:      wcn36xx@lists.infradead.org
17006 S:      Supported
17007 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17008 F:      drivers/net/wireless/ath/wcn36xx/
17009
17010 QUANTENNA QTNFMAC WIRELESS DRIVER
17011 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17012 R:      Sergey Matyukevich <geomatsi@gmail.com>
17013 L:      linux-wireless@vger.kernel.org
17014 S:      Maintained
17015 F:      drivers/net/wireless/quantenna
17016
17017 RADEON and AMDGPU DRM DRIVERS
17018 M:      Alex Deucher <alexander.deucher@amd.com>
17019 M:      Christian König <christian.koenig@amd.com>
17020 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17021 L:      amd-gfx@lists.freedesktop.org
17022 S:      Supported
17023 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17024 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17025 C:      irc://irc.oftc.net/radeon
17026 F:      Documentation/gpu/amdgpu/
17027 F:      drivers/gpu/drm/amd/
17028 F:      drivers/gpu/drm/radeon/
17029 F:      include/uapi/drm/amdgpu_drm.h
17030 F:      include/uapi/drm/radeon_drm.h
17031
17032 RADEON FRAMEBUFFER DISPLAY DRIVER
17033 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17034 L:      linux-fbdev@vger.kernel.org
17035 S:      Maintained
17036 F:      drivers/video/fbdev/aty/radeon*
17037 F:      include/uapi/linux/radeonfb.h
17038
17039 RADIOSHARK RADIO DRIVER
17040 M:      Hans Verkuil <hverkuil@xs4all.nl>
17041 L:      linux-media@vger.kernel.org
17042 S:      Maintained
17043 T:      git git://linuxtv.org/media_tree.git
17044 F:      drivers/media/radio/radio-shark.c
17045
17046 RADIOSHARK2 RADIO DRIVER
17047 M:      Hans Verkuil <hverkuil@xs4all.nl>
17048 L:      linux-media@vger.kernel.org
17049 S:      Maintained
17050 T:      git git://linuxtv.org/media_tree.git
17051 F:      drivers/media/radio/radio-shark2.c
17052 F:      drivers/media/radio/radio-tea5777.c
17053
17054 RADOS BLOCK DEVICE (RBD)
17055 M:      Ilya Dryomov <idryomov@gmail.com>
17056 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17057 L:      ceph-devel@vger.kernel.org
17058 S:      Supported
17059 W:      http://ceph.com/
17060 T:      git git://github.com/ceph/ceph-client.git
17061 F:      Documentation/ABI/testing/sysfs-bus-rbd
17062 F:      drivers/block/rbd.c
17063 F:      drivers/block/rbd_types.h
17064
17065 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17066 M:      Paul Mackerras <paulus@samba.org>
17067 L:      linux-fbdev@vger.kernel.org
17068 S:      Maintained
17069 F:      drivers/video/fbdev/aty/aty128fb.c
17070
17071 RAINSHADOW-CEC DRIVER
17072 M:      Hans Verkuil <hverkuil@xs4all.nl>
17073 L:      linux-media@vger.kernel.org
17074 S:      Maintained
17075 T:      git git://linuxtv.org/media_tree.git
17076 F:      drivers/media/cec/usb/rainshadow/
17077
17078 RALINK MIPS ARCHITECTURE
17079 M:      John Crispin <john@phrozen.org>
17080 L:      linux-mips@vger.kernel.org
17081 S:      Maintained
17082 F:      arch/mips/ralink
17083
17084 RALINK MT7621 MIPS ARCHITECTURE
17085 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17086 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17087 L:      linux-mips@vger.kernel.org
17088 S:      Maintained
17089 F:      arch/mips/boot/dts/ralink/mt7621*
17090
17091 RALINK PINCTRL DRIVER
17092 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17093 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17094 L:      linux-mips@vger.kernel.org
17095 S:      Maintained
17096 F:      drivers/pinctrl/ralink/
17097
17098 RALINK RT2X00 WIRELESS LAN DRIVER
17099 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17100 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17101 L:      linux-wireless@vger.kernel.org
17102 S:      Maintained
17103 F:      drivers/net/wireless/ralink/rt2x00/
17104
17105 RAMDISK RAM BLOCK DEVICE DRIVER
17106 M:      Jens Axboe <axboe@kernel.dk>
17107 S:      Maintained
17108 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17109 F:      drivers/block/brd.c
17110
17111 RANCHU VIRTUAL BOARD FOR MIPS
17112 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17113 L:      linux-mips@vger.kernel.org
17114 S:      Supported
17115 F:      arch/mips/configs/generic/board-ranchu.config
17116 F:      arch/mips/generic/board-ranchu.c
17117
17118 RANDOM NUMBER DRIVER
17119 M:      "Theodore Ts'o" <tytso@mit.edu>
17120 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17121 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17122 S:      Maintained
17123 F:      drivers/char/random.c
17124 F:      drivers/virt/vmgenid.c
17125
17126 RAPIDIO SUBSYSTEM
17127 M:      Matt Porter <mporter@kernel.crashing.org>
17128 M:      Alexandre Bounine <alex.bou9@gmail.com>
17129 S:      Maintained
17130 F:      drivers/rapidio/
17131
17132 RAS INFRASTRUCTURE
17133 M:      Tony Luck <tony.luck@intel.com>
17134 M:      Borislav Petkov <bp@alien8.de>
17135 L:      linux-edac@vger.kernel.org
17136 S:      Maintained
17137 F:      Documentation/admin-guide/ras.rst
17138 F:      drivers/ras/
17139 F:      include/linux/ras.h
17140 F:      include/ras/ras_event.h
17141
17142 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17143 L:      linux-wireless@vger.kernel.org
17144 S:      Orphan
17145 F:      drivers/net/wireless/ray*
17146
17147 RC-CORE / LIRC FRAMEWORK
17148 M:      Sean Young <sean@mess.org>
17149 L:      linux-media@vger.kernel.org
17150 S:      Maintained
17151 W:      http://linuxtv.org
17152 T:      git git://linuxtv.org/media_tree.git
17153 F:      Documentation/driver-api/media/rc-core.rst
17154 F:      Documentation/userspace-api/media/rc/
17155 F:      drivers/media/rc/
17156 F:      include/media/rc-map.h
17157 F:      include/media/rc-core.h
17158 F:      include/uapi/linux/lirc.h
17159
17160 RCMM REMOTE CONTROLS DECODER
17161 M:      Patrick Lerda <patrick9876@free.fr>
17162 S:      Maintained
17163 F:      drivers/media/rc/ir-rcmm-decoder.c
17164
17165 RCUTORTURE TEST FRAMEWORK
17166 M:      "Paul E. McKenney" <paulmck@kernel.org>
17167 M:      Josh Triplett <josh@joshtriplett.org>
17168 R:      Steven Rostedt <rostedt@goodmis.org>
17169 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17170 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17171 L:      rcu@vger.kernel.org
17172 S:      Supported
17173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17174 F:      tools/testing/selftests/rcutorture
17175
17176 RDACM20 Camera Sensor
17177 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17178 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17179 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17180 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17181 L:      linux-media@vger.kernel.org
17182 S:      Maintained
17183 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17184 F:      drivers/media/i2c/max9271.c
17185 F:      drivers/media/i2c/max9271.h
17186 F:      drivers/media/i2c/rdacm20.c
17187
17188 RDACM21 Camera Sensor
17189 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17190 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17191 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17192 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17193 L:      linux-media@vger.kernel.org
17194 S:      Maintained
17195 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17196 F:      drivers/media/i2c/max9271.c
17197 F:      drivers/media/i2c/max9271.h
17198 F:      drivers/media/i2c/rdacm21.c
17199
17200 RDC R-321X SoC
17201 M:      Florian Fainelli <florian@openwrt.org>
17202 S:      Maintained
17203
17204 RDC R6040 FAST ETHERNET DRIVER
17205 M:      Florian Fainelli <f.fainelli@gmail.com>
17206 L:      netdev@vger.kernel.org
17207 S:      Maintained
17208 F:      drivers/net/ethernet/rdc/r6040.c
17209
17210 RDMAVT - RDMA verbs software
17211 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17212 L:      linux-rdma@vger.kernel.org
17213 S:      Supported
17214 F:      drivers/infiniband/sw/rdmavt
17215
17216 RDS - RELIABLE DATAGRAM SOCKETS
17217 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17218 L:      netdev@vger.kernel.org
17219 L:      linux-rdma@vger.kernel.org
17220 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17221 S:      Supported
17222 W:      https://oss.oracle.com/projects/rds/
17223 F:      Documentation/networking/rds.rst
17224 F:      net/rds/
17225
17226 RDT - RESOURCE ALLOCATION
17227 M:      Fenghua Yu <fenghua.yu@intel.com>
17228 M:      Reinette Chatre <reinette.chatre@intel.com>
17229 L:      linux-kernel@vger.kernel.org
17230 S:      Supported
17231 F:      Documentation/x86/resctrl*
17232 F:      arch/x86/include/asm/resctrl.h
17233 F:      arch/x86/kernel/cpu/resctrl/
17234 F:      tools/testing/selftests/resctrl/
17235
17236 READ-COPY UPDATE (RCU)
17237 M:      "Paul E. McKenney" <paulmck@kernel.org>
17238 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17239 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17240 M:      Josh Triplett <josh@joshtriplett.org>
17241 R:      Steven Rostedt <rostedt@goodmis.org>
17242 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17243 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17244 R:      Joel Fernandes <joel@joelfernandes.org>
17245 L:      rcu@vger.kernel.org
17246 S:      Supported
17247 W:      http://www.rdrop.com/users/paulmck/RCU/
17248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17249 F:      Documentation/RCU/
17250 F:      include/linux/rcu*
17251 F:      kernel/rcu/
17252 X:      Documentation/RCU/torture.rst
17253 X:      include/linux/srcu*.h
17254 X:      kernel/rcu/srcu*.c
17255
17256 REAL TIME CLOCK (RTC) SUBSYSTEM
17257 M:      Alessandro Zummo <a.zummo@towertech.it>
17258 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17259 L:      linux-rtc@vger.kernel.org
17260 S:      Maintained
17261 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17263 F:      Documentation/admin-guide/rtc.rst
17264 F:      Documentation/devicetree/bindings/rtc/
17265 F:      drivers/rtc/
17266 F:      include/linux/platform_data/rtc-*
17267 F:      include/linux/rtc.h
17268 F:      include/linux/rtc/
17269 F:      include/uapi/linux/rtc.h
17270 F:      tools/testing/selftests/rtc/
17271
17272 REALTEK AUDIO CODECS
17273 M:      Oder Chiou <oder_chiou@realtek.com>
17274 S:      Maintained
17275 F:      include/sound/rt*.h
17276 F:      sound/soc/codecs/rt*
17277
17278 REALTEK OTTO WATCHDOG
17279 M:      Sander Vanheule <sander@svanheule.net>
17280 L:      linux-watchdog@vger.kernel.org
17281 S:      Maintained
17282 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17283 F:      drivers/watchdog/realtek_otto_wdt.c
17284
17285 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17286 M:      Linus Walleij <linus.walleij@linaro.org>
17287 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17288 S:      Maintained
17289 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17290 F:      drivers/net/dsa/realtek/*
17291
17292 REALTEK WIRELESS DRIVER (rtlwifi family)
17293 M:      Ping-Ke Shih <pkshih@realtek.com>
17294 L:      linux-wireless@vger.kernel.org
17295 S:      Maintained
17296 W:      https://wireless.wiki.kernel.org/
17297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17298 F:      drivers/net/wireless/realtek/rtlwifi/
17299
17300 REALTEK WIRELESS DRIVER (rtw88)
17301 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17302 L:      linux-wireless@vger.kernel.org
17303 S:      Maintained
17304 F:      drivers/net/wireless/realtek/rtw88/
17305
17306 REALTEK WIRELESS DRIVER (rtw89)
17307 M:      Ping-Ke Shih <pkshih@realtek.com>
17308 L:      linux-wireless@vger.kernel.org
17309 S:      Maintained
17310 F:      drivers/net/wireless/realtek/rtw89/
17311
17312 REDPINE WIRELESS DRIVER
17313 M:      Amitkumar Karwar <amitkarwar@gmail.com>
17314 M:      Siva Rebbagondla <siva8118@gmail.com>
17315 L:      linux-wireless@vger.kernel.org
17316 S:      Maintained
17317 F:      drivers/net/wireless/rsi/
17318
17319 REGISTER MAP ABSTRACTION
17320 M:      Mark Brown <broonie@kernel.org>
17321 L:      linux-kernel@vger.kernel.org
17322 S:      Supported
17323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17324 F:      Documentation/devicetree/bindings/regmap/
17325 F:      drivers/base/regmap/
17326 F:      include/linux/regmap.h
17327
17328 REISERFS FILE SYSTEM
17329 L:      reiserfs-devel@vger.kernel.org
17330 S:      Supported
17331 F:      fs/reiserfs/
17332
17333 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17334 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
17335 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17336 L:      linux-remoteproc@vger.kernel.org
17337 S:      Maintained
17338 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17339 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17340 F:      Documentation/devicetree/bindings/remoteproc/
17341 F:      Documentation/staging/remoteproc.rst
17342 F:      drivers/remoteproc/
17343 F:      include/linux/remoteproc.h
17344 F:      include/linux/remoteproc/
17345
17346 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17347 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
17348 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17349 L:      linux-remoteproc@vger.kernel.org
17350 S:      Maintained
17351 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17352 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17353 F:      Documentation/staging/rpmsg.rst
17354 F:      drivers/rpmsg/
17355 F:      include/linux/rpmsg.h
17356 F:      include/linux/rpmsg/
17357 F:      include/uapi/linux/rpmsg.h
17358 F:      samples/rpmsg/
17359
17360 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17361 M:      Stephan Gerhold <stephan@gerhold.net>
17362 L:      netdev@vger.kernel.org
17363 L:      linux-remoteproc@vger.kernel.org
17364 S:      Maintained
17365 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17366
17367 RENESAS CLOCK DRIVERS
17368 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17369 L:      linux-renesas-soc@vger.kernel.org
17370 S:      Supported
17371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17372 F:      Documentation/devicetree/bindings/clock/renesas,*
17373 F:      drivers/clk/renesas/
17374
17375 RENESAS EMEV2 I2C DRIVER
17376 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17377 L:      linux-renesas-soc@vger.kernel.org
17378 S:      Supported
17379 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17380 F:      drivers/i2c/busses/i2c-emev2.c
17381
17382 RENESAS ETHERNET DRIVERS
17383 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17384 L:      netdev@vger.kernel.org
17385 L:      linux-renesas-soc@vger.kernel.org
17386 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17387 F:      drivers/net/ethernet/renesas/
17388 F:      include/linux/sh_eth.h
17389
17390 RENESAS R-CAR GYROADC DRIVER
17391 M:      Marek Vasut <marek.vasut@gmail.com>
17392 L:      linux-iio@vger.kernel.org
17393 S:      Supported
17394 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17395 F:      drivers/iio/adc/rcar-gyroadc.c
17396
17397 RENESAS R-CAR I2C DRIVERS
17398 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17399 L:      linux-renesas-soc@vger.kernel.org
17400 S:      Supported
17401 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17402 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17403 F:      drivers/i2c/busses/i2c-rcar.c
17404 F:      drivers/i2c/busses/i2c-sh_mobile.c
17405
17406 RENESAS R-CAR SATA DRIVER
17407 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17408 S:      Supported
17409 L:      linux-ide@vger.kernel.org
17410 L:      linux-renesas-soc@vger.kernel.org
17411 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17412 F:      drivers/ata/sata_rcar.c
17413
17414 RENESAS R-CAR THERMAL DRIVERS
17415 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17416 L:      linux-renesas-soc@vger.kernel.org
17417 S:      Supported
17418 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17419 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17420 F:      drivers/thermal/rcar_gen3_thermal.c
17421 F:      drivers/thermal/rcar_thermal.c
17422
17423 RENESAS RIIC DRIVER
17424 M:      Chris Brandt <chris.brandt@renesas.com>
17425 L:      linux-renesas-soc@vger.kernel.org
17426 S:      Supported
17427 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17428 F:      drivers/i2c/busses/i2c-riic.c
17429
17430 RENESAS USB PHY DRIVER
17431 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17432 L:      linux-renesas-soc@vger.kernel.org
17433 S:      Maintained
17434 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17435
17436 RENESAS RZ/G2L A/D DRIVER
17437 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17438 L:      linux-iio@vger.kernel.org
17439 L:      linux-renesas-soc@vger.kernel.org
17440 S:      Supported
17441 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17442 F:      drivers/iio/adc/rzg2l_adc.c
17443
17444 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17445 M:      Clément Léger <clement.leger@bootlin.com>
17446 L:      linux-renesas-soc@vger.kernel.org
17447 L:      netdev@vger.kernel.org
17448 S:      Maintained
17449 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17450 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17451 F:      drivers/net/dsa/rzn1_a5psw*
17452 F:      drivers/net/pcs/pcs-rzn1-miic.c
17453 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17454 F:      include/linux/pcs-rzn1-miic.h
17455 F:      net/dsa/tag_rzn1_a5psw.c
17456
17457 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17458 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17459 L:      linux-rtc@vger.kernel.org
17460 L:      linux-renesas-soc@vger.kernel.org
17461 S:      Maintained
17462 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17463 F:      drivers/rtc/rtc-rzn1.c
17464
17465 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17466 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17467 L:      linux-mtd@lists.infradead.org
17468 L:      linux-renesas-soc@vger.kernel.org
17469 S:      Maintained
17470 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17471 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17472
17473 RESET CONTROLLER FRAMEWORK
17474 M:      Philipp Zabel <p.zabel@pengutronix.de>
17475 S:      Maintained
17476 T:      git git://git.pengutronix.de/git/pza/linux
17477 F:      Documentation/devicetree/bindings/reset/
17478 F:      Documentation/driver-api/reset.rst
17479 F:      drivers/reset/
17480 F:      include/dt-bindings/reset/
17481 F:      include/linux/reset-controller.h
17482 F:      include/linux/reset.h
17483 F:      include/linux/reset/
17484 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17485
17486 RESTARTABLE SEQUENCES SUPPORT
17487 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17488 M:      Peter Zijlstra <peterz@infradead.org>
17489 M:      "Paul E. McKenney" <paulmck@kernel.org>
17490 M:      Boqun Feng <boqun.feng@gmail.com>
17491 L:      linux-kernel@vger.kernel.org
17492 S:      Supported
17493 F:      include/trace/events/rseq.h
17494 F:      include/uapi/linux/rseq.h
17495 F:      kernel/rseq.c
17496 F:      tools/testing/selftests/rseq/
17497
17498 RFKILL
17499 M:      Johannes Berg <johannes@sipsolutions.net>
17500 L:      linux-wireless@vger.kernel.org
17501 S:      Maintained
17502 W:      https://wireless.wiki.kernel.org/
17503 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17506 F:      Documentation/ABI/stable/sysfs-class-rfkill
17507 F:      Documentation/driver-api/rfkill.rst
17508 F:      include/linux/rfkill.h
17509 F:      include/uapi/linux/rfkill.h
17510 F:      net/rfkill/
17511
17512 RHASHTABLE
17513 M:      Thomas Graf <tgraf@suug.ch>
17514 M:      Herbert Xu <herbert@gondor.apana.org.au>
17515 L:      netdev@vger.kernel.org
17516 S:      Maintained
17517 F:      include/linux/rhashtable-types.h
17518 F:      include/linux/rhashtable.h
17519 F:      lib/rhashtable.c
17520 F:      lib/test_rhashtable.c
17521
17522 RICOH R5C592 MEMORYSTICK DRIVER
17523 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17524 S:      Maintained
17525 F:      drivers/memstick/host/r592.*
17526
17527 RICOH SMARTMEDIA/XD DRIVER
17528 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17529 S:      Maintained
17530 F:      drivers/mtd/nand/raw/r852.c
17531 F:      drivers/mtd/nand/raw/r852.h
17532
17533 RISC-V PMU DRIVERS
17534 M:      Atish Patra <atishp@atishpatra.org>
17535 R:      Anup Patel <anup@brainfault.org>
17536 L:      linux-riscv@lists.infradead.org
17537 S:      Supported
17538 F:      drivers/perf/riscv_pmu.c
17539 F:      drivers/perf/riscv_pmu_legacy.c
17540 F:      drivers/perf/riscv_pmu_sbi.c
17541
17542 RISC-V ARCHITECTURE
17543 M:      Paul Walmsley <paul.walmsley@sifive.com>
17544 M:      Palmer Dabbelt <palmer@dabbelt.com>
17545 M:      Albert Ou <aou@eecs.berkeley.edu>
17546 L:      linux-riscv@lists.infradead.org
17547 S:      Supported
17548 P:      Documentation/riscv/patch-acceptance.rst
17549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17550 F:      arch/riscv/
17551 N:      riscv
17552 K:      riscv
17553
17554 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17555 M:      Conor Dooley <conor.dooley@microchip.com>
17556 M:      Daire McNamara <daire.mcnamara@microchip.com>
17557 L:      linux-riscv@lists.infradead.org
17558 S:      Supported
17559 F:      arch/riscv/boot/dts/microchip/
17560 F:      drivers/char/hw_random/mpfs-rng.c
17561 F:      drivers/clk/microchip/clk-mpfs.c
17562 F:      drivers/mailbox/mailbox-mpfs.c
17563 F:      drivers/pci/controller/pcie-microchip-host.c
17564 F:      drivers/rtc/rtc-mpfs.c
17565 F:      drivers/soc/microchip/
17566 F:      drivers/spi/spi-microchip-core.c
17567 F:      drivers/usb/musb/mpfs.c
17568 F:      include/soc/microchip/mpfs.h
17569
17570 RNBD BLOCK DRIVERS
17571 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17572 M:      Jack Wang <jinpu.wang@ionos.com>
17573 L:      linux-block@vger.kernel.org
17574 S:      Maintained
17575 F:      drivers/block/rnbd/
17576
17577 ROCCAT DRIVERS
17578 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17579 S:      Maintained
17580 W:      http://sourceforge.net/projects/roccat/
17581 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17582 F:      drivers/hid/hid-roccat*
17583 F:      include/linux/hid-roccat*
17584
17585 ROCKCHIP I2S TDM DRIVER
17586 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17587 L:      linux-rockchip@lists.infradead.org
17588 S:      Maintained
17589 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17590 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17591
17592 ROCKCHIP ISP V1 DRIVER
17593 M:      Dafna Hirschfeld <dafna@fastmail.com>
17594 L:      linux-media@vger.kernel.org
17595 L:      linux-rockchip@lists.infradead.org
17596 S:      Maintained
17597 F:      Documentation/admin-guide/media/rkisp1.rst
17598 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17599 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17600 F:      drivers/media/platform/rockchip/rkisp1
17601 F:      include/uapi/linux/rkisp1-config.h
17602
17603 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17604 M:      Jacob Chen <jacob-chen@iotwrt.com>
17605 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17606 L:      linux-media@vger.kernel.org
17607 L:      linux-rockchip@lists.infradead.org
17608 S:      Maintained
17609 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17610 F:      drivers/media/platform/rockchip/rga/
17611
17612 ROCKCHIP VIDEO DECODER DRIVER
17613 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17614 L:      linux-media@vger.kernel.org
17615 L:      linux-rockchip@lists.infradead.org
17616 S:      Maintained
17617 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17618 F:      drivers/staging/media/rkvdec/
17619
17620 ROCKER DRIVER
17621 M:      Jiri Pirko <jiri@resnulli.us>
17622 L:      netdev@vger.kernel.org
17623 S:      Supported
17624 F:      drivers/net/ethernet/rocker/
17625
17626 ROCKETPORT EXPRESS/INFINITY DRIVER
17627 M:      Kevin Cernekee <cernekee@gmail.com>
17628 L:      linux-serial@vger.kernel.org
17629 S:      Odd Fixes
17630 F:      drivers/tty/serial/rp2.*
17631
17632 ROHM BD99954 CHARGER IC
17633 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17634 S:      Supported
17635 F:      drivers/power/supply/bd99954-charger.c
17636 F:      drivers/power/supply/bd99954-charger.h
17637
17638 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17639 M:      Tomasz Duszynski <tduszyns@gmail.com>
17640 S:      Maintained
17641 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17642 F:      drivers/iio/light/bh1750.c
17643
17644 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17645 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17646 L:      linux-kernel@vger.kernel.org
17647 L:      linux-renesas-soc@vger.kernel.org
17648 S:      Supported
17649 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17650 F:      drivers/gpio/gpio-bd9571mwv.c
17651 F:      drivers/mfd/bd9571mwv.c
17652 F:      drivers/regulator/bd9571mwv-regulator.c
17653 F:      include/linux/mfd/bd9571mwv.h
17654
17655 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17656 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17657 S:      Supported
17658 F:      drivers/clk/clk-bd718x7.c
17659 F:      drivers/gpio/gpio-bd71815.c
17660 F:      drivers/gpio/gpio-bd71828.c
17661 F:      drivers/mfd/rohm-bd71828.c
17662 F:      drivers/mfd/rohm-bd718x7.c
17663 F:      drivers/mfd/rohm-bd9576.c
17664 F:      drivers/regulator/bd71815-regulator.c
17665 F:      drivers/regulator/bd71828-regulator.c
17666 F:      drivers/regulator/bd718x7-regulator.c
17667 F:      drivers/regulator/bd9576-regulator.c
17668 F:      drivers/regulator/rohm-regulator.c
17669 F:      drivers/rtc/rtc-bd70528.c
17670 F:      drivers/watchdog/bd9576_wdt.c
17671 F:      include/linux/mfd/rohm-bd71815.h
17672 F:      include/linux/mfd/rohm-bd71828.h
17673 F:      include/linux/mfd/rohm-bd718x7.h
17674 F:      include/linux/mfd/rohm-bd957x.h
17675 F:      include/linux/mfd/rohm-generic.h
17676 F:      include/linux/mfd/rohm-shared.h
17677
17678 ROSE NETWORK LAYER
17679 M:      Ralf Baechle <ralf@linux-mips.org>
17680 L:      linux-hams@vger.kernel.org
17681 S:      Maintained
17682 W:      http://www.linux-ax25.org/
17683 F:      include/net/rose.h
17684 F:      include/uapi/linux/rose.h
17685 F:      net/rose/
17686
17687 ROTATION DRIVER FOR ALLWINNER A83T
17688 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17689 L:      linux-media@vger.kernel.org
17690 S:      Maintained
17691 T:      git git://linuxtv.org/media_tree.git
17692 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17693 F:      drivers/media/platform/sunxi/sun8i-rotate/
17694
17695 RPMSG TTY DRIVER
17696 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17697 L:      linux-remoteproc@vger.kernel.org
17698 S:      Maintained
17699 F:      drivers/tty/rpmsg_tty.c
17700
17701 RTL2830 MEDIA DRIVER
17702 M:      Antti Palosaari <crope@iki.fi>
17703 L:      linux-media@vger.kernel.org
17704 S:      Maintained
17705 W:      https://linuxtv.org
17706 W:      http://palosaari.fi/linux/
17707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17708 T:      git git://linuxtv.org/anttip/media_tree.git
17709 F:      drivers/media/dvb-frontends/rtl2830*
17710
17711 RTL2832 MEDIA DRIVER
17712 M:      Antti Palosaari <crope@iki.fi>
17713 L:      linux-media@vger.kernel.org
17714 S:      Maintained
17715 W:      https://linuxtv.org
17716 W:      http://palosaari.fi/linux/
17717 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17718 T:      git git://linuxtv.org/anttip/media_tree.git
17719 F:      drivers/media/dvb-frontends/rtl2832*
17720
17721 RTL2832_SDR MEDIA DRIVER
17722 M:      Antti Palosaari <crope@iki.fi>
17723 L:      linux-media@vger.kernel.org
17724 S:      Maintained
17725 W:      https://linuxtv.org
17726 W:      http://palosaari.fi/linux/
17727 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17728 T:      git git://linuxtv.org/anttip/media_tree.git
17729 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17730
17731 RTL8180 WIRELESS DRIVER
17732 L:      linux-wireless@vger.kernel.org
17733 S:      Orphan
17734 W:      https://wireless.wiki.kernel.org/
17735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17736 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17737
17738 RTL8187 WIRELESS DRIVER
17739 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17740 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17741 M:      Larry Finger <Larry.Finger@lwfinger.net>
17742 L:      linux-wireless@vger.kernel.org
17743 S:      Maintained
17744 W:      https://wireless.wiki.kernel.org/
17745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17746 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17747
17748 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17749 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17750 L:      linux-wireless@vger.kernel.org
17751 S:      Maintained
17752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17753 F:      drivers/net/wireless/realtek/rtl8xxxu/
17754
17755 RTRS TRANSPORT DRIVERS
17756 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17757 M:      Jack Wang <jinpu.wang@ionos.com>
17758 L:      linux-rdma@vger.kernel.org
17759 S:      Maintained
17760 F:      drivers/infiniband/ulp/rtrs/
17761
17762 RXRPC SOCKETS (AF_RXRPC)
17763 M:      David Howells <dhowells@redhat.com>
17764 M:      Marc Dionne <marc.dionne@auristor.com>
17765 L:      linux-afs@lists.infradead.org
17766 S:      Supported
17767 W:      https://www.infradead.org/~dhowells/kafs/
17768 F:      Documentation/networking/rxrpc.rst
17769 F:      include/keys/rxrpc-type.h
17770 F:      include/net/af_rxrpc.h
17771 F:      include/trace/events/rxrpc.h
17772 F:      include/uapi/linux/rxrpc.h
17773 F:      net/rxrpc/
17774
17775 S3 SAVAGE FRAMEBUFFER DRIVER
17776 M:      Antonino Daplas <adaplas@gmail.com>
17777 L:      linux-fbdev@vger.kernel.org
17778 S:      Maintained
17779 F:      drivers/video/fbdev/savage/
17780
17781 S390
17782 M:      Heiko Carstens <hca@linux.ibm.com>
17783 M:      Vasily Gorbik <gor@linux.ibm.com>
17784 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17785 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17786 R:      Sven Schnelle <svens@linux.ibm.com>
17787 L:      linux-s390@vger.kernel.org
17788 S:      Supported
17789 W:      http://www.ibm.com/developerworks/linux/linux390/
17790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17791 F:      Documentation/driver-api/s390-drivers.rst
17792 F:      Documentation/s390/
17793 F:      arch/s390/
17794 F:      drivers/s390/
17795
17796 S390 COMMON I/O LAYER
17797 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17798 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17799 L:      linux-s390@vger.kernel.org
17800 S:      Supported
17801 W:      http://www.ibm.com/developerworks/linux/linux390/
17802 F:      drivers/s390/cio/
17803
17804 S390 DASD DRIVER
17805 M:      Stefan Haberland <sth@linux.ibm.com>
17806 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17807 L:      linux-s390@vger.kernel.org
17808 S:      Supported
17809 W:      http://www.ibm.com/developerworks/linux/linux390/
17810 F:      block/partitions/ibm.c
17811 F:      drivers/s390/block/dasd*
17812 F:      include/linux/dasd_mod.h
17813
17814 S390 IOMMU (PCI)
17815 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17816 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17817 L:      linux-s390@vger.kernel.org
17818 S:      Supported
17819 W:      http://www.ibm.com/developerworks/linux/linux390/
17820 F:      drivers/iommu/s390-iommu.c
17821
17822 S390 IUCV NETWORK LAYER
17823 M:      Alexandra Winter <wintera@linux.ibm.com>
17824 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17825 L:      linux-s390@vger.kernel.org
17826 L:      netdev@vger.kernel.org
17827 S:      Supported
17828 W:      http://www.ibm.com/developerworks/linux/linux390/
17829 F:      drivers/s390/net/*iucv*
17830 F:      include/net/iucv/
17831 F:      net/iucv/
17832
17833 S390 NETWORK DRIVERS
17834 M:      Alexandra Winter <wintera@linux.ibm.com>
17835 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17836 L:      linux-s390@vger.kernel.org
17837 L:      netdev@vger.kernel.org
17838 S:      Supported
17839 W:      http://www.ibm.com/developerworks/linux/linux390/
17840 F:      drivers/s390/net/
17841
17842 S390 PCI SUBSYSTEM
17843 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17844 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17845 L:      linux-s390@vger.kernel.org
17846 S:      Supported
17847 W:      http://www.ibm.com/developerworks/linux/linux390/
17848 F:      arch/s390/pci/
17849 F:      drivers/pci/hotplug/s390_pci_hpc.c
17850 F:      Documentation/s390/pci.rst
17851
17852 S390 VFIO AP DRIVER
17853 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17854 M:      Halil Pasic <pasic@linux.ibm.com>
17855 M:      Jason Herne <jjherne@linux.ibm.com>
17856 L:      linux-s390@vger.kernel.org
17857 S:      Supported
17858 W:      http://www.ibm.com/developerworks/linux/linux390/
17859 F:      Documentation/s390/vfio-ap*
17860 F:      drivers/s390/crypto/vfio_ap*
17861
17862 S390 VFIO-CCW DRIVER
17863 M:      Eric Farman <farman@linux.ibm.com>
17864 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17865 R:      Halil Pasic <pasic@linux.ibm.com>
17866 L:      linux-s390@vger.kernel.org
17867 L:      kvm@vger.kernel.org
17868 S:      Supported
17869 F:      Documentation/s390/vfio-ccw.rst
17870 F:      drivers/s390/cio/vfio_ccw*
17871 F:      include/uapi/linux/vfio_ccw.h
17872
17873 S390 VFIO-PCI DRIVER
17874 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17875 M:      Eric Farman <farman@linux.ibm.com>
17876 L:      linux-s390@vger.kernel.org
17877 L:      kvm@vger.kernel.org
17878 S:      Supported
17879 F:      arch/s390/kvm/pci*
17880 F:      drivers/vfio/pci/vfio_pci_zdev.c
17881 F:      include/uapi/linux/vfio_zdev.h
17882
17883 S390 ZCRYPT DRIVER
17884 M:      Harald Freudenberger <freude@linux.ibm.com>
17885 L:      linux-s390@vger.kernel.org
17886 S:      Supported
17887 W:      http://www.ibm.com/developerworks/linux/linux390/
17888 F:      drivers/s390/crypto/
17889
17890 S390 ZFCP DRIVER
17891 M:      Steffen Maier <maier@linux.ibm.com>
17892 M:      Benjamin Block <bblock@linux.ibm.com>
17893 L:      linux-s390@vger.kernel.org
17894 S:      Supported
17895 W:      http://www.ibm.com/developerworks/linux/linux390/
17896 F:      drivers/s390/scsi/zfcp_*
17897
17898 S3C ADC BATTERY DRIVER
17899 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17900 L:      linux-samsung-soc@vger.kernel.org
17901 S:      Odd Fixes
17902 F:      drivers/power/supply/s3c_adc_battery.c
17903 F:      include/linux/s3c_adc_battery.h
17904
17905 S3C24XX SD/MMC Driver
17906 M:      Ben Dooks <ben-linux@fluff.org>
17907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17908 S:      Supported
17909 F:      drivers/mmc/host/s3cmci.*
17910
17911 SAA6588 RDS RECEIVER DRIVER
17912 M:      Hans Verkuil <hverkuil@xs4all.nl>
17913 L:      linux-media@vger.kernel.org
17914 S:      Odd Fixes
17915 W:      https://linuxtv.org
17916 T:      git git://linuxtv.org/media_tree.git
17917 F:      drivers/media/i2c/saa6588*
17918
17919 SAA7134 VIDEO4LINUX DRIVER
17920 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17921 L:      linux-media@vger.kernel.org
17922 S:      Odd fixes
17923 W:      https://linuxtv.org
17924 T:      git git://linuxtv.org/media_tree.git
17925 F:      Documentation/driver-api/media/drivers/saa7134*
17926 F:      drivers/media/pci/saa7134/
17927
17928 SAA7146 VIDEO4LINUX-2 DRIVER
17929 M:      Hans Verkuil <hverkuil@xs4all.nl>
17930 L:      linux-media@vger.kernel.org
17931 S:      Maintained
17932 T:      git git://linuxtv.org/media_tree.git
17933 F:      drivers/media/common/saa7146/
17934 F:      drivers/media/pci/saa7146/
17935 F:      include/media/drv-intf/saa7146*
17936
17937 SAFESETID SECURITY MODULE
17938 M:      Micah Morton <mortonm@chromium.org>
17939 S:      Supported
17940 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17941 F:      security/safesetid/
17942
17943 SAMSUNG AUDIO (ASoC) DRIVERS
17944 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17945 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17946 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17947 S:      Supported
17948 B:      mailto:linux-samsung-soc@vger.kernel.org
17949 F:      Documentation/devicetree/bindings/sound/samsung*
17950 F:      sound/soc/samsung/
17951
17952 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17953 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17954 L:      linux-crypto@vger.kernel.org
17955 L:      linux-samsung-soc@vger.kernel.org
17956 S:      Maintained
17957 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17958 F:      drivers/crypto/exynos-rng.c
17959
17960 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17961 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17962 L:      linux-samsung-soc@vger.kernel.org
17963 S:      Maintained
17964 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17965 F:      drivers/char/hw_random/exynos-trng.c
17966
17967 SAMSUNG FRAMEBUFFER DRIVER
17968 M:      Jingoo Han <jingoohan1@gmail.com>
17969 L:      linux-fbdev@vger.kernel.org
17970 S:      Maintained
17971 F:      drivers/video/fbdev/s3c-fb.c
17972
17973 SAMSUNG INTERCONNECT DRIVERS
17974 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17975 M:      Artur Świgoń <a.swigon@samsung.com>
17976 L:      linux-pm@vger.kernel.org
17977 L:      linux-samsung-soc@vger.kernel.org
17978 S:      Supported
17979 F:      drivers/interconnect/samsung/
17980
17981 SAMSUNG LAPTOP DRIVER
17982 M:      Corentin Chary <corentin.chary@gmail.com>
17983 L:      platform-driver-x86@vger.kernel.org
17984 S:      Maintained
17985 F:      drivers/platform/x86/samsung-laptop.c
17986
17987 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17988 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17989 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17990 L:      linux-kernel@vger.kernel.org
17991 L:      linux-samsung-soc@vger.kernel.org
17992 S:      Supported
17993 B:      mailto:linux-samsung-soc@vger.kernel.org
17994 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17995 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17996 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17997 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17998 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17999 F:      drivers/clk/clk-s2mps11.c
18000 F:      drivers/mfd/sec*.c
18001 F:      drivers/regulator/s2m*.c
18002 F:      drivers/regulator/s5m*.c
18003 F:      drivers/rtc/rtc-s5m.c
18004 F:      include/linux/mfd/samsung/
18005
18006 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18007 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18008 L:      linux-media@vger.kernel.org
18009 L:      linux-samsung-soc@vger.kernel.org
18010 S:      Maintained
18011 F:      drivers/media/platform/samsung/s3c-camif/
18012 F:      include/media/drv-intf/s3c_camif.h
18013
18014 SAMSUNG S3FWRN5 NFC DRIVER
18015 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18016 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
18017 L:      linux-nfc@lists.01.org (subscribers-only)
18018 S:      Maintained
18019 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18020 F:      drivers/nfc/s3fwrn5
18021
18022 SAMSUNG S5C73M3 CAMERA DRIVER
18023 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18024 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18025 L:      linux-media@vger.kernel.org
18026 S:      Supported
18027 F:      drivers/media/i2c/s5c73m3/*
18028
18029 SAMSUNG S5K5BAF CAMERA DRIVER
18030 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18031 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18032 L:      linux-media@vger.kernel.org
18033 S:      Supported
18034 F:      drivers/media/i2c/s5k5baf.c
18035
18036 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18037 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18038 M:      Vladimir Zapolskiy <vz@mleia.com>
18039 L:      linux-crypto@vger.kernel.org
18040 L:      linux-samsung-soc@vger.kernel.org
18041 S:      Maintained
18042 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18043 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18044 F:      drivers/crypto/s5p-sss.c
18045
18046 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18047 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18048 L:      linux-media@vger.kernel.org
18049 S:      Supported
18050 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18051 F:      drivers/media/platform/samsung/exynos4-is/
18052
18053 SAMSUNG SOC CLOCK DRIVERS
18054 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18055 M:      Tomasz Figa <tomasz.figa@gmail.com>
18056 M:      Chanwoo Choi <cw00.choi@samsung.com>
18057 R:      Alim Akhtar <alim.akhtar@samsung.com>
18058 L:      linux-samsung-soc@vger.kernel.org
18059 S:      Supported
18060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18061 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18062 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18063 F:      drivers/clk/samsung/
18064 F:      include/dt-bindings/clock/exynos*.h
18065 F:      include/dt-bindings/clock/s3c*.h
18066 F:      include/dt-bindings/clock/s5p*.h
18067 F:      include/dt-bindings/clock/samsung,*.h
18068 F:      include/linux/clk/samsung.h
18069 F:      include/linux/platform_data/clk-s3c2410.h
18070
18071 SAMSUNG SPI DRIVERS
18072 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18073 M:      Andi Shyti <andi@etezian.org>
18074 L:      linux-spi@vger.kernel.org
18075 L:      linux-samsung-soc@vger.kernel.org
18076 S:      Maintained
18077 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18078 F:      drivers/spi/spi-s3c*
18079 F:      include/linux/platform_data/spi-s3c64xx.h
18080 F:      include/linux/spi/s3c24xx-fiq.h
18081
18082 SAMSUNG SXGBE DRIVERS
18083 M:      Byungho An <bh74.an@samsung.com>
18084 L:      netdev@vger.kernel.org
18085 S:      Supported
18086 F:      drivers/net/ethernet/samsung/sxgbe/
18087
18088 SAMSUNG THERMAL DRIVER
18089 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18090 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18091 L:      linux-pm@vger.kernel.org
18092 L:      linux-samsung-soc@vger.kernel.org
18093 S:      Maintained
18094 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18095 F:      drivers/thermal/samsung/
18096
18097 SAMSUNG USB2 PHY DRIVER
18098 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18099 L:      linux-kernel@vger.kernel.org
18100 S:      Supported
18101 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18102 F:      Documentation/driver-api/phy/samsung-usb2.rst
18103 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18104 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18105 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18106 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18107 F:      drivers/phy/samsung/phy-samsung-usb2.c
18108 F:      drivers/phy/samsung/phy-samsung-usb2.h
18109
18110 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18111 M:      Paul Barker <paul.barker@sancloud.com>
18112 R:      Marc Murphy <marc.murphy@sancloud.com>
18113 S:      Supported
18114 F:      arch/arm/boot/dts/am335x-sancloud*
18115
18116 SC1200 WDT DRIVER
18117 M:      Zwane Mwaikambo <zwanem@gmail.com>
18118 S:      Maintained
18119 F:      drivers/watchdog/sc1200wdt.c
18120
18121 SCHEDULER
18122 M:      Ingo Molnar <mingo@redhat.com>
18123 M:      Peter Zijlstra <peterz@infradead.org>
18124 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18125 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18126 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18127 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18128 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18129 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18130 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18131 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18132 L:      linux-kernel@vger.kernel.org
18133 S:      Maintained
18134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18135 F:      include/linux/preempt.h
18136 F:      include/linux/sched.h
18137 F:      include/linux/wait.h
18138 F:      include/uapi/linux/sched.h
18139 F:      kernel/sched/
18140
18141 SCR24X CHIP CARD INTERFACE DRIVER
18142 M:      Lubomir Rintel <lkundrak@v3.sk>
18143 S:      Supported
18144 F:      drivers/char/pcmcia/scr24x_cs.c
18145
18146 SCSI RDMA PROTOCOL (SRP) INITIATOR
18147 M:      Bart Van Assche <bvanassche@acm.org>
18148 L:      linux-rdma@vger.kernel.org
18149 S:      Supported
18150 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18151 F:      drivers/infiniband/ulp/srp/
18152 F:      include/scsi/srp.h
18153
18154 SCSI RDMA PROTOCOL (SRP) TARGET
18155 M:      Bart Van Assche <bvanassche@acm.org>
18156 L:      linux-rdma@vger.kernel.org
18157 L:      target-devel@vger.kernel.org
18158 S:      Supported
18159 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18160 F:      drivers/infiniband/ulp/srpt/
18161
18162 SCSI SG DRIVER
18163 M:      Doug Gilbert <dgilbert@interlog.com>
18164 L:      linux-scsi@vger.kernel.org
18165 S:      Maintained
18166 W:      http://sg.danny.cz/sg
18167 F:      Documentation/scsi/scsi-generic.rst
18168 F:      drivers/scsi/sg.c
18169 F:      include/scsi/sg.h
18170
18171 SCSI SUBSYSTEM
18172 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18173 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18174 L:      linux-scsi@vger.kernel.org
18175 S:      Maintained
18176 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18179 F:      Documentation/devicetree/bindings/scsi/
18180 F:      drivers/scsi/
18181 F:      drivers/ufs/
18182 F:      include/scsi/
18183
18184 SCSI TAPE DRIVER
18185 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18186 L:      linux-scsi@vger.kernel.org
18187 S:      Maintained
18188 F:      Documentation/scsi/st.rst
18189 F:      drivers/scsi/st.*
18190 F:      drivers/scsi/st_*.h
18191
18192 SCSI TARGET CORE USER DRIVER
18193 M:      Bodo Stroesser <bostroesser@gmail.com>
18194 L:      linux-scsi@vger.kernel.org
18195 L:      target-devel@vger.kernel.org
18196 S:      Supported
18197 F:      Documentation/target/tcmu-design.rst
18198 F:      drivers/target/target_core_user.c
18199 F:      include/uapi/linux/target_core_user.h
18200
18201 SCSI TARGET SUBSYSTEM
18202 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18203 L:      linux-scsi@vger.kernel.org
18204 L:      target-devel@vger.kernel.org
18205 S:      Supported
18206 W:      http://www.linux-iscsi.org
18207 Q:      https://patchwork.kernel.org/project/target-devel/list/
18208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18209 F:      Documentation/target/
18210 F:      drivers/target/
18211 F:      include/target/
18212
18213 SCTP PROTOCOL
18214 M:      Vlad Yasevich <vyasevich@gmail.com>
18215 M:      Neil Horman <nhorman@tuxdriver.com>
18216 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18217 L:      linux-sctp@vger.kernel.org
18218 S:      Maintained
18219 W:      http://lksctp.sourceforge.net
18220 F:      Documentation/networking/sctp.rst
18221 F:      include/linux/sctp.h
18222 F:      include/net/sctp/
18223 F:      include/uapi/linux/sctp.h
18224 F:      net/sctp/
18225
18226 SCx200 CPU SUPPORT
18227 M:      Jim Cromie <jim.cromie@gmail.com>
18228 S:      Odd Fixes
18229 F:      Documentation/i2c/busses/scx200_acb.rst
18230 F:      arch/x86/platform/scx200/
18231 F:      drivers/i2c/busses/scx200*
18232 F:      drivers/mtd/maps/scx200_docflash.c
18233 F:      drivers/watchdog/scx200_wdt.c
18234 F:      include/linux/scx200.h
18235
18236 SCx200 GPIO DRIVER
18237 M:      Jim Cromie <jim.cromie@gmail.com>
18238 S:      Maintained
18239 F:      drivers/char/scx200_gpio.c
18240 F:      include/linux/scx200_gpio.h
18241
18242 SCx200 HRT CLOCKSOURCE DRIVER
18243 M:      Jim Cromie <jim.cromie@gmail.com>
18244 S:      Maintained
18245 F:      drivers/clocksource/scx200_hrt.c
18246
18247 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18248 M:      Sascha Sommer <saschasommer@freenet.de>
18249 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18250 S:      Maintained
18251 F:      drivers/mmc/host/sdricoh_cs.c
18252
18253 SECO BOARDS CEC DRIVER
18254 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18255 S:      Maintained
18256 F:      drivers/media/cec/platform/seco/seco-cec.c
18257 F:      drivers/media/cec/platform/seco/seco-cec.h
18258
18259 SECURE COMPUTING
18260 M:      Kees Cook <keescook@chromium.org>
18261 R:      Andy Lutomirski <luto@amacapital.net>
18262 R:      Will Drewry <wad@chromium.org>
18263 S:      Supported
18264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18265 F:      Documentation/userspace-api/seccomp_filter.rst
18266 F:      include/linux/seccomp.h
18267 F:      include/uapi/linux/seccomp.h
18268 F:      kernel/seccomp.c
18269 F:      tools/testing/selftests/kselftest_harness.h
18270 F:      tools/testing/selftests/seccomp/*
18271 K:      \bsecure_computing
18272 K:      \bTIF_SECCOMP\b
18273
18274 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18275 M:      Al Cooper <alcooperx@gmail.com>
18276 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18277 L:      linux-mmc@vger.kernel.org
18278 S:      Maintained
18279 F:      drivers/mmc/host/sdhci-brcmstb*
18280
18281 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18282 M:      Adrian Hunter <adrian.hunter@intel.com>
18283 L:      linux-mmc@vger.kernel.org
18284 S:      Maintained
18285 F:      drivers/mmc/host/sdhci*
18286
18287 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18288 M:      Eugen Hristev <eugen.hristev@microchip.com>
18289 L:      linux-mmc@vger.kernel.org
18290 S:      Supported
18291 F:      drivers/mmc/host/sdhci-of-at91.c
18292
18293 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18294 M:      Ben Dooks <ben-linux@fluff.org>
18295 M:      Jaehoon Chung <jh80.chung@samsung.com>
18296 L:      linux-mmc@vger.kernel.org
18297 S:      Maintained
18298 F:      drivers/mmc/host/sdhci-s3c*
18299
18300 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18301 M:      Viresh Kumar <vireshk@kernel.org>
18302 L:      linux-mmc@vger.kernel.org
18303 S:      Maintained
18304 F:      drivers/mmc/host/sdhci-spear.c
18305
18306 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18307 M:      Kishon Vijay Abraham I <kishon@ti.com>
18308 L:      linux-mmc@vger.kernel.org
18309 S:      Maintained
18310 F:      drivers/mmc/host/sdhci-omap.c
18311
18312 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18313 M:      Haibo Chen <haibo.chen@nxp.com>
18314 L:      linux-imx@nxp.com
18315 L:      linux-mmc@vger.kernel.org
18316 S:      Maintained
18317 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18318
18319 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18320 M:      Jonathan Derrick <jonathan.derrick@intel.com>
18321 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
18322 L:      linux-block@vger.kernel.org
18323 S:      Supported
18324 F:      block/opal_proto.h
18325 F:      block/sed*
18326 F:      include/linux/sed*
18327 F:      include/uapi/linux/sed*
18328
18329 SECURITY CONTACT
18330 M:      Security Officers <security@kernel.org>
18331 S:      Supported
18332 F:      Documentation/admin-guide/security-bugs.rst
18333
18334 SECURITY SUBSYSTEM
18335 M:      Paul Moore <paul@paul-moore.com>
18336 M:      James Morris <jmorris@namei.org>
18337 M:      "Serge E. Hallyn" <serge@hallyn.com>
18338 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18339 S:      Supported
18340 W:      http://kernsec.org/
18341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18342 F:      security/
18343 X:      security/selinux/
18344
18345 SELINUX SECURITY MODULE
18346 M:      Paul Moore <paul@paul-moore.com>
18347 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18348 M:      Eric Paris <eparis@parisplace.org>
18349 L:      selinux@vger.kernel.org
18350 S:      Supported
18351 W:      https://selinuxproject.org
18352 W:      https://github.com/SELinuxProject
18353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18354 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18355 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18356 F:      Documentation/admin-guide/LSM/SELinux.rst
18357 F:      include/trace/events/avc.h
18358 F:      include/uapi/linux/selinux_netlink.h
18359 F:      scripts/selinux/
18360 F:      security/selinux/
18361
18362 SENSABLE PHANTOM
18363 M:      Jiri Slaby <jirislaby@kernel.org>
18364 S:      Maintained
18365 F:      drivers/misc/phantom.c
18366 F:      include/uapi/linux/phantom.h
18367
18368 SENSEAIR SUNRISE 006-0-0007
18369 M:      Jacopo Mondi <jacopo@jmondi.org>
18370 S:      Maintained
18371 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18372 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18373 F:      drivers/iio/chemical/sunrise_co2.c
18374
18375 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18376 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18377 S:      Maintained
18378 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18379 F:      drivers/iio/chemical/scd30.h
18380 F:      drivers/iio/chemical/scd30_core.c
18381 F:      drivers/iio/chemical/scd30_i2c.c
18382 F:      drivers/iio/chemical/scd30_serial.c
18383
18384 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18385 M:      Roan van Dijk <roan@protonic.nl>
18386 S:      Maintained
18387 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18388 F:      drivers/iio/chemical/scd4x.c
18389
18390 SENSIRION SGP40 GAS SENSOR DRIVER
18391 M:      Andreas Klinger <ak@it-klinger.de>
18392 S:      Maintained
18393 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18394 F:      drivers/iio/chemical/sgp40.c
18395
18396 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18397 M:      Tomasz Duszynski <tduszyns@gmail.com>
18398 S:      Maintained
18399 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18400 F:      drivers/iio/chemical/sps30.c
18401 F:      drivers/iio/chemical/sps30_i2c.c
18402 F:      drivers/iio/chemical/sps30_serial.c
18403
18404 SERIAL DEVICE BUS
18405 M:      Rob Herring <robh@kernel.org>
18406 L:      linux-serial@vger.kernel.org
18407 S:      Maintained
18408 F:      Documentation/devicetree/bindings/serial/serial.yaml
18409 F:      drivers/tty/serdev/
18410 F:      include/linux/serdev.h
18411
18412 SERIAL DRIVERS
18413 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18414 L:      linux-serial@vger.kernel.org
18415 S:      Maintained
18416 F:      Documentation/devicetree/bindings/serial/
18417 F:      drivers/tty/serial/
18418
18419 SERIAL IR RECEIVER
18420 M:      Sean Young <sean@mess.org>
18421 L:      linux-media@vger.kernel.org
18422 S:      Maintained
18423 F:      drivers/media/rc/serial_ir.c
18424
18425 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18426 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18427 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18428 S:      Maintained
18429 F:      Documentation/devicetree/bindings/slimbus/
18430 F:      drivers/slimbus/
18431 F:      include/linux/slimbus.h
18432
18433 SFC NETWORK DRIVER
18434 M:      Edward Cree <ecree.xilinx@gmail.com>
18435 M:      Martin Habets <habetsm.xilinx@gmail.com>
18436 L:      netdev@vger.kernel.org
18437 S:      Supported
18438 F:      drivers/net/ethernet/sfc/
18439
18440 SFF/SFP/SFP+ MODULE SUPPORT
18441 M:      Russell King <linux@armlinux.org.uk>
18442 L:      netdev@vger.kernel.org
18443 S:      Maintained
18444 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18445 F:      drivers/net/phy/phylink.c
18446 F:      drivers/net/phy/sfp*
18447 F:      include/linux/mdio/mdio-i2c.h
18448 F:      include/linux/phylink.h
18449 F:      include/linux/sfp.h
18450 K:      phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
18451
18452 SGI GRU DRIVER
18453 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18454 S:      Maintained
18455 F:      drivers/misc/sgi-gru/
18456
18457 SGI XP/XPC/XPNET DRIVER
18458 M:      Robin Holt <robinmholt@gmail.com>
18459 M:      Steve Wahl <steve.wahl@hpe.com>
18460 R:      Mike Travis <mike.travis@hpe.com>
18461 S:      Maintained
18462 F:      drivers/misc/sgi-xp/
18463
18464 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18465 M:      Karsten Graul <kgraul@linux.ibm.com>
18466 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18467 L:      linux-s390@vger.kernel.org
18468 S:      Supported
18469 W:      http://www.ibm.com/developerworks/linux/linux390/
18470 F:      net/smc/
18471
18472 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18473 M:      Linus Walleij <linus.walleij@linaro.org>
18474 L:      linux-iio@vger.kernel.org
18475 S:      Maintained
18476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18477 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18478 F:      drivers/iio/light/gp2ap002.c
18479
18480 SHARP RJ54N1CB0C SENSOR DRIVER
18481 M:      Jacopo Mondi <jacopo@jmondi.org>
18482 L:      linux-media@vger.kernel.org
18483 S:      Odd fixes
18484 T:      git git://linuxtv.org/media_tree.git
18485 F:      drivers/media/i2c/rj54n1cb0c.c
18486 F:      include/media/i2c/rj54n1cb0c.h
18487
18488 SH_VOU V4L2 OUTPUT DRIVER
18489 L:      linux-media@vger.kernel.org
18490 S:      Orphan
18491 F:      drivers/media/platform/renesas/sh_vou.c
18492 F:      include/media/drv-intf/sh_vou.h
18493
18494 SI2157 MEDIA DRIVER
18495 M:      Antti Palosaari <crope@iki.fi>
18496 L:      linux-media@vger.kernel.org
18497 S:      Maintained
18498 W:      https://linuxtv.org
18499 W:      http://palosaari.fi/linux/
18500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18501 T:      git git://linuxtv.org/anttip/media_tree.git
18502 F:      drivers/media/tuners/si2157*
18503
18504 SI2165 MEDIA DRIVER
18505 M:      Matthias Schwarzott <zzam@gentoo.org>
18506 L:      linux-media@vger.kernel.org
18507 S:      Maintained
18508 W:      https://linuxtv.org
18509 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18510 F:      drivers/media/dvb-frontends/si2165*
18511
18512 SI2168 MEDIA DRIVER
18513 M:      Antti Palosaari <crope@iki.fi>
18514 L:      linux-media@vger.kernel.org
18515 S:      Maintained
18516 W:      https://linuxtv.org
18517 W:      http://palosaari.fi/linux/
18518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18519 T:      git git://linuxtv.org/anttip/media_tree.git
18520 F:      drivers/media/dvb-frontends/si2168*
18521
18522 SI470X FM RADIO RECEIVER I2C DRIVER
18523 M:      Hans Verkuil <hverkuil@xs4all.nl>
18524 L:      linux-media@vger.kernel.org
18525 S:      Odd Fixes
18526 W:      https://linuxtv.org
18527 T:      git git://linuxtv.org/media_tree.git
18528 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18529
18530 SI470X FM RADIO RECEIVER USB DRIVER
18531 M:      Hans Verkuil <hverkuil@xs4all.nl>
18532 L:      linux-media@vger.kernel.org
18533 S:      Maintained
18534 W:      https://linuxtv.org
18535 T:      git git://linuxtv.org/media_tree.git
18536 F:      drivers/media/radio/si470x/radio-si470x-common.c
18537 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18538 F:      drivers/media/radio/si470x/radio-si470x.h
18539
18540 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18541 M:      Eduardo Valentin <edubezval@gmail.com>
18542 L:      linux-media@vger.kernel.org
18543 S:      Odd Fixes
18544 W:      https://linuxtv.org
18545 T:      git git://linuxtv.org/media_tree.git
18546 F:      drivers/media/radio/si4713/si4713.?
18547
18548 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18549 M:      Eduardo Valentin <edubezval@gmail.com>
18550 L:      linux-media@vger.kernel.org
18551 S:      Odd Fixes
18552 W:      https://linuxtv.org
18553 T:      git git://linuxtv.org/media_tree.git
18554 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18555
18556 SI4713 FM RADIO TRANSMITTER USB DRIVER
18557 M:      Hans Verkuil <hverkuil@xs4all.nl>
18558 L:      linux-media@vger.kernel.org
18559 S:      Maintained
18560 W:      https://linuxtv.org
18561 T:      git git://linuxtv.org/media_tree.git
18562 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18563
18564 SIANO DVB DRIVER
18565 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18566 L:      linux-media@vger.kernel.org
18567 S:      Odd fixes
18568 W:      https://linuxtv.org
18569 T:      git git://linuxtv.org/media_tree.git
18570 F:      drivers/media/common/siano/
18571 F:      drivers/media/mmc/siano/
18572 F:      drivers/media/usb/siano/
18573 F:      drivers/media/usb/siano/
18574
18575 SIFIVE DRIVERS
18576 M:      Palmer Dabbelt <palmer@dabbelt.com>
18577 M:      Paul Walmsley <paul.walmsley@sifive.com>
18578 L:      linux-riscv@lists.infradead.org
18579 S:      Supported
18580 T:      git git://github.com/sifive/riscv-linux.git
18581 N:      sifive
18582 K:      [^@]sifive
18583
18584 SIFIVE FU540 SYSTEM-ON-CHIP
18585 M:      Paul Walmsley <paul.walmsley@sifive.com>
18586 M:      Palmer Dabbelt <palmer@dabbelt.com>
18587 L:      linux-riscv@lists.infradead.org
18588 S:      Supported
18589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18590 N:      fu540
18591 K:      fu540
18592
18593 SIFIVE PDMA DRIVER
18594 M:      Green Wan <green.wan@sifive.com>
18595 S:      Maintained
18596 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18597 F:      drivers/dma/sf-pdma/
18598
18599 SILEAD TOUCHSCREEN DRIVER
18600 M:      Hans de Goede <hdegoede@redhat.com>
18601 L:      linux-input@vger.kernel.org
18602 L:      platform-driver-x86@vger.kernel.org
18603 S:      Maintained
18604 F:      drivers/input/touchscreen/silead.c
18605 F:      drivers/platform/x86/touchscreen_dmi.c
18606
18607 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18608 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18609 S:      Supported
18610 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18611 F:      drivers/net/wireless/silabs/wfx/
18612
18613 SILICON MOTION SM712 FRAME BUFFER DRIVER
18614 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18615 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18616 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18617 L:      linux-fbdev@vger.kernel.org
18618 S:      Maintained
18619 F:      Documentation/fb/sm712fb.rst
18620 F:      drivers/video/fbdev/sm712*
18621
18622 SILVACO I3C DUAL-ROLE MASTER
18623 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18624 M:      Conor Culhane <conor.culhane@silvaco.com>
18625 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18626 S:      Maintained
18627 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18628 F:      drivers/i3c/master/svc-i3c-master.c
18629
18630 SIMPLEFB FB DRIVER
18631 M:      Hans de Goede <hdegoede@redhat.com>
18632 L:      linux-fbdev@vger.kernel.org
18633 S:      Maintained
18634 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18635 F:      drivers/video/fbdev/simplefb.c
18636 F:      include/linux/platform_data/simplefb.h
18637
18638 SIMTEC EB110ATX (Chalice CATS)
18639 M:      Simtec Linux Team <linux@simtec.co.uk>
18640 S:      Supported
18641 W:      http://www.simtec.co.uk/products/EB110ATX/
18642
18643 SIMTEC EB2410ITX (BAST)
18644 M:      Simtec Linux Team <linux@simtec.co.uk>
18645 S:      Supported
18646 W:      http://www.simtec.co.uk/products/EB2410ITX/
18647 F:      arch/arm/mach-s3c/bast-ide.c
18648 F:      arch/arm/mach-s3c/bast-irq.c
18649 F:      arch/arm/mach-s3c/mach-bast.c
18650
18651 SIOX
18652 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18653 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18654 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18655 S:      Supported
18656 F:      drivers/gpio/gpio-siox.c
18657 F:      drivers/siox/*
18658 F:      include/trace/events/siox.h
18659
18660 SIPHASH PRF ROUTINES
18661 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18662 S:      Maintained
18663 F:      include/linux/siphash.h
18664 F:      lib/siphash.c
18665 F:      lib/test_siphash.c
18666
18667 SIS 190 ETHERNET DRIVER
18668 M:      Francois Romieu <romieu@fr.zoreil.com>
18669 L:      netdev@vger.kernel.org
18670 S:      Maintained
18671 F:      drivers/net/ethernet/sis/sis190.c
18672
18673 SIS 900/7016 FAST ETHERNET DRIVER
18674 M:      Daniele Venzano <venza@brownhat.org>
18675 L:      netdev@vger.kernel.org
18676 S:      Maintained
18677 W:      http://www.brownhat.org/sis900.html
18678 F:      drivers/net/ethernet/sis/sis900.*
18679
18680 SIS FRAMEBUFFER DRIVER
18681 M:      Thomas Winischhofer <thomas@winischhofer.net>
18682 S:      Maintained
18683 W:      http://www.winischhofer.net/linuxsisvga.shtml
18684 F:      Documentation/fb/sisfb.rst
18685 F:      drivers/video/fbdev/sis/
18686 F:      include/video/sisfb.h
18687
18688 SIS I2C TOUCHSCREEN DRIVER
18689 M:      Mika Penttilä <mika.penttila@nextfour.com>
18690 L:      linux-input@vger.kernel.org
18691 S:      Maintained
18692 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18693 F:      drivers/input/touchscreen/sis_i2c.c
18694
18695 SIS USB2VGA DRIVER
18696 M:      Thomas Winischhofer <thomas@winischhofer.net>
18697 S:      Maintained
18698 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18699 F:      drivers/usb/misc/sisusbvga/
18700
18701 SL28 CPLD MFD DRIVER
18702 M:      Michael Walle <michael@walle.cc>
18703 S:      Maintained
18704 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18705 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18706 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18707 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18708 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18709 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18710 F:      drivers/gpio/gpio-sl28cpld.c
18711 F:      drivers/hwmon/sl28cpld-hwmon.c
18712 F:      drivers/irqchip/irq-sl28cpld.c
18713 F:      drivers/pwm/pwm-sl28cpld.c
18714 F:      drivers/watchdog/sl28cpld_wdt.c
18715
18716 SLAB ALLOCATOR
18717 M:      Christoph Lameter <cl@linux.com>
18718 M:      Pekka Enberg <penberg@kernel.org>
18719 M:      David Rientjes <rientjes@google.com>
18720 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18721 M:      Andrew Morton <akpm@linux-foundation.org>
18722 M:      Vlastimil Babka <vbabka@suse.cz>
18723 R:      Roman Gushchin <roman.gushchin@linux.dev>
18724 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18725 L:      linux-mm@kvack.org
18726 S:      Maintained
18727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18728 F:      include/linux/sl?b*.h
18729 F:      mm/sl?b*
18730
18731 SLCAN CAN NETWORK DRIVER
18732 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
18733 L:      linux-can@vger.kernel.org
18734 S:      Maintained
18735 F:      drivers/net/can/slcan/
18736
18737 SLEEPABLE READ-COPY UPDATE (SRCU)
18738 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18739 M:      "Paul E. McKenney" <paulmck@kernel.org>
18740 M:      Josh Triplett <josh@joshtriplett.org>
18741 R:      Steven Rostedt <rostedt@goodmis.org>
18742 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18743 L:      rcu@vger.kernel.org
18744 S:      Supported
18745 W:      http://www.rdrop.com/users/paulmck/RCU/
18746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18747 F:      include/linux/srcu*.h
18748 F:      kernel/rcu/srcu*.c
18749
18750 SMACK SECURITY MODULE
18751 M:      Casey Schaufler <casey@schaufler-ca.com>
18752 L:      linux-security-module@vger.kernel.org
18753 S:      Maintained
18754 W:      http://schaufler-ca.com
18755 T:      git git://github.com/cschaufler/smack-next
18756 F:      Documentation/admin-guide/LSM/Smack.rst
18757 F:      security/smack/
18758
18759 SMC91x ETHERNET DRIVER
18760 M:      Nicolas Pitre <nico@fluxnic.net>
18761 S:      Odd Fixes
18762 F:      drivers/net/ethernet/smsc/smc91x.*
18763
18764 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18765 M:      Mark Rutland <mark.rutland@arm.com>
18766 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
18767 M:      Sudeep Holla <sudeep.holla@arm.com>
18768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18769 S:      Maintained
18770 F:      drivers/firmware/smccc/
18771 F:      include/linux/arm-smccc.h
18772
18773 SMM665 HARDWARE MONITOR DRIVER
18774 M:      Guenter Roeck <linux@roeck-us.net>
18775 L:      linux-hwmon@vger.kernel.org
18776 S:      Maintained
18777 F:      Documentation/hwmon/smm665.rst
18778 F:      drivers/hwmon/smm665.c
18779
18780 SMSC EMC2103 HARDWARE MONITOR DRIVER
18781 M:      Steve Glendinning <steve.glendinning@shawell.net>
18782 L:      linux-hwmon@vger.kernel.org
18783 S:      Maintained
18784 F:      Documentation/hwmon/emc2103.rst
18785 F:      drivers/hwmon/emc2103.c
18786
18787 SMSC SCH5627 HARDWARE MONITOR DRIVER
18788 M:      Hans de Goede <hdegoede@redhat.com>
18789 L:      linux-hwmon@vger.kernel.org
18790 S:      Supported
18791 F:      Documentation/hwmon/sch5627.rst
18792 F:      drivers/hwmon/sch5627.c
18793
18794 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18795 M:      Steve Glendinning <steve.glendinning@shawell.net>
18796 L:      linux-fbdev@vger.kernel.org
18797 S:      Maintained
18798 F:      drivers/video/fbdev/smscufx.c
18799
18800 SMSC47B397 HARDWARE MONITOR DRIVER
18801 M:      Jean Delvare <jdelvare@suse.com>
18802 L:      linux-hwmon@vger.kernel.org
18803 S:      Maintained
18804 F:      Documentation/hwmon/smsc47b397.rst
18805 F:      drivers/hwmon/smsc47b397.c
18806
18807 SMSC911x ETHERNET DRIVER
18808 M:      Steve Glendinning <steve.glendinning@shawell.net>
18809 L:      netdev@vger.kernel.org
18810 S:      Maintained
18811 F:      drivers/net/ethernet/smsc/smsc911x.*
18812 F:      include/linux/smsc911x.h
18813
18814 SMSC9420 PCI ETHERNET DRIVER
18815 M:      Steve Glendinning <steve.glendinning@shawell.net>
18816 L:      netdev@vger.kernel.org
18817 S:      Maintained
18818 F:      drivers/net/ethernet/smsc/smsc9420.*
18819
18820 SOCIONEXT (SNI) AVE NETWORK DRIVER
18821 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18822 L:      netdev@vger.kernel.org
18823 S:      Maintained
18824 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18825 F:      drivers/net/ethernet/socionext/sni_ave.c
18826
18827 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18828 M:      Jassi Brar <jaswinder.singh@linaro.org>
18829 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18830 L:      netdev@vger.kernel.org
18831 S:      Maintained
18832 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18833 F:      drivers/net/ethernet/socionext/netsec.c
18834
18835 SOCIONEXT (SNI) Synquacer SPI DRIVER
18836 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18837 M:      Jassi Brar <jaswinder.singh@linaro.org>
18838 L:      linux-spi@vger.kernel.org
18839 S:      Maintained
18840 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18841 F:      drivers/spi/spi-synquacer.c
18842
18843 SOCIONEXT SYNQUACER I2C DRIVER
18844 M:      Ard Biesheuvel <ardb@kernel.org>
18845 L:      linux-i2c@vger.kernel.org
18846 S:      Maintained
18847 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18848 F:      drivers/i2c/busses/i2c-synquacer.c
18849
18850 SOCIONEXT UNIPHIER SOUND DRIVER
18851 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18852 S:      Orphan
18853 F:      sound/soc/uniphier/
18854
18855 SOEKRIS NET48XX LED SUPPORT
18856 M:      Chris Boot <bootc@bootc.net>
18857 S:      Maintained
18858 F:      drivers/leds/leds-net48xx.c
18859
18860 SOFT-IWARP DRIVER (siw)
18861 M:      Bernard Metzler <bmt@zurich.ibm.com>
18862 L:      linux-rdma@vger.kernel.org
18863 S:      Supported
18864 F:      drivers/infiniband/sw/siw/
18865 F:      include/uapi/rdma/siw-abi.h
18866
18867 SOFT-ROCE DRIVER (rxe)
18868 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18869 L:      linux-rdma@vger.kernel.org
18870 S:      Supported
18871 F:      drivers/infiniband/sw/rxe/
18872 F:      include/uapi/rdma/rdma_user_rxe.h
18873
18874 SOFTLOGIC 6x10 MPEG CODEC
18875 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18876 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18877 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18878 M:      Ismael Luceno <ismael@iodev.co.uk>
18879 L:      linux-media@vger.kernel.org
18880 S:      Supported
18881 F:      drivers/media/pci/solo6x10/
18882
18883 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18884 M:      James Morse <james.morse@arm.com>
18885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18886 S:      Maintained
18887 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18888 F:      drivers/firmware/arm_sdei.c
18889 F:      include/linux/arm_sdei.h
18890 F:      include/uapi/linux/arm_sdei.h
18891
18892 SOFTWARE NODES AND DEVICE PROPERTIES
18893 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18894 R:      Daniel Scally <djrscally@gmail.com>
18895 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18896 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18897 L:      linux-acpi@vger.kernel.org
18898 S:      Maintained
18899 F:      drivers/base/property.c
18900 F:      drivers/base/swnode.c
18901 F:      include/linux/fwnode.h
18902 F:      include/linux/property.h
18903
18904 SOFTWARE RAID (Multiple Disks) SUPPORT
18905 M:      Song Liu <song@kernel.org>
18906 L:      linux-raid@vger.kernel.org
18907 S:      Supported
18908 Q:      https://patchwork.kernel.org/project/linux-raid/list/
18909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18910 F:      drivers/md/Kconfig
18911 F:      drivers/md/Makefile
18912 F:      drivers/md/md*
18913 F:      drivers/md/raid*
18914 F:      include/linux/raid/
18915 F:      include/uapi/linux/raid/
18916
18917 SOLIDRUN CLEARFOG SUPPORT
18918 M:      Russell King <linux@armlinux.org.uk>
18919 S:      Maintained
18920 F:      arch/arm/boot/dts/armada-388-clearfog*
18921 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18922
18923 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18924 M:      Russell King <linux@armlinux.org.uk>
18925 S:      Maintained
18926 F:      arch/arm/boot/dts/imx6*-cubox-i*
18927 F:      arch/arm/boot/dts/imx6*-hummingboard*
18928 F:      arch/arm/boot/dts/imx6*-sr-*
18929
18930 SONIC NETWORK DRIVER
18931 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18932 L:      netdev@vger.kernel.org
18933 S:      Maintained
18934 F:      drivers/net/ethernet/natsemi/sonic.*
18935
18936 SONICS SILICON BACKPLANE DRIVER (SSB)
18937 M:      Michael Buesch <m@bues.ch>
18938 L:      linux-wireless@vger.kernel.org
18939 S:      Maintained
18940 F:      drivers/ssb/
18941 F:      include/linux/ssb/
18942
18943 SONY IMX208 SENSOR DRIVER
18944 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18945 L:      linux-media@vger.kernel.org
18946 S:      Maintained
18947 T:      git git://linuxtv.org/media_tree.git
18948 F:      drivers/media/i2c/imx208.c
18949
18950 SONY IMX214 SENSOR DRIVER
18951 M:      Ricardo Ribalda <ribalda@kernel.org>
18952 L:      linux-media@vger.kernel.org
18953 S:      Maintained
18954 T:      git git://linuxtv.org/media_tree.git
18955 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18956 F:      drivers/media/i2c/imx214.c
18957
18958 SONY IMX219 SENSOR DRIVER
18959 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18960 L:      linux-media@vger.kernel.org
18961 S:      Maintained
18962 T:      git git://linuxtv.org/media_tree.git
18963 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18964 F:      drivers/media/i2c/imx219.c
18965
18966 SONY IMX258 SENSOR DRIVER
18967 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18968 L:      linux-media@vger.kernel.org
18969 S:      Maintained
18970 T:      git git://linuxtv.org/media_tree.git
18971 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18972 F:      drivers/media/i2c/imx258.c
18973
18974 SONY IMX274 SENSOR DRIVER
18975 M:      Leon Luo <leonl@leopardimaging.com>
18976 L:      linux-media@vger.kernel.org
18977 S:      Maintained
18978 T:      git git://linuxtv.org/media_tree.git
18979 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18980 F:      drivers/media/i2c/imx274.c
18981
18982 SONY IMX290 SENSOR DRIVER
18983 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18984 L:      linux-media@vger.kernel.org
18985 S:      Maintained
18986 T:      git git://linuxtv.org/media_tree.git
18987 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18988 F:      drivers/media/i2c/imx290.c
18989
18990 SONY IMX319 SENSOR DRIVER
18991 M:      Bingbu Cao <bingbu.cao@intel.com>
18992 L:      linux-media@vger.kernel.org
18993 S:      Maintained
18994 T:      git git://linuxtv.org/media_tree.git
18995 F:      drivers/media/i2c/imx319.c
18996
18997 SONY IMX334 SENSOR DRIVER
18998 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18999 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19000 L:      linux-media@vger.kernel.org
19001 S:      Maintained
19002 T:      git git://linuxtv.org/media_tree.git
19003 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19004 F:      drivers/media/i2c/imx334.c
19005
19006 SONY IMX335 SENSOR DRIVER
19007 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19008 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19009 L:      linux-media@vger.kernel.org
19010 S:      Maintained
19011 T:      git git://linuxtv.org/media_tree.git
19012 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19013 F:      drivers/media/i2c/imx335.c
19014
19015 SONY IMX355 SENSOR DRIVER
19016 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19017 L:      linux-media@vger.kernel.org
19018 S:      Maintained
19019 T:      git git://linuxtv.org/media_tree.git
19020 F:      drivers/media/i2c/imx355.c
19021
19022 SONY IMX412 SENSOR DRIVER
19023 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19024 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19025 L:      linux-media@vger.kernel.org
19026 S:      Maintained
19027 T:      git git://linuxtv.org/media_tree.git
19028 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19029 F:      drivers/media/i2c/imx412.c
19030
19031 SONY MEMORYSTICK SUBSYSTEM
19032 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19033 M:      Alex Dubov <oakad@yahoo.com>
19034 M:      Ulf Hansson <ulf.hansson@linaro.org>
19035 L:      linux-mmc@vger.kernel.org
19036 S:      Maintained
19037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19038 F:      drivers/memstick/
19039 F:      include/linux/memstick.h
19040
19041 SONY VAIO CONTROL DEVICE DRIVER
19042 M:      Mattia Dongili <malattia@linux.it>
19043 L:      platform-driver-x86@vger.kernel.org
19044 S:      Maintained
19045 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19046 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19047 F:      drivers/char/sonypi.c
19048 F:      drivers/platform/x86/sony-laptop.c
19049 F:      include/linux/sony-laptop.h
19050
19051 SOUND
19052 M:      Jaroslav Kysela <perex@perex.cz>
19053 M:      Takashi Iwai <tiwai@suse.com>
19054 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19055 S:      Maintained
19056 W:      http://www.alsa-project.org/
19057 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19059 F:      Documentation/sound/
19060 F:      include/sound/
19061 F:      include/uapi/sound/
19062 F:      sound/
19063 F:      tools/testing/selftests/alsa
19064
19065 SOUND - COMPRESSED AUDIO
19066 M:      Vinod Koul <vkoul@kernel.org>
19067 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19068 S:      Supported
19069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19070 F:      Documentation/sound/designs/compress-offload.rst
19071 F:      include/sound/compress_driver.h
19072 F:      include/uapi/sound/compress_*
19073 F:      sound/core/compress_offload.c
19074 F:      sound/soc/soc-compress.c
19075
19076 SOUND - DMAENGINE HELPERS
19077 M:      Lars-Peter Clausen <lars@metafoo.de>
19078 S:      Supported
19079 F:      include/sound/dmaengine_pcm.h
19080 F:      sound/core/pcm_dmaengine.c
19081 F:      sound/soc/soc-generic-dmaengine-pcm.c
19082
19083 SOUND - ALSA SELFTESTS
19084 M:      Mark Brown <broonie@kernel.org>
19085 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19086 L:      linux-kselftest@vger.kernel.org
19087 S:      Supported
19088 F:      tools/testing/selftests/alsa
19089
19090 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19091 M:      Liam Girdwood <lgirdwood@gmail.com>
19092 M:      Mark Brown <broonie@kernel.org>
19093 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19094 S:      Supported
19095 W:      http://alsa-project.org/main/index.php/ASoC
19096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19097 F:      Documentation/devicetree/bindings/sound/
19098 F:      Documentation/sound/soc/
19099 F:      include/dt-bindings/sound/
19100 F:      include/sound/soc*
19101 F:      sound/soc/
19102
19103 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19104 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19105 M:      Liam Girdwood <lgirdwood@gmail.com>
19106 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19107 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19108 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19109 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19110 M:      Daniel Baluta <daniel.baluta@nxp.com>
19111 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19112 S:      Supported
19113 W:      https://github.com/thesofproject/linux/
19114 F:      sound/soc/sof/
19115
19116 SOUNDWIRE SUBSYSTEM
19117 M:      Vinod Koul <vkoul@kernel.org>
19118 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19119 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19120 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19121 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19122 S:      Supported
19123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19124 F:      Documentation/driver-api/soundwire/
19125 F:      drivers/soundwire/
19126 F:      include/linux/soundwire/
19127
19128 SP2 MEDIA DRIVER
19129 M:      Olli Salonen <olli.salonen@iki.fi>
19130 L:      linux-media@vger.kernel.org
19131 S:      Maintained
19132 W:      https://linuxtv.org
19133 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19134 F:      drivers/media/dvb-frontends/sp2*
19135
19136 SPARC + UltraSPARC (sparc/sparc64)
19137 M:      "David S. Miller" <davem@davemloft.net>
19138 L:      sparclinux@vger.kernel.org
19139 S:      Maintained
19140 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19143 F:      arch/sparc/
19144 F:      drivers/sbus/
19145
19146 SPARC SERIAL DRIVERS
19147 M:      "David S. Miller" <davem@davemloft.net>
19148 L:      sparclinux@vger.kernel.org
19149 S:      Maintained
19150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19152 F:      drivers/tty/serial/suncore.c
19153 F:      drivers/tty/serial/sunhv.c
19154 F:      drivers/tty/serial/sunsab.c
19155 F:      drivers/tty/serial/sunsab.h
19156 F:      drivers/tty/serial/sunsu.c
19157 F:      drivers/tty/serial/sunzilog.c
19158 F:      drivers/tty/serial/sunzilog.h
19159 F:      drivers/tty/vcc.c
19160 F:      include/linux/sunserialcore.h
19161
19162 SPARSE CHECKER
19163 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19164 L:      linux-sparse@vger.kernel.org
19165 S:      Maintained
19166 W:      https://sparse.docs.kernel.org/
19167 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19168 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19169 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19170 F:      include/linux/compiler.h
19171
19172 SPEAKUP CONSOLE SPEECH DRIVER
19173 M:      William Hubbs <w.d.hubbs@gmail.com>
19174 M:      Chris Brannon <chris@the-brannons.com>
19175 M:      Kirk Reiser <kirk@reisers.ca>
19176 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19177 L:      speakup@linux-speakup.org
19178 S:      Odd Fixes
19179 W:      http://www.linux-speakup.org/
19180 W:      https://github.com/linux-speakup/speakup
19181 B:      https://github.com/linux-speakup/speakup/issues
19182 F:      drivers/accessibility/speakup/
19183
19184 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19185 M:      Viresh Kumar <vireshk@kernel.org>
19186 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19187 M:      soc@kernel.org
19188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19189 S:      Maintained
19190 W:      http://www.st.com/spear
19191 F:      arch/arm/boot/dts/spear*
19192 F:      arch/arm/mach-spear/
19193 F:      drivers/clk/spear/
19194 F:      drivers/pinctrl/spear/
19195
19196 SPI NOR SUBSYSTEM
19197 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
19198 M:      Pratyush Yadav <pratyush@kernel.org>
19199 R:      Michael Walle <michael@walle.cc>
19200 L:      linux-mtd@lists.infradead.org
19201 S:      Maintained
19202 W:      http://www.linux-mtd.infradead.org/
19203 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19204 C:      irc://irc.oftc.net/mtd
19205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19206 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19207 F:      drivers/mtd/spi-nor/
19208 F:      include/linux/mtd/spi-nor.h
19209
19210 SPI SUBSYSTEM
19211 M:      Mark Brown <broonie@kernel.org>
19212 L:      linux-spi@vger.kernel.org
19213 S:      Maintained
19214 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19216 F:      Documentation/devicetree/bindings/spi/
19217 F:      Documentation/spi/
19218 F:      drivers/spi/
19219 F:      include/linux/spi/
19220 F:      include/uapi/linux/spi/
19221 F:      tools/spi/
19222
19223 SPIDERNET NETWORK DRIVER for CELL
19224 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19225 M:      Geoff Levand <geoff@infradead.org>
19226 L:      netdev@vger.kernel.org
19227 L:      linuxppc-dev@lists.ozlabs.org
19228 S:      Maintained
19229 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19230 F:      drivers/net/ethernet/toshiba/spider_net*
19231
19232 SPMI SUBSYSTEM
19233 M:      Stephen Boyd <sboyd@kernel.org>
19234 L:      linux-kernel@vger.kernel.org
19235 S:      Maintained
19236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19237 F:      Documentation/devicetree/bindings/spmi/
19238 F:      drivers/spmi/
19239 F:      include/dt-bindings/spmi/spmi.h
19240 F:      include/linux/spmi.h
19241 F:      include/trace/events/spmi.h
19242
19243 SPU FILE SYSTEM
19244 M:      Jeremy Kerr <jk@ozlabs.org>
19245 L:      linuxppc-dev@lists.ozlabs.org
19246 S:      Supported
19247 W:      http://www.ibm.com/developerworks/power/cell/
19248 F:      Documentation/filesystems/spufs/spufs.rst
19249 F:      arch/powerpc/platforms/cell/spufs/
19250
19251 SQUASHFS FILE SYSTEM
19252 M:      Phillip Lougher <phillip@squashfs.org.uk>
19253 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19254 S:      Maintained
19255 W:      http://squashfs.org.uk
19256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19257 F:      Documentation/filesystems/squashfs.rst
19258 F:      fs/squashfs/
19259
19260 SRM (Alpha) environment access
19261 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19262 S:      Maintained
19263 F:      arch/alpha/kernel/srm_env.c
19264
19265 ST LSM6DSx IMU IIO DRIVER
19266 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19267 L:      linux-iio@vger.kernel.org
19268 S:      Maintained
19269 W:      http://www.st.com/
19270 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19271 F:      drivers/iio/imu/st_lsm6dsx/
19272
19273 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19274 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19275 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19276 L:      linux-media@vger.kernel.org
19277 S:      Maintained
19278 T:      git git://linuxtv.org/media_tree.git
19279 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
19280 F:      drivers/media/i2c/st-mipid02.c
19281
19282 ST STM32 I2C/SMBUS DRIVER
19283 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19284 M:      Alain Volmat <alain.volmat@foss.st.com>
19285 L:      linux-i2c@vger.kernel.org
19286 S:      Maintained
19287 F:      drivers/i2c/busses/i2c-stm32*
19288
19289 ST STM32 SPI DRIVER
19290 M:      Alain Volmat <alain.volmat@foss.st.com>
19291 L:      linux-spi@vger.kernel.org
19292 S:      Maintained
19293 F:      drivers/spi/spi-stm32.c
19294
19295 ST STPDDC60 DRIVER
19296 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19297 L:      linux-hwmon@vger.kernel.org
19298 S:      Maintained
19299 F:      Documentation/hwmon/stpddc60.rst
19300 F:      drivers/hwmon/pmbus/stpddc60.c
19301
19302 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19303 M:      Song Qiang <songqiang1304521@gmail.com>
19304 L:      linux-iio@vger.kernel.org
19305 S:      Maintained
19306 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19307 F:      drivers/iio/proximity/vl53l0x-i2c.c
19308
19309 STABLE BRANCH
19310 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19311 M:      Sasha Levin <sashal@kernel.org>
19312 L:      stable@vger.kernel.org
19313 S:      Supported
19314 F:      Documentation/process/stable-kernel-rules.rst
19315
19316 STAGING - ATOMISP DRIVER
19317 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19318 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19319 L:      linux-media@vger.kernel.org
19320 S:      Maintained
19321 F:      drivers/staging/media/atomisp/
19322
19323 STAGING - FIELDBUS SUBSYSTEM
19324 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19325 S:      Maintained
19326 F:      drivers/staging/fieldbus/*
19327 F:      drivers/staging/fieldbus/Documentation/
19328
19329 STAGING - HMS ANYBUS-S BUS
19330 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19331 S:      Maintained
19332 F:      drivers/staging/fieldbus/anybuss/
19333
19334 STAGING - INDUSTRIAL IO
19335 M:      Jonathan Cameron <jic23@kernel.org>
19336 L:      linux-iio@vger.kernel.org
19337 S:      Odd Fixes
19338 F:      Documentation/devicetree/bindings/staging/iio/
19339 F:      drivers/staging/iio/
19340
19341 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19342 M:      Marc Dietrich <marvin24@gmx.de>
19343 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19344 L:      linux-tegra@vger.kernel.org
19345 S:      Maintained
19346 F:      drivers/staging/nvec/
19347
19348 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19349 M:      Jens Frederich <jfrederich@gmail.com>
19350 M:      Jon Nettleton <jon.nettleton@gmail.com>
19351 S:      Maintained
19352 W:      http://wiki.laptop.org/go/DCON
19353 F:      drivers/staging/olpc_dcon/
19354
19355 STAGING - REALTEK RTL8188EU DRIVERS
19356 M:      Larry Finger <Larry.Finger@lwfinger.net>
19357 M:      Phillip Potter <phil@philpotter.co.uk>
19358 R:      Pavel Skripkin <paskripkin@gmail.com>
19359 S:      Supported
19360 F:      drivers/staging/r8188eu/
19361
19362 STAGING - REALTEK RTL8712U DRIVERS
19363 M:      Larry Finger <Larry.Finger@lwfinger.net>
19364 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19365 S:      Odd Fixes
19366 F:      drivers/staging/rtl8712/
19367
19368 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19369 M:      Michael Hennerich <michael.hennerich@analog.com>
19370 L:      linux-fbdev@vger.kernel.org
19371 S:      Supported
19372 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19373 F:      drivers/staging/fbtft/fb_seps525.c
19374
19375 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19376 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19377 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19378 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19379 L:      linux-fbdev@vger.kernel.org
19380 S:      Maintained
19381 F:      drivers/staging/sm750fb/
19382
19383 STAGING - VIA VT665X DRIVERS
19384 M:      Forest Bond <forest@alittletooquiet.net>
19385 S:      Odd Fixes
19386 F:      drivers/staging/vt665?/
19387
19388 STAGING SUBSYSTEM
19389 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19390 L:      linux-staging@lists.linux.dev
19391 S:      Supported
19392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19393 F:      drivers/staging/
19394
19395 STARFIRE/DURALAN NETWORK DRIVER
19396 M:      Ion Badulescu <ionut@badula.org>
19397 S:      Odd Fixes
19398 F:      drivers/net/ethernet/adaptec/starfire*
19399
19400 STARFIVE JH7100 CLOCK DRIVERS
19401 M:      Emil Renner Berthing <kernel@esmil.dk>
19402 S:      Maintained
19403 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19404 F:      drivers/clk/starfive/clk-starfive-jh7100*
19405 F:      include/dt-bindings/clock/starfive-jh7100*.h
19406
19407 STARFIVE JH7100 PINCTRL DRIVER
19408 M:      Emil Renner Berthing <kernel@esmil.dk>
19409 L:      linux-gpio@vger.kernel.org
19410 S:      Maintained
19411 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19412 F:      drivers/pinctrl/pinctrl-starfive.c
19413 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
19414
19415 STARFIVE JH7100 RESET CONTROLLER DRIVER
19416 M:      Emil Renner Berthing <kernel@esmil.dk>
19417 S:      Maintained
19418 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19419 F:      drivers/reset/reset-starfive-jh7100.c
19420 F:      include/dt-bindings/reset/starfive-jh7100.h
19421
19422 STATIC BRANCH/CALL
19423 M:      Peter Zijlstra <peterz@infradead.org>
19424 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19425 M:      Jason Baron <jbaron@akamai.com>
19426 R:      Steven Rostedt <rostedt@goodmis.org>
19427 R:      Ard Biesheuvel <ardb@kernel.org>
19428 S:      Supported
19429 F:      arch/*/include/asm/jump_label*.h
19430 F:      arch/*/include/asm/static_call*.h
19431 F:      arch/*/kernel/jump_label.c
19432 F:      arch/*/kernel/static_call.c
19433 F:      include/linux/jump_label*.h
19434 F:      include/linux/static_call*.h
19435 F:      kernel/jump_label.c
19436 F:      kernel/static_call.c
19437
19438 STI AUDIO (ASoC) DRIVERS
19439 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19440 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19441 S:      Maintained
19442 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19443 F:      sound/soc/sti/
19444
19445 STI CEC DRIVER
19446 M:      Alain Volmat <alain.volmat@foss.st.com>
19447 S:      Maintained
19448 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19449 F:      drivers/media/cec/platform/sti/
19450
19451 STK1160 USB VIDEO CAPTURE DRIVER
19452 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19453 L:      linux-media@vger.kernel.org
19454 S:      Maintained
19455 T:      git git://linuxtv.org/media_tree.git
19456 F:      drivers/media/usb/stk1160/
19457
19458 STM32 AUDIO (ASoC) DRIVERS
19459 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19460 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19461 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19462 S:      Maintained
19463 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19464 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19465 F:      sound/soc/stm/
19466
19467 STM32 TIMER/LPTIMER DRIVERS
19468 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19469 S:      Maintained
19470 F:      Documentation/ABI/testing/*timer-stm32
19471 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19472 F:      drivers/*/stm32-*timer*
19473 F:      drivers/pwm/pwm-stm32*
19474 F:      include/linux/*/stm32-*tim*
19475
19476 STMMAC ETHERNET DRIVER
19477 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19478 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19479 M:      Jose Abreu <joabreu@synopsys.com>
19480 L:      netdev@vger.kernel.org
19481 S:      Supported
19482 W:      http://www.stlinux.com
19483 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19484 F:      drivers/net/ethernet/stmicro/stmmac/
19485
19486 SUN3/3X
19487 M:      Sam Creasey <sammy@sammy.net>
19488 S:      Maintained
19489 W:      http://sammy.net/sun3/
19490 F:      arch/m68k/include/asm/sun3*
19491 F:      arch/m68k/kernel/*sun3*
19492 F:      arch/m68k/sun3*/
19493 F:      drivers/net/ethernet/i825xx/sun3*
19494
19495 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19496 M:      Hans de Goede <hdegoede@redhat.com>
19497 L:      linux-input@vger.kernel.org
19498 S:      Maintained
19499 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19500 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19501
19502 SUNDANCE NETWORK DRIVER
19503 M:      Denis Kirjanov <kda@linux-powerpc.org>
19504 L:      netdev@vger.kernel.org
19505 S:      Maintained
19506 F:      drivers/net/ethernet/dlink/sundance.c
19507
19508 SUNPLUS ETHERNET DRIVER
19509 M:      Wells Lu <wellslutw@gmail.com>
19510 L:      netdev@vger.kernel.org
19511 S:      Maintained
19512 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19513 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19514 F:      drivers/net/ethernet/sunplus/
19515
19516 SUNPLUS OCOTP DRIVER
19517 M:      Vincent Shih <vincent.sunplus@gmail.com>
19518 S:      Maintained
19519 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19520 F:      drivers/nvmem/sunplus-ocotp.c
19521
19522 SUNPLUS PWM DRIVER
19523 M:      Hammer Hsieh <hammerh0314@gmail.com>
19524 S:      Maintained
19525 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19526 F:      drivers/pwm/pwm-sunplus.c
19527
19528 SUNPLUS RTC DRIVER
19529 M:      Vincent Shih <vincent.sunplus@gmail.com>
19530 L:      linux-rtc@vger.kernel.org
19531 S:      Maintained
19532 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19533 F:      drivers/rtc/rtc-sunplus.c
19534
19535 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19536 M:      Li-hao Kuo <lhjeff911@gmail.com>
19537 L:      linux-spi@vger.kernel.org
19538 S:      Maintained
19539 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19540 F:      drivers/spi/spi-sunplus-sp7021.c
19541
19542 SUNPLUS UART DRIVER
19543 M:      Hammer Hsieh <hammerh0314@gmail.com>
19544 S:      Maintained
19545 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19546 F:      drivers/tty/serial/sunplus-uart.c
19547
19548 SUNPLUS WATCHDOG DRIVER
19549 M:      Xiantao Hu <xt.hu@cqplus1.com>
19550 L:      linux-watchdog@vger.kernel.org
19551 S:      Maintained
19552 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19553 F:      drivers/watchdog/sunplus_wdt.c
19554
19555 SUPERH
19556 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19557 M:      Rich Felker <dalias@libc.org>
19558 L:      linux-sh@vger.kernel.org
19559 S:      Maintained
19560 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19561 F:      Documentation/sh/
19562 F:      arch/sh/
19563 F:      drivers/sh/
19564
19565 SUSPEND TO RAM
19566 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19567 M:      Len Brown <len.brown@intel.com>
19568 M:      Pavel Machek <pavel@ucw.cz>
19569 L:      linux-pm@vger.kernel.org
19570 S:      Supported
19571 B:      https://bugzilla.kernel.org
19572 F:      Documentation/power/
19573 F:      arch/x86/kernel/acpi/
19574 F:      drivers/base/power/
19575 F:      include/linux/freezer.h
19576 F:      include/linux/pm.h
19577 F:      include/linux/suspend.h
19578 F:      kernel/power/
19579
19580 SVGA HANDLING
19581 M:      Martin Mares <mj@ucw.cz>
19582 L:      linux-video@atrey.karlin.mff.cuni.cz
19583 S:      Maintained
19584 F:      Documentation/admin-guide/svga.rst
19585 F:      arch/x86/boot/video*
19586
19587 SWIOTLB SUBSYSTEM
19588 M:      Christoph Hellwig <hch@infradead.org>
19589 L:      iommu@lists.linux.dev
19590 S:      Supported
19591 W:      http://git.infradead.org/users/hch/dma-mapping.git
19592 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19593 F:      arch/*/kernel/pci-swiotlb.c
19594 F:      include/linux/swiotlb.h
19595 F:      kernel/dma/swiotlb.c
19596
19597 SWITCHDEV
19598 M:      Jiri Pirko <jiri@resnulli.us>
19599 M:      Ivan Vecera <ivecera@redhat.com>
19600 L:      netdev@vger.kernel.org
19601 S:      Supported
19602 F:      include/net/switchdev.h
19603 F:      net/switchdev/
19604
19605 SY8106A REGULATOR DRIVER
19606 M:      Icenowy Zheng <icenowy@aosc.io>
19607 S:      Maintained
19608 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19609 F:      drivers/regulator/sy8106a-regulator.c
19610
19611 SYNC FILE FRAMEWORK
19612 M:      Sumit Semwal <sumit.semwal@linaro.org>
19613 R:      Gustavo Padovan <gustavo@padovan.org>
19614 L:      linux-media@vger.kernel.org
19615 L:      dri-devel@lists.freedesktop.org
19616 S:      Maintained
19617 T:      git git://anongit.freedesktop.org/drm/drm-misc
19618 F:      Documentation/driver-api/sync_file.rst
19619 F:      drivers/dma-buf/dma-fence*
19620 F:      drivers/dma-buf/sw_sync.c
19621 F:      drivers/dma-buf/sync_*
19622 F:      include/linux/sync_file.h
19623 F:      include/uapi/linux/sync_file.h
19624
19625 SYNOPSYS ARC ARCHITECTURE
19626 M:      Vineet Gupta <vgupta@kernel.org>
19627 L:      linux-snps-arc@lists.infradead.org
19628 S:      Supported
19629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19630 F:      Documentation/arc/
19631 F:      Documentation/devicetree/bindings/arc/*
19632 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19633 F:      arch/arc/
19634 F:      drivers/clocksource/arc_timer.c
19635 F:      drivers/tty/serial/arc_uart.c
19636
19637 SYNOPSYS ARC HSDK SDP pll clock driver
19638 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19639 S:      Supported
19640 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19641 F:      drivers/clk/clk-hsdk-pll.c
19642
19643 SYNOPSYS ARC SDP clock driver
19644 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19645 S:      Supported
19646 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19647 F:      drivers/clk/axs10x/*
19648
19649 SYNOPSYS ARC SDP platform support
19650 M:      Alexey Brodkin <abrodkin@synopsys.com>
19651 S:      Supported
19652 F:      Documentation/devicetree/bindings/arc/axs10*
19653 F:      arch/arc/boot/dts/ax*
19654 F:      arch/arc/plat-axs10x
19655
19656 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19657 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19658 S:      Supported
19659 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
19660 F:      drivers/reset/reset-axs10x.c
19661
19662 SYNOPSYS CREG GPIO DRIVER
19663 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19664 S:      Maintained
19665 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19666 F:      drivers/gpio/gpio-creg-snps.c
19667
19668 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19669 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
19670 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19671 S:      Supported
19672 F:      drivers/tty/serial/8250/8250_dw.c
19673 F:      drivers/tty/serial/8250/8250_dwlib.*
19674 F:      drivers/tty/serial/8250/8250_lpss.c
19675
19676 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19677 M:      Hoan Tran <hoan@os.amperecomputing.com>
19678 M:      Serge Semin <fancer.lancer@gmail.com>
19679 L:      linux-gpio@vger.kernel.org
19680 S:      Maintained
19681 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19682 F:      drivers/gpio/gpio-dwapb.c
19683
19684 SYNOPSYS DESIGNWARE APB SSI DRIVER
19685 M:      Serge Semin <fancer.lancer@gmail.com>
19686 L:      linux-spi@vger.kernel.org
19687 S:      Supported
19688 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19689 F:      drivers/spi/spi-dw*
19690
19691 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19692 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19693 S:      Maintained
19694 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19695 F:      drivers/dma/dw-axi-dmac/
19696
19697 SYNOPSYS DESIGNWARE DMAC DRIVER
19698 M:      Viresh Kumar <vireshk@kernel.org>
19699 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19700 S:      Maintained
19701 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
19702 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19703 F:      drivers/dma/dw/
19704 F:      include/dt-bindings/dma/dw-dmac.h
19705 F:      include/linux/dma/dw.h
19706 F:      include/linux/platform_data/dma-dw.h
19707
19708 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19709 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19710 L:      netdev@vger.kernel.org
19711 S:      Supported
19712 F:      drivers/net/ethernet/synopsys/
19713
19714 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19715 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19716 L:      netdev@vger.kernel.org
19717 S:      Supported
19718 F:      drivers/net/pcs/pcs-xpcs.c
19719 F:      drivers/net/pcs/pcs-xpcs.h
19720 F:      include/linux/pcs/pcs-xpcs.h
19721
19722 SYNOPSYS DESIGNWARE I2C DRIVER
19723 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19724 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19725 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19726 R:      Jan Dabros <jsd@semihalf.com>
19727 L:      linux-i2c@vger.kernel.org
19728 S:      Supported
19729 F:      drivers/i2c/busses/i2c-designware-*
19730
19731 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19732 M:      Jaehoon Chung <jh80.chung@samsung.com>
19733 L:      linux-mmc@vger.kernel.org
19734 S:      Maintained
19735 F:      drivers/mmc/host/dw_mmc*
19736
19737 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19738 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19739 S:      Supported
19740 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19741 F:      drivers/reset/reset-hsdk.c
19742 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19743
19744 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19745 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19746 M:      Manjunath M B <manjumb@synopsys.com>
19747 L:      linux-mmc@vger.kernel.org
19748 S:      Maintained
19749 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19750
19751 SYSTEM CONFIGURATION (SYSCON)
19752 M:      Lee Jones <lee@kernel.org>
19753 M:      Arnd Bergmann <arnd@arndb.de>
19754 S:      Supported
19755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19756 F:      drivers/mfd/syscon.c
19757
19758 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19759 M:      Sudeep Holla <sudeep.holla@arm.com>
19760 R:      Cristian Marussi <cristian.marussi@arm.com>
19761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19762 S:      Maintained
19763 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19764 F:      drivers/clk/clk-sc[mp]i.c
19765 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19766 F:      drivers/firmware/arm_scmi/
19767 F:      drivers/firmware/arm_scpi.c
19768 F:      drivers/regulator/scmi-regulator.c
19769 F:      drivers/reset/reset-scmi.c
19770 F:      include/linux/sc[mp]i_protocol.h
19771 F:      include/trace/events/scmi.h
19772 F:      include/uapi/linux/virtio_scmi.h
19773
19774 SYSTEM RESET/SHUTDOWN DRIVERS
19775 M:      Sebastian Reichel <sre@kernel.org>
19776 L:      linux-pm@vger.kernel.org
19777 S:      Maintained
19778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19779 F:      Documentation/devicetree/bindings/power/reset/
19780 F:      drivers/power/reset/
19781
19782 SYSTEM TRACE MODULE CLASS
19783 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19784 S:      Maintained
19785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19786 F:      Documentation/trace/stm.rst
19787 F:      drivers/hwtracing/stm/
19788 F:      include/linux/stm.h
19789 F:      include/uapi/linux/stm.h
19790
19791 SYSTEM76 ACPI DRIVER
19792 M:      Jeremy Soller <jeremy@system76.com>
19793 M:      System76 Product Development <productdev@system76.com>
19794 L:      platform-driver-x86@vger.kernel.org
19795 S:      Maintained
19796 F:      drivers/platform/x86/system76_acpi.c
19797
19798 SYSV FILESYSTEM
19799 M:      Christoph Hellwig <hch@infradead.org>
19800 S:      Maintained
19801 F:      Documentation/filesystems/sysv-fs.rst
19802 F:      fs/sysv/
19803 F:      include/linux/sysv_fs.h
19804
19805 TASKSTATS STATISTICS INTERFACE
19806 M:      Balbir Singh <bsingharora@gmail.com>
19807 S:      Maintained
19808 F:      Documentation/accounting/taskstats*
19809 F:      include/linux/taskstats*
19810 F:      kernel/taskstats.c
19811
19812 TC subsystem
19813 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19814 M:      Cong Wang <xiyou.wangcong@gmail.com>
19815 M:      Jiri Pirko <jiri@resnulli.us>
19816 L:      netdev@vger.kernel.org
19817 S:      Maintained
19818 F:      include/net/pkt_cls.h
19819 F:      include/net/pkt_sched.h
19820 F:      include/net/tc_act/
19821 F:      include/uapi/linux/pkt_cls.h
19822 F:      include/uapi/linux/pkt_sched.h
19823 F:      include/uapi/linux/tc_act/
19824 F:      include/uapi/linux/tc_ematch/
19825 F:      net/sched/
19826 F:      tools/testing/selftests/tc-testing
19827
19828 TC90522 MEDIA DRIVER
19829 M:      Akihiro Tsukada <tskd08@gmail.com>
19830 L:      linux-media@vger.kernel.org
19831 S:      Odd Fixes
19832 F:      drivers/media/dvb-frontends/tc90522*
19833
19834 TCP LOW PRIORITY MODULE
19835 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19836 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19837 S:      Maintained
19838 W:      http://tcp-lp-mod.sourceforge.net/
19839 F:      net/ipv4/tcp_lp.c
19840
19841 TDA10071 MEDIA DRIVER
19842 M:      Antti Palosaari <crope@iki.fi>
19843 L:      linux-media@vger.kernel.org
19844 S:      Maintained
19845 W:      https://linuxtv.org
19846 W:      http://palosaari.fi/linux/
19847 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19848 T:      git git://linuxtv.org/anttip/media_tree.git
19849 F:      drivers/media/dvb-frontends/tda10071*
19850
19851 TDA18212 MEDIA DRIVER
19852 M:      Antti Palosaari <crope@iki.fi>
19853 L:      linux-media@vger.kernel.org
19854 S:      Maintained
19855 W:      https://linuxtv.org
19856 W:      http://palosaari.fi/linux/
19857 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19858 T:      git git://linuxtv.org/anttip/media_tree.git
19859 F:      drivers/media/tuners/tda18212*
19860
19861 TDA18218 MEDIA DRIVER
19862 M:      Antti Palosaari <crope@iki.fi>
19863 L:      linux-media@vger.kernel.org
19864 S:      Maintained
19865 W:      https://linuxtv.org
19866 W:      http://palosaari.fi/linux/
19867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19868 T:      git git://linuxtv.org/anttip/media_tree.git
19869 F:      drivers/media/tuners/tda18218*
19870
19871 TDA18250 MEDIA DRIVER
19872 M:      Olli Salonen <olli.salonen@iki.fi>
19873 L:      linux-media@vger.kernel.org
19874 S:      Maintained
19875 W:      https://linuxtv.org
19876 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19877 T:      git git://linuxtv.org/media_tree.git
19878 F:      drivers/media/tuners/tda18250*
19879
19880 TDA18271 MEDIA DRIVER
19881 M:      Michael Krufky <mkrufky@linuxtv.org>
19882 L:      linux-media@vger.kernel.org
19883 S:      Maintained
19884 W:      https://linuxtv.org
19885 W:      http://github.com/mkrufky
19886 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19887 T:      git git://linuxtv.org/mkrufky/tuners.git
19888 F:      drivers/media/tuners/tda18271*
19889
19890 TDA1997x MEDIA DRIVER
19891 M:      Tim Harvey <tharvey@gateworks.com>
19892 L:      linux-media@vger.kernel.org
19893 S:      Maintained
19894 W:      https://linuxtv.org
19895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19896 F:      drivers/media/i2c/tda1997x.*
19897
19898 TDA827x MEDIA DRIVER
19899 M:      Michael Krufky <mkrufky@linuxtv.org>
19900 L:      linux-media@vger.kernel.org
19901 S:      Maintained
19902 W:      https://linuxtv.org
19903 W:      http://github.com/mkrufky
19904 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19905 T:      git git://linuxtv.org/mkrufky/tuners.git
19906 F:      drivers/media/tuners/tda8290.*
19907
19908 TDA8290 MEDIA DRIVER
19909 M:      Michael Krufky <mkrufky@linuxtv.org>
19910 L:      linux-media@vger.kernel.org
19911 S:      Maintained
19912 W:      https://linuxtv.org
19913 W:      http://github.com/mkrufky
19914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19915 T:      git git://linuxtv.org/mkrufky/tuners.git
19916 F:      drivers/media/tuners/tda8290.*
19917
19918 TDA9840 MEDIA DRIVER
19919 M:      Hans Verkuil <hverkuil@xs4all.nl>
19920 L:      linux-media@vger.kernel.org
19921 S:      Maintained
19922 W:      https://linuxtv.org
19923 T:      git git://linuxtv.org/media_tree.git
19924 F:      drivers/media/i2c/tda9840*
19925
19926 TEA5761 TUNER DRIVER
19927 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19928 L:      linux-media@vger.kernel.org
19929 S:      Odd fixes
19930 W:      https://linuxtv.org
19931 T:      git git://linuxtv.org/media_tree.git
19932 F:      drivers/media/tuners/tea5761.*
19933
19934 TEA5767 TUNER DRIVER
19935 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19936 L:      linux-media@vger.kernel.org
19937 S:      Maintained
19938 W:      https://linuxtv.org
19939 T:      git git://linuxtv.org/media_tree.git
19940 F:      drivers/media/tuners/tea5767.*
19941
19942 TEA6415C MEDIA DRIVER
19943 M:      Hans Verkuil <hverkuil@xs4all.nl>
19944 L:      linux-media@vger.kernel.org
19945 S:      Maintained
19946 W:      https://linuxtv.org
19947 T:      git git://linuxtv.org/media_tree.git
19948 F:      drivers/media/i2c/tea6415c*
19949
19950 TEA6420 MEDIA DRIVER
19951 M:      Hans Verkuil <hverkuil@xs4all.nl>
19952 L:      linux-media@vger.kernel.org
19953 S:      Maintained
19954 W:      https://linuxtv.org
19955 T:      git git://linuxtv.org/media_tree.git
19956 F:      drivers/media/i2c/tea6420*
19957
19958 TEAM DRIVER
19959 M:      Jiri Pirko <jiri@resnulli.us>
19960 L:      netdev@vger.kernel.org
19961 S:      Supported
19962 F:      drivers/net/team/
19963 F:      include/linux/if_team.h
19964 F:      include/uapi/linux/if_team.h
19965
19966 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19967 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19968 S:      Maintained
19969 F:      arch/x86/platform/ts5500/
19970
19971 TECHNOTREND USB IR RECEIVER
19972 M:      Sean Young <sean@mess.org>
19973 L:      linux-media@vger.kernel.org
19974 S:      Maintained
19975 F:      drivers/media/rc/ttusbir.c
19976
19977 TECHWELL TW9910 VIDEO DECODER
19978 L:      linux-media@vger.kernel.org
19979 S:      Orphan
19980 F:      drivers/media/i2c/tw9910.c
19981 F:      include/media/i2c/tw9910.h
19982
19983 TEE SUBSYSTEM
19984 M:      Jens Wiklander <jens.wiklander@linaro.org>
19985 R:      Sumit Garg <sumit.garg@linaro.org>
19986 L:      op-tee@lists.trustedfirmware.org
19987 S:      Maintained
19988 F:      Documentation/staging/tee.rst
19989 F:      drivers/tee/
19990 F:      include/linux/tee_drv.h
19991 F:      include/uapi/linux/tee.h
19992
19993 TEGRA ARCHITECTURE SUPPORT
19994 M:      Thierry Reding <thierry.reding@gmail.com>
19995 M:      Jonathan Hunter <jonathanh@nvidia.com>
19996 L:      linux-tegra@vger.kernel.org
19997 S:      Supported
19998 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20000 N:      [^a-z]tegra
20001
20002 TEGRA CLOCK DRIVER
20003 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20004 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20005 S:      Supported
20006 F:      drivers/clk/tegra/
20007
20008 TEGRA DMA DRIVERS
20009 M:      Laxman Dewangan <ldewangan@nvidia.com>
20010 M:      Jon Hunter <jonathanh@nvidia.com>
20011 S:      Supported
20012 F:      drivers/dma/tegra*
20013
20014 TEGRA I2C DRIVER
20015 M:      Laxman Dewangan <ldewangan@nvidia.com>
20016 R:      Dmitry Osipenko <digetx@gmail.com>
20017 S:      Supported
20018 F:      drivers/i2c/busses/i2c-tegra.c
20019
20020 TEGRA IOMMU DRIVERS
20021 M:      Thierry Reding <thierry.reding@gmail.com>
20022 R:      Krishna Reddy <vdumpa@nvidia.com>
20023 L:      linux-tegra@vger.kernel.org
20024 S:      Supported
20025 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20026 F:      drivers/iommu/tegra*
20027
20028 TEGRA KBC DRIVER
20029 M:      Laxman Dewangan <ldewangan@nvidia.com>
20030 S:      Supported
20031 F:      drivers/input/keyboard/tegra-kbc.c
20032
20033 TEGRA NAND DRIVER
20034 M:      Stefan Agner <stefan@agner.ch>
20035 M:      Lucas Stach <dev@lynxeye.de>
20036 S:      Maintained
20037 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20038 F:      drivers/mtd/nand/raw/tegra_nand.c
20039
20040 TEGRA PWM DRIVER
20041 M:      Thierry Reding <thierry.reding@gmail.com>
20042 S:      Supported
20043 F:      drivers/pwm/pwm-tegra.c
20044
20045 TEGRA SERIAL DRIVER
20046 M:      Laxman Dewangan <ldewangan@nvidia.com>
20047 S:      Supported
20048 F:      drivers/tty/serial/serial-tegra.c
20049
20050 TEGRA SPI DRIVER
20051 M:      Laxman Dewangan <ldewangan@nvidia.com>
20052 S:      Supported
20053 F:      drivers/spi/spi-tegra*
20054
20055 TEGRA QUAD SPI DRIVER
20056 M:      Thierry Reding <thierry.reding@gmail.com>
20057 M:      Jonathan Hunter <jonathanh@nvidia.com>
20058 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20059 L:      linux-tegra@vger.kernel.org
20060 S:      Maintained
20061 F:      drivers/spi/spi-tegra210-quad.c
20062
20063 TEGRA VIDEO DRIVER
20064 M:      Thierry Reding <thierry.reding@gmail.com>
20065 M:      Jonathan Hunter <jonathanh@nvidia.com>
20066 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20067 L:      linux-media@vger.kernel.org
20068 L:      linux-tegra@vger.kernel.org
20069 S:      Maintained
20070 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20071 F:      drivers/staging/media/tegra-video/
20072
20073 TEGRA XUSB PADCTL DRIVER
20074 M:      JC Kuo <jckuo@nvidia.com>
20075 S:      Supported
20076 F:      drivers/phy/tegra/xusb*
20077
20078 TEHUTI ETHERNET DRIVER
20079 M:      Andy Gospodarek <andy@greyhouse.net>
20080 L:      netdev@vger.kernel.org
20081 S:      Supported
20082 F:      drivers/net/ethernet/tehuti/*
20083
20084 TELECOM CLOCK DRIVER FOR MCPL0010
20085 M:      Mark Gross <markgross@kernel.org>
20086 S:      Supported
20087 F:      drivers/char/tlclk.c
20088
20089 TEMPO SEMICONDUCTOR DRIVERS
20090 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20091 S:      Maintained
20092 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20093 F:      sound/soc/codecs/tscs*.c
20094 F:      sound/soc/codecs/tscs*.h
20095
20096 TENSILICA XTENSA PORT (xtensa)
20097 M:      Chris Zankel <chris@zankel.net>
20098 M:      Max Filippov <jcmvbkbc@gmail.com>
20099 L:      linux-xtensa@linux-xtensa.org
20100 S:      Maintained
20101 T:      git git://github.com/czankel/xtensa-linux.git
20102 F:      arch/xtensa/
20103 F:      drivers/irqchip/irq-xtensa-*
20104
20105 TEXAS INSTRUMENTS ASoC DRIVERS
20106 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20107 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20108 S:      Maintained
20109 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20110 F:      sound/soc/ti/
20111
20112 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20113 M:      Ricardo Ribalda <ribalda@kernel.org>
20114 L:      linux-iio@vger.kernel.org
20115 S:      Supported
20116 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20117 F:      drivers/iio/dac/ti-dac7612.c
20118
20119 TEXAS INSTRUMENTS DMA DRIVERS
20120 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20121 L:      dmaengine@vger.kernel.org
20122 S:      Maintained
20123 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20124 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20125 F:      Documentation/devicetree/bindings/dma/ti/
20126 F:      drivers/dma/ti/
20127 X:      drivers/dma/ti/cppi41.c
20128 F:      include/linux/dma/k3-udma-glue.h
20129 F:      include/linux/dma/ti-cppi5.h
20130 F:      include/linux/dma/k3-psil.h
20131
20132 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20133 M:      Nishanth Menon <nm@ti.com>
20134 M:      Tero Kristo <kristo@kernel.org>
20135 M:      Santosh Shilimkar <ssantosh@kernel.org>
20136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20137 S:      Maintained
20138 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20139 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20140 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20141 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20142 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20143 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20144 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20145 F:      drivers/clk/keystone/sci-clk.c
20146 F:      drivers/firmware/ti_sci*
20147 F:      drivers/irqchip/irq-ti-sci-inta.c
20148 F:      drivers/irqchip/irq-ti-sci-intr.c
20149 F:      drivers/reset/reset-ti-sci.c
20150 F:      drivers/soc/ti/ti_sci_inta_msi.c
20151 F:      drivers/soc/ti/ti_sci_pm_domains.c
20152 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20153 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20154 F:      include/linux/soc/ti/ti_sci_protocol.h
20155
20156 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20157 M:      Robert Marko <robert.marko@sartura.hr>
20158 M:      Luka Perkov <luka.perkov@sartura.hr>
20159 L:      linux-hwmon@vger.kernel.org
20160 S:      Maintained
20161 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20162 F:      Documentation/hwmon/tps23861.rst
20163 F:      drivers/hwmon/tps23861.c
20164
20165 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20166 M:      Puranjay Mohan <puranjay12@gmail.com>
20167 L:      linux-iio@vger.kernel.org
20168 S:      Supported
20169 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20170 F:      drivers/iio/temperature/tmp117.c
20171
20172 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20173 M:      Hans Verkuil <hverkuil@xs4all.nl>
20174 L:      linux-media@vger.kernel.org
20175 S:      Maintained
20176 W:      https://linuxtv.org
20177 T:      git git://linuxtv.org/media_tree.git
20178 F:      drivers/media/radio/radio-raremono.c
20179
20180 THERMAL
20181 M:      Rafael J. Wysocki <rafael@kernel.org>
20182 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20183 R:      Amit Kucheria <amitk@kernel.org>
20184 R:      Zhang Rui <rui.zhang@intel.com>
20185 L:      linux-pm@vger.kernel.org
20186 S:      Supported
20187 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20189 F:      Documentation/ABI/testing/sysfs-class-thermal
20190 F:      Documentation/devicetree/bindings/thermal/
20191 F:      Documentation/driver-api/thermal/
20192 F:      drivers/thermal/
20193 F:      include/dt-bindings/thermal/
20194 F:      include/linux/cpu_cooling.h
20195 F:      include/linux/thermal.h
20196 F:      include/uapi/linux/thermal.h
20197 F:      tools/lib/thermal/
20198 F:      tools/thermal/
20199
20200 THERMAL DRIVER FOR AMLOGIC SOCS
20201 M:      Guillaume La Roque <glaroque@baylibre.com>
20202 L:      linux-pm@vger.kernel.org
20203 L:      linux-amlogic@lists.infradead.org
20204 S:      Supported
20205 W:      http://linux-meson.com/
20206 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20207 F:      drivers/thermal/amlogic_thermal.c
20208
20209 THERMAL/CPU_COOLING
20210 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20211 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20212 M:      Viresh Kumar <viresh.kumar@linaro.org>
20213 R:      Lukasz Luba <lukasz.luba@arm.com>
20214 L:      linux-pm@vger.kernel.org
20215 S:      Supported
20216 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20217 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20218 F:      drivers/thermal/cpufreq_cooling.c
20219 F:      drivers/thermal/cpuidle_cooling.c
20220 F:      include/linux/cpu_cooling.h
20221
20222 THERMAL/POWER_ALLOCATOR
20223 M:      Lukasz Luba <lukasz.luba@arm.com>
20224 L:      linux-pm@vger.kernel.org
20225 S:      Maintained
20226 F:      Documentation/driver-api/thermal/power_allocator.rst
20227 F:      drivers/thermal/gov_power_allocator.c
20228 F:      include/trace/events/thermal_power_allocator.h
20229
20230 THINKPAD ACPI EXTRAS DRIVER
20231 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20232 L:      ibm-acpi-devel@lists.sourceforge.net
20233 L:      platform-driver-x86@vger.kernel.org
20234 S:      Maintained
20235 W:      http://ibm-acpi.sourceforge.net
20236 W:      http://thinkwiki.org/wiki/Ibm-acpi
20237 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20238 F:      drivers/platform/x86/thinkpad_acpi.c
20239
20240 THINKPAD LMI DRIVER
20241 M:      Mark Pearson <markpearson@lenovo.com>
20242 L:      platform-driver-x86@vger.kernel.org
20243 S:      Maintained
20244 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20245 F:      drivers/platform/x86/think-lmi.?
20246
20247 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20248 M:      Isaac Hazan <isaac.hazan@intel.com>
20249 L:      linux-usb@vger.kernel.org
20250 S:      Maintained
20251 F:      drivers/thunderbolt/dma_test.c
20252
20253 THUNDERBOLT DRIVER
20254 M:      Andreas Noever <andreas.noever@gmail.com>
20255 M:      Michael Jamet <michael.jamet@intel.com>
20256 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20257 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20258 L:      linux-usb@vger.kernel.org
20259 S:      Maintained
20260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20261 F:      Documentation/admin-guide/thunderbolt.rst
20262 F:      drivers/thunderbolt/
20263 F:      include/linux/thunderbolt.h
20264
20265 THUNDERBOLT NETWORK DRIVER
20266 M:      Michael Jamet <michael.jamet@intel.com>
20267 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20268 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20269 L:      netdev@vger.kernel.org
20270 S:      Maintained
20271 F:      drivers/net/thunderbolt.c
20272
20273 THUNDERX GPIO DRIVER
20274 M:      Robert Richter <rric@kernel.org>
20275 S:      Odd Fixes
20276 F:      drivers/gpio/gpio-thunderx.c
20277
20278 TI AM437X VPFE DRIVER
20279 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20280 L:      linux-media@vger.kernel.org
20281 S:      Maintained
20282 W:      https://linuxtv.org
20283 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20284 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20285 F:      drivers/media/platform/ti/am437x/
20286
20287 TI BANDGAP AND THERMAL DRIVER
20288 M:      Eduardo Valentin <edubezval@gmail.com>
20289 M:      Keerthy <j-keerthy@ti.com>
20290 L:      linux-pm@vger.kernel.org
20291 L:      linux-omap@vger.kernel.org
20292 S:      Maintained
20293 F:      drivers/thermal/ti-soc-thermal/
20294
20295 TI BQ27XXX POWER SUPPLY DRIVER
20296 F:      drivers/power/supply/bq27xxx_battery.c
20297 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20298 F:      include/linux/power/bq27xxx_battery.h
20299
20300 TI CDCE706 CLOCK DRIVER
20301 M:      Max Filippov <jcmvbkbc@gmail.com>
20302 S:      Maintained
20303 F:      drivers/clk/clk-cdce706.c
20304
20305 TI CLOCK DRIVER
20306 M:      Tero Kristo <kristo@kernel.org>
20307 L:      linux-omap@vger.kernel.org
20308 S:      Odd Fixes
20309 F:      drivers/clk/ti/
20310 F:      include/linux/clk/ti.h
20311
20312 TI DAVINCI MACHINE SUPPORT
20313 M:      Sekhar Nori <nsekhar@ti.com>
20314 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20315 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20316 S:      Supported
20317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20318 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20319 F:      arch/arm/boot/dts/da850*
20320 F:      arch/arm/mach-davinci/
20321 F:      drivers/i2c/busses/i2c-davinci.c
20322
20323 TI DAVINCI SERIES CLOCK DRIVER
20324 M:      David Lechner <david@lechnology.com>
20325 R:      Sekhar Nori <nsekhar@ti.com>
20326 S:      Maintained
20327 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20328 F:      drivers/clk/davinci/
20329
20330 TI DAVINCI SERIES GPIO DRIVER
20331 M:      Keerthy <j-keerthy@ti.com>
20332 L:      linux-gpio@vger.kernel.org
20333 S:      Maintained
20334 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20335 F:      drivers/gpio/gpio-davinci.c
20336
20337 TI DAVINCI SERIES MEDIA DRIVER
20338 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20339 L:      linux-media@vger.kernel.org
20340 S:      Maintained
20341 W:      https://linuxtv.org
20342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20343 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20344 F:      drivers/media/platform/ti/davinci/
20345 F:      include/media/davinci/
20346
20347 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20348 R:      David Lechner <david@lechnology.com>
20349 L:      linux-iio@vger.kernel.org
20350 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20351 F:      drivers/counter/ti-eqep.c
20352
20353 TI ETHERNET SWITCH DRIVER (CPSW)
20354 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20355 L:      linux-omap@vger.kernel.org
20356 L:      netdev@vger.kernel.org
20357 S:      Maintained
20358 F:      drivers/net/ethernet/ti/cpsw*
20359 F:      drivers/net/ethernet/ti/davinci*
20360
20361 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20362 M:      Alex Dubov <oakad@yahoo.com>
20363 S:      Maintained
20364 W:      http://tifmxx.berlios.de/
20365 F:      drivers/memstick/host/tifm_ms.c
20366 F:      drivers/misc/tifm*
20367 F:      drivers/mmc/host/tifm_sd.c
20368 F:      include/linux/tifm.h
20369
20370 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20371 M:      Nishanth Menon <nm@ti.com>
20372 M:      Santosh Shilimkar <ssantosh@kernel.org>
20373 L:      linux-kernel@vger.kernel.org
20374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20375 S:      Maintained
20376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20377 F:      drivers/soc/ti/*
20378
20379 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20380 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20381 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20382 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20383 S:      Maintained
20384 F:      sound/soc/codecs/isabelle*
20385 F:      sound/soc/codecs/lm49453*
20386
20387 TI PCM3060 ASoC CODEC DRIVER
20388 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20389 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20390 S:      Maintained
20391 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20392 F:      sound/soc/codecs/pcm3060*
20393
20394 TI TAS571X FAMILY ASoC CODEC DRIVER
20395 M:      Kevin Cernekee <cernekee@chromium.org>
20396 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20397 S:      Odd Fixes
20398 F:      sound/soc/codecs/tas571x*
20399
20400 TI TRF7970A NFC DRIVER
20401 M:      Mark Greer <mgreer@animalcreek.com>
20402 L:      linux-wireless@vger.kernel.org
20403 L:      linux-nfc@lists.01.org (subscribers-only)
20404 S:      Supported
20405 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20406 F:      drivers/nfc/trf7970a.c
20407
20408 TI TSC2046 ADC DRIVER
20409 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20410 R:      kernel@pengutronix.de
20411 L:      linux-iio@vger.kernel.org
20412 S:      Maintained
20413 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20414 F:      drivers/iio/adc/ti-tsc2046.c
20415
20416 TI TWL4030 SERIES SOC CODEC DRIVER
20417 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20418 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20419 S:      Maintained
20420 F:      sound/soc/codecs/twl4030*
20421
20422 TI VPE/CAL DRIVERS
20423 M:      Benoit Parrot <bparrot@ti.com>
20424 L:      linux-media@vger.kernel.org
20425 S:      Maintained
20426 W:      http://linuxtv.org/
20427 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20428 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20429 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20430 F:      drivers/media/platform/ti/cal/
20431 F:      drivers/media/platform/ti/vpe/
20432
20433 TI WILINK WIRELESS DRIVERS
20434 L:      linux-wireless@vger.kernel.org
20435 S:      Orphan
20436 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20437 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20439 F:      drivers/net/wireless/ti/
20440 F:      include/linux/wl12xx.h
20441
20442 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20443 M:      John Stultz <jstultz@google.com>
20444 M:      Thomas Gleixner <tglx@linutronix.de>
20445 R:      Stephen Boyd <sboyd@kernel.org>
20446 L:      linux-kernel@vger.kernel.org
20447 S:      Supported
20448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20449 F:      include/linux/clocksource.h
20450 F:      include/linux/time.h
20451 F:      include/linux/timex.h
20452 F:      include/uapi/linux/time.h
20453 F:      include/uapi/linux/timex.h
20454 F:      kernel/time/alarmtimer.c
20455 F:      kernel/time/clocksource.c
20456 F:      kernel/time/ntp.c
20457 F:      kernel/time/time*.c
20458 F:      tools/testing/selftests/timers/
20459
20460 TIPC NETWORK LAYER
20461 M:      Jon Maloy <jmaloy@redhat.com>
20462 M:      Ying Xue <ying.xue@windriver.com>
20463 L:      netdev@vger.kernel.org (core kernel code)
20464 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20465 S:      Maintained
20466 W:      http://tipc.sourceforge.net/
20467 F:      include/uapi/linux/tipc*.h
20468 F:      net/tipc/
20469
20470 TLAN NETWORK DRIVER
20471 M:      Samuel Chessman <chessman@tux.org>
20472 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20473 S:      Maintained
20474 W:      http://sourceforge.net/projects/tlan/
20475 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20476 F:      drivers/net/ethernet/ti/tlan.*
20477
20478 TM6000 VIDEO4LINUX DRIVER
20479 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20480 L:      linux-media@vger.kernel.org
20481 S:      Odd fixes
20482 W:      https://linuxtv.org
20483 T:      git git://linuxtv.org/media_tree.git
20484 F:      Documentation/admin-guide/media/tm6000*
20485 F:      drivers/media/usb/tm6000/
20486
20487 TMIO/SDHI MMC DRIVER
20488 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20489 L:      linux-mmc@vger.kernel.org
20490 L:      linux-renesas-soc@vger.kernel.org
20491 S:      Supported
20492 F:      drivers/mmc/host/renesas_sdhi*
20493 F:      drivers/mmc/host/tmio_mmc*
20494 F:      include/linux/mfd/tmio.h
20495
20496 TMP401 HARDWARE MONITOR DRIVER
20497 M:      Guenter Roeck <linux@roeck-us.net>
20498 L:      linux-hwmon@vger.kernel.org
20499 S:      Maintained
20500 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20501 F:      Documentation/hwmon/tmp401.rst
20502 F:      drivers/hwmon/tmp401.c
20503
20504 TMP464 HARDWARE MONITOR DRIVER
20505 M:      Agathe Porte <agathe.porte@nokia.com>
20506 M:      Guenter Roeck <linux@roeck-us.net>
20507 L:      linux-hwmon@vger.kernel.org
20508 S:      Maintained
20509 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20510 F:      Documentation/hwmon/tmp464.rst
20511 F:      drivers/hwmon/tmp464.c
20512
20513 TMP513 HARDWARE MONITOR DRIVER
20514 M:      Eric Tremblay <etremblay@distech-controls.com>
20515 L:      linux-hwmon@vger.kernel.org
20516 S:      Maintained
20517 F:      Documentation/hwmon/tmp513.rst
20518 F:      drivers/hwmon/tmp513.c
20519
20520 TMPFS (SHMEM FILESYSTEM)
20521 M:      Hugh Dickins <hughd@google.com>
20522 L:      linux-mm@kvack.org
20523 S:      Maintained
20524 F:      include/linux/shmem_fs.h
20525 F:      mm/shmem.c
20526
20527 TOMOYO SECURITY MODULE
20528 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20529 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20530 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20531 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20532 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20533 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20534 S:      Maintained
20535 W:      https://tomoyo.osdn.jp/
20536 F:      security/tomoyo/
20537
20538 TOPSTAR LAPTOP EXTRAS DRIVER
20539 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20540 L:      platform-driver-x86@vger.kernel.org
20541 S:      Maintained
20542 F:      drivers/platform/x86/topstar-laptop.c
20543
20544 TORTURE-TEST MODULES
20545 M:      Davidlohr Bueso <dave@stgolabs.net>
20546 M:      "Paul E. McKenney" <paulmck@kernel.org>
20547 M:      Josh Triplett <josh@joshtriplett.org>
20548 L:      linux-kernel@vger.kernel.org
20549 S:      Supported
20550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20551 F:      Documentation/RCU/torture.rst
20552 F:      kernel/locking/locktorture.c
20553 F:      kernel/rcu/rcuscale.c
20554 F:      kernel/rcu/rcutorture.c
20555 F:      kernel/rcu/refscale.c
20556 F:      kernel/torture.c
20557
20558 TOSHIBA ACPI EXTRAS DRIVER
20559 M:      Azael Avalos <coproscefalo@gmail.com>
20560 L:      platform-driver-x86@vger.kernel.org
20561 S:      Maintained
20562 F:      drivers/platform/x86/toshiba_acpi.c
20563
20564 TOSHIBA BLUETOOTH DRIVER
20565 M:      Azael Avalos <coproscefalo@gmail.com>
20566 L:      platform-driver-x86@vger.kernel.org
20567 S:      Maintained
20568 F:      drivers/platform/x86/toshiba_bluetooth.c
20569
20570 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20571 M:      Azael Avalos <coproscefalo@gmail.com>
20572 L:      platform-driver-x86@vger.kernel.org
20573 S:      Maintained
20574 F:      drivers/platform/x86/toshiba_haps.c
20575
20576 TOSHIBA SMM DRIVER
20577 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20578 S:      Maintained
20579 W:      http://www.buzzard.org.uk/toshiba/
20580 F:      drivers/char/toshiba.c
20581 F:      include/linux/toshiba.h
20582 F:      include/uapi/linux/toshiba.h
20583
20584 TOSHIBA TC358743 DRIVER
20585 M:      Mats Randgaard <matrandg@cisco.com>
20586 L:      linux-media@vger.kernel.org
20587 S:      Maintained
20588 F:      drivers/media/i2c/tc358743*
20589 F:      include/media/i2c/tc358743.h
20590
20591 TOSHIBA WMI HOTKEYS DRIVER
20592 M:      Azael Avalos <coproscefalo@gmail.com>
20593 L:      platform-driver-x86@vger.kernel.org
20594 S:      Maintained
20595 F:      drivers/platform/x86/toshiba-wmi.c
20596
20597 TPM DEVICE DRIVER
20598 M:      Peter Huewe <peterhuewe@gmx.de>
20599 M:      Jarkko Sakkinen <jarkko@kernel.org>
20600 R:      Jason Gunthorpe <jgg@ziepe.ca>
20601 L:      linux-integrity@vger.kernel.org
20602 S:      Maintained
20603 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20604 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20606 F:      drivers/char/tpm/
20607
20608 TRACING
20609 M:      Steven Rostedt <rostedt@goodmis.org>
20610 M:      Ingo Molnar <mingo@redhat.com>
20611 S:      Maintained
20612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20613 F:      Documentation/trace/ftrace.rst
20614 F:      arch/*/*/*/*ftrace*
20615 F:      arch/*/*/*ftrace*
20616 F:      fs/tracefs/
20617 F:      include/*/ftrace.h
20618 F:      include/linux/trace*.h
20619 F:      include/trace/
20620 F:      kernel/trace/
20621 F:      tools/testing/selftests/ftrace/
20622
20623 TRACING MMIO ACCESSES (MMIOTRACE)
20624 M:      Steven Rostedt <rostedt@goodmis.org>
20625 M:      Ingo Molnar <mingo@kernel.org>
20626 R:      Karol Herbst <karolherbst@gmail.com>
20627 R:      Pekka Paalanen <ppaalanen@gmail.com>
20628 L:      linux-kernel@vger.kernel.org
20629 L:      nouveau@lists.freedesktop.org
20630 S:      Maintained
20631 F:      arch/x86/mm/kmmio.c
20632 F:      arch/x86/mm/mmio-mod.c
20633 F:      arch/x86/mm/testmmiotrace.c
20634 F:      include/linux/mmiotrace.h
20635 F:      kernel/trace/trace_mmiotrace.c
20636
20637 TRACING OS NOISE / LATENCY TRACERS
20638 M:      Steven Rostedt <rostedt@goodmis.org>
20639 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20640 S:      Maintained
20641 F:      kernel/trace/trace_osnoise.c
20642 F:      include/trace/events/osnoise.h
20643 F:      kernel/trace/trace_hwlat.c
20644 F:      kernel/trace/trace_irqsoff.c
20645 F:      kernel/trace/trace_sched_wakeup.c
20646 F:      Documentation/trace/osnoise-tracer.rst
20647 F:      Documentation/trace/timerlat-tracer.rst
20648 F:      Documentation/trace/hwlat_detector.rst
20649 F:      arch/*/kernel/trace.c
20650
20651 Real-time Linux Analysis (RTLA) tools
20652 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20653 M:      Steven Rostedt <rostedt@goodmis.org>
20654 L:      linux-trace-devel@vger.kernel.org
20655 S:      Maintained
20656 F:      Documentation/tools/rtla/
20657 F:      tools/tracing/rtla/
20658
20659 TRADITIONAL CHINESE DOCUMENTATION
20660 M:      Hu Haowen <src.res@email.cn>
20661 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
20662 S:      Maintained
20663 W:      https://github.com/srcres258/linux-doc
20664 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20665 F:      Documentation/translations/zh_TW/
20666
20667 TTY LAYER
20668 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20669 M:      Jiri Slaby <jirislaby@kernel.org>
20670 S:      Supported
20671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20672 F:      Documentation/driver-api/serial/
20673 F:      drivers/tty/
20674 F:      drivers/tty/serial/serial_core.c
20675 F:      include/linux/selection.h
20676 F:      include/linux/serial.h
20677 F:      include/linux/serial_core.h
20678 F:      include/linux/sysrq.h
20679 F:      include/linux/tty*.h
20680 F:      include/linux/vt.h
20681 F:      include/linux/vt_*.h
20682 F:      include/uapi/linux/serial.h
20683 F:      include/uapi/linux/serial_core.h
20684 F:      include/uapi/linux/tty.h
20685
20686 TUA9001 MEDIA DRIVER
20687 M:      Antti Palosaari <crope@iki.fi>
20688 L:      linux-media@vger.kernel.org
20689 S:      Maintained
20690 W:      https://linuxtv.org
20691 W:      http://palosaari.fi/linux/
20692 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20693 T:      git git://linuxtv.org/anttip/media_tree.git
20694 F:      drivers/media/tuners/tua9001*
20695
20696 TULIP NETWORK DRIVERS
20697 L:      netdev@vger.kernel.org
20698 L:      linux-parisc@vger.kernel.org
20699 S:      Orphan
20700 F:      drivers/net/ethernet/dec/tulip/
20701
20702 TUN/TAP driver
20703 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20704 S:      Maintained
20705 W:      http://vtun.sourceforge.net/tun
20706 F:      Documentation/networking/tuntap.rst
20707 F:      arch/um/os-Linux/drivers/
20708
20709 TURBOCHANNEL SUBSYSTEM
20710 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20711 M:      Ralf Baechle <ralf@linux-mips.org>
20712 L:      linux-mips@vger.kernel.org
20713 S:      Maintained
20714 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20715 F:      drivers/tc/
20716 F:      include/linux/tc.h
20717
20718 TURBOSTAT UTILITY
20719 M:      "Len Brown" <lenb@kernel.org>
20720 L:      linux-pm@vger.kernel.org
20721 S:      Supported
20722 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20723 B:      https://bugzilla.kernel.org
20724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20725 F:      tools/power/x86/turbostat/
20726
20727 TW5864 VIDEO4LINUX DRIVER
20728 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20729 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20730 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20731 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20732 L:      linux-media@vger.kernel.org
20733 S:      Supported
20734 F:      drivers/media/pci/tw5864/
20735
20736 TW68 VIDEO4LINUX DRIVER
20737 M:      Hans Verkuil <hverkuil@xs4all.nl>
20738 L:      linux-media@vger.kernel.org
20739 S:      Odd Fixes
20740 W:      https://linuxtv.org
20741 T:      git git://linuxtv.org/media_tree.git
20742 F:      drivers/media/pci/tw68/
20743
20744 TW686X VIDEO4LINUX DRIVER
20745 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20746 L:      linux-media@vger.kernel.org
20747 S:      Maintained
20748 W:      http://linuxtv.org
20749 T:      git git://linuxtv.org/media_tree.git
20750 F:      drivers/media/pci/tw686x/
20751
20752 U-BOOT ENVIRONMENT VARIABLES
20753 M:      Rafał Miłecki <rafal@milecki.pl>
20754 S:      Maintained
20755 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20756
20757 UACCE ACCELERATOR FRAMEWORK
20758 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20759 M:      Zhou Wang <wangzhou1@hisilicon.com>
20760 L:      linux-accelerators@lists.ozlabs.org
20761 L:      linux-kernel@vger.kernel.org
20762 S:      Maintained
20763 F:      Documentation/ABI/testing/sysfs-driver-uacce
20764 F:      Documentation/misc-devices/uacce.rst
20765 F:      drivers/misc/uacce/
20766 F:      include/linux/uacce.h
20767 F:      include/uapi/misc/uacce/
20768
20769 UBI FILE SYSTEM (UBIFS)
20770 M:      Richard Weinberger <richard@nod.at>
20771 L:      linux-mtd@lists.infradead.org
20772 S:      Supported
20773 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20776 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20777 F:      Documentation/filesystems/ubifs-authentication.rst
20778 F:      Documentation/filesystems/ubifs.rst
20779 F:      fs/ubifs/
20780
20781 UBLK USERSPACE BLOCK DRIVER
20782 M:      Ming Lei <ming.lei@redhat.com>
20783 L:      linux-block@vger.kernel.org
20784 S:      Maintained
20785 F:      Documentation/block/ublk.rst
20786 F:      drivers/block/ublk_drv.c
20787 F:      include/uapi/linux/ublk_cmd.h
20788
20789 UCLINUX (M68KNOMMU AND COLDFIRE)
20790 M:      Greg Ungerer <gerg@linux-m68k.org>
20791 L:      linux-m68k@lists.linux-m68k.org
20792 L:      uclinux-dev@uclinux.org  (subscribers-only)
20793 S:      Maintained
20794 W:      http://www.linux-m68k.org/
20795 W:      http://www.uclinux.org/
20796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20797 F:      arch/m68k/*/*_no.*
20798 F:      arch/m68k/68*/
20799 F:      arch/m68k/coldfire/
20800 F:      arch/m68k/include/asm/*_no.*
20801
20802 UDF FILESYSTEM
20803 M:      Jan Kara <jack@suse.com>
20804 S:      Maintained
20805 F:      Documentation/filesystems/udf.rst
20806 F:      fs/udf/
20807
20808 UDRAW TABLET
20809 M:      Bastien Nocera <hadess@hadess.net>
20810 L:      linux-input@vger.kernel.org
20811 S:      Maintained
20812 F:      drivers/hid/hid-udraw-ps3.c
20813
20814 UFS FILESYSTEM
20815 M:      Evgeniy Dushistov <dushistov@mail.ru>
20816 S:      Maintained
20817 F:      Documentation/admin-guide/ufs.rst
20818 F:      fs/ufs/
20819
20820 UHID USERSPACE HID IO DRIVER
20821 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20822 L:      linux-input@vger.kernel.org
20823 S:      Maintained
20824 F:      drivers/hid/uhid.c
20825 F:      include/uapi/linux/uhid.h
20826
20827 ULPI BUS
20828 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20829 L:      linux-usb@vger.kernel.org
20830 S:      Maintained
20831 F:      drivers/usb/common/ulpi.c
20832 F:      include/linux/ulpi/
20833
20834 UNICODE SUBSYSTEM
20835 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20836 L:      linux-fsdevel@vger.kernel.org
20837 S:      Supported
20838 F:      fs/unicode/
20839
20840 UNIFDEF
20841 M:      Tony Finch <dot@dotat.at>
20842 S:      Maintained
20843 W:      http://dotat.at/prog/unifdef
20844 F:      scripts/unifdef.c
20845
20846 UNIFORM CDROM DRIVER
20847 M:      Phillip Potter <phil@philpotter.co.uk>
20848 S:      Maintained
20849 F:      Documentation/cdrom/
20850 F:      drivers/cdrom/cdrom.c
20851 F:      include/linux/cdrom.h
20852 F:      include/uapi/linux/cdrom.h
20853
20854 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20855 R:      Alim Akhtar <alim.akhtar@samsung.com>
20856 R:      Avri Altman <avri.altman@wdc.com>
20857 R:      Bart Van Assche <bvanassche@acm.org>
20858 L:      linux-scsi@vger.kernel.org
20859 S:      Supported
20860 F:      Documentation/devicetree/bindings/ufs/
20861 F:      Documentation/scsi/ufs.rst
20862 F:      drivers/ufs/core/
20863
20864 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20865 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20866 L:      linux-scsi@vger.kernel.org
20867 S:      Supported
20868 F:      drivers/ufs/host/*dwc*
20869
20870 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20871 M:      Stanley Chu <stanley.chu@mediatek.com>
20872 L:      linux-scsi@vger.kernel.org
20873 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20874 S:      Maintained
20875 F:      drivers/ufs/host/ufs-mediatek*
20876
20877 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
20878 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
20879 L:      linux-renesas-soc@vger.kernel.org
20880 L:      linux-scsi@vger.kernel.org
20881 S:      Maintained
20882 F:      drivers/ufs/host/ufs-renesas.c
20883
20884 UNSORTED BLOCK IMAGES (UBI)
20885 M:      Richard Weinberger <richard@nod.at>
20886 L:      linux-mtd@lists.infradead.org
20887 S:      Supported
20888 W:      http://www.linux-mtd.infradead.org/
20889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20891 F:      drivers/mtd/ubi/
20892 F:      include/linux/mtd/ubi.h
20893 F:      include/uapi/mtd/ubi-user.h
20894
20895 USB "USBNET" DRIVER FRAMEWORK
20896 M:      Oliver Neukum <oneukum@suse.com>
20897 L:      netdev@vger.kernel.org
20898 S:      Maintained
20899 W:      http://www.linux-usb.org/usbnet
20900 F:      drivers/net/usb/usbnet.c
20901 F:      include/linux/usb/usbnet.h
20902
20903 USB ACM DRIVER
20904 M:      Oliver Neukum <oneukum@suse.com>
20905 L:      linux-usb@vger.kernel.org
20906 S:      Maintained
20907 F:      Documentation/usb/acm.rst
20908 F:      drivers/usb/class/cdc-acm.*
20909
20910 USB APPLE MFI FASTCHARGE DRIVER
20911 M:      Bastien Nocera <hadess@hadess.net>
20912 L:      linux-usb@vger.kernel.org
20913 S:      Maintained
20914 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20915
20916 USB AR5523 WIRELESS DRIVER
20917 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20918 L:      linux-wireless@vger.kernel.org
20919 S:      Maintained
20920 F:      drivers/net/wireless/ath/ar5523/
20921
20922 USB ATTACHED SCSI
20923 M:      Oliver Neukum <oneukum@suse.com>
20924 L:      linux-usb@vger.kernel.org
20925 L:      linux-scsi@vger.kernel.org
20926 S:      Maintained
20927 F:      drivers/usb/storage/uas.c
20928
20929 USB CDC ETHERNET DRIVER
20930 M:      Oliver Neukum <oliver@neukum.org>
20931 L:      linux-usb@vger.kernel.org
20932 S:      Maintained
20933 F:      drivers/net/usb/cdc_*.c
20934 F:      include/uapi/linux/usb/cdc.h
20935
20936 USB CHAOSKEY DRIVER
20937 M:      Keith Packard <keithp@keithp.com>
20938 L:      linux-usb@vger.kernel.org
20939 S:      Maintained
20940 F:      drivers/usb/misc/chaoskey.c
20941
20942 USB CYPRESS C67X00 DRIVER
20943 L:      linux-usb@vger.kernel.org
20944 S:      Orphan
20945 F:      drivers/usb/c67x00/
20946
20947 USB DAVICOM DM9601 DRIVER
20948 M:      Peter Korsgaard <peter@korsgaard.com>
20949 L:      netdev@vger.kernel.org
20950 S:      Maintained
20951 W:      http://www.linux-usb.org/usbnet
20952 F:      drivers/net/usb/dm9601.c
20953
20954 USB EHCI DRIVER
20955 M:      Alan Stern <stern@rowland.harvard.edu>
20956 L:      linux-usb@vger.kernel.org
20957 S:      Maintained
20958 F:      Documentation/usb/ehci.rst
20959 F:      drivers/usb/host/ehci*
20960
20961 USB GADGET/PERIPHERAL SUBSYSTEM
20962 M:      Felipe Balbi <balbi@kernel.org>
20963 L:      linux-usb@vger.kernel.org
20964 S:      Maintained
20965 W:      http://www.linux-usb.org/gadget
20966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20967 F:      drivers/usb/gadget/
20968 F:      include/linux/usb/gadget*
20969
20970 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20971 M:      Jiri Kosina <jikos@kernel.org>
20972 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20973 L:      linux-usb@vger.kernel.org
20974 S:      Maintained
20975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20976 F:      Documentation/hid/hiddev.rst
20977 F:      drivers/hid/usbhid/
20978
20979 USB INTEL XHCI ROLE MUX DRIVER
20980 M:      Hans de Goede <hdegoede@redhat.com>
20981 L:      linux-usb@vger.kernel.org
20982 S:      Maintained
20983 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20984
20985 USB IP DRIVER FOR HISILICON KIRIN 960
20986 M:      Yu Chen <chenyu56@huawei.com>
20987 M:      Binghui Wang <wangbinghui@hisilicon.com>
20988 L:      linux-usb@vger.kernel.org
20989 S:      Maintained
20990 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20991 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20992
20993 USB IP DRIVER FOR HISILICON KIRIN 970
20994 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20995 L:      linux-usb@vger.kernel.org
20996 S:      Maintained
20997 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20998 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20999
21000 USB ISP116X DRIVER
21001 M:      Olav Kongas <ok@artecdesign.ee>
21002 L:      linux-usb@vger.kernel.org
21003 S:      Maintained
21004 F:      drivers/usb/host/isp116x*
21005 F:      include/linux/usb/isp116x.h
21006
21007 USB ISP1760 DRIVER
21008 M:      Rui Miguel Silva <rui.silva@linaro.org>
21009 L:      linux-usb@vger.kernel.org
21010 S:      Maintained
21011 F:      drivers/usb/isp1760/*
21012 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21013
21014 USB LAN78XX ETHERNET DRIVER
21015 M:      Woojung Huh <woojung.huh@microchip.com>
21016 M:      UNGLinuxDriver@microchip.com
21017 L:      netdev@vger.kernel.org
21018 S:      Maintained
21019 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21020 F:      drivers/net/usb/lan78xx.*
21021 F:      include/dt-bindings/net/microchip-lan78xx.h
21022
21023 USB MASS STORAGE DRIVER
21024 M:      Alan Stern <stern@rowland.harvard.edu>
21025 L:      linux-usb@vger.kernel.org
21026 L:      usb-storage@lists.one-eyed-alien.net
21027 S:      Maintained
21028 F:      drivers/usb/storage/
21029
21030 USB MIDI DRIVER
21031 M:      Clemens Ladisch <clemens@ladisch.de>
21032 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21033 S:      Maintained
21034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21035 F:      sound/usb/midi.*
21036
21037 USB NETWORKING DRIVERS
21038 L:      linux-usb@vger.kernel.org
21039 S:      Odd Fixes
21040 F:      drivers/net/usb/
21041
21042 USB OHCI DRIVER
21043 M:      Alan Stern <stern@rowland.harvard.edu>
21044 L:      linux-usb@vger.kernel.org
21045 S:      Maintained
21046 F:      Documentation/usb/ohci.rst
21047 F:      drivers/usb/host/ohci*
21048
21049 USB OTG FSM (Finite State Machine)
21050 M:      Peter Chen <peter.chen@kernel.org>
21051 L:      linux-usb@vger.kernel.org
21052 S:      Maintained
21053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21054 F:      drivers/usb/common/usb-otg-fsm.c
21055
21056 USB OVER IP DRIVER
21057 M:      Valentina Manea <valentina.manea.m@gmail.com>
21058 M:      Shuah Khan <shuah@kernel.org>
21059 M:      Shuah Khan <skhan@linuxfoundation.org>
21060 L:      linux-usb@vger.kernel.org
21061 S:      Maintained
21062 F:      Documentation/usb/usbip_protocol.rst
21063 F:      drivers/usb/usbip/
21064 F:      tools/testing/selftests/drivers/usb/usbip/
21065 F:      tools/usb/usbip/
21066
21067 USB PEGASUS DRIVER
21068 M:      Petko Manolov <petkan@nucleusys.com>
21069 L:      linux-usb@vger.kernel.org
21070 L:      netdev@vger.kernel.org
21071 S:      Maintained
21072 W:      https://github.com/petkan/pegasus
21073 T:      git git://github.com/petkan/pegasus.git
21074 F:      drivers/net/usb/pegasus.*
21075
21076 USB PHY LAYER
21077 M:      Felipe Balbi <balbi@kernel.org>
21078 L:      linux-usb@vger.kernel.org
21079 S:      Maintained
21080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
21081 F:      drivers/usb/phy/
21082
21083 USB PRINTER DRIVER (usblp)
21084 M:      Pete Zaitcev <zaitcev@redhat.com>
21085 L:      linux-usb@vger.kernel.org
21086 S:      Supported
21087 F:      drivers/usb/class/usblp.c
21088
21089 USB RAW GADGET DRIVER
21090 R:      Andrey Konovalov <andreyknvl@gmail.com>
21091 L:      linux-usb@vger.kernel.org
21092 S:      Maintained
21093 F:      Documentation/usb/raw-gadget.rst
21094 F:      drivers/usb/gadget/legacy/raw_gadget.c
21095 F:      include/uapi/linux/usb/raw_gadget.h
21096
21097 USB QMI WWAN NETWORK DRIVER
21098 M:      Bjørn Mork <bjorn@mork.no>
21099 L:      netdev@vger.kernel.org
21100 S:      Maintained
21101 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21102 F:      drivers/net/usb/qmi_wwan.c
21103
21104 USB RTL8150 DRIVER
21105 M:      Petko Manolov <petkan@nucleusys.com>
21106 L:      linux-usb@vger.kernel.org
21107 L:      netdev@vger.kernel.org
21108 S:      Maintained
21109 W:      https://github.com/petkan/rtl8150
21110 T:      git git://github.com/petkan/rtl8150.git
21111 F:      drivers/net/usb/rtl8150.c
21112
21113 USB SERIAL SUBSYSTEM
21114 M:      Johan Hovold <johan@kernel.org>
21115 L:      linux-usb@vger.kernel.org
21116 S:      Maintained
21117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21118 F:      Documentation/usb/usb-serial.rst
21119 F:      drivers/usb/serial/
21120 F:      include/linux/usb/serial.h
21121
21122 USB SMSC75XX ETHERNET DRIVER
21123 M:      Steve Glendinning <steve.glendinning@shawell.net>
21124 L:      netdev@vger.kernel.org
21125 S:      Maintained
21126 F:      drivers/net/usb/smsc75xx.*
21127
21128 USB SMSC95XX ETHERNET DRIVER
21129 M:      Steve Glendinning <steve.glendinning@shawell.net>
21130 M:      UNGLinuxDriver@microchip.com
21131 L:      netdev@vger.kernel.org
21132 S:      Maintained
21133 F:      drivers/net/usb/smsc95xx.*
21134
21135 USB SUBSYSTEM
21136 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21137 L:      linux-usb@vger.kernel.org
21138 S:      Supported
21139 W:      http://www.linux-usb.org
21140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21141 F:      Documentation/devicetree/bindings/usb/
21142 F:      Documentation/usb/
21143 F:      drivers/usb/
21144 F:      include/dt-bindings/usb/
21145 F:      include/linux/usb.h
21146 F:      include/linux/usb/
21147
21148 USB TYPEC BUS FOR ALTERNATE MODES
21149 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21150 L:      linux-usb@vger.kernel.org
21151 S:      Maintained
21152 F:      Documentation/ABI/testing/sysfs-bus-typec
21153 F:      Documentation/driver-api/usb/typec_bus.rst
21154 F:      drivers/usb/typec/altmodes/
21155 F:      include/linux/usb/typec_altmode.h
21156
21157 USB TYPEC CLASS
21158 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21159 L:      linux-usb@vger.kernel.org
21160 S:      Maintained
21161 F:      Documentation/ABI/testing/sysfs-class-typec
21162 F:      Documentation/driver-api/usb/typec.rst
21163 F:      drivers/usb/typec/
21164 F:      include/linux/usb/typec.h
21165
21166 USB TYPEC INTEL PMC MUX DRIVER
21167 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21168 L:      linux-usb@vger.kernel.org
21169 S:      Maintained
21170 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21171 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21172
21173 USB TYPEC PI3USB30532 MUX DRIVER
21174 M:      Hans de Goede <hdegoede@redhat.com>
21175 L:      linux-usb@vger.kernel.org
21176 S:      Maintained
21177 F:      drivers/usb/typec/mux/pi3usb30532.c
21178
21179 USB TYPEC PORT CONTROLLER DRIVERS
21180 M:      Guenter Roeck <linux@roeck-us.net>
21181 L:      linux-usb@vger.kernel.org
21182 S:      Maintained
21183 F:      drivers/usb/typec/tcpm/
21184
21185 USB UHCI DRIVER
21186 M:      Alan Stern <stern@rowland.harvard.edu>
21187 L:      linux-usb@vger.kernel.org
21188 S:      Maintained
21189 F:      drivers/usb/host/uhci*
21190
21191 USB VIDEO CLASS
21192 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21193 L:      linux-media@vger.kernel.org
21194 S:      Maintained
21195 W:      http://www.ideasonboard.org/uvc/
21196 T:      git git://linuxtv.org/media_tree.git
21197 F:      drivers/media/usb/uvc/
21198 F:      include/uapi/linux/uvcvideo.h
21199
21200 USB WEBCAM GADGET
21201 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21202 L:      linux-usb@vger.kernel.org
21203 S:      Maintained
21204 F:      drivers/usb/gadget/function/*uvc*
21205 F:      drivers/usb/gadget/legacy/webcam.c
21206 F:      include/uapi/linux/usb/g_uvc.h
21207
21208 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21209 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21210 L:      linux-wireless@vger.kernel.org
21211 S:      Maintained
21212 F:      drivers/net/wireless/rndis_wlan.c
21213
21214 USB XHCI DRIVER
21215 M:      Mathias Nyman <mathias.nyman@intel.com>
21216 L:      linux-usb@vger.kernel.org
21217 S:      Supported
21218 F:      drivers/usb/host/pci-quirks*
21219 F:      drivers/usb/host/xhci*
21220
21221 USB ZD1201 DRIVER
21222 L:      linux-wireless@vger.kernel.org
21223 S:      Orphan
21224 W:      http://linux-lc100020.sourceforge.net
21225 F:      drivers/net/wireless/zydas/zd1201.*
21226
21227 USB ZR364XX DRIVER
21228 M:      Antoine Jacquet <royale@zerezo.com>
21229 L:      linux-usb@vger.kernel.org
21230 L:      linux-media@vger.kernel.org
21231 S:      Maintained
21232 W:      http://royale.zerezo.com/zr364xx/
21233 T:      git git://linuxtv.org/media_tree.git
21234 F:      Documentation/admin-guide/media/zr364xx*
21235 F:      drivers/media/usb/zr364xx/
21236
21237 USER-MODE LINUX (UML)
21238 M:      Richard Weinberger <richard@nod.at>
21239 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21240 M:      Johannes Berg <johannes@sipsolutions.net>
21241 L:      linux-um@lists.infradead.org
21242 S:      Maintained
21243 W:      http://user-mode-linux.sourceforge.net
21244 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21247 F:      Documentation/virt/uml/
21248 F:      arch/um/
21249 F:      arch/x86/um/
21250 F:      fs/hostfs/
21251
21252 USERSPACE COPYIN/COPYOUT (UIOVEC)
21253 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21254 S:      Maintained
21255 F:      include/linux/uio.h
21256 F:      lib/iov_iter.c
21257
21258 USERSPACE DMA BUFFER DRIVER
21259 M:      Gerd Hoffmann <kraxel@redhat.com>
21260 L:      dri-devel@lists.freedesktop.org
21261 S:      Maintained
21262 T:      git git://anongit.freedesktop.org/drm/drm-misc
21263 F:      drivers/dma-buf/udmabuf.c
21264 F:      include/uapi/linux/udmabuf.h
21265
21266 USERSPACE I/O (UIO)
21267 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21268 S:      Maintained
21269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21270 F:      Documentation/driver-api/uio-howto.rst
21271 F:      drivers/uio/
21272 F:      include/linux/uio_driver.h
21273
21274 UTIL-LINUX PACKAGE
21275 M:      Karel Zak <kzak@redhat.com>
21276 L:      util-linux@vger.kernel.org
21277 S:      Maintained
21278 W:      http://en.wikipedia.org/wiki/Util-linux
21279 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21280
21281 UUID HELPERS
21282 M:      Christoph Hellwig <hch@lst.de>
21283 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21284 L:      linux-kernel@vger.kernel.org
21285 S:      Maintained
21286 T:      git git://git.infradead.org/users/hch/uuid.git
21287 F:      include/linux/uuid.h
21288 F:      include/uapi/linux/uuid.h
21289 F:      lib/test_uuid.c
21290 F:      lib/uuid.c
21291
21292 UV SYSFS DRIVER
21293 M:      Justin Ernst <justin.ernst@hpe.com>
21294 L:      platform-driver-x86@vger.kernel.org
21295 S:      Maintained
21296 F:      drivers/platform/x86/uv_sysfs.c
21297
21298 UVESAFB DRIVER
21299 M:      Michal Januszewski <spock@gentoo.org>
21300 L:      linux-fbdev@vger.kernel.org
21301 S:      Maintained
21302 W:      https://github.com/mjanusz/v86d
21303 F:      Documentation/fb/uvesafb.rst
21304 F:      drivers/video/fbdev/uvesafb.*
21305
21306 Ux500 CLOCK DRIVERS
21307 M:      Ulf Hansson <ulf.hansson@linaro.org>
21308 L:      linux-clk@vger.kernel.org
21309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21310 S:      Maintained
21311 F:      drivers/clk/ux500/
21312
21313 VF610 NAND DRIVER
21314 M:      Stefan Agner <stefan@agner.ch>
21315 L:      linux-mtd@lists.infradead.org
21316 S:      Supported
21317 F:      drivers/mtd/nand/raw/vf610_nfc.c
21318
21319 VFAT/FAT/MSDOS FILESYSTEM
21320 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21321 S:      Maintained
21322 F:      Documentation/filesystems/vfat.rst
21323 F:      fs/fat/
21324 F:      tools/testing/selftests/filesystems/fat/
21325
21326 VFIO DRIVER
21327 M:      Alex Williamson <alex.williamson@redhat.com>
21328 R:      Cornelia Huck <cohuck@redhat.com>
21329 L:      kvm@vger.kernel.org
21330 S:      Maintained
21331 T:      git git://github.com/awilliam/linux-vfio.git
21332 F:      Documentation/driver-api/vfio.rst
21333 F:      drivers/vfio/
21334 F:      include/linux/vfio.h
21335 F:      include/linux/vfio_pci_core.h
21336 F:      include/uapi/linux/vfio.h
21337
21338 VFIO FSL-MC DRIVER
21339 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21340 L:      kvm@vger.kernel.org
21341 S:      Maintained
21342 F:      drivers/vfio/fsl-mc/
21343
21344 VFIO HISILICON PCI DRIVER
21345 M:      Longfang Liu <liulongfang@huawei.com>
21346 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21347 L:      kvm@vger.kernel.org
21348 S:      Maintained
21349 F:      drivers/vfio/pci/hisilicon/
21350
21351 VFIO MEDIATED DEVICE DRIVERS
21352 M:      Kirti Wankhede <kwankhede@nvidia.com>
21353 L:      kvm@vger.kernel.org
21354 S:      Maintained
21355 F:      Documentation/driver-api/vfio-mediated-device.rst
21356 F:      drivers/vfio/mdev/
21357 F:      include/linux/mdev.h
21358 F:      samples/vfio-mdev/
21359
21360 VFIO PCI DEVICE SPECIFIC DRIVERS
21361 R:      Jason Gunthorpe <jgg@nvidia.com>
21362 R:      Yishai Hadas <yishaih@nvidia.com>
21363 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21364 R:      Kevin Tian <kevin.tian@intel.com>
21365 L:      kvm@vger.kernel.org
21366 S:      Maintained
21367 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21368 F:      drivers/vfio/pci/*/
21369
21370 VFIO PLATFORM DRIVER
21371 M:      Eric Auger <eric.auger@redhat.com>
21372 L:      kvm@vger.kernel.org
21373 S:      Maintained
21374 F:      drivers/vfio/platform/
21375
21376 VFIO MLX5 PCI DRIVER
21377 M:      Yishai Hadas <yishaih@nvidia.com>
21378 L:      kvm@vger.kernel.org
21379 S:      Maintained
21380 F:      drivers/vfio/pci/mlx5/
21381
21382 VGA_SWITCHEROO
21383 R:      Lukas Wunner <lukas@wunner.de>
21384 S:      Maintained
21385 T:      git git://anongit.freedesktop.org/drm/drm-misc
21386 F:      Documentation/gpu/vga-switcheroo.rst
21387 F:      drivers/gpu/vga/vga_switcheroo.c
21388 F:      include/linux/vga_switcheroo.h
21389
21390 VIA RHINE NETWORK DRIVER
21391 S:      Maintained
21392 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21393 F:      drivers/net/ethernet/via/via-rhine.c
21394
21395 VIA SD/MMC CARD CONTROLLER DRIVER
21396 M:      Bruce Chang <brucechang@via.com.tw>
21397 M:      Harald Welte <HaraldWelte@viatech.com>
21398 S:      Maintained
21399 F:      drivers/mmc/host/via-sdmmc.c
21400
21401 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21402 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21403 L:      linux-fbdev@vger.kernel.org
21404 S:      Maintained
21405 F:      drivers/video/fbdev/via/
21406 F:      include/linux/via-core.h
21407 F:      include/linux/via-gpio.h
21408 F:      include/linux/via_i2c.h
21409
21410 VIA VELOCITY NETWORK DRIVER
21411 M:      Francois Romieu <romieu@fr.zoreil.com>
21412 L:      netdev@vger.kernel.org
21413 S:      Maintained
21414 F:      drivers/net/ethernet/via/via-velocity.*
21415
21416 VICODEC VIRTUAL CODEC DRIVER
21417 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21418 L:      linux-media@vger.kernel.org
21419 S:      Maintained
21420 W:      https://linuxtv.org
21421 T:      git git://linuxtv.org/media_tree.git
21422 F:      drivers/media/test-drivers/vicodec/*
21423
21424 VIDEO I2C POLLING DRIVER
21425 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21426 L:      linux-media@vger.kernel.org
21427 S:      Maintained
21428 F:      drivers/media/i2c/video-i2c.c
21429
21430 VIDEO MULTIPLEXER DRIVER
21431 M:      Philipp Zabel <p.zabel@pengutronix.de>
21432 L:      linux-media@vger.kernel.org
21433 S:      Maintained
21434 F:      drivers/media/platform/video-mux.c
21435
21436 VIDEOBUF2 FRAMEWORK
21437 M:      Tomasz Figa <tfiga@chromium.org>
21438 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21439 L:      linux-media@vger.kernel.org
21440 S:      Maintained
21441 F:      drivers/media/common/videobuf2/*
21442 F:      include/media/videobuf2-*
21443
21444 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21445 M:      Shuah Khan <skhan@linuxfoundation.org>
21446 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21447 L:      linux-media@vger.kernel.org
21448 S:      Maintained
21449 W:      https://linuxtv.org
21450 T:      git git://linuxtv.org/media_tree.git
21451 F:      drivers/media/test-drivers/vimc/*
21452
21453 VIRT LIB
21454 M:      Alex Williamson <alex.williamson@redhat.com>
21455 M:      Paolo Bonzini <pbonzini@redhat.com>
21456 L:      kvm@vger.kernel.org
21457 S:      Supported
21458 F:      virt/lib/
21459
21460 VIRTIO AND VHOST VSOCK DRIVER
21461 M:      Stefan Hajnoczi <stefanha@redhat.com>
21462 M:      Stefano Garzarella <sgarzare@redhat.com>
21463 L:      kvm@vger.kernel.org
21464 L:      virtualization@lists.linux-foundation.org
21465 L:      netdev@vger.kernel.org
21466 S:      Maintained
21467 F:      drivers/vhost/vsock.c
21468 F:      include/linux/virtio_vsock.h
21469 F:      include/uapi/linux/virtio_vsock.h
21470 F:      net/vmw_vsock/virtio_transport.c
21471 F:      net/vmw_vsock/virtio_transport_common.c
21472
21473 VIRTIO BLOCK AND SCSI DRIVERS
21474 M:      "Michael S. Tsirkin" <mst@redhat.com>
21475 M:      Jason Wang <jasowang@redhat.com>
21476 R:      Paolo Bonzini <pbonzini@redhat.com>
21477 R:      Stefan Hajnoczi <stefanha@redhat.com>
21478 L:      virtualization@lists.linux-foundation.org
21479 S:      Maintained
21480 F:      drivers/block/virtio_blk.c
21481 F:      drivers/scsi/virtio_scsi.c
21482 F:      drivers/vhost/scsi.c
21483 F:      include/uapi/linux/virtio_blk.h
21484 F:      include/uapi/linux/virtio_scsi.h
21485
21486 VIRTIO CONSOLE DRIVER
21487 M:      Amit Shah <amit@kernel.org>
21488 L:      virtualization@lists.linux-foundation.org
21489 S:      Maintained
21490 F:      drivers/char/virtio_console.c
21491 F:      include/linux/virtio_console.h
21492 F:      include/uapi/linux/virtio_console.h
21493
21494 VIRTIO CORE AND NET DRIVERS
21495 M:      "Michael S. Tsirkin" <mst@redhat.com>
21496 M:      Jason Wang <jasowang@redhat.com>
21497 L:      virtualization@lists.linux-foundation.org
21498 S:      Maintained
21499 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21500 F:      Documentation/ABI/testing/sysfs-class-vduse
21501 F:      Documentation/devicetree/bindings/virtio/
21502 F:      drivers/block/virtio_blk.c
21503 F:      drivers/crypto/virtio/
21504 F:      drivers/net/virtio_net.c
21505 F:      drivers/vdpa/
21506 F:      drivers/virtio/
21507 F:      include/linux/vdpa.h
21508 F:      include/linux/virtio*.h
21509 F:      include/uapi/linux/virtio_*.h
21510 F:      tools/virtio/
21511
21512 VIRTIO BALLOON
21513 M:      "Michael S. Tsirkin" <mst@redhat.com>
21514 M:      David Hildenbrand <david@redhat.com>
21515 L:      virtualization@lists.linux-foundation.org
21516 S:      Maintained
21517 F:      drivers/virtio/virtio_balloon.c
21518 F:      include/uapi/linux/virtio_balloon.h
21519 F:      include/linux/balloon_compaction.h
21520 F:      mm/balloon_compaction.c
21521
21522 VIRTIO CRYPTO DRIVER
21523 M:      Gonglei <arei.gonglei@huawei.com>
21524 L:      virtualization@lists.linux-foundation.org
21525 L:      linux-crypto@vger.kernel.org
21526 S:      Maintained
21527 F:      drivers/crypto/virtio/
21528 F:      include/uapi/linux/virtio_crypto.h
21529
21530 VIRTIO DRIVERS FOR S390
21531 M:      Cornelia Huck <cohuck@redhat.com>
21532 M:      Halil Pasic <pasic@linux.ibm.com>
21533 M:      Eric Farman <farman@linux.ibm.com>
21534 L:      linux-s390@vger.kernel.org
21535 L:      virtualization@lists.linux-foundation.org
21536 L:      kvm@vger.kernel.org
21537 S:      Supported
21538 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21539 F:      drivers/s390/virtio/
21540
21541 VIRTIO FILE SYSTEM
21542 M:      Vivek Goyal <vgoyal@redhat.com>
21543 M:      Stefan Hajnoczi <stefanha@redhat.com>
21544 M:      Miklos Szeredi <miklos@szeredi.hu>
21545 L:      virtualization@lists.linux-foundation.org
21546 L:      linux-fsdevel@vger.kernel.org
21547 S:      Supported
21548 W:      https://virtio-fs.gitlab.io/
21549 F:      Documentation/filesystems/virtiofs.rst
21550 F:      fs/fuse/virtio_fs.c
21551 F:      include/uapi/linux/virtio_fs.h
21552
21553 VIRTIO GPIO DRIVER
21554 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21555 M:      Viresh Kumar <vireshk@kernel.org>
21556 L:      linux-gpio@vger.kernel.org
21557 L:      virtualization@lists.linux-foundation.org
21558 S:      Maintained
21559 F:      drivers/gpio/gpio-virtio.c
21560 F:      include/uapi/linux/virtio_gpio.h
21561
21562 VIRTIO GPU DRIVER
21563 M:      David Airlie <airlied@linux.ie>
21564 M:      Gerd Hoffmann <kraxel@redhat.com>
21565 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21566 R:      Chia-I Wu <olvaffe@gmail.com>
21567 L:      dri-devel@lists.freedesktop.org
21568 L:      virtualization@lists.linux-foundation.org
21569 S:      Maintained
21570 T:      git git://anongit.freedesktop.org/drm/drm-misc
21571 F:      drivers/gpu/drm/virtio/
21572 F:      include/uapi/linux/virtio_gpu.h
21573
21574 VIRTIO HOST (VHOST)
21575 M:      "Michael S. Tsirkin" <mst@redhat.com>
21576 M:      Jason Wang <jasowang@redhat.com>
21577 L:      kvm@vger.kernel.org
21578 L:      virtualization@lists.linux-foundation.org
21579 L:      netdev@vger.kernel.org
21580 S:      Maintained
21581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21582 F:      drivers/vhost/
21583 F:      include/linux/vhost_iotlb.h
21584 F:      include/uapi/linux/vhost.h
21585
21586 VIRTIO INPUT DRIVER
21587 M:      Gerd Hoffmann <kraxel@redhat.com>
21588 S:      Maintained
21589 F:      drivers/virtio/virtio_input.c
21590 F:      include/uapi/linux/virtio_input.h
21591
21592 VIRTIO IOMMU DRIVER
21593 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21594 L:      virtualization@lists.linux-foundation.org
21595 S:      Maintained
21596 F:      drivers/iommu/virtio-iommu.c
21597 F:      include/uapi/linux/virtio_iommu.h
21598
21599 VIRTIO MEM DRIVER
21600 M:      David Hildenbrand <david@redhat.com>
21601 L:      virtualization@lists.linux-foundation.org
21602 S:      Maintained
21603 W:      https://virtio-mem.gitlab.io/
21604 F:      drivers/virtio/virtio_mem.c
21605 F:      include/uapi/linux/virtio_mem.h
21606
21607 VIRTIO SOUND DRIVER
21608 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21609 M:      "Michael S. Tsirkin" <mst@redhat.com>
21610 L:      virtualization@lists.linux-foundation.org
21611 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21612 S:      Maintained
21613 F:      include/uapi/linux/virtio_snd.h
21614 F:      sound/virtio/*
21615
21616 VIRTIO I2C DRIVER
21617 M:      Conghui Chen <conghui.chen@intel.com>
21618 M:      Viresh Kumar <viresh.kumar@linaro.org>
21619 L:      linux-i2c@vger.kernel.org
21620 L:      virtualization@lists.linux-foundation.org
21621 S:      Maintained
21622 F:      drivers/i2c/busses/i2c-virtio.c
21623 F:      include/uapi/linux/virtio_i2c.h
21624
21625 VIRTIO PMEM DRIVER
21626 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21627 L:      virtualization@lists.linux-foundation.org
21628 S:      Maintained
21629 F:      drivers/nvdimm/virtio_pmem.c
21630 F:      drivers/nvdimm/nd_virtio.c
21631
21632 VIRTUAL BOX GUEST DEVICE DRIVER
21633 M:      Hans de Goede <hdegoede@redhat.com>
21634 M:      Arnd Bergmann <arnd@arndb.de>
21635 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21636 S:      Maintained
21637 F:      drivers/virt/vboxguest/
21638 F:      include/linux/vbox_utils.h
21639 F:      include/uapi/linux/vbox*.h
21640
21641 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21642 M:      Hans de Goede <hdegoede@redhat.com>
21643 L:      linux-fsdevel@vger.kernel.org
21644 S:      Maintained
21645 F:      fs/vboxsf/*
21646
21647 VIRTUAL SERIO DEVICE DRIVER
21648 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21649 S:      Maintained
21650 F:      drivers/input/serio/userio.c
21651 F:      include/uapi/linux/userio.h
21652
21653 VIVID VIRTUAL VIDEO DRIVER
21654 M:      Hans Verkuil <hverkuil@xs4all.nl>
21655 L:      linux-media@vger.kernel.org
21656 S:      Maintained
21657 W:      https://linuxtv.org
21658 T:      git git://linuxtv.org/media_tree.git
21659 F:      drivers/media/test-drivers/vivid/*
21660
21661 VIDTV VIRTUAL DIGITAL TV DRIVER
21662 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21663 L:      linux-media@vger.kernel.org
21664 S:      Maintained
21665 W:      https://linuxtv.org
21666 T:      git git://linuxtv.org/media_tree.git
21667 F:      drivers/media/test-drivers/vidtv/*
21668
21669 VLYNQ BUS
21670 M:      Florian Fainelli <f.fainelli@gmail.com>
21671 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21672 S:      Maintained
21673 F:      drivers/vlynq/vlynq.c
21674 F:      include/linux/vlynq.h
21675
21676 VME SUBSYSTEM
21677 M:      Martyn Welch <martyn@welchs.me.uk>
21678 M:      Manohar Vanga <manohar.vanga@gmail.com>
21679 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21680 L:      linux-kernel@vger.kernel.org
21681 S:      Odd fixes
21682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21683 F:      Documentation/driver-api/vme.rst
21684 F:      drivers/staging/vme_user/
21685
21686 VM SOCKETS (AF_VSOCK)
21687 M:      Stefano Garzarella <sgarzare@redhat.com>
21688 L:      virtualization@lists.linux-foundation.org
21689 L:      netdev@vger.kernel.org
21690 S:      Maintained
21691 F:      drivers/net/vsockmon.c
21692 F:      include/net/af_vsock.h
21693 F:      include/uapi/linux/vm_sockets.h
21694 F:      include/uapi/linux/vm_sockets_diag.h
21695 F:      include/uapi/linux/vsockmon.h
21696 F:      net/vmw_vsock/
21697 F:      tools/testing/vsock/
21698
21699 VMWARE BALLOON DRIVER
21700 M:      Nadav Amit <namit@vmware.com>
21701 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21702 L:      linux-kernel@vger.kernel.org
21703 S:      Supported
21704 F:      drivers/misc/vmw_balloon.c
21705
21706 VMWARE HYPERVISOR INTERFACE
21707 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21708 M:      Alexey Makhalov <amakhalov@vmware.com>
21709 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21710 L:      virtualization@lists.linux-foundation.org
21711 L:      x86@kernel.org
21712 S:      Supported
21713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21714 F:      arch/x86/include/asm/vmware.h
21715 F:      arch/x86/kernel/cpu/vmware.c
21716
21717 VMWARE PVRDMA DRIVER
21718 M:      Bryan Tan <bryantan@vmware.com>
21719 M:      Vishnu Dasa <vdasa@vmware.com>
21720 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21721 L:      linux-rdma@vger.kernel.org
21722 S:      Supported
21723 F:      drivers/infiniband/hw/vmw_pvrdma/
21724
21725 VMWARE PVSCSI DRIVER
21726 M:      Vishal Bhakta <vbhakta@vmware.com>
21727 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21728 L:      linux-scsi@vger.kernel.org
21729 S:      Supported
21730 F:      drivers/scsi/vmw_pvscsi.c
21731 F:      drivers/scsi/vmw_pvscsi.h
21732
21733 VMWARE VIRTUAL PTP CLOCK DRIVER
21734 M:      Vivek Thampi <vithampi@vmware.com>
21735 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21736 L:      netdev@vger.kernel.org
21737 S:      Supported
21738 F:      drivers/ptp/ptp_vmw.c
21739
21740 VMWARE VMCI DRIVER
21741 M:      Bryan Tan <bryantan@vmware.com>
21742 M:      Vishnu Dasa <vdasa@vmware.com>
21743 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21744 L:      linux-kernel@vger.kernel.org
21745 S:      Supported
21746 F:      drivers/misc/vmw_vmci/
21747
21748 VMWARE VMMOUSE SUBDRIVER
21749 M:      Zack Rusin <zackr@vmware.com>
21750 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21751 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21752 L:      linux-input@vger.kernel.org
21753 S:      Supported
21754 F:      drivers/input/mouse/vmmouse.c
21755 F:      drivers/input/mouse/vmmouse.h
21756
21757 VMWARE VMXNET3 ETHERNET DRIVER
21758 M:      Ronak Doshi <doshir@vmware.com>
21759 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21760 L:      netdev@vger.kernel.org
21761 S:      Supported
21762 F:      drivers/net/vmxnet3/
21763
21764 VMWARE VSOCK VMCI TRANSPORT DRIVER
21765 M:      Bryan Tan <bryantan@vmware.com>
21766 M:      Vishnu Dasa <vdasa@vmware.com>
21767 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21768 L:      linux-kernel@vger.kernel.org
21769 S:      Supported
21770 F:      net/vmw_vsock/vmci_transport*
21771
21772 VOCORE VOCORE2 BOARD
21773 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21774 L:      linux-mips@vger.kernel.org
21775 S:      Maintained
21776 F:      arch/mips/boot/dts/ralink/vocore2.dts
21777
21778 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21779 M:      Liam Girdwood <lgirdwood@gmail.com>
21780 M:      Mark Brown <broonie@kernel.org>
21781 L:      linux-kernel@vger.kernel.org
21782 S:      Supported
21783 W:      http://www.slimlogic.co.uk/?p=48
21784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21785 F:      Documentation/devicetree/bindings/regulator/
21786 F:      Documentation/power/regulator/
21787 F:      drivers/regulator/
21788 F:      include/dt-bindings/regulator/
21789 F:      include/linux/regulator/
21790 K:      regulator_get_optional
21791
21792 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21793 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21794 F:      drivers/regulator/irq_helpers.c
21795
21796 VRF
21797 M:      David Ahern <dsahern@kernel.org>
21798 L:      netdev@vger.kernel.org
21799 S:      Maintained
21800 F:      Documentation/networking/vrf.rst
21801 F:      drivers/net/vrf.c
21802
21803 VSPRINTF
21804 M:      Petr Mladek <pmladek@suse.com>
21805 M:      Steven Rostedt <rostedt@goodmis.org>
21806 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21807 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21808 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21809 S:      Maintained
21810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21811 F:      Documentation/core-api/printk-formats.rst
21812 F:      lib/test_printf.c
21813 F:      lib/test_scanf.c
21814 F:      lib/vsprintf.c
21815
21816 VT1211 HARDWARE MONITOR DRIVER
21817 M:      Juerg Haefliger <juergh@gmail.com>
21818 L:      linux-hwmon@vger.kernel.org
21819 S:      Maintained
21820 F:      Documentation/hwmon/vt1211.rst
21821 F:      drivers/hwmon/vt1211.c
21822
21823 VT8231 HARDWARE MONITOR DRIVER
21824 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21825 L:      linux-hwmon@vger.kernel.org
21826 S:      Maintained
21827 F:      drivers/hwmon/vt8231.c
21828
21829 VUB300 USB to SDIO/SD/MMC bridge chip
21830 L:      linux-mmc@vger.kernel.org
21831 S:      Orphan
21832 F:      drivers/mmc/host/vub300.c
21833
21834 W1 DALLAS'S 1-WIRE BUS
21835 M:      Evgeniy Polyakov <zbr@ioremap.net>
21836 S:      Maintained
21837 F:      Documentation/devicetree/bindings/w1/
21838 F:      Documentation/w1/
21839 F:      drivers/w1/
21840 F:      include/linux/w1.h
21841
21842 W83791D HARDWARE MONITORING DRIVER
21843 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21844 L:      linux-hwmon@vger.kernel.org
21845 S:      Maintained
21846 F:      Documentation/hwmon/w83791d.rst
21847 F:      drivers/hwmon/w83791d.c
21848
21849 W83793 HARDWARE MONITORING DRIVER
21850 M:      Rudolf Marek <r.marek@assembler.cz>
21851 L:      linux-hwmon@vger.kernel.org
21852 S:      Maintained
21853 F:      Documentation/hwmon/w83793.rst
21854 F:      drivers/hwmon/w83793.c
21855
21856 W83795 HARDWARE MONITORING DRIVER
21857 M:      Jean Delvare <jdelvare@suse.com>
21858 L:      linux-hwmon@vger.kernel.org
21859 S:      Maintained
21860 F:      drivers/hwmon/w83795.c
21861
21862 W83L51xD SD/MMC CARD INTERFACE DRIVER
21863 M:      Pierre Ossman <pierre@ossman.eu>
21864 S:      Maintained
21865 F:      drivers/mmc/host/wbsd.*
21866
21867 WACOM PROTOCOL 4 SERIAL TABLETS
21868 M:      Julian Squires <julian@cipht.net>
21869 M:      Hans de Goede <hdegoede@redhat.com>
21870 L:      linux-input@vger.kernel.org
21871 S:      Maintained
21872 F:      drivers/input/tablet/wacom_serial4.c
21873
21874 WANGXUN ETHERNET DRIVER
21875 M:      Jiawen Wu <jiawenwu@trustnetic.com>
21876 L:      netdev@vger.kernel.org
21877 S:      Maintained
21878 F:      Documentation/networking/device_drivers/ethernet/wangxun/txgbe.rst
21879 F:      drivers/net/ethernet/wangxun/
21880
21881 WATCHDOG DEVICE DRIVERS
21882 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21883 M:      Guenter Roeck <linux@roeck-us.net>
21884 L:      linux-watchdog@vger.kernel.org
21885 S:      Maintained
21886 W:      http://www.linux-watchdog.org/
21887 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21888 F:      Documentation/devicetree/bindings/watchdog/
21889 F:      Documentation/watchdog/
21890 F:      drivers/watchdog/
21891 F:      include/linux/watchdog.h
21892 F:      include/uapi/linux/watchdog.h
21893
21894 WHISKEYCOVE PMIC GPIO DRIVER
21895 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21896 L:      linux-gpio@vger.kernel.org
21897 S:      Maintained
21898 F:      drivers/gpio/gpio-wcove.c
21899
21900 WHWAVE RTC DRIVER
21901 M:      Dianlong Li <long17.cool@163.com>
21902 L:      linux-rtc@vger.kernel.org
21903 S:      Maintained
21904 F:      drivers/rtc/rtc-sd3078.c
21905
21906 WIIMOTE HID DRIVER
21907 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21908 L:      linux-input@vger.kernel.org
21909 S:      Maintained
21910 F:      drivers/hid/hid-wiimote*
21911
21912 WILOCITY WIL6210 WIRELESS DRIVER
21913 L:      linux-wireless@vger.kernel.org
21914 S:      Orphan
21915 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21916 F:      drivers/net/wireless/ath/wil6210/
21917
21918 WINBOND CIR DRIVER
21919 M:      David Härdeman <david@hardeman.nu>
21920 S:      Maintained
21921 F:      drivers/media/rc/winbond-cir.c
21922
21923 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21924 M:      William Breathitt Gray <william.gray@linaro.org>
21925 L:      linux-watchdog@vger.kernel.org
21926 S:      Maintained
21927 F:      drivers/watchdog/ebc-c384_wdt.c
21928
21929 WINSYSTEMS WS16C48 GPIO DRIVER
21930 M:      William Breathitt Gray <william.gray@linaro.org>
21931 L:      linux-gpio@vger.kernel.org
21932 S:      Maintained
21933 F:      drivers/gpio/gpio-ws16c48.c
21934
21935 WIREGUARD SECURE NETWORK TUNNEL
21936 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21937 L:      wireguard@lists.zx2c4.com
21938 L:      netdev@vger.kernel.org
21939 S:      Maintained
21940 F:      drivers/net/wireguard/
21941 F:      tools/testing/selftests/wireguard/
21942
21943 WISTRON LAPTOP BUTTON DRIVER
21944 M:      Miloslav Trmac <mitr@volny.cz>
21945 S:      Maintained
21946 F:      drivers/input/misc/wistron_btns.c
21947
21948 WL3501 WIRELESS PCMCIA CARD DRIVER
21949 L:      linux-wireless@vger.kernel.org
21950 S:      Odd fixes
21951 F:      drivers/net/wireless/wl3501*
21952
21953 WOLFSON MICROELECTRONICS DRIVERS
21954 L:      patches@opensource.cirrus.com
21955 S:      Supported
21956 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21957 T:      git https://github.com/CirrusLogic/linux-drivers.git
21958 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21959 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21960 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21961 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21962 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21963 F:      Documentation/devicetree/bindings/sound/wm*
21964 F:      Documentation/hwmon/wm83??.rst
21965 F:      arch/arm/mach-s3c/mach-crag6410*
21966 F:      drivers/clk/clk-wm83*.c
21967 F:      drivers/gpio/gpio-*wm*.c
21968 F:      drivers/gpio/gpio-arizona.c
21969 F:      drivers/hwmon/wm83??-hwmon.c
21970 F:      drivers/input/misc/wm831x-on.c
21971 F:      drivers/input/touchscreen/wm831x-ts.c
21972 F:      drivers/input/touchscreen/wm97*.c
21973 F:      drivers/leds/leds-wm83*.c
21974 F:      drivers/mfd/arizona*
21975 F:      drivers/mfd/cs47l24*
21976 F:      drivers/mfd/wm*.c
21977 F:      drivers/power/supply/wm83*.c
21978 F:      drivers/regulator/arizona*
21979 F:      drivers/regulator/wm8*.c
21980 F:      drivers/rtc/rtc-wm83*.c
21981 F:      drivers/video/backlight/wm83*_bl.c
21982 F:      drivers/watchdog/wm83*_wdt.c
21983 F:      include/linux/mfd/arizona/
21984 F:      include/linux/mfd/wm831x/
21985 F:      include/linux/mfd/wm8350/
21986 F:      include/linux/mfd/wm8400*
21987 F:      include/linux/regulator/arizona*
21988 F:      include/linux/wm97xx.h
21989 F:      include/sound/wm????.h
21990 F:      sound/soc/codecs/arizona*
21991 F:      sound/soc/codecs/cs47l24*
21992 F:      sound/soc/codecs/wm*
21993
21994 WORKQUEUE
21995 M:      Tejun Heo <tj@kernel.org>
21996 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21997 S:      Maintained
21998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21999 F:      Documentation/core-api/workqueue.rst
22000 F:      include/linux/workqueue.h
22001 F:      kernel/workqueue.c
22002
22003 WWAN DRIVERS
22004 M:      Loic Poulain <loic.poulain@linaro.org>
22005 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22006 R:      Johannes Berg <johannes@sipsolutions.net>
22007 L:      netdev@vger.kernel.org
22008 S:      Maintained
22009 F:      drivers/net/wwan/
22010 F:      include/linux/wwan.h
22011 F:      include/uapi/linux/wwan.h
22012
22013 X-POWERS AXP288 PMIC DRIVERS
22014 M:      Hans de Goede <hdegoede@redhat.com>
22015 S:      Maintained
22016 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22017 N:      axp288
22018
22019 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22020 M:      Chen-Yu Tsai <wens@csie.org>
22021 L:      linux-kernel@vger.kernel.org
22022 S:      Maintained
22023 N:      axp[128]
22024
22025 X.25 STACK
22026 M:      Martin Schiller <ms@dev.tdt.de>
22027 L:      linux-x25@vger.kernel.org
22028 S:      Maintained
22029 F:      Documentation/networking/lapb-module.rst
22030 F:      Documentation/networking/x25*
22031 F:      drivers/net/wan/hdlc_x25.c
22032 F:      drivers/net/wan/lapbether.c
22033 F:      include/*/lapb.h
22034 F:      include/net/x25*
22035 F:      include/uapi/linux/x25.h
22036 F:      net/lapb/
22037 F:      net/x25/
22038
22039 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22040 M:      Thomas Gleixner <tglx@linutronix.de>
22041 M:      Ingo Molnar <mingo@redhat.com>
22042 M:      Borislav Petkov <bp@alien8.de>
22043 M:      Dave Hansen <dave.hansen@linux.intel.com>
22044 M:      x86@kernel.org
22045 R:      "H. Peter Anvin" <hpa@zytor.com>
22046 L:      linux-kernel@vger.kernel.org
22047 S:      Maintained
22048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22049 F:      Documentation/devicetree/bindings/x86/
22050 F:      Documentation/x86/
22051 F:      arch/x86/
22052
22053 X86 ENTRY CODE
22054 M:      Andy Lutomirski <luto@kernel.org>
22055 L:      linux-kernel@vger.kernel.org
22056 S:      Maintained
22057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22058 F:      arch/x86/entry/
22059
22060 X86 MCE INFRASTRUCTURE
22061 M:      Tony Luck <tony.luck@intel.com>
22062 M:      Borislav Petkov <bp@alien8.de>
22063 L:      linux-edac@vger.kernel.org
22064 S:      Maintained
22065 F:      Documentation/ABI/testing/sysfs-mce
22066 F:      Documentation/x86/x86_64/machinecheck.rst
22067 F:      arch/x86/kernel/cpu/mce/*
22068
22069 X86 MICROCODE UPDATE SUPPORT
22070 M:      Borislav Petkov <bp@alien8.de>
22071 S:      Maintained
22072 F:      arch/x86/kernel/cpu/microcode/*
22073
22074 X86 MM
22075 M:      Dave Hansen <dave.hansen@linux.intel.com>
22076 M:      Andy Lutomirski <luto@kernel.org>
22077 M:      Peter Zijlstra <peterz@infradead.org>
22078 L:      linux-kernel@vger.kernel.org
22079 S:      Maintained
22080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22081 F:      arch/x86/mm/
22082
22083 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22084 M:      Hans de Goede <hdegoede@redhat.com>
22085 L:      platform-driver-x86@vger.kernel.org
22086 S:      Maintained
22087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22088 F:      drivers/platform/x86/x86-android-tablets.c
22089
22090 X86 PLATFORM DRIVERS
22091 M:      Hans de Goede <hdegoede@redhat.com>
22092 M:      Mark Gross <markgross@kernel.org>
22093 L:      platform-driver-x86@vger.kernel.org
22094 S:      Maintained
22095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22096 F:      drivers/platform/olpc/
22097 F:      drivers/platform/x86/
22098
22099 X86 PLATFORM DRIVERS - ARCH
22100 R:      Darren Hart <dvhart@infradead.org>
22101 R:      Andy Shevchenko <andy@infradead.org>
22102 L:      platform-driver-x86@vger.kernel.org
22103 L:      x86@kernel.org
22104 S:      Maintained
22105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22106 F:      arch/x86/platform
22107
22108 X86 PLATFORM UV HPE SUPERDOME FLEX
22109 M:      Steve Wahl <steve.wahl@hpe.com>
22110 R:      Mike Travis <mike.travis@hpe.com>
22111 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22112 R:      Russ Anderson <russ.anderson@hpe.com>
22113 S:      Supported
22114 F:      arch/x86/include/asm/uv/
22115 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22116 F:      arch/x86/platform/uv/
22117
22118 X86 STACK UNWINDING
22119 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22120 M:      Peter Zijlstra <peterz@infradead.org>
22121 S:      Supported
22122 F:      arch/x86/include/asm/unwind*.h
22123 F:      arch/x86/kernel/dumpstack.c
22124 F:      arch/x86/kernel/stacktrace.c
22125 F:      arch/x86/kernel/unwind_*.c
22126
22127 X86 VDSO
22128 M:      Andy Lutomirski <luto@kernel.org>
22129 L:      linux-kernel@vger.kernel.org
22130 S:      Maintained
22131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22132 F:      arch/x86/entry/vdso/
22133
22134 XARRAY
22135 M:      Matthew Wilcox <willy@infradead.org>
22136 L:      linux-fsdevel@vger.kernel.org
22137 S:      Supported
22138 F:      Documentation/core-api/xarray.rst
22139 F:      include/linux/idr.h
22140 F:      include/linux/xarray.h
22141 F:      lib/idr.c
22142 F:      lib/xarray.c
22143 F:      tools/testing/radix-tree
22144
22145 XBOX DVD IR REMOTE
22146 M:      Benjamin Valentin <benpicco@googlemail.com>
22147 S:      Maintained
22148 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22149 F:      drivers/media/rc/xbox_remote.c
22150
22151 XC2028/3028 TUNER DRIVER
22152 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22153 L:      linux-media@vger.kernel.org
22154 S:      Maintained
22155 W:      https://linuxtv.org
22156 T:      git git://linuxtv.org/media_tree.git
22157 F:      drivers/media/tuners/xc2028.*
22158
22159 XDP (eXpress Data Path)
22160 M:      Alexei Starovoitov <ast@kernel.org>
22161 M:      Daniel Borkmann <daniel@iogearbox.net>
22162 M:      David S. Miller <davem@davemloft.net>
22163 M:      Jakub Kicinski <kuba@kernel.org>
22164 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22165 M:      John Fastabend <john.fastabend@gmail.com>
22166 L:      netdev@vger.kernel.org
22167 L:      bpf@vger.kernel.org
22168 S:      Supported
22169 F:      include/net/xdp.h
22170 F:      include/net/xdp_priv.h
22171 F:      include/trace/events/xdp.h
22172 F:      kernel/bpf/cpumap.c
22173 F:      kernel/bpf/devmap.c
22174 F:      net/core/xdp.c
22175 F:      samples/bpf/xdp*
22176 F:      tools/testing/selftests/bpf/*xdp*
22177 F:      tools/testing/selftests/bpf/*/*xdp*
22178 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22179 F:      drivers/net/ethernet/*/*/*xdp*
22180 K:      (?:\b|_)xdp(?:\b|_)
22181
22182 XDP SOCKETS (AF_XDP)
22183 M:      Björn Töpel <bjorn@kernel.org>
22184 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22185 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22186 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22187 L:      netdev@vger.kernel.org
22188 L:      bpf@vger.kernel.org
22189 S:      Maintained
22190 F:      Documentation/networking/af_xdp.rst
22191 F:      include/net/xdp_sock*
22192 F:      include/net/xsk_buff_pool.h
22193 F:      include/uapi/linux/if_xdp.h
22194 F:      include/uapi/linux/xdp_diag.h
22195 F:      include/net/netns/xdp.h
22196 F:      net/xdp/
22197 F:      tools/testing/selftests/bpf/*xsk*
22198
22199 XEN BLOCK SUBSYSTEM
22200 M:      Roger Pau Monné <roger.pau@citrix.com>
22201 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22202 S:      Supported
22203 F:      drivers/block/xen*
22204 F:      drivers/block/xen-blkback/*
22205
22206 XEN HYPERVISOR ARM
22207 M:      Stefano Stabellini <sstabellini@kernel.org>
22208 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22209 S:      Maintained
22210 F:      arch/arm/include/asm/xen/
22211 F:      arch/arm/xen/
22212
22213 XEN HYPERVISOR ARM64
22214 M:      Stefano Stabellini <sstabellini@kernel.org>
22215 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22216 S:      Maintained
22217 F:      arch/arm64/include/asm/xen/
22218 F:      arch/arm64/xen/
22219
22220 XEN HYPERVISOR INTERFACE
22221 M:      Juergen Gross <jgross@suse.com>
22222 M:      Stefano Stabellini <sstabellini@kernel.org>
22223 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22224 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22225 S:      Supported
22226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22227 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22228 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22229 F:      drivers/*/xen-*front.c
22230 F:      drivers/xen/
22231 F:      include/uapi/xen/
22232 F:      include/xen/
22233 F:      kernel/configs/xen.config
22234
22235 XEN HYPERVISOR X86
22236 M:      Juergen Gross <jgross@suse.com>
22237 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22238 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22239 S:      Supported
22240 F:      arch/x86/configs/xen.config
22241 F:      arch/x86/include/asm/pvclock-abi.h
22242 F:      arch/x86/include/asm/xen/
22243 F:      arch/x86/platform/pvh/
22244 F:      arch/x86/xen/
22245
22246 XEN NETWORK BACKEND DRIVER
22247 M:      Wei Liu <wei.liu@kernel.org>
22248 M:      Paul Durrant <paul@xen.org>
22249 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22250 L:      netdev@vger.kernel.org
22251 S:      Supported
22252 F:      drivers/net/xen-netback/*
22253
22254 XEN PCI SUBSYSTEM
22255 M:      Juergen Gross <jgross@suse.com>
22256 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22257 S:      Supported
22258 F:      arch/x86/pci/*xen*
22259 F:      drivers/pci/*xen*
22260
22261 XEN PVSCSI DRIVERS
22262 M:      Juergen Gross <jgross@suse.com>
22263 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22264 L:      linux-scsi@vger.kernel.org
22265 S:      Supported
22266 F:      drivers/scsi/xen-scsifront.c
22267 F:      drivers/xen/xen-scsiback.c
22268 F:      include/xen/interface/io/vscsiif.h
22269
22270 XEN PVUSB DRIVER
22271 M:      Juergen Gross <jgross@suse.com>
22272 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22273 L:      linux-usb@vger.kernel.org
22274 S:      Supported
22275 F:      drivers/usb/host/xen*
22276 F:      include/xen/interface/io/usbif.h
22277
22278 XEN SOUND FRONTEND DRIVER
22279 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22280 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22281 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22282 S:      Supported
22283 F:      sound/xen/*
22284
22285 XEN SWIOTLB SUBSYSTEM
22286 M:      Juergen Gross <jgross@suse.com>
22287 M:      Stefano Stabellini <sstabellini@kernel.org>
22288 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22289 L:      iommu@lists.linux.dev
22290 S:      Supported
22291 F:      arch/x86/xen/*swiotlb*
22292 F:      drivers/xen/*swiotlb*
22293
22294 XFS FILESYSTEM
22295 C:      irc://irc.oftc.net/xfs
22296 M:      Darrick J. Wong <djwong@kernel.org>
22297 L:      linux-xfs@vger.kernel.org
22298 S:      Supported
22299 W:      http://xfs.org/
22300 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22301 F:      Documentation/ABI/testing/sysfs-fs-xfs
22302 F:      Documentation/admin-guide/xfs.rst
22303 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22304 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22305 F:      fs/xfs/
22306 F:      include/uapi/linux/dqblk_xfs.h
22307 F:      include/uapi/linux/fsmap.h
22308
22309 XILINX AMS DRIVER
22310 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22311 L:      linux-iio@vger.kernel.org
22312 S:      Maintained
22313 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22314 F:      drivers/iio/adc/xilinx-ams.c
22315
22316 XILINX AXI ETHERNET DRIVER
22317 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22318 S:      Maintained
22319 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22320
22321 XILINX CAN DRIVER
22322 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22323 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22324 L:      linux-can@vger.kernel.org
22325 S:      Maintained
22326 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22327 F:      drivers/net/can/xilinx_can.c
22328
22329 XILINX GPIO DRIVER
22330 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22331 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22332 R:      Michal Simek <michal.simek@xilinx.com>
22333 S:      Maintained
22334 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22335 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22336 F:      drivers/gpio/gpio-xilinx.c
22337 F:      drivers/gpio/gpio-zynq.c
22338
22339 XILINX SD-FEC IP CORES
22340 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22341 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22342 S:      Maintained
22343 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22344 F:      Documentation/misc-devices/xilinx_sdfec.rst
22345 F:      drivers/misc/Kconfig
22346 F:      drivers/misc/Makefile
22347 F:      drivers/misc/xilinx_sdfec.c
22348 F:      include/uapi/misc/xilinx_sdfec.h
22349
22350 XILINX PWM DRIVER
22351 M:      Sean Anderson <sean.anderson@seco.com>
22352 S:      Maintained
22353 F:      drivers/pwm/pwm-xilinx.c
22354 F:      include/clocksource/timer-xilinx.h
22355
22356 XILINX UARTLITE SERIAL DRIVER
22357 M:      Peter Korsgaard <jacmet@sunsite.dk>
22358 L:      linux-serial@vger.kernel.org
22359 S:      Maintained
22360 F:      drivers/tty/serial/uartlite.c
22361
22362 XILINX VIDEO IP CORES
22363 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22364 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22365 L:      linux-media@vger.kernel.org
22366 S:      Supported
22367 T:      git git://linuxtv.org/media_tree.git
22368 F:      Documentation/devicetree/bindings/media/xilinx/
22369 F:      drivers/media/platform/xilinx/
22370 F:      include/uapi/linux/xilinx-v4l2-controls.h
22371
22372 XILINX ZYNQMP DPDMA DRIVER
22373 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22374 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22375 L:      dmaengine@vger.kernel.org
22376 S:      Supported
22377 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22378 F:      drivers/dma/xilinx/xilinx_dpdma.c
22379 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22380
22381 XILINX ZYNQMP PSGTR PHY DRIVER
22382 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22383 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22384 L:      linux-kernel@vger.kernel.org
22385 S:      Supported
22386 T:      git https://github.com/Xilinx/linux-xlnx.git
22387 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22388 F:      drivers/phy/xilinx/phy-zynqmp.c
22389
22390 XILINX ZYNQMP SHA3 DRIVER
22391 M:      Harsha <harsha.harsha@xilinx.com>
22392 S:      Maintained
22393 F:      drivers/crypto/xilinx/zynqmp-sha.c
22394
22395 XILINX EVENT MANAGEMENT DRIVER
22396 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22397 S:      Maintained
22398 F:      drivers/soc/xilinx/xlnx_event_manager.c
22399 F:      include/linux/firmware/xlnx-event-manager.h
22400
22401 XILLYBUS DRIVER
22402 M:      Eli Billauer <eli.billauer@gmail.com>
22403 L:      linux-kernel@vger.kernel.org
22404 S:      Supported
22405 F:      drivers/char/xillybus/
22406
22407 XLP9XX I2C DRIVER
22408 M:      George Cherian <gcherian@marvell.com>
22409 L:      linux-i2c@vger.kernel.org
22410 S:      Supported
22411 W:      http://www.marvell.com
22412 F:      drivers/i2c/busses/i2c-xlp9xx.c
22413
22414 XRA1403 GPIO EXPANDER
22415 M:      Nandor Han <nandor.han@ge.com>
22416 M:      Semi Malinen <semi.malinen@ge.com>
22417 L:      linux-gpio@vger.kernel.org
22418 S:      Maintained
22419 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22420 F:      drivers/gpio/gpio-xra1403.c
22421
22422 XTENSA XTFPGA PLATFORM SUPPORT
22423 M:      Max Filippov <jcmvbkbc@gmail.com>
22424 L:      linux-xtensa@linux-xtensa.org
22425 S:      Maintained
22426 F:      drivers/spi/spi-xtensa-xtfpga.c
22427 F:      sound/soc/xtensa/xtfpga-i2s.c
22428
22429 YAM DRIVER FOR AX.25
22430 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22431 L:      linux-hams@vger.kernel.org
22432 S:      Maintained
22433 F:      drivers/net/hamradio/yam*
22434 F:      include/linux/yam.h
22435
22436 YAMA SECURITY MODULE
22437 M:      Kees Cook <keescook@chromium.org>
22438 S:      Supported
22439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22440 F:      Documentation/admin-guide/LSM/Yama.rst
22441 F:      security/yama/
22442
22443 YEALINK PHONE DRIVER
22444 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22445 L:      usbb2k-api-dev@nongnu.org
22446 S:      Maintained
22447 F:      Documentation/input/devices/yealink.rst
22448 F:      drivers/input/misc/yealink.*
22449
22450 Z8530 DRIVER FOR AX.25
22451 M:      Joerg Reuter <jreuter@yaina.de>
22452 L:      linux-hams@vger.kernel.org
22453 S:      Maintained
22454 W:      http://yaina.de/jreuter/
22455 W:      http://www.qsl.net/dl1bke/
22456 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22457 F:      drivers/net/hamradio/*scc.c
22458 F:      drivers/net/hamradio/z8530.h
22459
22460 ZBUD COMPRESSED PAGE ALLOCATOR
22461 M:      Seth Jennings <sjenning@redhat.com>
22462 M:      Dan Streetman <ddstreet@ieee.org>
22463 L:      linux-mm@kvack.org
22464 S:      Maintained
22465 F:      mm/zbud.c
22466
22467 Z3FOLD COMPRESSED PAGE ALLOCATOR
22468 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22469 R:      Miaohe Lin <linmiaohe@huawei.com>
22470 L:      linux-mm@kvack.org
22471 S:      Maintained
22472 F:      mm/z3fold.c
22473
22474 ZD1211RW WIRELESS DRIVER
22475 M:      Ulrich Kunitz <kune@deine-taler.de>
22476 L:      linux-wireless@vger.kernel.org
22477 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22478 S:      Maintained
22479 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22480 F:      drivers/net/wireless/zydas/zd1211rw/
22481
22482 ZD1301 MEDIA DRIVER
22483 M:      Antti Palosaari <crope@iki.fi>
22484 L:      linux-media@vger.kernel.org
22485 S:      Maintained
22486 W:      https://linuxtv.org/
22487 W:      http://palosaari.fi/linux/
22488 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22489 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22490
22491 ZD1301_DEMOD MEDIA DRIVER
22492 M:      Antti Palosaari <crope@iki.fi>
22493 L:      linux-media@vger.kernel.org
22494 S:      Maintained
22495 W:      https://linuxtv.org/
22496 W:      http://palosaari.fi/linux/
22497 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22498 F:      drivers/media/dvb-frontends/zd1301_demod*
22499
22500 ZHAOXIN PROCESSOR SUPPORT
22501 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22502 L:      linux-kernel@vger.kernel.org
22503 S:      Maintained
22504 F:      arch/x86/kernel/cpu/zhaoxin.c
22505
22506 ZONEFS FILESYSTEM
22507 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22508 M:      Naohiro Aota <naohiro.aota@wdc.com>
22509 R:      Johannes Thumshirn <jth@kernel.org>
22510 L:      linux-fsdevel@vger.kernel.org
22511 S:      Maintained
22512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22513 F:      Documentation/filesystems/zonefs.rst
22514 F:      fs/zonefs/
22515
22516 ZPOOL COMPRESSED PAGE STORAGE API
22517 M:      Dan Streetman <ddstreet@ieee.org>
22518 L:      linux-mm@kvack.org
22519 S:      Maintained
22520 F:      include/linux/zpool.h
22521 F:      mm/zpool.c
22522
22523 ZR36067 VIDEO FOR LINUX DRIVER
22524 M:      Corentin Labbe <clabbe@baylibre.com>
22525 L:      mjpeg-users@lists.sourceforge.net
22526 L:      linux-media@vger.kernel.org
22527 S:      Maintained
22528 W:      http://mjpeg.sourceforge.net/driver-zoran/
22529 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22530 F:      Documentation/driver-api/media/drivers/zoran.rst
22531 F:      drivers/staging/media/zoran/
22532
22533 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22534 M:      Minchan Kim <minchan@kernel.org>
22535 M:      Nitin Gupta <ngupta@vflare.org>
22536 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22537 L:      linux-kernel@vger.kernel.org
22538 S:      Maintained
22539 F:      Documentation/admin-guide/blockdev/zram.rst
22540 F:      drivers/block/zram/
22541
22542 ZS DECSTATION Z85C30 SERIAL DRIVER
22543 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22544 S:      Maintained
22545 F:      drivers/tty/serial/zs.*
22546
22547 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22548 M:      Minchan Kim <minchan@kernel.org>
22549 M:      Nitin Gupta <ngupta@vflare.org>
22550 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22551 L:      linux-mm@kvack.org
22552 S:      Maintained
22553 F:      Documentation/mm/zsmalloc.rst
22554 F:      include/linux/zsmalloc.h
22555 F:      mm/zsmalloc.c
22556
22557 ZSTD
22558 M:      Nick Terrell <terrelln@fb.com>
22559 S:      Maintained
22560 B:      https://github.com/facebook/zstd/issues
22561 T:      git git://github.com/terrelln/linux.git
22562 F:      include/linux/zstd*
22563 F:      lib/zstd/
22564 F:      lib/decompress_unzstd.c
22565 F:      crypto/zstd.c
22566 N:      zstd
22567 K:      zstd
22568
22569 ZSWAP COMPRESSED SWAP CACHING
22570 M:      Seth Jennings <sjenning@redhat.com>
22571 M:      Dan Streetman <ddstreet@ieee.org>
22572 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22573 L:      linux-mm@kvack.org
22574 S:      Maintained
22575 F:      mm/zswap.c
22576
22577 THE REST
22578 M:      Linus Torvalds <torvalds@linux-foundation.org>
22579 L:      linux-kernel@vger.kernel.org
22580 S:      Buried alive in reporters
22581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22582 F:      *
22583 F:      */