nvmem: rave-sp-eeprm: fix kernel-doc bad line warning
[linux-block.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 IDIO-16 GPIO LIBRARY
316 M:      William Breathitt Gray <william.gray@linaro.org>
317 L:      linux-gpio@vger.kernel.org
318 S:      Maintained
319 F:      drivers/gpio/gpio-idio-16.c
320 F:      drivers/gpio/gpio-idio-16.h
321
322 ACCES PCI-IDIO-16 GPIO DRIVER
323 M:      William Breathitt Gray <william.gray@linaro.org>
324 L:      linux-gpio@vger.kernel.org
325 S:      Maintained
326 F:      drivers/gpio/gpio-pci-idio-16.c
327
328 ACCES PCIe-IDIO-24 GPIO DRIVER
329 M:      William Breathitt Gray <william.gray@linaro.org>
330 L:      linux-gpio@vger.kernel.org
331 S:      Maintained
332 F:      drivers/gpio/gpio-pcie-idio-24.c
333
334 ACENIC DRIVER
335 M:      Jes Sorensen <jes@trained-monkey.org>
336 L:      linux-acenic@sunsite.dk
337 S:      Maintained
338 F:      drivers/net/ethernet/alteon/acenic*
339
340 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
341 M:      Peter Kaestle <peter@piie.net>
342 L:      platform-driver-x86@vger.kernel.org
343 S:      Maintained
344 W:      http://piie.net/?section=acerhdf
345 F:      drivers/platform/x86/acerhdf.c
346
347 ACER WMI LAPTOP EXTRAS
348 M:      "Lee, Chun-Yi" <jlee@suse.com>
349 L:      platform-driver-x86@vger.kernel.org
350 S:      Maintained
351 F:      drivers/platform/x86/acer-wmi.c
352
353 ACPI
354 M:      "Rafael J. Wysocki" <rafael@kernel.org>
355 R:      Len Brown <lenb@kernel.org>
356 L:      linux-acpi@vger.kernel.org
357 S:      Supported
358 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
359 B:      https://bugzilla.kernel.org
360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
361 F:      Documentation/ABI/testing/configfs-acpi
362 F:      Documentation/ABI/testing/sysfs-bus-acpi
363 F:      Documentation/firmware-guide/acpi/
364 F:      drivers/acpi/
365 F:      drivers/pci/*/*acpi*
366 F:      drivers/pci/*acpi*
367 F:      drivers/pnp/pnpacpi/
368 F:      include/acpi/
369 F:      include/linux/acpi.h
370 F:      include/linux/fwnode.h
371 F:      tools/power/acpi/
372
373 ACPI APEI
374 M:      "Rafael J. Wysocki" <rafael@kernel.org>
375 R:      Len Brown <lenb@kernel.org>
376 R:      James Morse <james.morse@arm.com>
377 R:      Tony Luck <tony.luck@intel.com>
378 R:      Borislav Petkov <bp@alien8.de>
379 L:      linux-acpi@vger.kernel.org
380 F:      drivers/acpi/apei/
381
382 ACPI COMPONENT ARCHITECTURE (ACPICA)
383 M:      Robert Moore <robert.moore@intel.com>
384 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
385 L:      linux-acpi@vger.kernel.org
386 L:      acpica-devel@lists.linuxfoundation.org
387 S:      Supported
388 W:      https://acpica.org/
389 W:      https://github.com/acpica/acpica/
390 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
391 B:      https://bugzilla.kernel.org
392 B:      https://bugs.acpica.org
393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
394 F:      drivers/acpi/acpica/
395 F:      include/acpi/
396 F:      tools/power/acpi/
397
398 ACPI FOR ARM64 (ACPI/arm64)
399 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
400 M:      Hanjun Guo <guohanjun@huawei.com>
401 M:      Sudeep Holla <sudeep.holla@arm.com>
402 L:      linux-acpi@vger.kernel.org
403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
404 S:      Maintained
405 F:      drivers/acpi/arm64
406
407 ACPI SERIAL MULTI INSTANTIATE DRIVER
408 M:      Hans de Goede <hdegoede@redhat.com>
409 L:      platform-driver-x86@vger.kernel.org
410 S:      Maintained
411 F:      drivers/platform/x86/serial-multi-instantiate.c
412
413 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
414 M:      Sudeep Holla <sudeep.holla@arm.com>
415 L:      linux-acpi@vger.kernel.org
416 S:      Supported
417 F:      drivers/mailbox/pcc.c
418
419 ACPI PMIC DRIVERS
420 M:      "Rafael J. Wysocki" <rafael@kernel.org>
421 M:      Len Brown <lenb@kernel.org>
422 R:      Andy Shevchenko <andy@kernel.org>
423 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
424 L:      linux-acpi@vger.kernel.org
425 S:      Supported
426 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
427 B:      https://bugzilla.kernel.org
428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
429 F:      drivers/acpi/pmic/
430
431 ACPI THERMAL DRIVER
432 M:      Rafael J. Wysocki <rafael@kernel.org>
433 R:      Zhang Rui <rui.zhang@intel.com>
434 L:      linux-acpi@vger.kernel.org
435 S:      Supported
436 B:      https://bugzilla.kernel.org
437 F:      drivers/acpi/*thermal*
438
439 ACPI VIOT DRIVER
440 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
441 L:      linux-acpi@vger.kernel.org
442 L:      iommu@lists.linux.dev
443 S:      Maintained
444 F:      drivers/acpi/viot.c
445 F:      include/linux/acpi_viot.h
446
447 ACPI WMI DRIVER
448 L:      platform-driver-x86@vger.kernel.org
449 S:      Orphan
450 F:      drivers/platform/x86/wmi.c
451 F:      include/uapi/linux/wmi.h
452
453 ACRN HYPERVISOR SERVICE MODULE
454 M:      Fei Li <fei1.li@intel.com>
455 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
456 S:      Supported
457 W:      https://projectacrn.org
458 F:      Documentation/virt/acrn/
459 F:      drivers/virt/acrn/
460 F:      include/uapi/linux/acrn.h
461
462 AD1889 ALSA SOUND DRIVER
463 L:      linux-parisc@vger.kernel.org
464 S:      Maintained
465 W:      https://parisc.wiki.kernel.org/index.php/AD1889
466 F:      sound/pci/ad1889.*
467
468 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
469 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
470 L:      linux-iio@vger.kernel.org
471 S:      Supported
472 F:      drivers/iio/potentiometer/ad5110.c
473
474 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
475 M:      Michael Hennerich <michael.hennerich@analog.com>
476 S:      Supported
477 W:      http://wiki.analog.com/AD5254
478 W:      https://ez.analog.com/linux-software-drivers
479 F:      drivers/misc/ad525x_dpot.c
480
481 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
482 M:      Michael Hennerich <michael.hennerich@analog.com>
483 S:      Supported
484 W:      http://wiki.analog.com/AD5398
485 W:      https://ez.analog.com/linux-software-drivers
486 F:      drivers/regulator/ad5398.c
487
488 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
489 M:      Michael Hennerich <michael.hennerich@analog.com>
490 S:      Supported
491 W:      http://wiki.analog.com/AD7142
492 W:      https://ez.analog.com/linux-software-drivers
493 F:      drivers/input/misc/ad714x.c
494
495 AD7877 TOUCHSCREEN DRIVER
496 M:      Michael Hennerich <michael.hennerich@analog.com>
497 S:      Supported
498 W:      http://wiki.analog.com/AD7877
499 W:      https://ez.analog.com/linux-software-drivers
500 F:      drivers/input/touchscreen/ad7877.c
501
502 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
503 M:      Michael Hennerich <michael.hennerich@analog.com>
504 S:      Supported
505 W:      http://wiki.analog.com/AD7879
506 W:      https://ez.analog.com/linux-software-drivers
507 F:      drivers/input/touchscreen/ad7879.c
508
509 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
510 M:      Jiri Kosina <jikos@kernel.org>
511 S:      Maintained
512
513 ADF7242 IEEE 802.15.4 RADIO DRIVER
514 M:      Michael Hennerich <michael.hennerich@analog.com>
515 L:      linux-wpan@vger.kernel.org
516 S:      Supported
517 W:      https://wiki.analog.com/ADF7242
518 W:      https://ez.analog.com/linux-software-drivers
519 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
520 F:      drivers/net/ieee802154/adf7242.c
521
522 ADM1025 HARDWARE MONITOR DRIVER
523 M:      Jean Delvare <jdelvare@suse.com>
524 L:      linux-hwmon@vger.kernel.org
525 S:      Maintained
526 F:      Documentation/hwmon/adm1025.rst
527 F:      drivers/hwmon/adm1025.c
528
529 ADM1029 HARDWARE MONITOR DRIVER
530 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
531 L:      linux-hwmon@vger.kernel.org
532 S:      Maintained
533 F:      drivers/hwmon/adm1029.c
534
535 ADM8211 WIRELESS DRIVER
536 L:      linux-wireless@vger.kernel.org
537 S:      Orphan
538 W:      https://wireless.wiki.kernel.org/
539 F:      drivers/net/wireless/admtek/adm8211.*
540
541 ADP1653 FLASH CONTROLLER DRIVER
542 M:      Sakari Ailus <sakari.ailus@iki.fi>
543 L:      linux-media@vger.kernel.org
544 S:      Maintained
545 F:      drivers/media/i2c/adp1653.c
546 F:      include/media/i2c/adp1653.h
547
548 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
549 M:      Michael Hennerich <michael.hennerich@analog.com>
550 S:      Supported
551 W:      http://wiki.analog.com/ADP5520
552 W:      https://ez.analog.com/linux-software-drivers
553 F:      drivers/gpio/gpio-adp5520.c
554 F:      drivers/input/keyboard/adp5520-keys.c
555 F:      drivers/leds/leds-adp5520.c
556 F:      drivers/mfd/adp5520.c
557 F:      drivers/video/backlight/adp5520_bl.c
558
559 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
560 M:      Michael Hennerich <michael.hennerich@analog.com>
561 S:      Supported
562 W:      http://wiki.analog.com/ADP5588
563 W:      https://ez.analog.com/linux-software-drivers
564 F:      Documentation/devicetree/bindings/input/adi,adp5588.yaml
565 F:      drivers/input/keyboard/adp5588-keys.c
566
567 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
568 M:      Michael Hennerich <michael.hennerich@analog.com>
569 S:      Supported
570 W:      http://wiki.analog.com/ADP8860
571 W:      https://ez.analog.com/linux-software-drivers
572 F:      drivers/video/backlight/adp8860_bl.c
573
574 ADT746X FAN DRIVER
575 M:      Colin Leroy <colin@colino.net>
576 S:      Maintained
577 F:      drivers/macintosh/therm_adt746x.c
578
579 ADT7475 HARDWARE MONITOR DRIVER
580 M:      Jean Delvare <jdelvare@suse.com>
581 L:      linux-hwmon@vger.kernel.org
582 S:      Maintained
583 F:      Documentation/hwmon/adt7475.rst
584 F:      drivers/hwmon/adt7475.c
585
586 ADVANSYS SCSI DRIVER
587 M:      Matthew Wilcox <willy@infradead.org>
588 M:      Hannes Reinecke <hare@suse.com>
589 L:      linux-scsi@vger.kernel.org
590 S:      Maintained
591 F:      Documentation/scsi/advansys.rst
592 F:      drivers/scsi/advansys.c
593
594 ADVANTECH SWBTN DRIVER
595 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
596 L:      platform-driver-x86@vger.kernel.org
597 S:      Maintained
598 F:      drivers/platform/x86/adv_swbutton.c
599
600 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
601 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
602 S:      Supported
603 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
604 F:      drivers/iio/accel/adxl313*
605
606 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
607 M:      Michael Hennerich <michael.hennerich@analog.com>
608 S:      Supported
609 W:      http://wiki.analog.com/ADXL345
610 W:      https://ez.analog.com/linux-software-drivers
611 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
612 F:      drivers/input/misc/adxl34x.c
613
614 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
615 M:      Puranjay Mohan <puranjay12@gmail.com>
616 L:      linux-iio@vger.kernel.org
617 S:      Supported
618 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
619 F:      drivers/iio/accel/adxl355.h
620 F:      drivers/iio/accel/adxl355_core.c
621 F:      drivers/iio/accel/adxl355_i2c.c
622 F:      drivers/iio/accel/adxl355_spi.c
623
624 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
625 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
626 L:      linux-iio@vger.kernel.org
627 S:      Supported
628 W:      https://ez.analog.com/linux-software-drivers
629 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
630 F:      drivers/iio/accel/adxl367*
631
632 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
633 M:      Michael Hennerich <michael.hennerich@analog.com>
634 S:      Supported
635 W:      https://ez.analog.com/linux-software-drivers
636 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
637 F:      drivers/iio/accel/adxl372.c
638 F:      drivers/iio/accel/adxl372_i2c.c
639 F:      drivers/iio/accel/adxl372_spi.c
640
641 AF9013 MEDIA DRIVER
642 M:      Antti Palosaari <crope@iki.fi>
643 L:      linux-media@vger.kernel.org
644 S:      Maintained
645 W:      https://linuxtv.org
646 W:      http://palosaari.fi/linux/
647 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
648 T:      git git://linuxtv.org/anttip/media_tree.git
649 F:      drivers/media/dvb-frontends/af9013*
650
651 AF9033 MEDIA DRIVER
652 M:      Antti Palosaari <crope@iki.fi>
653 L:      linux-media@vger.kernel.org
654 S:      Maintained
655 W:      https://linuxtv.org
656 W:      http://palosaari.fi/linux/
657 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
658 T:      git git://linuxtv.org/anttip/media_tree.git
659 F:      drivers/media/dvb-frontends/af9033*
660
661 AFFS FILE SYSTEM
662 M:      David Sterba <dsterba@suse.com>
663 L:      linux-fsdevel@vger.kernel.org
664 S:      Odd Fixes
665 F:      Documentation/filesystems/affs.rst
666 F:      fs/affs/
667
668 AFS FILESYSTEM
669 M:      David Howells <dhowells@redhat.com>
670 M:      Marc Dionne <marc.dionne@auristor.com>
671 L:      linux-afs@lists.infradead.org
672 S:      Supported
673 W:      https://www.infradead.org/~dhowells/kafs/
674 F:      Documentation/filesystems/afs.rst
675 F:      fs/afs/
676 F:      include/trace/events/afs.h
677
678 AGPGART DRIVER
679 M:      David Airlie <airlied@redhat.com>
680 L:      dri-devel@lists.freedesktop.org
681 S:      Maintained
682 T:      git git://anongit.freedesktop.org/drm/drm
683 F:      drivers/char/agp/
684 F:      include/linux/agp*
685 F:      include/uapi/linux/agp*
686
687 AHA152X SCSI DRIVER
688 M:      "Juergen E. Fischer" <fischer@norbit.de>
689 L:      linux-scsi@vger.kernel.org
690 S:      Maintained
691 F:      drivers/scsi/aha152x*
692 F:      drivers/scsi/pcmcia/aha152x*
693
694 AIC7XXX / AIC79XX SCSI DRIVER
695 M:      Hannes Reinecke <hare@suse.com>
696 L:      linux-scsi@vger.kernel.org
697 S:      Maintained
698 F:      drivers/scsi/aic7xxx/
699
700 AIMSLAB FM RADIO RECEIVER DRIVER
701 M:      Hans Verkuil <hverkuil@xs4all.nl>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 W:      https://linuxtv.org
705 T:      git git://linuxtv.org/media_tree.git
706 F:      drivers/media/radio/radio-aimslab*
707
708 AIO
709 M:      Benjamin LaHaise <bcrl@kvack.org>
710 L:      linux-aio@kvack.org
711 S:      Supported
712 F:      fs/aio.c
713 F:      include/linux/*aio*.h
714
715 AIRSPY MEDIA DRIVER
716 M:      Antti Palosaari <crope@iki.fi>
717 L:      linux-media@vger.kernel.org
718 S:      Maintained
719 W:      https://linuxtv.org
720 W:      http://palosaari.fi/linux/
721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
722 T:      git git://linuxtv.org/anttip/media_tree.git
723 F:      drivers/media/usb/airspy/
724
725 ALACRITECH GIGABIT ETHERNET DRIVER
726 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
727 S:      Maintained
728 F:      drivers/net/ethernet/alacritech/*
729
730 ALCATEL SPEEDTOUCH USB DRIVER
731 M:      Duncan Sands <duncan.sands@free.fr>
732 L:      linux-usb@vger.kernel.org
733 S:      Maintained
734 W:      http://www.linux-usb.org/SpeedTouch/
735 F:      drivers/usb/atm/speedtch.c
736 F:      drivers/usb/atm/usbatm.c
737
738 ALCHEMY AU1XX0 MMC DRIVER
739 M:      Manuel Lauss <manuel.lauss@gmail.com>
740 S:      Maintained
741 F:      drivers/mmc/host/au1xmmc.c
742
743 ALI1563 I2C DRIVER
744 M:      Rudolf Marek <r.marek@assembler.cz>
745 L:      linux-i2c@vger.kernel.org
746 S:      Maintained
747 F:      Documentation/i2c/busses/i2c-ali1563.rst
748 F:      drivers/i2c/busses/i2c-ali1563.c
749
750 ALIBABA ELASTIC RDMA DRIVER
751 M:      Cheng Xu <chengyou@linux.alibaba.com>
752 M:      Kai Shen <kaishen@linux.alibaba.com>
753 L:      linux-rdma@vger.kernel.org
754 S:      Supported
755 F:      drivers/infiniband/hw/erdma
756 F:      include/uapi/rdma/erdma-abi.h
757
758 ALIBABA PMU DRIVER
759 M:      Shuai Xue <xueshuai@linux.alibaba.com>
760 S:      Supported
761 F:      Documentation/admin-guide/perf/alibaba_pmu.rst
762 F:      drivers/perf/alibaba_uncore_drw_pmu.c
763
764 ALIENWARE WMI DRIVER
765 L:      Dell.Client.Kernel@dell.com
766 S:      Maintained
767 F:      drivers/platform/x86/dell/alienware-wmi.c
768
769 ALLEGRO DVT VIDEO IP CORE DRIVER
770 M:      Michael Tretter <m.tretter@pengutronix.de>
771 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
772 L:      linux-media@vger.kernel.org
773 S:      Maintained
774 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
775 F:      drivers/media/platform/allegro-dvt/
776
777 ALLWINNER A10 CSI DRIVER
778 M:      Maxime Ripard <mripard@kernel.org>
779 L:      linux-media@vger.kernel.org
780 S:      Maintained
781 T:      git git://linuxtv.org/media_tree.git
782 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
783 F:      drivers/media/platform/sunxi/sun4i-csi/
784
785 ALLWINNER A31 CSI DRIVER
786 M:      Yong Deng <yong.deng@magewell.com>
787 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
788 L:      linux-media@vger.kernel.org
789 S:      Maintained
790 T:      git git://linuxtv.org/media_tree.git
791 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
792 F:      drivers/media/platform/sunxi/sun6i-csi/
793
794 ALLWINNER A31 ISP DRIVER
795 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
796 L:      linux-media@vger.kernel.org
797 S:      Maintained
798 T:      git git://linuxtv.org/media_tree.git
799 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
800 F:      drivers/staging/media/sunxi/sun6i-isp/
801 F:      drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
802
803 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
804 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
805 L:      linux-media@vger.kernel.org
806 S:      Maintained
807 T:      git git://linuxtv.org/media_tree.git
808 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
809 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
810
811 ALLWINNER CPUFREQ DRIVER
812 M:      Yangtao Li <tiny.windzz@gmail.com>
813 L:      linux-pm@vger.kernel.org
814 S:      Maintained
815 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
816 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
817
818 ALLWINNER CRYPTO DRIVERS
819 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
820 L:      linux-crypto@vger.kernel.org
821 S:      Maintained
822 F:      drivers/crypto/allwinner/
823
824 ALLWINNER HARDWARE SPINLOCK SUPPORT
825 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
826 S:      Maintained
827 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
828 F:      drivers/hwspinlock/sun6i_hwspinlock.c
829
830 ALLWINNER THERMAL DRIVER
831 M:      Vasily Khoruzhick <anarsoul@gmail.com>
832 M:      Yangtao Li <tiny.windzz@gmail.com>
833 L:      linux-pm@vger.kernel.org
834 S:      Maintained
835 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
836 F:      drivers/thermal/sun8i_thermal.c
837
838 ALLWINNER VPU DRIVER
839 M:      Maxime Ripard <mripard@kernel.org>
840 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
841 L:      linux-media@vger.kernel.org
842 S:      Maintained
843 F:      drivers/staging/media/sunxi/cedrus/
844
845 ALLWINNER DMIC DRIVERS
846 M:      Ban Tao <fengzheng923@gmail.com>
847 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
848 S:      Maintained
849 F:      Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
850 F:      sound/soc/sunxi/sun50i-dmic.c
851
852 ALPHA PORT
853 M:      Richard Henderson <richard.henderson@linaro.org>
854 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
855 M:      Matt Turner <mattst88@gmail.com>
856 L:      linux-alpha@vger.kernel.org
857 S:      Odd Fixes
858 F:      arch/alpha/
859
860 ALPS PS/2 TOUCHPAD DRIVER
861 R:      Pali Rohár <pali@kernel.org>
862 F:      drivers/input/mouse/alps.*
863
864 ALTERA I2C CONTROLLER DRIVER
865 M:      Thor Thayer <thor.thayer@linux.intel.com>
866 S:      Maintained
867 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
868 F:      drivers/i2c/busses/i2c-altera.c
869
870 ALTERA MAILBOX DRIVER
871 M:      Mun Yew Tham <mun.yew.tham@intel.com>
872 S:      Maintained
873 F:      drivers/mailbox/mailbox-altera.c
874
875 ALTERA MSGDMA IP CORE DRIVER
876 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
877 R:      Stefan Roese <sr@denx.de>
878 L:      dmaengine@vger.kernel.org
879 S:      Odd Fixes
880 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
881 F:      drivers/dma/altera-msgdma.c
882
883 ALTERA PIO DRIVER
884 M:      Mun Yew Tham <mun.yew.tham@intel.com>
885 L:      linux-gpio@vger.kernel.org
886 S:      Maintained
887 F:      drivers/gpio/gpio-altera.c
888
889 ALTERA SYSTEM MANAGER DRIVER
890 M:      Thor Thayer <thor.thayer@linux.intel.com>
891 S:      Maintained
892 F:      drivers/mfd/altera-sysmgr.c
893 F:      include/linux/mfd/altera-sysmgr.h
894
895 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
896 M:      Thor Thayer <thor.thayer@linux.intel.com>
897 S:      Maintained
898 F:      drivers/gpio/gpio-altera-a10sr.c
899 F:      drivers/mfd/altera-a10sr.c
900 F:      drivers/reset/reset-a10sr.c
901 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
902 F:      include/linux/mfd/altera-a10sr.h
903
904 ALTERA TRIPLE SPEED ETHERNET DRIVER
905 M:      Joyce Ooi <joyce.ooi@intel.com>
906 L:      netdev@vger.kernel.org
907 S:      Maintained
908 F:      drivers/net/ethernet/altera/
909
910 ALTERA TSE PCS
911 M:      Maxime Chevallier <maxime.chevallier@bootlin.com>
912 L:      netdev@vger.kernel.org
913 S:      Supported
914 F:      drivers/net/pcs/pcs-altera-tse.c
915 F:      include/linux/pcs-altera-tse.h
916
917 ALTERA UART/JTAG UART SERIAL DRIVERS
918 M:      Tobias Klauser <tklauser@distanz.ch>
919 L:      linux-serial@vger.kernel.org
920 S:      Maintained
921 F:      drivers/tty/serial/altera_jtaguart.c
922 F:      drivers/tty/serial/altera_uart.c
923 F:      include/linux/altera_jtaguart.h
924 F:      include/linux/altera_uart.h
925
926 AMAZON ANNAPURNA LABS FIC DRIVER
927 M:      Talel Shenhar <talel@amazon.com>
928 S:      Maintained
929 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
930 F:      drivers/irqchip/irq-al-fic.c
931
932 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
933 M:      Talel Shenhar <talel@amazon.com>
934 M:      Talel Shenhar <talelshenhar@gmail.com>
935 S:      Maintained
936 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
937 F:      drivers/edac/al_mc_edac.c
938
939 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
940 M:      Talel Shenhar <talel@amazon.com>
941 S:      Maintained
942 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
943 F:      drivers/thermal/thermal_mmio.c
944
945 AMAZON ETHERNET DRIVERS
946 M:      Shay Agroskin <shayagr@amazon.com>
947 M:      Arthur Kiyanovski <akiyano@amazon.com>
948 R:      David Arinzon <darinzon@amazon.com>
949 R:      Noam Dagan <ndagan@amazon.com>
950 R:      Saeed Bishara <saeedb@amazon.com>
951 L:      netdev@vger.kernel.org
952 S:      Supported
953 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
954 F:      drivers/net/ethernet/amazon/
955
956 AMAZON RDMA EFA DRIVER
957 M:      Gal Pressman <galpress@amazon.com>
958 R:      Yossi Leybovich <sleybo@amazon.com>
959 L:      linux-rdma@vger.kernel.org
960 S:      Supported
961 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
962 F:      drivers/infiniband/hw/efa/
963 F:      include/uapi/rdma/efa-abi.h
964
965 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
966 M:      Tom Lendacky <thomas.lendacky@amd.com>
967 M:      John Allen <john.allen@amd.com>
968 L:      linux-crypto@vger.kernel.org
969 S:      Supported
970 F:      drivers/crypto/ccp/
971 F:      include/linux/ccp.h
972
973 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
974 M:      Brijesh Singh <brijesh.singh@amd.com>
975 M:      Tom Lendacky <thomas.lendacky@amd.com>
976 L:      linux-crypto@vger.kernel.org
977 S:      Supported
978 F:      drivers/crypto/ccp/sev*
979 F:      include/uapi/linux/psp-sev.h
980
981 AMD DISPLAY CORE
982 M:      Harry Wentland <harry.wentland@amd.com>
983 M:      Leo Li <sunpeng.li@amd.com>
984 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
985 L:      amd-gfx@lists.freedesktop.org
986 S:      Supported
987 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
988 F:      drivers/gpu/drm/amd/display/
989
990 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
991 M:      Huang Rui <ray.huang@amd.com>
992 L:      linux-hwmon@vger.kernel.org
993 S:      Supported
994 F:      Documentation/hwmon/fam15h_power.rst
995 F:      drivers/hwmon/fam15h_power.c
996
997 AMD FCH GPIO DRIVER
998 M:      Enrico Weigelt, metux IT consult <info@metux.net>
999 L:      linux-gpio@vger.kernel.org
1000 S:      Maintained
1001 F:      drivers/gpio/gpio-amd-fch.c
1002 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
1003
1004 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
1005 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1006 S:      Orphan
1007 F:      drivers/usb/gadget/udc/amd5536udc.*
1008
1009 AMD GEODE PROCESSOR/CHIPSET SUPPORT
1010 M:      Andres Salomon <dilinger@queued.net>
1011 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1012 S:      Supported
1013 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
1014 F:      arch/x86/include/asm/geode.h
1015 F:      drivers/char/hw_random/geode-rng.c
1016 F:      drivers/crypto/geode*
1017 F:      drivers/video/fbdev/geode/
1018
1019 AMD IOMMU (AMD-VI)
1020 M:      Joerg Roedel <joro@8bytes.org>
1021 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1022 L:      iommu@lists.linux.dev
1023 S:      Maintained
1024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
1025 F:      drivers/iommu/amd/
1026 F:      include/linux/amd-iommu.h
1027
1028 AMD KFD
1029 M:      Felix Kuehling <Felix.Kuehling@amd.com>
1030 L:      amd-gfx@lists.freedesktop.org
1031 S:      Supported
1032 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1033 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1034 F:      drivers/gpu/drm/amd/amdkfd/
1035 F:      drivers/gpu/drm/amd/include/cik_structs.h
1036 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1037 F:      drivers/gpu/drm/amd/include/v9_structs.h
1038 F:      drivers/gpu/drm/amd/include/vi_structs.h
1039 F:      include/uapi/linux/kfd_ioctl.h
1040 F:      include/uapi/linux/kfd_sysfs.h
1041
1042 AMD SPI DRIVER
1043 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1044 S:      Maintained
1045 F:      drivers/spi/spi-amd.c
1046
1047 AMD MP2 I2C DRIVER
1048 M:      Elie Morisse <syniurge@gmail.com>
1049 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1050 L:      linux-i2c@vger.kernel.org
1051 S:      Maintained
1052 F:      drivers/i2c/busses/i2c-amd-mp2*
1053
1054 AMD PMC DRIVER
1055 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1056 L:      platform-driver-x86@vger.kernel.org
1057 S:      Maintained
1058 F:      drivers/platform/x86/amd/pmc.c
1059
1060 AMD PMF DRIVER
1061 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1062 L:      platform-driver-x86@vger.kernel.org
1063 S:      Maintained
1064 F:      Documentation/ABI/testing/sysfs-amd-pmf
1065 F:      drivers/platform/x86/amd/pmf/
1066
1067 AMD HSMP DRIVER
1068 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1069 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1070 L:      platform-driver-x86@vger.kernel.org
1071 S:      Maintained
1072 F:      Documentation/x86/amd_hsmp.rst
1073 F:      arch/x86/include/asm/amd_hsmp.h
1074 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1075 F:      drivers/platform/x86/amd/hsmp.c
1076
1077 AMD POWERPLAY AND SWSMU
1078 M:      Evan Quan <evan.quan@amd.com>
1079 L:      amd-gfx@lists.freedesktop.org
1080 S:      Supported
1081 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1082 F:      drivers/gpu/drm/amd/pm/
1083
1084 AMD PSTATE DRIVER
1085 M:      Huang Rui <ray.huang@amd.com>
1086 L:      linux-pm@vger.kernel.org
1087 S:      Supported
1088 F:      Documentation/admin-guide/pm/amd-pstate.rst
1089 F:      drivers/cpufreq/amd-pstate*
1090 F:      include/linux/amd-pstate.h
1091 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1092
1093 AMD PTDMA DRIVER
1094 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1095 L:      dmaengine@vger.kernel.org
1096 S:      Maintained
1097 F:      drivers/dma/ptdma/
1098
1099 AMD SEATTLE DEVICE TREE SUPPORT
1100 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1101 M:      Tom Lendacky <thomas.lendacky@amd.com>
1102 S:      Supported
1103 F:      arch/arm64/boot/dts/amd/
1104
1105 AMD XGBE DRIVER
1106 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1107 L:      netdev@vger.kernel.org
1108 S:      Supported
1109 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1110 F:      drivers/net/ethernet/amd/xgbe/
1111
1112 AMD SENSOR FUSION HUB DRIVER
1113 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1114 L:      linux-input@vger.kernel.org
1115 S:      Maintained
1116 F:      Documentation/hid/amd-sfh*
1117 F:      drivers/hid/amd-sfh-hid/
1118
1119 AMLOGIC DDR PMU DRIVER
1120 M:      Jiucheng Xu <jiucheng.xu@amlogic.com>
1121 L:      linux-amlogic@lists.infradead.org
1122 S:      Supported
1123 W:      http://www.amlogic.com
1124 F:      Documentation/admin-guide/perf/meson-ddr-pmu.rst
1125 F:      Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1126 F:      drivers/perf/amlogic/
1127 F:      include/soc/amlogic/
1128
1129 AMPHION VPU CODEC V4L2 DRIVER
1130 M:      Ming Qian <ming.qian@nxp.com>
1131 M:      Shijie Qin <shijie.qin@nxp.com>
1132 M:      Zhou Peng <eagle.zhou@nxp.com>
1133 L:      linux-media@vger.kernel.org
1134 S:      Maintained
1135 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1136 F:      drivers/media/platform/amphion/
1137
1138 AMS AS73211 DRIVER
1139 M:      Christian Eggers <ceggers@arri.de>
1140 L:      linux-iio@vger.kernel.org
1141 S:      Maintained
1142 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1143 F:      drivers/iio/light/as73211.c
1144
1145 AMT (Automatic Multicast Tunneling)
1146 M:      Taehee Yoo <ap420073@gmail.com>
1147 L:      netdev@vger.kernel.org
1148 S:      Maintained
1149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1151 F:      drivers/net/amt.c
1152
1153 ANALOG DEVICES INC AD4130 DRIVER
1154 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1155 L:      linux-iio@vger.kernel.org
1156 S:      Supported
1157 W:      http://ez.analog.com/community/linux-device-drivers
1158 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1159 F:      Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1160 F:      drivers/iio/adc/ad4130.c
1161
1162 ANALOG DEVICES INC AD7192 DRIVER
1163 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1164 L:      linux-iio@vger.kernel.org
1165 S:      Supported
1166 W:      https://ez.analog.com/linux-software-drivers
1167 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1168 F:      drivers/iio/adc/ad7192.c
1169
1170 ANALOG DEVICES INC AD7292 DRIVER
1171 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1172 L:      linux-iio@vger.kernel.org
1173 S:      Supported
1174 W:      https://ez.analog.com/linux-software-drivers
1175 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1176 F:      drivers/iio/adc/ad7292.c
1177
1178 ANALOG DEVICES INC AD3552R DRIVER
1179 M:      Nuno Sá <nuno.sa@analog.com>
1180 L:      linux-iio@vger.kernel.org
1181 S:      Supported
1182 W:      https://ez.analog.com/linux-software-drivers
1183 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1184 F:      drivers/iio/dac/ad3552r.c
1185
1186 ANALOG DEVICES INC AD7293 DRIVER
1187 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1188 L:      linux-iio@vger.kernel.org
1189 S:      Supported
1190 W:      https://ez.analog.com/linux-software-drivers
1191 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1192 F:      drivers/iio/dac/ad7293.c
1193
1194 ANALOG DEVICES INC AD7768-1 DRIVER
1195 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1196 L:      linux-iio@vger.kernel.org
1197 S:      Supported
1198 W:      https://ez.analog.com/linux-software-drivers
1199 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1200 F:      drivers/iio/adc/ad7768-1.c
1201
1202 ANALOG DEVICES INC AD7780 DRIVER
1203 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1204 M:      Renato Lui Geh <renatogeh@gmail.com>
1205 L:      linux-iio@vger.kernel.org
1206 S:      Supported
1207 W:      https://ez.analog.com/linux-software-drivers
1208 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1209 F:      drivers/iio/adc/ad7780.c
1210
1211 ANALOG DEVICES INC AD74115 DRIVER
1212 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1213 L:      linux-iio@vger.kernel.org
1214 S:      Supported
1215 W:      http://ez.analog.com/community/linux-device-drivers
1216 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1217 F:      drivers/iio/addac/ad74115.c
1218
1219 ANALOG DEVICES INC AD74413R DRIVER
1220 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1221 L:      linux-iio@vger.kernel.org
1222 S:      Supported
1223 W:      https://ez.analog.com/linux-software-drivers
1224 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1225 F:      drivers/iio/addac/ad74413r.c
1226 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1227
1228 ANALOG DEVICES INC AD9389B DRIVER
1229 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1230 L:      linux-media@vger.kernel.org
1231 S:      Maintained
1232 F:      drivers/media/i2c/ad9389b*
1233
1234 ANALOG DEVICES INC ADA4250 DRIVER
1235 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1236 L:      linux-iio@vger.kernel.org
1237 S:      Supported
1238 W:      https://ez.analog.com/linux-software-drivers
1239 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1240 F:      drivers/iio/amplifiers/ada4250.c
1241
1242 ANALOG DEVICES INC ADF4377 DRIVER
1243 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1244 L:      linux-iio@vger.kernel.org
1245 S:      Supported
1246 W:      https://ez.analog.com/linux-software-drivers
1247 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1248 F:      drivers/iio/frequency/adf4377.c
1249
1250 ANALOG DEVICES INC ADGS1408 DRIVER
1251 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1252 S:      Supported
1253 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1254 F:      drivers/mux/adgs1408.c
1255
1256 ANALOG DEVICES INC ADIN DRIVER
1257 M:      Michael Hennerich <michael.hennerich@analog.com>
1258 L:      netdev@vger.kernel.org
1259 S:      Supported
1260 W:      https://ez.analog.com/linux-software-drivers
1261 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1262 F:      drivers/net/phy/adin.c
1263
1264 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1265 M:      Nuno Sa <nuno.sa@analog.com>
1266 L:      linux-iio@vger.kernel.org
1267 S:      Supported
1268 F:      drivers/iio/imu/adis.c
1269 F:      drivers/iio/imu/adis_buffer.c
1270 F:      drivers/iio/imu/adis_trigger.c
1271 F:      include/linux/iio/imu/adis.h
1272
1273 ANALOG DEVICES INC ADIS16460 DRIVER
1274 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1275 L:      linux-iio@vger.kernel.org
1276 S:      Supported
1277 W:      https://ez.analog.com/linux-software-drivers
1278 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1279 F:      drivers/iio/imu/adis16460.c
1280
1281 ANALOG DEVICES INC ADIS16475 DRIVER
1282 M:      Nuno Sa <nuno.sa@analog.com>
1283 L:      linux-iio@vger.kernel.org
1284 W:      https://ez.analog.com/linux-software-drivers
1285 S:      Supported
1286 F:      drivers/iio/imu/adis16475.c
1287 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1288
1289 ANALOG DEVICES INC ADM1177 DRIVER
1290 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1291 L:      linux-hwmon@vger.kernel.org
1292 S:      Supported
1293 W:      https://ez.analog.com/linux-software-drivers
1294 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1295 F:      drivers/hwmon/adm1177.c
1296
1297 ANALOG DEVICES INC ADMV1013 DRIVER
1298 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1299 L:      linux-iio@vger.kernel.org
1300 S:      Supported
1301 W:      https://ez.analog.com/linux-software-drivers
1302 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1303 F:      drivers/iio/frequency/admv1013.c
1304
1305 ANALOG DEVICES INC ADMV8818 DRIVER
1306 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1307 L:      linux-iio@vger.kernel.org
1308 S:      Supported
1309 W:      https://ez.analog.com/linux-software-drivers
1310 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1311 F:      drivers/iio/filter/admv8818.c
1312
1313 ANALOG DEVICES INC ADMV1014 DRIVER
1314 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1315 L:      linux-iio@vger.kernel.org
1316 S:      Supported
1317 W:      https://ez.analog.com/linux-software-drivers
1318 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1319 F:      drivers/iio/frequency/admv1014.c
1320
1321 ANALOG DEVICES INC ADP5061 DRIVER
1322 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1323 L:      linux-pm@vger.kernel.org
1324 S:      Supported
1325 W:      https://ez.analog.com/linux-software-drivers
1326 F:      drivers/power/supply/adp5061.c
1327
1328 ANALOG DEVICES INC ADRF6780 DRIVER
1329 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1330 L:      linux-iio@vger.kernel.org
1331 S:      Supported
1332 W:      https://ez.analog.com/linux-software-drivers
1333 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1334 F:      drivers/iio/frequency/adrf6780.c
1335
1336 ANALOG DEVICES INC ADV7180 DRIVER
1337 M:      Lars-Peter Clausen <lars@metafoo.de>
1338 L:      linux-media@vger.kernel.org
1339 S:      Supported
1340 W:      https://ez.analog.com/linux-software-drivers
1341 F:      drivers/media/i2c/adv7180.c
1342 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1343
1344 ANALOG DEVICES INC ADV748X DRIVER
1345 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1346 L:      linux-media@vger.kernel.org
1347 S:      Maintained
1348 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1349 F:      drivers/media/i2c/adv748x/*
1350
1351 ANALOG DEVICES INC ADV7511 DRIVER
1352 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1353 L:      linux-media@vger.kernel.org
1354 S:      Maintained
1355 F:      drivers/media/i2c/adv7511*
1356
1357 ANALOG DEVICES INC ADV7604 DRIVER
1358 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1359 L:      linux-media@vger.kernel.org
1360 S:      Maintained
1361 F:      drivers/media/i2c/adv7604*
1362 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1363
1364 ANALOG DEVICES INC ADV7842 DRIVER
1365 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1366 L:      linux-media@vger.kernel.org
1367 S:      Maintained
1368 F:      drivers/media/i2c/adv7842*
1369
1370 ANALOG DEVICES INC ADXRS290 DRIVER
1371 M:      Nishant Malpani <nish.malpani25@gmail.com>
1372 L:      linux-iio@vger.kernel.org
1373 S:      Supported
1374 F:      drivers/iio/gyro/adxrs290.c
1375 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1376
1377 ANALOG DEVICES INC ASOC CODEC DRIVERS
1378 M:      Lars-Peter Clausen <lars@metafoo.de>
1379 M:      Nuno Sá <nuno.sa@analog.com>
1380 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1381 S:      Supported
1382 W:      http://wiki.analog.com/
1383 W:      https://ez.analog.com/linux-software-drivers
1384 F:      sound/soc/codecs/ad1*
1385 F:      sound/soc/codecs/ad7*
1386 F:      sound/soc/codecs/adau*
1387 F:      sound/soc/codecs/adav*
1388 F:      sound/soc/codecs/sigmadsp.*
1389 F:      sound/soc/codecs/ssm*
1390
1391 ANALOG DEVICES INC DMA DRIVERS
1392 M:      Lars-Peter Clausen <lars@metafoo.de>
1393 S:      Supported
1394 W:      https://ez.analog.com/linux-software-drivers
1395 F:      drivers/dma/dma-axi-dmac.c
1396
1397 ANALOG DEVICES INC IIO DRIVERS
1398 M:      Lars-Peter Clausen <lars@metafoo.de>
1399 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1400 S:      Supported
1401 W:      http://wiki.analog.com/
1402 W:      https://ez.analog.com/linux-software-drivers
1403 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1404 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1405 F:      Documentation/devicetree/bindings/iio/*/adi,*
1406 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1407 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1408 F:      drivers/iio/*/ad*
1409 F:      drivers/iio/adc/ltc249*
1410 F:      drivers/iio/amplifiers/hmc425a.c
1411 F:      drivers/staging/iio/*/ad*
1412 X:      drivers/iio/*/adjd*
1413
1414 ANALOG DEVICES INC MAX31760 DRIVER
1415 M:      Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1416 S:      Maintained
1417 W:      http://wiki.analog.com/
1418 W:      https://ez.analog.com/linux-software-drivers
1419 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1420 F:      Documentation/hwmon/max31760.rst
1421 F:      drivers/hwmon/max31760.c
1422
1423 ANALOGBITS PLL LIBRARIES
1424 M:      Paul Walmsley <paul.walmsley@sifive.com>
1425 S:      Supported
1426 F:      drivers/clk/analogbits/*
1427 F:      include/linux/clk/analogbits*
1428
1429 ANDROID CONFIG FRAGMENTS
1430 M:      Rob Herring <robh@kernel.org>
1431 S:      Supported
1432 F:      kernel/configs/android*
1433
1434 ANDROID DRIVERS
1435 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1436 M:      Arve Hjønnevåg <arve@android.com>
1437 M:      Todd Kjos <tkjos@android.com>
1438 M:      Martijn Coenen <maco@android.com>
1439 M:      Joel Fernandes <joel@joelfernandes.org>
1440 M:      Christian Brauner <christian@brauner.io>
1441 M:      Carlos Llamas <cmllamas@google.com>
1442 M:      Suren Baghdasaryan <surenb@google.com>
1443 L:      linux-kernel@vger.kernel.org
1444 S:      Supported
1445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1446 F:      drivers/android/
1447
1448 ANDROID GOLDFISH PIC DRIVER
1449 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1450 S:      Supported
1451 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1452 F:      drivers/irqchip/irq-goldfish-pic.c
1453
1454 ANDROID GOLDFISH RTC DRIVER
1455 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1456 S:      Supported
1457 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1458 F:      drivers/rtc/rtc-goldfish.c
1459
1460 AOA (Apple Onboard Audio) ALSA DRIVER
1461 M:      Johannes Berg <johannes@sipsolutions.net>
1462 L:      linuxppc-dev@lists.ozlabs.org
1463 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1464 S:      Maintained
1465 F:      sound/aoa/
1466
1467 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1468 M:      William Breathitt Gray <william.gray@linaro.org>
1469 L:      linux-iio@vger.kernel.org
1470 S:      Maintained
1471 F:      drivers/iio/addac/stx104.c
1472
1473 APM DRIVER
1474 M:      Jiri Kosina <jikos@kernel.org>
1475 S:      Odd fixes
1476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1477 F:      arch/x86/kernel/apm_32.c
1478 F:      drivers/char/apm-emulation.c
1479 F:      include/linux/apm_bios.h
1480 F:      include/uapi/linux/apm_bios.h
1481
1482 APPARMOR SECURITY MODULE
1483 M:      John Johansen <john.johansen@canonical.com>
1484 M:      John Johansen <john@apparmor.net>
1485 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1486 S:      Supported
1487 W:      apparmor.net
1488 B:      https://gitlab.com/apparmor/apparmor-kernel
1489 C:      irc://irc.oftc.net/apparmor
1490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1491 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1492 F:      Documentation/admin-guide/LSM/apparmor.rst
1493 F:      security/apparmor/
1494
1495 APPLE BCM5974 MULTITOUCH DRIVER
1496 M:      Henrik Rydberg <rydberg@bitmath.org>
1497 L:      linux-input@vger.kernel.org
1498 S:      Odd fixes
1499 F:      drivers/input/mouse/bcm5974.c
1500
1501 APPLE PCIE CONTROLLER DRIVER
1502 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1503 M:      Marc Zyngier <maz@kernel.org>
1504 L:      linux-pci@vger.kernel.org
1505 S:      Maintained
1506 F:      drivers/pci/controller/pcie-apple.c
1507
1508 APPLE SMC DRIVER
1509 M:      Henrik Rydberg <rydberg@bitmath.org>
1510 L:      linux-hwmon@vger.kernel.org
1511 S:      Odd fixes
1512 F:      drivers/hwmon/applesmc.c
1513
1514 APPLETALK NETWORK LAYER
1515 L:      netdev@vger.kernel.org
1516 S:      Odd fixes
1517 F:      drivers/net/appletalk/
1518 F:      include/linux/atalk.h
1519 F:      include/uapi/linux/atalk.h
1520 F:      net/appletalk/
1521
1522 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1523 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1524 S:      Supported
1525 F:      arch/arm64/boot/dts/apm/
1526
1527 APPLIED MICRO (APM) X-GENE SOC EDAC
1528 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1529 S:      Supported
1530 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1531 F:      drivers/edac/xgene_edac.c
1532
1533 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1534 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1535 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1536 S:      Supported
1537 F:      drivers/net/ethernet/apm/xgene-v2/
1538
1539 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1540 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1541 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1542 M:      Quan Nguyen <quan@os.amperecomputing.com>
1543 S:      Supported
1544 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1545 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1546 F:      drivers/net/ethernet/apm/xgene/
1547 F:      drivers/net/mdio/mdio-xgene.c
1548
1549 APPLIED MICRO (APM) X-GENE SOC PMU
1550 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1551 S:      Supported
1552 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1553 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1554 F:      drivers/perf/xgene_pmu.c
1555
1556 APTINA CAMERA SENSOR PLL
1557 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1558 L:      linux-media@vger.kernel.org
1559 S:      Maintained
1560 F:      drivers/media/i2c/aptina-pll.*
1561
1562 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1563 M:      Aleksa Savic <savicaleksa83@gmail.com>
1564 M:      Jack Doan <me@jackdoan.com>
1565 L:      linux-hwmon@vger.kernel.org
1566 S:      Maintained
1567 F:      Documentation/hwmon/aquacomputer_d5next.rst
1568 F:      drivers/hwmon/aquacomputer_d5next.c
1569
1570 AQUANTIA ETHERNET DRIVER (atlantic)
1571 M:      Igor Russkikh <irusskikh@marvell.com>
1572 L:      netdev@vger.kernel.org
1573 S:      Supported
1574 W:      https://www.marvell.com/
1575 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1576 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1577 F:      drivers/net/ethernet/aquantia/atlantic/
1578
1579 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1580 M:      Egor Pomozov <epomozov@marvell.com>
1581 L:      netdev@vger.kernel.org
1582 S:      Supported
1583 W:      http://www.aquantia.com
1584 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1585
1586 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1587 M:      Krzysztof Hałasa <khalasa@piap.pl>
1588 L:      linux-media@vger.kernel.org
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1591 F:      drivers/media/i2c/ar0521.c
1592
1593 ARASAN NAND CONTROLLER DRIVER
1594 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1595 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1596 L:      linux-mtd@lists.infradead.org
1597 S:      Maintained
1598 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1599 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1600
1601 ARC FRAMEBUFFER DRIVER
1602 M:      Jaya Kumar <jayalk@intworks.biz>
1603 S:      Maintained
1604 F:      drivers/video/fbdev/arcfb.c
1605 F:      drivers/video/fbdev/core/fb_defio.c
1606
1607 ARC PGU DRM DRIVER
1608 M:      Alexey Brodkin <abrodkin@synopsys.com>
1609 S:      Supported
1610 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1611 F:      drivers/gpu/drm/tiny/arcpgu.c
1612
1613 ARCNET NETWORK LAYER
1614 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1615 L:      netdev@vger.kernel.org
1616 S:      Maintained
1617 F:      drivers/net/arcnet/
1618 F:      include/uapi/linux/if_arcnet.h
1619
1620 ARM ARCHITECTED TIMER DRIVER
1621 M:      Mark Rutland <mark.rutland@arm.com>
1622 M:      Marc Zyngier <maz@kernel.org>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 S:      Maintained
1625 F:      arch/arm/include/asm/arch_timer.h
1626 F:      arch/arm64/include/asm/arch_timer.h
1627 F:      drivers/clocksource/arm_arch_timer.c
1628
1629 ARM HDLCD DRM DRIVER
1630 M:      Liviu Dudau <liviu.dudau@arm.com>
1631 S:      Supported
1632 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1633 F:      drivers/gpu/drm/arm/hdlcd_*
1634
1635 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1636 M:      Linus Walleij <linus.walleij@linaro.org>
1637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1638 S:      Maintained
1639 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1640 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1641 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1642 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1643 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1644 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1645 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1646 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1647 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1648 F:      arch/arm/boot/dts/arm-realview-*
1649 F:      arch/arm/boot/dts/integrator*
1650 F:      arch/arm/boot/dts/versatile*
1651 F:      arch/arm/mach-versatile/
1652 F:      drivers/bus/arm-integrator-lm.c
1653 F:      drivers/clk/versatile/
1654 F:      drivers/i2c/busses/i2c-versatile.c
1655 F:      drivers/irqchip/irq-versatile-fpga.c
1656 F:      drivers/mtd/maps/physmap-versatile.*
1657 F:      drivers/power/reset/arm-versatile-reboot.c
1658 F:      drivers/soc/versatile/
1659
1660 ARM KOMEDA DRM-KMS DRIVER
1661 M:      James (Qian) Wang <james.qian.wang@arm.com>
1662 M:      Liviu Dudau <liviu.dudau@arm.com>
1663 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1664 L:      Mali DP Maintainers <malidp@foss.arm.com>
1665 S:      Supported
1666 T:      git git://anongit.freedesktop.org/drm/drm-misc
1667 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1668 F:      Documentation/gpu/komeda-kms.rst
1669 F:      drivers/gpu/drm/arm/display/include/
1670 F:      drivers/gpu/drm/arm/display/komeda/
1671
1672 ARM MALI PANFROST DRM DRIVER
1673 M:      Rob Herring <robh@kernel.org>
1674 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1675 R:      Steven Price <steven.price@arm.com>
1676 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1677 L:      dri-devel@lists.freedesktop.org
1678 S:      Supported
1679 T:      git git://anongit.freedesktop.org/drm/drm-misc
1680 F:      drivers/gpu/drm/panfrost/
1681 F:      include/uapi/drm/panfrost_drm.h
1682
1683 ARM MALI-DP DRM DRIVER
1684 M:      Liviu Dudau <liviu.dudau@arm.com>
1685 M:      Brian Starkey <brian.starkey@arm.com>
1686 L:      Mali DP Maintainers <malidp@foss.arm.com>
1687 S:      Supported
1688 T:      git git://anongit.freedesktop.org/drm/drm-misc
1689 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1690 F:      Documentation/gpu/afbc.rst
1691 F:      drivers/gpu/drm/arm/
1692
1693 ARM MFM AND FLOPPY DRIVERS
1694 M:      Ian Molton <spyro@f2s.com>
1695 S:      Maintained
1696 F:      arch/arm/include/asm/floppy.h
1697 F:      arch/arm/mach-rpc/floppydma.S
1698
1699 ARM PMU PROFILING AND DEBUGGING
1700 M:      Will Deacon <will@kernel.org>
1701 M:      Mark Rutland <mark.rutland@arm.com>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1705 F:      Documentation/devicetree/bindings/perf/
1706 F:      arch/arm*/include/asm/hw_breakpoint.h
1707 F:      arch/arm*/include/asm/perf_event.h
1708 F:      arch/arm*/kernel/hw_breakpoint.c
1709 F:      arch/arm*/kernel/perf_*
1710 F:      drivers/perf/
1711 F:      include/linux/perf/arm_pmu.h
1712
1713 ARM PORT
1714 M:      Russell King <linux@armlinux.org.uk>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 S:      Odd Fixes
1717 W:      http://www.armlinux.org.uk/
1718 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1719 F:      arch/arm/
1720 X:      arch/arm/boot/dts/
1721
1722 ARM PRIMECELL AACI PL041 DRIVER
1723 M:      Russell King <linux@armlinux.org.uk>
1724 S:      Odd Fixes
1725 F:      sound/arm/aaci.*
1726
1727 ARM PRIMECELL BUS SUPPORT
1728 M:      Russell King <linux@armlinux.org.uk>
1729 S:      Odd Fixes
1730 F:      drivers/amba/
1731 F:      include/linux/amba/bus.h
1732
1733 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1734 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1735 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1736 L:      linux-mtd@lists.infradead.org
1737 S:      Maintained
1738 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1739 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1740
1741 ARM PRIMECELL PL35X SMC DRIVER
1742 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1743 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1745 S:      Maintained
1746 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1747 F:      drivers/memory/pl353-smc.c
1748
1749 ARM PRIMECELL CLCD PL110 DRIVER
1750 M:      Russell King <linux@armlinux.org.uk>
1751 S:      Odd Fixes
1752 F:      drivers/video/fbdev/amba-clcd.*
1753
1754 ARM PRIMECELL KMI PL050 DRIVER
1755 M:      Russell King <linux@armlinux.org.uk>
1756 S:      Odd Fixes
1757 F:      drivers/input/serio/ambakmi.*
1758 F:      include/linux/amba/kmi.h
1759
1760 ARM PRIMECELL MMCI PL180/1 DRIVER
1761 M:      Russell King <linux@armlinux.org.uk>
1762 S:      Odd Fixes
1763 F:      drivers/mmc/host/mmci.*
1764 F:      include/linux/amba/mmci.h
1765
1766 ARM PRIMECELL SSP PL022 SPI DRIVER
1767 M:      Linus Walleij <linus.walleij@linaro.org>
1768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1769 S:      Maintained
1770 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1771 F:      drivers/spi/spi-pl022.c
1772
1773 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1774 M:      Russell King <linux@armlinux.org.uk>
1775 S:      Odd Fixes
1776 F:      drivers/tty/serial/amba-pl01*.c
1777 F:      include/linux/amba/serial.h
1778
1779 ARM PRIMECELL VIC PL190/PL192 DRIVER
1780 M:      Linus Walleij <linus.walleij@linaro.org>
1781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1782 S:      Maintained
1783 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1784 F:      drivers/irqchip/irq-vic.c
1785
1786 ARM SMC WATCHDOG DRIVER
1787 M:      Julius Werner <jwerner@chromium.org>
1788 R:      Evan Benn <evanbenn@chromium.org>
1789 S:      Maintained
1790 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1791 F:      drivers/watchdog/arm_smc_wdt.c
1792
1793 ARM SMMU DRIVERS
1794 M:      Will Deacon <will@kernel.org>
1795 R:      Robin Murphy <robin.murphy@arm.com>
1796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1797 S:      Maintained
1798 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1799 F:      drivers/iommu/arm/
1800 F:      drivers/iommu/io-pgtable-arm*
1801
1802 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1803 M:      Arnd Bergmann <arnd@arndb.de>
1804 M:      Olof Johansson <olof@lixom.net>
1805 M:      soc@kernel.org
1806 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1807 S:      Maintained
1808 C:      irc://irc.libera.chat/armlinux
1809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1810 F:      arch/arm/boot/dts/Makefile
1811 F:      arch/arm64/boot/dts/Makefile
1812
1813 ARM SUB-ARCHITECTURES
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Maintained
1816 C:      irc://irc.libera.chat/armlinux
1817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1818 F:      arch/arm/mach-*/
1819 F:      arch/arm/plat-*/
1820
1821 ARM/ACTIONS SEMI ARCHITECTURE
1822 M:      Andreas Färber <afaerber@suse.de>
1823 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1826 S:      Maintained
1827 F:      Documentation/devicetree/bindings/arm/actions.yaml
1828 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1829 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1830 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1831 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1832 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1833 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1834 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1835 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1836 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1837 F:      arch/arm/boot/dts/owl-*
1838 F:      arch/arm/mach-actions/
1839 F:      arch/arm64/boot/dts/actions/
1840 F:      drivers/clk/actions/
1841 F:      drivers/clocksource/timer-owl*
1842 F:      drivers/dma/owl-dma.c
1843 F:      drivers/i2c/busses/i2c-owl.c
1844 F:      drivers/irqchip/irq-owl-sirq.c
1845 F:      drivers/mmc/host/owl-mmc.c
1846 F:      drivers/net/ethernet/actions/
1847 F:      drivers/pinctrl/actions/*
1848 F:      drivers/soc/actions/
1849 F:      include/dt-bindings/power/owl-*
1850 F:      include/dt-bindings/reset/actions,*
1851 F:      include/linux/soc/actions/
1852 N:      owl
1853
1854 ARM/ADS SPHERE MACHINE SUPPORT
1855 M:      Lennert Buytenhek <kernel@wantstofly.org>
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 S:      Maintained
1858
1859 ARM/AFEB9260 MACHINE SUPPORT
1860 M:      Sergey Lapin <slapin@ossfans.org>
1861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1862 S:      Maintained
1863
1864 ARM/AJECO 1ARM MACHINE SUPPORT
1865 M:      Lennert Buytenhek <kernel@wantstofly.org>
1866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S:      Maintained
1868
1869 ARM/Allwinner SoC Clock Support
1870 M:      Emilio López <emilio@elopez.com.ar>
1871 S:      Maintained
1872 F:      drivers/clk/sunxi/
1873
1874 ARM/Allwinner sunXi SoC support
1875 M:      Chen-Yu Tsai <wens@csie.org>
1876 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1877 M:      Samuel Holland <samuel@sholland.org>
1878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1879 S:      Maintained
1880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1881 L:      linux-sunxi@lists.linux.dev
1882 F:      arch/arm/mach-sunxi/
1883 F:      arch/arm64/boot/dts/allwinner/
1884 F:      drivers/clk/sunxi-ng/
1885 F:      drivers/pinctrl/sunxi/
1886 F:      drivers/soc/sunxi/
1887 N:      allwinner
1888 N:      sun[x456789]i
1889 N:      sun50i
1890
1891 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1892 M:      Neil Armstrong <neil.armstrong@linaro.org>
1893 M:      Jerome Brunet <jbrunet@baylibre.com>
1894 L:      linux-amlogic@lists.infradead.org
1895 S:      Maintained
1896 F:      Documentation/devicetree/bindings/clock/amlogic*
1897 F:      drivers/clk/meson/
1898 F:      include/dt-bindings/clock/gxbb*
1899 F:      include/dt-bindings/clock/meson*
1900
1901 ARM/Amlogic Meson SoC Crypto Drivers
1902 M:      Corentin Labbe <clabbe@baylibre.com>
1903 L:      linux-crypto@vger.kernel.org
1904 L:      linux-amlogic@lists.infradead.org
1905 S:      Maintained
1906 F:      Documentation/devicetree/bindings/crypto/amlogic*
1907 F:      drivers/crypto/amlogic/
1908
1909 ARM/Amlogic Meson SoC Sound Drivers
1910 M:      Jerome Brunet <jbrunet@baylibre.com>
1911 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1912 S:      Maintained
1913 F:      Documentation/devicetree/bindings/sound/amlogic*
1914 F:      sound/soc/meson/
1915
1916 ARM/Amlogic Meson SoC support
1917 M:      Neil Armstrong <neil.armstrong@linaro.org>
1918 M:      Kevin Hilman <khilman@baylibre.com>
1919 R:      Jerome Brunet <jbrunet@baylibre.com>
1920 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 L:      linux-amlogic@lists.infradead.org
1923 S:      Maintained
1924 W:      http://linux-meson.com/
1925 F:      arch/arm/boot/dts/meson*
1926 F:      arch/arm/mach-meson/
1927 F:      arch/arm64/boot/dts/amlogic/
1928 F:      drivers/mmc/host/meson*
1929 F:      drivers/pinctrl/meson/
1930 F:      drivers/rtc/rtc-meson*
1931 F:      drivers/soc/amlogic/
1932 N:      meson
1933
1934 ARM/Annapurna Labs ALPINE ARCHITECTURE
1935 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1936 M:      Antoine Tenart <atenart@kernel.org>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939 F:      arch/arm/boot/dts/alpine*
1940 F:      arch/arm/mach-alpine/
1941 F:      arch/arm64/boot/dts/amazon/
1942 F:      drivers/*/*alpine*
1943
1944 ARM/APPLE MACHINE SUPPORT
1945 M:      Hector Martin <marcan@marcan.st>
1946 M:      Sven Peter <sven@svenpeter.dev>
1947 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1948 L:      asahi@lists.linux.dev
1949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1950 S:      Maintained
1951 W:      https://asahilinux.org
1952 B:      https://github.com/AsahiLinux/linux/issues
1953 C:      irc://irc.oftc.net/asahi-dev
1954 T:      git https://github.com/AsahiLinux/linux.git
1955 F:      Documentation/devicetree/bindings/arm/apple.yaml
1956 F:      Documentation/devicetree/bindings/arm/apple/*
1957 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1958 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1959 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1960 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1961 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1962 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1963 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1964 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1965 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1966 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1967 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1968 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1969 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1970 F:      Documentation/devicetree/bindings/power/apple*
1971 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1972 F:      arch/arm64/boot/dts/apple/
1973 F:      drivers/bluetooth/hci_bcm4377.c
1974 F:      drivers/clk/clk-apple-nco.c
1975 F:      drivers/cpufreq/apple-soc-cpufreq.c
1976 F:      drivers/dma/apple-admac.c
1977 F:      drivers/i2c/busses/i2c-pasemi-core.c
1978 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1979 F:      drivers/iommu/apple-dart.c
1980 F:      drivers/iommu/io-pgtable-dart.c
1981 F:      drivers/irqchip/irq-apple-aic.c
1982 F:      drivers/mailbox/apple-mailbox.c
1983 F:      drivers/nvme/host/apple.c
1984 F:      drivers/nvmem/apple-efuses.c
1985 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1986 F:      drivers/soc/apple/*
1987 F:      drivers/watchdog/apple_wdt.c
1988 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1989 F:      include/dt-bindings/pinctrl/apple.h
1990 F:      include/linux/apple-mailbox.h
1991 F:      include/linux/soc/apple/*
1992
1993 ARM/APPLE MACHINE SOUND DRIVERS
1994 M:      Martin Povišer <povik+lin@cutebit.org>
1995 L:      asahi@lists.linux.dev
1996 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1997 S:      Maintained
1998 F:      Documentation/devicetree/bindings/sound/apple,*
1999 F:      sound/soc/apple/*
2000 F:      sound/soc/codecs/cs42l83-i2c.c
2001
2002 ARM/ARTPEC MACHINE SUPPORT
2003 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2004 M:      Lars Persson <lars.persson@axis.com>
2005 L:      linux-arm-kernel@axis.com
2006 S:      Maintained
2007 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
2008 F:      arch/arm/boot/dts/artpec6*
2009 F:      arch/arm/mach-artpec
2010 F:      drivers/clk/axis
2011 F:      drivers/crypto/axis
2012 F:      drivers/mmc/host/usdhi6rol0.c
2013 F:      drivers/pinctrl/pinctrl-artpec*
2014
2015 ARM/ASPEED I2C DRIVER
2016 M:      Brendan Higgins <brendanhiggins@google.com>
2017 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
2018 R:      Joel Stanley <joel@jms.id.au>
2019 L:      linux-i2c@vger.kernel.org
2020 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2021 S:      Maintained
2022 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2023 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2024 F:      drivers/i2c/busses/i2c-aspeed.c
2025 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2026
2027 ARM/ASPEED MACHINE SUPPORT
2028 M:      Joel Stanley <joel@jms.id.au>
2029 R:      Andrew Jeffery <andrew@aj.id.au>
2030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2031 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2032 S:      Supported
2033 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2035 F:      Documentation/devicetree/bindings/arm/aspeed/
2036 F:      arch/arm/boot/dts/aspeed-*
2037 F:      arch/arm/mach-aspeed/
2038 N:      aspeed
2039
2040 ARM/BITMAIN ARCHITECTURE
2041 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043 S:      Maintained
2044 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2045 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2046 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2047 F:      arch/arm64/boot/dts/bitmain/
2048 F:      drivers/clk/clk-bm1880.c
2049 F:      drivers/pinctrl/pinctrl-bm1880.c
2050
2051 ARM/CALXEDA HIGHBANK ARCHITECTURE
2052 M:      Andre Przywara <andre.przywara@arm.com>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 S:      Maintained
2055 F:      arch/arm/boot/dts/ecx-*.dts*
2056 F:      arch/arm/boot/dts/highbank.dts
2057 F:      arch/arm/mach-highbank/
2058
2059 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
2060 M:      Krzysztof Halasa <khalasa@piap.pl>
2061 S:      Maintained
2062 F:      arch/arm/mach-cns3xxx/
2063
2064 ARM/CAVIUM THUNDER NETWORK DRIVER
2065 M:      Sunil Goutham <sgoutham@marvell.com>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 S:      Supported
2068 F:      drivers/net/ethernet/cavium/thunder/
2069
2070 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2071 M:      Lukasz Majewski <lukma@denx.de>
2072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2073 S:      Maintained
2074 F:      arch/arm/mach-ep93xx/ts72xx.c
2075
2076 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2077 M:      Alexander Shiyan <shc_work@mail.ru>
2078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 S:      Odd Fixes
2080 N:      clps711x
2081
2082 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2083 M:      Lennert Buytenhek <kernel@wantstofly.org>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086
2087 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2088 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2089 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
2090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 S:      Maintained
2092 F:      Documentation/devicetree/bindings/iio/adc/cirrus,ep9301-adc.yaml
2093 F:      arch/arm/mach-ep93xx/
2094 F:      arch/arm/mach-ep93xx/include/mach/
2095 F:      drivers/iio/adc/ep93xx_adc.c
2096
2097 ARM/CLKDEV SUPPORT
2098 M:      Russell King <linux@armlinux.org.uk>
2099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2100 S:      Maintained
2101 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2102 F:      drivers/clk/clkdev.c
2103
2104 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2105 M:      Baruch Siach <baruch@tkos.co.il>
2106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 S:      Maintained
2108 F:      arch/arm/boot/dts/cx92755*
2109 N:      digicolor
2110
2111 ARM/CONTEC MICRO9 MACHINE SUPPORT
2112 M:      Hubert Feurstein <hubert.feurstein@contec.at>
2113 S:      Maintained
2114 F:      arch/arm/mach-ep93xx/micro9.c
2115
2116 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2117 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2118 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2119 R:      Mike Leach <mike.leach@linaro.org>
2120 R:      Leo Yan <leo.yan@linaro.org>
2121 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2123 S:      Maintained
2124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2125 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2126 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2127 F:      Documentation/devicetree/bindings/arm/qcom,coresight-*.yaml
2128 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2129 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2130 F:      Documentation/trace/coresight/*
2131 F:      drivers/hwtracing/coresight/*
2132 F:      include/dt-bindings/arm/coresight-cti-dt.h
2133 F:      include/linux/coresight*
2134 F:      samples/coresight/*
2135 F:      tools/perf/tests/shell/coresight/*
2136 F:      tools/perf/arch/arm/util/auxtrace.c
2137 F:      tools/perf/arch/arm/util/cs-etm.c
2138 F:      tools/perf/arch/arm/util/cs-etm.h
2139 F:      tools/perf/arch/arm/util/pmu.c
2140 F:      tools/perf/util/cs-etm-decoder/*
2141 F:      tools/perf/util/cs-etm.*
2142
2143 ARM/CORGI MACHINE SUPPORT
2144 M:      Richard Purdie <rpurdie@rpsys.net>
2145 S:      Maintained
2146
2147 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2148 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2149 M:      Linus Walleij <linus.walleij@linaro.org>
2150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2151 S:      Maintained
2152 T:      git git://github.com/ulli-kroll/linux.git
2153 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2154 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2155 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2156 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2157 F:      arch/arm/boot/dts/gemini*
2158 F:      arch/arm/mach-gemini/
2159 F:      drivers/crypto/gemini/
2160 F:      drivers/net/ethernet/cortina/
2161 F:      drivers/pinctrl/pinctrl-gemini.c
2162 F:      drivers/rtc/rtc-ftrtc010.c
2163
2164 ARM/CZ.NIC TURRIS SUPPORT
2165 M:      Marek Behún <kabel@kernel.org>
2166 S:      Maintained
2167 W:      https://www.turris.cz/
2168 F:      Documentation/ABI/testing/debugfs-moxtet
2169 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2170 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2171 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2172 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2173 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2174 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2175 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2176 F:      drivers/bus/moxtet.c
2177 F:      drivers/firmware/turris-mox-rwtm.c
2178 F:      drivers/leds/leds-turris-omnia.c
2179 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2180 F:      drivers/gpio/gpio-moxtet.c
2181 F:      drivers/watchdog/armada_37xx_wdt.c
2182 F:      include/dt-bindings/bus/moxtet.h
2183 F:      include/linux/armada-37xx-rwtm-mailbox.h
2184 F:      include/linux/moxtet.h
2185
2186 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2187 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2189 S:      Maintained
2190 F:      arch/arm/mach-pxa/ezx.c
2191
2192 ARM/FARADAY FA526 PORT
2193 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2195 S:      Maintained
2196 T:      git git://git.berlios.de/gemini-board
2197 F:      arch/arm/mm/*-fa*
2198
2199 ARM/FOOTBRIDGE ARCHITECTURE
2200 M:      Russell King <linux@armlinux.org.uk>
2201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2202 S:      Maintained
2203 W:      http://www.armlinux.org.uk/
2204 F:      arch/arm/include/asm/hardware/dec21285.h
2205 F:      arch/arm/mach-footbridge/
2206
2207 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2208 M:      Shawn Guo <shawnguo@kernel.org>
2209 M:      Sascha Hauer <s.hauer@pengutronix.de>
2210 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2211 R:      Fabio Estevam <festevam@gmail.com>
2212 R:      NXP Linux Team <linux-imx@nxp.com>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 S:      Maintained
2215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2216 X:      drivers/media/i2c/
2217 F:      arch/arm64/boot/dts/freescale/
2218 X:      arch/arm64/boot/dts/freescale/fsl-*
2219 X:      arch/arm64/boot/dts/freescale/qoriq-*
2220 N:      imx
2221 N:      mxs
2222
2223 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2224 M:      Shawn Guo <shawnguo@kernel.org>
2225 M:      Li Yang <leoyang.li@nxp.com>
2226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2227 S:      Maintained
2228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2229 F:      arch/arm/boot/dts/ls1021a*
2230 F:      arch/arm64/boot/dts/freescale/fsl-*
2231 F:      arch/arm64/boot/dts/freescale/qoriq-*
2232
2233 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2234 M:      Shawn Guo <shawnguo@kernel.org>
2235 M:      Sascha Hauer <s.hauer@pengutronix.de>
2236 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2237 R:      Stefan Agner <stefan@agner.ch>
2238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2239 S:      Maintained
2240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2241 F:      arch/arm/boot/dts/vf*
2242 F:      arch/arm/mach-imx/*vf610*
2243
2244 ARM/GLOMATION GESBC9312SX 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/GUMSTIX MACHINE SUPPORT
2250 M:      Steve Sakoman <sakoman@gmail.com>
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Maintained
2253
2254 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2255 M:      Philipp Zabel <philipp.zabel@gmail.com>
2256 M:      Paul Parsons <lost.distance@yahoo.com>
2257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2258 S:      Maintained
2259 F:      arch/arm/mach-pxa/hx4700.c
2260 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2261 F:      sound/soc/pxa/hx4700.c
2262
2263 ARM/HISILICON SOC SUPPORT
2264 M:      Wei Xu <xuwei5@hisilicon.com>
2265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2266 S:      Supported
2267 W:      http://www.hisilicon.com
2268 T:      git https://github.com/hisilicon/linux-hisi.git
2269 F:      arch/arm/boot/dts/hi3*
2270 F:      arch/arm/boot/dts/hip*
2271 F:      arch/arm/boot/dts/hisi*
2272 F:      arch/arm/mach-hisi/
2273 F:      arch/arm64/boot/dts/hisilicon/
2274
2275 ARM/HP JORNADA 7XX MACHINE SUPPORT
2276 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2277 S:      Maintained
2278 W:      www.jlime.com
2279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2280 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2281 F:      arch/arm/mach-sa1100/jornada720.c
2282
2283 ARM/HPE GXP ARCHITECTURE
2284 M:      Jean-Marie Verdun <verdun@hpe.com>
2285 M:      Nick Hawkins <nick.hawkins@hpe.com>
2286 S:      Maintained
2287 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2288 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2289 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2290 F:      arch/arm/boot/dts/hpe-bmc*
2291 F:      arch/arm/boot/dts/hpe-gxp*
2292 F:      arch/arm/mach-hpe/
2293 F:      drivers/clocksource/timer-gxp.c
2294 F:      drivers/spi/spi-gxp.c
2295 F:      drivers/watchdog/gxp-wdt.c
2296
2297 ARM/IGEP MACHINE SUPPORT
2298 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2299 M:      Javier Martinez Canillas <javier@dowhile0.org>
2300 L:      linux-omap@vger.kernel.org
2301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2302 S:      Maintained
2303 F:      arch/arm/boot/dts/omap3-igep*
2304
2305 ARM/INCOME PXA270 SUPPORT
2306 M:      Marek Vasut <marek.vasut@gmail.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 S:      Maintained
2309 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2310
2311 ARM/INTEL IOP32X ARM ARCHITECTURE
2312 M:      Lennert Buytenhek <kernel@wantstofly.org>
2313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2314 S:      Maintained
2315
2316 ARM/INTEL IQ81342EX MACHINE SUPPORT
2317 M:      Lennert Buytenhek <kernel@wantstofly.org>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 S:      Maintained
2320
2321 ARM/INTEL IXDP2850 MACHINE SUPPORT
2322 M:      Lennert Buytenhek <kernel@wantstofly.org>
2323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2324 S:      Maintained
2325
2326 ARM/INTEL IXP4XX ARM ARCHITECTURE
2327 M:      Linus Walleij <linusw@kernel.org>
2328 M:      Imre Kaloz <kaloz@openwrt.org>
2329 M:      Krzysztof Halasa <khalasa@piap.pl>
2330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2331 S:      Maintained
2332 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2333 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2334 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2335 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2336 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2337 F:      arch/arm/boot/dts/intel-ixp*
2338 F:      arch/arm/mach-ixp4xx/
2339 F:      drivers/bus/intel-ixp4xx-eb.c
2340 F:      drivers/clocksource/timer-ixp4xx.c
2341 F:      drivers/crypto/ixp4xx_crypto.c
2342 F:      drivers/gpio/gpio-ixp4xx.c
2343 F:      drivers/irqchip/irq-ixp4xx.c
2344
2345 ARM/INTEL KEEMBAY ARCHITECTURE
2346 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2347 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2348 S:      Maintained
2349 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2350 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2351 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2352
2353 ARM/INTEL XSC3 (MANZANO) ARM CORE
2354 M:      Lennert Buytenhek <kernel@wantstofly.org>
2355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2356 S:      Maintained
2357
2358 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2359 M:      Lennert Buytenhek <kernel@wantstofly.org>
2360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2361 S:      Maintained
2362
2363 ARM/LG1K ARCHITECTURE
2364 M:      Chanho Min <chanho.min@lge.com>
2365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2366 S:      Maintained
2367 F:      arch/arm64/boot/dts/lg/
2368
2369 ARM/LOGICPD PXA270 MACHINE SUPPORT
2370 M:      Lennert Buytenhek <kernel@wantstofly.org>
2371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2372 S:      Maintained
2373
2374 ARM/LPC18XX ARCHITECTURE
2375 M:      Vladimir Zapolskiy <vz@mleia.com>
2376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2377 S:      Maintained
2378 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2379 F:      arch/arm/boot/dts/lpc43*
2380 F:      drivers/i2c/busses/i2c-lpc2k.c
2381 F:      drivers/memory/pl172.c
2382 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2383 F:      drivers/rtc/rtc-lpc24xx.c
2384 N:      lpc18xx
2385
2386 ARM/LPC32XX SOC SUPPORT
2387 M:      Vladimir Zapolskiy <vz@mleia.com>
2388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2389 S:      Maintained
2390 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2391 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2392 F:      arch/arm/boot/dts/lpc32*
2393 F:      arch/arm/mach-lpc32xx/
2394 F:      drivers/i2c/busses/i2c-pnx.c
2395 F:      drivers/net/ethernet/nxp/lpc_eth.c
2396 F:      drivers/usb/host/ohci-nxp.c
2397 F:      drivers/watchdog/pnx4008_wdt.c
2398 N:      lpc32xx
2399
2400 ARM/MAGICIAN MACHINE SUPPORT
2401 M:      Philipp Zabel <philipp.zabel@gmail.com>
2402 S:      Maintained
2403
2404 ARM/Marvell Dove/MV78xx0/Orion SOC support
2405 M:      Andrew Lunn <andrew@lunn.ch>
2406 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2407 M:      Gregory Clement <gregory.clement@bootlin.com>
2408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2409 S:      Maintained
2410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2411 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2412 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2413 F:      Documentation/devicetree/bindings/soc/dove/
2414 F:      arch/arm/boot/dts/dove*
2415 F:      arch/arm/boot/dts/orion5x*
2416 F:      arch/arm/mach-dove/
2417 F:      arch/arm/mach-mv78xx0/
2418 F:      arch/arm/mach-orion5x/
2419 F:      arch/arm/plat-orion/
2420 F:      drivers/soc/dove/
2421
2422 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2423 M:      Andrew Lunn <andrew@lunn.ch>
2424 M:      Gregory Clement <gregory.clement@bootlin.com>
2425 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2427 S:      Maintained
2428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2429 F:      Documentation/devicetree/bindings/arm/marvell/
2430 F:      arch/arm/boot/dts/armada*
2431 F:      arch/arm/boot/dts/kirkwood*
2432 F:      arch/arm/configs/mvebu_*_defconfig
2433 F:      arch/arm/mach-mvebu/
2434 F:      arch/arm64/boot/dts/marvell/armada*
2435 F:      arch/arm64/boot/dts/marvell/cn913*
2436 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2437 F:      drivers/cpufreq/armada-8k-cpufreq.c
2438 F:      drivers/cpufreq/mvebu-cpufreq.c
2439 F:      drivers/irqchip/irq-armada-370-xp.c
2440 F:      drivers/irqchip/irq-mvebu-*
2441 F:      drivers/pinctrl/mvebu/
2442 F:      drivers/rtc/rtc-armada38x.c
2443
2444 ARM/Mediatek RTC DRIVER
2445 M:      Eddie Huang <eddie.huang@mediatek.com>
2446 M:      Sean Wang <sean.wang@mediatek.com>
2447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2448 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2449 S:      Maintained
2450 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2451 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2452 F:      drivers/rtc/rtc-mt2712.c
2453 F:      drivers/rtc/rtc-mt6397.c
2454 F:      drivers/rtc/rtc-mt7622.c
2455
2456 ARM/Mediatek SoC support
2457 M:      Matthias Brugger <matthias.bgg@gmail.com>
2458 R:      AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
2459 L:      linux-kernel@vger.kernel.org
2460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2462 S:      Maintained
2463 W:      https://mtk.wiki.kernel.org/
2464 C:      irc://irc.libera.chat/linux-mediatek
2465 F:      arch/arm/boot/dts/mt2*
2466 F:      arch/arm/boot/dts/mt6*
2467 F:      arch/arm/boot/dts/mt7*
2468 F:      arch/arm/boot/dts/mt8*
2469 F:      arch/arm/mach-mediatek/
2470 F:      arch/arm64/boot/dts/mediatek/
2471 F:      drivers/soc/mediatek/
2472 N:      mtk
2473 N:      mt[2678]
2474 K:      mediatek
2475
2476 ARM/Mediatek USB3 PHY DRIVER
2477 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2479 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2480 S:      Maintained
2481 F:      Documentation/devicetree/bindings/phy/mediatek,*
2482 F:      drivers/phy/mediatek/
2483
2484 ARM/Microchip (AT91) SoC support
2485 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2486 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2487 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2489 S:      Supported
2490 W:      http://www.linux4sam.org
2491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2492 F:      arch/arm/boot/dts/at91*.dts
2493 F:      arch/arm/boot/dts/at91*.dtsi
2494 F:      arch/arm/boot/dts/sama*.dts
2495 F:      arch/arm/boot/dts/sama*.dtsi
2496 F:      arch/arm/include/debug/at91.S
2497 F:      arch/arm/mach-at91/
2498 F:      drivers/memory/atmel*
2499 F:      drivers/watchdog/sama5d4_wdt.c
2500 F:      include/soc/at91/
2501 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2502 X:      drivers/net/wireless/atmel/
2503 N:      at91
2504 N:      atmel
2505
2506 ARM/Microchip Sparx5 SoC support
2507 M:      Lars Povlsen <lars.povlsen@microchip.com>
2508 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2509 M:      Daniel Machon <daniel.machon@microchip.com>
2510 M:      UNGLinuxDriver@microchip.com
2511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2512 S:      Supported
2513 T:      git git://github.com/microchip-ung/linux-upstream.git
2514 F:      arch/arm64/boot/dts/microchip/
2515 F:      drivers/net/ethernet/microchip/vcap/
2516 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2517 N:      sparx5
2518
2519 Microchip Timer Counter Block (TCB) Capture Driver
2520 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2522 L:      linux-iio@vger.kernel.org
2523 S:      Maintained
2524 F:      drivers/counter/microchip-tcb-capture.c
2525
2526 ARM/MILBEAUT ARCHITECTURE
2527 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2528 M:      Takao Orito <orito.takao@socionext.com>
2529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2530 S:      Maintained
2531 F:      arch/arm/boot/dts/milbeaut*
2532 F:      arch/arm/mach-milbeaut/
2533 N:      milbeaut
2534
2535 ARM/MIOA701 MACHINE SUPPORT
2536 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2538 S:      Maintained
2539 F:      arch/arm/mach-pxa/mioa701.c
2540
2541 ARM/MStar/Sigmastar Armv7 SoC support
2542 M:      Daniel Palmer <daniel@thingy.jp>
2543 M:      Romain Perier <romain.perier@gmail.com>
2544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2545 S:      Maintained
2546 W:      http://linux-chenxing.org/
2547 T:      git git://github.com/linux-chenxing/linux.git
2548 F:      Documentation/devicetree/bindings/arm/mstar/*
2549 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2550 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2551 F:      arch/arm/boot/dts/mstar-*
2552 F:      arch/arm/mach-mstar/
2553 F:      drivers/clk/mstar/
2554 F:      drivers/clocksource/timer-msc313e.c
2555 F:      drivers/gpio/gpio-msc313.c
2556 F:      drivers/rtc/rtc-msc313.c
2557 F:      drivers/watchdog/msc313e_wdt.c
2558 F:      include/dt-bindings/clock/mstar-*
2559 F:      include/dt-bindings/gpio/msc313-gpio.h
2560
2561 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2562 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2563 S:      Maintained
2564
2565 ARM/NOMADIK/Ux500 ARCHITECTURES
2566 M:      Linus Walleij <linus.walleij@linaro.org>
2567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2568 S:      Maintained
2569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2570 F:      Documentation/devicetree/bindings/arm/ste-*
2571 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2572 F:      Documentation/devicetree/bindings/arm/ux500/
2573 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2574 F:      arch/arm/boot/dts/ste-*
2575 F:      arch/arm/mach-nomadik/
2576 F:      arch/arm/mach-ux500/
2577 F:      drivers/clk/clk-nomadik.c
2578 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2579 F:      drivers/dma/ste_dma40*
2580 F:      drivers/hwspinlock/u8500_hsem.c
2581 F:      drivers/i2c/busses/i2c-nomadik.c
2582 F:      drivers/iio/adc/ab8500-gpadc.c
2583 F:      drivers/mfd/ab8500*
2584 F:      drivers/mfd/abx500*
2585 F:      drivers/mfd/db8500*
2586 F:      drivers/pinctrl/nomadik/
2587 F:      drivers/rtc/rtc-ab8500.c
2588 F:      drivers/rtc/rtc-pl031.c
2589 F:      drivers/soc/ux500/
2590
2591 ARM/NUVOTON NPCM ARCHITECTURE
2592 M:      Avi Fishman <avifishman70@gmail.com>
2593 M:      Tomer Maimon <tmaimon77@gmail.com>
2594 M:      Tali Perry <tali.perry1@gmail.com>
2595 R:      Patrick Venture <venture@google.com>
2596 R:      Nancy Yuen <yuenn@google.com>
2597 R:      Benjamin Fair <benjaminfair@google.com>
2598 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2599 S:      Supported
2600 F:      Documentation/devicetree/bindings/*/*/*npcm*
2601 F:      Documentation/devicetree/bindings/*/*npcm*
2602 F:      Documentation/devicetree/bindings/arm/npcm/*
2603 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2604 F:      arch/arm/boot/dts/nuvoton-npcm*
2605 F:      arch/arm/mach-npcm/
2606 F:      arch/arm64/boot/dts/nuvoton/
2607 F:      drivers/*/*npcm*
2608 F:      drivers/*/*/*npcm*
2609 F:      drivers/rtc/rtc-nct3018y.c
2610 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2611 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2612
2613 ARM/NUVOTON WPCM450 ARCHITECTURE
2614 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2615 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2616 S:      Maintained
2617 W:      https://github.com/neuschaefer/wpcm450/wiki
2618 F:      Documentation/devicetree/bindings/*/*wpcm*
2619 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2620 F:      arch/arm/mach-npcm/wpcm450.c
2621 F:      drivers/*/*/*wpcm*
2622 F:      drivers/*/*wpcm*
2623
2624 ARM/NXP S32G ARCHITECTURE
2625 M:      Chester Lin <clin@suse.com>
2626 R:      Andreas Färber <afaerber@suse.de>
2627 R:      Matthias Brugger <mbrugger@suse.com>
2628 R:      NXP S32 Linux Team <s32@nxp.com>
2629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2630 S:      Maintained
2631 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2632
2633 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2634 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2635 S:      Orphan
2636 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2637 F:      arch/arm/mach-s3c/gta02.h
2638 F:      arch/arm/mach-s3c/mach-gta02.c
2639
2640 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2641 M:      Alexander Clouter <alex@digriz.org.uk>
2642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2643 S:      Maintained
2644 W:      http://www.digriz.org.uk/ts78xx/kernel
2645 F:      arch/arm/mach-orion5x/ts78xx-*
2646
2647 ARM/OXNAS platform support
2648 M:      Neil Armstrong <neil.armstrong@linaro.org>
2649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2650 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2651 S:      Maintained
2652 F:      arch/arm/boot/dts/ox8*.dts*
2653 F:      arch/arm/mach-oxnas/
2654 F:      drivers/power/reset/oxnas-restart.c
2655 N:      oxnas
2656
2657 ARM/PALM TREO SUPPORT
2658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2659 S:      Orphan
2660 F:      arch/arm/mach-pxa/palmtreo.*
2661
2662 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2663 M:      Marek Vasut <marek.vasut@gmail.com>
2664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 S:      Maintained
2666 W:      http://hackndev.com
2667 F:      arch/arm/mach-pxa/include/mach/palmld.h
2668 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2669 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2670 F:      arch/arm/mach-pxa/palmld.c
2671 F:      arch/arm/mach-pxa/palmt5.*
2672 F:      arch/arm/mach-pxa/palmtc.c
2673 F:      arch/arm/mach-pxa/palmte2.*
2674 F:      arch/arm/mach-pxa/palmtx.c
2675
2676 ARM/PALMZ72 SUPPORT
2677 M:      Sergey Lapin <slapin@ossfans.org>
2678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2679 S:      Maintained
2680 W:      http://hackndev.com
2681 F:      arch/arm/mach-pxa/palmz72.*
2682
2683 ARM/PLEB SUPPORT
2684 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2685 S:      Maintained
2686 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2687
2688 ARM/PT DIGITAL BOARD PORT
2689 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2691 S:      Maintained
2692 W:      http://www.armlinux.org.uk/
2693
2694 ARM/QUALCOMM SUPPORT
2695 M:      Andy Gross <agross@kernel.org>
2696 M:      Bjorn Andersson <andersson@kernel.org>
2697 R:      Konrad Dybcio <konrad.dybcio@linaro.org>
2698 L:      linux-arm-msm@vger.kernel.org
2699 S:      Maintained
2700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2701 F:      Documentation/devicetree/bindings/*/qcom*
2702 F:      Documentation/devicetree/bindings/soc/qcom/
2703 F:      arch/arm/boot/dts/qcom-*.dts
2704 F:      arch/arm/boot/dts/qcom-*.dtsi
2705 F:      arch/arm/configs/qcom_defconfig
2706 F:      arch/arm/mach-qcom/
2707 F:      arch/arm64/boot/dts/qcom/
2708 F:      drivers/*/*/qcom*
2709 F:      drivers/*/*/qcom/
2710 F:      drivers/*/pm8???-*
2711 F:      drivers/*/qcom*
2712 F:      drivers/*/qcom/
2713 F:      drivers/bluetooth/btqcomsmd.c
2714 F:      drivers/clocksource/timer-qcom.c
2715 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2716 F:      drivers/extcon/extcon-qcom*
2717 F:      drivers/i2c/busses/i2c-qcom-geni.c
2718 F:      drivers/i2c/busses/i2c-qup.c
2719 F:      drivers/iommu/msm*
2720 F:      drivers/mfd/ssbi.c
2721 F:      drivers/mmc/host/mmci_qcom*
2722 F:      drivers/mmc/host/sdhci-msm.c
2723 F:      drivers/pci/controller/dwc/pcie-qcom.c
2724 F:      drivers/phy/qualcomm/
2725 F:      drivers/power/*/msm*
2726 F:      drivers/reset/reset-qcom-*
2727 F:      drivers/ufs/host/ufs-qcom*
2728 F:      drivers/spi/spi-geni-qcom.c
2729 F:      drivers/spi/spi-qcom-qspi.c
2730 F:      drivers/spi/spi-qup.c
2731 F:      drivers/tty/serial/msm_serial.c
2732 F:      drivers/usb/dwc3/dwc3-qcom.c
2733 F:      include/dt-bindings/*/qcom*
2734 F:      include/linux/*/qcom*
2735 F:      include/linux/soc/qcom/
2736
2737 ARM/RADISYS ENP2611 MACHINE SUPPORT
2738 M:      Lennert Buytenhek <kernel@wantstofly.org>
2739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2740 S:      Maintained
2741
2742 ARM/RDA MICRO ARCHITECTURE
2743 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2745 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2746 S:      Maintained
2747 F:      Documentation/devicetree/bindings/arm/rda.yaml
2748 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2749 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2750 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2751 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2752 F:      arch/arm/boot/dts/rda8810pl-*
2753 F:      drivers/clocksource/timer-rda.c
2754 F:      drivers/gpio/gpio-rda.c
2755 F:      drivers/irqchip/irq-rda-intc.c
2756 F:      drivers/tty/serial/rda-uart.c
2757
2758 ARM/REALTEK ARCHITECTURE
2759 M:      Andreas Färber <afaerber@suse.de>
2760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2762 S:      Maintained
2763 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2764 F:      arch/arm/boot/dts/rtd*
2765 F:      arch/arm/mach-realtek/
2766 F:      arch/arm64/boot/dts/realtek/
2767
2768 ARM/RISC-V/RENESAS ARCHITECTURE
2769 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2770 M:      Magnus Damm <magnus.damm@gmail.com>
2771 L:      linux-renesas-soc@vger.kernel.org
2772 S:      Supported
2773 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2774 C:      irc://irc.libera.chat/renesas-soc
2775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2776 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2777 F:      Documentation/devicetree/bindings/soc/renesas/
2778 F:      arch/arm/boot/dts/emev2*
2779 F:      arch/arm/boot/dts/gr-peach*
2780 F:      arch/arm/boot/dts/iwg20d-q7*
2781 F:      arch/arm/boot/dts/r7s*
2782 F:      arch/arm/boot/dts/r8a*
2783 F:      arch/arm/boot/dts/r9a*
2784 F:      arch/arm/boot/dts/sh*
2785 F:      arch/arm/configs/shmobile_defconfig
2786 F:      arch/arm/include/debug/renesas-scif.S
2787 F:      arch/arm/mach-shmobile/
2788 F:      arch/arm64/boot/dts/renesas/
2789 F:      arch/riscv/boot/dts/renesas/
2790 F:      drivers/soc/renesas/
2791 F:      include/linux/soc/renesas/
2792
2793 ARM/RISCPC ARCHITECTURE
2794 M:      Russell King <linux@armlinux.org.uk>
2795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2796 S:      Maintained
2797 W:      http://www.armlinux.org.uk/
2798 F:      arch/arm/include/asm/hardware/ioc.h
2799 F:      arch/arm/include/asm/hardware/iomd.h
2800 F:      arch/arm/include/asm/hardware/memc.h
2801 F:      arch/arm/mach-rpc/
2802 F:      drivers/net/ethernet/8390/etherh.c
2803 F:      drivers/net/ethernet/i825xx/ether1*
2804 F:      drivers/net/ethernet/seeq/ether3*
2805 F:      drivers/scsi/arm/
2806
2807 ARM/Rockchip SoC support
2808 M:      Heiko Stuebner <heiko@sntech.de>
2809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2810 L:      linux-rockchip@lists.infradead.org
2811 S:      Maintained
2812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2813 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2814 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2815 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2816 F:      arch/arm/boot/dts/rk3*
2817 F:      arch/arm/boot/dts/rv1108*
2818 F:      arch/arm/mach-rockchip/
2819 F:      drivers/*/*/*rockchip*
2820 F:      drivers/*/*rockchip*
2821 F:      drivers/clk/rockchip/
2822 F:      drivers/i2c/busses/i2c-rk3x.c
2823 F:      sound/soc/rockchip/
2824 N:      rockchip
2825
2826 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2827 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2828 R:      Alim Akhtar <alim.akhtar@samsung.com>
2829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2830 L:      linux-samsung-soc@vger.kernel.org
2831 S:      Maintained
2832 C:      irc://irc.libera.chat/linux-exynos
2833 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2834 B:      mailto:linux-samsung-soc@vger.kernel.org
2835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2836 F:      Documentation/arm/samsung/
2837 F:      Documentation/devicetree/bindings/arm/samsung/
2838 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2839 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2840 F:      Documentation/devicetree/bindings/soc/samsung/
2841 F:      arch/arm/boot/dts/exynos*
2842 F:      arch/arm/boot/dts/s3c*
2843 F:      arch/arm/boot/dts/s5p*
2844 F:      arch/arm/mach-exynos*/
2845 F:      arch/arm/mach-s3c/
2846 F:      arch/arm/mach-s5p*/
2847 F:      arch/arm64/boot/dts/exynos/
2848 F:      drivers/*/*/*s3c24*
2849 F:      drivers/*/*s3c24*
2850 F:      drivers/*/*s3c64xx*
2851 F:      drivers/*/*s5pv210*
2852 F:      drivers/clocksource/samsung_pwm_timer.c
2853 F:      drivers/memory/samsung/
2854 F:      drivers/pwm/pwm-samsung.c
2855 F:      drivers/soc/samsung/
2856 F:      drivers/tty/serial/samsung*
2857 F:      include/clocksource/samsung_pwm.h
2858 F:      include/linux/platform_data/*s3c*
2859 F:      include/linux/serial_s3c.h
2860 F:      include/linux/soc/samsung/
2861 N:      exynos
2862 N:      s3c2410
2863 N:      s3c64xx
2864 N:      s5pv210
2865
2866 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2867 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2868 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2869 L:      linux-media@vger.kernel.org
2870 S:      Maintained
2871 F:      drivers/media/platform/samsung/s5p-g2d/
2872
2873 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2874 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2875 L:      linux-samsung-soc@vger.kernel.org
2876 L:      linux-media@vger.kernel.org
2877 S:      Maintained
2878 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2879 F:      drivers/media/cec/platform/s5p/
2880
2881 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2882 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2883 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2884 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2886 L:      linux-media@vger.kernel.org
2887 S:      Maintained
2888 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2889 F:      drivers/media/platform/samsung/s5p-jpeg/
2890
2891 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2892 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2893 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2895 L:      linux-media@vger.kernel.org
2896 S:      Maintained
2897 F:      drivers/media/platform/samsung/s5p-mfc/
2898
2899 ARM/SOCFPGA ARCHITECTURE
2900 M:      Dinh Nguyen <dinguyen@kernel.org>
2901 S:      Maintained
2902 W:      http://www.rocketboards.org
2903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2904 F:      arch/arm/boot/dts/socfpga*
2905 F:      arch/arm/configs/socfpga_defconfig
2906 F:      arch/arm/mach-socfpga/
2907 F:      arch/arm64/boot/dts/altera/
2908 F:      arch/arm64/boot/dts/intel/
2909
2910 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2911 M:      Dinh Nguyen <dinguyen@kernel.org>
2912 S:      Maintained
2913 F:      drivers/clk/socfpga/
2914
2915 ARM/SOCFPGA EDAC SUPPORT
2916 M:      Dinh Nguyen <dinguyen@kernel.org>
2917 S:      Maintained
2918 F:      drivers/edac/altera_edac.[ch]
2919
2920 ARM/SPREADTRUM SoC SUPPORT
2921 M:      Orson Zhai <orsonzhai@gmail.com>
2922 M:      Baolin Wang <baolin.wang7@gmail.com>
2923 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2924 S:      Maintained
2925 F:      arch/arm64/boot/dts/sprd
2926 N:      sprd
2927 N:      sc27xx
2928 N:      sc2731
2929
2930 ARM/STI ARCHITECTURE
2931 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2933 S:      Maintained
2934 W:      http://www.stlinux.com
2935 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2936 F:      arch/arm/boot/dts/sti*
2937 F:      arch/arm/mach-sti/
2938 F:      drivers/ata/ahci_st.c
2939 F:      drivers/char/hw_random/st-rng.c
2940 F:      drivers/clocksource/arm_global_timer.c
2941 F:      drivers/clocksource/clksrc_st_lpc.c
2942 F:      drivers/cpufreq/sti-cpufreq.c
2943 F:      drivers/dma/st_fdma*
2944 F:      drivers/i2c/busses/i2c-st.c
2945 F:      drivers/media/platform/st/sti/c8sectpfe/
2946 F:      drivers/media/rc/st_rc.c
2947 F:      drivers/mmc/host/sdhci-st.c
2948 F:      drivers/phy/st/phy-miphy28lp.c
2949 F:      drivers/phy/st/phy-stih407-usb.c
2950 F:      drivers/pinctrl/pinctrl-st.c
2951 F:      drivers/remoteproc/st_remoteproc.c
2952 F:      drivers/remoteproc/st_slim_rproc.c
2953 F:      drivers/reset/sti/
2954 F:      drivers/rtc/rtc-st-lpc.c
2955 F:      drivers/tty/serial/st-asc.c
2956 F:      drivers/usb/dwc3/dwc3-st.c
2957 F:      drivers/usb/host/ehci-st.c
2958 F:      drivers/usb/host/ohci-st.c
2959 F:      drivers/watchdog/st_lpc_wdt.c
2960 F:      include/linux/remoteproc/st_slim_rproc.h
2961
2962 ARM/STM32 ARCHITECTURE
2963 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2964 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2965 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2967 S:      Maintained
2968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2969 F:      arch/arm/boot/dts/stm32*
2970 F:      arch/arm/mach-stm32/
2971 F:      drivers/clocksource/armv7m_systick.c
2972 N:      stm32
2973 N:      stm
2974
2975 ARM/SUNPLUS SP7021 SOC SUPPORT
2976 M:      Qin Jian <qinjian@cqplus1.com>
2977 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2978 S:      Maintained
2979 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2980 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2981 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2982 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2983 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2984 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2985 F:      arch/arm/configs/sp7021_*defconfig
2986 F:      arch/arm/mach-sunplus/
2987 F:      drivers/irqchip/irq-sp7021-intc.c
2988 F:      drivers/reset/reset-sunplus.c
2989 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2990 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2991
2992 ARM/Synaptics SoC support
2993 M:      Jisheng Zhang <jszhang@kernel.org>
2994 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2996 S:      Maintained
2997 F:      arch/arm/boot/dts/berlin*
2998 F:      arch/arm/mach-berlin/
2999 F:      arch/arm64/boot/dts/synaptics/
3000
3001 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
3002 M:      Lennert Buytenhek <kernel@wantstofly.org>
3003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3004 S:      Maintained
3005
3006 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
3007 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3008 L:      linux-tegra@vger.kernel.org
3009 L:      linux-media@vger.kernel.org
3010 S:      Maintained
3011 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
3012 F:      drivers/media/cec/platform/tegra/
3013
3014 ARM/TESLA FSD SoC SUPPORT
3015 M:      Alim Akhtar <alim.akhtar@samsung.com>
3016 M:      linux-fsd@tesla.com
3017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3018 L:      linux-samsung-soc@vger.kernel.org
3019 S:      Maintained
3020 F:      arch/arm64/boot/dts/tesla*
3021
3022 ARM/TETON BGA MACHINE SUPPORT
3023 M:      "Mark F. Brown" <mark.brown314@gmail.com>
3024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3025 S:      Maintained
3026
3027 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
3028 M:      Santosh Shilimkar <ssantosh@kernel.org>
3029 L:      linux-kernel@vger.kernel.org
3030 S:      Maintained
3031 F:      drivers/memory/*emif*
3032
3033 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
3034 M:      Nishanth Menon <nm@ti.com>
3035 M:      Santosh Shilimkar <ssantosh@kernel.org>
3036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3037 S:      Maintained
3038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
3039 F:      arch/arm/boot/dts/keystone-*
3040 F:      arch/arm/mach-keystone/
3041
3042 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
3043 M:      Santosh Shilimkar <ssantosh@kernel.org>
3044 L:      linux-kernel@vger.kernel.org
3045 S:      Maintained
3046 F:      drivers/clk/keystone/
3047
3048 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
3049 M:      Santosh Shilimkar <ssantosh@kernel.org>
3050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3051 L:      linux-kernel@vger.kernel.org
3052 S:      Maintained
3053 F:      drivers/clocksource/timer-keystone.c
3054
3055 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
3056 M:      Santosh Shilimkar <ssantosh@kernel.org>
3057 L:      linux-kernel@vger.kernel.org
3058 S:      Maintained
3059 F:      drivers/power/reset/keystone-reset.c
3060
3061 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
3062 M:      Nishanth Menon <nm@ti.com>
3063 M:      Vignesh Raghavendra <vigneshr@ti.com>
3064 M:      Tero Kristo <kristo@kernel.org>
3065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3066 S:      Supported
3067 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
3068 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
3069 F:      arch/arm64/boot/dts/ti/Makefile
3070 F:      arch/arm64/boot/dts/ti/k3-*
3071 F:      include/dt-bindings/pinctrl/k3.h
3072
3073 ARM/THECUS N2100 MACHINE SUPPORT
3074 M:      Lennert Buytenhek <kernel@wantstofly.org>
3075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3076 S:      Maintained
3077
3078 ARM/TOSA MACHINE SUPPORT
3079 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
3080 M:      Dirk Opfer <dirk@opfer-online.de>
3081 S:      Maintained
3082
3083 ARM/TOSHIBA VISCONTI ARCHITECTURE
3084 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
3085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3086 S:      Supported
3087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
3088 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
3089 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
3090 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
3091 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
3092 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
3093 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
3094 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
3095 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
3096 F:      arch/arm64/boot/dts/toshiba/
3097 F:      drivers/clk/visconti/
3098 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
3099 F:      drivers/gpio/gpio-visconti.c
3100 F:      drivers/pci/controller/dwc/pcie-visconti.c
3101 F:      drivers/pinctrl/visconti/
3102 F:      drivers/watchdog/visconti_wdt.c
3103 N:      visconti
3104
3105 ARM/UNIPHIER ARCHITECTURE
3106 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
3107 M:      Masami Hiramatsu <mhiramat@kernel.org>
3108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3109 S:      Maintained
3110 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
3111 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
3112 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
3113 F:      arch/arm/boot/dts/uniphier*
3114 F:      arch/arm/include/asm/hardware/cache-uniphier.h
3115 F:      arch/arm/mach-uniphier/
3116 F:      arch/arm/mm/cache-uniphier.c
3117 F:      arch/arm64/boot/dts/socionext/uniphier*
3118 F:      drivers/bus/uniphier-system-bus.c
3119 F:      drivers/clk/uniphier/
3120 F:      drivers/dma/uniphier-mdmac.c
3121 F:      drivers/gpio/gpio-uniphier.c
3122 F:      drivers/i2c/busses/i2c-uniphier*
3123 F:      drivers/irqchip/irq-uniphier-aidet.c
3124 F:      drivers/mmc/host/uniphier-sd.c
3125 F:      drivers/pinctrl/uniphier/
3126 F:      drivers/reset/reset-uniphier.c
3127 F:      drivers/tty/serial/8250/8250_uniphier.c
3128 N:      uniphier
3129
3130 ARM/VERSATILE EXPRESS PLATFORM
3131 M:      Liviu Dudau <liviu.dudau@arm.com>
3132 M:      Sudeep Holla <sudeep.holla@arm.com>
3133 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
3134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3135 S:      Maintained
3136 F:      */*/*/vexpress*
3137 F:      */*/vexpress*
3138 F:      arch/arm/boot/dts/vexpress*
3139 F:      arch/arm/mach-vexpress/
3140 F:      arch/arm64/boot/dts/arm/
3141 F:      drivers/clk/versatile/clk-vexpress-osc.c
3142 F:      drivers/clocksource/timer-versatile.c
3143 N:      mps2
3144
3145 ARM/VFP SUPPORT
3146 M:      Russell King <linux@armlinux.org.uk>
3147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3148 S:      Maintained
3149 W:      http://www.armlinux.org.uk/
3150 F:      arch/arm/vfp/
3151
3152 ARM/VOIPAC PXA270 SUPPORT
3153 M:      Marek Vasut <marek.vasut@gmail.com>
3154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3155 S:      Maintained
3156 F:      arch/arm/mach-pxa/include/mach/vpac270.h
3157 F:      arch/arm/mach-pxa/vpac270.c
3158
3159 ARM/VT8500 ARM ARCHITECTURE
3160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3161 S:      Orphan
3162 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3163 F:      arch/arm/mach-vt8500/
3164 F:      drivers/clocksource/timer-vt8500.c
3165 F:      drivers/i2c/busses/i2c-wmt.c
3166 F:      drivers/mmc/host/wmt-sdmmc.c
3167 F:      drivers/pwm/pwm-vt8500.c
3168 F:      drivers/rtc/rtc-vt8500.c
3169 F:      drivers/tty/serial/vt8500_serial.c
3170 F:      drivers/usb/host/ehci-platform.c
3171 F:      drivers/usb/host/uhci-platform.c
3172 F:      drivers/video/fbdev/vt8500lcdfb.*
3173 F:      drivers/video/fbdev/wm8505fb*
3174 F:      drivers/video/fbdev/wmt_ge_rops.*
3175
3176 ARM/ZIPIT Z2 SUPPORT
3177 M:      Marek Vasut <marek.vasut@gmail.com>
3178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3179 S:      Maintained
3180 F:      arch/arm/mach-pxa/include/mach/z2.h
3181 F:      arch/arm/mach-pxa/z2.c
3182
3183 ARM/ZYNQ ARCHITECTURE
3184 M:      Michal Simek <michal.simek@xilinx.com>
3185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3186 S:      Supported
3187 W:      http://wiki.xilinx.com
3188 T:      git https://github.com/Xilinx/linux-xlnx.git
3189 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3190 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3191 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3192 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3193 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3194 F:      arch/arm/mach-zynq/
3195 F:      drivers/clocksource/timer-cadence-ttc.c
3196 F:      drivers/cpuidle/cpuidle-zynq.c
3197 F:      drivers/edac/synopsys_edac.c
3198 F:      drivers/i2c/busses/i2c-cadence.c
3199 F:      drivers/i2c/busses/i2c-xiic.c
3200 F:      drivers/mmc/host/sdhci-of-arasan.c
3201 N:      zynq
3202 N:      xilinx
3203
3204 ARM64 PORT (AARCH64 ARCHITECTURE)
3205 M:      Catalin Marinas <catalin.marinas@arm.com>
3206 M:      Will Deacon <will@kernel.org>
3207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3208 S:      Maintained
3209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3210 F:      Documentation/arm64/
3211 F:      arch/arm64/
3212 F:      tools/testing/selftests/arm64/
3213 X:      arch/arm64/boot/dts/
3214
3215 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3216 M:      George McCollister <george.mccollister@gmail.com>
3217 L:      netdev@vger.kernel.org
3218 S:      Maintained
3219 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3220 F:      drivers/net/dsa/xrs700x/*
3221 F:      net/dsa/tag_xrs700x.c
3222
3223 AS3645A LED FLASH CONTROLLER DRIVER
3224 M:      Sakari Ailus <sakari.ailus@iki.fi>
3225 L:      linux-leds@vger.kernel.org
3226 S:      Maintained
3227 F:      drivers/leds/flash/leds-as3645a.c
3228
3229 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3230 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3231 L:      linux-media@vger.kernel.org
3232 S:      Maintained
3233 T:      git git://linuxtv.org/media_tree.git
3234 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3235 F:      drivers/media/i2c/ak7375.c
3236
3237 ASAHI KASEI AK8974 DRIVER
3238 M:      Linus Walleij <linus.walleij@linaro.org>
3239 L:      linux-iio@vger.kernel.org
3240 S:      Supported
3241 W:      http://www.akm.com/
3242 F:      drivers/iio/magnetometer/ak8974.c
3243
3244 ASC7621 HARDWARE MONITOR DRIVER
3245 M:      George Joseph <george.joseph@fairview5.com>
3246 L:      linux-hwmon@vger.kernel.org
3247 S:      Maintained
3248 F:      Documentation/hwmon/asc7621.rst
3249 F:      drivers/hwmon/asc7621.c
3250
3251 ASIX AX88796C SPI ETHERNET ADAPTER
3252 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3253 S:      Maintained
3254 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3255 F:      drivers/net/ethernet/asix/ax88796c_*
3256
3257 ASPEED PECI CONTROLLER
3258 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3259 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3260 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3261 S:      Supported
3262 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3263 F:      drivers/peci/controller/peci-aspeed.c
3264
3265 ASPEED PINCTRL DRIVERS
3266 M:      Andrew Jeffery <andrew@aj.id.au>
3267 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3268 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3269 L:      linux-gpio@vger.kernel.org
3270 S:      Maintained
3271 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3272 F:      drivers/pinctrl/aspeed/
3273
3274 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3275 M:      Eddie James <eajames@linux.ibm.com>
3276 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3277 S:      Maintained
3278 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3279 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3280 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3281
3282 ASPEED SD/MMC DRIVER
3283 M:      Andrew Jeffery <andrew@aj.id.au>
3284 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3285 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3286 L:      linux-mmc@vger.kernel.org
3287 S:      Maintained
3288 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3289 F:      drivers/mmc/host/sdhci-of-aspeed*
3290
3291 ASPEED SMC SPI DRIVER
3292 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3293 M:      Cédric Le Goater <clg@kaod.org>
3294 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3295 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3296 L:      linux-spi@vger.kernel.org
3297 S:      Maintained
3298 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3299 F:      drivers/spi/spi-aspeed-smc.c
3300
3301 ASPEED VIDEO ENGINE DRIVER
3302 M:      Eddie James <eajames@linux.ibm.com>
3303 L:      linux-media@vger.kernel.org
3304 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3305 S:      Maintained
3306 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3307 F:      drivers/media/platform/aspeed/
3308
3309 ASPEED USB UDC DRIVER
3310 M:      Neal Liu <neal_liu@aspeedtech.com>
3311 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3312 S:      Maintained
3313 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3314 F:      drivers/usb/gadget/udc/aspeed_udc.c
3315
3316 ASPEED CRYPTO DRIVER
3317 M:      Neal Liu <neal_liu@aspeedtech.com>
3318 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3319 S:      Maintained
3320 F:      Documentation/devicetree/bindings/crypto/aspeed,ast2500-hace.yaml
3321 F:      drivers/crypto/aspeed/
3322
3323 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3324 M:      Corentin Chary <corentin.chary@gmail.com>
3325 L:      acpi4asus-user@lists.sourceforge.net
3326 L:      platform-driver-x86@vger.kernel.org
3327 S:      Maintained
3328 W:      http://acpi4asus.sf.net
3329 F:      drivers/platform/x86/asus*.c
3330 F:      drivers/platform/x86/eeepc*.c
3331
3332 ASUS TF103C DOCK DRIVER
3333 M:      Hans de Goede <hdegoede@redhat.com>
3334 L:      platform-driver-x86@vger.kernel.org
3335 S:      Maintained
3336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3337 F:      drivers/platform/x86/asus-tf103c-dock.c
3338
3339 ASUS WMI HARDWARE MONITOR DRIVER
3340 M:      Ed Brindley <kernel@maidavale.org>
3341 M:      Denis Pauk <pauk.denis@gmail.com>
3342 L:      linux-hwmon@vger.kernel.org
3343 S:      Maintained
3344 F:      drivers/hwmon/asus_wmi_sensors.c
3345
3346 ASUS EC HARDWARE MONITOR DRIVER
3347 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3348 L:      linux-hwmon@vger.kernel.org
3349 S:      Maintained
3350 F:      drivers/hwmon/asus-ec-sensors.c
3351
3352 ASUS WIRELESS RADIO CONTROL DRIVER
3353 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3354 L:      platform-driver-x86@vger.kernel.org
3355 S:      Maintained
3356 F:      drivers/platform/x86/asus-wireless.c
3357
3358 ASYMMETRIC KEYS
3359 M:      David Howells <dhowells@redhat.com>
3360 L:      keyrings@vger.kernel.org
3361 S:      Maintained
3362 F:      Documentation/crypto/asymmetric-keys.rst
3363 F:      crypto/asymmetric_keys/
3364 F:      include/crypto/pkcs7.h
3365 F:      include/crypto/public_key.h
3366 F:      include/linux/verification.h
3367
3368 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3369 R:      Dan Williams <dan.j.williams@intel.com>
3370 S:      Odd fixes
3371 W:      http://sourceforge.net/projects/xscaleiop
3372 F:      Documentation/crypto/async-tx-api.rst
3373 F:      crypto/async_tx/
3374 F:      include/linux/async_tx.h
3375
3376 AT24 EEPROM DRIVER
3377 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3378 L:      linux-i2c@vger.kernel.org
3379 S:      Maintained
3380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3381 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3382 F:      drivers/misc/eeprom/at24.c
3383
3384 ATA OVER ETHERNET (AOE) DRIVER
3385 M:      "Justin Sanders" <justin@coraid.com>
3386 S:      Supported
3387 W:      http://www.openaoe.org/
3388 F:      Documentation/admin-guide/aoe/
3389 F:      drivers/block/aoe/
3390
3391 ATC260X PMIC MFD DRIVER
3392 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3393 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3394 L:      linux-actions@lists.infradead.org
3395 S:      Maintained
3396 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3397 F:      drivers/input/misc/atc260x-onkey.c
3398 F:      drivers/mfd/atc260*
3399 F:      drivers/power/reset/atc260x-poweroff.c
3400 F:      drivers/regulator/atc260x-regulator.c
3401 F:      include/linux/mfd/atc260x/*
3402
3403 ATHEROS 71XX/9XXX GPIO DRIVER
3404 M:      Alban Bedel <albeu@free.fr>
3405 S:      Maintained
3406 W:      https://github.com/AlbanBedel/linux
3407 T:      git git://github.com/AlbanBedel/linux
3408 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3409 F:      drivers/gpio/gpio-ath79.c
3410
3411 ATHEROS 71XX/9XXX USB PHY DRIVER
3412 M:      Alban Bedel <albeu@free.fr>
3413 S:      Maintained
3414 W:      https://github.com/AlbanBedel/linux
3415 T:      git git://github.com/AlbanBedel/linux
3416 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3417 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3418
3419 ATHEROS ATH GENERIC UTILITIES
3420 M:      Kalle Valo <kvalo@kernel.org>
3421 L:      linux-wireless@vger.kernel.org
3422 S:      Supported
3423 F:      drivers/net/wireless/ath/*
3424
3425 ATHEROS ATH5K WIRELESS DRIVER
3426 M:      Jiri Slaby <jirislaby@kernel.org>
3427 M:      Nick Kossifidis <mickflemm@gmail.com>
3428 M:      Luis Chamberlain <mcgrof@kernel.org>
3429 L:      linux-wireless@vger.kernel.org
3430 S:      Maintained
3431 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3432 F:      drivers/net/wireless/ath/ath5k/
3433
3434 ATHEROS ATH6KL WIRELESS DRIVER
3435 L:      linux-wireless@vger.kernel.org
3436 S:      Orphan
3437 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3438 F:      drivers/net/wireless/ath/ath6kl/
3439
3440 ATI_REMOTE2 DRIVER
3441 M:      Ville Syrjala <syrjala@sci.fi>
3442 S:      Maintained
3443 F:      drivers/input/misc/ati_remote2.c
3444
3445 ATK0110 HWMON DRIVER
3446 M:      Luca Tettamanti <kronos.it@gmail.com>
3447 L:      linux-hwmon@vger.kernel.org
3448 S:      Maintained
3449 F:      drivers/hwmon/asus_atk0110.c
3450
3451 ATLX ETHERNET DRIVERS
3452 M:      Chris Snook <chris.snook@gmail.com>
3453 L:      netdev@vger.kernel.org
3454 S:      Maintained
3455 W:      http://sourceforge.net/projects/atl1
3456 W:      http://atl1.sourceforge.net
3457 F:      drivers/net/ethernet/atheros/
3458
3459 ATM
3460 M:      Chas Williams <3chas3@gmail.com>
3461 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3462 L:      netdev@vger.kernel.org
3463 S:      Maintained
3464 W:      http://linux-atm.sourceforge.net
3465 F:      drivers/atm/
3466 F:      include/linux/atm*
3467 F:      include/uapi/linux/atm*
3468
3469 ATMEL MACB ETHERNET DRIVER
3470 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3471 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3472 S:      Supported
3473 F:      drivers/net/ethernet/cadence/
3474
3475 ATMEL MAXTOUCH DRIVER
3476 M:      Nick Dyer <nick@shmanahar.org>
3477 S:      Maintained
3478 T:      git git://github.com/ndyer/linux.git
3479 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3480 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3481
3482 ATMEL WIRELESS DRIVER
3483 M:      Simon Kelley <simon@thekelleys.org.uk>
3484 L:      linux-wireless@vger.kernel.org
3485 S:      Maintained
3486 W:      http://www.thekelleys.org.uk/atmel
3487 W:      http://atmelwlandriver.sourceforge.net/
3488 F:      drivers/net/wireless/atmel/atmel*
3489
3490 ATOMIC INFRASTRUCTURE
3491 M:      Will Deacon <will@kernel.org>
3492 M:      Peter Zijlstra <peterz@infradead.org>
3493 R:      Boqun Feng <boqun.feng@gmail.com>
3494 R:      Mark Rutland <mark.rutland@arm.com>
3495 L:      linux-kernel@vger.kernel.org
3496 S:      Maintained
3497 F:      arch/*/include/asm/atomic*.h
3498 F:      include/*/atomic*.h
3499 F:      include/linux/refcount.h
3500 F:      Documentation/atomic_*.txt
3501 F:      scripts/atomic/
3502
3503 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3504 M:      Bradley Grove <linuxdrivers@attotech.com>
3505 L:      linux-scsi@vger.kernel.org
3506 S:      Supported
3507 W:      http://www.attotech.com
3508 F:      drivers/scsi/esas2r
3509
3510 ATUSB IEEE 802.15.4 RADIO DRIVER
3511 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3512 L:      linux-wpan@vger.kernel.org
3513 S:      Maintained
3514 F:      drivers/net/ieee802154/at86rf230.h
3515 F:      drivers/net/ieee802154/atusb.c
3516 F:      drivers/net/ieee802154/atusb.h
3517
3518 AUDIT SUBSYSTEM
3519 M:      Paul Moore <paul@paul-moore.com>
3520 M:      Eric Paris <eparis@redhat.com>
3521 L:      linux-audit@redhat.com (moderated for non-subscribers)
3522 S:      Supported
3523 W:      https://github.com/linux-audit
3524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3525 F:      include/asm-generic/audit_*.h
3526 F:      include/linux/audit.h
3527 F:      include/linux/audit_arch.h
3528 F:      include/uapi/linux/audit.h
3529 F:      kernel/audit*
3530 F:      lib/*audit.c
3531
3532 AUXILIARY DISPLAY DRIVERS
3533 M:      Miguel Ojeda <ojeda@kernel.org>
3534 S:      Maintained
3535 F:      Documentation/devicetree/bindings/auxdisplay/
3536 F:      drivers/auxdisplay/
3537 F:      include/linux/cfag12864b.h
3538
3539 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3540 M:      Andreas Klinger <ak@it-klinger.de>
3541 L:      linux-iio@vger.kernel.org
3542 S:      Maintained
3543 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3544 F:      drivers/iio/adc/hx711.c
3545
3546 AX.25 NETWORK LAYER
3547 M:      Ralf Baechle <ralf@linux-mips.org>
3548 L:      linux-hams@vger.kernel.org
3549 S:      Maintained
3550 W:      http://www.linux-ax25.org/
3551 F:      include/net/ax25.h
3552 F:      include/uapi/linux/ax25.h
3553 F:      net/ax25/
3554
3555 AXENTIA ARM DEVICES
3556 M:      Peter Rosin <peda@axentia.se>
3557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3558 S:      Maintained
3559 F:      arch/arm/boot/dts/at91-linea.dtsi
3560 F:      arch/arm/boot/dts/at91-natte.dtsi
3561 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3562 F:      arch/arm/boot/dts/at91-tse850-3.dts
3563
3564 AXENTIA ASOC DRIVERS
3565 M:      Peter Rosin <peda@axentia.se>
3566 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3567 S:      Maintained
3568 F:      Documentation/devicetree/bindings/sound/axentia,*
3569 F:      sound/soc/atmel/tse850-pcm5142.c
3570
3571 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3572 M:      Nuno Sá <nuno.sa@analog.com>
3573 L:      linux-hwmon@vger.kernel.org
3574 S:      Supported
3575 W:      https://ez.analog.com/linux-software-drivers
3576 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3577 F:      drivers/hwmon/axi-fan-control.c
3578
3579 AXXIA I2C CONTROLLER
3580 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3581 L:      linux-i2c@vger.kernel.org
3582 S:      Maintained
3583 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3584 F:      drivers/i2c/busses/i2c-axxia.c
3585
3586 AZ6007 DVB DRIVER
3587 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3588 L:      linux-media@vger.kernel.org
3589 S:      Maintained
3590 W:      https://linuxtv.org
3591 T:      git git://linuxtv.org/media_tree.git
3592 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3593
3594 AZTECH FM RADIO RECEIVER DRIVER
3595 M:      Hans Verkuil <hverkuil@xs4all.nl>
3596 L:      linux-media@vger.kernel.org
3597 S:      Maintained
3598 W:      https://linuxtv.org
3599 T:      git git://linuxtv.org/media_tree.git
3600 F:      drivers/media/radio/radio-aztech*
3601
3602 B43 WIRELESS DRIVER
3603 L:      linux-wireless@vger.kernel.org
3604 L:      b43-dev@lists.infradead.org
3605 S:      Odd Fixes
3606 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3607 F:      drivers/net/wireless/broadcom/b43/
3608
3609 B43LEGACY WIRELESS DRIVER
3610 M:      Larry Finger <Larry.Finger@lwfinger.net>
3611 L:      linux-wireless@vger.kernel.org
3612 L:      b43-dev@lists.infradead.org
3613 S:      Maintained
3614 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3615 F:      drivers/net/wireless/broadcom/b43legacy/
3616
3617 BACKLIGHT CLASS/SUBSYSTEM
3618 M:      Lee Jones <lee@kernel.org>
3619 M:      Daniel Thompson <daniel.thompson@linaro.org>
3620 M:      Jingoo Han <jingoohan1@gmail.com>
3621 L:      dri-devel@lists.freedesktop.org
3622 S:      Maintained
3623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3624 F:      Documentation/ABI/stable/sysfs-class-backlight
3625 F:      Documentation/ABI/testing/sysfs-class-backlight
3626 F:      Documentation/devicetree/bindings/leds/backlight
3627 F:      drivers/video/backlight/
3628 F:      include/linux/backlight.h
3629 F:      include/linux/pwm_backlight.h
3630
3631 BARCO P50 GPIO DRIVER
3632 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3633 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3634 S:      Maintained
3635 F:      drivers/platform/x86/barco-p50-gpio.c
3636
3637 BATMAN ADVANCED
3638 M:      Marek Lindner <mareklindner@neomailbox.ch>
3639 M:      Simon Wunderlich <sw@simonwunderlich.de>
3640 M:      Antonio Quartulli <a@unstable.cc>
3641 M:      Sven Eckelmann <sven@narfation.org>
3642 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3643 S:      Maintained
3644 W:      https://www.open-mesh.org/
3645 Q:      https://patchwork.open-mesh.org/project/batman/list/
3646 B:      https://www.open-mesh.org/projects/batman-adv/issues
3647 C:      ircs://irc.hackint.org/batadv
3648 T:      git https://git.open-mesh.org/linux-merge.git
3649 F:      Documentation/networking/batman-adv.rst
3650 F:      include/uapi/linux/batadv_packet.h
3651 F:      include/uapi/linux/batman_adv.h
3652 F:      net/batman-adv/
3653
3654 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3655 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3656 L:      linux-hams@vger.kernel.org
3657 S:      Maintained
3658 W:      http://www.baycom.org/~tom/ham/ham.html
3659 F:      drivers/net/hamradio/baycom*
3660
3661 BCACHE (BLOCK LAYER CACHE)
3662 M:      Coly Li <colyli@suse.de>
3663 M:      Kent Overstreet <kent.overstreet@gmail.com>
3664 L:      linux-bcache@vger.kernel.org
3665 S:      Maintained
3666 W:      http://bcache.evilpiepirate.org
3667 C:      irc://irc.oftc.net/bcache
3668 F:      drivers/md/bcache/
3669
3670 BDISP ST MEDIA DRIVER
3671 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3672 L:      linux-media@vger.kernel.org
3673 S:      Supported
3674 W:      https://linuxtv.org
3675 T:      git git://linuxtv.org/media_tree.git
3676 F:      drivers/media/platform/st/sti/bdisp
3677
3678 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3679 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3680 L:      netdev@vger.kernel.org
3681 S:      Maintained
3682 F:      drivers/net/ethernet/ec_bhf.c
3683
3684 BEFS FILE SYSTEM
3685 M:      Luis de Bethencourt <luisbg@kernel.org>
3686 M:      Salah Triki <salah.triki@gmail.com>
3687 S:      Maintained
3688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3689 F:      Documentation/filesystems/befs.rst
3690 F:      fs/befs/
3691
3692 BFQ I/O SCHEDULER
3693 M:      Paolo Valente <paolo.valente@linaro.org>
3694 M:      Jens Axboe <axboe@kernel.dk>
3695 L:      linux-block@vger.kernel.org
3696 S:      Maintained
3697 F:      Documentation/block/bfq-iosched.rst
3698 F:      block/bfq-*
3699
3700 BFS FILE SYSTEM
3701 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3702 S:      Maintained
3703 F:      Documentation/filesystems/bfs.rst
3704 F:      fs/bfs/
3705 F:      include/uapi/linux/bfs_fs.h
3706
3707 BITMAP API
3708 M:      Yury Norov <yury.norov@gmail.com>
3709 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3710 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3711 S:      Maintained
3712 F:      include/linux/bitmap.h
3713 F:      include/linux/cpumask.h
3714 F:      include/linux/find.h
3715 F:      include/linux/nodemask.h
3716 F:      lib/bitmap.c
3717 F:      lib/cpumask.c
3718 F:      lib/cpumask_kunit.c
3719 F:      lib/find_bit.c
3720 F:      lib/find_bit_benchmark.c
3721 F:      lib/test_bitmap.c
3722 F:      tools/include/linux/bitmap.h
3723 F:      tools/include/linux/find.h
3724 F:      tools/lib/bitmap.c
3725 F:      tools/lib/find_bit.c
3726
3727 BLINKM RGB LED DRIVER
3728 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3729 S:      Maintained
3730 F:      drivers/leds/leds-blinkm.c
3731
3732 BLOCK LAYER
3733 M:      Jens Axboe <axboe@kernel.dk>
3734 L:      linux-block@vger.kernel.org
3735 S:      Maintained
3736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3737 F:      Documentation/ABI/stable/sysfs-block
3738 F:      Documentation/block/
3739 F:      block/
3740 F:      drivers/block/
3741 F:      include/linux/bio.h
3742 F:      include/linux/blk*
3743 F:      kernel/trace/blktrace.c
3744 F:      lib/sbitmap.c
3745
3746 BLOCK2MTD DRIVER
3747 M:      Joern Engel <joern@lazybastard.org>
3748 L:      linux-mtd@lists.infradead.org
3749 S:      Maintained
3750 F:      drivers/mtd/devices/block2mtd.c
3751
3752 BLUETOOTH DRIVERS
3753 M:      Marcel Holtmann <marcel@holtmann.org>
3754 M:      Johan Hedberg <johan.hedberg@gmail.com>
3755 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3756 L:      linux-bluetooth@vger.kernel.org
3757 S:      Supported
3758 W:      http://www.bluez.org/
3759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3761 F:      drivers/bluetooth/
3762
3763 BLUETOOTH SUBSYSTEM
3764 M:      Marcel Holtmann <marcel@holtmann.org>
3765 M:      Johan Hedberg <johan.hedberg@gmail.com>
3766 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3767 L:      linux-bluetooth@vger.kernel.org
3768 S:      Supported
3769 W:      http://www.bluez.org/
3770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3772 F:      include/net/bluetooth/
3773 F:      net/bluetooth/
3774
3775 BONDING DRIVER
3776 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3777 M:      Andy Gospodarek <andy@greyhouse.net>
3778 L:      netdev@vger.kernel.org
3779 S:      Supported
3780 W:      http://sourceforge.net/projects/bonding/
3781 F:      Documentation/networking/bonding.rst
3782 F:      drivers/net/bonding/
3783 F:      include/net/bond*
3784 F:      include/uapi/linux/if_bonding.h
3785 F:      tools/testing/selftests/drivers/net/bonding/
3786
3787 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3788 M:      Dan Robertson <dan@dlrobertson.com>
3789 L:      linux-iio@vger.kernel.org
3790 S:      Maintained
3791 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3792 F:      drivers/iio/accel/bma400*
3793
3794 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3795 M:      Alexei Starovoitov <ast@kernel.org>
3796 M:      Daniel Borkmann <daniel@iogearbox.net>
3797 M:      Andrii Nakryiko <andrii@kernel.org>
3798 R:      Martin KaFai Lau <martin.lau@linux.dev>
3799 R:      Song Liu <song@kernel.org>
3800 R:      Yonghong Song <yhs@fb.com>
3801 R:      John Fastabend <john.fastabend@gmail.com>
3802 R:      KP Singh <kpsingh@kernel.org>
3803 R:      Stanislav Fomichev <sdf@google.com>
3804 R:      Hao Luo <haoluo@google.com>
3805 R:      Jiri Olsa <jolsa@kernel.org>
3806 L:      bpf@vger.kernel.org
3807 S:      Supported
3808 W:      https://bpf.io/
3809 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3812 F:      Documentation/bpf/
3813 F:      Documentation/networking/filter.rst
3814 F:      Documentation/userspace-api/ebpf/
3815 F:      arch/*/net/*
3816 F:      include/linux/bpf*
3817 F:      include/linux/btf*
3818 F:      include/linux/filter.h
3819 F:      include/trace/events/xdp.h
3820 F:      include/uapi/linux/bpf*
3821 F:      include/uapi/linux/btf*
3822 F:      include/uapi/linux/filter.h
3823 F:      kernel/bpf/
3824 F:      kernel/trace/bpf_trace.c
3825 F:      lib/test_bpf.c
3826 F:      net/bpf/
3827 F:      net/core/filter.c
3828 F:      net/sched/act_bpf.c
3829 F:      net/sched/cls_bpf.c
3830 F:      samples/bpf/
3831 F:      scripts/bpf_doc.py
3832 F:      scripts/pahole-flags.sh
3833 F:      scripts/pahole-version.sh
3834 F:      tools/bpf/
3835 F:      tools/lib/bpf/
3836 F:      tools/testing/selftests/bpf/
3837
3838 BPF JIT for ARM
3839 M:      Shubham Bansal <illusionist.neo@gmail.com>
3840 L:      bpf@vger.kernel.org
3841 S:      Odd Fixes
3842 F:      arch/arm/net/
3843
3844 BPF JIT for ARM64
3845 M:      Daniel Borkmann <daniel@iogearbox.net>
3846 M:      Alexei Starovoitov <ast@kernel.org>
3847 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3848 L:      bpf@vger.kernel.org
3849 S:      Supported
3850 F:      arch/arm64/net/
3851
3852 BPF JIT for MIPS (32-BIT AND 64-BIT)
3853 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3854 M:      Paul Burton <paulburton@kernel.org>
3855 L:      bpf@vger.kernel.org
3856 S:      Maintained
3857 F:      arch/mips/net/
3858
3859 BPF JIT for NFP NICs
3860 M:      Jakub Kicinski <kuba@kernel.org>
3861 L:      bpf@vger.kernel.org
3862 S:      Odd Fixes
3863 F:      drivers/net/ethernet/netronome/nfp/bpf/
3864
3865 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3866 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3867 M:      Michael Ellerman <mpe@ellerman.id.au>
3868 L:      bpf@vger.kernel.org
3869 S:      Supported
3870 F:      arch/powerpc/net/
3871
3872 BPF JIT for RISC-V (32-bit)
3873 M:      Luke Nelson <luke.r.nels@gmail.com>
3874 M:      Xi Wang <xi.wang@gmail.com>
3875 L:      bpf@vger.kernel.org
3876 S:      Maintained
3877 F:      arch/riscv/net/
3878 X:      arch/riscv/net/bpf_jit_comp64.c
3879
3880 BPF JIT for RISC-V (64-bit)
3881 M:      Björn Töpel <bjorn@kernel.org>
3882 L:      bpf@vger.kernel.org
3883 S:      Maintained
3884 F:      arch/riscv/net/
3885 X:      arch/riscv/net/bpf_jit_comp32.c
3886
3887 BPF JIT for S390
3888 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3889 M:      Heiko Carstens <hca@linux.ibm.com>
3890 M:      Vasily Gorbik <gor@linux.ibm.com>
3891 L:      bpf@vger.kernel.org
3892 S:      Supported
3893 F:      arch/s390/net/
3894 X:      arch/s390/net/pnet.c
3895
3896 BPF JIT for SPARC (32-BIT AND 64-BIT)
3897 M:      David S. Miller <davem@davemloft.net>
3898 L:      bpf@vger.kernel.org
3899 S:      Odd Fixes
3900 F:      arch/sparc/net/
3901
3902 BPF JIT for X86 32-BIT
3903 M:      Wang YanQing <udknight@gmail.com>
3904 L:      bpf@vger.kernel.org
3905 S:      Odd Fixes
3906 F:      arch/x86/net/bpf_jit_comp32.c
3907
3908 BPF JIT for X86 64-BIT
3909 M:      Alexei Starovoitov <ast@kernel.org>
3910 M:      Daniel Borkmann <daniel@iogearbox.net>
3911 L:      bpf@vger.kernel.org
3912 S:      Supported
3913 F:      arch/x86/net/
3914 X:      arch/x86/net/bpf_jit_comp32.c
3915
3916 BPF [CORE]
3917 M:      Alexei Starovoitov <ast@kernel.org>
3918 M:      Daniel Borkmann <daniel@iogearbox.net>
3919 R:      John Fastabend <john.fastabend@gmail.com>
3920 L:      bpf@vger.kernel.org
3921 S:      Maintained
3922 F:      kernel/bpf/verifier.c
3923 F:      kernel/bpf/tnum.c
3924 F:      kernel/bpf/core.c
3925 F:      kernel/bpf/syscall.c
3926 F:      kernel/bpf/dispatcher.c
3927 F:      kernel/bpf/trampoline.c
3928 F:      include/linux/bpf*
3929 F:      include/linux/filter.h
3930 F:      include/linux/tnum.h
3931
3932 BPF [BTF]
3933 M:      Martin KaFai Lau <martin.lau@linux.dev>
3934 L:      bpf@vger.kernel.org
3935 S:      Maintained
3936 F:      kernel/bpf/btf.c
3937 F:      include/linux/btf*
3938
3939 BPF [TRACING]
3940 M:      Song Liu <song@kernel.org>
3941 R:      Jiri Olsa <jolsa@kernel.org>
3942 L:      bpf@vger.kernel.org
3943 S:      Maintained
3944 F:      kernel/trace/bpf_trace.c
3945 F:      kernel/bpf/stackmap.c
3946
3947 BPF [NETWORKING] (tc BPF, sock_addr)
3948 M:      Martin KaFai Lau <martin.lau@linux.dev>
3949 M:      Daniel Borkmann <daniel@iogearbox.net>
3950 R:      John Fastabend <john.fastabend@gmail.com>
3951 L:      bpf@vger.kernel.org
3952 L:      netdev@vger.kernel.org
3953 S:      Maintained
3954 F:      net/core/filter.c
3955 F:      net/sched/act_bpf.c
3956 F:      net/sched/cls_bpf.c
3957
3958 BPF [NETWORKING] (struct_ops, reuseport)
3959 M:      Martin KaFai Lau <martin.lau@linux.dev>
3960 L:      bpf@vger.kernel.org
3961 L:      netdev@vger.kernel.org
3962 S:      Maintained
3963 F:      kernel/bpf/bpf_struct*
3964
3965 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3966 M:      KP Singh <kpsingh@kernel.org>
3967 R:      Florent Revest <revest@chromium.org>
3968 R:      Brendan Jackman <jackmanb@chromium.org>
3969 L:      bpf@vger.kernel.org
3970 S:      Maintained
3971 F:      Documentation/bpf/prog_lsm.rst
3972 F:      include/linux/bpf_lsm.h
3973 F:      kernel/bpf/bpf_lsm.c
3974 F:      security/bpf/
3975
3976 BPF [STORAGE & CGROUPS]
3977 M:      Martin KaFai Lau <martin.lau@linux.dev>
3978 L:      bpf@vger.kernel.org
3979 S:      Maintained
3980 F:      kernel/bpf/cgroup.c
3981 F:      kernel/bpf/*storage.c
3982 F:      kernel/bpf/bpf_lru*
3983
3984 BPF [RINGBUF]
3985 M:      Andrii Nakryiko <andrii@kernel.org>
3986 L:      bpf@vger.kernel.org
3987 S:      Maintained
3988 F:      kernel/bpf/ringbuf.c
3989
3990 BPF [ITERATOR]
3991 M:      Yonghong Song <yhs@fb.com>
3992 L:      bpf@vger.kernel.org
3993 S:      Maintained
3994 F:      kernel/bpf/*iter.c
3995
3996 BPF [L7 FRAMEWORK] (sockmap)
3997 M:      John Fastabend <john.fastabend@gmail.com>
3998 M:      Jakub Sitnicki <jakub@cloudflare.com>
3999 L:      netdev@vger.kernel.org
4000 L:      bpf@vger.kernel.org
4001 S:      Maintained
4002 F:      include/linux/skmsg.h
4003 F:      net/core/skmsg.c
4004 F:      net/core/sock_map.c
4005 F:      net/ipv4/tcp_bpf.c
4006 F:      net/ipv4/udp_bpf.c
4007 F:      net/unix/unix_bpf.c
4008
4009 BPF [LIBRARY] (libbpf)
4010 M:      Andrii Nakryiko <andrii@kernel.org>
4011 L:      bpf@vger.kernel.org
4012 S:      Maintained
4013 F:      tools/lib/bpf/
4014
4015 BPF [TOOLING] (bpftool)
4016 M:      Quentin Monnet <quentin@isovalent.com>
4017 L:      bpf@vger.kernel.org
4018 S:      Maintained
4019 F:      kernel/bpf/disasm.*
4020 F:      tools/bpf/bpftool/
4021
4022 BPF [SELFTESTS] (Test Runners & Infrastructure)
4023 M:      Andrii Nakryiko <andrii@kernel.org>
4024 R:      Mykola Lysenko <mykolal@fb.com>
4025 L:      bpf@vger.kernel.org
4026 S:      Maintained
4027 F:      tools/testing/selftests/bpf/
4028
4029 BPF [MISC]
4030 L:      bpf@vger.kernel.org
4031 S:      Odd Fixes
4032 K:      (?:\b|_)bpf(?:\b|_)
4033
4034 BROADCOM B44 10/100 ETHERNET DRIVER
4035 M:      Michael Chan <michael.chan@broadcom.com>
4036 L:      netdev@vger.kernel.org
4037 S:      Supported
4038 F:      drivers/net/ethernet/broadcom/b44.*
4039
4040 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
4041 M:      Florian Fainelli <f.fainelli@gmail.com>
4042 L:      netdev@vger.kernel.org
4043 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
4044 S:      Supported
4045 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
4046 F:      drivers/net/dsa/b53/*
4047 F:      drivers/net/dsa/bcm_sf2*
4048 F:      include/linux/dsa/brcm.h
4049 F:      include/linux/platform_data/b53.h
4050
4051 BROADCOM BCMBCA ARM ARCHITECTURE
4052 M:      William Zhang <william.zhang@broadcom.com>
4053 M:      Anand Gore <anand.gore@broadcom.com>
4054 M:      Kursad Oney <kursad.oney@broadcom.com>
4055 M:      Florian Fainelli <f.fainelli@gmail.com>
4056 M:      Rafał Miłecki <rafal@milecki.pl>
4057 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4059 S:      Maintained
4060 T:      git https://github.com/broadcom/stblinux.git
4061 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
4062 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
4063 N:      bcmbca
4064 N:      bcm[9]?47622
4065 N:      bcm[9]?4912
4066 N:      bcm[9]?63138
4067 N:      bcm[9]?63146
4068 N:      bcm[9]?63148
4069 N:      bcm[9]?63158
4070 N:      bcm[9]?63178
4071 N:      bcm[9]?6756
4072 N:      bcm[9]?6813
4073 N:      bcm[9]?6846
4074 N:      bcm[9]?6855
4075 N:      bcm[9]?6856
4076 N:      bcm[9]?6858
4077 N:      bcm[9]?6878
4078
4079 BROADCOM BCM2711/BCM2835 ARM 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-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
4083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4084 S:      Maintained
4085 T:      git https://github.com/broadcom/stblinux.git
4086 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4087 F:      drivers/pci/controller/pcie-brcmstb.c
4088 F:      drivers/staging/vc04_services
4089 N:      bcm2711
4090 N:      bcm283*
4091 N:      raspberrypi
4092
4093 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
4094 M:      Florian Fainelli <f.fainelli@gmail.com>
4095 M:      Ray Jui <rjui@broadcom.com>
4096 M:      Scott Branden <sbranden@broadcom.com>
4097 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4098 S:      Maintained
4099 T:      git https://github.com/broadcom/mach-bcm
4100 F:      arch/arm/mach-bcm/
4101 N:      bcm281*
4102 N:      bcm113*
4103 N:      bcm216*
4104 N:      kona
4105
4106 BROADCOM BCM47XX MIPS ARCHITECTURE
4107 M:      Hauke Mehrtens <hauke@hauke-m.de>
4108 M:      Rafał Miłecki <zajec5@gmail.com>
4109 L:      linux-mips@vger.kernel.org
4110 S:      Maintained
4111 F:      Documentation/devicetree/bindings/mips/brcm/
4112 F:      arch/mips/bcm47xx/*
4113 F:      arch/mips/include/asm/mach-bcm47xx/*
4114
4115 BROADCOM BCM4908 ETHERNET DRIVER
4116 M:      Rafał Miłecki <rafal@milecki.pl>
4117 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4118 L:      netdev@vger.kernel.org
4119 S:      Maintained
4120 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
4121 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
4122 F:      drivers/net/ethernet/broadcom/unimac.h
4123
4124 BROADCOM BCM4908 PINMUX DRIVER
4125 M:      Rafał Miłecki <rafal@milecki.pl>
4126 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4127 L:      linux-gpio@vger.kernel.org
4128 S:      Maintained
4129 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
4130 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
4131
4132 BROADCOM BCM5301X ARM ARCHITECTURE
4133 M:      Florian Fainelli <f.fainelli@gmail.com>
4134 M:      Hauke Mehrtens <hauke@hauke-m.de>
4135 M:      Rafał Miłecki <zajec5@gmail.com>
4136 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4138 S:      Maintained
4139 F:      arch/arm/boot/dts/bcm470*
4140 F:      arch/arm/boot/dts/bcm5301*
4141 F:      arch/arm/boot/dts/bcm953012*
4142 F:      arch/arm/mach-bcm/bcm_5301x.c
4143
4144 BROADCOM BCM53573 ARM ARCHITECTURE
4145 M:      Florian Fainelli <f.fainelli@gmail.com>
4146 M:      Rafał Miłecki <rafal@milecki.pl>
4147 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4149 S:      Maintained
4150 F:      arch/arm/boot/dts/bcm47189*
4151 F:      arch/arm/boot/dts/bcm53573*
4152
4153 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4154 M:      Kevin Cernekee <cernekee@gmail.com>
4155 L:      linux-usb@vger.kernel.org
4156 S:      Maintained
4157 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4158
4159 BROADCOM BCM7XXX ARM ARCHITECTURE
4160 M:      Florian Fainelli <f.fainelli@gmail.com>
4161 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4163 S:      Maintained
4164 T:      git https://github.com/broadcom/stblinux.git
4165 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4166 F:      arch/arm/boot/dts/bcm7*.dts*
4167 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4168 F:      arch/arm/mach-bcm/*brcmstb*
4169 F:      arch/arm/mm/cache-b15-rac.c
4170 F:      drivers/bus/brcmstb_gisb.c
4171 F:      drivers/pci/controller/pcie-brcmstb.c
4172 N:      brcmstb
4173 N:      bcm7038
4174 N:      bcm7120
4175
4176 BROADCOM BDC DRIVER
4177 M:      Justin Chen <justinpopo6@gmail.com>
4178 M:      Al Cooper <alcooperx@gmail.com>
4179 L:      linux-usb@vger.kernel.org
4180 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4181 S:      Maintained
4182 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4183 F:      drivers/usb/gadget/udc/bdc/
4184
4185 BROADCOM BMIPS CPUFREQ DRIVER
4186 M:      Markus Mayer <mmayer@broadcom.com>
4187 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4188 L:      linux-pm@vger.kernel.org
4189 S:      Maintained
4190 F:      drivers/cpufreq/bmips-cpufreq.c
4191
4192 BROADCOM BMIPS MIPS ARCHITECTURE
4193 M:      Florian Fainelli <f.fainelli@gmail.com>
4194 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4195 L:      linux-mips@vger.kernel.org
4196 S:      Maintained
4197 T:      git https://github.com/broadcom/stblinux.git
4198 F:      arch/mips/bmips/*
4199 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4200 F:      arch/mips/include/asm/mach-bmips/*
4201 F:      arch/mips/kernel/*bmips*
4202 F:      drivers/soc/bcm/bcm63xx
4203 F:      drivers/irqchip/irq-bcm63*
4204 F:      drivers/irqchip/irq-bcm7*
4205 F:      drivers/irqchip/irq-brcmstb*
4206 F:      include/linux/bcm963xx_nvram.h
4207 F:      include/linux/bcm963xx_tag.h
4208
4209 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4210 M:      Rasesh Mody <rmody@marvell.com>
4211 M:      GR-Linux-NIC-Dev@marvell.com
4212 L:      netdev@vger.kernel.org
4213 S:      Supported
4214 F:      drivers/net/ethernet/broadcom/bnx2.*
4215 F:      drivers/net/ethernet/broadcom/bnx2_*
4216
4217 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4218 M:      Saurav Kashyap <skashyap@marvell.com>
4219 M:      Javed Hasan <jhasan@marvell.com>
4220 M:      GR-QLogic-Storage-Upstream@marvell.com
4221 L:      linux-scsi@vger.kernel.org
4222 S:      Supported
4223 F:      drivers/scsi/bnx2fc/
4224
4225 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4226 M:      Nilesh Javali <njavali@marvell.com>
4227 M:      Manish Rangankar <mrangankar@marvell.com>
4228 M:      GR-QLogic-Storage-Upstream@marvell.com
4229 L:      linux-scsi@vger.kernel.org
4230 S:      Supported
4231 F:      drivers/scsi/bnx2i/
4232
4233 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4234 M:      Ariel Elior <aelior@marvell.com>
4235 M:      Sudarsana Kalluru <skalluru@marvell.com>
4236 M:      Manish Chopra <manishc@marvell.com>
4237 L:      netdev@vger.kernel.org
4238 S:      Supported
4239 F:      drivers/net/ethernet/broadcom/bnx2x/
4240
4241 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4242 M:      Michael Chan <michael.chan@broadcom.com>
4243 L:      netdev@vger.kernel.org
4244 S:      Supported
4245 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4246 F:      drivers/net/ethernet/broadcom/bnxt/
4247 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4248
4249 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4250 M:      Arend van Spriel <aspriel@gmail.com>
4251 M:      Franky Lin <franky.lin@broadcom.com>
4252 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4253 L:      linux-wireless@vger.kernel.org
4254 L:      brcm80211-dev-list.pdl@broadcom.com
4255 L:      SHA-cyfmac-dev-list@infineon.com
4256 S:      Supported
4257 F:      drivers/net/wireless/broadcom/brcm80211/
4258
4259 BROADCOM BRCMSTB GPIO DRIVER
4260 M:      Doug Berger <opendmb@gmail.com>
4261 M:      Florian Fainelli <f.fainelli@gmail.com>
4262 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4263 S:      Supported
4264 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4265 F:      drivers/gpio/gpio-brcmstb.c
4266
4267 BROADCOM BRCMSTB I2C DRIVER
4268 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4269 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4270 L:      linux-i2c@vger.kernel.org
4271 S:      Supported
4272 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4273 F:      drivers/i2c/busses/i2c-brcmstb.c
4274
4275 BROADCOM BRCMSTB UART DRIVER
4276 M:      Al Cooper <alcooperx@gmail.com>
4277 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4278 L:      linux-serial@vger.kernel.org
4279 S:      Maintained
4280 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4281 F:      drivers/tty/serial/8250/8250_bcm7271.c
4282
4283 BROADCOM BRCMSTB USB EHCI DRIVER
4284 M:      Justin Chen <justinpopo6@gmail.com>
4285 M:      Al Cooper <alcooperx@gmail.com>
4286 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4287 L:      linux-usb@vger.kernel.org
4288 S:      Maintained
4289 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4290 F:      drivers/usb/host/ehci-brcm.*
4291
4292 BROADCOM BRCMSTB USB PIN MAP DRIVER
4293 M:      Al Cooper <alcooperx@gmail.com>
4294 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4295 L:      linux-usb@vger.kernel.org
4296 S:      Maintained
4297 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4298 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4299
4300 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4301 M:      Justin Chen <justinpopo6@gmail.com>
4302 M:      Al Cooper <alcooperx@gmail.com>
4303 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4304 L:      linux-kernel@vger.kernel.org
4305 S:      Maintained
4306 F:      drivers/phy/broadcom/phy-brcm-usb*
4307
4308 BROADCOM ETHERNET PHY DRIVERS
4309 M:      Florian Fainelli <f.fainelli@gmail.com>
4310 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4311 L:      netdev@vger.kernel.org
4312 S:      Supported
4313 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4314 F:      drivers/net/phy/bcm*.[ch]
4315 F:      drivers/net/phy/broadcom.c
4316 F:      include/linux/brcmphy.h
4317
4318 BROADCOM GENET ETHERNET DRIVER
4319 M:      Doug Berger <opendmb@gmail.com>
4320 M:      Florian Fainelli <f.fainelli@gmail.com>
4321 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4322 L:      netdev@vger.kernel.org
4323 S:      Supported
4324 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4325 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4326 F:      drivers/net/ethernet/broadcom/genet/
4327 F:      drivers/net/ethernet/broadcom/unimac.h
4328 F:      drivers/net/mdio/mdio-bcm-unimac.c
4329 F:      include/linux/platform_data/bcmgenet.h
4330 F:      include/linux/platform_data/mdio-bcm-unimac.h
4331
4332 BROADCOM IPROC ARM ARCHITECTURE
4333 M:      Ray Jui <rjui@broadcom.com>
4334 M:      Scott Branden <sbranden@broadcom.com>
4335 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4336 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4337 S:      Maintained
4338 T:      git https://github.com/broadcom/stblinux.git
4339 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4340 F:      arch/arm64/boot/dts/broadcom/stingray/*
4341 F:      drivers/clk/bcm/clk-ns*
4342 F:      drivers/clk/bcm/clk-sr*
4343 F:      drivers/pinctrl/bcm/pinctrl-ns*
4344 F:      include/dt-bindings/clock/bcm-sr*
4345 N:      iproc
4346 N:      cygnus
4347 N:      bcm[-_]nsp
4348 N:      bcm9113*
4349 N:      bcm9583*
4350 N:      bcm9585*
4351 N:      bcm9586*
4352 N:      bcm988312
4353 N:      bcm113*
4354 N:      bcm583*
4355 N:      bcm585*
4356 N:      bcm586*
4357 N:      bcm88312
4358 N:      hr2
4359 N:      stingray
4360
4361 BROADCOM IPROC GBIT ETHERNET DRIVER
4362 M:      Rafał Miłecki <rafal@milecki.pl>
4363 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4364 L:      netdev@vger.kernel.org
4365 S:      Maintained
4366 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4367 F:      drivers/net/ethernet/broadcom/bgmac*
4368 F:      drivers/net/ethernet/broadcom/unimac.h
4369
4370 BROADCOM KONA GPIO DRIVER
4371 M:      Ray Jui <rjui@broadcom.com>
4372 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4373 S:      Supported
4374 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4375 F:      drivers/gpio/gpio-bcm-kona.c
4376
4377 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4378 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4379 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4380 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4381 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4382 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4383 L:      linux-scsi@vger.kernel.org
4384 S:      Supported
4385 W:      https://www.broadcom.com/support/storage
4386 F:      drivers/scsi/mpi3mr/
4387
4388 BROADCOM NETXTREME-E ROCE DRIVER
4389 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4390 L:      linux-rdma@vger.kernel.org
4391 S:      Supported
4392 W:      http://www.broadcom.com
4393 F:      drivers/infiniband/hw/bnxt_re/
4394 F:      include/uapi/rdma/bnxt_re-abi.h
4395
4396 BROADCOM NVRAM DRIVER
4397 M:      Rafał Miłecki <zajec5@gmail.com>
4398 L:      linux-mips@vger.kernel.org
4399 S:      Maintained
4400 F:      drivers/firmware/broadcom/*
4401
4402 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4403 M:      Rafał Miłecki <rafal@milecki.pl>
4404 M:      Florian Fainelli <f.fainelli@gmail.com>
4405 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4406 L:      linux-pm@vger.kernel.org
4407 S:      Maintained
4408 T:      git https://github.com/broadcom/stblinux.git
4409 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4410 F:      include/dt-bindings/soc/bcm-pmb.h
4411
4412 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4413 M:      Rafał Miłecki <zajec5@gmail.com>
4414 L:      linux-wireless@vger.kernel.org
4415 S:      Maintained
4416 F:      drivers/bcma/
4417 F:      include/linux/bcma/
4418
4419 BROADCOM SPI DRIVER
4420 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4421 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4422 S:      Maintained
4423 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4424 F:      drivers/spi/spi-bcm-qspi.*
4425 F:      drivers/spi/spi-brcmstb-qspi.c
4426 F:      drivers/spi/spi-iproc-qspi.c
4427
4428 BROADCOM STB AVS CPUFREQ DRIVER
4429 M:      Markus Mayer <mmayer@broadcom.com>
4430 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4431 L:      linux-pm@vger.kernel.org
4432 S:      Maintained
4433 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4434 F:      drivers/cpufreq/brcmstb*
4435
4436 BROADCOM STB AVS TMON DRIVER
4437 M:      Markus Mayer <mmayer@broadcom.com>
4438 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4439 L:      linux-pm@vger.kernel.org
4440 S:      Maintained
4441 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4442 F:      drivers/thermal/broadcom/brcmstb*
4443
4444 BROADCOM STB DPFE DRIVER
4445 M:      Markus Mayer <mmayer@broadcom.com>
4446 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4448 S:      Maintained
4449 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4450 F:      drivers/memory/brcmstb_dpfe.c
4451
4452 BROADCOM STB NAND FLASH DRIVER
4453 M:      Brian Norris <computersforpeace@gmail.com>
4454 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4455 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4456 L:      linux-mtd@lists.infradead.org
4457 S:      Maintained
4458 F:      drivers/mtd/nand/raw/brcmnand/
4459 F:      include/linux/platform_data/brcmnand.h
4460
4461 BROADCOM STB PCIE DRIVER
4462 M:      Jim Quinlan <jim2101024@gmail.com>
4463 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4464 M:      Florian Fainelli <f.fainelli@gmail.com>
4465 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4466 L:      linux-pci@vger.kernel.org
4467 S:      Maintained
4468 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4469 F:      drivers/pci/controller/pcie-brcmstb.c
4470
4471 BROADCOM SYSTEMPORT ETHERNET DRIVER
4472 M:      Florian Fainelli <f.fainelli@gmail.com>
4473 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4474 L:      netdev@vger.kernel.org
4475 S:      Supported
4476 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4477 F:      drivers/net/ethernet/broadcom/unimac.h
4478 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4479
4480 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4481 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4482 M:      Prashant Sreedharan <prashant@broadcom.com>
4483 M:      Michael Chan <mchan@broadcom.com>
4484 L:      netdev@vger.kernel.org
4485 S:      Supported
4486 F:      drivers/net/ethernet/broadcom/tg3.*
4487
4488 BROADCOM VK DRIVER
4489 M:      Scott Branden <scott.branden@broadcom.com>
4490 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4491 S:      Supported
4492 F:      drivers/misc/bcm-vk/
4493 F:      include/uapi/linux/misc/bcm_vk.h
4494
4495 BROCADE BFA FC SCSI DRIVER
4496 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4497 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4498 L:      linux-scsi@vger.kernel.org
4499 S:      Supported
4500 F:      drivers/scsi/bfa/
4501
4502 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4503 M:      Rasesh Mody <rmody@marvell.com>
4504 M:      Sudarsana Kalluru <skalluru@marvell.com>
4505 M:      GR-Linux-NIC-Dev@marvell.com
4506 L:      netdev@vger.kernel.org
4507 S:      Supported
4508 F:      drivers/net/ethernet/brocade/bna/
4509
4510 BSG (block layer generic sg v4 driver)
4511 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4512 L:      linux-scsi@vger.kernel.org
4513 S:      Supported
4514 F:      block/bsg.c
4515 F:      include/linux/bsg.h
4516 F:      include/uapi/linux/bsg.h
4517
4518 BT87X AUDIO DRIVER
4519 M:      Clemens Ladisch <clemens@ladisch.de>
4520 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4521 S:      Maintained
4522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4523 F:      Documentation/sound/cards/bt87x.rst
4524 F:      sound/pci/bt87x.c
4525
4526 BT8XXGPIO DRIVER
4527 M:      Michael Buesch <m@bues.ch>
4528 S:      Maintained
4529 W:      http://bu3sch.de/btgpio.php
4530 F:      drivers/gpio/gpio-bt8xx.c
4531
4532 BTRFS FILE SYSTEM
4533 M:      Chris Mason <clm@fb.com>
4534 M:      Josef Bacik <josef@toxicpanda.com>
4535 M:      David Sterba <dsterba@suse.com>
4536 L:      linux-btrfs@vger.kernel.org
4537 S:      Maintained
4538 W:      https://btrfs.readthedocs.io
4539 W:      https://btrfs.wiki.kernel.org/
4540 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4541 C:      irc://irc.libera.chat/btrfs
4542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4543 F:      Documentation/filesystems/btrfs.rst
4544 F:      fs/btrfs/
4545 F:      include/linux/btrfs*
4546 F:      include/trace/events/btrfs.h
4547 F:      include/uapi/linux/btrfs*
4548
4549 BTTV VIDEO4LINUX DRIVER
4550 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4551 L:      linux-media@vger.kernel.org
4552 S:      Odd fixes
4553 W:      https://linuxtv.org
4554 T:      git git://linuxtv.org/media_tree.git
4555 F:      Documentation/driver-api/media/drivers/bttv*
4556 F:      drivers/media/pci/bt8xx/bttv*
4557
4558 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4559 M:      Chanwoo Choi <cw00.choi@samsung.com>
4560 L:      linux-pm@vger.kernel.org
4561 L:      linux-samsung-soc@vger.kernel.org
4562 S:      Maintained
4563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4564 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4565 F:      drivers/devfreq/exynos-bus.c
4566
4567 BUSLOGIC SCSI DRIVER
4568 M:      Khalid Aziz <khalid@gonehiking.org>
4569 L:      linux-scsi@vger.kernel.org
4570 S:      Maintained
4571 F:      drivers/scsi/BusLogic.*
4572 F:      drivers/scsi/FlashPoint.*
4573
4574 C-MEDIA CMI8788 DRIVER
4575 M:      Clemens Ladisch <clemens@ladisch.de>
4576 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4577 S:      Maintained
4578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4579 F:      sound/pci/oxygen/
4580
4581 C-SKY ARCHITECTURE
4582 M:      Guo Ren <guoren@kernel.org>
4583 L:      linux-csky@vger.kernel.org
4584 S:      Supported
4585 T:      git https://github.com/c-sky/csky-linux.git
4586 F:      Documentation/devicetree/bindings/csky/
4587 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4588 F:      Documentation/devicetree/bindings/timer/csky,*
4589 F:      arch/csky/
4590 F:      drivers/clocksource/timer-gx6605s.c
4591 F:      drivers/clocksource/timer-mp-csky.c
4592 F:      drivers/irqchip/irq-csky-*
4593 N:      csky
4594 K:      csky
4595
4596 CA8210 IEEE-802.15.4 RADIO DRIVER
4597 L:      linux-wpan@vger.kernel.org
4598 S:      Orphan
4599 W:      https://github.com/Cascoda/ca8210-linux.git
4600 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4601 F:      drivers/net/ieee802154/ca8210.c
4602
4603 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4604 M:      Damien Le Moal <damien.lemoal@wdc.com>
4605 L:      linux-riscv@lists.infradead.org
4606 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4607 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4608 F:      drivers/pinctrl/pinctrl-k210.c
4609
4610 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4611 M:      Damien Le Moal <damien.lemoal@wdc.com>
4612 L:      linux-kernel@vger.kernel.org
4613 L:      linux-riscv@lists.infradead.org
4614 S:      Maintained
4615 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4616 F:      drivers/reset/reset-k210.c
4617
4618 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4619 M:      Damien Le Moal <damien.lemoal@wdc.com>
4620 L:      linux-riscv@lists.infradead.org
4621 S:      Maintained
4622 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4623 F:      drivers/soc/canaan/
4624 F:      include/soc/canaan/
4625
4626 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4627 M:      David Howells <dhowells@redhat.com>
4628 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4629 S:      Supported
4630 F:      Documentation/filesystems/caching/cachefiles.rst
4631 F:      fs/cachefiles/
4632
4633 CADENCE MIPI-CSI2 BRIDGES
4634 M:      Maxime Ripard <mripard@kernel.org>
4635 L:      linux-media@vger.kernel.org
4636 S:      Maintained
4637 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4638 F:      drivers/media/platform/cadence/cdns-csi2*
4639
4640 CADENCE NAND DRIVER
4641 L:      linux-mtd@lists.infradead.org
4642 S:      Orphan
4643 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4644 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4645
4646 CADENCE USB3 DRD IP DRIVER
4647 M:      Peter Chen <peter.chen@kernel.org>
4648 M:      Pawel Laszczak <pawell@cadence.com>
4649 R:      Roger Quadros <rogerq@kernel.org>
4650 R:      Aswath Govindraju <a-govindraju@ti.com>
4651 L:      linux-usb@vger.kernel.org
4652 S:      Maintained
4653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4654 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4655 F:      drivers/usb/cdns3/
4656 X:      drivers/usb/cdns3/cdnsp*
4657
4658 CADENCE USBSSP DRD IP DRIVER
4659 M:      Pawel Laszczak <pawell@cadence.com>
4660 L:      linux-usb@vger.kernel.org
4661 S:      Maintained
4662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4663 F:      drivers/usb/cdns3/
4664 X:      drivers/usb/cdns3/cdns3*
4665
4666 CADET FM/AM RADIO RECEIVER DRIVER
4667 M:      Hans Verkuil <hverkuil@xs4all.nl>
4668 L:      linux-media@vger.kernel.org
4669 S:      Maintained
4670 W:      https://linuxtv.org
4671 T:      git git://linuxtv.org/media_tree.git
4672 F:      drivers/media/radio/radio-cadet*
4673
4674 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4675 L:      linux-media@vger.kernel.org
4676 S:      Orphan
4677 T:      git git://linuxtv.org/media_tree.git
4678 F:      Documentation/admin-guide/media/cafe_ccic*
4679 F:      drivers/media/platform/marvell/
4680
4681 CAIF NETWORK LAYER
4682 L:      netdev@vger.kernel.org
4683 S:      Orphan
4684 F:      Documentation/networking/caif/
4685 F:      drivers/net/caif/
4686 F:      include/net/caif/
4687 F:      include/uapi/linux/caif/
4688 F:      net/caif/
4689
4690 CAKE QDISC
4691 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4692 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4693 S:      Maintained
4694 F:      net/sched/sch_cake.c
4695
4696 CAN NETWORK DRIVERS
4697 M:      Wolfgang Grandegger <wg@grandegger.com>
4698 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4699 L:      linux-can@vger.kernel.org
4700 S:      Maintained
4701 W:      https://github.com/linux-can
4702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4704 F:      Documentation/devicetree/bindings/net/can/
4705 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4706 F:      drivers/net/can/
4707 F:      drivers/phy/phy-can-transceiver.c
4708 F:      include/linux/can/bittiming.h
4709 F:      include/linux/can/dev.h
4710 F:      include/linux/can/length.h
4711 F:      include/linux/can/platform/
4712 F:      include/linux/can/rx-offload.h
4713 F:      include/uapi/linux/can/error.h
4714 F:      include/uapi/linux/can/netlink.h
4715 F:      include/uapi/linux/can/vxcan.h
4716
4717 CAN NETWORK LAYER
4718 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4719 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4720 L:      linux-can@vger.kernel.org
4721 S:      Maintained
4722 W:      https://github.com/linux-can
4723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4725 F:      Documentation/networking/can.rst
4726 F:      include/linux/can/can-ml.h
4727 F:      include/linux/can/core.h
4728 F:      include/linux/can/skb.h
4729 F:      include/net/netns/can.h
4730 F:      include/uapi/linux/can.h
4731 F:      include/uapi/linux/can/bcm.h
4732 F:      include/uapi/linux/can/gw.h
4733 F:      include/uapi/linux/can/isotp.h
4734 F:      include/uapi/linux/can/raw.h
4735 F:      net/can/
4736
4737 CAN-J1939 NETWORK LAYER
4738 M:      Robin van der Gracht <robin@protonic.nl>
4739 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4740 R:      kernel@pengutronix.de
4741 L:      linux-can@vger.kernel.org
4742 S:      Maintained
4743 F:      Documentation/networking/j1939.rst
4744 F:      include/uapi/linux/can/j1939.h
4745 F:      net/can/j1939/
4746
4747 CAPABILITIES
4748 M:      Serge Hallyn <serge@hallyn.com>
4749 L:      linux-security-module@vger.kernel.org
4750 S:      Supported
4751 F:      include/linux/capability.h
4752 F:      include/uapi/linux/capability.h
4753 F:      kernel/capability.c
4754 F:      security/commoncap.c
4755
4756 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4757 M:      Kevin Tsai <ktsai@capellamicro.com>
4758 S:      Maintained
4759 F:      drivers/iio/light/cm*
4760
4761 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4762 M:      Christian Lamparter <chunkeey@googlemail.com>
4763 L:      linux-wireless@vger.kernel.org
4764 S:      Maintained
4765 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4766 F:      drivers/net/wireless/ath/carl9170/
4767
4768 CAVIUM I2C DRIVER
4769 M:      Robert Richter <rric@kernel.org>
4770 S:      Odd Fixes
4771 W:      http://www.marvell.com
4772 F:      drivers/i2c/busses/i2c-octeon*
4773 F:      drivers/i2c/busses/i2c-thunderx*
4774
4775 CAVIUM LIQUIDIO NETWORK DRIVER
4776 M:      Derek Chickles <dchickles@marvell.com>
4777 M:      Satanand Burla <sburla@marvell.com>
4778 M:      Felix Manlunas <fmanlunas@marvell.com>
4779 L:      netdev@vger.kernel.org
4780 S:      Supported
4781 W:      http://www.marvell.com
4782 F:      drivers/net/ethernet/cavium/liquidio/
4783
4784 CAVIUM MMC DRIVER
4785 M:      Robert Richter <rric@kernel.org>
4786 S:      Odd Fixes
4787 W:      http://www.marvell.com
4788 F:      drivers/mmc/host/cavium*
4789
4790 CAVIUM OCTEON-TX CRYPTO DRIVER
4791 M:      George Cherian <gcherian@marvell.com>
4792 L:      linux-crypto@vger.kernel.org
4793 S:      Supported
4794 W:      http://www.marvell.com
4795 F:      drivers/crypto/cavium/cpt/
4796
4797 CAVIUM THUNDERX2 ARM64 SOC
4798 M:      Robert Richter <rric@kernel.org>
4799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4800 S:      Odd Fixes
4801 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4802 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4803
4804 CBS/ETF/TAPRIO QDISCS
4805 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4806 S:      Maintained
4807 L:      netdev@vger.kernel.org
4808 F:      net/sched/sch_cbs.c
4809 F:      net/sched/sch_etf.c
4810 F:      net/sched/sch_taprio.c
4811
4812 CC2520 IEEE-802.15.4 RADIO DRIVER
4813 M:      Varka Bhadram <varkabhadram@gmail.com>
4814 L:      linux-wpan@vger.kernel.org
4815 S:      Maintained
4816 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4817 F:      drivers/net/ieee802154/cc2520.c
4818 F:      include/linux/spi/cc2520.h
4819
4820 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4821 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4822 L:      linux-crypto@vger.kernel.org
4823 S:      Supported
4824 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4825 F:      drivers/crypto/ccree/
4826
4827 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4828 M:      Hadar Gat <hadar.gat@arm.com>
4829 L:      linux-crypto@vger.kernel.org
4830 S:      Supported
4831 F:      drivers/char/hw_random/cctrng.c
4832 F:      drivers/char/hw_random/cctrng.h
4833 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4834 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4835
4836 CEC FRAMEWORK
4837 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4838 L:      linux-media@vger.kernel.org
4839 S:      Supported
4840 W:      http://linuxtv.org
4841 T:      git git://linuxtv.org/media_tree.git
4842 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4843 F:      Documentation/devicetree/bindings/media/cec.txt
4844 F:      Documentation/driver-api/media/cec-core.rst
4845 F:      Documentation/userspace-api/media/cec
4846 F:      drivers/media/cec/
4847 F:      drivers/media/rc/keymaps/rc-cec.c
4848 F:      include/media/cec-notifier.h
4849 F:      include/media/cec.h
4850 F:      include/uapi/linux/cec-funcs.h
4851 F:      include/uapi/linux/cec.h
4852
4853 CEC GPIO DRIVER
4854 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4855 L:      linux-media@vger.kernel.org
4856 S:      Supported
4857 W:      http://linuxtv.org
4858 T:      git git://linuxtv.org/media_tree.git
4859 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4860 F:      drivers/media/cec/platform/cec-gpio/
4861
4862 CELL BROADBAND ENGINE ARCHITECTURE
4863 M:      Arnd Bergmann <arnd@arndb.de>
4864 L:      linuxppc-dev@lists.ozlabs.org
4865 S:      Supported
4866 W:      http://www.ibm.com/developerworks/power/cell/
4867 F:      arch/powerpc/include/asm/cell*.h
4868 F:      arch/powerpc/include/asm/spu*.h
4869 F:      arch/powerpc/include/uapi/asm/spu*.h
4870 F:      arch/powerpc/platforms/cell/
4871
4872 CELLWISE CW2015 BATTERY DRIVER
4873 M:      Tobias Schrammm <t.schramm@manjaro.org>
4874 S:      Maintained
4875 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4876 F:      drivers/power/supply/cw2015_battery.c
4877
4878 CEPH COMMON CODE (LIBCEPH)
4879 M:      Ilya Dryomov <idryomov@gmail.com>
4880 M:      Xiubo Li <xiubli@redhat.com>
4881 R:      Jeff Layton <jlayton@kernel.org>
4882 L:      ceph-devel@vger.kernel.org
4883 S:      Supported
4884 W:      http://ceph.com/
4885 T:      git https://github.com/ceph/ceph-client.git
4886 F:      include/linux/ceph/
4887 F:      include/linux/crush/
4888 F:      net/ceph/
4889
4890 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4891 M:      Xiubo Li <xiubli@redhat.com>
4892 M:      Ilya Dryomov <idryomov@gmail.com>
4893 R:      Jeff Layton <jlayton@kernel.org>
4894 L:      ceph-devel@vger.kernel.org
4895 S:      Supported
4896 W:      http://ceph.com/
4897 T:      git https://github.com/ceph/ceph-client.git
4898 F:      Documentation/filesystems/ceph.rst
4899 F:      fs/ceph/
4900
4901 CERTIFICATE HANDLING
4902 M:      David Howells <dhowells@redhat.com>
4903 M:      David Woodhouse <dwmw2@infradead.org>
4904 L:      keyrings@vger.kernel.org
4905 S:      Maintained
4906 F:      Documentation/admin-guide/module-signing.rst
4907 F:      certs/
4908 F:      scripts/sign-file.c
4909 F:      tools/certs/
4910
4911 CFAG12864B LCD DRIVER
4912 M:      Miguel Ojeda <ojeda@kernel.org>
4913 S:      Maintained
4914 F:      drivers/auxdisplay/cfag12864b.c
4915 F:      include/linux/cfag12864b.h
4916
4917 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4918 M:      Miguel Ojeda <ojeda@kernel.org>
4919 S:      Maintained
4920 F:      drivers/auxdisplay/cfag12864bfb.c
4921 F:      include/linux/cfag12864b.h
4922
4923 CHAR and MISC DRIVERS
4924 M:      Arnd Bergmann <arnd@arndb.de>
4925 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4926 S:      Supported
4927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4928 F:      drivers/char/
4929 F:      drivers/misc/
4930 F:      include/linux/miscdevice.h
4931 X:      drivers/char/agp/
4932 X:      drivers/char/hw_random/
4933 X:      drivers/char/ipmi/
4934 X:      drivers/char/random.c
4935 X:      drivers/char/tpm/
4936
4937 CHECKPATCH
4938 M:      Andy Whitcroft <apw@canonical.com>
4939 M:      Joe Perches <joe@perches.com>
4940 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4941 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4942 S:      Maintained
4943 F:      scripts/checkpatch.pl
4944
4945 CHECKPATCH DOCUMENTATION
4946 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4947 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4948 R:      Joe Perches <joe@perches.com>
4949 S:      Maintained
4950 F:      Documentation/dev-tools/checkpatch.rst
4951
4952 CHINESE DOCUMENTATION
4953 M:      Alex Shi <alexs@kernel.org>
4954 M:      Yanteng Si <siyanteng@loongson.cn>
4955 S:      Maintained
4956 F:      Documentation/translations/zh_CN/
4957
4958 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4959 M:      Peter Chen <peter.chen@kernel.org>
4960 L:      linux-usb@vger.kernel.org
4961 S:      Maintained
4962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4963 F:      drivers/usb/chipidea/
4964
4965 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4966 M:      Hans de Goede <hdegoede@redhat.com>
4967 L:      linux-input@vger.kernel.org
4968 S:      Maintained
4969 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4970 F:      drivers/input/touchscreen/chipone_icn8318.c
4971
4972 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4973 M:      Hans de Goede <hdegoede@redhat.com>
4974 L:      linux-input@vger.kernel.org
4975 S:      Maintained
4976 F:      drivers/input/touchscreen/chipone_icn8505.c
4977
4978 CHROME HARDWARE PLATFORM SUPPORT
4979 M:      Benson Leung <bleung@chromium.org>
4980 L:      chrome-platform@lists.linux.dev
4981 S:      Maintained
4982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4983 F:      drivers/platform/chrome/
4984
4985 CHROMEOS EC CODEC DRIVER
4986 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4987 M:      Tzung-Bi Shih <tzungbi@kernel.org>
4988 R:      Guenter Roeck <groeck@chromium.org>
4989 L:      chrome-platform@lists.linux.dev
4990 S:      Maintained
4991 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4992 F:      sound/soc/codecs/cros_ec_codec.*
4993
4994 CHROMEOS EC SUBDRIVERS
4995 M:      Benson Leung <bleung@chromium.org>
4996 R:      Guenter Roeck <groeck@chromium.org>
4997 L:      chrome-platform@lists.linux.dev
4998 S:      Maintained
4999 F:      drivers/power/supply/cros_usbpd-charger.c
5000 N:      cros_ec
5001 N:      cros-ec
5002
5003 CHROMEOS EC USB TYPE-C DRIVER
5004 M:      Prashant Malani <pmalani@chromium.org>
5005 L:      chrome-platform@lists.linux.dev
5006 S:      Maintained
5007 F:      drivers/platform/chrome/cros_ec_typec.c
5008 F:      drivers/platform/chrome/cros_typec_switch.c
5009
5010 CHROMEOS EC USB PD NOTIFY DRIVER
5011 M:      Prashant Malani <pmalani@chromium.org>
5012 L:      chrome-platform@lists.linux.dev
5013 S:      Maintained
5014 F:      drivers/platform/chrome/cros_usbpd_notify.c
5015 F:      include/linux/platform_data/cros_usbpd_notify.h
5016
5017 CHROMEOS HPS DRIVER
5018 M:      Dan Callaghan <dcallagh@chromium.org>
5019 R:      Sami Kyöstilä <skyostil@chromium.org>
5020 S:      Maintained
5021 F:      drivers/platform/chrome/cros_hps_i2c.c
5022
5023 CHRONTEL CH7322 CEC DRIVER
5024 M:      Joe Tessler <jrt@google.com>
5025 L:      linux-media@vger.kernel.org
5026 S:      Maintained
5027 T:      git git://linuxtv.org/media_tree.git
5028 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
5029 F:      drivers/media/cec/i2c/ch7322.c
5030
5031 CIRRUS LOGIC AUDIO CODEC DRIVERS
5032 M:      James Schulman <james.schulman@cirrus.com>
5033 M:      David Rhodes <david.rhodes@cirrus.com>
5034 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
5035 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
5036 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5037 L:      patches@opensource.cirrus.com
5038 S:      Maintained
5039 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
5040 F:      include/dt-bindings/sound/cs*
5041 F:      sound/pci/hda/cs*
5042 F:      sound/pci/hda/hda_cs_dsp_ctl.*
5043 F:      sound/soc/codecs/cs*
5044
5045 CIRRUS LOGIC DSP FIRMWARE DRIVER
5046 M:      Simon Trimmer <simont@opensource.cirrus.com>
5047 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
5048 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
5049 L:      patches@opensource.cirrus.com
5050 S:      Supported
5051 W:      https://github.com/CirrusLogic/linux-drivers/wiki
5052 T:      git https://github.com/CirrusLogic/linux-drivers.git
5053 F:      drivers/firmware/cirrus/*
5054 F:      include/linux/firmware/cirrus/*
5055
5056 CIRRUS LOGIC EP93XX ETHERNET DRIVER
5057 M:      Hartley Sweeten <hsweeten@visionengravers.com>
5058 L:      netdev@vger.kernel.org
5059 S:      Maintained
5060 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
5061
5062 CIRRUS LOGIC LOCHNAGAR DRIVER
5063 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
5064 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
5065 L:      patches@opensource.cirrus.com
5066 S:      Supported
5067 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
5068 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
5069 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
5070 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
5071 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
5072 F:      Documentation/hwmon/lochnagar.rst
5073 F:      drivers/clk/clk-lochnagar.c
5074 F:      drivers/hwmon/lochnagar-hwmon.c
5075 F:      drivers/mfd/lochnagar-i2c.c
5076 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
5077 F:      drivers/regulator/lochnagar-regulator.c
5078 F:      include/dt-bindings/clock/lochnagar.h
5079 F:      include/dt-bindings/pinctrl/lochnagar.h
5080 F:      include/linux/mfd/lochnagar*
5081 F:      sound/soc/codecs/lochnagar-sc.c
5082
5083 CIRRUS LOGIC MADERA CODEC DRIVERS
5084 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
5085 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
5086 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5087 L:      patches@opensource.cirrus.com
5088 S:      Supported
5089 W:      https://github.com/CirrusLogic/linux-drivers/wiki
5090 T:      git https://github.com/CirrusLogic/linux-drivers.git
5091 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
5092 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
5093 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
5094 F:      drivers/gpio/gpio-madera*
5095 F:      drivers/irqchip/irq-madera*
5096 F:      drivers/mfd/cs47l*
5097 F:      drivers/mfd/madera*
5098 F:      drivers/pinctrl/cirrus/*
5099 F:      include/dt-bindings/sound/madera*
5100 F:      include/linux/irqchip/irq-madera*
5101 F:      include/linux/mfd/madera/*
5102 F:      include/sound/madera*
5103 F:      sound/soc/codecs/cs47l*
5104 F:      sound/soc/codecs/madera*
5105
5106 CISCO FCOE HBA DRIVER
5107 M:      Satish Kharat <satishkh@cisco.com>
5108 M:      Sesidhar Baddela <sebaddel@cisco.com>
5109 M:      Karan Tilak Kumar <kartilak@cisco.com>
5110 L:      linux-scsi@vger.kernel.org
5111 S:      Supported
5112 F:      drivers/scsi/fnic/
5113
5114 CISCO SCSI HBA DRIVER
5115 M:      Karan Tilak Kumar <kartilak@cisco.com>
5116 M:      Sesidhar Baddela <sebaddel@cisco.com>
5117 L:      linux-scsi@vger.kernel.org
5118 S:      Supported
5119 F:      drivers/scsi/snic/
5120
5121 CISCO VIC ETHERNET NIC DRIVER
5122 M:      Christian Benvenuti <benve@cisco.com>
5123 M:      Satish Kharat <satishkh@cisco.com>
5124 S:      Supported
5125 F:      drivers/net/ethernet/cisco/enic/
5126
5127 CISCO VIC LOW LATENCY NIC DRIVER
5128 M:      Christian Benvenuti <benve@cisco.com>
5129 M:      Nelson Escobar <neescoba@cisco.com>
5130 S:      Supported
5131 F:      drivers/infiniband/hw/usnic/
5132
5133 CLANG-FORMAT FILE
5134 M:      Miguel Ojeda <ojeda@kernel.org>
5135 S:      Maintained
5136 F:      .clang-format
5137
5138 CLANG/LLVM BUILD SUPPORT
5139 M:      Nathan Chancellor <nathan@kernel.org>
5140 M:      Nick Desaulniers <ndesaulniers@google.com>
5141 R:      Tom Rix <trix@redhat.com>
5142 L:      llvm@lists.linux.dev
5143 S:      Supported
5144 W:      https://clangbuiltlinux.github.io/
5145 B:      https://github.com/ClangBuiltLinux/linux/issues
5146 C:      irc://irc.libera.chat/clangbuiltlinux
5147 F:      Documentation/kbuild/llvm.rst
5148 F:      include/linux/compiler-clang.h
5149 F:      scripts/Makefile.clang
5150 F:      scripts/clang-tools/
5151 K:      \b(?i:clang|llvm)\b
5152
5153 CLANG CONTROL FLOW INTEGRITY SUPPORT
5154 M:      Sami Tolvanen <samitolvanen@google.com>
5155 M:      Kees Cook <keescook@chromium.org>
5156 R:      Nathan Chancellor <nathan@kernel.org>
5157 R:      Nick Desaulniers <ndesaulniers@google.com>
5158 L:      llvm@lists.linux.dev
5159 S:      Supported
5160 B:      https://github.com/ClangBuiltLinux/linux/issues
5161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5162 F:      include/linux/cfi.h
5163 F:      kernel/cfi.c
5164
5165 CLK API
5166 M:      Russell King <linux@armlinux.org.uk>
5167 L:      linux-clk@vger.kernel.org
5168 S:      Maintained
5169 F:      include/linux/clk.h
5170
5171 CLOCKSOURCE, CLOCKEVENT DRIVERS
5172 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5173 M:      Thomas Gleixner <tglx@linutronix.de>
5174 L:      linux-kernel@vger.kernel.org
5175 S:      Supported
5176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5177 F:      Documentation/devicetree/bindings/timer/
5178 F:      drivers/clocksource/
5179
5180 CMPC ACPI DRIVER
5181 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5182 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5183 L:      platform-driver-x86@vger.kernel.org
5184 S:      Supported
5185 F:      drivers/platform/x86/classmate-laptop.c
5186
5187 COBALT MEDIA DRIVER
5188 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5189 L:      linux-media@vger.kernel.org
5190 S:      Supported
5191 W:      https://linuxtv.org
5192 T:      git git://linuxtv.org/media_tree.git
5193 F:      drivers/media/pci/cobalt/
5194
5195 COCCINELLE/Semantic Patches (SmPL)
5196 M:      Julia Lawall <Julia.Lawall@inria.fr>
5197 M:      Nicolas Palix <nicolas.palix@imag.fr>
5198 L:      cocci@inria.fr (moderated for non-subscribers)
5199 S:      Supported
5200 W:      https://coccinelle.gitlabpages.inria.fr/website/
5201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5202 F:      Documentation/dev-tools/coccinelle.rst
5203 F:      scripts/coccicheck
5204 F:      scripts/coccinelle/
5205
5206 CODA FILE SYSTEM
5207 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5208 M:      coda@cs.cmu.edu
5209 L:      codalist@coda.cs.cmu.edu
5210 S:      Maintained
5211 W:      http://www.coda.cs.cmu.edu/
5212 F:      Documentation/filesystems/coda.rst
5213 F:      fs/coda/
5214 F:      include/linux/coda*.h
5215 F:      include/uapi/linux/coda*.h
5216
5217 CODA V4L2 MEM2MEM DRIVER
5218 M:      Philipp Zabel <p.zabel@pengutronix.de>
5219 L:      linux-media@vger.kernel.org
5220 S:      Maintained
5221 F:      Documentation/devicetree/bindings/media/coda.yaml
5222 F:      drivers/media/platform/chips-media/
5223
5224 CODE OF CONDUCT
5225 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5226 S:      Supported
5227 F:      Documentation/process/code-of-conduct-interpretation.rst
5228 F:      Documentation/process/code-of-conduct.rst
5229
5230 COMEDI DRIVERS
5231 M:      Ian Abbott <abbotti@mev.co.uk>
5232 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5233 S:      Odd Fixes
5234 F:      drivers/comedi/
5235 F:      include/linux/comedi/
5236 F:      include/uapi/linux/comedi.h
5237
5238 COMMON CLK FRAMEWORK
5239 M:      Michael Turquette <mturquette@baylibre.com>
5240 M:      Stephen Boyd <sboyd@kernel.org>
5241 L:      linux-clk@vger.kernel.org
5242 S:      Maintained
5243 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5245 F:      Documentation/devicetree/bindings/clock/
5246 F:      drivers/clk/
5247 F:      include/dt-bindings/clock/
5248 F:      include/linux/clk-pr*
5249 F:      include/linux/clk/
5250 F:      include/linux/of_clk.h
5251 X:      drivers/clk/clkdev.c
5252
5253 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5254 M:      Steve French <sfrench@samba.org>
5255 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5256 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5257 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5258 R:      Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5259 L:      linux-cifs@vger.kernel.org
5260 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5261 S:      Supported
5262 W:      https://wiki.samba.org/index.php/LinuxCIFS
5263 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5264 F:      Documentation/admin-guide/cifs/
5265 F:      fs/cifs/
5266 F:      fs/smbfs_common/
5267 F:      include/uapi/linux/cifs
5268
5269 COMPACTPCI HOTPLUG CORE
5270 M:      Scott Murray <scott@spiteful.org>
5271 L:      linux-pci@vger.kernel.org
5272 S:      Maintained
5273 F:      drivers/pci/hotplug/cpci_hotplug*
5274
5275 COMPACTPCI HOTPLUG GENERIC DRIVER
5276 M:      Scott Murray <scott@spiteful.org>
5277 L:      linux-pci@vger.kernel.org
5278 S:      Maintained
5279 F:      drivers/pci/hotplug/cpcihp_generic.c
5280
5281 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5282 M:      Scott Murray <scott@spiteful.org>
5283 L:      linux-pci@vger.kernel.org
5284 S:      Maintained
5285 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5286
5287 COMPAL LAPTOP SUPPORT
5288 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5289 L:      platform-driver-x86@vger.kernel.org
5290 S:      Maintained
5291 F:      drivers/platform/x86/compal-laptop.c
5292
5293 COMPILER ATTRIBUTES
5294 M:      Miguel Ojeda <ojeda@kernel.org>
5295 R:      Nick Desaulniers <ndesaulniers@google.com>
5296 S:      Maintained
5297 F:      include/linux/compiler_attributes.h
5298
5299 COMPUTE EXPRESS LINK (CXL)
5300 M:      Alison Schofield <alison.schofield@intel.com>
5301 M:      Vishal Verma <vishal.l.verma@intel.com>
5302 M:      Ira Weiny <ira.weiny@intel.com>
5303 M:      Ben Widawsky <bwidawsk@kernel.org>
5304 M:      Dan Williams <dan.j.williams@intel.com>
5305 L:      linux-cxl@vger.kernel.org
5306 S:      Maintained
5307 F:      drivers/cxl/
5308 F:      include/uapi/linux/cxl_mem.h
5309
5310 CONEXANT ACCESSRUNNER USB DRIVER
5311 L:      accessrunner-general@lists.sourceforge.net
5312 S:      Orphan
5313 W:      http://accessrunner.sourceforge.net/
5314 F:      drivers/usb/atm/cxacru.c
5315
5316 CONFIGFS
5317 M:      Joel Becker <jlbec@evilplan.org>
5318 M:      Christoph Hellwig <hch@lst.de>
5319 S:      Supported
5320 T:      git git://git.infradead.org/users/hch/configfs.git
5321 F:      fs/configfs/
5322 F:      include/linux/configfs.h
5323 F:      samples/configfs/
5324
5325 CONSOLE SUBSYSTEM
5326 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5327 S:      Supported
5328 F:      drivers/video/console/
5329 F:      include/linux/console*
5330
5331 CONTEXT TRACKING
5332 M:      Frederic Weisbecker <frederic@kernel.org>
5333 M:      "Paul E. McKenney" <paulmck@kernel.org>
5334 S:      Maintained
5335 F:      kernel/context_tracking.c
5336 F:      include/linux/context_tracking*
5337
5338 CONTROL GROUP (CGROUP)
5339 M:      Tejun Heo <tj@kernel.org>
5340 M:      Zefan Li <lizefan.x@bytedance.com>
5341 M:      Johannes Weiner <hannes@cmpxchg.org>
5342 L:      cgroups@vger.kernel.org
5343 S:      Maintained
5344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5345 F:      Documentation/admin-guide/cgroup-v1/
5346 F:      Documentation/admin-guide/cgroup-v2.rst
5347 F:      include/linux/cgroup*
5348 F:      kernel/cgroup/
5349 F:      tools/testing/selftests/cgroup/
5350
5351 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5352 M:      Tejun Heo <tj@kernel.org>
5353 M:      Josef Bacik <josef@toxicpanda.com>
5354 M:      Jens Axboe <axboe@kernel.dk>
5355 L:      cgroups@vger.kernel.org
5356 L:      linux-block@vger.kernel.org
5357 T:      git git://git.kernel.dk/linux-block
5358 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5359 F:      block/bfq-cgroup.c
5360 F:      block/blk-cgroup.c
5361 F:      block/blk-iocost.c
5362 F:      block/blk-iolatency.c
5363 F:      block/blk-throttle.c
5364 F:      include/linux/blk-cgroup.h
5365
5366 CONTROL GROUP - CPUSET
5367 M:      Waiman Long <longman@redhat.com>
5368 M:      Zefan Li <lizefan.x@bytedance.com>
5369 L:      cgroups@vger.kernel.org
5370 S:      Maintained
5371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5372 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5373 F:      include/linux/cpuset.h
5374 F:      kernel/cgroup/cpuset.c
5375
5376 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5377 M:      Johannes Weiner <hannes@cmpxchg.org>
5378 M:      Michal Hocko <mhocko@kernel.org>
5379 M:      Roman Gushchin <roman.gushchin@linux.dev>
5380 M:      Shakeel Butt <shakeelb@google.com>
5381 R:      Muchun Song <muchun.song@linux.dev>
5382 L:      cgroups@vger.kernel.org
5383 L:      linux-mm@kvack.org
5384 S:      Maintained
5385 F:      mm/memcontrol.c
5386 F:      mm/swap_cgroup.c
5387 F:      tools/testing/selftests/cgroup/memcg_protection.m
5388 F:      tools/testing/selftests/cgroup/test_kmem.c
5389 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5390
5391 CORETEMP HARDWARE MONITORING DRIVER
5392 M:      Fenghua Yu <fenghua.yu@intel.com>
5393 L:      linux-hwmon@vger.kernel.org
5394 S:      Maintained
5395 F:      Documentation/hwmon/coretemp.rst
5396 F:      drivers/hwmon/coretemp.c
5397
5398 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5399 M:      Marius Zachmann <mail@mariuszachmann.de>
5400 L:      linux-hwmon@vger.kernel.org
5401 S:      Maintained
5402 F:      drivers/hwmon/corsair-cpro.c
5403
5404 CORSAIR-PSU HARDWARE MONITOR DRIVER
5405 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5406 L:      linux-hwmon@vger.kernel.org
5407 S:      Maintained
5408 F:      Documentation/hwmon/corsair-psu.rst
5409 F:      drivers/hwmon/corsair-psu.c
5410
5411 COUNTER SUBSYSTEM
5412 M:      William Breathitt Gray <william.gray@linaro.org>
5413 L:      linux-iio@vger.kernel.org
5414 S:      Maintained
5415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5416 F:      Documentation/ABI/testing/sysfs-bus-counter
5417 F:      Documentation/driver-api/generic-counter.rst
5418 F:      drivers/counter/
5419 F:      include/linux/counter.h
5420 F:      include/uapi/linux/counter.h
5421 F:      tools/counter/
5422
5423 CP2615 I2C DRIVER
5424 M:      Bence Csókás <bence98@sch.bme.hu>
5425 S:      Maintained
5426 F:      drivers/i2c/busses/i2c-cp2615.c
5427
5428 CPMAC ETHERNET DRIVER
5429 M:      Florian Fainelli <f.fainelli@gmail.com>
5430 L:      netdev@vger.kernel.org
5431 S:      Maintained
5432 F:      drivers/net/ethernet/ti/cpmac.c
5433
5434 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5435 M:      Viresh Kumar <viresh.kumar@linaro.org>
5436 M:      Sudeep Holla <sudeep.holla@arm.com>
5437 L:      linux-pm@vger.kernel.org
5438 S:      Maintained
5439 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5440 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5441
5442 CPU FREQUENCY SCALING FRAMEWORK
5443 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5444 M:      Viresh Kumar <viresh.kumar@linaro.org>
5445 L:      linux-pm@vger.kernel.org
5446 S:      Maintained
5447 B:      https://bugzilla.kernel.org
5448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5450 F:      Documentation/admin-guide/pm/cpufreq.rst
5451 F:      Documentation/admin-guide/pm/intel_pstate.rst
5452 F:      Documentation/cpu-freq/
5453 F:      Documentation/devicetree/bindings/cpufreq/
5454 F:      drivers/cpufreq/
5455 F:      include/linux/cpufreq.h
5456 F:      include/linux/sched/cpufreq.h
5457 F:      kernel/sched/cpufreq*.c
5458 F:      tools/testing/selftests/cpufreq/
5459
5460 CPU IDLE TIME MANAGEMENT FRAMEWORK
5461 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5462 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5463 L:      linux-pm@vger.kernel.org
5464 S:      Maintained
5465 B:      https://bugzilla.kernel.org
5466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5467 F:      Documentation/admin-guide/pm/cpuidle.rst
5468 F:      Documentation/driver-api/pm/cpuidle.rst
5469 F:      drivers/cpuidle/
5470 F:      include/linux/cpuidle.h
5471
5472 CPU POWER MONITORING SUBSYSTEM
5473 M:      Thomas Renninger <trenn@suse.com>
5474 M:      Shuah Khan <shuah@kernel.org>
5475 M:      Shuah Khan <skhan@linuxfoundation.org>
5476 L:      linux-pm@vger.kernel.org
5477 S:      Maintained
5478 F:      tools/power/cpupower/
5479
5480 CPUID/MSR DRIVER
5481 M:      "H. Peter Anvin" <hpa@zytor.com>
5482 S:      Maintained
5483 F:      arch/x86/kernel/cpuid.c
5484 F:      arch/x86/kernel/msr.c
5485
5486 CPUIDLE DRIVER - ARM BIG LITTLE
5487 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5488 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5489 L:      linux-pm@vger.kernel.org
5490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5491 S:      Maintained
5492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5493 F:      drivers/cpuidle/cpuidle-big_little.c
5494
5495 CPUIDLE DRIVER - ARM EXYNOS
5496 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5497 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5498 M:      Kukjin Kim <kgene@kernel.org>
5499 L:      linux-pm@vger.kernel.org
5500 L:      linux-samsung-soc@vger.kernel.org
5501 S:      Supported
5502 F:      arch/arm/mach-exynos/pm.c
5503 F:      drivers/cpuidle/cpuidle-exynos.c
5504 F:      include/linux/platform_data/cpuidle-exynos.h
5505
5506 CPUIDLE DRIVER - ARM PSCI
5507 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5508 M:      Sudeep Holla <sudeep.holla@arm.com>
5509 L:      linux-pm@vger.kernel.org
5510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5511 S:      Supported
5512 F:      drivers/cpuidle/cpuidle-psci.c
5513
5514 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5515 M:      Ulf Hansson <ulf.hansson@linaro.org>
5516 L:      linux-pm@vger.kernel.org
5517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5518 S:      Supported
5519 F:      drivers/cpuidle/cpuidle-psci.h
5520 F:      drivers/cpuidle/cpuidle-psci-domain.c
5521
5522 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5523 M:      Ulf Hansson <ulf.hansson@linaro.org>
5524 L:      linux-pm@vger.kernel.org
5525 S:      Supported
5526 F:      drivers/cpuidle/dt_idle_genpd.c
5527 F:      drivers/cpuidle/dt_idle_genpd.h
5528
5529 CPUIDLE DRIVER - RISC-V SBI
5530 M:      Anup Patel <anup@brainfault.org>
5531 L:      linux-pm@vger.kernel.org
5532 L:      linux-riscv@lists.infradead.org
5533 S:      Maintained
5534 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5535
5536 CRAMFS FILESYSTEM
5537 M:      Nicolas Pitre <nico@fluxnic.net>
5538 S:      Maintained
5539 F:      Documentation/filesystems/cramfs.rst
5540 F:      fs/cramfs/
5541
5542 CREATIVE SB0540
5543 M:      Bastien Nocera <hadess@hadess.net>
5544 L:      linux-input@vger.kernel.org
5545 S:      Maintained
5546 F:      drivers/hid/hid-creative-sb0540.c
5547
5548 CRYPTO API
5549 M:      Herbert Xu <herbert@gondor.apana.org.au>
5550 M:      "David S. Miller" <davem@davemloft.net>
5551 L:      linux-crypto@vger.kernel.org
5552 S:      Maintained
5553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5555 F:      Documentation/crypto/
5556 F:      Documentation/devicetree/bindings/crypto/
5557 F:      arch/*/crypto/
5558 F:      crypto/
5559 F:      drivers/crypto/
5560 F:      include/crypto/
5561 F:      include/linux/crypto*
5562 F:      lib/crypto/
5563
5564 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5565 M:      Neil Horman <nhorman@tuxdriver.com>
5566 L:      linux-crypto@vger.kernel.org
5567 S:      Maintained
5568 F:      crypto/ansi_cprng.c
5569 F:      crypto/rng.c
5570
5571 CS3308 MEDIA DRIVER
5572 M:      Hans Verkuil <hverkuil@xs4all.nl>
5573 L:      linux-media@vger.kernel.org
5574 S:      Odd Fixes
5575 W:      http://linuxtv.org
5576 T:      git git://linuxtv.org/media_tree.git
5577 F:      drivers/media/i2c/cs3308.c
5578
5579 CS5535 Audio ALSA driver
5580 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5581 S:      Maintained
5582 F:      sound/pci/cs5535audio/
5583
5584 CTU CAN FD DRIVER
5585 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5586 M:      Ondrej Ille <ondrej.ille@gmail.com>
5587 L:      linux-can@vger.kernel.org
5588 S:      Maintained
5589 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5590 F:      drivers/net/can/ctucanfd/
5591
5592 CW1200 WLAN driver
5593 M:      Solomon Peachy <pizza@shaftnet.org>
5594 S:      Maintained
5595 F:      drivers/net/wireless/st/cw1200/
5596
5597 CX18 VIDEO4LINUX DRIVER
5598 M:      Andy Walls <awalls@md.metrocast.net>
5599 L:      linux-media@vger.kernel.org
5600 S:      Maintained
5601 W:      https://linuxtv.org
5602 T:      git git://linuxtv.org/media_tree.git
5603 F:      drivers/media/pci/cx18/
5604 F:      include/uapi/linux/ivtv*
5605
5606 CX2341X MPEG ENCODER HELPER MODULE
5607 M:      Hans Verkuil <hverkuil@xs4all.nl>
5608 L:      linux-media@vger.kernel.org
5609 S:      Maintained
5610 W:      https://linuxtv.org
5611 T:      git git://linuxtv.org/media_tree.git
5612 F:      drivers/media/common/cx2341x*
5613 F:      include/media/drv-intf/cx2341x.h
5614
5615 CX24120 MEDIA DRIVER
5616 M:      Jemma Denson <jdenson@gmail.com>
5617 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5618 L:      linux-media@vger.kernel.org
5619 S:      Maintained
5620 W:      https://linuxtv.org
5621 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5622 F:      drivers/media/dvb-frontends/cx24120*
5623
5624 CX88 VIDEO4LINUX DRIVER
5625 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5626 L:      linux-media@vger.kernel.org
5627 S:      Odd fixes
5628 W:      https://linuxtv.org
5629 T:      git git://linuxtv.org/media_tree.git
5630 F:      Documentation/driver-api/media/drivers/cx88*
5631 F:      drivers/media/pci/cx88/
5632
5633 CXD2820R MEDIA DRIVER
5634 M:      Antti Palosaari <crope@iki.fi>
5635 L:      linux-media@vger.kernel.org
5636 S:      Maintained
5637 W:      https://linuxtv.org
5638 W:      http://palosaari.fi/linux/
5639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5640 T:      git git://linuxtv.org/anttip/media_tree.git
5641 F:      drivers/media/dvb-frontends/cxd2820r*
5642
5643 CXGB3 ETHERNET DRIVER (CXGB3)
5644 M:      Raju Rangoju <rajur@chelsio.com>
5645 L:      netdev@vger.kernel.org
5646 S:      Supported
5647 W:      http://www.chelsio.com
5648 F:      drivers/net/ethernet/chelsio/cxgb3/
5649
5650 CXGB3 ISCSI DRIVER (CXGB3I)
5651 M:      Varun Prakash <varun@chelsio.com>
5652 L:      linux-scsi@vger.kernel.org
5653 S:      Supported
5654 W:      http://www.chelsio.com
5655 F:      drivers/scsi/cxgbi/cxgb3i
5656
5657 CXGB4 CRYPTO DRIVER (chcr)
5658 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5659 L:      linux-crypto@vger.kernel.org
5660 S:      Supported
5661 W:      http://www.chelsio.com
5662 F:      drivers/crypto/chelsio
5663
5664 CXGB4 INLINE CRYPTO DRIVER
5665 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5666 L:      netdev@vger.kernel.org
5667 S:      Supported
5668 W:      http://www.chelsio.com
5669 F:      drivers/net/ethernet/chelsio/inline_crypto/
5670
5671 CXGB4 ETHERNET DRIVER (CXGB4)
5672 M:      Raju Rangoju <rajur@chelsio.com>
5673 L:      netdev@vger.kernel.org
5674 S:      Supported
5675 W:      http://www.chelsio.com
5676 F:      drivers/net/ethernet/chelsio/cxgb4/
5677
5678 CXGB4 ISCSI DRIVER (CXGB4I)
5679 M:      Varun Prakash <varun@chelsio.com>
5680 L:      linux-scsi@vger.kernel.org
5681 S:      Supported
5682 W:      http://www.chelsio.com
5683 F:      drivers/scsi/cxgbi/cxgb4i
5684
5685 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5686 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5687 L:      linux-rdma@vger.kernel.org
5688 S:      Supported
5689 W:      http://www.openfabrics.org
5690 F:      drivers/infiniband/hw/cxgb4/
5691 F:      include/uapi/rdma/cxgb4-abi.h
5692
5693 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5694 M:      Raju Rangoju <rajur@chelsio.com>
5695 L:      netdev@vger.kernel.org
5696 S:      Supported
5697 W:      http://www.chelsio.com
5698 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5699
5700 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5701 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5702 M:      Andrew Donnellan <ajd@linux.ibm.com>
5703 L:      linuxppc-dev@lists.ozlabs.org
5704 S:      Supported
5705 F:      Documentation/ABI/testing/sysfs-class-cxl
5706 F:      Documentation/powerpc/cxl.rst
5707 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5708 F:      drivers/misc/cxl/
5709 F:      include/misc/cxl*
5710 F:      include/uapi/misc/cxl.h
5711
5712 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5713 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5714 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5715 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5716 L:      linux-scsi@vger.kernel.org
5717 S:      Supported
5718 F:      Documentation/powerpc/cxlflash.rst
5719 F:      drivers/scsi/cxlflash/
5720 F:      include/uapi/scsi/cxlflash_ioctl.h
5721
5722 CYBERPRO FB DRIVER
5723 M:      Russell King <linux@armlinux.org.uk>
5724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5725 S:      Maintained
5726 W:      http://www.armlinux.org.uk/
5727 F:      drivers/video/fbdev/cyber2000fb.*
5728
5729 CYCLADES PC300 DRIVER
5730 S:      Orphan
5731 F:      drivers/net/wan/pc300*
5732
5733 CYPRESS_FIRMWARE MEDIA DRIVER
5734 M:      Antti Palosaari <crope@iki.fi>
5735 L:      linux-media@vger.kernel.org
5736 S:      Maintained
5737 W:      https://linuxtv.org
5738 W:      http://palosaari.fi/linux/
5739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5740 T:      git git://linuxtv.org/anttip/media_tree.git
5741 F:      drivers/media/common/cypress_firmware*
5742
5743 CYPRESS CY8C95X0 PINCTRL DRIVER
5744 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
5745 L:      linux-gpio@vger.kernel.org
5746 S:      Maintained
5747 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5748
5749 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5750 M:      Linus Walleij <linus.walleij@linaro.org>
5751 L:      linux-input@vger.kernel.org
5752 S:      Maintained
5753 F:      drivers/input/touchscreen/cy8ctma140.c
5754
5755 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5756 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5757 L:      linux-input@vger.kernel.org
5758 S:      Maintained
5759 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5760 F:      drivers/input/keyboard/cypress-sf.c
5761
5762 CYTTSP TOUCHSCREEN DRIVER
5763 M:      Linus Walleij <linus.walleij@linaro.org>
5764 L:      linux-input@vger.kernel.org
5765 S:      Maintained
5766 F:      drivers/input/touchscreen/cyttsp*
5767
5768 D-LINK DIR-685 TOUCHKEYS DRIVER
5769 M:      Linus Walleij <linus.walleij@linaro.org>
5770 L:      linux-input@vger.kernel.org
5771 S:      Supported
5772 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5773
5774 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5775 M:      Joshua Kinard <kumba@gentoo.org>
5776 S:      Maintained
5777 F:      drivers/rtc/rtc-ds1685.c
5778 F:      include/linux/rtc/ds1685.h
5779
5780 DAMA SLAVE for AX.25
5781 M:      Joerg Reuter <jreuter@yaina.de>
5782 L:      linux-hams@vger.kernel.org
5783 S:      Maintained
5784 W:      http://yaina.de/jreuter/
5785 W:      http://www.qsl.net/dl1bke/
5786 F:      net/ax25/af_ax25.c
5787 F:      net/ax25/ax25_dev.c
5788 F:      net/ax25/ax25_ds_*
5789 F:      net/ax25/ax25_in.c
5790 F:      net/ax25/ax25_out.c
5791 F:      net/ax25/ax25_timer.c
5792 F:      net/ax25/sysctl_net_ax25.c
5793
5794 DATA ACCESS MONITOR
5795 M:      SeongJae Park <sj@kernel.org>
5796 L:      damon@lists.linux.dev
5797 L:      linux-mm@kvack.org
5798 S:      Maintained
5799 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5800 F:      Documentation/admin-guide/mm/damon/
5801 F:      Documentation/mm/damon/
5802 F:      include/linux/damon.h
5803 F:      include/trace/events/damon.h
5804 F:      mm/damon/
5805 F:      tools/testing/selftests/damon/
5806
5807 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5808 L:      netdev@vger.kernel.org
5809 S:      Orphan
5810 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5811 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5812
5813 DC390/AM53C974 SCSI driver
5814 M:      Hannes Reinecke <hare@suse.com>
5815 L:      linux-scsi@vger.kernel.org
5816 S:      Maintained
5817 F:      drivers/scsi/am53c974.c
5818
5819 DC395x SCSI driver
5820 M:      Oliver Neukum <oliver@neukum.org>
5821 M:      Ali Akcaagac <aliakc@web.de>
5822 M:      Jamie Lenehan <lenehan@twibble.org>
5823 L:      dc395x@twibble.org
5824 S:      Maintained
5825 W:      http://twibble.org/dist/dc395x/
5826 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5827 F:      Documentation/scsi/dc395x.rst
5828 F:      drivers/scsi/dc395x.*
5829
5830 DCCP PROTOCOL
5831 L:      dccp@vger.kernel.org
5832 S:      Orphan
5833 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5834 F:      include/linux/dccp.h
5835 F:      include/linux/tfrc.h
5836 F:      include/uapi/linux/dccp.h
5837 F:      net/dccp/
5838
5839 DECSTATION PLATFORM SUPPORT
5840 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5841 L:      linux-mips@vger.kernel.org
5842 S:      Maintained
5843 W:      http://www.linux-mips.org/wiki/DECstation
5844 F:      arch/mips/dec/
5845 F:      arch/mips/include/asm/dec/
5846 F:      arch/mips/include/asm/mach-dec/
5847
5848 DEFXX FDDI NETWORK DRIVER
5849 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5850 S:      Maintained
5851 F:      drivers/net/fddi/defxx.*
5852
5853 DEFZA FDDI NETWORK DRIVER
5854 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5855 S:      Maintained
5856 F:      drivers/net/fddi/defza.*
5857
5858 DEINTERLACE DRIVERS FOR ALLWINNER H3
5859 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5860 L:      linux-media@vger.kernel.org
5861 S:      Maintained
5862 T:      git git://linuxtv.org/media_tree.git
5863 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5864 F:      drivers/media/platform/sunxi/sun8i-di/
5865
5866 DELL LAPTOP DRIVER
5867 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5868 M:      Pali Rohár <pali@kernel.org>
5869 L:      platform-driver-x86@vger.kernel.org
5870 S:      Maintained
5871 F:      drivers/platform/x86/dell/dell-laptop.c
5872
5873 DELL LAPTOP FREEFALL DRIVER
5874 M:      Pali Rohár <pali@kernel.org>
5875 S:      Maintained
5876 F:      drivers/platform/x86/dell/dell-smo8800.c
5877
5878 DELL LAPTOP RBTN DRIVER
5879 M:      Pali Rohár <pali@kernel.org>
5880 S:      Maintained
5881 F:      drivers/platform/x86/dell/dell-rbtn.*
5882
5883 DELL LAPTOP SMM DRIVER
5884 M:      Pali Rohár <pali@kernel.org>
5885 S:      Maintained
5886 F:      Documentation/ABI/obsolete/procfs-i8k
5887 F:      drivers/hwmon/dell-smm-hwmon.c
5888 F:      include/uapi/linux/i8k.h
5889
5890 DELL REMOTE BIOS UPDATE DRIVER
5891 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5892 L:      platform-driver-x86@vger.kernel.org
5893 S:      Maintained
5894 F:      drivers/platform/x86/dell/dell_rbu.c
5895
5896 DELL SMBIOS DRIVER
5897 M:      Pali Rohár <pali@kernel.org>
5898 L:      Dell.Client.Kernel@dell.com
5899 L:      platform-driver-x86@vger.kernel.org
5900 S:      Maintained
5901 F:      drivers/platform/x86/dell/dell-smbios.*
5902
5903 DELL SMBIOS SMM DRIVER
5904 L:      Dell.Client.Kernel@dell.com
5905 L:      platform-driver-x86@vger.kernel.org
5906 S:      Maintained
5907 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5908
5909 DELL SMBIOS WMI DRIVER
5910 L:      Dell.Client.Kernel@dell.com
5911 L:      platform-driver-x86@vger.kernel.org
5912 S:      Maintained
5913 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5914 F:      tools/wmi/dell-smbios-example.c
5915
5916 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5917 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5918 L:      platform-driver-x86@vger.kernel.org
5919 S:      Maintained
5920 F:      Documentation/driver-api/dcdbas.rst
5921 F:      drivers/platform/x86/dell/dcdbas.*
5922
5923 DELL WMI DESCRIPTOR DRIVER
5924 L:      Dell.Client.Kernel@dell.com
5925 S:      Maintained
5926 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5927
5928 DELL WMI DDV DRIVER
5929 M:      Armin Wolf <W_Armin@gmx.de>
5930 S:      Maintained
5931 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5932 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5933 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5934
5935 DELL WMI SYSMAN DRIVER
5936 M:      Divya Bharathi <divya.bharathi@dell.com>
5937 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5938 L:      Dell.Client.Kernel@dell.com
5939 L:      platform-driver-x86@vger.kernel.org
5940 S:      Maintained
5941 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5942 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5943
5944 DELL WMI NOTIFICATIONS DRIVER
5945 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5946 M:      Pali Rohár <pali@kernel.org>
5947 S:      Maintained
5948 F:      drivers/platform/x86/dell/dell-wmi-base.c
5949
5950 DELL WMI HARDWARE PRIVACY SUPPORT
5951 M:      Perry Yuan <Perry.Yuan@dell.com>
5952 L:      Dell.Client.Kernel@dell.com
5953 L:      platform-driver-x86@vger.kernel.org
5954 S:      Maintained
5955 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5956
5957 DELTA ST MEDIA DRIVER
5958 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5959 L:      linux-media@vger.kernel.org
5960 S:      Supported
5961 W:      https://linuxtv.org
5962 T:      git git://linuxtv.org/media_tree.git
5963 F:      drivers/media/platform/st/sti/delta
5964
5965 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5966 M:      Zev Weiss <zev@bewilderbeest.net>
5967 L:      linux-hwmon@vger.kernel.org
5968 S:      Maintained
5969 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5970
5971 DELTA DPS920AB PSU DRIVER
5972 M:      Robert Marko <robert.marko@sartura.hr>
5973 L:      linux-hwmon@vger.kernel.org
5974 S:      Maintained
5975 F:      Documentation/hwmon/dps920ab.rst
5976 F:      drivers/hwmon/pmbus/dps920ab.c
5977
5978 DELTA NETWORKS TN48M CPLD DRIVERS
5979 M:      Robert Marko <robert.marko@sartura.hr>
5980 S:      Maintained
5981 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5982 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5983 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5984 F:      drivers/gpio/gpio-tn48m.c
5985 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5986
5987 DENALI NAND DRIVER
5988 L:      linux-mtd@lists.infradead.org
5989 S:      Orphan
5990 F:      drivers/mtd/nand/raw/denali*
5991
5992 DESIGNWARE EDMA CORE IP DRIVER
5993 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5994 L:      dmaengine@vger.kernel.org
5995 S:      Maintained
5996 F:      drivers/dma/dw-edma/
5997 F:      include/linux/dma/edma.h
5998
5999 DESIGNWARE XDATA IP DRIVER
6000 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
6001 L:      linux-pci@vger.kernel.org
6002 S:      Maintained
6003 F:      Documentation/misc-devices/dw-xdata-pcie.rst
6004 F:      drivers/misc/dw-xdata-pcie.c
6005
6006 DESIGNWARE USB2 DRD IP DRIVER
6007 M:      Minas Harutyunyan <hminas@synopsys.com>
6008 L:      linux-usb@vger.kernel.org
6009 S:      Maintained
6010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6011 F:      drivers/usb/dwc2/
6012
6013 DESIGNWARE USB3 DRD IP DRIVER
6014 M:      Thinh Nguyen <Thinh.Nguyen@synopsys.com>
6015 L:      linux-usb@vger.kernel.org
6016 S:      Maintained
6017 F:      drivers/usb/dwc3/
6018
6019 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
6020 M:      Andreas Klinger <ak@it-klinger.de>
6021 L:      linux-iio@vger.kernel.org
6022 S:      Maintained
6023 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
6024 F:      drivers/iio/proximity/srf*.c
6025
6026 DEVICE COREDUMP (DEV_COREDUMP)
6027 M:      Johannes Berg <johannes@sipsolutions.net>
6028 L:      linux-kernel@vger.kernel.org
6029 S:      Maintained
6030 F:      drivers/base/devcoredump.c
6031 F:      include/linux/devcoredump.h
6032
6033 DEVICE DEPENDENCY HELPER SCRIPT
6034 M:      Saravana Kannan <saravanak@google.com>
6035 L:      linux-kernel@vger.kernel.org
6036 S:      Maintained
6037 F:      scripts/dev-needs.sh
6038
6039 DEVICE DIRECT ACCESS (DAX)
6040 M:      Dan Williams <dan.j.williams@intel.com>
6041 M:      Vishal Verma <vishal.l.verma@intel.com>
6042 M:      Dave Jiang <dave.jiang@intel.com>
6043 L:      nvdimm@lists.linux.dev
6044 S:      Supported
6045 F:      drivers/dax/
6046
6047 DEVICE FREQUENCY (DEVFREQ)
6048 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6049 M:      Kyungmin Park <kyungmin.park@samsung.com>
6050 M:      Chanwoo Choi <cw00.choi@samsung.com>
6051 L:      linux-pm@vger.kernel.org
6052 S:      Maintained
6053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
6054 F:      Documentation/devicetree/bindings/devfreq/
6055 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
6056 F:      drivers/devfreq/
6057 F:      include/linux/devfreq.h
6058 F:      include/trace/events/devfreq.h
6059
6060 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
6061 M:      Chanwoo Choi <cw00.choi@samsung.com>
6062 L:      linux-pm@vger.kernel.org
6063 S:      Supported
6064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
6065 F:      Documentation/devicetree/bindings/devfreq/event/
6066 F:      drivers/devfreq/devfreq-event.c
6067 F:      drivers/devfreq/event/
6068 F:      include/dt-bindings/pmu/exynos_ppmu.h
6069 F:      include/linux/devfreq-event.h
6070
6071 DEVICE NUMBER REGISTRY
6072 M:      Torben Mathiasen <device@lanana.org>
6073 S:      Maintained
6074 W:      http://lanana.org/docs/device-list/index.html
6075
6076 DEVICE RESOURCE MANAGEMENT HELPERS
6077 M:      Hans de Goede <hdegoede@redhat.com>
6078 R:      Matti Vaittinen <mazziesaccount@gmail.com>
6079 S:      Maintained
6080 F:      include/linux/devm-helpers.h
6081
6082 DEVICE-MAPPER  (LVM)
6083 M:      Alasdair Kergon <agk@redhat.com>
6084 M:      Mike Snitzer <snitzer@kernel.org>
6085 M:      dm-devel@redhat.com
6086 L:      dm-devel@redhat.com
6087 S:      Maintained
6088 W:      http://sources.redhat.com/dm
6089 Q:      http://patchwork.kernel.org/project/dm-devel/list/
6090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
6091 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
6092 F:      Documentation/admin-guide/device-mapper/
6093 F:      drivers/md/Kconfig
6094 F:      drivers/md/Makefile
6095 F:      drivers/md/dm*
6096 F:      drivers/md/persistent-data/
6097 F:      include/linux/device-mapper.h
6098 F:      include/linux/dm-*.h
6099 F:      include/uapi/linux/dm-*.h
6100
6101 DEVLINK
6102 M:      Jiri Pirko <jiri@nvidia.com>
6103 L:      netdev@vger.kernel.org
6104 S:      Supported
6105 F:      Documentation/networking/devlink
6106 F:      include/net/devlink.h
6107 F:      include/uapi/linux/devlink.h
6108 F:      net/core/devlink.c
6109
6110 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
6111 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
6112 L:      kernel@dh-electronics.com
6113 S:      Maintained
6114 F:      arch/arm/boot/dts/imx6*-dhcom-*
6115 F:      arch/arm/boot/dts/imx6*-dhcor-*
6116
6117 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
6118 M:      Marek Vasut <marex@denx.de>
6119 L:      kernel@dh-electronics.com
6120 S:      Maintained
6121 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
6122 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
6123
6124 DIALOG SEMICONDUCTOR DRIVERS
6125 M:      Support Opensource <support.opensource@diasemi.com>
6126 S:      Supported
6127 W:      http://www.dialog-semiconductor.com/products
6128 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
6129 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
6130 F:      Documentation/devicetree/bindings/mfd/da90*.txt
6131 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
6132 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
6133 F:      Documentation/devicetree/bindings/regulator/da92*.txt
6134 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
6135 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
6136 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
6137 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
6138 F:      Documentation/hwmon/da90??.rst
6139 F:      drivers/gpio/gpio-da90??.c
6140 F:      drivers/hwmon/da90??-hwmon.c
6141 F:      drivers/iio/adc/da91??-*.c
6142 F:      drivers/input/misc/da72??.[ch]
6143 F:      drivers/input/misc/da90??_onkey.c
6144 F:      drivers/input/touchscreen/da9052_tsi.c
6145 F:      drivers/leds/leds-da90??.c
6146 F:      drivers/mfd/da903x.c
6147 F:      drivers/mfd/da90??-*.c
6148 F:      drivers/mfd/da91??-*.c
6149 F:      drivers/pinctrl/pinctrl-da90??.c
6150 F:      drivers/power/supply/da9052-battery.c
6151 F:      drivers/power/supply/da91??-*.c
6152 F:      drivers/regulator/da9???-regulator.[ch]
6153 F:      drivers/regulator/slg51000-regulator.[ch]
6154 F:      drivers/rtc/rtc-da90??.c
6155 F:      drivers/thermal/da90??-thermal.c
6156 F:      drivers/video/backlight/da90??_bl.c
6157 F:      drivers/watchdog/da90??_wdt.c
6158 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6159 F:      include/linux/mfd/da903x.h
6160 F:      include/linux/mfd/da9052/
6161 F:      include/linux/mfd/da9055/
6162 F:      include/linux/mfd/da9062/
6163 F:      include/linux/mfd/da9063/
6164 F:      include/linux/mfd/da9150/
6165 F:      include/linux/regulator/da9211.h
6166 F:      include/sound/da[79]*.h
6167 F:      sound/soc/codecs/da[79]*.[ch]
6168
6169 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6170 M:      William Breathitt Gray <william.gray@linaro.org>
6171 L:      linux-gpio@vger.kernel.org
6172 S:      Maintained
6173 F:      drivers/gpio/gpio-gpio-mm.c
6174
6175 DIOLAN U2C-12 I2C DRIVER
6176 M:      Guenter Roeck <linux@roeck-us.net>
6177 L:      linux-i2c@vger.kernel.org
6178 S:      Maintained
6179 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6180
6181 DIRECTORY NOTIFICATION (DNOTIFY)
6182 M:      Jan Kara <jack@suse.cz>
6183 R:      Amir Goldstein <amir73il@gmail.com>
6184 L:      linux-fsdevel@vger.kernel.org
6185 S:      Maintained
6186 F:      Documentation/filesystems/dnotify.rst
6187 F:      fs/notify/dnotify/
6188 F:      include/linux/dnotify.h
6189
6190 DISK GEOMETRY AND PARTITION HANDLING
6191 M:      Andries Brouwer <aeb@cwi.nl>
6192 S:      Maintained
6193 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6194 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6195 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6196
6197 DISKQUOTA
6198 M:      Jan Kara <jack@suse.com>
6199 S:      Maintained
6200 F:      Documentation/filesystems/quota.rst
6201 F:      fs/quota/
6202 F:      include/linux/quota*.h
6203 F:      include/uapi/linux/quota*.h
6204
6205 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6206 M:      Bernie Thompson <bernie@plugable.com>
6207 L:      linux-fbdev@vger.kernel.org
6208 S:      Maintained
6209 W:      http://plugable.com/category/projects/udlfb/
6210 F:      Documentation/fb/udlfb.rst
6211 F:      drivers/video/fbdev/udlfb.c
6212 F:      include/video/udlfb.h
6213
6214 DISTRIBUTED LOCK MANAGER (DLM)
6215 M:      Christine Caulfield <ccaulfie@redhat.com>
6216 M:      David Teigland <teigland@redhat.com>
6217 L:      cluster-devel@redhat.com
6218 S:      Supported
6219 W:      http://sources.redhat.com/cluster/
6220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6221 F:      fs/dlm/
6222
6223 DMA BUFFER SHARING FRAMEWORK
6224 M:      Sumit Semwal <sumit.semwal@linaro.org>
6225 M:      Christian König <christian.koenig@amd.com>
6226 L:      linux-media@vger.kernel.org
6227 L:      dri-devel@lists.freedesktop.org
6228 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6229 S:      Maintained
6230 T:      git git://anongit.freedesktop.org/drm/drm-misc
6231 F:      Documentation/driver-api/dma-buf.rst
6232 F:      drivers/dma-buf/
6233 F:      include/linux/*fence.h
6234 F:      include/linux/dma-buf.h
6235 F:      include/linux/dma-resv.h
6236 K:      \bdma_(?:buf|fence|resv)\b
6237
6238 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6239 M:      Vinod Koul <vkoul@kernel.org>
6240 L:      dmaengine@vger.kernel.org
6241 S:      Maintained
6242 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6244 F:      Documentation/devicetree/bindings/dma/
6245 F:      Documentation/driver-api/dmaengine/
6246 F:      drivers/dma/
6247 F:      include/dt-bindings/dma/
6248 F:      include/linux/dma/
6249 F:      include/linux/dmaengine.h
6250 F:      include/linux/of_dma.h
6251
6252 DMA MAPPING HELPERS
6253 M:      Christoph Hellwig <hch@lst.de>
6254 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6255 R:      Robin Murphy <robin.murphy@arm.com>
6256 L:      iommu@lists.linux.dev
6257 S:      Supported
6258 W:      http://git.infradead.org/users/hch/dma-mapping.git
6259 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6260 F:      include/asm-generic/dma-mapping.h
6261 F:      include/linux/dma-direct.h
6262 F:      include/linux/dma-mapping.h
6263 F:      include/linux/dma-map-ops.h
6264 F:      include/linux/swiotlb.h
6265 F:      kernel/dma/
6266
6267 DMA MAPPING BENCHMARK
6268 M:      Xiang Chen <chenxiang66@hisilicon.com>
6269 L:      iommu@lists.linux.dev
6270 F:      kernel/dma/map_benchmark.c
6271 F:      tools/testing/selftests/dma/
6272
6273 DMA-BUF HEAPS FRAMEWORK
6274 M:      Sumit Semwal <sumit.semwal@linaro.org>
6275 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6276 R:      Liam Mark <lmark@codeaurora.org>
6277 R:      Laura Abbott <labbott@redhat.com>
6278 R:      Brian Starkey <Brian.Starkey@arm.com>
6279 R:      John Stultz <jstultz@google.com>
6280 L:      linux-media@vger.kernel.org
6281 L:      dri-devel@lists.freedesktop.org
6282 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6283 S:      Maintained
6284 T:      git git://anongit.freedesktop.org/drm/drm-misc
6285 F:      drivers/dma-buf/dma-heap.c
6286 F:      drivers/dma-buf/heaps/*
6287 F:      include/linux/dma-heap.h
6288 F:      include/uapi/linux/dma-heap.h
6289
6290 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6291 M:      Lukasz Luba <lukasz.luba@arm.com>
6292 L:      linux-pm@vger.kernel.org
6293 L:      linux-samsung-soc@vger.kernel.org
6294 S:      Maintained
6295 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6296 F:      drivers/memory/samsung/exynos5422-dmc.c
6297
6298 DME1737 HARDWARE MONITOR DRIVER
6299 M:      Juerg Haefliger <juergh@proton.me>
6300 L:      linux-hwmon@vger.kernel.org
6301 S:      Maintained
6302 F:      Documentation/hwmon/dme1737.rst
6303 F:      drivers/hwmon/dme1737.c
6304
6305 DMI/SMBIOS SUPPORT
6306 M:      Jean Delvare <jdelvare@suse.com>
6307 S:      Maintained
6308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6309 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6310 F:      drivers/firmware/dmi-id.c
6311 F:      drivers/firmware/dmi_scan.c
6312 F:      include/linux/dmi.h
6313
6314 DOCUMENTATION
6315 M:      Jonathan Corbet <corbet@lwn.net>
6316 L:      linux-doc@vger.kernel.org
6317 S:      Maintained
6318 P:      Documentation/doc-guide/maintainer-profile.rst
6319 T:      git git://git.lwn.net/linux.git docs-next
6320 F:      Documentation/
6321 F:      scripts/documentation-file-ref-check
6322 F:      scripts/kernel-doc
6323 F:      scripts/sphinx-pre-install
6324 X:      Documentation/ABI/
6325 X:      Documentation/admin-guide/media/
6326 X:      Documentation/devicetree/
6327 X:      Documentation/driver-api/media/
6328 X:      Documentation/firmware-guide/acpi/
6329 X:      Documentation/i2c/
6330 X:      Documentation/power/
6331 X:      Documentation/spi/
6332 X:      Documentation/userspace-api/media/
6333
6334 DOCUMENTATION REPORTING ISSUES
6335 M:      Thorsten Leemhuis <linux@leemhuis.info>
6336 L:      linux-doc@vger.kernel.org
6337 S:      Maintained
6338 F:      Documentation/admin-guide/reporting-issues.rst
6339
6340 DOCUMENTATION SCRIPTS
6341 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6342 L:      linux-doc@vger.kernel.org
6343 S:      Maintained
6344 F:      Documentation/sphinx/parse-headers.pl
6345 F:      scripts/documentation-file-ref-check
6346 F:      scripts/sphinx-pre-install
6347
6348 DOCUMENTATION/ITALIAN
6349 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6350 L:      linux-doc@vger.kernel.org
6351 S:      Maintained
6352 F:      Documentation/translations/it_IT
6353
6354 DOCUMENTATION/JAPANESE
6355 R:      Akira Yokosawa <akiyks@gmail.com>
6356 L:      linux-doc@vger.kernel.org
6357 S:      Maintained
6358 F:      Documentation/translations/ja_JP
6359
6360 DONGWOON DW9714 LENS VOICE COIL DRIVER
6361 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6362 L:      linux-media@vger.kernel.org
6363 S:      Maintained
6364 T:      git git://linuxtv.org/media_tree.git
6365 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6366 F:      drivers/media/i2c/dw9714.c
6367
6368 DONGWOON DW9768 LENS VOICE COIL DRIVER
6369 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6370 L:      linux-media@vger.kernel.org
6371 S:      Maintained
6372 T:      git git://linuxtv.org/media_tree.git
6373 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6374 F:      drivers/media/i2c/dw9768.c
6375
6376 DONGWOON DW9807 LENS VOICE COIL DRIVER
6377 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6378 L:      linux-media@vger.kernel.org
6379 S:      Maintained
6380 T:      git git://linuxtv.org/media_tree.git
6381 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6382 F:      drivers/media/i2c/dw9807-vcm.c
6383
6384 DOUBLETALK DRIVER
6385 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6386 L:      blinux-list@redhat.com
6387 S:      Maintained
6388 F:      drivers/char/dtlk.c
6389 F:      include/linux/dtlk.h
6390
6391 DPAA2 DATAPATH I/O (DPIO) DRIVER
6392 M:      Roy Pledge <Roy.Pledge@nxp.com>
6393 L:      linux-kernel@vger.kernel.org
6394 S:      Maintained
6395 F:      drivers/soc/fsl/dpio
6396
6397 DPAA2 ETHERNET DRIVER
6398 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6399 L:      netdev@vger.kernel.org
6400 S:      Maintained
6401 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6402 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6403 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6404 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6405 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6406 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6407 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6408 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6409 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6410 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6411
6412 DPAA2 ETHERNET SWITCH DRIVER
6413 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6414 L:      netdev@vger.kernel.org
6415 S:      Maintained
6416 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6417 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6418 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6419
6420 DRBD DRIVER
6421 M:      Philipp Reisner <philipp.reisner@linbit.com>
6422 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6423 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6424 L:      drbd-dev@lists.linbit.com
6425 S:      Supported
6426 W:      http://www.drbd.org
6427 T:      git git://git.linbit.com/linux-drbd.git
6428 T:      git git://git.linbit.com/drbd-8.4.git
6429 F:      Documentation/admin-guide/blockdev/
6430 F:      drivers/block/drbd/
6431 F:      lib/lru_cache.c
6432
6433 DRIVER COMPONENT FRAMEWORK
6434 L:      dri-devel@lists.freedesktop.org
6435 F:      drivers/base/component.c
6436 F:      include/linux/component.h
6437
6438 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6439 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6440 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6441 S:      Supported
6442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6443 F:      Documentation/core-api/kobject.rst
6444 F:      drivers/base/
6445 F:      fs/debugfs/
6446 F:      fs/sysfs/
6447 F:      include/linux/debugfs.h
6448 F:      include/linux/kobj*
6449 F:      lib/kobj*
6450
6451 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6452 M:      Nishanth Menon <nm@ti.com>
6453 L:      linux-pm@vger.kernel.org
6454 S:      Maintained
6455 F:      drivers/soc/ti/smartreflex.c
6456 F:      include/linux/power/smartreflex.h
6457
6458 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6459 M:      Maxime Ripard <mripard@kernel.org>
6460 M:      Chen-Yu Tsai <wens@csie.org>
6461 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6462 L:      dri-devel@lists.freedesktop.org
6463 S:      Supported
6464 T:      git git://anongit.freedesktop.org/drm/drm-misc
6465 F:      drivers/gpu/drm/sun4i/sun8i*
6466
6467 DRM DRIVER FOR ARM PL111 CLCD
6468 M:      Emma Anholt <emma@anholt.net>
6469 S:      Supported
6470 T:      git git://anongit.freedesktop.org/drm/drm-misc
6471 F:      drivers/gpu/drm/pl111/
6472
6473 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6474 M:      Linus Walleij <linus.walleij@linaro.org>
6475 S:      Maintained
6476 T:      git git://anongit.freedesktop.org/drm/drm-misc
6477 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6478 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6479
6480 DRM DRIVER FOR ASPEED BMC GFX
6481 M:      Joel Stanley <joel@jms.id.au>
6482 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6483 S:      Supported
6484 T:      git git://anongit.freedesktop.org/drm/drm-misc
6485 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6486 F:      drivers/gpu/drm/aspeed/
6487
6488 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6489 M:      Dave Airlie <airlied@redhat.com>
6490 R:      Thomas Zimmermann <tzimmermann@suse.de>
6491 L:      dri-devel@lists.freedesktop.org
6492 S:      Supported
6493 T:      git git://anongit.freedesktop.org/drm/drm-misc
6494 F:      drivers/gpu/drm/ast/
6495
6496 DRM DRIVER FOR BOCHS VIRTUAL GPU
6497 M:      Gerd Hoffmann <kraxel@redhat.com>
6498 L:      virtualization@lists.linux-foundation.org
6499 S:      Maintained
6500 T:      git git://anongit.freedesktop.org/drm/drm-misc
6501 F:      drivers/gpu/drm/tiny/bochs.c
6502
6503 DRM DRIVER FOR BOE HIMAX8279D PANELS
6504 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6505 S:      Maintained
6506 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6507 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6508
6509 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6510 M:      Jagan Teki <jagan@amarulasolutions.com>
6511 S:      Maintained
6512 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6513 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6514
6515 DRM DRIVER FOR EBBG FT8719 PANEL
6516 M:      Joel Selvaraj <jo@jsfamily.in>
6517 S:      Maintained
6518 T:      git git://anongit.freedesktop.org/drm/drm-misc
6519 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6520 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6521
6522 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6523 M:      Linus Walleij <linus.walleij@linaro.org>
6524 S:      Maintained
6525 T:      git git://anongit.freedesktop.org/drm/drm-misc
6526 F:      drivers/gpu/drm/tve200/
6527
6528 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6529 M:      Icenowy Zheng <icenowy@aosc.io>
6530 S:      Maintained
6531 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6532 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6533
6534 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6535 M:      Jagan Teki <jagan@amarulasolutions.com>
6536 S:      Maintained
6537 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6538 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6539
6540 DRM DRIVER FOR GENERIC EDP PANELS
6541 R:      Douglas Anderson <dianders@chromium.org>
6542 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6543 F:      drivers/gpu/drm/panel/panel-edp.c
6544
6545 DRM DRIVER FOR GENERIC USB DISPLAY
6546 M:      Noralf Trønnes <noralf@tronnes.org>
6547 S:      Maintained
6548 W:      https://github.com/notro/gud/wiki
6549 T:      git git://anongit.freedesktop.org/drm/drm-misc
6550 F:      drivers/gpu/drm/gud/
6551 F:      include/drm/gud.h
6552
6553 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6554 M:      Hans de Goede <hdegoede@redhat.com>
6555 S:      Maintained
6556 T:      git git://anongit.freedesktop.org/drm/drm-misc
6557 F:      drivers/gpu/drm/tiny/gm12u320.c
6558
6559 DRM DRIVER FOR HX8357D PANELS
6560 M:      Emma Anholt <emma@anholt.net>
6561 S:      Maintained
6562 T:      git git://anongit.freedesktop.org/drm/drm-misc
6563 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6564 F:      drivers/gpu/drm/tiny/hx8357d.c
6565
6566 DRM DRIVER FOR ILITEK ILI9225 PANELS
6567 M:      David Lechner <david@lechnology.com>
6568 S:      Maintained
6569 T:      git git://anongit.freedesktop.org/drm/drm-misc
6570 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6571 F:      drivers/gpu/drm/tiny/ili9225.c
6572
6573 DRM DRIVER FOR ILITEK ILI9486 PANELS
6574 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6575 S:      Maintained
6576 T:      git git://anongit.freedesktop.org/drm/drm-misc
6577 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6578 F:      drivers/gpu/drm/tiny/ili9486.c
6579
6580 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6581 S:      Orphan / Obsolete
6582 F:      drivers/gpu/drm/i810/
6583 F:      include/uapi/drm/i810_drm.h
6584
6585 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6586 M:      Jagan Teki <jagan@edgeble.ai>
6587 S:      Maintained
6588 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6589 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6590
6591 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6592 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6593 S:      Supported
6594 T:      git git://anongit.freedesktop.org/drm/drm-misc
6595 F:      drivers/gpu/drm/logicvc/
6596
6597 DRM DRIVER FOR LVDS PANELS
6598 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6599 L:      dri-devel@lists.freedesktop.org
6600 T:      git git://anongit.freedesktop.org/drm/drm-misc
6601 S:      Maintained
6602 F:      drivers/gpu/drm/panel/panel-lvds.c
6603 F:      Documentation/devicetree/bindings/display/lvds.yaml
6604 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6605
6606 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6607 M:      Guido Günther <agx@sigxcpu.org>
6608 R:      Purism Kernel Team <kernel@puri.sm>
6609 S:      Maintained
6610 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6611 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6612
6613 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6614 S:      Orphan / Obsolete
6615 F:      drivers/gpu/drm/mga/
6616 F:      include/uapi/drm/mga_drm.h
6617
6618 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6619 M:      Dave Airlie <airlied@redhat.com>
6620 R:      Thomas Zimmermann <tzimmermann@suse.de>
6621 L:      dri-devel@lists.freedesktop.org
6622 S:      Supported
6623 T:      git git://anongit.freedesktop.org/drm/drm-misc
6624 F:      drivers/gpu/drm/mgag200/
6625
6626 DRM DRIVER FOR MI0283QT
6627 M:      Noralf Trønnes <noralf@tronnes.org>
6628 S:      Maintained
6629 T:      git git://anongit.freedesktop.org/drm/drm-misc
6630 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6631 F:      drivers/gpu/drm/tiny/mi0283qt.c
6632
6633 DRM DRIVER FOR MIPI DBI compatible panels
6634 M:      Noralf Trønnes <noralf@tronnes.org>
6635 S:      Maintained
6636 W:      https://github.com/notro/panel-mipi-dbi/wiki
6637 T:      git git://anongit.freedesktop.org/drm/drm-misc
6638 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6639 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6640
6641 DRM DRIVER FOR MSM ADRENO GPU
6642 M:      Rob Clark <robdclark@gmail.com>
6643 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6644 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6645 R:      Sean Paul <sean@poorly.run>
6646 L:      linux-arm-msm@vger.kernel.org
6647 L:      dri-devel@lists.freedesktop.org
6648 L:      freedreno@lists.freedesktop.org
6649 S:      Maintained
6650 T:      git https://gitlab.freedesktop.org/drm/msm.git
6651 F:      Documentation/devicetree/bindings/display/msm/
6652 F:      drivers/gpu/drm/msm/
6653 F:      include/uapi/drm/msm_drm.h
6654
6655 DRM DRIVER FOR NOVATEK NT35510 PANELS
6656 M:      Linus Walleij <linus.walleij@linaro.org>
6657 S:      Maintained
6658 T:      git git://anongit.freedesktop.org/drm/drm-misc
6659 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6660 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6661
6662 DRM DRIVER FOR NOVATEK NT35560 PANELS
6663 M:      Linus Walleij <linus.walleij@linaro.org>
6664 S:      Maintained
6665 T:      git git://anongit.freedesktop.org/drm/drm-misc
6666 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6667 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6668
6669 DRM DRIVER FOR NOVATEK NT36672A PANELS
6670 M:      Sumit Semwal <sumit.semwal@linaro.org>
6671 S:      Maintained
6672 T:      git git://anongit.freedesktop.org/drm/drm-misc
6673 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6674 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6675
6676 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6677 M:      Ben Skeggs <bskeggs@redhat.com>
6678 M:      Karol Herbst <kherbst@redhat.com>
6679 M:      Lyude Paul <lyude@redhat.com>
6680 L:      dri-devel@lists.freedesktop.org
6681 L:      nouveau@lists.freedesktop.org
6682 S:      Supported
6683 W:      https://nouveau.freedesktop.org/
6684 Q:      https://patchwork.freedesktop.org/project/nouveau/
6685 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6686 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6687 C:      irc://irc.oftc.net/nouveau
6688 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6689 F:      drivers/gpu/drm/nouveau/
6690 F:      include/uapi/drm/nouveau_drm.h
6691
6692 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6693 M:      Stefan Mavrodiev <stefan@olimex.com>
6694 S:      Maintained
6695 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6696 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6697
6698 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6699 R:      Douglas Anderson <dianders@chromium.org>
6700 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6701 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6702
6703 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6704 M:      Noralf Trønnes <noralf@tronnes.org>
6705 S:      Maintained
6706 T:      git git://anongit.freedesktop.org/drm/drm-misc
6707 F:      Documentation/devicetree/bindings/display/repaper.txt
6708 F:      drivers/gpu/drm/tiny/repaper.c
6709
6710 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6711 M:      Javier Martinez Canillas <javierm@redhat.com>
6712 S:      Maintained
6713 T:      git git://anongit.freedesktop.org/drm/drm-misc
6714 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6715 F:      drivers/gpu/drm/solomon/ssd130x*
6716
6717 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6718 M:      Dave Airlie <airlied@redhat.com>
6719 M:      Gerd Hoffmann <kraxel@redhat.com>
6720 L:      virtualization@lists.linux-foundation.org
6721 S:      Obsolete
6722 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6723 T:      git git://anongit.freedesktop.org/drm/drm-misc
6724 F:      drivers/gpu/drm/tiny/cirrus.c
6725
6726 DRM DRIVER FOR QXL VIRTUAL GPU
6727 M:      Dave Airlie <airlied@redhat.com>
6728 M:      Gerd Hoffmann <kraxel@redhat.com>
6729 L:      virtualization@lists.linux-foundation.org
6730 L:      spice-devel@lists.freedesktop.org
6731 S:      Maintained
6732 T:      git git://anongit.freedesktop.org/drm/drm-misc
6733 F:      drivers/gpu/drm/qxl/
6734 F:      include/uapi/drm/qxl_drm.h
6735
6736 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6737 S:      Orphan / Obsolete
6738 F:      drivers/gpu/drm/r128/
6739 F:      include/uapi/drm/r128_drm.h
6740
6741 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6742 M:      Robert Chiras <robert.chiras@nxp.com>
6743 S:      Maintained
6744 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6745 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6746
6747 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6748 M:      Linus Walleij <linus.walleij@linaro.org>
6749 S:      Maintained
6750 T:      git git://anongit.freedesktop.org/drm/drm-misc
6751 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6752 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6753
6754 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6755 M:      Markuss Broks <markuss.broks@gmail.com>
6756 S:      Maintained
6757 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6758 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6759
6760 DRM DRIVER FOR SITRONIX ST7703 PANELS
6761 M:      Guido Günther <agx@sigxcpu.org>
6762 R:      Purism Kernel Team <kernel@puri.sm>
6763 R:      Ondrej Jirman <megous@megous.com>
6764 S:      Maintained
6765 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6766 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6767
6768 DRM DRIVER FOR SAVAGE VIDEO CARDS
6769 S:      Orphan / Obsolete
6770 F:      drivers/gpu/drm/savage/
6771 F:      include/uapi/drm/savage_drm.h
6772
6773 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6774 M:      Thomas Zimmermann <tzimmermann@suse.de>
6775 M:      Javier Martinez Canillas <javierm@redhat.com>
6776 L:      dri-devel@lists.freedesktop.org
6777 S:      Maintained
6778 T:      git git://anongit.freedesktop.org/drm/drm-misc
6779 F:      drivers/gpu/drm/drm_aperture.c
6780 F:      drivers/gpu/drm/tiny/ofdrm.c
6781 F:      drivers/gpu/drm/tiny/simpledrm.c
6782 F:      drivers/video/aperture.c
6783 F:      drivers/video/nomodeset.c
6784 F:      include/drm/drm_aperture.h
6785 F:      include/linux/aperture.h
6786 F:      include/video/nomodeset.h
6787
6788 DRM DRIVER FOR SIS VIDEO CARDS
6789 S:      Orphan / Obsolete
6790 F:      drivers/gpu/drm/sis/
6791 F:      include/uapi/drm/sis_drm.h
6792
6793 DRM DRIVER FOR SITRONIX ST7586 PANELS
6794 M:      David Lechner <david@lechnology.com>
6795 S:      Maintained
6796 T:      git git://anongit.freedesktop.org/drm/drm-misc
6797 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6798 F:      drivers/gpu/drm/tiny/st7586.c
6799
6800 DRM DRIVER FOR SITRONIX ST7701 PANELS
6801 M:      Jagan Teki <jagan@amarulasolutions.com>
6802 S:      Maintained
6803 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6804 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6805
6806 DRM DRIVER FOR SITRONIX ST7735R PANELS
6807 M:      David Lechner <david@lechnology.com>
6808 S:      Maintained
6809 T:      git git://anongit.freedesktop.org/drm/drm-misc
6810 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6811 F:      drivers/gpu/drm/tiny/st7735r.c
6812
6813 DRM DRIVER FOR ST-ERICSSON MCDE
6814 M:      Linus Walleij <linus.walleij@linaro.org>
6815 S:      Maintained
6816 T:      git git://anongit.freedesktop.org/drm/drm-misc
6817 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6818 F:      drivers/gpu/drm/mcde/
6819
6820 DRM DRIVER FOR TDFX VIDEO CARDS
6821 S:      Orphan / Obsolete
6822 F:      drivers/gpu/drm/tdfx/
6823
6824 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6825 M:      Jagan Teki <jagan@amarulasolutions.com>
6826 S:      Maintained
6827 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6828 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6829
6830 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6831 R:      Douglas Anderson <dianders@chromium.org>
6832 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6833 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6834
6835 DRM DRIVER FOR TPO TPG110 PANELS
6836 M:      Linus Walleij <linus.walleij@linaro.org>
6837 S:      Maintained
6838 T:      git git://anongit.freedesktop.org/drm/drm-misc
6839 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6840 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6841
6842 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6843 M:      Dave Airlie <airlied@redhat.com>
6844 R:      Sean Paul <sean@poorly.run>
6845 R:      Thomas Zimmermann <tzimmermann@suse.de>
6846 L:      dri-devel@lists.freedesktop.org
6847 S:      Supported
6848 T:      git git://anongit.freedesktop.org/drm/drm-misc
6849 F:      drivers/gpu/drm/udl/
6850
6851 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6852 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6853 M:      Melissa Wen <melissa.srw@gmail.com>
6854 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6855 R:      Daniel Vetter <daniel@ffwll.ch>
6856 L:      dri-devel@lists.freedesktop.org
6857 S:      Maintained
6858 T:      git git://anongit.freedesktop.org/drm/drm-misc
6859 F:      Documentation/gpu/vkms.rst
6860 F:      drivers/gpu/drm/vkms/
6861
6862 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6863 M:      Hans de Goede <hdegoede@redhat.com>
6864 L:      dri-devel@lists.freedesktop.org
6865 S:      Maintained
6866 T:      git git://anongit.freedesktop.org/drm/drm-misc
6867 F:      drivers/gpu/drm/vboxvideo/
6868
6869 DRM DRIVER FOR VMWARE VIRTUAL GPU
6870 M:      Zack Rusin <zackr@vmware.com>
6871 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6872 L:      dri-devel@lists.freedesktop.org
6873 S:      Supported
6874 T:      git git://anongit.freedesktop.org/drm/drm-misc
6875 F:      drivers/gpu/drm/vmwgfx/
6876 F:      include/uapi/drm/vmwgfx_drm.h
6877
6878 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6879 M:      Linus Walleij <linus.walleij@linaro.org>
6880 S:      Maintained
6881 T:      git git://anongit.freedesktop.org/drm/drm-misc
6882 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6883 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6884
6885 DRM DRIVERS
6886 M:      David Airlie <airlied@gmail.com>
6887 M:      Daniel Vetter <daniel@ffwll.ch>
6888 L:      dri-devel@lists.freedesktop.org
6889 S:      Maintained
6890 B:      https://gitlab.freedesktop.org/drm
6891 C:      irc://irc.oftc.net/dri-devel
6892 T:      git git://anongit.freedesktop.org/drm/drm
6893 F:      Documentation/devicetree/bindings/display/
6894 F:      Documentation/devicetree/bindings/gpu/
6895 F:      Documentation/gpu/
6896 F:      drivers/gpu/
6897 F:      include/drm/
6898 F:      include/linux/vga*
6899 F:      include/uapi/drm/
6900
6901 DRM DRIVERS AND MISC GPU PATCHES
6902 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6903 M:      Maxime Ripard <mripard@kernel.org>
6904 M:      Thomas Zimmermann <tzimmermann@suse.de>
6905 S:      Maintained
6906 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6907 T:      git git://anongit.freedesktop.org/drm/drm-misc
6908 F:      Documentation/gpu/
6909 F:      drivers/gpu/drm/*
6910 F:      drivers/gpu/vga/
6911 F:      include/drm/drm*
6912 F:      include/linux/vga*
6913 F:      include/uapi/drm/drm*
6914
6915 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6916 M:      Oded Gabbay <ogabbay@kernel.org>
6917 L:      dri-devel@lists.freedesktop.org
6918 S:      Maintained
6919 C:      irc://irc.oftc.net/dri-devel
6920 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6921 F:      Documentation/accel/
6922 F:      drivers/accel/
6923
6924 DRM DRIVERS FOR ALLWINNER A10
6925 M:      Maxime Ripard <mripard@kernel.org>
6926 M:      Chen-Yu Tsai <wens@csie.org>
6927 L:      dri-devel@lists.freedesktop.org
6928 S:      Supported
6929 T:      git git://anongit.freedesktop.org/drm/drm-misc
6930 F:      Documentation/devicetree/bindings/display/allwinner*
6931 F:      drivers/gpu/drm/sun4i/
6932
6933 DRM DRIVERS FOR AMLOGIC SOCS
6934 M:      Neil Armstrong <neil.armstrong@linaro.org>
6935 L:      dri-devel@lists.freedesktop.org
6936 L:      linux-amlogic@lists.infradead.org
6937 S:      Supported
6938 W:      http://linux-meson.com/
6939 T:      git git://anongit.freedesktop.org/drm/drm-misc
6940 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6941 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6942 F:      Documentation/gpu/meson.rst
6943 F:      drivers/gpu/drm/meson/
6944
6945 DRM DRIVERS FOR ATMEL HLCDC
6946 M:      Sam Ravnborg <sam@ravnborg.org>
6947 M:      Boris Brezillon <bbrezillon@kernel.org>
6948 L:      dri-devel@lists.freedesktop.org
6949 S:      Supported
6950 T:      git git://anongit.freedesktop.org/drm/drm-misc
6951 F:      Documentation/devicetree/bindings/display/atmel/
6952 F:      drivers/gpu/drm/atmel-hlcdc/
6953
6954 DRM DRIVERS FOR BRIDGE CHIPS
6955 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6956 M:      Neil Armstrong <neil.armstrong@linaro.org>
6957 M:      Robert Foss <rfoss@kernel.org>
6958 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6959 R:      Jonas Karlman <jonas@kwiboo.se>
6960 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6961 S:      Maintained
6962 T:      git git://anongit.freedesktop.org/drm/drm-misc
6963 F:      Documentation/devicetree/bindings/display/bridge/
6964 F:      drivers/gpu/drm/bridge/
6965
6966 DRM DRIVERS FOR EXYNOS
6967 M:      Inki Dae <inki.dae@samsung.com>
6968 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6969 M:      Kyungmin Park <kyungmin.park@samsung.com>
6970 L:      dri-devel@lists.freedesktop.org
6971 S:      Supported
6972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6973 F:      Documentation/devicetree/bindings/display/exynos/
6974 F:      Documentation/devicetree/bindings/display/samsung/
6975 F:      drivers/gpu/drm/exynos/
6976 F:      include/uapi/drm/exynos_drm.h
6977
6978 DRM DRIVERS FOR FREESCALE DCU
6979 M:      Stefan Agner <stefan@agner.ch>
6980 M:      Alison Wang <alison.wang@nxp.com>
6981 L:      dri-devel@lists.freedesktop.org
6982 S:      Supported
6983 T:      git git://anongit.freedesktop.org/drm/drm-misc
6984 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6985 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6986 F:      drivers/gpu/drm/fsl-dcu/
6987
6988 DRM DRIVERS FOR FREESCALE IMX
6989 M:      Philipp Zabel <p.zabel@pengutronix.de>
6990 L:      dri-devel@lists.freedesktop.org
6991 S:      Maintained
6992 F:      Documentation/devicetree/bindings/display/imx/
6993 F:      drivers/gpu/drm/imx/
6994 F:      drivers/gpu/ipu-v3/
6995
6996 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6997 M:      Liu Ying <victor.liu@nxp.com>
6998 L:      dri-devel@lists.freedesktop.org
6999 S:      Maintained
7000 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
7001 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
7002 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
7003 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
7004 F:      drivers/gpu/drm/bridge/imx/
7005
7006 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
7007 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
7008 L:      dri-devel@lists.freedesktop.org
7009 S:      Maintained
7010 T:      git git://github.com/patjak/drm-gma500
7011 F:      drivers/gpu/drm/gma500/
7012
7013 DRM DRIVERS FOR HISILICON
7014 M:      Xinliang Liu <xinliang.liu@linaro.org>
7015 M:      Tian Tao  <tiantao6@hisilicon.com>
7016 R:      John Stultz <jstultz@google.com>
7017 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
7018 R:      Chen Feng <puck.chen@hisilicon.com>
7019 L:      dri-devel@lists.freedesktop.org
7020 S:      Maintained
7021 T:      git git://anongit.freedesktop.org/drm/drm-misc
7022 F:      Documentation/devicetree/bindings/display/hisilicon/
7023 F:      drivers/gpu/drm/hisilicon/
7024
7025 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
7026 M:      Deepak Rawat <drawat.floss@gmail.com>
7027 L:      linux-hyperv@vger.kernel.org
7028 L:      dri-devel@lists.freedesktop.org
7029 S:      Maintained
7030 T:      git git://anongit.freedesktop.org/drm/drm-misc
7031 F:      drivers/gpu/drm/hyperv
7032
7033 DRM DRIVERS FOR LIMA
7034 M:      Qiang Yu <yuq825@gmail.com>
7035 L:      dri-devel@lists.freedesktop.org
7036 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
7037 S:      Maintained
7038 T:      git git://anongit.freedesktop.org/drm/drm-misc
7039 F:      drivers/gpu/drm/lima/
7040 F:      include/uapi/drm/lima_drm.h
7041
7042 DRM DRIVERS FOR MEDIATEK
7043 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
7044 M:      Philipp Zabel <p.zabel@pengutronix.de>
7045 L:      dri-devel@lists.freedesktop.org
7046 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
7047 S:      Supported
7048 F:      Documentation/devicetree/bindings/display/mediatek/
7049 F:      drivers/gpu/drm/mediatek/
7050 F:      drivers/phy/mediatek/phy-mtk-dp.c
7051 F:      drivers/phy/mediatek/phy-mtk-hdmi*
7052 F:      drivers/phy/mediatek/phy-mtk-mipi*
7053
7054 DRM DRIVERS FOR NVIDIA TEGRA
7055 M:      Thierry Reding <thierry.reding@gmail.com>
7056 L:      dri-devel@lists.freedesktop.org
7057 L:      linux-tegra@vger.kernel.org
7058 S:      Supported
7059 T:      git git://anongit.freedesktop.org/tegra/linux.git
7060 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
7061 F:      Documentation/devicetree/bindings/gpu/host1x/
7062 F:      drivers/gpu/drm/tegra/
7063 F:      drivers/gpu/host1x/
7064 F:      include/linux/host1x.h
7065 F:      include/uapi/drm/tegra_drm.h
7066
7067 DRM DRIVERS FOR RENESAS
7068 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7069 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
7070 L:      dri-devel@lists.freedesktop.org
7071 L:      linux-renesas-soc@vger.kernel.org
7072 S:      Supported
7073 T:      git git://linuxtv.org/pinchartl/media drm/du/next
7074 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
7075 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
7076 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
7077 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
7078 F:      drivers/gpu/drm/rcar-du/
7079 F:      drivers/gpu/drm/shmobile/
7080 F:      include/linux/platform_data/shmob_drm.h
7081
7082 DRM DRIVERS FOR ROCKCHIP
7083 M:      Sandy Huang <hjc@rock-chips.com>
7084 M:      Heiko Stübner <heiko@sntech.de>
7085 L:      dri-devel@lists.freedesktop.org
7086 S:      Maintained
7087 T:      git git://anongit.freedesktop.org/drm/drm-misc
7088 F:      Documentation/devicetree/bindings/display/rockchip/
7089 F:      drivers/gpu/drm/rockchip/
7090
7091 DRM DRIVERS FOR STI
7092 M:      Alain Volmat <alain.volmat@foss.st.com>
7093 L:      dri-devel@lists.freedesktop.org
7094 S:      Maintained
7095 T:      git git://anongit.freedesktop.org/drm/drm-misc
7096 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
7097 F:      drivers/gpu/drm/sti
7098
7099 DRM DRIVERS FOR STM
7100 M:      Yannick Fertre <yannick.fertre@foss.st.com>
7101 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
7102 M:      Philippe Cornu <philippe.cornu@foss.st.com>
7103 L:      dri-devel@lists.freedesktop.org
7104 S:      Maintained
7105 T:      git git://anongit.freedesktop.org/drm/drm-misc
7106 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
7107 F:      drivers/gpu/drm/stm
7108
7109 DRM DRIVERS FOR TI KEYSTONE
7110 M:      Jyri Sarha <jyri.sarha@iki.fi>
7111 M:      Tomi Valkeinen <tomba@kernel.org>
7112 L:      dri-devel@lists.freedesktop.org
7113 S:      Maintained
7114 T:      git git://anongit.freedesktop.org/drm/drm-misc
7115 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
7116 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
7117 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
7118 F:      drivers/gpu/drm/tidss/
7119
7120 DRM DRIVERS FOR TI LCDC
7121 M:      Jyri Sarha <jyri.sarha@iki.fi>
7122 R:      Tomi Valkeinen <tomba@kernel.org>
7123 L:      dri-devel@lists.freedesktop.org
7124 S:      Maintained
7125 F:      Documentation/devicetree/bindings/display/tilcdc/
7126 F:      drivers/gpu/drm/tilcdc/
7127
7128 DRM DRIVERS FOR TI OMAP
7129 M:      Tomi Valkeinen <tomba@kernel.org>
7130 L:      dri-devel@lists.freedesktop.org
7131 S:      Maintained
7132 F:      Documentation/devicetree/bindings/display/ti/
7133 F:      drivers/gpu/drm/omapdrm/
7134
7135 DRM DRIVERS FOR V3D
7136 M:      Emma Anholt <emma@anholt.net>
7137 M:      Melissa Wen <mwen@igalia.com>
7138 S:      Supported
7139 T:      git git://anongit.freedesktop.org/drm/drm-misc
7140 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
7141 F:      drivers/gpu/drm/v3d/
7142 F:      include/uapi/drm/v3d_drm.h
7143
7144 DRM DRIVERS FOR VC4
7145 M:      Emma Anholt <emma@anholt.net>
7146 M:      Maxime Ripard <mripard@kernel.org>
7147 S:      Supported
7148 T:      git git://github.com/anholt/linux
7149 T:      git git://anongit.freedesktop.org/drm/drm-misc
7150 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7151 F:      drivers/gpu/drm/vc4/
7152 F:      include/uapi/drm/vc4_drm.h
7153
7154 DRM DRIVERS FOR VIVANTE GPU IP
7155 M:      Lucas Stach <l.stach@pengutronix.de>
7156 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7157 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7158 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7159 L:      dri-devel@lists.freedesktop.org
7160 S:      Maintained
7161 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7162 F:      drivers/gpu/drm/etnaviv/
7163 F:      include/uapi/drm/etnaviv_drm.h
7164
7165 DRM DRIVERS FOR XEN
7166 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7167 L:      dri-devel@lists.freedesktop.org
7168 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7169 S:      Supported
7170 T:      git git://anongit.freedesktop.org/drm/drm-misc
7171 F:      Documentation/gpu/xen-front.rst
7172 F:      drivers/gpu/drm/xen/
7173
7174 DRM DRIVERS FOR XILINX
7175 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7176 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7177 L:      dri-devel@lists.freedesktop.org
7178 S:      Maintained
7179 T:      git git://anongit.freedesktop.org/drm/drm-misc
7180 F:      Documentation/devicetree/bindings/display/xlnx/
7181 F:      drivers/gpu/drm/xlnx/
7182
7183 DRM PANEL DRIVERS
7184 M:      Thierry Reding <thierry.reding@gmail.com>
7185 R:      Sam Ravnborg <sam@ravnborg.org>
7186 L:      dri-devel@lists.freedesktop.org
7187 S:      Maintained
7188 T:      git git://anongit.freedesktop.org/drm/drm-misc
7189 F:      Documentation/devicetree/bindings/display/panel/
7190 F:      drivers/gpu/drm/drm_panel.c
7191 F:      drivers/gpu/drm/panel/
7192 F:      include/drm/drm_panel.h
7193
7194 DRM PRIVACY-SCREEN CLASS
7195 M:      Hans de Goede <hdegoede@redhat.com>
7196 L:      dri-devel@lists.freedesktop.org
7197 S:      Maintained
7198 T:      git git://anongit.freedesktop.org/drm/drm-misc
7199 F:      drivers/gpu/drm/drm_privacy_screen*
7200 F:      include/drm/drm_privacy_screen*
7201
7202 DRM TTM SUBSYSTEM
7203 M:      Christian Koenig <christian.koenig@amd.com>
7204 M:      Huang Rui <ray.huang@amd.com>
7205 L:      dri-devel@lists.freedesktop.org
7206 S:      Maintained
7207 T:      git git://anongit.freedesktop.org/drm/drm-misc
7208 F:      drivers/gpu/drm/ttm/
7209 F:      include/drm/ttm/
7210
7211 DRM GPU SCHEDULER
7212 M:      Luben Tuikov <luben.tuikov@amd.com>
7213 L:      dri-devel@lists.freedesktop.org
7214 S:      Maintained
7215 T:      git git://anongit.freedesktop.org/drm/drm-misc
7216 F:      drivers/gpu/drm/scheduler/
7217 F:      include/drm/gpu_scheduler.h
7218
7219 DSBR100 USB FM RADIO DRIVER
7220 M:      Alexey Klimov <klimov.linux@gmail.com>
7221 L:      linux-media@vger.kernel.org
7222 S:      Maintained
7223 T:      git git://linuxtv.org/media_tree.git
7224 F:      drivers/media/radio/dsbr100.c
7225
7226 DT3155 MEDIA DRIVER
7227 M:      Hans Verkuil <hverkuil@xs4all.nl>
7228 L:      linux-media@vger.kernel.org
7229 S:      Odd Fixes
7230 W:      https://linuxtv.org
7231 T:      git git://linuxtv.org/media_tree.git
7232 F:      drivers/media/pci/dt3155/
7233
7234 DVB_USB_AF9015 MEDIA DRIVER
7235 M:      Antti Palosaari <crope@iki.fi>
7236 L:      linux-media@vger.kernel.org
7237 S:      Maintained
7238 W:      https://linuxtv.org
7239 W:      http://palosaari.fi/linux/
7240 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7241 T:      git git://linuxtv.org/anttip/media_tree.git
7242 F:      drivers/media/usb/dvb-usb-v2/af9015*
7243
7244 DVB_USB_AF9035 MEDIA DRIVER
7245 M:      Antti Palosaari <crope@iki.fi>
7246 L:      linux-media@vger.kernel.org
7247 S:      Maintained
7248 W:      https://linuxtv.org
7249 W:      http://palosaari.fi/linux/
7250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7251 T:      git git://linuxtv.org/anttip/media_tree.git
7252 F:      drivers/media/usb/dvb-usb-v2/af9035*
7253
7254 DVB_USB_ANYSEE MEDIA DRIVER
7255 M:      Antti Palosaari <crope@iki.fi>
7256 L:      linux-media@vger.kernel.org
7257 S:      Maintained
7258 W:      https://linuxtv.org
7259 W:      http://palosaari.fi/linux/
7260 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7261 T:      git git://linuxtv.org/anttip/media_tree.git
7262 F:      drivers/media/usb/dvb-usb-v2/anysee*
7263
7264 DVB_USB_AU6610 MEDIA DRIVER
7265 M:      Antti Palosaari <crope@iki.fi>
7266 L:      linux-media@vger.kernel.org
7267 S:      Maintained
7268 W:      https://linuxtv.org
7269 W:      http://palosaari.fi/linux/
7270 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7271 T:      git git://linuxtv.org/anttip/media_tree.git
7272 F:      drivers/media/usb/dvb-usb-v2/au6610*
7273
7274 DVB_USB_CE6230 MEDIA DRIVER
7275 M:      Antti Palosaari <crope@iki.fi>
7276 L:      linux-media@vger.kernel.org
7277 S:      Maintained
7278 W:      https://linuxtv.org
7279 W:      http://palosaari.fi/linux/
7280 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7281 T:      git git://linuxtv.org/anttip/media_tree.git
7282 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7283
7284 DVB_USB_CXUSB MEDIA DRIVER
7285 M:      Michael Krufky <mkrufky@linuxtv.org>
7286 L:      linux-media@vger.kernel.org
7287 S:      Maintained
7288 W:      https://linuxtv.org
7289 W:      http://github.com/mkrufky
7290 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7291 T:      git git://linuxtv.org/media_tree.git
7292 F:      drivers/media/usb/dvb-usb/cxusb*
7293
7294 DVB_USB_EC168 MEDIA DRIVER
7295 M:      Antti Palosaari <crope@iki.fi>
7296 L:      linux-media@vger.kernel.org
7297 S:      Maintained
7298 W:      https://linuxtv.org
7299 W:      http://palosaari.fi/linux/
7300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7301 T:      git git://linuxtv.org/anttip/media_tree.git
7302 F:      drivers/media/usb/dvb-usb-v2/ec168*
7303
7304 DVB_USB_GL861 MEDIA DRIVER
7305 M:      Antti Palosaari <crope@iki.fi>
7306 L:      linux-media@vger.kernel.org
7307 S:      Maintained
7308 W:      https://linuxtv.org
7309 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7310 T:      git git://linuxtv.org/anttip/media_tree.git
7311 F:      drivers/media/usb/dvb-usb-v2/gl861*
7312
7313 DVB_USB_MXL111SF MEDIA DRIVER
7314 M:      Michael Krufky <mkrufky@linuxtv.org>
7315 L:      linux-media@vger.kernel.org
7316 S:      Maintained
7317 W:      https://linuxtv.org
7318 W:      http://github.com/mkrufky
7319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7320 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7321 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7322
7323 DVB_USB_RTL28XXU MEDIA DRIVER
7324 M:      Antti Palosaari <crope@iki.fi>
7325 L:      linux-media@vger.kernel.org
7326 S:      Maintained
7327 W:      https://linuxtv.org
7328 W:      http://palosaari.fi/linux/
7329 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7330 T:      git git://linuxtv.org/anttip/media_tree.git
7331 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7332
7333 DVB_USB_V2 MEDIA DRIVER
7334 M:      Antti Palosaari <crope@iki.fi>
7335 L:      linux-media@vger.kernel.org
7336 S:      Maintained
7337 W:      https://linuxtv.org
7338 W:      http://palosaari.fi/linux/
7339 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7340 T:      git git://linuxtv.org/anttip/media_tree.git
7341 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7342 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7343
7344 DYNAMIC DEBUG
7345 M:      Jason Baron <jbaron@akamai.com>
7346 S:      Maintained
7347 F:      include/linux/dynamic_debug.h
7348 F:      lib/dynamic_debug.c
7349 M:      Jim Cromie <jim.cromie@gmail.com>
7350 F:      lib/test_dynamic_debug.c
7351
7352 DYNAMIC INTERRUPT MODERATION
7353 M:      Tal Gilboa <talgi@nvidia.com>
7354 S:      Maintained
7355 F:      Documentation/networking/net_dim.rst
7356 F:      include/linux/dim.h
7357 F:      lib/dim/
7358
7359 DZ DECSTATION DZ11 SERIAL DRIVER
7360 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7361 S:      Maintained
7362 F:      drivers/tty/serial/dz.*
7363
7364 E3X0 POWER BUTTON DRIVER
7365 M:      Moritz Fischer <moritz.fischer@ettus.com>
7366 L:      usrp-users@lists.ettus.com
7367 S:      Supported
7368 W:      http://www.ettus.com
7369 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7370 F:      drivers/input/misc/e3x0-button.c
7371
7372 E4000 MEDIA DRIVER
7373 M:      Antti Palosaari <crope@iki.fi>
7374 L:      linux-media@vger.kernel.org
7375 S:      Maintained
7376 W:      https://linuxtv.org
7377 W:      http://palosaari.fi/linux/
7378 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7379 T:      git git://linuxtv.org/anttip/media_tree.git
7380 F:      drivers/media/tuners/e4000*
7381
7382 EARTH_PT1 MEDIA DRIVER
7383 M:      Akihiro Tsukada <tskd08@gmail.com>
7384 L:      linux-media@vger.kernel.org
7385 S:      Odd Fixes
7386 F:      drivers/media/pci/pt1/
7387
7388 EARTH_PT3 MEDIA DRIVER
7389 M:      Akihiro Tsukada <tskd08@gmail.com>
7390 L:      linux-media@vger.kernel.org
7391 S:      Odd Fixes
7392 F:      drivers/media/pci/pt3/
7393
7394 EC100 MEDIA DRIVER
7395 M:      Antti Palosaari <crope@iki.fi>
7396 L:      linux-media@vger.kernel.org
7397 S:      Maintained
7398 W:      https://linuxtv.org
7399 W:      http://palosaari.fi/linux/
7400 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7401 T:      git git://linuxtv.org/anttip/media_tree.git
7402 F:      drivers/media/dvb-frontends/ec100*
7403
7404 ECRYPT FILE SYSTEM
7405 M:      Tyler Hicks <code@tyhicks.com>
7406 L:      ecryptfs@vger.kernel.org
7407 S:      Odd Fixes
7408 W:      http://ecryptfs.org
7409 W:      https://launchpad.net/ecryptfs
7410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7411 F:      Documentation/filesystems/ecryptfs.rst
7412 F:      fs/ecryptfs/
7413
7414 EDAC-AMD64
7415 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7416 L:      linux-edac@vger.kernel.org
7417 S:      Supported
7418 F:      drivers/edac/amd64_edac*
7419 F:      drivers/edac/mce_amd*
7420
7421 EDAC-ARMADA
7422 M:      Jan Luebbe <jlu@pengutronix.de>
7423 L:      linux-edac@vger.kernel.org
7424 S:      Maintained
7425 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7426 F:      drivers/edac/armada_xp_*
7427
7428 EDAC-AST2500
7429 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7430 S:      Supported
7431 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7432 F:      drivers/edac/aspeed_edac.c
7433
7434 EDAC-BLUEFIELD
7435 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7436 S:      Supported
7437 F:      drivers/edac/bluefield_edac.c
7438
7439 EDAC-CALXEDA
7440 M:      Andre Przywara <andre.przywara@arm.com>
7441 L:      linux-edac@vger.kernel.org
7442 S:      Maintained
7443 F:      drivers/edac/highbank*
7444
7445 EDAC-CAVIUM OCTEON
7446 M:      Ralf Baechle <ralf@linux-mips.org>
7447 L:      linux-edac@vger.kernel.org
7448 L:      linux-mips@vger.kernel.org
7449 S:      Supported
7450 F:      drivers/edac/octeon_edac*
7451
7452 EDAC-CAVIUM THUNDERX
7453 M:      Robert Richter <rric@kernel.org>
7454 L:      linux-edac@vger.kernel.org
7455 S:      Odd Fixes
7456 F:      drivers/edac/thunderx_edac*
7457
7458 EDAC-CORE
7459 M:      Borislav Petkov <bp@alien8.de>
7460 M:      Tony Luck <tony.luck@intel.com>
7461 R:      James Morse <james.morse@arm.com>
7462 R:      Mauro Carvalho Chehab <mchehab@kernel.org>
7463 R:      Robert Richter <rric@kernel.org>
7464 L:      linux-edac@vger.kernel.org
7465 S:      Supported
7466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7467 F:      Documentation/admin-guide/ras.rst
7468 F:      Documentation/driver-api/edac.rst
7469 F:      drivers/edac/
7470 F:      include/linux/edac.h
7471
7472 EDAC-DMC520
7473 M:      Lei Wang <lewan@microsoft.com>
7474 L:      linux-edac@vger.kernel.org
7475 S:      Supported
7476 F:      drivers/edac/dmc520_edac.c
7477
7478 EDAC-E752X
7479 M:      Mark Gross <markgross@kernel.org>
7480 L:      linux-edac@vger.kernel.org
7481 S:      Maintained
7482 F:      drivers/edac/e752x_edac.c
7483
7484 EDAC-E7XXX
7485 L:      linux-edac@vger.kernel.org
7486 S:      Maintained
7487 F:      drivers/edac/e7xxx_edac.c
7488
7489 EDAC-FSL_DDR
7490 M:      York Sun <york.sun@nxp.com>
7491 L:      linux-edac@vger.kernel.org
7492 S:      Maintained
7493 F:      drivers/edac/fsl_ddr_edac.*
7494
7495 EDAC-GHES
7496 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7497 L:      linux-edac@vger.kernel.org
7498 S:      Maintained
7499 F:      drivers/edac/ghes_edac.c
7500
7501 EDAC-I10NM
7502 M:      Tony Luck <tony.luck@intel.com>
7503 L:      linux-edac@vger.kernel.org
7504 S:      Maintained
7505 F:      drivers/edac/i10nm_base.c
7506
7507 EDAC-I3000
7508 L:      linux-edac@vger.kernel.org
7509 S:      Orphan
7510 F:      drivers/edac/i3000_edac.c
7511
7512 EDAC-I5000
7513 L:      linux-edac@vger.kernel.org
7514 S:      Maintained
7515 F:      drivers/edac/i5000_edac.c
7516
7517 EDAC-I5400
7518 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7519 L:      linux-edac@vger.kernel.org
7520 S:      Maintained
7521 F:      drivers/edac/i5400_edac.c
7522
7523 EDAC-I7300
7524 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7525 L:      linux-edac@vger.kernel.org
7526 S:      Maintained
7527 F:      drivers/edac/i7300_edac.c
7528
7529 EDAC-I7CORE
7530 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7531 L:      linux-edac@vger.kernel.org
7532 S:      Maintained
7533 F:      drivers/edac/i7core_edac.c
7534
7535 EDAC-I82443BXGX
7536 M:      Tim Small <tim@buttersideup.com>
7537 L:      linux-edac@vger.kernel.org
7538 S:      Maintained
7539 F:      drivers/edac/i82443bxgx_edac.c
7540
7541 EDAC-I82975X
7542 M:      "Arvind R." <arvino55@gmail.com>
7543 L:      linux-edac@vger.kernel.org
7544 S:      Maintained
7545 F:      drivers/edac/i82975x_edac.c
7546
7547 EDAC-IE31200
7548 M:      Jason Baron <jbaron@akamai.com>
7549 L:      linux-edac@vger.kernel.org
7550 S:      Maintained
7551 F:      drivers/edac/ie31200_edac.c
7552
7553 EDAC-IGEN6
7554 M:      Tony Luck <tony.luck@intel.com>
7555 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7556 L:      linux-edac@vger.kernel.org
7557 S:      Maintained
7558 F:      drivers/edac/igen6_edac.c
7559
7560 EDAC-MPC85XX
7561 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7562 L:      linux-edac@vger.kernel.org
7563 S:      Maintained
7564 F:      drivers/edac/mpc85xx_edac.[ch]
7565
7566 EDAC-PASEMI
7567 M:      Egor Martovetsky <egor@pasemi.com>
7568 L:      linux-edac@vger.kernel.org
7569 S:      Maintained
7570 F:      drivers/edac/pasemi_edac.c
7571
7572 EDAC-PND2
7573 M:      Tony Luck <tony.luck@intel.com>
7574 L:      linux-edac@vger.kernel.org
7575 S:      Maintained
7576 F:      drivers/edac/pnd2_edac.[ch]
7577
7578 EDAC-QCOM
7579 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7580 L:      linux-arm-msm@vger.kernel.org
7581 L:      linux-edac@vger.kernel.org
7582 S:      Maintained
7583 F:      drivers/edac/qcom_edac.c
7584
7585 EDAC-R82600
7586 M:      Tim Small <tim@buttersideup.com>
7587 L:      linux-edac@vger.kernel.org
7588 S:      Maintained
7589 F:      drivers/edac/r82600_edac.c
7590
7591 EDAC-SBRIDGE
7592 M:      Tony Luck <tony.luck@intel.com>
7593 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7594 L:      linux-edac@vger.kernel.org
7595 S:      Maintained
7596 F:      drivers/edac/sb_edac.c
7597
7598 EDAC-SKYLAKE
7599 M:      Tony Luck <tony.luck@intel.com>
7600 L:      linux-edac@vger.kernel.org
7601 S:      Maintained
7602 F:      drivers/edac/skx_*.[ch]
7603
7604 EDAC-TI
7605 M:      Tero Kristo <kristo@kernel.org>
7606 L:      linux-edac@vger.kernel.org
7607 S:      Odd Fixes
7608 F:      drivers/edac/ti_edac.c
7609
7610 EDIROL UA-101/UA-1000 DRIVER
7611 M:      Clemens Ladisch <clemens@ladisch.de>
7612 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7613 S:      Maintained
7614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7615 F:      sound/usb/misc/ua101.c
7616
7617 EFI TEST DRIVER
7618 M:      Ivan Hu <ivan.hu@canonical.com>
7619 M:      Ard Biesheuvel <ardb@kernel.org>
7620 L:      linux-efi@vger.kernel.org
7621 S:      Maintained
7622 F:      drivers/firmware/efi/test/
7623
7624 EFI VARIABLE FILESYSTEM
7625 M:      Jeremy Kerr <jk@ozlabs.org>
7626 M:      Ard Biesheuvel <ardb@kernel.org>
7627 L:      linux-efi@vger.kernel.org
7628 S:      Maintained
7629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7630 F:      fs/efivarfs/
7631
7632 EFIFB FRAMEBUFFER DRIVER
7633 M:      Peter Jones <pjones@redhat.com>
7634 L:      linux-fbdev@vger.kernel.org
7635 S:      Maintained
7636 F:      drivers/video/fbdev/efifb.c
7637
7638 EFS FILESYSTEM
7639 S:      Orphan
7640 W:      http://aeschi.ch.eu.org/efs/
7641 F:      fs/efs/
7642
7643 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7644 M:      Douglas Miller <dougmill@linux.ibm.com>
7645 L:      netdev@vger.kernel.org
7646 S:      Maintained
7647 F:      drivers/net/ethernet/ibm/ehea/
7648
7649 ELM327 CAN NETWORK DRIVER
7650 M:      Max Staudt <max@enpas.org>
7651 L:      linux-can@vger.kernel.org
7652 S:      Maintained
7653 F:      Documentation/networking/device_drivers/can/can327.rst
7654 F:      drivers/net/can/can327.c
7655
7656 EM28XX VIDEO4LINUX DRIVER
7657 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7658 L:      linux-media@vger.kernel.org
7659 S:      Maintained
7660 W:      https://linuxtv.org
7661 T:      git git://linuxtv.org/media_tree.git
7662 F:      Documentation/admin-guide/media/em28xx*
7663 F:      drivers/media/usb/em28xx/
7664
7665 EMBEDDED LINUX
7666 M:      Olivia Mackall <olivia@selenic.com>
7667 M:      David Woodhouse <dwmw2@infradead.org>
7668 L:      linux-embedded@vger.kernel.org
7669 S:      Maintained
7670
7671 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7672 M:      Adrian Hunter <adrian.hunter@intel.com>
7673 M:      Ritesh Harjani <riteshh@codeaurora.org>
7674 M:      Asutosh Das <asutoshd@codeaurora.org>
7675 L:      linux-mmc@vger.kernel.org
7676 S:      Supported
7677 F:      drivers/mmc/host/cqhci*
7678
7679 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7680 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7681 L:      linux-scsi@vger.kernel.org
7682 S:      Supported
7683 W:      http://www.broadcom.com
7684 F:      drivers/scsi/be2iscsi/
7685
7686 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7687 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7688 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7689 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7690 L:      netdev@vger.kernel.org
7691 S:      Supported
7692 W:      http://www.emulex.com
7693 F:      drivers/net/ethernet/emulex/benet/
7694
7695 EMULEX ONECONNECT ROCE DRIVER
7696 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7697 L:      linux-rdma@vger.kernel.org
7698 S:      Odd Fixes
7699 W:      http://www.broadcom.com
7700 F:      drivers/infiniband/hw/ocrdma/
7701 F:      include/uapi/rdma/ocrdma-abi.h
7702
7703 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7704 M:      James Smart <james.smart@broadcom.com>
7705 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7706 L:      linux-scsi@vger.kernel.org
7707 S:      Supported
7708 W:      http://www.broadcom.com
7709 F:      drivers/scsi/lpfc/
7710
7711 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7712 M:      James Smart <james.smart@broadcom.com>
7713 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7714 L:      linux-scsi@vger.kernel.org
7715 L:      target-devel@vger.kernel.org
7716 S:      Supported
7717 W:      http://www.broadcom.com
7718 F:      drivers/scsi/elx/
7719
7720 ENE CB710 FLASH CARD READER DRIVER
7721 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7722 S:      Maintained
7723 F:      drivers/misc/cb710/
7724 F:      drivers/mmc/host/cb710-mmc.*
7725 F:      include/linux/cb710.h
7726
7727 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7728 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7729 S:      Maintained
7730 F:      drivers/media/rc/ene_ir.*
7731
7732 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7733 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7734 L:      linuxppc-dev@lists.ozlabs.org
7735 S:      Maintained
7736 F:      drivers/tty/ehv_bytechan.c
7737
7738 EPSON S1D13XXX FRAMEBUFFER DRIVER
7739 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7740 S:      Maintained
7741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7742 F:      drivers/video/fbdev/s1d13xxxfb.c
7743 F:      include/video/s1d13xxxfb.h
7744
7745 EROFS FILE SYSTEM
7746 M:      Gao Xiang <xiang@kernel.org>
7747 M:      Chao Yu <chao@kernel.org>
7748 R:      Yue Hu <huyue2@coolpad.com>
7749 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7750 L:      linux-erofs@lists.ozlabs.org
7751 S:      Maintained
7752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7753 F:      Documentation/filesystems/erofs.rst
7754 F:      fs/erofs/
7755 F:      include/trace/events/erofs.h
7756
7757 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7758 M:      Jeff Layton <jlayton@kernel.org>
7759 S:      Maintained
7760 F:      include/linux/errseq.h
7761 F:      lib/errseq.c
7762
7763 ESD CAN/USB DRIVERS
7764 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7765 R:      socketcan@esd.eu
7766 L:      linux-can@vger.kernel.org
7767 S:      Maintained
7768 F:      drivers/net/can/usb/esd_usb.c
7769
7770 ET131X NETWORK DRIVER
7771 M:      Mark Einon <mark.einon@gmail.com>
7772 S:      Odd Fixes
7773 F:      drivers/net/ethernet/agere/
7774
7775 ETAS ES58X CAN/USB DRIVER
7776 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7777 L:      linux-can@vger.kernel.org
7778 S:      Maintained
7779 F:      Documentation/networking/devlink/etas_es58x.rst
7780 F:      drivers/net/can/usb/etas_es58x/
7781
7782 ETHERNET BRIDGE
7783 M:      Roopa Prabhu <roopa@nvidia.com>
7784 M:      Nikolay Aleksandrov <razor@blackwall.org>
7785 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7786 L:      netdev@vger.kernel.org
7787 S:      Maintained
7788 W:      http://www.linuxfoundation.org/en/Net:Bridge
7789 F:      include/linux/netfilter_bridge/
7790 F:      net/bridge/
7791
7792 ETHERNET PHY LIBRARY
7793 M:      Andrew Lunn <andrew@lunn.ch>
7794 M:      Heiner Kallweit <hkallweit1@gmail.com>
7795 R:      Russell King <linux@armlinux.org.uk>
7796 L:      netdev@vger.kernel.org
7797 S:      Maintained
7798 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7799 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7800 F:      Documentation/devicetree/bindings/net/mdio*
7801 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7802 F:      Documentation/networking/phy.rst
7803 F:      drivers/net/mdio/
7804 F:      drivers/net/mdio/acpi_mdio.c
7805 F:      drivers/net/mdio/fwnode_mdio.c
7806 F:      drivers/net/mdio/of_mdio.c
7807 F:      drivers/net/pcs/
7808 F:      drivers/net/phy/
7809 F:      include/dt-bindings/net/qca-ar803x.h
7810 F:      include/linux/linkmode.h
7811 F:      include/linux/*mdio*.h
7812 F:      include/linux/mdio/*.h
7813 F:      include/linux/mii.h
7814 F:      include/linux/of_net.h
7815 F:      include/linux/phy.h
7816 F:      include/linux/phy_fixed.h
7817 F:      include/linux/platform_data/mdio-bcm-unimac.h
7818 F:      include/linux/platform_data/mdio-gpio.h
7819 F:      include/trace/events/mdio.h
7820 F:      include/uapi/linux/mdio.h
7821 F:      include/uapi/linux/mii.h
7822 F:      net/core/of_net.c
7823
7824 EXEC & BINFMT API
7825 R:      Eric Biederman <ebiederm@xmission.com>
7826 R:      Kees Cook <keescook@chromium.org>
7827 L:      linux-mm@kvack.org
7828 S:      Supported
7829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7830 F:      fs/*binfmt_*.c
7831 F:      fs/exec.c
7832 F:      include/linux/binfmts.h
7833 F:      include/linux/elf.h
7834 F:      include/uapi/linux/binfmts.h
7835 F:      include/uapi/linux/elf.h
7836 F:      tools/testing/selftests/exec/
7837 N:      asm/elf.h
7838 N:      binfmt
7839
7840 EXFAT FILE SYSTEM
7841 M:      Namjae Jeon <linkinjeon@kernel.org>
7842 M:      Sungjong Seo <sj1557.seo@samsung.com>
7843 L:      linux-fsdevel@vger.kernel.org
7844 S:      Maintained
7845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7846 F:      fs/exfat/
7847
7848 EXT2 FILE SYSTEM
7849 M:      Jan Kara <jack@suse.com>
7850 L:      linux-ext4@vger.kernel.org
7851 S:      Maintained
7852 F:      Documentation/filesystems/ext2.rst
7853 F:      fs/ext2/
7854 F:      include/linux/ext2*
7855
7856 EXT4 FILE SYSTEM
7857 M:      "Theodore Ts'o" <tytso@mit.edu>
7858 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7859 L:      linux-ext4@vger.kernel.org
7860 S:      Maintained
7861 W:      http://ext4.wiki.kernel.org
7862 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7864 F:      Documentation/filesystems/ext4/
7865 F:      fs/ext4/
7866 F:      include/trace/events/ext4.h
7867
7868 Extended Verification Module (EVM)
7869 M:      Mimi Zohar <zohar@linux.ibm.com>
7870 L:      linux-integrity@vger.kernel.org
7871 S:      Supported
7872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7873 F:      security/integrity/evm/
7874 F:      security/integrity/
7875
7876 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7877 M:      Ard Biesheuvel <ardb@kernel.org>
7878 L:      linux-efi@vger.kernel.org
7879 S:      Maintained
7880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7881 F:      Documentation/admin-guide/efi-stub.rst
7882 F:      arch/*/include/asm/efi.h
7883 F:      arch/*/kernel/efi.c
7884 F:      arch/arm/boot/compressed/efi-header.S
7885 F:      arch/x86/platform/efi/
7886 F:      drivers/firmware/efi/
7887 F:      include/linux/efi*.h
7888
7889 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7890 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7891 M:      Chanwoo Choi <cw00.choi@samsung.com>
7892 L:      linux-kernel@vger.kernel.org
7893 S:      Maintained
7894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7895 F:      Documentation/devicetree/bindings/extcon/
7896 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7897 F:      drivers/extcon/
7898 F:      include/linux/extcon.h
7899 F:      include/linux/extcon/
7900
7901 EXTRA BOOT CONFIG
7902 M:      Masami Hiramatsu <mhiramat@kernel.org>
7903 L:      linux-kernel@vger.kernel.org
7904 L:      linux-trace-kernel@vger.kernel.org
7905 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7906 S:      Maintained
7907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7908 F:      Documentation/admin-guide/bootconfig.rst
7909 F:      fs/proc/bootconfig.c
7910 F:      include/linux/bootconfig.h
7911 F:      lib/bootconfig-data.S
7912 F:      lib/bootconfig.c
7913 F:      tools/bootconfig/*
7914 F:      tools/bootconfig/scripts/*
7915
7916 EXYNOS DP DRIVER
7917 M:      Jingoo Han <jingoohan1@gmail.com>
7918 L:      dri-devel@lists.freedesktop.org
7919 S:      Maintained
7920 F:      drivers/gpu/drm/exynos/exynos_dp*
7921
7922 EXYNOS SYSMMU (IOMMU) driver
7923 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7924 L:      iommu@lists.linux.dev
7925 S:      Maintained
7926 F:      drivers/iommu/exynos-iommu.c
7927
7928 F2FS FILE SYSTEM
7929 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7930 M:      Chao Yu <chao@kernel.org>
7931 L:      linux-f2fs-devel@lists.sourceforge.net
7932 S:      Maintained
7933 W:      https://f2fs.wiki.kernel.org/
7934 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7936 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7937 F:      Documentation/filesystems/f2fs.rst
7938 F:      fs/f2fs/
7939 F:      include/linux/f2fs_fs.h
7940 F:      include/trace/events/f2fs.h
7941 F:      include/uapi/linux/f2fs.h
7942
7943 F71805F HARDWARE MONITORING DRIVER
7944 M:      Jean Delvare <jdelvare@suse.com>
7945 L:      linux-hwmon@vger.kernel.org
7946 S:      Maintained
7947 F:      Documentation/hwmon/f71805f.rst
7948 F:      drivers/hwmon/f71805f.c
7949
7950 FADDR2LINE
7951 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7952 S:      Maintained
7953 F:      scripts/faddr2line
7954
7955 FAILOVER MODULE
7956 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7957 L:      netdev@vger.kernel.org
7958 S:      Supported
7959 F:      Documentation/networking/failover.rst
7960 F:      include/net/failover.h
7961 F:      net/core/failover.c
7962
7963 FANOTIFY
7964 M:      Jan Kara <jack@suse.cz>
7965 R:      Amir Goldstein <amir73il@gmail.com>
7966 R:      Matthew Bobrowski <repnop@google.com>
7967 L:      linux-fsdevel@vger.kernel.org
7968 S:      Maintained
7969 F:      fs/notify/fanotify/
7970 F:      include/linux/fanotify.h
7971 F:      include/uapi/linux/fanotify.h
7972
7973 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7974 M:      Linus Walleij <linus.walleij@linaro.org>
7975 L:      linux-usb@vger.kernel.org
7976 S:      Maintained
7977 F:      drivers/usb/fotg210/
7978
7979 FARSYNC SYNCHRONOUS DRIVER
7980 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7981 S:      Supported
7982 W:      http://www.farsite.co.uk/
7983 F:      drivers/net/wan/farsync.*
7984
7985 FAULT INJECTION SUPPORT
7986 M:      Akinobu Mita <akinobu.mita@gmail.com>
7987 S:      Supported
7988 F:      Documentation/fault-injection/
7989 F:      lib/fault-inject.c
7990
7991 FBTFT Framebuffer drivers
7992 L:      dri-devel@lists.freedesktop.org
7993 L:      linux-fbdev@vger.kernel.org
7994 S:      Orphan
7995 F:      drivers/staging/fbtft/
7996
7997 FC0011 TUNER DRIVER
7998 M:      Michael Buesch <m@bues.ch>
7999 L:      linux-media@vger.kernel.org
8000 S:      Maintained
8001 F:      drivers/media/tuners/fc0011.c
8002 F:      drivers/media/tuners/fc0011.h
8003
8004 FC2580 MEDIA DRIVER
8005 M:      Antti Palosaari <crope@iki.fi>
8006 L:      linux-media@vger.kernel.org
8007 S:      Maintained
8008 W:      https://linuxtv.org
8009 W:      http://palosaari.fi/linux/
8010 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8011 T:      git git://linuxtv.org/anttip/media_tree.git
8012 F:      drivers/media/tuners/fc2580*
8013
8014 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
8015 M:      Hannes Reinecke <hare@suse.de>
8016 L:      linux-scsi@vger.kernel.org
8017 S:      Supported
8018 W:      www.Open-FCoE.org
8019 F:      drivers/scsi/fcoe/
8020 F:      drivers/scsi/libfc/
8021 F:      include/scsi/fc/
8022 F:      include/scsi/libfc.h
8023 F:      include/scsi/libfcoe.h
8024 F:      include/uapi/scsi/fc/
8025
8026 FILE LOCKING (flock() and fcntl()/lockf())
8027 M:      Jeff Layton <jlayton@kernel.org>
8028 M:      Chuck Lever <chuck.lever@oracle.com>
8029 L:      linux-fsdevel@vger.kernel.org
8030 S:      Maintained
8031 F:      fs/fcntl.c
8032 F:      fs/locks.c
8033 F:      include/linux/fcntl.h
8034 F:      include/uapi/linux/fcntl.h
8035
8036 FILESYSTEM DIRECT ACCESS (DAX)
8037 M:      Dan Williams <dan.j.williams@intel.com>
8038 R:      Matthew Wilcox <willy@infradead.org>
8039 R:      Jan Kara <jack@suse.cz>
8040 L:      linux-fsdevel@vger.kernel.org
8041 L:      nvdimm@lists.linux.dev
8042 S:      Supported
8043 F:      fs/dax.c
8044 F:      include/linux/dax.h
8045 F:      include/trace/events/fs_dax.h
8046
8047 FILESYSTEMS (VFS and infrastructure)
8048 M:      Alexander Viro <viro@zeniv.linux.org.uk>
8049 L:      linux-fsdevel@vger.kernel.org
8050 S:      Maintained
8051 F:      fs/*
8052 F:      include/linux/fs.h
8053 F:      include/linux/fs_types.h
8054 F:      include/uapi/linux/fs.h
8055 F:      include/uapi/linux/openat2.h
8056
8057 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8058 M:      Riku Voipio <riku.voipio@iki.fi>
8059 L:      linux-hwmon@vger.kernel.org
8060 S:      Maintained
8061 F:      drivers/hwmon/f75375s.c
8062 F:      include/linux/f75375s.h
8063
8064 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
8065 M:      Clemens Ladisch <clemens@ladisch.de>
8066 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
8067 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8068 S:      Maintained
8069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8070 F:      include/uapi/sound/firewire.h
8071 F:      sound/firewire/
8072
8073 FIREWIRE MEDIA DRIVERS (firedtv)
8074 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
8075 L:      linux-media@vger.kernel.org
8076 L:      linux1394-devel@lists.sourceforge.net
8077 S:      Maintained
8078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
8079 F:      drivers/media/firewire/
8080
8081 FIREWIRE SBP-2 TARGET
8082 M:      Chris Boot <bootc@bootc.net>
8083 L:      linux-scsi@vger.kernel.org
8084 L:      target-devel@vger.kernel.org
8085 L:      linux1394-devel@lists.sourceforge.net
8086 S:      Maintained
8087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
8088 F:      drivers/target/sbp/
8089
8090 FIREWIRE SUBSYSTEM
8091 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
8092 L:      linux1394-devel@lists.sourceforge.net
8093 S:      Maintained
8094 W:      http://ieee1394.wiki.kernel.org/
8095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
8096 F:      drivers/firewire/
8097 F:      include/linux/firewire.h
8098 F:      include/uapi/linux/firewire*.h
8099 F:      tools/firewire/
8100
8101 FIRMWARE FRAMEWORK FOR ARMV8-A
8102 M:      Sudeep Holla <sudeep.holla@arm.com>
8103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8104 S:      Maintained
8105 F:      drivers/firmware/arm_ffa/
8106 F:      include/linux/arm_ffa.h
8107
8108 FIRMWARE LOADER (request_firmware)
8109 M:      Luis Chamberlain <mcgrof@kernel.org>
8110 M:      Russ Weight <russell.h.weight@intel.com>
8111 L:      linux-kernel@vger.kernel.org
8112 S:      Maintained
8113 F:      Documentation/firmware_class/
8114 F:      drivers/base/firmware_loader/
8115 F:      include/linux/firmware.h
8116
8117 FLEXTIMER FTM-QUADDEC DRIVER
8118 M:      Patrick Havelange <patrick.havelange@essensium.com>
8119 L:      linux-iio@vger.kernel.org
8120 S:      Maintained
8121 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
8122 F:      drivers/counter/ftm-quaddec.c
8123
8124 FLOPPY DRIVER
8125 M:      Denis Efremov <efremov@linux.com>
8126 L:      linux-block@vger.kernel.org
8127 S:      Odd Fixes
8128 F:      drivers/block/floppy.c
8129
8130 FLYSKY FSIA6B RC RECEIVER
8131 M:      Markus Koch <markus@notsyncing.net>
8132 L:      linux-input@vger.kernel.org
8133 S:      Maintained
8134 F:      drivers/input/joystick/fsia6b.c
8135
8136 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
8137 M:      Geoffrey D. Bennett <g@b4.vu>
8138 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8139 S:      Maintained
8140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8141 F:      sound/usb/mixer_scarlett_gen2.c
8142
8143 FORCEDETH GIGABIT ETHERNET DRIVER
8144 M:      Rain River <rain.1986.08.12@gmail.com>
8145 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
8146 L:      netdev@vger.kernel.org
8147 S:      Maintained
8148 F:      drivers/net/ethernet/nvidia/*
8149
8150 FORTIFY_SOURCE
8151 M:      Kees Cook <keescook@chromium.org>
8152 L:      linux-hardening@vger.kernel.org
8153 S:      Supported
8154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8155 F:      include/linux/fortify-string.h
8156 F:      lib/fortify_kunit.c
8157 F:      lib/memcpy_kunit.c
8158 F:      lib/strscpy_kunit.c
8159 F:      lib/test_fortify/*
8160 F:      scripts/test_fortify.sh
8161 K:      \b__NO_FORTIFY\b
8162
8163 FPGA DFL DRIVERS
8164 M:      Wu Hao <hao.wu@intel.com>
8165 R:      Tom Rix <trix@redhat.com>
8166 L:      linux-fpga@vger.kernel.org
8167 S:      Maintained
8168 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8169 F:      Documentation/fpga/dfl.rst
8170 F:      drivers/fpga/dfl*
8171 F:      drivers/uio/uio_dfl.c
8172 F:      include/linux/dfl.h
8173 F:      include/uapi/linux/fpga-dfl.h
8174
8175 FPGA MANAGER FRAMEWORK
8176 M:      Moritz Fischer <mdf@kernel.org>
8177 M:      Wu Hao <hao.wu@intel.com>
8178 M:      Xu Yilun <yilun.xu@intel.com>
8179 R:      Tom Rix <trix@redhat.com>
8180 L:      linux-fpga@vger.kernel.org
8181 S:      Maintained
8182 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8184 F:      Documentation/devicetree/bindings/fpga/
8185 F:      Documentation/driver-api/fpga/
8186 F:      Documentation/fpga/
8187 F:      drivers/fpga/
8188 F:      include/linux/fpga/
8189
8190 INTEL MAX10 BMC SECURE UPDATES
8191 M:      Russ Weight <russell.h.weight@intel.com>
8192 L:      linux-fpga@vger.kernel.org
8193 S:      Maintained
8194 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8195 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8196
8197 MICROCHIP POLARFIRE FPGA DRIVERS
8198 M:      Conor Dooley <conor.dooley@microchip.com>
8199 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8200 L:      linux-fpga@vger.kernel.org
8201 S:      Supported
8202 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8203 F:      drivers/fpga/microchip-spi.c
8204
8205 FPU EMULATOR
8206 M:      Bill Metzenthen <billm@melbpc.org.au>
8207 S:      Maintained
8208 W:      http://floatingpoint.sourceforge.net/emulator/index.html
8209 F:      arch/x86/math-emu/
8210
8211 FRAMEBUFFER CORE
8212 M:      Daniel Vetter <daniel@ffwll.ch>
8213 F:      drivers/video/fbdev/core/
8214 S:      Odd Fixes
8215 T:      git git://anongit.freedesktop.org/drm/drm-misc
8216
8217 FRAMEBUFFER LAYER
8218 M:      Helge Deller <deller@gmx.de>
8219 L:      linux-fbdev@vger.kernel.org
8220 L:      dri-devel@lists.freedesktop.org
8221 S:      Maintained
8222 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8224 F:      Documentation/fb/
8225 F:      drivers/video/
8226 F:      include/linux/fb.h
8227 F:      include/uapi/linux/fb.h
8228 F:      include/uapi/video/
8229 F:      include/video/
8230
8231 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8232 M:      Horia Geantă <horia.geanta@nxp.com>
8233 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8234 M:      Gaurav Jain <gaurav.jain@nxp.com>
8235 L:      linux-crypto@vger.kernel.org
8236 S:      Maintained
8237 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8238 F:      drivers/crypto/caam/
8239
8240 FREESCALE COLDFIRE M5441X MMC DRIVER
8241 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8242 L:      linux-mmc@vger.kernel.org
8243 S:      Maintained
8244 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8245 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8246
8247 FREESCALE DIU FRAMEBUFFER DRIVER
8248 M:      Timur Tabi <timur@kernel.org>
8249 L:      linux-fbdev@vger.kernel.org
8250 S:      Maintained
8251 F:      drivers/video/fbdev/fsl-diu-fb.*
8252
8253 FREESCALE DMA DRIVER
8254 M:      Li Yang <leoyang.li@nxp.com>
8255 M:      Zhang Wei <zw@zh-kernel.org>
8256 L:      linuxppc-dev@lists.ozlabs.org
8257 S:      Maintained
8258 F:      drivers/dma/fsldma.*
8259
8260 FREESCALE DSPI DRIVER
8261 M:      Vladimir Oltean <olteanv@gmail.com>
8262 L:      linux-spi@vger.kernel.org
8263 S:      Maintained
8264 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8265 F:      drivers/spi/spi-fsl-dspi.c
8266 F:      include/linux/spi/spi-fsl-dspi.h
8267
8268 FREESCALE ENETC ETHERNET DRIVERS
8269 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8270 L:      netdev@vger.kernel.org
8271 S:      Maintained
8272 F:      drivers/net/ethernet/freescale/enetc/
8273
8274 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8275 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8276 L:      netdev@vger.kernel.org
8277 S:      Maintained
8278 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8279 F:      drivers/net/ethernet/freescale/gianfar*
8280
8281 FREESCALE GPMI NAND DRIVER
8282 M:      Han Xu <han.xu@nxp.com>
8283 L:      linux-mtd@lists.infradead.org
8284 S:      Maintained
8285 F:      drivers/mtd/nand/raw/gpmi-nand/*
8286
8287 FREESCALE I2C CPM DRIVER
8288 M:      Jochen Friedrich <jochen@scram.de>
8289 L:      linuxppc-dev@lists.ozlabs.org
8290 L:      linux-i2c@vger.kernel.org
8291 S:      Maintained
8292 F:      drivers/i2c/busses/i2c-cpm.c
8293
8294 FREESCALE IMX / MXC FEC DRIVER
8295 M:      Wei Fang <wei.fang@nxp.com>
8296 R:      Shenwei Wang <shenwei.wang@nxp.com>
8297 R:      Clark Wang <xiaoning.wang@nxp.com>
8298 R:      NXP Linux Team <linux-imx@nxp.com>
8299 L:      netdev@vger.kernel.org
8300 S:      Maintained
8301 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8302 F:      drivers/net/ethernet/freescale/fec.h
8303 F:      drivers/net/ethernet/freescale/fec_main.c
8304 F:      drivers/net/ethernet/freescale/fec_ptp.c
8305
8306 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8307 M:      Sascha Hauer <s.hauer@pengutronix.de>
8308 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8309 L:      linux-fbdev@vger.kernel.org
8310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8311 S:      Maintained
8312 F:      drivers/video/fbdev/imxfb.c
8313
8314 FREESCALE IMX DDR PMU DRIVER
8315 M:      Frank Li <Frank.li@nxp.com>
8316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8317 S:      Maintained
8318 F:      Documentation/admin-guide/perf/imx-ddr.rst
8319 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8320 F:      drivers/perf/fsl_imx8_ddr_perf.c
8321
8322 FREESCALE IMX I2C DRIVER
8323 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8324 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8325 L:      linux-i2c@vger.kernel.org
8326 S:      Maintained
8327 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8328 F:      drivers/i2c/busses/i2c-imx.c
8329
8330 FREESCALE IMX LPI2C DRIVER
8331 M:      Dong Aisheng <aisheng.dong@nxp.com>
8332 L:      linux-i2c@vger.kernel.org
8333 L:      linux-imx@nxp.com
8334 S:      Maintained
8335 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8336 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8337
8338 FREESCALE MPC I2C DRIVER
8339 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8340 L:      linux-i2c@vger.kernel.org
8341 S:      Maintained
8342 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8343 F:      drivers/i2c/busses/i2c-mpc.c
8344
8345 FREESCALE QORIQ DPAA ETHERNET DRIVER
8346 M:      Madalin Bucur <madalin.bucur@nxp.com>
8347 L:      netdev@vger.kernel.org
8348 S:      Maintained
8349 F:      drivers/net/ethernet/freescale/dpaa
8350
8351 FREESCALE QORIQ DPAA FMAN DRIVER
8352 M:      Madalin Bucur <madalin.bucur@nxp.com>
8353 L:      netdev@vger.kernel.org
8354 S:      Maintained
8355 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8356 F:      drivers/net/ethernet/freescale/fman
8357
8358 FREESCALE QORIQ PTP CLOCK DRIVER
8359 M:      Yangbo Lu <yangbo.lu@nxp.com>
8360 L:      netdev@vger.kernel.org
8361 S:      Maintained
8362 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8363 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8364 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8365 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8366 F:      drivers/ptp/ptp_qoriq.c
8367 F:      drivers/ptp/ptp_qoriq_debugfs.c
8368 F:      include/linux/fsl/ptp_qoriq.h
8369
8370 FREESCALE QUAD SPI DRIVER
8371 M:      Han Xu <han.xu@nxp.com>
8372 L:      linux-spi@vger.kernel.org
8373 S:      Maintained
8374 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8375 F:      drivers/spi/spi-fsl-qspi.c
8376
8377 FREESCALE QUICC ENGINE LIBRARY
8378 M:      Qiang Zhao <qiang.zhao@nxp.com>
8379 L:      linuxppc-dev@lists.ozlabs.org
8380 S:      Maintained
8381 F:      drivers/soc/fsl/qe/
8382 F:      include/soc/fsl/qe/
8383
8384 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8385 M:      Li Yang <leoyang.li@nxp.com>
8386 L:      netdev@vger.kernel.org
8387 L:      linuxppc-dev@lists.ozlabs.org
8388 S:      Maintained
8389 F:      drivers/net/ethernet/freescale/ucc_geth*
8390
8391 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8392 M:      Zhao Qiang <qiang.zhao@nxp.com>
8393 L:      netdev@vger.kernel.org
8394 L:      linuxppc-dev@lists.ozlabs.org
8395 S:      Maintained
8396 F:      drivers/net/wan/fsl_ucc_hdlc*
8397
8398 FREESCALE QUICC ENGINE UCC UART DRIVER
8399 M:      Timur Tabi <timur@kernel.org>
8400 L:      linuxppc-dev@lists.ozlabs.org
8401 S:      Maintained
8402 F:      drivers/tty/serial/ucc_uart.c
8403
8404 FREESCALE SOC DRIVERS
8405 M:      Li Yang <leoyang.li@nxp.com>
8406 L:      linuxppc-dev@lists.ozlabs.org
8407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8408 S:      Maintained
8409 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8410 F:      Documentation/devicetree/bindings/soc/fsl/
8411 F:      drivers/soc/fsl/
8412 F:      include/linux/fsl/
8413 F:      include/soc/fsl/
8414
8415 FREESCALE SOC FS_ENET DRIVER
8416 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8417 L:      linuxppc-dev@lists.ozlabs.org
8418 L:      netdev@vger.kernel.org
8419 S:      Maintained
8420 F:      drivers/net/ethernet/freescale/fs_enet/
8421 F:      include/linux/fs_enet_pd.h
8422
8423 FREESCALE SOC SOUND DRIVERS
8424 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8425 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8426 R:      Fabio Estevam <festevam@gmail.com>
8427 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8428 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8429 L:      linuxppc-dev@lists.ozlabs.org
8430 S:      Maintained
8431 F:      sound/soc/fsl/fsl*
8432 F:      sound/soc/fsl/imx*
8433 F:      sound/soc/fsl/mpc8610_hpcd.c
8434
8435 FREESCALE USB PERIPHERAL DRIVERS
8436 M:      Li Yang <leoyang.li@nxp.com>
8437 L:      linux-usb@vger.kernel.org
8438 L:      linuxppc-dev@lists.ozlabs.org
8439 S:      Maintained
8440 F:      drivers/usb/gadget/udc/fsl*
8441
8442 FREESCALE USB PHY DRIVER
8443 M:      Ran Wang <ran.wang_1@nxp.com>
8444 L:      linux-usb@vger.kernel.org
8445 L:      linuxppc-dev@lists.ozlabs.org
8446 S:      Maintained
8447 F:      drivers/usb/phy/phy-fsl-usb*
8448
8449 FREEVXFS FILESYSTEM
8450 M:      Christoph Hellwig <hch@infradead.org>
8451 S:      Maintained
8452 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8453 F:      fs/freevxfs/
8454
8455 FREEZER
8456 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8457 M:      Pavel Machek <pavel@ucw.cz>
8458 L:      linux-pm@vger.kernel.org
8459 S:      Supported
8460 F:      Documentation/power/freezing-of-tasks.rst
8461 F:      include/linux/freezer.h
8462 F:      kernel/freezer.c
8463
8464 FRONTSWAP API
8465 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8466 L:      linux-kernel@vger.kernel.org
8467 S:      Maintained
8468 F:      include/linux/frontswap.h
8469 F:      mm/frontswap.c
8470
8471 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8472 M:      David Howells <dhowells@redhat.com>
8473 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8474 S:      Supported
8475 F:      Documentation/filesystems/caching/
8476 F:      fs/fscache/
8477 F:      include/linux/fscache*.h
8478
8479 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8480 M:      Eric Biggers <ebiggers@kernel.org>
8481 M:      Theodore Y. Ts'o <tytso@mit.edu>
8482 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8483 L:      linux-fscrypt@vger.kernel.org
8484 S:      Supported
8485 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8486 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8487 F:      Documentation/filesystems/fscrypt.rst
8488 F:      fs/crypto/
8489 F:      include/linux/fscrypt.h
8490 F:      include/uapi/linux/fscrypt.h
8491
8492 FSI SUBSYSTEM
8493 M:      Jeremy Kerr <jk@ozlabs.org>
8494 M:      Joel Stanley <joel@jms.id.au>
8495 R:      Alistar Popple <alistair@popple.id.au>
8496 R:      Eddie James <eajames@linux.ibm.com>
8497 L:      linux-fsi@lists.ozlabs.org
8498 S:      Supported
8499 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8501 F:      drivers/fsi/
8502 F:      include/linux/fsi*.h
8503 F:      include/trace/events/fsi*.h
8504
8505 FSI-ATTACHED I2C DRIVER
8506 M:      Eddie James <eajames@linux.ibm.com>
8507 L:      linux-i2c@vger.kernel.org
8508 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8509 S:      Maintained
8510 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8511 F:      drivers/i2c/busses/i2c-fsi.c
8512
8513 FSI-ATTACHED SPI DRIVER
8514 M:      Eddie James <eajames@linux.ibm.com>
8515 L:      linux-spi@vger.kernel.org
8516 S:      Maintained
8517 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8518 F:      drivers/spi/spi-fsi.c
8519
8520 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8521 M:      Jan Kara <jack@suse.cz>
8522 R:      Amir Goldstein <amir73il@gmail.com>
8523 L:      linux-fsdevel@vger.kernel.org
8524 S:      Maintained
8525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8526 F:      fs/notify/
8527 F:      include/linux/fsnotify*.h
8528
8529 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8530 M:      Eric Biggers <ebiggers@kernel.org>
8531 M:      Theodore Y. Ts'o <tytso@mit.edu>
8532 L:      fsverity@lists.linux.dev
8533 S:      Supported
8534 Q:      https://patchwork.kernel.org/project/fsverity/list/
8535 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8536 F:      Documentation/filesystems/fsverity.rst
8537 F:      fs/verity/
8538 F:      include/linux/fsverity.h
8539 F:      include/uapi/linux/fsverity.h
8540
8541 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8542 M:      Michael Zaidman <michael.zaidman@gmail.com>
8543 L:      linux-i2c@vger.kernel.org
8544 L:      linux-input@vger.kernel.org
8545 S:      Maintained
8546 F:      drivers/hid/hid-ft260.c
8547
8548 FUJITSU LAPTOP EXTRAS
8549 M:      Jonathan Woithe <jwoithe@just42.net>
8550 L:      platform-driver-x86@vger.kernel.org
8551 S:      Maintained
8552 F:      drivers/platform/x86/fujitsu-laptop.c
8553
8554 FUJITSU M-5MO LS CAMERA ISP DRIVER
8555 M:      Kyungmin Park <kyungmin.park@samsung.com>
8556 M:      Heungjun Kim <riverful.kim@samsung.com>
8557 L:      linux-media@vger.kernel.org
8558 S:      Maintained
8559 F:      drivers/media/i2c/m5mols/
8560 F:      include/media/i2c/m5mols.h
8561
8562 FUJITSU TABLET EXTRAS
8563 M:      Robert Gerlach <khnz@gmx.de>
8564 L:      platform-driver-x86@vger.kernel.org
8565 S:      Maintained
8566 F:      drivers/platform/x86/fujitsu-tablet.c
8567
8568 FUNCTION HOOKS (FTRACE)
8569 M:      Steven Rostedt <rostedt@goodmis.org>
8570 M:      Masami Hiramatsu <mhiramat@kernel.org>
8571 R:      Mark Rutland <mark.rutland@arm.com>
8572 L:      linux-kernel@vger.kernel.org
8573 L:      linux-trace-kernel@vger.kernel.org
8574 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8575 S:      Maintained
8576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8577 F:      Documentation/trace/ftrace*
8578 F:      kernel/trace/ftrace*
8579 F:      kernel/trace/fgraph.c
8580 F:      arch/*/*/*/*ftrace*
8581 F:      arch/*/*/*ftrace*
8582 F:      include/*/ftrace.h
8583 F:      samples/ftrace
8584
8585 FUNGIBLE ETHERNET DRIVERS
8586 M:      Dimitris Michailidis <dmichail@fungible.com>
8587 L:      netdev@vger.kernel.org
8588 S:      Supported
8589 F:      drivers/net/ethernet/fungible/
8590
8591 FUSE: FILESYSTEM IN USERSPACE
8592 M:      Miklos Szeredi <miklos@szeredi.hu>
8593 L:      linux-fsdevel@vger.kernel.org
8594 S:      Maintained
8595 W:      https://github.com/libfuse/
8596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8597 F:      Documentation/filesystems/fuse.rst
8598 F:      fs/fuse/
8599 F:      include/uapi/linux/fuse.h
8600
8601 FUTEX SUBSYSTEM
8602 M:      Thomas Gleixner <tglx@linutronix.de>
8603 M:      Ingo Molnar <mingo@redhat.com>
8604 R:      Peter Zijlstra <peterz@infradead.org>
8605 R:      Darren Hart <dvhart@infradead.org>
8606 R:      Davidlohr Bueso <dave@stgolabs.net>
8607 R:      André Almeida <andrealmeid@igalia.com>
8608 L:      linux-kernel@vger.kernel.org
8609 S:      Maintained
8610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8611 F:      Documentation/locking/*futex*
8612 F:      include/asm-generic/futex.h
8613 F:      include/linux/futex.h
8614 F:      include/uapi/linux/futex.h
8615 F:      kernel/futex/*
8616 F:      tools/perf/bench/futex*
8617 F:      tools/testing/selftests/futex/
8618
8619 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8620 M:      Tim Harvey <tharvey@gateworks.com>
8621 S:      Maintained
8622 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8623 F:      drivers/mfd/gateworks-gsc.c
8624 F:      include/linux/mfd/gsc.h
8625 F:      Documentation/hwmon/gsc-hwmon.rst
8626 F:      drivers/hwmon/gsc-hwmon.c
8627 F:      include/linux/platform_data/gsc_hwmon.h
8628
8629 GCC PLUGINS
8630 M:      Kees Cook <keescook@chromium.org>
8631 L:      linux-hardening@vger.kernel.org
8632 S:      Maintained
8633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8634 F:      Documentation/kbuild/gcc-plugins.rst
8635 F:      scripts/Makefile.gcc-plugins
8636 F:      scripts/gcc-plugins/
8637
8638 GCOV BASED KERNEL PROFILING
8639 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8640 S:      Maintained
8641 F:      Documentation/dev-tools/gcov.rst
8642 F:      kernel/gcov/
8643
8644 GDB KERNEL DEBUGGING HELPER SCRIPTS
8645 M:      Jan Kiszka <jan.kiszka@siemens.com>
8646 M:      Kieran Bingham <kbingham@kernel.org>
8647 S:      Supported
8648 F:      scripts/gdb/
8649
8650 GEMINI CRYPTO DRIVER
8651 M:      Corentin Labbe <clabbe@baylibre.com>
8652 L:      linux-crypto@vger.kernel.org
8653 S:      Maintained
8654 F:      drivers/crypto/gemini/
8655
8656 GEMTEK FM RADIO RECEIVER DRIVER
8657 M:      Hans Verkuil <hverkuil@xs4all.nl>
8658 L:      linux-media@vger.kernel.org
8659 S:      Maintained
8660 W:      https://linuxtv.org
8661 T:      git git://linuxtv.org/media_tree.git
8662 F:      drivers/media/radio/radio-gemtek*
8663
8664 GENERIC ARCHITECTURE TOPOLOGY
8665 M:      Sudeep Holla <sudeep.holla@arm.com>
8666 L:      linux-kernel@vger.kernel.org
8667 S:      Maintained
8668 F:      drivers/base/arch_topology.c
8669 F:      include/linux/arch_topology.h
8670
8671 GENERIC ENTRY CODE
8672 M:      Thomas Gleixner <tglx@linutronix.de>
8673 M:      Peter Zijlstra <peterz@infradead.org>
8674 M:      Andy Lutomirski <luto@kernel.org>
8675 L:      linux-kernel@vger.kernel.org
8676 S:      Maintained
8677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8678 F:      include/linux/entry-common.h
8679 F:      include/linux/entry-kvm.h
8680 F:      kernel/entry/
8681
8682 GENERIC GPIO I2C DRIVER
8683 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8684 S:      Supported
8685 F:      drivers/i2c/busses/i2c-gpio.c
8686 F:      include/linux/platform_data/i2c-gpio.h
8687
8688 GENERIC GPIO I2C MULTIPLEXER DRIVER
8689 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8690 L:      linux-i2c@vger.kernel.org
8691 S:      Supported
8692 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8693 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8694 F:      include/linux/platform_data/i2c-mux-gpio.h
8695
8696 GENERIC HDLC (WAN) DRIVERS
8697 M:      Krzysztof Halasa <khc@pm.waw.pl>
8698 S:      Maintained
8699 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8700 F:      drivers/net/wan/c101.c
8701 F:      drivers/net/wan/hd6457*
8702 F:      drivers/net/wan/hdlc*
8703 F:      drivers/net/wan/n2.c
8704 F:      drivers/net/wan/pc300too.c
8705 F:      drivers/net/wan/pci200syn.c
8706 F:      drivers/net/wan/wanxl*
8707
8708 GENERIC INCLUDE/ASM HEADER FILES
8709 M:      Arnd Bergmann <arnd@arndb.de>
8710 L:      linux-arch@vger.kernel.org
8711 S:      Maintained
8712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8713 F:      include/asm-generic/
8714 F:      include/uapi/asm-generic/
8715
8716 GENERIC PHY FRAMEWORK
8717 M:      Vinod Koul <vkoul@kernel.org>
8718 M:      Kishon Vijay Abraham I <kishon@kernel.org>
8719 L:      linux-phy@lists.infradead.org
8720 S:      Supported
8721 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8723 F:      Documentation/devicetree/bindings/phy/
8724 F:      drivers/phy/
8725 F:      include/dt-bindings/phy/
8726 F:      include/linux/phy/
8727
8728 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8729 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8730 S:      Supported
8731 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8732
8733 GENERIC PM DOMAINS
8734 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8735 M:      Kevin Hilman <khilman@kernel.org>
8736 M:      Ulf Hansson <ulf.hansson@linaro.org>
8737 L:      linux-pm@vger.kernel.org
8738 S:      Supported
8739 F:      Documentation/devicetree/bindings/power/power?domain*
8740 F:      drivers/base/power/domain*.c
8741 F:      include/linux/pm_domain.h
8742
8743 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8744 M:      Eugen Hristev <eugen.hristev@microchip.com>
8745 L:      linux-input@vger.kernel.org
8746 S:      Maintained
8747 F:      drivers/input/touchscreen/resistive-adc-touch.c
8748
8749 GENERIC STRING LIBRARY
8750 R:      Andy Shevchenko <andy@kernel.org>
8751 S:      Maintained
8752 F:      lib/string.c
8753 F:      lib/string_helpers.c
8754 F:      lib/test_string.c
8755 F:      lib/test-string_helpers.c
8756
8757 GENERIC UIO DRIVER FOR PCI DEVICES
8758 M:      "Michael S. Tsirkin" <mst@redhat.com>
8759 L:      kvm@vger.kernel.org
8760 S:      Supported
8761 F:      drivers/uio/uio_pci_generic.c
8762
8763 GENERIC VDSO LIBRARY
8764 M:      Andy Lutomirski <luto@kernel.org>
8765 M:      Thomas Gleixner <tglx@linutronix.de>
8766 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8767 L:      linux-kernel@vger.kernel.org
8768 S:      Maintained
8769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8770 F:      include/asm-generic/vdso/vsyscall.h
8771 F:      include/vdso/
8772 F:      kernel/time/vsyscall.c
8773 F:      lib/vdso/
8774
8775 GENWQE (IBM Generic Workqueue Card)
8776 M:      Frank Haverkamp <haver@linux.ibm.com>
8777 S:      Supported
8778 F:      drivers/misc/genwqe/
8779
8780 GET_MAINTAINER SCRIPT
8781 M:      Joe Perches <joe@perches.com>
8782 S:      Maintained
8783 F:      scripts/get_maintainer.pl
8784
8785 GFS2 FILE SYSTEM
8786 M:      Bob Peterson <rpeterso@redhat.com>
8787 M:      Andreas Gruenbacher <agruenba@redhat.com>
8788 L:      cluster-devel@redhat.com
8789 S:      Supported
8790 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8792 F:      Documentation/filesystems/gfs2*
8793 F:      fs/gfs2/
8794 F:      include/uapi/linux/gfs2_ondisk.h
8795
8796 GIGABYTE WMI DRIVER
8797 M:      Thomas Weißschuh <thomas@weissschuh.net>
8798 L:      platform-driver-x86@vger.kernel.org
8799 S:      Maintained
8800 F:      drivers/platform/x86/gigabyte-wmi.c
8801
8802 GNSS SUBSYSTEM
8803 M:      Johan Hovold <johan@kernel.org>
8804 S:      Maintained
8805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8806 F:      Documentation/ABI/testing/sysfs-class-gnss
8807 F:      Documentation/devicetree/bindings/gnss/
8808 F:      drivers/gnss/
8809 F:      include/linux/gnss.h
8810
8811 GO7007 MPEG CODEC
8812 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8813 L:      linux-media@vger.kernel.org
8814 S:      Maintained
8815 F:      drivers/media/usb/go7007/
8816
8817 GOODIX TOUCHSCREEN
8818 M:      Bastien Nocera <hadess@hadess.net>
8819 M:      Hans de Goede <hdegoede@redhat.com>
8820 L:      linux-input@vger.kernel.org
8821 S:      Maintained
8822 F:      drivers/input/touchscreen/goodix*
8823
8824 GOOGLE ETHERNET DRIVERS
8825 M:      Jeroen de Borst <jeroendb@google.com>
8826 M:      Catherine Sullivan <csully@google.com>
8827 R:      Shailend Chand <shailend@google.com>
8828 L:      netdev@vger.kernel.org
8829 S:      Supported
8830 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8831 F:      drivers/net/ethernet/google
8832
8833 GPD POCKET FAN DRIVER
8834 M:      Hans de Goede <hdegoede@redhat.com>
8835 L:      platform-driver-x86@vger.kernel.org
8836 S:      Maintained
8837 F:      drivers/platform/x86/gpd-pocket-fan.c
8838
8839 GPIO ACPI SUPPORT
8840 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8841 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8842 L:      linux-gpio@vger.kernel.org
8843 L:      linux-acpi@vger.kernel.org
8844 S:      Supported
8845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8846 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8847 F:      drivers/gpio/gpiolib-acpi.c
8848 F:      drivers/gpio/gpiolib-acpi.h
8849
8850 GPIO AGGREGATOR
8851 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8852 L:      linux-gpio@vger.kernel.org
8853 S:      Supported
8854 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8855 F:      drivers/gpio/gpio-aggregator.c
8856
8857 GPIO IR Transmitter
8858 M:      Sean Young <sean@mess.org>
8859 L:      linux-media@vger.kernel.org
8860 S:      Maintained
8861 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8862 F:      drivers/media/rc/gpio-ir-tx.c
8863
8864 GPIO MOCKUP DRIVER
8865 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8866 L:      linux-gpio@vger.kernel.org
8867 S:      Maintained
8868 F:      drivers/gpio/gpio-mockup.c
8869 F:      tools/testing/selftests/gpio/
8870
8871 GPIO REGMAP
8872 R:      Michael Walle <michael@walle.cc>
8873 S:      Maintained
8874 F:      drivers/gpio/gpio-regmap.c
8875 F:      include/linux/gpio/regmap.h
8876
8877 GPIO SUBSYSTEM
8878 M:      Linus Walleij <linus.walleij@linaro.org>
8879 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8880 L:      linux-gpio@vger.kernel.org
8881 S:      Maintained
8882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8883 F:      Documentation/ABI/obsolete/sysfs-gpio
8884 F:      Documentation/ABI/testing/gpio-cdev
8885 F:      Documentation/admin-guide/gpio/
8886 F:      Documentation/devicetree/bindings/gpio/
8887 F:      Documentation/driver-api/gpio/
8888 F:      drivers/gpio/
8889 F:      include/asm-generic/gpio.h
8890 F:      include/dt-bindings/gpio/
8891 F:      include/linux/gpio.h
8892 F:      include/linux/gpio/
8893 F:      include/linux/of_gpio.h
8894 F:      include/uapi/linux/gpio.h
8895 F:      tools/gpio/
8896
8897 GRE DEMULTIPLEXER DRIVER
8898 M:      Dmitry Kozlov <xeb@mail.ru>
8899 L:      netdev@vger.kernel.org
8900 S:      Maintained
8901 F:      include/net/gre.h
8902 F:      net/ipv4/gre_demux.c
8903 F:      net/ipv4/gre_offload.c
8904
8905 GRETH 10/100/1G Ethernet MAC device driver
8906 M:      Andreas Larsson <andreas@gaisler.com>
8907 L:      netdev@vger.kernel.org
8908 S:      Maintained
8909 F:      drivers/net/ethernet/aeroflex/
8910
8911 GREYBUS AUDIO PROTOCOLS DRIVERS
8912 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8913 M:      Mark Greer <mgreer@animalcreek.com>
8914 S:      Maintained
8915 F:      drivers/staging/greybus/audio_apbridgea.c
8916 F:      drivers/staging/greybus/audio_apbridgea.h
8917 F:      drivers/staging/greybus/audio_codec.c
8918 F:      drivers/staging/greybus/audio_codec.h
8919 F:      drivers/staging/greybus/audio_gb.c
8920 F:      drivers/staging/greybus/audio_manager.c
8921 F:      drivers/staging/greybus/audio_manager.h
8922 F:      drivers/staging/greybus/audio_manager_module.c
8923 F:      drivers/staging/greybus/audio_manager_private.h
8924 F:      drivers/staging/greybus/audio_manager_sysfs.c
8925 F:      drivers/staging/greybus/audio_module.c
8926 F:      drivers/staging/greybus/audio_topology.c
8927
8928 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8929 M:      Viresh Kumar <vireshk@kernel.org>
8930 S:      Maintained
8931 F:      drivers/staging/greybus/authentication.c
8932 F:      drivers/staging/greybus/bootrom.c
8933 F:      drivers/staging/greybus/firmware.h
8934 F:      drivers/staging/greybus/fw-core.c
8935 F:      drivers/staging/greybus/fw-download.c
8936 F:      drivers/staging/greybus/fw-management.c
8937 F:      drivers/staging/greybus/greybus_authentication.h
8938 F:      drivers/staging/greybus/greybus_firmware.h
8939 F:      drivers/staging/greybus/hid.c
8940 F:      drivers/staging/greybus/i2c.c
8941 F:      drivers/staging/greybus/spi.c
8942 F:      drivers/staging/greybus/spilib.c
8943 F:      drivers/staging/greybus/spilib.h
8944
8945 GREYBUS LOOPBACK DRIVER
8946 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8947 S:      Maintained
8948 F:      drivers/staging/greybus/loopback.c
8949
8950 GREYBUS PLATFORM DRIVERS
8951 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8952 S:      Maintained
8953 F:      drivers/staging/greybus/arche-apb-ctrl.c
8954 F:      drivers/staging/greybus/arche-platform.c
8955 F:      drivers/staging/greybus/arche_platform.h
8956
8957 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8958 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8959 S:      Maintained
8960 F:      drivers/staging/greybus/gpio.c
8961 F:      drivers/staging/greybus/light.c
8962 F:      drivers/staging/greybus/power_supply.c
8963 F:      drivers/staging/greybus/sdio.c
8964 F:      drivers/staging/greybus/spi.c
8965 F:      drivers/staging/greybus/spilib.c
8966
8967 GREYBUS SUBSYSTEM
8968 M:      Johan Hovold <johan@kernel.org>
8969 M:      Alex Elder <elder@kernel.org>
8970 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8971 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8972 S:      Maintained
8973 F:      drivers/greybus/
8974 F:      drivers/staging/greybus/
8975 F:      include/linux/greybus.h
8976 F:      include/linux/greybus/
8977
8978 GREYBUS UART PROTOCOLS DRIVERS
8979 M:      David Lin <dtwlin@gmail.com>
8980 S:      Maintained
8981 F:      drivers/staging/greybus/log.c
8982 F:      drivers/staging/greybus/uart.c
8983
8984 GS1662 VIDEO SERIALIZER
8985 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8986 L:      linux-media@vger.kernel.org
8987 S:      Maintained
8988 T:      git git://linuxtv.org/media_tree.git
8989 F:      drivers/media/spi/gs1662.c
8990
8991 GSPCA FINEPIX SUBDRIVER
8992 M:      Frank Zago <frank@zago.net>
8993 L:      linux-media@vger.kernel.org
8994 S:      Maintained
8995 T:      git git://linuxtv.org/media_tree.git
8996 F:      drivers/media/usb/gspca/finepix.c
8997
8998 GSPCA GL860 SUBDRIVER
8999 M:      Olivier Lorin <o.lorin@laposte.net>
9000 L:      linux-media@vger.kernel.org
9001 S:      Maintained
9002 T:      git git://linuxtv.org/media_tree.git
9003 F:      drivers/media/usb/gspca/gl860/
9004
9005 GSPCA M5602 SUBDRIVER
9006 M:      Erik Andren <erik.andren@gmail.com>
9007 L:      linux-media@vger.kernel.org
9008 S:      Maintained
9009 T:      git git://linuxtv.org/media_tree.git
9010 F:      drivers/media/usb/gspca/m5602/
9011
9012 GSPCA PAC207 SONIXB SUBDRIVER
9013 M:      Hans Verkuil <hverkuil@xs4all.nl>
9014 L:      linux-media@vger.kernel.org
9015 S:      Odd Fixes
9016 T:      git git://linuxtv.org/media_tree.git
9017 F:      drivers/media/usb/gspca/pac207.c
9018
9019 GSPCA SN9C20X SUBDRIVER
9020 M:      Brian Johnson <brijohn@gmail.com>
9021 L:      linux-media@vger.kernel.org
9022 S:      Maintained
9023 T:      git git://linuxtv.org/media_tree.git
9024 F:      drivers/media/usb/gspca/sn9c20x.c
9025
9026 GSPCA T613 SUBDRIVER
9027 M:      Leandro Costantino <lcostantino@gmail.com>
9028 L:      linux-media@vger.kernel.org
9029 S:      Maintained
9030 T:      git git://linuxtv.org/media_tree.git
9031 F:      drivers/media/usb/gspca/t613.c
9032
9033 GSPCA USB WEBCAM DRIVER
9034 M:      Hans Verkuil <hverkuil@xs4all.nl>
9035 L:      linux-media@vger.kernel.org
9036 S:      Odd Fixes
9037 T:      git git://linuxtv.org/media_tree.git
9038 F:      drivers/media/usb/gspca/
9039
9040 GTP (GPRS Tunneling Protocol)
9041 M:      Pablo Neira Ayuso <pablo@netfilter.org>
9042 M:      Harald Welte <laforge@gnumonks.org>
9043 L:      osmocom-net-gprs@lists.osmocom.org
9044 S:      Maintained
9045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
9046 F:      drivers/net/gtp.c
9047
9048 GUID PARTITION TABLE (GPT)
9049 M:      Davidlohr Bueso <dave@stgolabs.net>
9050 L:      linux-efi@vger.kernel.org
9051 S:      Maintained
9052 F:      block/partitions/efi.*
9053
9054 HABANALABS PCI DRIVER
9055 M:      Oded Gabbay <ogabbay@kernel.org>
9056 S:      Supported
9057 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
9058 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
9059 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
9060 F:      drivers/misc/habanalabs/
9061 F:      include/trace/events/habanalabs.h
9062 F:      include/uapi/misc/habanalabs.h
9063
9064 HACKRF MEDIA DRIVER
9065 M:      Antti Palosaari <crope@iki.fi>
9066 L:      linux-media@vger.kernel.org
9067 S:      Maintained
9068 W:      https://linuxtv.org
9069 W:      http://palosaari.fi/linux/
9070 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9071 T:      git git://linuxtv.org/anttip/media_tree.git
9072 F:      drivers/media/usb/hackrf/
9073
9074 HANTRO VPU CODEC DRIVER
9075 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
9076 M:      Philipp Zabel <p.zabel@pengutronix.de>
9077 L:      linux-media@vger.kernel.org
9078 L:      linux-rockchip@lists.infradead.org
9079 S:      Maintained
9080 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
9081 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
9082 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
9083 F:      drivers/media/platform/verisilicon/
9084
9085 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
9086 M:      Frank Seidel <frank@f-seidel.de>
9087 L:      platform-driver-x86@vger.kernel.org
9088 S:      Maintained
9089 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
9090 F:      drivers/platform/x86/hdaps.c
9091
9092 HARDWARE MONITORING
9093 M:      Jean Delvare <jdelvare@suse.com>
9094 M:      Guenter Roeck <linux@roeck-us.net>
9095 L:      linux-hwmon@vger.kernel.org
9096 S:      Maintained
9097 W:      http://hwmon.wiki.kernel.org/
9098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9099 F:      Documentation/ABI/testing/sysfs-class-hwmon
9100 F:      Documentation/devicetree/bindings/hwmon/
9101 F:      Documentation/hwmon/
9102 F:      drivers/hwmon/
9103 F:      include/linux/hwmon*.h
9104 F:      include/trace/events/hwmon*.h
9105 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
9106
9107 HARDWARE RANDOM NUMBER GENERATOR CORE
9108 M:      Olivia Mackall <olivia@selenic.com>
9109 M:      Herbert Xu <herbert@gondor.apana.org.au>
9110 L:      linux-crypto@vger.kernel.org
9111 S:      Odd fixes
9112 F:      Documentation/admin-guide/hw_random.rst
9113 F:      Documentation/devicetree/bindings/rng/
9114 F:      drivers/char/hw_random/
9115 F:      include/linux/hw_random.h
9116
9117 HARDWARE SPINLOCK CORE
9118 M:      Ohad Ben-Cohen <ohad@wizery.com>
9119 M:      Bjorn Andersson <andersson@kernel.org>
9120 R:      Baolin Wang <baolin.wang7@gmail.com>
9121 L:      linux-remoteproc@vger.kernel.org
9122 S:      Maintained
9123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
9124 F:      Documentation/devicetree/bindings/hwlock/
9125 F:      Documentation/locking/hwspinlock.rst
9126 F:      drivers/hwspinlock/
9127 F:      include/linux/hwspinlock.h
9128
9129 HARDWARE TRACING FACILITIES
9130 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9131 S:      Maintained
9132 F:      drivers/hwtracing/
9133
9134 HARMONY SOUND DRIVER
9135 L:      linux-parisc@vger.kernel.org
9136 S:      Maintained
9137 F:      sound/parisc/harmony.*
9138
9139 HDPVR USB VIDEO ENCODER DRIVER
9140 M:      Hans Verkuil <hverkuil@xs4all.nl>
9141 L:      linux-media@vger.kernel.org
9142 S:      Odd Fixes
9143 W:      https://linuxtv.org
9144 T:      git git://linuxtv.org/media_tree.git
9145 F:      drivers/media/usb/hdpvr/
9146
9147 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
9148 M:      Matt Hsiao <matt.hsiao@hpe.com>
9149 S:      Supported
9150 F:      drivers/misc/hpilo.[ch]
9151
9152 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9153 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
9154 S:      Supported
9155 F:      Documentation/watchdog/hpwdt.rst
9156 F:      drivers/watchdog/hpwdt.c
9157
9158 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9159 M:      Don Brace <don.brace@microchip.com>
9160 L:      storagedev@microchip.com
9161 L:      linux-scsi@vger.kernel.org
9162 S:      Supported
9163 F:      Documentation/scsi/hpsa.rst
9164 F:      drivers/scsi/hpsa*.[ch]
9165 F:      include/linux/cciss*.h
9166 F:      include/uapi/linux/cciss*.h
9167
9168 HFI1 DRIVER
9169 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9170 L:      linux-rdma@vger.kernel.org
9171 S:      Supported
9172 F:      drivers/infiniband/hw/hfi1
9173
9174 HFS FILESYSTEM
9175 L:      linux-fsdevel@vger.kernel.org
9176 S:      Orphan
9177 F:      Documentation/filesystems/hfs.rst
9178 F:      fs/hfs/
9179
9180 HFSPLUS FILESYSTEM
9181 L:      linux-fsdevel@vger.kernel.org
9182 S:      Orphan
9183 F:      Documentation/filesystems/hfsplus.rst
9184 F:      fs/hfsplus/
9185
9186 HGA FRAMEBUFFER DRIVER
9187 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9188 L:      linux-nvidia@lists.surfsouth.com
9189 S:      Maintained
9190 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9191 F:      drivers/video/fbdev/hgafb.c
9192
9193 HIBERNATION (aka Software Suspend, aka swsusp)
9194 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9195 M:      Pavel Machek <pavel@ucw.cz>
9196 L:      linux-pm@vger.kernel.org
9197 S:      Supported
9198 B:      https://bugzilla.kernel.org
9199 F:      arch/*/include/asm/suspend*.h
9200 F:      arch/x86/power/
9201 F:      drivers/base/power/
9202 F:      include/linux/freezer.h
9203 F:      include/linux/pm.h
9204 F:      include/linux/suspend.h
9205 F:      kernel/power/
9206
9207 HID CORE LAYER
9208 M:      Jiri Kosina <jikos@kernel.org>
9209 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9210 L:      linux-input@vger.kernel.org
9211 S:      Maintained
9212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9213 F:      drivers/hid/
9214 F:      include/linux/hid*
9215 F:      include/uapi/linux/hid*
9216
9217 HID LOGITECH DRIVERS
9218 R:      Filipe Laíns <lains@riseup.net>
9219 L:      linux-input@vger.kernel.org
9220 S:      Maintained
9221 F:      drivers/hid/hid-logitech-*
9222
9223 HID PLAYSTATION DRIVER
9224 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9225 L:      linux-input@vger.kernel.org
9226 S:      Supported
9227 F:      drivers/hid/hid-playstation.c
9228
9229 HID PHOENIX RC FLIGHT CONTROLLER
9230 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9231 L:      linux-input@vger.kernel.org
9232 S:      Maintained
9233 F:      drivers/hid/hid-pxrc.c
9234
9235 HID SENSOR HUB DRIVERS
9236 M:      Jiri Kosina <jikos@kernel.org>
9237 M:      Jonathan Cameron <jic23@kernel.org>
9238 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9239 L:      linux-input@vger.kernel.org
9240 L:      linux-iio@vger.kernel.org
9241 S:      Maintained
9242 F:      Documentation/hid/hid-sensor*
9243 F:      drivers/hid/hid-sensor-*
9244 F:      drivers/iio/*/hid-*
9245 F:      include/linux/hid-sensor-*
9246
9247 HID VRC-2 CAR CONTROLLER DRIVER
9248 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9249 L:      linux-input@vger.kernel.org
9250 S:      Maintained
9251 F:      drivers/hid/hid-vrc2.c
9252
9253 HID WACOM DRIVER
9254 M:      Ping Cheng <ping.cheng@wacom.com>
9255 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9256 L:      linux-input@vger.kernel.org
9257 S:      Maintained
9258 F:      drivers/hid/wacom.h
9259 F:      drivers/hid/wacom_*
9260
9261 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9262 M:      Thomas Gleixner <tglx@linutronix.de>
9263 L:      linux-kernel@vger.kernel.org
9264 S:      Maintained
9265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9266 F:      Documentation/timers/
9267 F:      include/linux/clockchips.h
9268 F:      include/linux/hrtimer.h
9269 F:      kernel/time/clockevents.c
9270 F:      kernel/time/hrtimer.c
9271 F:      kernel/time/timer_*.c
9272
9273 HIGH-SPEED SCC DRIVER FOR AX.25
9274 L:      linux-hams@vger.kernel.org
9275 S:      Orphan
9276 F:      drivers/net/hamradio/scc.c
9277
9278 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9279 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9280 S:      Supported
9281 W:      http://www.highpoint-tech.com
9282 F:      Documentation/scsi/hptiop.rst
9283 F:      drivers/scsi/hptiop.c
9284
9285 HIMAX HX83112B TOUCHSCREEN SUPPORT
9286 M:      Job Noorman <job@noorman.info>
9287 L:      linux-input@vger.kernel.org
9288 S:      Maintained
9289 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9290 F:      drivers/input/touchscreen/himax_hx83112b.c
9291
9292 HIPPI
9293 M:      Jes Sorensen <jes@trained-monkey.org>
9294 L:      linux-hippi@sunsite.dk
9295 S:      Maintained
9296 F:      drivers/net/hippi/
9297 F:      include/linux/hippidevice.h
9298 F:      include/uapi/linux/if_hippi.h
9299 F:      net/802/hippi.c
9300
9301 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9302 M:      Kurt Kanzenbach <kurt@linutronix.de>
9303 L:      netdev@vger.kernel.org
9304 S:      Maintained
9305 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9306 F:      drivers/net/dsa/hirschmann/*
9307 F:      include/linux/platform_data/hirschmann-hellcreek.h
9308 F:      net/dsa/tag_hellcreek.c
9309
9310 HISILICON DMA DRIVER
9311 M:      Zhou Wang <wangzhou1@hisilicon.com>
9312 M:      Jie Hai <haijie1@huawei.com>
9313 L:      dmaengine@vger.kernel.org
9314 S:      Maintained
9315 F:      drivers/dma/hisi_dma.c
9316
9317 HISILICON GPIO DRIVER
9318 M:      Jay Fang <f.fangjian@huawei.com>
9319 L:      linux-gpio@vger.kernel.org
9320 S:      Maintained
9321 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9322 F:      drivers/gpio/gpio-hisi.c
9323
9324 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9325 M:      Longfang Liu <liulongfang@huawei.com>
9326 L:      linux-crypto@vger.kernel.org
9327 S:      Maintained
9328 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9329 F:      drivers/crypto/hisilicon/hpre/hpre.h
9330 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9331 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9332
9333 HISILICON I2C CONTROLLER DRIVER
9334 M:      Yicong Yang <yangyicong@hisilicon.com>
9335 L:      linux-i2c@vger.kernel.org
9336 S:      Maintained
9337 W:      https://www.hisilicon.com
9338 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9339 F:      drivers/i2c/busses/i2c-hisi.c
9340
9341 HISILICON LPC BUS DRIVER
9342 M:      Jay Fang <f.fangjian@huawei.com>
9343 S:      Maintained
9344 W:      http://www.hisilicon.com
9345 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9346 F:      drivers/bus/hisi_lpc.c
9347
9348 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9349 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9350 M:      Salil Mehta <salil.mehta@huawei.com>
9351 L:      netdev@vger.kernel.org
9352 S:      Maintained
9353 W:      http://www.hisilicon.com
9354 F:      drivers/net/ethernet/hisilicon/hns3/
9355
9356 HISILICON NETWORK SUBSYSTEM DRIVER
9357 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9358 M:      Salil Mehta <salil.mehta@huawei.com>
9359 L:      netdev@vger.kernel.org
9360 S:      Maintained
9361 W:      http://www.hisilicon.com
9362 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9363 F:      drivers/net/ethernet/hisilicon/
9364
9365 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9366 M:      John Stultz <jstultz@google.com>
9367 L:      linux-kernel@vger.kernel.org
9368 S:      Maintained
9369 F:      drivers/misc/hisi_hikey_usb.c
9370
9371 HISILICON PMU DRIVER
9372 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9373 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9374 S:      Supported
9375 W:      http://www.hisilicon.com
9376 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9377 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9378 F:      drivers/perf/hisilicon
9379
9380 HISILICON HNS3 PMU DRIVER
9381 M:      Guangbin Huang <huangguangbin2@huawei.com>
9382 S:      Supported
9383 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9384 F:      drivers/perf/hisilicon/hns3_pmu.c
9385
9386 HISILICON PTT DRIVER
9387 M:      Yicong Yang <yangyicong@hisilicon.com>
9388 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9389 L:      linux-kernel@vger.kernel.org
9390 S:      Maintained
9391 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9392 F:      Documentation/trace/hisi-ptt.rst
9393 F:      drivers/hwtracing/ptt/
9394 F:      tools/perf/arch/arm64/util/hisi-ptt.c
9395 F:      tools/perf/util/hisi-ptt*
9396 F:      tools/perf/util/hisi-ptt-decoder/*
9397
9398 HISILICON QM DRIVER
9399 M:      Weili Qian <qianweili@huawei.com>
9400 M:      Zhou Wang <wangzhou1@hisilicon.com>
9401 L:      linux-crypto@vger.kernel.org
9402 S:      Maintained
9403 F:      drivers/crypto/hisilicon/Kconfig
9404 F:      drivers/crypto/hisilicon/Makefile
9405 F:      drivers/crypto/hisilicon/qm.c
9406 F:      drivers/crypto/hisilicon/sgl.c
9407 F:      include/linux/hisi_acc_qm.h
9408
9409 HISILICON ZIP Controller DRIVER
9410 M:      Yang Shen <shenyang39@huawei.com>
9411 M:      Zhou Wang <wangzhou1@hisilicon.com>
9412 L:      linux-crypto@vger.kernel.org
9413 S:      Maintained
9414 F:      Documentation/ABI/testing/debugfs-hisi-zip
9415 F:      drivers/crypto/hisilicon/zip/
9416
9417 HISILICON ROCE DRIVER
9418 M:      Haoyue Xu <xuhaoyue1@hisilicon.com>
9419 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9420 L:      linux-rdma@vger.kernel.org
9421 S:      Maintained
9422 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9423 F:      drivers/infiniband/hw/hns/
9424
9425 HISILICON SAS Controller
9426 M:      Xiang Chen <chenxiang66@hisilicon.com>
9427 S:      Supported
9428 W:      http://www.hisilicon.com
9429 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9430 F:      drivers/scsi/hisi_sas/
9431
9432 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9433 M:      Kai Ye <yekai13@huawei.com>
9434 M:      Longfang Liu <liulongfang@huawei.com>
9435 L:      linux-crypto@vger.kernel.org
9436 S:      Maintained
9437 F:      Documentation/ABI/testing/debugfs-hisi-sec
9438 F:      drivers/crypto/hisilicon/sec2/sec.h
9439 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9440 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9441 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9442
9443 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9444 M:      Jay Fang <f.fangjian@huawei.com>
9445 L:      linux-spi@vger.kernel.org
9446 S:      Maintained
9447 W:      http://www.hisilicon.com
9448 F:      drivers/spi/spi-hisi-kunpeng.c
9449
9450 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9451 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9452 L:      linux-kernel@vger.kernel.org
9453 S:      Maintained
9454 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9455 F:      drivers/spmi/hisi-spmi-controller.c
9456
9457 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9458 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9459 L:      linux-kernel@vger.kernel.org
9460 S:      Maintained
9461 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9462 F:      drivers/mfd/hi6421-spmi-pmic.c
9463
9464 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9465 M:      Weili Qian <qianweili@huawei.com>
9466 S:      Maintained
9467 F:      drivers/crypto/hisilicon/trng/trng.c
9468
9469 HISILICON V3XX SPI NOR FLASH Controller Driver
9470 M:      Jay Fang <f.fangjian@huawei.com>
9471 S:      Maintained
9472 W:      http://www.hisilicon.com
9473 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9474
9475 HMM - Heterogeneous Memory Management
9476 M:      Jérôme Glisse <jglisse@redhat.com>
9477 L:      linux-mm@kvack.org
9478 S:      Maintained
9479 F:      Documentation/mm/hmm.rst
9480 F:      include/linux/hmm*
9481 F:      lib/test_hmm*
9482 F:      mm/hmm*
9483 F:      tools/testing/selftests/vm/*hmm*
9484
9485 HOST AP DRIVER
9486 M:      Jouni Malinen <j@w1.fi>
9487 L:      linux-wireless@vger.kernel.org
9488 S:      Obsolete
9489 W:      http://w1.fi/hostap-driver.html
9490 F:      drivers/net/wireless/intersil/hostap/
9491
9492 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9493 L:      platform-driver-x86@vger.kernel.org
9494 S:      Orphan
9495 F:      drivers/platform/x86/hp/tc1100-wmi.c
9496
9497 HPET:   High Precision Event Timers driver
9498 M:      Clemens Ladisch <clemens@ladisch.de>
9499 S:      Maintained
9500 F:      Documentation/timers/hpet.rst
9501 F:      drivers/char/hpet.c
9502 F:      include/linux/hpet.h
9503 F:      include/uapi/linux/hpet.h
9504
9505 HPET:   x86
9506 S:      Orphan
9507 F:      arch/x86/include/asm/hpet.h
9508 F:      arch/x86/kernel/hpet.c
9509
9510 HPFS FILESYSTEM
9511 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9512 S:      Maintained
9513 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9514 F:      fs/hpfs/
9515
9516 HSI SUBSYSTEM
9517 M:      Sebastian Reichel <sre@kernel.org>
9518 S:      Maintained
9519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9520 F:      Documentation/ABI/testing/sysfs-bus-hsi
9521 F:      Documentation/driver-api/hsi.rst
9522 F:      drivers/hsi/
9523 F:      include/linux/hsi/
9524 F:      include/uapi/linux/hsi/
9525
9526 HSO 3G MODEM DRIVER
9527 L:      linux-usb@vger.kernel.org
9528 S:      Orphan
9529 F:      drivers/net/usb/hso.c
9530
9531 HSR NETWORK PROTOCOL
9532 L:      netdev@vger.kernel.org
9533 S:      Orphan
9534 F:      net/hsr/
9535
9536 HT16K33 LED CONTROLLER DRIVER
9537 M:      Robin van der Gracht <robin@protonic.nl>
9538 S:      Maintained
9539 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9540 F:      drivers/auxdisplay/ht16k33.c
9541
9542 HTCPEN TOUCHSCREEN DRIVER
9543 M:      Pau Oliva Fora <pof@eslack.org>
9544 L:      linux-input@vger.kernel.org
9545 S:      Maintained
9546 F:      drivers/input/touchscreen/htcpen.c
9547
9548 HTE SUBSYSTEM
9549 M:      Dipen Patel <dipenp@nvidia.com>
9550 S:      Maintained
9551 F:      Documentation/devicetree/bindings/timestamp/
9552 F:      Documentation/driver-api/hte/
9553 F:      drivers/hte/
9554 F:      include/linux/hte.h
9555
9556 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9557 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9558 L:      linux-iio@vger.kernel.org
9559 S:      Maintained
9560 W:      http://www.st.com/
9561 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9562 F:      drivers/iio/humidity/hts221*
9563
9564 HUAWEI ETHERNET DRIVER
9565 M:      Cai Huoqing <cai.huoqing@linux.dev>
9566 L:      netdev@vger.kernel.org
9567 S:      Maintained
9568 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9569 F:      drivers/net/ethernet/huawei/hinic/
9570
9571 HUGETLB SUBSYSTEM
9572 M:      Mike Kravetz <mike.kravetz@oracle.com>
9573 M:      Muchun Song <muchun.song@linux.dev>
9574 L:      linux-mm@kvack.org
9575 S:      Maintained
9576 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9577 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9578 F:      Documentation/mm/hugetlbfs_reserv.rst
9579 F:      Documentation/mm/vmemmap_dedup.rst
9580 F:      fs/hugetlbfs/
9581 F:      include/linux/hugetlb.h
9582 F:      mm/hugetlb.c
9583 F:      mm/hugetlb_vmemmap.c
9584 F:      mm/hugetlb_vmemmap.h
9585
9586 HVA ST MEDIA DRIVER
9587 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9588 L:      linux-media@vger.kernel.org
9589 S:      Supported
9590 W:      https://linuxtv.org
9591 T:      git git://linuxtv.org/media_tree.git
9592 F:      drivers/media/platform/st/sti/hva
9593
9594 HWPOISON MEMORY FAILURE HANDLING
9595 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9596 R:      Miaohe Lin <linmiaohe@huawei.com>
9597 L:      linux-mm@kvack.org
9598 S:      Maintained
9599 F:      mm/hwpoison-inject.c
9600 F:      mm/memory-failure.c
9601
9602 HYCON HY46XX TOUCHSCREEN SUPPORT
9603 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9604 L:      linux-input@vger.kernel.org
9605 S:      Maintained
9606 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9607 F:      drivers/input/touchscreen/hycon-hy46xx.c
9608
9609 HYGON PROCESSOR SUPPORT
9610 M:      Pu Wen <puwen@hygon.cn>
9611 L:      linux-kernel@vger.kernel.org
9612 S:      Maintained
9613 F:      arch/x86/kernel/cpu/hygon.c
9614
9615 HYNIX HI556 SENSOR DRIVER
9616 M:      Shawn Tu <shawnx.tu@intel.com>
9617 L:      linux-media@vger.kernel.org
9618 S:      Maintained
9619 T:      git git://linuxtv.org/media_tree.git
9620 F:      drivers/media/i2c/hi556.c
9621
9622 HYNIX HI846 SENSOR DRIVER
9623 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9624 L:      linux-media@vger.kernel.org
9625 S:      Maintained
9626 F:      drivers/media/i2c/hi846.c
9627
9628 HYNIX HI847 SENSOR DRIVER
9629 M:      Shawn Tu <shawnx.tu@intel.com>
9630 L:      linux-media@vger.kernel.org
9631 S:      Maintained
9632 F:      drivers/media/i2c/hi847.c
9633
9634 Hyper-V/Azure CORE AND DRIVERS
9635 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9636 M:      Haiyang Zhang <haiyangz@microsoft.com>
9637 M:      Wei Liu <wei.liu@kernel.org>
9638 M:      Dexuan Cui <decui@microsoft.com>
9639 L:      linux-hyperv@vger.kernel.org
9640 S:      Supported
9641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9642 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9643 F:      Documentation/ABI/testing/debugfs-hyperv
9644 F:      Documentation/virt/hyperv
9645 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9646 F:      arch/arm64/hyperv
9647 F:      arch/arm64/include/asm/hyperv-tlfs.h
9648 F:      arch/arm64/include/asm/mshyperv.h
9649 F:      arch/x86/hyperv
9650 F:      arch/x86/include/asm/hyperv-tlfs.h
9651 F:      arch/x86/include/asm/mshyperv.h
9652 F:      arch/x86/include/asm/trace/hyperv.h
9653 F:      arch/x86/kernel/cpu/mshyperv.c
9654 F:      drivers/clocksource/hyperv_timer.c
9655 F:      drivers/hid/hid-hyperv.c
9656 F:      drivers/hv/
9657 F:      drivers/input/serio/hyperv-keyboard.c
9658 F:      drivers/iommu/hyperv-iommu.c
9659 F:      drivers/net/ethernet/microsoft/
9660 F:      drivers/net/hyperv/
9661 F:      drivers/pci/controller/pci-hyperv-intf.c
9662 F:      drivers/pci/controller/pci-hyperv.c
9663 F:      drivers/scsi/storvsc_drv.c
9664 F:      drivers/uio/uio_hv_generic.c
9665 F:      drivers/video/fbdev/hyperv_fb.c
9666 F:      include/asm-generic/hyperv-tlfs.h
9667 F:      include/asm-generic/mshyperv.h
9668 F:      include/clocksource/hyperv_timer.h
9669 F:      include/linux/hyperv.h
9670 F:      include/net/mana
9671 F:      include/uapi/linux/hyperv.h
9672 F:      net/vmw_vsock/hyperv_transport.c
9673 F:      tools/hv/
9674
9675 HYPERBUS SUPPORT
9676 M:      Vignesh Raghavendra <vigneshr@ti.com>
9677 L:      linux-mtd@lists.infradead.org
9678 S:      Supported
9679 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9680 C:      irc://irc.oftc.net/mtd
9681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9682 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9683 F:      drivers/mtd/hyperbus/
9684 F:      include/linux/mtd/hyperbus.h
9685
9686 HYPERVISOR VIRTUAL CONSOLE DRIVER
9687 L:      linuxppc-dev@lists.ozlabs.org
9688 S:      Odd Fixes
9689 F:      drivers/tty/hvc/
9690
9691 I2C ACPI SUPPORT
9692 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9693 L:      linux-i2c@vger.kernel.org
9694 L:      linux-acpi@vger.kernel.org
9695 S:      Maintained
9696 F:      drivers/i2c/i2c-core-acpi.c
9697
9698 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9699 M:      Ajay Gupta <ajayg@nvidia.com>
9700 L:      linux-i2c@vger.kernel.org
9701 S:      Maintained
9702 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9703 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9704
9705 I2C MUXES
9706 M:      Peter Rosin <peda@axentia.se>
9707 L:      linux-i2c@vger.kernel.org
9708 S:      Maintained
9709 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9710 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9711 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9712 F:      Documentation/i2c/i2c-topology.rst
9713 F:      Documentation/i2c/muxes/
9714 F:      drivers/i2c/i2c-mux.c
9715 F:      drivers/i2c/muxes/
9716 F:      include/linux/i2c-mux.h
9717
9718 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9719 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9720 L:      linux-i2c@vger.kernel.org
9721 S:      Maintained
9722 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9723 F:      drivers/i2c/busses/i2c-mv64xxx.c
9724
9725 I2C OVER PARALLEL PORT
9726 M:      Jean Delvare <jdelvare@suse.com>
9727 L:      linux-i2c@vger.kernel.org
9728 S:      Maintained
9729 F:      Documentation/i2c/busses/i2c-parport.rst
9730 F:      drivers/i2c/busses/i2c-parport.c
9731
9732 I2C SUBSYSTEM
9733 M:      Wolfram Sang <wsa@kernel.org>
9734 L:      linux-i2c@vger.kernel.org
9735 S:      Maintained
9736 W:      https://i2c.wiki.kernel.org/
9737 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9739 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9740 F:      Documentation/i2c/
9741 F:      drivers/i2c/*
9742 F:      include/dt-bindings/i2c/i2c.h
9743 F:      include/linux/i2c-dev.h
9744 F:      include/linux/i2c-smbus.h
9745 F:      include/linux/i2c.h
9746 F:      include/uapi/linux/i2c-*.h
9747 F:      include/uapi/linux/i2c.h
9748
9749 I2C SUBSYSTEM HOST DRIVERS
9750 L:      linux-i2c@vger.kernel.org
9751 S:      Odd Fixes
9752 W:      https://i2c.wiki.kernel.org/
9753 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9755 F:      Documentation/devicetree/bindings/i2c/
9756 F:      drivers/i2c/algos/
9757 F:      drivers/i2c/busses/
9758 F:      include/dt-bindings/i2c/
9759
9760 I2C-TAOS-EVM DRIVER
9761 M:      Jean Delvare <jdelvare@suse.com>
9762 L:      linux-i2c@vger.kernel.org
9763 S:      Maintained
9764 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9765 F:      drivers/i2c/busses/i2c-taos-evm.c
9766
9767 I2C-TINY-USB DRIVER
9768 M:      Till Harbaum <till@harbaum.org>
9769 L:      linux-i2c@vger.kernel.org
9770 S:      Maintained
9771 W:      http://www.harbaum.org/till/i2c_tiny_usb
9772 F:      drivers/i2c/busses/i2c-tiny-usb.c
9773
9774 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9775 M:      Jean Delvare <jdelvare@suse.com>
9776 L:      linux-i2c@vger.kernel.org
9777 S:      Maintained
9778 F:      Documentation/i2c/busses/i2c-ali1535.rst
9779 F:      Documentation/i2c/busses/i2c-ali1563.rst
9780 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9781 F:      Documentation/i2c/busses/i2c-amd756.rst
9782 F:      Documentation/i2c/busses/i2c-amd8111.rst
9783 F:      Documentation/i2c/busses/i2c-i801.rst
9784 F:      Documentation/i2c/busses/i2c-nforce2.rst
9785 F:      Documentation/i2c/busses/i2c-piix4.rst
9786 F:      Documentation/i2c/busses/i2c-sis5595.rst
9787 F:      Documentation/i2c/busses/i2c-sis630.rst
9788 F:      Documentation/i2c/busses/i2c-sis96x.rst
9789 F:      Documentation/i2c/busses/i2c-via.rst
9790 F:      Documentation/i2c/busses/i2c-viapro.rst
9791 F:      drivers/i2c/busses/i2c-ali1535.c
9792 F:      drivers/i2c/busses/i2c-ali1563.c
9793 F:      drivers/i2c/busses/i2c-ali15x3.c
9794 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9795 F:      drivers/i2c/busses/i2c-amd756.c
9796 F:      drivers/i2c/busses/i2c-amd8111.c
9797 F:      drivers/i2c/busses/i2c-i801.c
9798 F:      drivers/i2c/busses/i2c-isch.c
9799 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9800 F:      drivers/i2c/busses/i2c-nforce2.c
9801 F:      drivers/i2c/busses/i2c-piix4.c
9802 F:      drivers/i2c/busses/i2c-sis5595.c
9803 F:      drivers/i2c/busses/i2c-sis630.c
9804 F:      drivers/i2c/busses/i2c-sis96x.c
9805 F:      drivers/i2c/busses/i2c-via.c
9806 F:      drivers/i2c/busses/i2c-viapro.c
9807
9808 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9809 M:      Hans de Goede <hdegoede@redhat.com>
9810 L:      linux-i2c@vger.kernel.org
9811 S:      Maintained
9812 F:      drivers/i2c/busses/i2c-cht-wc.c
9813
9814 I2C/SMBUS ISMT DRIVER
9815 M:      Seth Heasley <seth.heasley@intel.com>
9816 M:      Neil Horman <nhorman@tuxdriver.com>
9817 L:      linux-i2c@vger.kernel.org
9818 F:      Documentation/i2c/busses/i2c-ismt.rst
9819 F:      drivers/i2c/busses/i2c-ismt.c
9820
9821 I2C/SMBUS STUB DRIVER
9822 M:      Jean Delvare <jdelvare@suse.com>
9823 L:      linux-i2c@vger.kernel.org
9824 S:      Maintained
9825 F:      drivers/i2c/i2c-stub.c
9826
9827 I3C DRIVER FOR CADENCE I3C MASTER IP
9828 M:      Przemysław Gaj <pgaj@cadence.com>
9829 S:      Maintained
9830 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9831 F:      drivers/i3c/master/i3c-master-cdns.c
9832
9833 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9834 S:      Orphan
9835 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9836 F:      drivers/i3c/master/dw*
9837
9838 I3C SUBSYSTEM
9839 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9840 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9841 S:      Maintained
9842 C:      irc://chat.freenode.net/linux-i3c
9843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9844 F:      Documentation/ABI/testing/sysfs-bus-i3c
9845 F:      Documentation/devicetree/bindings/i3c/
9846 F:      Documentation/driver-api/i3c
9847 F:      drivers/i3c/
9848 F:      include/linux/i3c/
9849
9850 IA64 (Itanium) PLATFORM
9851 L:      linux-ia64@vger.kernel.org
9852 S:      Orphan
9853 F:      Documentation/ia64/
9854 F:      arch/ia64/
9855
9856 IBM Operation Panel Input Driver
9857 M:      Eddie James <eajames@linux.ibm.com>
9858 L:      linux-input@vger.kernel.org
9859 S:      Maintained
9860 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9861 F:      drivers/input/misc/ibm-panel.c
9862
9863 IBM Power 842 compression accelerator
9864 M:      Haren Myneni <haren@us.ibm.com>
9865 S:      Supported
9866 F:      crypto/842.c
9867 F:      drivers/crypto/nx/Kconfig
9868 F:      drivers/crypto/nx/Makefile
9869 F:      drivers/crypto/nx/nx-842*
9870 F:      include/linux/sw842.h
9871 F:      lib/842/
9872
9873 IBM Power in-Nest Crypto Acceleration
9874 M:      Breno Leitão <leitao@debian.org>
9875 M:      Nayna Jain <nayna@linux.ibm.com>
9876 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9877 L:      linux-crypto@vger.kernel.org
9878 S:      Supported
9879 F:      drivers/crypto/nx/Kconfig
9880 F:      drivers/crypto/nx/Makefile
9881 F:      drivers/crypto/nx/nx-aes*
9882 F:      drivers/crypto/nx/nx-sha*
9883 F:      drivers/crypto/nx/nx.*
9884 F:      drivers/crypto/nx/nx_csbcpb.h
9885 F:      drivers/crypto/nx/nx_debugfs.c
9886
9887 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9888 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9889 L:      linux-pci@vger.kernel.org
9890 L:      linuxppc-dev@lists.ozlabs.org
9891 S:      Supported
9892 F:      drivers/pci/hotplug/rpadlpar*
9893
9894 IBM Power Linux RAID adapter
9895 M:      Brian King <brking@us.ibm.com>
9896 S:      Supported
9897 F:      drivers/scsi/ipr.*
9898
9899 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9900 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9901 L:      linux-pci@vger.kernel.org
9902 L:      linuxppc-dev@lists.ozlabs.org
9903 S:      Supported
9904 F:      drivers/pci/hotplug/rpaphp*
9905
9906 IBM Power SRIOV Virtual NIC Device Driver
9907 M:      Haren Myneni <haren@linux.ibm.com>
9908 M:      Rick Lindsley <ricklind@linux.ibm.com>
9909 R:      Nick Child <nnac123@linux.ibm.com>
9910 R:      Dany Madden <danymadden@us.ibm.com>
9911 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9912 L:      netdev@vger.kernel.org
9913 S:      Supported
9914 F:      drivers/net/ethernet/ibm/ibmvnic.*
9915
9916 IBM Power Virtual Accelerator Switchboard
9917 L:      linuxppc-dev@lists.ozlabs.org
9918 S:      Supported
9919 F:      arch/powerpc/include/asm/vas.h
9920 F:      arch/powerpc/platforms/powernv/copy-paste.h
9921 F:      arch/powerpc/platforms/powernv/vas*
9922
9923 IBM Power Virtual Ethernet Device Driver
9924 M:      Nick Child <nnac123@linux.ibm.com>
9925 L:      netdev@vger.kernel.org
9926 S:      Supported
9927 F:      drivers/net/ethernet/ibm/ibmveth.*
9928
9929 IBM Power Virtual FC Device Drivers
9930 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9931 L:      linux-scsi@vger.kernel.org
9932 S:      Supported
9933 F:      drivers/scsi/ibmvscsi/ibmvfc*
9934
9935 IBM Power Virtual Management Channel Driver
9936 M:      Brad Warrum <bwarrum@linux.ibm.com>
9937 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9938 S:      Supported
9939 F:      drivers/misc/ibmvmc.*
9940
9941 IBM Power Virtual SCSI Device Drivers
9942 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9943 L:      linux-scsi@vger.kernel.org
9944 S:      Supported
9945 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9946 F:      include/scsi/viosrp.h
9947
9948 IBM Power Virtual SCSI Device Target Driver
9949 M:      Michael Cyr <mikecyr@linux.ibm.com>
9950 L:      linux-scsi@vger.kernel.org
9951 L:      target-devel@vger.kernel.org
9952 S:      Supported
9953 F:      drivers/scsi/ibmvscsi_tgt/
9954
9955 IBM Power VMX Cryptographic instructions
9956 M:      Breno Leitão <leitao@debian.org>
9957 M:      Nayna Jain <nayna@linux.ibm.com>
9958 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9959 L:      linux-crypto@vger.kernel.org
9960 S:      Supported
9961 F:      drivers/crypto/vmx/Kconfig
9962 F:      drivers/crypto/vmx/Makefile
9963 F:      drivers/crypto/vmx/aes*
9964 F:      drivers/crypto/vmx/ghash*
9965 F:      drivers/crypto/vmx/ppc-xlate.pl
9966 F:      drivers/crypto/vmx/vmx.c
9967
9968 IBM ServeRAID RAID DRIVER
9969 S:      Orphan
9970 F:      drivers/scsi/ips.*
9971
9972 ICH LPC AND GPIO DRIVER
9973 M:      Peter Tyser <ptyser@xes-inc.com>
9974 S:      Maintained
9975 F:      drivers/gpio/gpio-ich.c
9976 F:      drivers/mfd/lpc_ich.c
9977
9978 ICY I2C DRIVER
9979 M:      Max Staudt <max@enpas.org>
9980 L:      linux-i2c@vger.kernel.org
9981 S:      Maintained
9982 F:      drivers/i2c/busses/i2c-icy.c
9983
9984 IDEAPAD LAPTOP EXTRAS DRIVER
9985 M:      Ike Panhc <ike.pan@canonical.com>
9986 L:      platform-driver-x86@vger.kernel.org
9987 S:      Maintained
9988 W:      http://launchpad.net/ideapad-laptop
9989 F:      drivers/platform/x86/ideapad-laptop.c
9990
9991 IDEAPAD LAPTOP SLIDEBAR DRIVER
9992 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9993 L:      linux-input@vger.kernel.org
9994 S:      Maintained
9995 W:      https://github.com/o2genum/ideapad-slidebar
9996 F:      drivers/input/misc/ideapad_slidebar.c
9997
9998 IDMAPPED MOUNTS
9999 M:      Christian Brauner <brauner@kernel.org>
10000 M:      Seth Forshee <sforshee@kernel.org>
10001 L:      linux-fsdevel@vger.kernel.org
10002 S:      Maintained
10003 T:      git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
10004 F:      Documentation/filesystems/idmappings.rst
10005 F:      tools/testing/selftests/mount_setattr/
10006 F:      include/linux/mnt_idmapping.h
10007
10008 IDT VersaClock 5 CLOCK DRIVER
10009 M:      Luca Ceresoli <luca@lucaceresoli.net>
10010 S:      Maintained
10011 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
10012 F:      drivers/clk/clk-versaclock5.c
10013
10014 IEEE 802.15.4 SUBSYSTEM
10015 M:      Alexander Aring <alex.aring@gmail.com>
10016 M:      Stefan Schmidt <stefan@datenfreihafen.org>
10017 L:      linux-wpan@vger.kernel.org
10018 S:      Maintained
10019 W:      https://linux-wpan.org/
10020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
10021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
10022 F:      Documentation/networking/ieee802154.rst
10023 F:      drivers/net/ieee802154/
10024 F:      include/linux/ieee802154.h
10025 F:      include/linux/nl802154.h
10026 F:      include/net/af_ieee802154.h
10027 F:      include/net/cfg802154.h
10028 F:      include/net/ieee802154_netdev.h
10029 F:      include/net/mac802154.h
10030 F:      include/net/nl802154.h
10031 F:      net/ieee802154/
10032 F:      net/mac802154/
10033
10034 IFE PROTOCOL
10035 M:      Yotam Gigi <yotam.gi@gmail.com>
10036 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10037 F:      include/net/ife.h
10038 F:      include/uapi/linux/ife.h
10039 F:      net/ife
10040
10041 IGORPLUG-USB IR RECEIVER
10042 M:      Sean Young <sean@mess.org>
10043 L:      linux-media@vger.kernel.org
10044 S:      Maintained
10045 F:      drivers/media/rc/igorplugusb.c
10046
10047 IGUANAWORKS USB IR TRANSCEIVER
10048 M:      Sean Young <sean@mess.org>
10049 L:      linux-media@vger.kernel.org
10050 S:      Maintained
10051 F:      drivers/media/rc/iguanair.c
10052
10053 IIO DIGITAL POTENTIOMETER DAC
10054 M:      Peter Rosin <peda@axentia.se>
10055 L:      linux-iio@vger.kernel.org
10056 S:      Maintained
10057 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
10058 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
10059 F:      drivers/iio/dac/dpot-dac.c
10060
10061 IIO ENVELOPE DETECTOR
10062 M:      Peter Rosin <peda@axentia.se>
10063 L:      linux-iio@vger.kernel.org
10064 S:      Maintained
10065 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
10066 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
10067 F:      drivers/iio/adc/envelope-detector.c
10068
10069 IIO MULTIPLEXER
10070 M:      Peter Rosin <peda@axentia.se>
10071 L:      linux-iio@vger.kernel.org
10072 S:      Maintained
10073 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
10074 F:      drivers/iio/multiplexer/iio-mux.c
10075
10076 IIO SCMI BASED DRIVER
10077 M:      Jyoti Bhayana <jbhayana@google.com>
10078 L:      linux-iio@vger.kernel.org
10079 S:      Maintained
10080 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
10081
10082 IIO SUBSYSTEM AND DRIVERS
10083 M:      Jonathan Cameron <jic23@kernel.org>
10084 R:      Lars-Peter Clausen <lars@metafoo.de>
10085 L:      linux-iio@vger.kernel.org
10086 S:      Maintained
10087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
10088 F:      Documentation/ABI/testing/configfs-iio*
10089 F:      Documentation/ABI/testing/sysfs-bus-iio*
10090 F:      Documentation/devicetree/bindings/iio/
10091 F:      drivers/iio/
10092 F:      drivers/staging/iio/
10093 F:      include/dt-bindings/iio/
10094 F:      include/linux/iio/
10095 F:      tools/iio/
10096
10097 IIO UNIT CONVERTER
10098 M:      Peter Rosin <peda@axentia.se>
10099 L:      linux-iio@vger.kernel.org
10100 S:      Maintained
10101 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
10102 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
10103 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
10104 F:      drivers/iio/afe/iio-rescale.c
10105
10106 IKANOS/ADI EAGLE ADSL USB DRIVER
10107 M:      Matthieu Castet <castet.matthieu@free.fr>
10108 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10109 S:      Maintained
10110 F:      drivers/usb/atm/ueagle-atm.c
10111
10112 IMAGIS TOUCHSCREEN DRIVER
10113 M:      Markuss Broks <markuss.broks@gmail.com>
10114 S:      Maintained
10115 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
10116 F:      drivers/input/touchscreen/imagis.c
10117
10118 IMGTEC ASCII LCD DRIVER
10119 M:      Paul Burton <paulburton@kernel.org>
10120 S:      Maintained
10121 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
10122 F:      drivers/auxdisplay/img-ascii-lcd.c
10123
10124 IMGTEC IR DECODER DRIVER
10125 S:      Orphan
10126 F:      drivers/media/rc/img-ir/
10127
10128 IMON SOUNDGRAPH USB IR RECEIVER
10129 M:      Sean Young <sean@mess.org>
10130 L:      linux-media@vger.kernel.org
10131 S:      Maintained
10132 F:      drivers/media/rc/imon.c
10133 F:      drivers/media/rc/imon_raw.c
10134
10135 IMS TWINTURBO FRAMEBUFFER DRIVER
10136 L:      linux-fbdev@vger.kernel.org
10137 S:      Orphan
10138 F:      drivers/video/fbdev/imsttfb.c
10139
10140 INA209 HARDWARE MONITOR DRIVER
10141 M:      Guenter Roeck <linux@roeck-us.net>
10142 L:      linux-hwmon@vger.kernel.org
10143 S:      Maintained
10144 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
10145 F:      Documentation/hwmon/ina209.rst
10146 F:      drivers/hwmon/ina209.c
10147
10148 INA2XX HARDWARE MONITOR DRIVER
10149 M:      Guenter Roeck <linux@roeck-us.net>
10150 L:      linux-hwmon@vger.kernel.org
10151 S:      Maintained
10152 F:      Documentation/hwmon/ina2xx.rst
10153 F:      drivers/hwmon/ina2xx.c
10154 F:      include/linux/platform_data/ina2xx.h
10155
10156 INDEX OF FURTHER KERNEL DOCUMENTATION
10157 M:      Carlos Bilbao <carlos.bilbao@amd.com>
10158 S:      Maintained
10159 F:      Documentation/process/kernel-docs.rst
10160
10161 INDUSTRY PACK SUBSYSTEM (IPACK)
10162 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
10163 M:      Jens Taprogge <jens.taprogge@taprogge.org>
10164 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10165 L:      industrypack-devel@lists.sourceforge.net
10166 S:      Maintained
10167 W:      http://industrypack.sourceforge.net
10168 F:      drivers/ipack/
10169
10170 INFINEON DPS310 Driver
10171 M:      Eddie James <eajames@linux.ibm.com>
10172 L:      linux-iio@vger.kernel.org
10173 S:      Maintained
10174 F:      drivers/iio/pressure/dps310.c
10175
10176 INFINIBAND SUBSYSTEM
10177 M:      Jason Gunthorpe <jgg@nvidia.com>
10178 M:      Leon Romanovsky <leonro@nvidia.com>
10179 L:      linux-rdma@vger.kernel.org
10180 S:      Supported
10181 W:      https://github.com/linux-rdma/rdma-core
10182 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10184 F:      Documentation/devicetree/bindings/infiniband/
10185 F:      Documentation/infiniband/
10186 F:      drivers/infiniband/
10187 F:      include/rdma/
10188 F:      include/trace/events/ib_mad.h
10189 F:      include/trace/events/ib_umad.h
10190 F:      include/trace/misc/rdma.h
10191 F:      include/uapi/linux/if_infiniband.h
10192 F:      include/uapi/rdma/
10193 F:      samples/bpf/ibumad_kern.c
10194 F:      samples/bpf/ibumad_user.c
10195
10196 INGENIC JZ4780 NAND DRIVER
10197 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10198 L:      linux-mtd@lists.infradead.org
10199 L:      linux-mips@vger.kernel.org
10200 S:      Maintained
10201 F:      drivers/mtd/nand/raw/ingenic/
10202
10203 INGENIC JZ47xx SoCs
10204 M:      Paul Cercueil <paul@crapouillou.net>
10205 L:      linux-mips@vger.kernel.org
10206 S:      Maintained
10207 F:      arch/mips/boot/dts/ingenic/
10208 F:      arch/mips/generic/board-ingenic.c
10209 F:      arch/mips/include/asm/mach-ingenic/
10210 F:      arch/mips/ingenic/Kconfig
10211 F:      drivers/clk/ingenic/
10212 F:      drivers/dma/dma-jz4780.c
10213 F:      drivers/gpu/drm/ingenic/
10214 F:      drivers/i2c/busses/i2c-jz4780.c
10215 F:      drivers/iio/adc/ingenic-adc.c
10216 F:      drivers/irqchip/irq-ingenic.c
10217 F:      drivers/memory/jz4780-nemc.c
10218 F:      drivers/mmc/host/jz4740_mmc.c
10219 F:      drivers/mtd/nand/raw/ingenic/
10220 F:      drivers/pinctrl/pinctrl-ingenic.c
10221 F:      drivers/power/supply/ingenic-battery.c
10222 F:      drivers/pwm/pwm-jz4740.c
10223 F:      drivers/remoteproc/ingenic_rproc.c
10224 F:      drivers/rtc/rtc-jz4740.c
10225 F:      drivers/tty/serial/8250/8250_ingenic.c
10226 F:      drivers/usb/musb/jz4740.c
10227 F:      drivers/watchdog/jz4740_wdt.c
10228 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10229 F:      include/linux/mfd/ingenic-tcu.h
10230 F:      sound/soc/codecs/jz47*
10231 F:      sound/soc/jz4740/
10232
10233 INJOINIC IP5xxx POWER BANK IC DRIVER
10234 M:      Samuel Holland <samuel@sholland.org>
10235 S:      Maintained
10236 F:      drivers/power/supply/ip5xxx_power.c
10237
10238 INOTIFY
10239 M:      Jan Kara <jack@suse.cz>
10240 R:      Amir Goldstein <amir73il@gmail.com>
10241 L:      linux-fsdevel@vger.kernel.org
10242 S:      Maintained
10243 F:      Documentation/filesystems/inotify.rst
10244 F:      fs/notify/inotify/
10245 F:      include/linux/inotify.h
10246 F:      include/uapi/linux/inotify.h
10247
10248 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10249 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10250 L:      linux-input@vger.kernel.org
10251 S:      Maintained
10252 Q:      http://patchwork.kernel.org/project/linux-input/list/
10253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10254 F:      Documentation/devicetree/bindings/input/
10255 F:      Documentation/devicetree/bindings/serio/
10256 F:      Documentation/input/
10257 F:      drivers/input/
10258 F:      include/dt-bindings/input/
10259 F:      include/linux/input.h
10260 F:      include/linux/input/
10261 F:      include/uapi/linux/input-event-codes.h
10262 F:      include/uapi/linux/input.h
10263
10264 INPUT MULTITOUCH (MT) PROTOCOL
10265 M:      Henrik Rydberg <rydberg@bitmath.org>
10266 L:      linux-input@vger.kernel.org
10267 S:      Odd fixes
10268 F:      Documentation/input/multi-touch-protocol.rst
10269 F:      drivers/input/input-mt.c
10270 K:      \b(ABS|SYN)_MT_
10271
10272 INSIDE SECURE CRYPTO DRIVER
10273 M:      Antoine Tenart <atenart@kernel.org>
10274 L:      linux-crypto@vger.kernel.org
10275 S:      Maintained
10276 F:      drivers/crypto/inside-secure/
10277
10278 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10279 M:      Mimi Zohar <zohar@linux.ibm.com>
10280 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10281 L:      linux-integrity@vger.kernel.org
10282 S:      Supported
10283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10284 F:      security/integrity/ima/
10285 F:      security/integrity/
10286
10287 INTEL 810/815 FRAMEBUFFER DRIVER
10288 M:      Antonino Daplas <adaplas@gmail.com>
10289 L:      linux-fbdev@vger.kernel.org
10290 S:      Maintained
10291 F:      drivers/video/fbdev/i810/
10292
10293 INTEL 8255 GPIO DRIVER
10294 M:      William Breathitt Gray <william.gray@linaro.org>
10295 L:      linux-gpio@vger.kernel.org
10296 S:      Maintained
10297 F:      drivers/gpio/gpio-i8255.c
10298 F:      drivers/gpio/gpio-i8255.h
10299
10300 INTEL ASoC DRIVERS
10301 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10302 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10303 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10304 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10305 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10306 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10307 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10308 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10309 S:      Supported
10310 F:      sound/soc/intel/
10311
10312 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10313 M:      Hans de Goede <hdegoede@redhat.com>
10314 L:      platform-driver-x86@vger.kernel.org
10315 S:      Maintained
10316 F:      drivers/platform/x86/intel/atomisp2/pm.c
10317
10318 INTEL ATOMISP2 LED DRIVER
10319 M:      Hans de Goede <hdegoede@redhat.com>
10320 L:      platform-driver-x86@vger.kernel.org
10321 S:      Maintained
10322 F:      drivers/platform/x86/intel/atomisp2/led.c
10323
10324 INTEL BIOS SAR INT1092 DRIVER
10325 M:      Shravan Sudhakar <s.shravan@intel.com>
10326 M:      Intel Corporation <linuxwwan@intel.com>
10327 L:      platform-driver-x86@vger.kernel.org
10328 S:      Maintained
10329 F:      drivers/platform/x86/intel/int1092/
10330
10331 INTEL BROXTON PMC DRIVER
10332 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10333 M:      Zha Qipeng <qipeng.zha@intel.com>
10334 S:      Maintained
10335 F:      drivers/mfd/intel_pmc_bxt.c
10336 F:      include/linux/mfd/intel_pmc_bxt.h
10337
10338 INTEL C600 SERIES SAS CONTROLLER DRIVER
10339 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10340 L:      linux-scsi@vger.kernel.org
10341 S:      Supported
10342 T:      git git://git.code.sf.net/p/intel-sas/isci
10343 F:      drivers/scsi/isci/
10344
10345 INTEL CPU family model numbers
10346 M:      Tony Luck <tony.luck@intel.com>
10347 M:      x86@kernel.org
10348 L:      linux-kernel@vger.kernel.org
10349 S:      Supported
10350 F:      arch/x86/include/asm/intel-family.h
10351
10352 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10353 M:      Jani Nikula <jani.nikula@linux.intel.com>
10354 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10355 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10356 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10357 L:      intel-gfx@lists.freedesktop.org
10358 S:      Supported
10359 W:      https://01.org/linuxgraphics/
10360 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10361 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10362 C:      irc://irc.oftc.net/intel-gfx
10363 T:      git git://anongit.freedesktop.org/drm-intel
10364 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10365 F:      Documentation/gpu/i915.rst
10366 F:      drivers/gpu/drm/i915/
10367 F:      include/drm/i915*
10368 F:      include/uapi/drm/i915_drm.h
10369
10370 INTEL ETHERNET DRIVERS
10371 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10372 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10373 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10374 S:      Supported
10375 W:      http://www.intel.com/support/feedback.htm
10376 W:      http://e1000.sourceforge.net/
10377 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10380 F:      Documentation/networking/device_drivers/ethernet/intel/
10381 F:      drivers/net/ethernet/intel/
10382 F:      drivers/net/ethernet/intel/*/
10383 F:      include/linux/avf/virtchnl.h
10384 F:      include/linux/net/intel/iidc.h
10385
10386 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10387 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10388 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10389 L:      linux-rdma@vger.kernel.org
10390 S:      Supported
10391 F:      drivers/infiniband/hw/irdma/
10392 F:      include/uapi/rdma/irdma-abi.h
10393
10394 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10395 M:      Maik Broemme <mbroemme@libmpq.org>
10396 L:      linux-fbdev@vger.kernel.org
10397 S:      Maintained
10398 F:      Documentation/fb/intelfb.rst
10399 F:      drivers/video/fbdev/intelfb/
10400
10401 INTEL GPIO DRIVERS
10402 M:      Andy Shevchenko <andy@kernel.org>
10403 L:      linux-gpio@vger.kernel.org
10404 S:      Supported
10405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10406 F:      drivers/gpio/gpio-ich.c
10407 F:      drivers/gpio/gpio-merrifield.c
10408 F:      drivers/gpio/gpio-ml-ioh.c
10409 F:      drivers/gpio/gpio-pch.c
10410 F:      drivers/gpio/gpio-sch.c
10411 F:      drivers/gpio/gpio-sodaville.c
10412
10413 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10414 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10415 M:      Zhi Wang <zhi.a.wang@intel.com>
10416 L:      intel-gvt-dev@lists.freedesktop.org
10417 L:      intel-gfx@lists.freedesktop.org
10418 S:      Supported
10419 W:      https://01.org/igvt-g
10420 T:      git https://github.com/intel/gvt-linux.git
10421 F:      drivers/gpu/drm/i915/gvt/
10422
10423 INTEL HID EVENT DRIVER
10424 M:      Alex Hung <alexhung@gmail.com>
10425 L:      platform-driver-x86@vger.kernel.org
10426 S:      Maintained
10427 F:      drivers/platform/x86/intel/hid.c
10428
10429 INTEL I/OAT DMA DRIVER
10430 M:      Dave Jiang <dave.jiang@intel.com>
10431 R:      Dan Williams <dan.j.williams@intel.com>
10432 L:      dmaengine@vger.kernel.org
10433 S:      Supported
10434 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10435 F:      drivers/dma/ioat*
10436
10437 INTEL IDXD DRIVER
10438 M:      Fenghua Yu <fenghua.yu@intel.com>
10439 M:      Dave Jiang <dave.jiang@intel.com>
10440 L:      dmaengine@vger.kernel.org
10441 S:      Supported
10442 F:      drivers/dma/idxd/*
10443 F:      include/uapi/linux/idxd.h
10444
10445 INTEL IDLE DRIVER
10446 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10447 M:      Len Brown <lenb@kernel.org>
10448 L:      linux-pm@vger.kernel.org
10449 S:      Supported
10450 B:      https://bugzilla.kernel.org
10451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10452 F:      drivers/idle/intel_idle.c
10453
10454 INTEL IN FIELD SCAN (IFS) DEVICE
10455 M:      Jithu Joseph <jithu.joseph@intel.com>
10456 R:      Ashok Raj <ashok.raj@intel.com>
10457 R:      Tony Luck <tony.luck@intel.com>
10458 S:      Maintained
10459 F:      drivers/platform/x86/intel/ifs
10460 F:      include/trace/events/intel_ifs.h
10461
10462 INTEL INTEGRATED SENSOR HUB DRIVER
10463 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10464 M:      Jiri Kosina <jikos@kernel.org>
10465 L:      linux-input@vger.kernel.org
10466 S:      Maintained
10467 F:      drivers/hid/intel-ish-hid/
10468
10469 INTEL IOMMU (VT-d)
10470 M:      David Woodhouse <dwmw2@infradead.org>
10471 M:      Lu Baolu <baolu.lu@linux.intel.com>
10472 L:      iommu@lists.linux.dev
10473 S:      Supported
10474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10475 F:      drivers/iommu/intel/
10476 F:      include/linux/intel-svm.h
10477
10478 INTEL IPU3 CSI-2 CIO2 DRIVER
10479 M:      Yong Zhi <yong.zhi@intel.com>
10480 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10481 M:      Bingbu Cao <bingbu.cao@intel.com>
10482 M:      Dan Scally <djrscally@gmail.com>
10483 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10484 L:      linux-media@vger.kernel.org
10485 S:      Maintained
10486 T:      git git://linuxtv.org/media_tree.git
10487 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10488 F:      drivers/media/pci/intel/ipu3/
10489
10490 INTEL IPU3 CSI-2 IMGU DRIVER
10491 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10492 R:      Bingbu Cao <bingbu.cao@intel.com>
10493 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10494 L:      linux-media@vger.kernel.org
10495 S:      Maintained
10496 F:      Documentation/admin-guide/media/ipu3.rst
10497 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10498 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10499 F:      drivers/staging/media/ipu3/
10500
10501 INTEL IXP4XX CRYPTO SUPPORT
10502 M:      Corentin Labbe <clabbe@baylibre.com>
10503 L:      linux-crypto@vger.kernel.org
10504 S:      Maintained
10505 F:      drivers/crypto/ixp4xx_crypto.c
10506
10507 INTEL ISHTP ECLITE DRIVER
10508 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10509 L:      platform-driver-x86@vger.kernel.org
10510 S:      Supported
10511 F:      drivers/platform/x86/intel/ishtp_eclite.c
10512
10513 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10514 M:      Krzysztof Halasa <khalasa@piap.pl>
10515 S:      Maintained
10516 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10517 F:      drivers/net/wan/ixp4xx_hss.c
10518 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10519 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10520 F:      include/linux/soc/ixp4xx/npe.h
10521 F:      include/linux/soc/ixp4xx/qmgr.h
10522
10523 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10524 M:      Deepak Saxena <dsaxena@plexity.net>
10525 S:      Maintained
10526 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10527 F:      drivers/char/hw_random/ixp4xx-rng.c
10528
10529 INTEL KEEM BAY DRM DRIVER
10530 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10531 M:      Edmund Dea <edmund.j.dea@intel.com>
10532 S:      Maintained
10533 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10534 F:      drivers/gpu/drm/kmb/
10535
10536 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10537 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10538 S:      Maintained
10539 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10540 F:      drivers/crypto/keembay/Kconfig
10541 F:      drivers/crypto/keembay/Makefile
10542 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10543 F:      drivers/crypto/keembay/ocs-aes.c
10544 F:      drivers/crypto/keembay/ocs-aes.h
10545
10546 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10547 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10548 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10549 M:      Mark Gross <mgross@linux.intel.com>
10550 S:      Maintained
10551 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10552 F:      drivers/crypto/keembay/Kconfig
10553 F:      drivers/crypto/keembay/Makefile
10554 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10555
10556 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10557 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10558 M:      Declan Murphy <declan.murphy@intel.com>
10559 S:      Maintained
10560 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10561 F:      drivers/crypto/keembay/Kconfig
10562 F:      drivers/crypto/keembay/Makefile
10563 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10564 F:      drivers/crypto/keembay/ocs-hcu.c
10565 F:      drivers/crypto/keembay/ocs-hcu.h
10566
10567 INTEL THUNDER BAY EMMC PHY DRIVER
10568 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10569 M:      Rashmi A <rashmi.a@intel.com>
10570 S:      Maintained
10571 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10572 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10573
10574 INTEL MANAGEMENT ENGINE (mei)
10575 M:      Tomas Winkler <tomas.winkler@intel.com>
10576 L:      linux-kernel@vger.kernel.org
10577 S:      Supported
10578 F:      Documentation/driver-api/mei/*
10579 F:      drivers/misc/mei/
10580 F:      drivers/watchdog/mei_wdt.c
10581 F:      include/linux/mei_aux.h
10582 F:      include/linux/mei_cl_bus.h
10583 F:      include/uapi/linux/mei.h
10584 F:      include/uapi/linux/uuid.h
10585 F:      samples/mei/*
10586
10587 INTEL MAX 10 BMC MFD DRIVER
10588 M:      Xu Yilun <yilun.xu@intel.com>
10589 R:      Tom Rix <trix@redhat.com>
10590 S:      Maintained
10591 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10592 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10593 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10594 F:      drivers/mfd/intel-m10-bmc*
10595 F:      include/linux/mfd/intel-m10-bmc.h
10596
10597 INTEL MENLOW THERMAL DRIVER
10598 M:      Sujith Thomas <sujith.thomas@intel.com>
10599 L:      linux-pm@vger.kernel.org
10600 S:      Supported
10601 F:      drivers/thermal/intel/intel_menlow.c
10602
10603 INTEL P-Unit IPC DRIVER
10604 M:      Zha Qipeng <qipeng.zha@intel.com>
10605 L:      platform-driver-x86@vger.kernel.org
10606 S:      Maintained
10607 F:      arch/x86/include/asm/intel_punit_ipc.h
10608 F:      drivers/platform/x86/intel/punit_ipc.c
10609
10610 INTEL PMC CORE DRIVER
10611 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10612 M:      David E Box <david.e.box@intel.com>
10613 L:      platform-driver-x86@vger.kernel.org
10614 S:      Maintained
10615 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10616 F:      drivers/platform/x86/intel/pmc/
10617
10618 INTEL PMIC GPIO DRIVERS
10619 M:      Andy Shevchenko <andy@kernel.org>
10620 S:      Supported
10621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10622 F:      drivers/gpio/gpio-*cove.c
10623
10624 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10625 M:      Andy Shevchenko <andy@kernel.org>
10626 S:      Supported
10627 F:      drivers/mfd/intel_soc_pmic*
10628 F:      include/linux/mfd/intel_soc_pmic*
10629
10630 INTEL PMT DRIVERS
10631 M:      David E. Box <david.e.box@linux.intel.com>
10632 S:      Supported
10633 F:      drivers/platform/x86/intel/pmt/
10634
10635 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10636 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10637 L:      linux-wireless@vger.kernel.org
10638 S:      Maintained
10639 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10640 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10641 F:      drivers/net/wireless/intel/ipw2x00/
10642
10643 INTEL PSTATE DRIVER
10644 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10645 M:      Len Brown <lenb@kernel.org>
10646 L:      linux-pm@vger.kernel.org
10647 S:      Supported
10648 F:      drivers/cpufreq/intel_pstate.c
10649
10650 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10651 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10652 L:      linux-iio@vger.kernel.org
10653 F:      drivers/counter/intel-qep.c
10654
10655 INTEL SCU DRIVERS
10656 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10657 S:      Maintained
10658 F:      arch/x86/include/asm/intel_scu_ipc.h
10659 F:      drivers/platform/x86/intel_scu_*
10660
10661 INTEL SDSI DRIVER
10662 M:      David E. Box <david.e.box@linux.intel.com>
10663 S:      Supported
10664 F:      drivers/platform/x86/intel/sdsi.c
10665 F:      tools/arch/x86/intel_sdsi/
10666 F:      tools/testing/selftests/drivers/sdsi/
10667
10668 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10669 M:      Daniel Scally <djrscally@gmail.com>
10670 S:      Maintained
10671 F:      drivers/platform/x86/intel/int3472/
10672
10673 INTEL SPEED SELECT TECHNOLOGY
10674 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10675 L:      platform-driver-x86@vger.kernel.org
10676 S:      Maintained
10677 F:      drivers/platform/x86/intel/speed_select_if/
10678 F:      include/uapi/linux/isst_if.h
10679 F:      tools/power/x86/intel-speed-select/
10680
10681 INTEL STRATIX10 FIRMWARE DRIVERS
10682 M:      Dinh Nguyen <dinguyen@kernel.org>
10683 L:      linux-kernel@vger.kernel.org
10684 S:      Maintained
10685 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10686 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10687 F:      drivers/firmware/stratix10-rsu.c
10688 F:      drivers/firmware/stratix10-svc.c
10689 F:      include/linux/firmware/intel/stratix10-smc.h
10690 F:      include/linux/firmware/intel/stratix10-svc-client.h
10691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10692
10693 INTEL TELEMETRY DRIVER
10694 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10695 M:      "David E. Box" <david.e.box@linux.intel.com>
10696 L:      platform-driver-x86@vger.kernel.org
10697 S:      Maintained
10698 F:      arch/x86/include/asm/intel_telemetry.h
10699 F:      drivers/platform/x86/intel/telemetry/
10700
10701 INTEL UNCORE FREQUENCY CONTROL
10702 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10703 L:      platform-driver-x86@vger.kernel.org
10704 S:      Maintained
10705 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10706 F:      drivers/platform/x86/intel/uncore-frequency/
10707
10708 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10709 M:      David E. Box <david.e.box@linux.intel.com>
10710 S:      Supported
10711 F:      drivers/platform/x86/intel/vsec.*
10712
10713 INTEL VIRTUAL BUTTON DRIVER
10714 M:      AceLan Kao <acelan.kao@canonical.com>
10715 L:      platform-driver-x86@vger.kernel.org
10716 S:      Maintained
10717 F:      drivers/platform/x86/intel/vbtn.c
10718
10719 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10720 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10721 L:      linux-wireless@vger.kernel.org
10722 S:      Supported
10723 F:      drivers/net/wireless/intel/iwlegacy/
10724
10725 INTEL WIRELESS WIFI LINK (iwlwifi)
10726 M:      Gregory Greenman <gregory.greenman@intel.com>
10727 L:      linux-wireless@vger.kernel.org
10728 S:      Supported
10729 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10731 F:      drivers/net/wireless/intel/iwlwifi/
10732
10733 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10734 M:      Jithu Joseph <jithu.joseph@intel.com>
10735 R:      Maurice Ma <maurice.ma@intel.com>
10736 S:      Maintained
10737 W:      https://slimbootloader.github.io/security/firmware-update.html
10738 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10739
10740 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10741 L:      Dell.Client.Kernel@dell.com
10742 S:      Maintained
10743 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10744
10745 INTEL WWAN IOSM DRIVER
10746 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10747 M:      Intel Corporation <linuxwwan@intel.com>
10748 L:      netdev@vger.kernel.org
10749 S:      Maintained
10750 F:      drivers/net/wwan/iosm/
10751
10752 INTEL(R) TRACE HUB
10753 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10754 S:      Supported
10755 F:      Documentation/trace/intel_th.rst
10756 F:      drivers/hwtracing/intel_th/
10757 F:      include/linux/intel_th.h
10758
10759 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10760 M:      Ning Sun <ning.sun@intel.com>
10761 L:      tboot-devel@lists.sourceforge.net
10762 S:      Supported
10763 W:      http://tboot.sourceforge.net
10764 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10765 F:      Documentation/x86/intel_txt.rst
10766 F:      arch/x86/kernel/tboot.c
10767 F:      include/linux/tboot.h
10768
10769 INTEL SGX
10770 M:      Jarkko Sakkinen <jarkko@kernel.org>
10771 R:      Dave Hansen <dave.hansen@linux.intel.com>
10772 L:      linux-sgx@vger.kernel.org
10773 S:      Supported
10774 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10776 F:      Documentation/x86/sgx.rst
10777 F:      arch/x86/entry/vdso/vsgx.S
10778 F:      arch/x86/include/asm/sgx.h
10779 F:      arch/x86/include/uapi/asm/sgx.h
10780 F:      arch/x86/kernel/cpu/sgx/*
10781 F:      tools/testing/selftests/sgx/*
10782 K:      \bSGX_
10783
10784 INTERCONNECT API
10785 M:      Georgi Djakov <djakov@kernel.org>
10786 L:      linux-pm@vger.kernel.org
10787 S:      Maintained
10788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10789 F:      Documentation/devicetree/bindings/interconnect/
10790 F:      Documentation/driver-api/interconnect.rst
10791 F:      drivers/interconnect/
10792 F:      include/dt-bindings/interconnect/
10793 F:      include/linux/interconnect-provider.h
10794 F:      include/linux/interconnect.h
10795
10796 INTERRUPT COUNTER DRIVER
10797 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10798 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10799 L:      linux-iio@vger.kernel.org
10800 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10801 F:      drivers/counter/interrupt-cnt.c
10802
10803 INTERSIL ISL7998X VIDEO DECODER DRIVER
10804 M:      Michael Tretter <m.tretter@pengutronix.de>
10805 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10806 L:      linux-media@vger.kernel.org
10807 S:      Maintained
10808 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10809 F:      drivers/media/i2c/isl7998x.c
10810
10811 INVENSENSE ICM-426xx IMU DRIVER
10812 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10813 L:      linux-iio@vger.kernel.org
10814 S:      Maintained
10815 W:      https://invensense.tdk.com/
10816 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10817 F:      drivers/iio/imu/inv_icm42600/
10818
10819 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10820 M:      Linus Walleij <linus.walleij@linaro.org>
10821 L:      linux-iio@vger.kernel.org
10822 S:      Maintained
10823 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10824 F:      drivers/iio/gyro/mpu3050*
10825
10826 IOC3 ETHERNET DRIVER
10827 M:      Ralf Baechle <ralf@linux-mips.org>
10828 L:      linux-mips@vger.kernel.org
10829 S:      Maintained
10830 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10831
10832 IOMAP FILESYSTEM LIBRARY
10833 M:      Christoph Hellwig <hch@infradead.org>
10834 M:      Darrick J. Wong <djwong@kernel.org>
10835 L:      linux-xfs@vger.kernel.org
10836 L:      linux-fsdevel@vger.kernel.org
10837 S:      Supported
10838 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10839 F:      fs/iomap/
10840 F:      include/linux/iomap.h
10841
10842 IOMMU DMA-API LAYER
10843 M:      Robin Murphy <robin.murphy@arm.com>
10844 L:      iommu@lists.linux.dev
10845 S:      Maintained
10846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10847 F:      drivers/iommu/dma-iommu.c
10848 F:      drivers/iommu/dma-iommu.h
10849 F:      drivers/iommu/iova.c
10850 F:      include/linux/iova.h
10851
10852 IOMMUFD
10853 M:      Jason Gunthorpe <jgg@nvidia.com>
10854 M:      Kevin Tian <kevin.tian@intel.com>
10855 L:      iommu@lists.linux.dev
10856 S:      Maintained
10857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10858 F:      Documentation/userspace-api/iommufd.rst
10859 F:      drivers/iommu/iommufd/
10860 F:      include/linux/iommufd.h
10861 F:      include/uapi/linux/iommufd.h
10862 F:      tools/testing/selftests/iommu/
10863
10864 IOMMU SUBSYSTEM
10865 M:      Joerg Roedel <joro@8bytes.org>
10866 M:      Will Deacon <will@kernel.org>
10867 R:      Robin Murphy <robin.murphy@arm.com>
10868 L:      iommu@lists.linux.dev
10869 S:      Maintained
10870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10871 F:      Documentation/devicetree/bindings/iommu/
10872 F:      Documentation/userspace-api/iommu.rst
10873 F:      drivers/iommu/
10874 F:      include/linux/iommu.h
10875 F:      include/linux/iova.h
10876 F:      include/linux/of_iommu.h
10877 F:      include/uapi/linux/iommu.h
10878
10879 IOSYS-MAP HELPERS
10880 M:      Thomas Zimmermann <tzimmermann@suse.de>
10881 L:      dri-devel@lists.freedesktop.org
10882 S:      Maintained
10883 T:      git git://anongit.freedesktop.org/drm/drm-misc
10884 F:      include/linux/iosys-map.h
10885
10886 IO_URING
10887 M:      Jens Axboe <axboe@kernel.dk>
10888 R:      Pavel Begunkov <asml.silence@gmail.com>
10889 L:      io-uring@vger.kernel.org
10890 S:      Maintained
10891 T:      git git://git.kernel.dk/linux-block
10892 T:      git git://git.kernel.dk/liburing
10893 F:      io_uring/
10894 F:      include/linux/io_uring.h
10895 F:      include/linux/io_uring_types.h
10896 F:      include/trace/events/io_uring.h
10897 F:      include/uapi/linux/io_uring.h
10898 F:      tools/io_uring/
10899
10900 IPMI SUBSYSTEM
10901 M:      Corey Minyard <minyard@acm.org>
10902 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10903 S:      Supported
10904 W:      http://openipmi.sourceforge.net/
10905 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10906 F:      Documentation/driver-api/ipmi.rst
10907 F:      Documentation/devicetree/bindings/ipmi/
10908 F:      drivers/char/ipmi/
10909 F:      include/linux/ipmi*
10910 F:      include/uapi/linux/ipmi*
10911
10912 IPS SCSI RAID DRIVER
10913 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10914 L:      linux-scsi@vger.kernel.org
10915 S:      Maintained
10916 W:      http://www.adaptec.com/
10917 F:      drivers/scsi/ips*
10918
10919 IPVS
10920 M:      Simon Horman <horms@verge.net.au>
10921 M:      Julian Anastasov <ja@ssi.bg>
10922 L:      netdev@vger.kernel.org
10923 L:      lvs-devel@vger.kernel.org
10924 S:      Maintained
10925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10927 F:      Documentation/networking/ipvs-sysctl.rst
10928 F:      include/net/ip_vs.h
10929 F:      include/uapi/linux/ip_vs.h
10930 F:      net/netfilter/ipvs/
10931
10932 IPWIRELESS DRIVER
10933 M:      Jiri Kosina <jikos@kernel.org>
10934 M:      David Sterba <dsterba@suse.com>
10935 S:      Odd Fixes
10936 F:      drivers/tty/ipwireless/
10937
10938 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10939 M:      Marc Zyngier <maz@kernel.org>
10940 S:      Maintained
10941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10942 F:      Documentation/core-api/irq/irq-domain.rst
10943 F:      include/linux/irqdomain.h
10944 F:      kernel/irq/irqdomain.c
10945 F:      kernel/irq/msi.c
10946
10947 IRQ SUBSYSTEM
10948 M:      Thomas Gleixner <tglx@linutronix.de>
10949 L:      linux-kernel@vger.kernel.org
10950 S:      Maintained
10951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10952 F:      kernel/irq/
10953
10954 IRQCHIP DRIVERS
10955 M:      Thomas Gleixner <tglx@linutronix.de>
10956 M:      Marc Zyngier <maz@kernel.org>
10957 L:      linux-kernel@vger.kernel.org
10958 S:      Maintained
10959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10960 F:      Documentation/devicetree/bindings/interrupt-controller/
10961 F:      drivers/irqchip/
10962
10963 ISA
10964 M:      William Breathitt Gray <william.gray@linaro.org>
10965 S:      Maintained
10966 F:      Documentation/driver-api/isa.rst
10967 F:      drivers/base/isa.c
10968 F:      include/linux/isa.h
10969
10970 ISA RADIO MODULE
10971 M:      Hans Verkuil <hverkuil@xs4all.nl>
10972 L:      linux-media@vger.kernel.org
10973 S:      Maintained
10974 W:      https://linuxtv.org
10975 T:      git git://linuxtv.org/media_tree.git
10976 F:      drivers/media/radio/radio-isa*
10977
10978 ISAPNP
10979 M:      Jaroslav Kysela <perex@perex.cz>
10980 S:      Maintained
10981 F:      Documentation/driver-api/isapnp.rst
10982 F:      drivers/pnp/isapnp/
10983 F:      include/linux/isapnp.h
10984
10985 ISCSI
10986 M:      Lee Duncan <lduncan@suse.com>
10987 M:      Chris Leech <cleech@redhat.com>
10988 M:      Mike Christie <michael.christie@oracle.com>
10989 L:      open-iscsi@googlegroups.com
10990 L:      linux-scsi@vger.kernel.org
10991 S:      Maintained
10992 W:      www.open-iscsi.com
10993 F:      drivers/scsi/*iscsi*
10994 F:      include/scsi/*iscsi*
10995
10996 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10997 M:      Peter Jones <pjones@redhat.com>
10998 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10999 S:      Maintained
11000 F:      drivers/firmware/iscsi_ibft*
11001
11002 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
11003 M:      Sagi Grimberg <sagi@grimberg.me>
11004 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
11005 L:      linux-rdma@vger.kernel.org
11006 S:      Supported
11007 W:      http://www.openfabrics.org
11008 W:      www.open-iscsi.org
11009 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11010 F:      drivers/infiniband/ulp/iser/
11011
11012 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
11013 M:      Sagi Grimberg <sagi@grimberg.me>
11014 L:      linux-rdma@vger.kernel.org
11015 L:      target-devel@vger.kernel.org
11016 S:      Supported
11017 W:      http://www.linux-iscsi.org
11018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
11019 F:      drivers/infiniband/ulp/isert
11020
11021 ISDN/CMTP OVER BLUETOOTH
11022 M:      Karsten Keil <isdn@linux-pingi.de>
11023 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
11024 L:      netdev@vger.kernel.org
11025 S:      Odd Fixes
11026 W:      http://www.isdn4linux.de
11027 F:      Documentation/isdn/
11028 F:      drivers/isdn/capi/
11029 F:      include/linux/isdn/
11030 F:      include/uapi/linux/isdn/
11031 F:      net/bluetooth/cmtp/
11032
11033 ISDN/mISDN SUBSYSTEM
11034 M:      Karsten Keil <isdn@linux-pingi.de>
11035 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
11036 L:      netdev@vger.kernel.org
11037 S:      Maintained
11038 W:      http://www.isdn4linux.de
11039 F:      drivers/isdn/Kconfig
11040 F:      drivers/isdn/Makefile
11041 F:      drivers/isdn/hardware/
11042 F:      drivers/isdn/mISDN/
11043
11044 ISOFS FILESYSTEM
11045 M:      Jan Kara <jack@suse.cz>
11046 L:      linux-fsdevel@vger.kernel.org
11047 S:      Maintained
11048 F:      Documentation/filesystems/isofs.rst
11049 F:      fs/isofs/
11050
11051 IT87 HARDWARE MONITORING DRIVER
11052 M:      Jean Delvare <jdelvare@suse.com>
11053 L:      linux-hwmon@vger.kernel.org
11054 S:      Maintained
11055 F:      Documentation/hwmon/it87.rst
11056 F:      drivers/hwmon/it87.c
11057
11058 IT913X MEDIA DRIVER
11059 M:      Antti Palosaari <crope@iki.fi>
11060 L:      linux-media@vger.kernel.org
11061 S:      Maintained
11062 W:      https://linuxtv.org
11063 W:      http://palosaari.fi/linux/
11064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11065 T:      git git://linuxtv.org/anttip/media_tree.git
11066 F:      drivers/media/tuners/it913x*
11067
11068 ITE IT66121 HDMI BRIDGE DRIVER
11069 M:      Phong LE <ple@baylibre.com>
11070 M:      Neil Armstrong <neil.armstrong@linaro.org>
11071 S:      Maintained
11072 T:      git git://anongit.freedesktop.org/drm/drm-misc
11073 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
11074 F:      drivers/gpu/drm/bridge/ite-it66121.c
11075
11076 IVTV VIDEO4LINUX DRIVER
11077 M:      Andy Walls <awalls@md.metrocast.net>
11078 L:      linux-media@vger.kernel.org
11079 S:      Maintained
11080 W:      https://linuxtv.org
11081 T:      git git://linuxtv.org/media_tree.git
11082 F:      Documentation/admin-guide/media/ivtv*
11083 F:      drivers/media/pci/ivtv/
11084 F:      include/uapi/linux/ivtv*
11085
11086 IX2505V MEDIA DRIVER
11087 M:      Malcolm Priestley <tvboxspy@gmail.com>
11088 L:      linux-media@vger.kernel.org
11089 S:      Maintained
11090 W:      https://linuxtv.org
11091 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11092 F:      drivers/media/dvb-frontends/ix2505v*
11093
11094 JAILHOUSE HYPERVISOR INTERFACE
11095 M:      Jan Kiszka <jan.kiszka@siemens.com>
11096 L:      jailhouse-dev@googlegroups.com
11097 S:      Maintained
11098 F:      arch/x86/include/asm/jailhouse_para.h
11099 F:      arch/x86/kernel/jailhouse.c
11100
11101 JC42.4 TEMPERATURE SENSOR DRIVER
11102 M:      Guenter Roeck <linux@roeck-us.net>
11103 L:      linux-hwmon@vger.kernel.org
11104 S:      Maintained
11105 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
11106 F:      Documentation/hwmon/jc42.rst
11107 F:      drivers/hwmon/jc42.c
11108
11109 JFS FILESYSTEM
11110 M:      Dave Kleikamp <shaggy@kernel.org>
11111 L:      jfs-discussion@lists.sourceforge.net
11112 S:      Odd Fixes
11113 W:      http://jfs.sourceforge.net/
11114 T:      git https://github.com/kleikamp/linux-shaggy.git
11115 F:      Documentation/admin-guide/jfs.rst
11116 F:      fs/jfs/
11117
11118 JME NETWORK DRIVER
11119 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
11120 L:      netdev@vger.kernel.org
11121 S:      Maintained
11122 F:      drivers/net/ethernet/jme.*
11123
11124 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
11125 M:      David Woodhouse <dwmw2@infradead.org>
11126 M:      Richard Weinberger <richard@nod.at>
11127 L:      linux-mtd@lists.infradead.org
11128 S:      Odd Fixes
11129 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
11130 T:      git git://git.infradead.org/ubifs-2.6.git
11131 F:      fs/jffs2/
11132 F:      include/uapi/linux/jffs2.h
11133
11134 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
11135 M:      "Theodore Ts'o" <tytso@mit.edu>
11136 M:      Jan Kara <jack@suse.com>
11137 L:      linux-ext4@vger.kernel.org
11138 S:      Maintained
11139 F:      fs/jbd2/
11140 F:      include/linux/jbd2.h
11141
11142 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
11143 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
11144 L:      linux-media@vger.kernel.org
11145 L:      linux-renesas-soc@vger.kernel.org
11146 S:      Maintained
11147 F:      drivers/media/platform/renesas/rcar_jpu.c
11148
11149 JSM Neo PCI based serial card
11150 L:      linux-serial@vger.kernel.org
11151 S:      Orphan
11152 F:      drivers/tty/serial/jsm/
11153
11154 K10TEMP HARDWARE MONITORING DRIVER
11155 M:      Clemens Ladisch <clemens@ladisch.de>
11156 L:      linux-hwmon@vger.kernel.org
11157 S:      Maintained
11158 F:      Documentation/hwmon/k10temp.rst
11159 F:      drivers/hwmon/k10temp.c
11160
11161 K8TEMP HARDWARE MONITORING DRIVER
11162 M:      Rudolf Marek <r.marek@assembler.cz>
11163 L:      linux-hwmon@vger.kernel.org
11164 S:      Maintained
11165 F:      Documentation/hwmon/k8temp.rst
11166 F:      drivers/hwmon/k8temp.c
11167
11168 KASAN
11169 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
11170 R:      Alexander Potapenko <glider@google.com>
11171 R:      Andrey Konovalov <andreyknvl@gmail.com>
11172 R:      Dmitry Vyukov <dvyukov@google.com>
11173 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
11174 L:      kasan-dev@googlegroups.com
11175 S:      Maintained
11176 F:      Documentation/dev-tools/kasan.rst
11177 F:      arch/*/include/asm/*kasan.h
11178 F:      arch/*/mm/kasan_init*
11179 F:      include/linux/kasan*.h
11180 F:      lib/Kconfig.kasan
11181 F:      mm/kasan/
11182 F:      scripts/Makefile.kasan
11183
11184 KCONFIG
11185 M:      Masahiro Yamada <masahiroy@kernel.org>
11186 L:      linux-kbuild@vger.kernel.org
11187 S:      Maintained
11188 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
11190 F:      Documentation/kbuild/kconfig*
11191 F:      scripts/Kconfig.include
11192 F:      scripts/kconfig/
11193
11194 KCOV
11195 R:      Dmitry Vyukov <dvyukov@google.com>
11196 R:      Andrey Konovalov <andreyknvl@gmail.com>
11197 L:      kasan-dev@googlegroups.com
11198 S:      Maintained
11199 F:      Documentation/dev-tools/kcov.rst
11200 F:      include/linux/kcov.h
11201 F:      include/uapi/linux/kcov.h
11202 F:      kernel/kcov.c
11203 F:      scripts/Makefile.kcov
11204
11205 KCSAN
11206 M:      Marco Elver <elver@google.com>
11207 R:      Dmitry Vyukov <dvyukov@google.com>
11208 L:      kasan-dev@googlegroups.com
11209 S:      Maintained
11210 F:      Documentation/dev-tools/kcsan.rst
11211 F:      include/linux/kcsan*.h
11212 F:      kernel/kcsan/
11213 F:      lib/Kconfig.kcsan
11214 F:      scripts/Makefile.kcsan
11215
11216 KDUMP
11217 M:      Baoquan He <bhe@redhat.com>
11218 R:      Vivek Goyal <vgoyal@redhat.com>
11219 R:      Dave Young <dyoung@redhat.com>
11220 L:      kexec@lists.infradead.org
11221 S:      Maintained
11222 W:      http://lse.sourceforge.net/kdump/
11223 F:      Documentation/admin-guide/kdump/
11224 F:      fs/proc/vmcore.c
11225 F:      include/linux/crash_core.h
11226 F:      include/linux/crash_dump.h
11227 F:      include/uapi/linux/vmcore.h
11228 F:      kernel/crash_*.c
11229
11230 KEENE FM RADIO TRANSMITTER DRIVER
11231 M:      Hans Verkuil <hverkuil@xs4all.nl>
11232 L:      linux-media@vger.kernel.org
11233 S:      Maintained
11234 W:      https://linuxtv.org
11235 T:      git git://linuxtv.org/media_tree.git
11236 F:      drivers/media/radio/radio-keene*
11237
11238 KERNEL AUTOMOUNTER
11239 M:      Ian Kent <raven@themaw.net>
11240 L:      autofs@vger.kernel.org
11241 S:      Maintained
11242 F:      fs/autofs/
11243
11244 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11245 M:      Masahiro Yamada <masahiroy@kernel.org>
11246 R:      Nathan Chancellor <nathan@kernel.org>
11247 R:      Nick Desaulniers <ndesaulniers@google.com>
11248 R:      Nicolas Schier <nicolas@fjasle.eu>
11249 L:      linux-kbuild@vger.kernel.org
11250 S:      Maintained
11251 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11253 F:      Documentation/kbuild/
11254 F:      Makefile
11255 F:      scripts/*vmlinux*
11256 F:      scripts/Kbuild*
11257 F:      scripts/Makefile*
11258 F:      scripts/basic/
11259 F:      scripts/dummy-tools/
11260 F:      scripts/mk*
11261 F:      scripts/mod/
11262 F:      scripts/package/
11263
11264 KERNEL HARDENING (not covered by other areas)
11265 M:      Kees Cook <keescook@chromium.org>
11266 L:      linux-hardening@vger.kernel.org
11267 S:      Supported
11268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11269 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11270 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11271 F:      include/linux/overflow.h
11272 F:      include/linux/randomize_kstack.h
11273 F:      mm/usercopy.c
11274 K:      \b(add|choose)_random_kstack_offset\b
11275 K:      \b__check_(object_size|heap_object)\b
11276
11277 KERNEL JANITORS
11278 L:      kernel-janitors@vger.kernel.org
11279 S:      Odd Fixes
11280 W:      http://kernelnewbies.org/KernelJanitors
11281
11282 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11283 M:      Chuck Lever <chuck.lever@oracle.com>
11284 M:      Jeff Layton <jlayton@kernel.org>
11285 L:      linux-nfs@vger.kernel.org
11286 S:      Supported
11287 W:      http://nfs.sourceforge.net/
11288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11289 F:      fs/exportfs/
11290 F:      fs/lockd/
11291 F:      fs/nfs_common/
11292 F:      fs/nfsd/
11293 F:      include/linux/lockd/
11294 F:      include/linux/sunrpc/
11295 F:      include/trace/events/rpcgss.h
11296 F:      include/trace/events/rpcrdma.h
11297 F:      include/trace/events/sunrpc.h
11298 F:      include/trace/misc/fs.h
11299 F:      include/trace/misc/nfs.h
11300 F:      include/trace/misc/sunrpc.h
11301 F:      include/uapi/linux/nfsd/
11302 F:      include/uapi/linux/sunrpc/
11303 F:      net/sunrpc/
11304 F:      Documentation/filesystems/nfs/
11305
11306 KERNEL REGRESSIONS
11307 M:      Thorsten Leemhuis <linux@leemhuis.info>
11308 L:      regressions@lists.linux.dev
11309 S:      Supported
11310 F:      Documentation/admin-guide/reporting-regressions.rst
11311 F:      Documentation/process/handling-regressions.rst
11312
11313 KERNEL SELFTEST FRAMEWORK
11314 M:      Shuah Khan <shuah@kernel.org>
11315 M:      Shuah Khan <skhan@linuxfoundation.org>
11316 L:      linux-kselftest@vger.kernel.org
11317 S:      Maintained
11318 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11320 F:      Documentation/dev-tools/kselftest*
11321 F:      tools/testing/selftests/
11322
11323 KERNEL SMB3 SERVER (KSMBD)
11324 M:      Namjae Jeon <linkinjeon@kernel.org>
11325 M:      Steve French <sfrench@samba.org>
11326 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11327 R:      Tom Talpey <tom@talpey.com>
11328 L:      linux-cifs@vger.kernel.org
11329 S:      Maintained
11330 T:      git git://git.samba.org/ksmbd.git
11331 F:      Documentation/filesystems/cifs/ksmbd.rst
11332 F:      fs/ksmbd/
11333 F:      fs/smbfs_common/
11334
11335 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11336 M:      Brendan Higgins <brendanhiggins@google.com>
11337 M:      David Gow <davidgow@google.com>
11338 L:      linux-kselftest@vger.kernel.org
11339 L:      kunit-dev@googlegroups.com
11340 S:      Maintained
11341 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11342 F:      Documentation/dev-tools/kunit/
11343 F:      include/kunit/
11344 F:      lib/kunit/
11345 F:      tools/testing/kunit/
11346
11347 KERNEL USERMODE HELPER
11348 M:      Luis Chamberlain <mcgrof@kernel.org>
11349 L:      linux-kernel@vger.kernel.org
11350 S:      Maintained
11351 F:      include/linux/umh.h
11352 F:      kernel/umh.c
11353
11354 KERNEL VIRTUAL MACHINE (KVM)
11355 M:      Paolo Bonzini <pbonzini@redhat.com>
11356 L:      kvm@vger.kernel.org
11357 S:      Supported
11358 W:      http://www.linux-kvm.org
11359 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11360 F:      Documentation/virt/kvm/
11361 F:      include/asm-generic/kvm*
11362 F:      include/kvm/iodev.h
11363 F:      include/linux/kvm*
11364 F:      include/trace/events/kvm.h
11365 F:      include/uapi/asm-generic/kvm*
11366 F:      include/uapi/linux/kvm*
11367 F:      tools/kvm/
11368 F:      tools/testing/selftests/kvm/
11369 F:      virt/kvm/*
11370
11371 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11372 M:      Marc Zyngier <maz@kernel.org>
11373 R:      James Morse <james.morse@arm.com>
11374 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11375 R:      Oliver Upton <oliver.upton@linux.dev>
11376 R:      Zenghui Yu <yuzenghui@huawei.com>
11377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11378 L:      kvmarm@lists.linux.dev
11379 L:      kvmarm@lists.cs.columbia.edu (deprecated, moderated for non-subscribers)
11380 S:      Maintained
11381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11382 F:      arch/arm64/include/asm/kvm*
11383 F:      arch/arm64/include/uapi/asm/kvm*
11384 F:      arch/arm64/kvm/
11385 F:      include/kvm/arm_*
11386 F:      tools/testing/selftests/kvm/*/aarch64/
11387 F:      tools/testing/selftests/kvm/aarch64/
11388
11389 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11390 M:      Huacai Chen <chenhuacai@kernel.org>
11391 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11392 L:      linux-mips@vger.kernel.org
11393 L:      kvm@vger.kernel.org
11394 S:      Maintained
11395 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11396 F:      arch/mips/include/asm/kvm*
11397 F:      arch/mips/include/uapi/asm/kvm*
11398 F:      arch/mips/kvm/
11399
11400 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11401 L:      linuxppc-dev@lists.ozlabs.org
11402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11403 F:      arch/powerpc/include/asm/kvm*
11404 F:      arch/powerpc/include/uapi/asm/kvm*
11405 F:      arch/powerpc/kernel/kvm*
11406 F:      arch/powerpc/kvm/
11407
11408 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11409 M:      Anup Patel <anup@brainfault.org>
11410 R:      Atish Patra <atishp@atishpatra.org>
11411 L:      kvm@vger.kernel.org
11412 L:      kvm-riscv@lists.infradead.org
11413 L:      linux-riscv@lists.infradead.org
11414 S:      Maintained
11415 T:      git https://github.com/kvm-riscv/linux.git
11416 F:      arch/riscv/include/asm/kvm*
11417 F:      arch/riscv/include/uapi/asm/kvm*
11418 F:      arch/riscv/kvm/
11419 F:      tools/testing/selftests/kvm/*/riscv/
11420
11421 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11422 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11423 M:      Janosch Frank <frankja@linux.ibm.com>
11424 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11425 R:      David Hildenbrand <david@redhat.com>
11426 L:      kvm@vger.kernel.org
11427 S:      Supported
11428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11429 F:      Documentation/virt/kvm/s390*
11430 F:      arch/s390/include/asm/gmap.h
11431 F:      arch/s390/include/asm/kvm*
11432 F:      arch/s390/include/uapi/asm/kvm*
11433 F:      arch/s390/include/uapi/asm/uvdevice.h
11434 F:      arch/s390/kernel/uv.c
11435 F:      arch/s390/kvm/
11436 F:      arch/s390/mm/gmap.c
11437 F:      drivers/s390/char/uvdevice.c
11438 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11439 F:      tools/testing/selftests/kvm/*/s390x/
11440 F:      tools/testing/selftests/kvm/s390x/
11441
11442 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11443 M:      Sean Christopherson <seanjc@google.com>
11444 M:      Paolo Bonzini <pbonzini@redhat.com>
11445 L:      kvm@vger.kernel.org
11446 S:      Supported
11447 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11448 F:      arch/x86/include/asm/kvm*
11449 F:      arch/x86/include/asm/svm.h
11450 F:      arch/x86/include/asm/vmx*.h
11451 F:      arch/x86/include/uapi/asm/kvm*
11452 F:      arch/x86/include/uapi/asm/svm.h
11453 F:      arch/x86/include/uapi/asm/vmx.h
11454 F:      arch/x86/kvm/
11455 F:      arch/x86/kvm/*/
11456
11457 KVM PARAVIRT (KVM/paravirt)
11458 M:      Paolo Bonzini <pbonzini@redhat.com>
11459 R:      Wanpeng Li <wanpengli@tencent.com>
11460 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11461 L:      kvm@vger.kernel.org
11462 S:      Supported
11463 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11464 F:      arch/x86/kernel/kvm.c
11465 F:      arch/x86/kernel/kvmclock.c
11466 F:      arch/x86/include/asm/pvclock-abi.h
11467 F:      include/linux/kvm_para.h
11468 F:      include/uapi/linux/kvm_para.h
11469 F:      include/uapi/asm-generic/kvm_para.h
11470 F:      include/asm-generic/kvm_para.h
11471 F:      arch/um/include/asm/kvm_para.h
11472 F:      arch/x86/include/asm/kvm_para.h
11473 F:      arch/x86/include/uapi/asm/kvm_para.h
11474
11475 KVM X86 HYPER-V (KVM/hyper-v)
11476 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11477 M:      Sean Christopherson <seanjc@google.com>
11478 M:      Paolo Bonzini <pbonzini@redhat.com>
11479 L:      kvm@vger.kernel.org
11480 S:      Supported
11481 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11482 F:      arch/x86/kvm/hyperv.*
11483 F:      arch/x86/kvm/kvm_onhyperv.*
11484 F:      arch/x86/kvm/svm/hyperv.*
11485 F:      arch/x86/kvm/svm/svm_onhyperv.*
11486 F:      arch/x86/kvm/vmx/hyperv.*
11487
11488 KVM X86 Xen (KVM/Xen)
11489 M:      David Woodhouse <dwmw2@infradead.org>
11490 M:      Paul Durrant <paul@xen.org>
11491 M:      Sean Christopherson <seanjc@google.com>
11492 M:      Paolo Bonzini <pbonzini@redhat.com>
11493 L:      kvm@vger.kernel.org
11494 S:      Supported
11495 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11496 F:      arch/x86/kvm/xen.*
11497
11498 KERNFS
11499 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11500 M:      Tejun Heo <tj@kernel.org>
11501 S:      Supported
11502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11503 F:      fs/kernfs/
11504 F:      include/linux/kernfs.h
11505
11506 KEXEC
11507 M:      Eric Biederman <ebiederm@xmission.com>
11508 L:      kexec@lists.infradead.org
11509 S:      Maintained
11510 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11511 F:      include/linux/kexec.h
11512 F:      include/uapi/linux/kexec.h
11513 F:      kernel/kexec*
11514
11515 KEYS-ENCRYPTED
11516 M:      Mimi Zohar <zohar@linux.ibm.com>
11517 L:      linux-integrity@vger.kernel.org
11518 L:      keyrings@vger.kernel.org
11519 S:      Supported
11520 F:      Documentation/security/keys/trusted-encrypted.rst
11521 F:      include/keys/encrypted-type.h
11522 F:      security/keys/encrypted-keys/
11523
11524 KEYS-TRUSTED
11525 M:      James Bottomley <jejb@linux.ibm.com>
11526 M:      Jarkko Sakkinen <jarkko@kernel.org>
11527 M:      Mimi Zohar <zohar@linux.ibm.com>
11528 L:      linux-integrity@vger.kernel.org
11529 L:      keyrings@vger.kernel.org
11530 S:      Supported
11531 F:      Documentation/security/keys/trusted-encrypted.rst
11532 F:      include/keys/trusted-type.h
11533 F:      include/keys/trusted_tpm.h
11534 F:      security/keys/trusted-keys/
11535
11536 KEYS-TRUSTED-TEE
11537 M:      Sumit Garg <sumit.garg@linaro.org>
11538 L:      linux-integrity@vger.kernel.org
11539 L:      keyrings@vger.kernel.org
11540 S:      Supported
11541 F:      include/keys/trusted_tee.h
11542 F:      security/keys/trusted-keys/trusted_tee.c
11543
11544 KEYS-TRUSTED-CAAM
11545 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11546 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11547 L:      linux-integrity@vger.kernel.org
11548 L:      keyrings@vger.kernel.org
11549 S:      Maintained
11550 F:      include/keys/trusted_caam.h
11551 F:      security/keys/trusted-keys/trusted_caam.c
11552
11553 KEYS/KEYRINGS
11554 M:      David Howells <dhowells@redhat.com>
11555 M:      Jarkko Sakkinen <jarkko@kernel.org>
11556 L:      keyrings@vger.kernel.org
11557 S:      Maintained
11558 F:      Documentation/security/keys/core.rst
11559 F:      include/keys/
11560 F:      include/linux/key-type.h
11561 F:      include/linux/key.h
11562 F:      include/linux/keyctl.h
11563 F:      include/uapi/linux/keyctl.h
11564 F:      security/keys/
11565
11566 KEYS/KEYRINGS_INTEGRITY
11567 M:      Jarkko Sakkinen <jarkko@kernel.org>
11568 M:      Mimi Zohar <zohar@linux.ibm.com>
11569 L:      linux-integrity@vger.kernel.org
11570 L:      keyrings@vger.kernel.org
11571 S:      Supported
11572 F:      security/integrity/platform_certs
11573
11574 KFENCE
11575 M:      Alexander Potapenko <glider@google.com>
11576 M:      Marco Elver <elver@google.com>
11577 R:      Dmitry Vyukov <dvyukov@google.com>
11578 L:      kasan-dev@googlegroups.com
11579 S:      Maintained
11580 F:      Documentation/dev-tools/kfence.rst
11581 F:      arch/*/include/asm/kfence.h
11582 F:      include/linux/kfence.h
11583 F:      lib/Kconfig.kfence
11584 F:      mm/kfence/
11585
11586 KFIFO
11587 M:      Stefani Seibold <stefani@seibold.net>
11588 S:      Maintained
11589 F:      include/linux/kfifo.h
11590 F:      lib/kfifo.c
11591 F:      samples/kfifo/
11592
11593 KGDB / KDB /debug_core
11594 M:      Jason Wessel <jason.wessel@windriver.com>
11595 M:      Daniel Thompson <daniel.thompson@linaro.org>
11596 R:      Douglas Anderson <dianders@chromium.org>
11597 L:      kgdb-bugreport@lists.sourceforge.net
11598 S:      Maintained
11599 W:      http://kgdb.wiki.kernel.org/
11600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11601 F:      Documentation/dev-tools/kgdb.rst
11602 F:      drivers/misc/kgdbts.c
11603 F:      drivers/tty/serial/kgdboc.c
11604 F:      include/linux/kdb.h
11605 F:      include/linux/kgdb.h
11606 F:      kernel/debug/
11607 F:      kernel/module/kdb.c
11608
11609 KHADAS MCU MFD DRIVER
11610 M:      Neil Armstrong <neil.armstrong@linaro.org>
11611 L:      linux-amlogic@lists.infradead.org
11612 S:      Maintained
11613 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11614 F:      drivers/mfd/khadas-mcu.c
11615 F:      include/linux/mfd/khadas-mcu.h
11616 F:      drivers/thermal/khadas_mcu_fan.c
11617
11618 KIONIX/ROHM KX022A ACCELEROMETER
11619 M:      Matti Vaittinen <mazziesaccount@gmail.com>
11620 L:      linux-iio@vger.kernel.org
11621 S:      Supported
11622 F:      drivers/iio/accel/kionix-kx022a*
11623
11624 KMEMLEAK
11625 M:      Catalin Marinas <catalin.marinas@arm.com>
11626 S:      Maintained
11627 F:      Documentation/dev-tools/kmemleak.rst
11628 F:      include/linux/kmemleak.h
11629 F:      mm/kmemleak.c
11630 F:      samples/kmemleak/kmemleak-test.c
11631
11632 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11633 M:      Luis Chamberlain <mcgrof@kernel.org>
11634 L:      linux-kernel@vger.kernel.org
11635 L:      linux-modules@vger.kernel.org
11636 S:      Maintained
11637 F:      include/linux/kmod.h
11638 F:      kernel/kmod.c
11639 F:      lib/test_kmod.c
11640 F:      tools/testing/selftests/kmod/
11641
11642 KMSAN
11643 M:      Alexander Potapenko <glider@google.com>
11644 R:      Marco Elver <elver@google.com>
11645 R:      Dmitry Vyukov <dvyukov@google.com>
11646 L:      kasan-dev@googlegroups.com
11647 S:      Maintained
11648 F:      Documentation/dev-tools/kmsan.rst
11649 F:      arch/*/include/asm/kmsan.h
11650 F:      arch/*/mm/kmsan_*
11651 F:      include/linux/kmsan*.h
11652 F:      lib/Kconfig.kmsan
11653 F:      mm/kmsan/
11654 F:      scripts/Makefile.kmsan
11655
11656 KPROBES
11657 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11658 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11659 M:      "David S. Miller" <davem@davemloft.net>
11660 M:      Masami Hiramatsu <mhiramat@kernel.org>
11661 L:      linux-kernel@vger.kernel.org
11662 L:      linux-trace-kernel@vger.kernel.org
11663 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11664 S:      Maintained
11665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11666 F:      Documentation/trace/kprobes.rst
11667 F:      include/asm-generic/kprobes.h
11668 F:      include/linux/kprobes.h
11669 F:      kernel/kprobes.c
11670 F:      lib/test_kprobes.c
11671 F:      samples/kprobes
11672
11673 KS0108 LCD CONTROLLER DRIVER
11674 M:      Miguel Ojeda <ojeda@kernel.org>
11675 S:      Maintained
11676 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11677 F:      drivers/auxdisplay/ks0108.c
11678 F:      include/linux/ks0108.h
11679
11680 KTD253 BACKLIGHT DRIVER
11681 M:      Linus Walleij <linus.walleij@linaro.org>
11682 S:      Maintained
11683 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11684 F:      drivers/video/backlight/ktd253-backlight.c
11685
11686 KTEST
11687 M:      Steven Rostedt <rostedt@goodmis.org>
11688 M:      John Hawley <warthog9@eaglescrag.net>
11689 S:      Maintained
11690 F:      tools/testing/ktest
11691
11692 L3MDEV
11693 M:      David Ahern <dsahern@kernel.org>
11694 L:      netdev@vger.kernel.org
11695 S:      Maintained
11696 F:      include/net/l3mdev.h
11697 F:      net/l3mdev
11698
11699 LANDLOCK SECURITY MODULE
11700 M:      Mickaël Salaün <mic@digikod.net>
11701 L:      linux-security-module@vger.kernel.org
11702 S:      Supported
11703 W:      https://landlock.io
11704 T:      git https://github.com/landlock-lsm/linux.git
11705 F:      Documentation/security/landlock.rst
11706 F:      Documentation/userspace-api/landlock.rst
11707 F:      include/uapi/linux/landlock.h
11708 F:      samples/landlock/
11709 F:      security/landlock/
11710 F:      tools/testing/selftests/landlock/
11711 K:      landlock
11712 K:      LANDLOCK
11713
11714 LANTIQ / INTEL Ethernet drivers
11715 M:      Hauke Mehrtens <hauke@hauke-m.de>
11716 L:      netdev@vger.kernel.org
11717 S:      Maintained
11718 F:      drivers/net/dsa/lantiq_gswip.c
11719 F:      drivers/net/dsa/lantiq_pce.h
11720 F:      drivers/net/ethernet/lantiq_xrx200.c
11721 F:      net/dsa/tag_gswip.c
11722
11723 LANTIQ MIPS ARCHITECTURE
11724 M:      John Crispin <john@phrozen.org>
11725 L:      linux-mips@vger.kernel.org
11726 S:      Maintained
11727 F:      arch/mips/lantiq
11728 F:      drivers/soc/lantiq
11729
11730 LASI 53c700 driver for PARISC
11731 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11732 L:      linux-scsi@vger.kernel.org
11733 S:      Maintained
11734 F:      Documentation/scsi/53c700.rst
11735 F:      drivers/scsi/53c700*
11736
11737 LEAKING_ADDRESSES
11738 M:      Tobin C. Harding <me@tobin.cc>
11739 M:      Tycho Andersen <tycho@tycho.pizza>
11740 L:      linux-hardening@vger.kernel.org
11741 S:      Maintained
11742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11743 F:      scripts/leaking_addresses.pl
11744
11745 LED SUBSYSTEM
11746 M:      Pavel Machek <pavel@ucw.cz>
11747 M:      Lee Jones <lee@kernel.org>
11748 L:      linux-leds@vger.kernel.org
11749 S:      Maintained
11750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11751 F:      Documentation/devicetree/bindings/leds/
11752 F:      drivers/leds/
11753 F:      include/dt-bindings/leds/
11754 F:      include/linux/leds.h
11755
11756 LEGACY EEPROM DRIVER
11757 M:      Jean Delvare <jdelvare@suse.com>
11758 S:      Maintained
11759 F:      Documentation/misc-devices/eeprom.rst
11760 F:      drivers/misc/eeprom/eeprom.c
11761
11762 LEGO MINDSTORMS EV3
11763 R:      David Lechner <david@lechnology.com>
11764 S:      Maintained
11765 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11766 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11767 F:      drivers/power/supply/lego_ev3_battery.c
11768
11769 LEGO USB Tower driver
11770 M:      Juergen Stuber <starblue@users.sourceforge.net>
11771 L:      legousb-devel@lists.sourceforge.net
11772 S:      Maintained
11773 W:      http://legousb.sourceforge.net/
11774 F:      drivers/usb/misc/legousbtower.c
11775
11776 LETSKETCH HID TABLET DRIVER
11777 M:      Hans de Goede <hdegoede@redhat.com>
11778 L:      linux-input@vger.kernel.org
11779 S:      Maintained
11780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11781 F:      drivers/hid/hid-letsketch.c
11782
11783 LG LAPTOP EXTRAS
11784 M:      Matan Ziv-Av <matan@svgalib.org>
11785 L:      platform-driver-x86@vger.kernel.org
11786 S:      Maintained
11787 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11788 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11789 F:      drivers/platform/x86/lg-laptop.c
11790
11791 LG2160 MEDIA DRIVER
11792 M:      Michael Krufky <mkrufky@linuxtv.org>
11793 L:      linux-media@vger.kernel.org
11794 S:      Maintained
11795 W:      https://linuxtv.org
11796 W:      http://github.com/mkrufky
11797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11798 T:      git git://linuxtv.org/mkrufky/tuners.git
11799 F:      drivers/media/dvb-frontends/lg2160.*
11800
11801 LGDT3305 MEDIA DRIVER
11802 M:      Michael Krufky <mkrufky@linuxtv.org>
11803 L:      linux-media@vger.kernel.org
11804 S:      Maintained
11805 W:      https://linuxtv.org
11806 W:      http://github.com/mkrufky
11807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11808 T:      git git://linuxtv.org/mkrufky/tuners.git
11809 F:      drivers/media/dvb-frontends/lgdt3305.*
11810
11811 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11812 M:      Viresh Kumar <vireshk@kernel.org>
11813 L:      linux-ide@vger.kernel.org
11814 S:      Maintained
11815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11816 F:      drivers/ata/pata_arasan_cf.c
11817 F:      include/linux/pata_arasan_cf_data.h
11818
11819 LIBATA PATA DRIVERS
11820 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11821 L:      linux-ide@vger.kernel.org
11822 F:      drivers/ata/ata_*.c
11823 F:      drivers/ata/pata_*.c
11824
11825 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11826 M:      Linus Walleij <linus.walleij@linaro.org>
11827 L:      linux-ide@vger.kernel.org
11828 S:      Maintained
11829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11830 F:      drivers/ata/pata_ftide010.c
11831 F:      drivers/ata/sata_gemini.c
11832 F:      drivers/ata/sata_gemini.h
11833
11834 LIBATA SATA AHCI PLATFORM devices support
11835 M:      Hans de Goede <hdegoede@redhat.com>
11836 M:      Jens Axboe <axboe@kernel.dk>
11837 L:      linux-ide@vger.kernel.org
11838 S:      Maintained
11839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11840 F:      drivers/ata/ahci_platform.c
11841 F:      drivers/ata/libahci_platform.c
11842 F:      include/linux/ahci_platform.h
11843
11844 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11845 M:      Serge Semin <fancer.lancer@gmail.com>
11846 L:      linux-ide@vger.kernel.org
11847 S:      Maintained
11848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11849 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11850 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11851 F:      drivers/ata/ahci_dwc.c
11852
11853 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11854 M:      Mikael Pettersson <mikpelinux@gmail.com>
11855 L:      linux-ide@vger.kernel.org
11856 S:      Maintained
11857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11858 F:      drivers/ata/sata_promise.*
11859
11860 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11861 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11862 L:      linux-ide@vger.kernel.org
11863 S:      Maintained
11864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11865 F:      Documentation/ABI/testing/sysfs-ata
11866 F:      Documentation/devicetree/bindings/ata/
11867 F:      drivers/ata/
11868 F:      include/linux/ata.h
11869 F:      include/linux/libata.h
11870
11871 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11872 M:      Vishal Verma <vishal.l.verma@intel.com>
11873 M:      Dan Williams <dan.j.williams@intel.com>
11874 M:      Dave Jiang <dave.jiang@intel.com>
11875 L:      nvdimm@lists.linux.dev
11876 S:      Supported
11877 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11878 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11879 F:      drivers/nvdimm/btt*
11880
11881 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11882 M:      Dan Williams <dan.j.williams@intel.com>
11883 M:      Vishal Verma <vishal.l.verma@intel.com>
11884 M:      Dave Jiang <dave.jiang@intel.com>
11885 L:      nvdimm@lists.linux.dev
11886 S:      Supported
11887 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11888 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11889 F:      drivers/nvdimm/pmem*
11890
11891 LIBNVDIMM: DEVICETREE BINDINGS
11892 M:      Oliver O'Halloran <oohall@gmail.com>
11893 L:      nvdimm@lists.linux.dev
11894 S:      Supported
11895 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11896 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11897 F:      drivers/nvdimm/of_pmem.c
11898
11899 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11900 M:      Dan Williams <dan.j.williams@intel.com>
11901 M:      Vishal Verma <vishal.l.verma@intel.com>
11902 M:      Dave Jiang <dave.jiang@intel.com>
11903 M:      Ira Weiny <ira.weiny@intel.com>
11904 L:      nvdimm@lists.linux.dev
11905 S:      Supported
11906 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11907 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11909 F:      drivers/acpi/nfit/*
11910 F:      drivers/nvdimm/*
11911 F:      include/linux/libnvdimm.h
11912 F:      include/linux/nd.h
11913 F:      include/uapi/linux/ndctl.h
11914 F:      tools/testing/nvdimm/
11915
11916 LICENSES and SPDX stuff
11917 M:      Thomas Gleixner <tglx@linutronix.de>
11918 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11919 L:      linux-spdx@vger.kernel.org
11920 S:      Maintained
11921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11922 F:      COPYING
11923 F:      Documentation/process/license-rules.rst
11924 F:      LICENSES/
11925 F:      scripts/spdxcheck-test.sh
11926 F:      scripts/spdxcheck.py
11927 F:      scripts/spdxexclude
11928
11929 LINEAR RANGES HELPERS
11930 M:      Mark Brown <broonie@kernel.org>
11931 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11932 F:      lib/linear_ranges.c
11933 F:      lib/test_linear_ranges.c
11934 F:      include/linux/linear_range.h
11935
11936 LINUX FOR POWER MACINTOSH
11937 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11938 L:      linuxppc-dev@lists.ozlabs.org
11939 S:      Odd Fixes
11940 F:      arch/powerpc/platforms/powermac/
11941 F:      drivers/macintosh/
11942
11943 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11944 M:      Michael Ellerman <mpe@ellerman.id.au>
11945 R:      Nicholas Piggin <npiggin@gmail.com>
11946 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11947 L:      linuxppc-dev@lists.ozlabs.org
11948 S:      Supported
11949 W:      https://github.com/linuxppc/wiki/wiki
11950 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11952 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11953 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11954 F:      Documentation/devicetree/bindings/powerpc/
11955 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11956 F:      Documentation/powerpc/
11957 F:      arch/powerpc/
11958 F:      drivers/*/*/*pasemi*
11959 F:      drivers/*/*pasemi*
11960 F:      drivers/char/tpm/tpm_ibmvtpm*
11961 F:      drivers/crypto/nx/
11962 F:      drivers/crypto/vmx/
11963 F:      drivers/i2c/busses/i2c-opal.c
11964 F:      drivers/net/ethernet/ibm/ibmveth.*
11965 F:      drivers/net/ethernet/ibm/ibmvnic.*
11966 F:      drivers/pci/hotplug/pnv_php.c
11967 F:      drivers/pci/hotplug/rpa*
11968 F:      drivers/rtc/rtc-opal.c
11969 F:      drivers/scsi/ibmvscsi/
11970 F:      drivers/tty/hvc/hvc_opal.c
11971 F:      drivers/watchdog/wdrtas.c
11972 F:      tools/testing/selftests/powerpc
11973 N:      /pmac
11974 N:      powermac
11975 N:      powernv
11976 N:      [^a-z0-9]ps3
11977 N:      pseries
11978
11979 LINUX FOR POWERPC EMBEDDED MPC5XXX
11980 M:      Anatolij Gustschin <agust@denx.de>
11981 L:      linuxppc-dev@lists.ozlabs.org
11982 S:      Odd Fixes
11983 F:      arch/powerpc/platforms/512x/
11984 F:      arch/powerpc/platforms/52xx/
11985
11986 LINUX FOR POWERPC EMBEDDED PPC4XX
11987 L:      linuxppc-dev@lists.ozlabs.org
11988 S:      Orphan
11989 F:      arch/powerpc/platforms/40x/
11990 F:      arch/powerpc/platforms/44x/
11991
11992 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11993 M:      Scott Wood <oss@buserror.net>
11994 L:      linuxppc-dev@lists.ozlabs.org
11995 S:      Odd fixes
11996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11997 F:      Documentation/devicetree/bindings/powerpc/fsl/
11998 F:      arch/powerpc/platforms/83xx/
11999 F:      arch/powerpc/platforms/85xx/
12000
12001 LINUX FOR POWERPC EMBEDDED PPC8XX
12002 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
12003 L:      linuxppc-dev@lists.ozlabs.org
12004 S:      Maintained
12005 F:      arch/powerpc/platforms/8xx/
12006
12007 LINUX KERNEL DUMP TEST MODULE (LKDTM)
12008 M:      Kees Cook <keescook@chromium.org>
12009 S:      Maintained
12010 F:      drivers/misc/lkdtm/*
12011 F:      tools/testing/selftests/lkdtm/*
12012
12013 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
12014 M:      Alan Stern <stern@rowland.harvard.edu>
12015 M:      Andrea Parri <parri.andrea@gmail.com>
12016 M:      Will Deacon <will@kernel.org>
12017 M:      Peter Zijlstra <peterz@infradead.org>
12018 M:      Boqun Feng <boqun.feng@gmail.com>
12019 M:      Nicholas Piggin <npiggin@gmail.com>
12020 M:      David Howells <dhowells@redhat.com>
12021 M:      Jade Alglave <j.alglave@ucl.ac.uk>
12022 M:      Luc Maranget <luc.maranget@inria.fr>
12023 M:      "Paul E. McKenney" <paulmck@kernel.org>
12024 R:      Akira Yokosawa <akiyks@gmail.com>
12025 R:      Daniel Lustig <dlustig@nvidia.com>
12026 R:      Joel Fernandes <joel@joelfernandes.org>
12027 L:      linux-kernel@vger.kernel.org
12028 L:      linux-arch@vger.kernel.org
12029 S:      Supported
12030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
12031 F:      Documentation/atomic_bitops.txt
12032 F:      Documentation/atomic_t.txt
12033 F:      Documentation/core-api/refcount-vs-atomic.rst
12034 F:      Documentation/litmus-tests/
12035 F:      Documentation/memory-barriers.txt
12036 F:      tools/memory-model/
12037
12038 LIS3LV02D ACCELEROMETER DRIVER
12039 M:      Eric Piel <eric.piel@tremplin-utc.net>
12040 S:      Maintained
12041 F:      Documentation/misc-devices/lis3lv02d.rst
12042 F:      drivers/misc/lis3lv02d/
12043 F:      drivers/platform/x86/hp/hp_accel.c
12044
12045 LIST KUNIT TEST
12046 M:      David Gow <davidgow@google.com>
12047 L:      linux-kselftest@vger.kernel.org
12048 L:      kunit-dev@googlegroups.com
12049 S:      Maintained
12050 F:      lib/list-test.c
12051
12052 LITEX PLATFORM
12053 M:      Karol Gugala <kgugala@antmicro.com>
12054 M:      Mateusz Holenko <mholenko@antmicro.com>
12055 M:      Gabriel Somlo <gsomlo@gmail.com>
12056 M:      Joel Stanley <joel@jms.id.au>
12057 S:      Maintained
12058 F:      Documentation/devicetree/bindings/*/litex,*.yaml
12059 F:      arch/openrisc/boot/dts/or1klitex.dts
12060 F:      include/linux/litex.h
12061 F:      drivers/tty/serial/liteuart.c
12062 F:      drivers/soc/litex/*
12063 F:      drivers/net/ethernet/litex/*
12064 F:      drivers/mmc/host/litex_mmc.c
12065 N:      litex
12066
12067 LIVE PATCHING
12068 M:      Josh Poimboeuf <jpoimboe@kernel.org>
12069 M:      Jiri Kosina <jikos@kernel.org>
12070 M:      Miroslav Benes <mbenes@suse.cz>
12071 M:      Petr Mladek <pmladek@suse.com>
12072 R:      Joe Lawrence <joe.lawrence@redhat.com>
12073 L:      live-patching@vger.kernel.org
12074 S:      Maintained
12075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
12076 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
12077 F:      Documentation/livepatch/
12078 F:      arch/powerpc/include/asm/livepatch.h
12079 F:      include/linux/livepatch.h
12080 F:      kernel/livepatch/
12081 F:      kernel/module/livepatch.c
12082 F:      lib/livepatch/
12083 F:      samples/livepatch/
12084 F:      tools/testing/selftests/livepatch/
12085
12086 LLC (802.2)
12087 L:      netdev@vger.kernel.org
12088 S:      Odd fixes
12089 F:      include/linux/llc.h
12090 F:      include/net/llc*
12091 F:      include/uapi/linux/llc.h
12092 F:      net/llc/
12093
12094 LM73 HARDWARE MONITOR DRIVER
12095 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
12096 L:      linux-hwmon@vger.kernel.org
12097 S:      Maintained
12098 F:      drivers/hwmon/lm73.c
12099
12100 LM78 HARDWARE MONITOR DRIVER
12101 M:      Jean Delvare <jdelvare@suse.com>
12102 L:      linux-hwmon@vger.kernel.org
12103 S:      Maintained
12104 F:      Documentation/hwmon/lm78.rst
12105 F:      drivers/hwmon/lm78.c
12106
12107 LM83 HARDWARE MONITOR DRIVER
12108 M:      Jean Delvare <jdelvare@suse.com>
12109 L:      linux-hwmon@vger.kernel.org
12110 S:      Maintained
12111 F:      Documentation/hwmon/lm83.rst
12112 F:      drivers/hwmon/lm83.c
12113
12114 LM90 HARDWARE MONITOR DRIVER
12115 M:      Jean Delvare <jdelvare@suse.com>
12116 L:      linux-hwmon@vger.kernel.org
12117 S:      Maintained
12118 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
12119 F:      Documentation/hwmon/lm90.rst
12120 F:      drivers/hwmon/lm90.c
12121 F:      include/dt-bindings/thermal/lm90.h
12122
12123 LM95234 HARDWARE MONITOR DRIVER
12124 M:      Guenter Roeck <linux@roeck-us.net>
12125 L:      linux-hwmon@vger.kernel.org
12126 S:      Maintained
12127 F:      Documentation/hwmon/lm95234.rst
12128 F:      drivers/hwmon/lm95234.c
12129
12130 LME2510 MEDIA DRIVER
12131 M:      Malcolm Priestley <tvboxspy@gmail.com>
12132 L:      linux-media@vger.kernel.org
12133 S:      Maintained
12134 W:      https://linuxtv.org
12135 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12136 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
12137
12138 LOADPIN SECURITY MODULE
12139 M:      Kees Cook <keescook@chromium.org>
12140 S:      Supported
12141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12142 F:      Documentation/admin-guide/LSM/LoadPin.rst
12143 F:      security/loadpin/
12144
12145 LOCKING PRIMITIVES
12146 M:      Peter Zijlstra <peterz@infradead.org>
12147 M:      Ingo Molnar <mingo@redhat.com>
12148 M:      Will Deacon <will@kernel.org>
12149 R:      Waiman Long <longman@redhat.com>
12150 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
12151 L:      linux-kernel@vger.kernel.org
12152 S:      Maintained
12153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12154 F:      Documentation/locking/
12155 F:      arch/*/include/asm/spinlock*.h
12156 F:      include/linux/lockdep.h
12157 F:      include/linux/mutex*.h
12158 F:      include/linux/rwlock*.h
12159 F:      include/linux/rwsem*.h
12160 F:      include/linux/seqlock.h
12161 F:      include/linux/spinlock*.h
12162 F:      kernel/locking/
12163 F:      lib/locking*.[ch]
12164 X:      kernel/locking/locktorture.c
12165
12166 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12167 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
12168 L:      linux-ntfs-dev@lists.sourceforge.net
12169 S:      Maintained
12170 W:      http://www.linux-ntfs.org/content/view/19/37/
12171 F:      Documentation/admin-guide/ldm.rst
12172 F:      block/partitions/ldm.*
12173
12174 LOGITECH HID GAMING KEYBOARDS
12175 M:      Hans de Goede <hdegoede@redhat.com>
12176 L:      linux-input@vger.kernel.org
12177 S:      Maintained
12178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12179 F:      drivers/hid/hid-lg-g15.c
12180
12181 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12182 M:      Adrien Grassein <adrien.grassein@gmail.com>
12183 S:      Maintained
12184 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12185 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12186
12187 LOONGARCH
12188 M:      Huacai Chen <chenhuacai@kernel.org>
12189 R:      WANG Xuerui <kernel@xen0n.name>
12190 L:      loongarch@lists.linux.dev
12191 S:      Maintained
12192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12193 F:      arch/loongarch/
12194 F:      drivers/*/*loongarch*
12195 F:      Documentation/loongarch/
12196 F:      Documentation/translations/zh_CN/loongarch/
12197
12198 LOONGSON-2 SOC SERIES GUTS DRIVER
12199 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12200 L:      loongarch@lists.linux.dev
12201 S:      Maintained
12202 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12203 F:      drivers/soc/loongson/loongson2_guts.c
12204
12205 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12206 M:      zhanghongchen <zhanghongchen@loongson.cn>
12207 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12208 L:      linux-gpio@vger.kernel.org
12209 S:      Maintained
12210 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12211 F:      drivers/pinctrl/pinctrl-loongson2.c
12212
12213 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12214 M:      Sathya Prakash <sathya.prakash@broadcom.com>
12215 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12216 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12217 L:      MPT-FusionLinux.pdl@broadcom.com
12218 L:      linux-scsi@vger.kernel.org
12219 S:      Supported
12220 W:      http://www.avagotech.com/support/
12221 F:      drivers/message/fusion/
12222 F:      drivers/scsi/mpt3sas/
12223
12224 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12225 M:      Matthew Wilcox <willy@infradead.org>
12226 L:      linux-scsi@vger.kernel.org
12227 S:      Maintained
12228 F:      drivers/scsi/sym53c8xx_2/
12229
12230 LTC1660 DAC DRIVER
12231 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12232 L:      linux-iio@vger.kernel.org
12233 S:      Maintained
12234 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12235 F:      drivers/iio/dac/ltc1660.c
12236
12237 LTC2688 IIO DAC DRIVER
12238 M:      Nuno Sá <nuno.sa@analog.com>
12239 L:      linux-iio@vger.kernel.org
12240 S:      Supported
12241 W:      https://ez.analog.com/linux-software-drivers
12242 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12243 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12244 F:      drivers/iio/dac/ltc2688.c
12245
12246 LTC2947 HARDWARE MONITOR DRIVER
12247 M:      Nuno Sá <nuno.sa@analog.com>
12248 L:      linux-hwmon@vger.kernel.org
12249 S:      Supported
12250 W:      https://ez.analog.com/linux-software-drivers
12251 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12252 F:      drivers/hwmon/ltc2947-core.c
12253 F:      drivers/hwmon/ltc2947-i2c.c
12254 F:      drivers/hwmon/ltc2947-spi.c
12255 F:      drivers/hwmon/ltc2947.h
12256
12257 LTC2983 IIO TEMPERATURE DRIVER
12258 M:      Nuno Sá <nuno.sa@analog.com>
12259 L:      linux-iio@vger.kernel.org
12260 S:      Supported
12261 W:      https://ez.analog.com/linux-software-drivers
12262 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12263 F:      drivers/iio/temperature/ltc2983.c
12264
12265 LTC4261 HARDWARE MONITOR DRIVER
12266 M:      Guenter Roeck <linux@roeck-us.net>
12267 L:      linux-hwmon@vger.kernel.org
12268 S:      Maintained
12269 F:      Documentation/hwmon/ltc4261.rst
12270 F:      drivers/hwmon/ltc4261.c
12271
12272 LTC4306 I2C MULTIPLEXER DRIVER
12273 M:      Michael Hennerich <michael.hennerich@analog.com>
12274 L:      linux-i2c@vger.kernel.org
12275 S:      Supported
12276 W:      https://ez.analog.com/linux-software-drivers
12277 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12278 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12279
12280 LTP (Linux Test Project)
12281 M:      Mike Frysinger <vapier@gentoo.org>
12282 M:      Cyril Hrubis <chrubis@suse.cz>
12283 M:      Wanlong Gao <wanlong.gao@gmail.com>
12284 M:      Jan Stancek <jstancek@redhat.com>
12285 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12286 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
12287 L:      ltp@lists.linux.it (subscribers-only)
12288 S:      Maintained
12289 W:      http://linux-test-project.github.io/
12290 T:      git https://github.com/linux-test-project/ltp.git
12291
12292 LYNX 28G SERDES PHY DRIVER
12293 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12294 L:      netdev@vger.kernel.org
12295 S:      Supported
12296 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12297 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12298
12299 LYNX PCS MODULE
12300 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12301 L:      netdev@vger.kernel.org
12302 S:      Supported
12303 F:      drivers/net/pcs/pcs-lynx.c
12304 F:      include/linux/pcs-lynx.h
12305
12306 M68K ARCHITECTURE
12307 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12308 L:      linux-m68k@lists.linux-m68k.org
12309 S:      Maintained
12310 W:      http://www.linux-m68k.org/
12311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12312 F:      arch/m68k/
12313 F:      drivers/zorro/
12314
12315 M68K ON APPLE MACINTOSH
12316 M:      Joshua Thompson <funaho@jurai.org>
12317 L:      linux-m68k@lists.linux-m68k.org
12318 S:      Maintained
12319 W:      http://www.mac.linux-m68k.org/
12320 F:      arch/m68k/mac/
12321 F:      drivers/macintosh/adb-iop.c
12322 F:      drivers/macintosh/via-macii.c
12323
12324 M68K ON HP9000/300
12325 M:      Philip Blundell <philb@gnu.org>
12326 S:      Maintained
12327 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12328 F:      arch/m68k/hp300/
12329
12330 M88DS3103 MEDIA DRIVER
12331 M:      Antti Palosaari <crope@iki.fi>
12332 L:      linux-media@vger.kernel.org
12333 S:      Maintained
12334 W:      https://linuxtv.org
12335 W:      http://palosaari.fi/linux/
12336 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12337 T:      git git://linuxtv.org/anttip/media_tree.git
12338 F:      drivers/media/dvb-frontends/m88ds3103*
12339
12340 M88RS2000 MEDIA DRIVER
12341 M:      Malcolm Priestley <tvboxspy@gmail.com>
12342 L:      linux-media@vger.kernel.org
12343 S:      Maintained
12344 W:      https://linuxtv.org
12345 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12346 F:      drivers/media/dvb-frontends/m88rs2000*
12347
12348 MA901 MASTERKIT USB FM RADIO DRIVER
12349 M:      Alexey Klimov <klimov.linux@gmail.com>
12350 L:      linux-media@vger.kernel.org
12351 S:      Maintained
12352 T:      git git://linuxtv.org/media_tree.git
12353 F:      drivers/media/radio/radio-ma901.c
12354
12355 MAC80211
12356 M:      Johannes Berg <johannes@sipsolutions.net>
12357 L:      linux-wireless@vger.kernel.org
12358 S:      Maintained
12359 W:      https://wireless.wiki.kernel.org/
12360 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12363 F:      Documentation/networking/mac80211-injection.rst
12364 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12365 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12366 F:      include/net/mac80211.h
12367 F:      net/mac80211/
12368
12369 MAILBOX API
12370 M:      Jassi Brar <jassisinghbrar@gmail.com>
12371 L:      linux-kernel@vger.kernel.org
12372 S:      Maintained
12373 F:      drivers/mailbox/
12374 F:      include/linux/mailbox_client.h
12375 F:      include/linux/mailbox_controller.h
12376 F:      include/dt-bindings/mailbox/
12377 F:      Documentation/devicetree/bindings/mailbox/
12378
12379 MAILBOX ARM MHUv2
12380 M:      Viresh Kumar <viresh.kumar@linaro.org>
12381 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12382 L:      linux-kernel@vger.kernel.org
12383 S:      Maintained
12384 F:      drivers/mailbox/arm_mhuv2.c
12385 F:      include/linux/mailbox/arm_mhuv2_message.h
12386 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12387
12388 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12389 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12390 M:      Matt Johnston <matt@codeconstruct.com.au>
12391 L:      netdev@vger.kernel.org
12392 S:      Maintained
12393 F:      Documentation/networking/mctp.rst
12394 F:      drivers/net/mctp/
12395 F:      include/net/mctp.h
12396 F:      include/net/mctpdevice.h
12397 F:      include/net/netns/mctp.h
12398 F:      net/mctp/
12399
12400 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12401 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12402 L:      linux-man@vger.kernel.org
12403 S:      Maintained
12404 W:      http://www.kernel.org/doc/man-pages
12405
12406 MAPLE TREE
12407 M:      Liam R. Howlett <Liam.Howlett@oracle.com>
12408 L:      linux-mm@kvack.org
12409 S:      Supported
12410 F:      Documentation/core-api/maple_tree.rst
12411 F:      include/linux/maple_tree.h
12412 F:      include/trace/events/maple_tree.h
12413 F:      lib/maple_tree.c
12414 F:      lib/test_maple_tree.c
12415 F:      tools/testing/radix-tree/linux/maple_tree.h
12416 F:      tools/testing/radix-tree/maple.c
12417
12418 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12419 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12420 L:      linux-mips@vger.kernel.org
12421 S:      Maintained
12422 F:      arch/mips/boot/dts/img/pistachio*
12423
12424 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12425 M:      Andrew Lunn <andrew@lunn.ch>
12426 L:      netdev@vger.kernel.org
12427 S:      Maintained
12428 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12429 F:      Documentation/networking/devlink/mv88e6xxx.rst
12430 F:      drivers/net/dsa/mv88e6xxx/
12431 F:      include/linux/dsa/mv88e6xxx.h
12432 F:      include/linux/platform_data/mv88e6xxx.h
12433
12434 MARVELL ARMADA 3700 PHY DRIVERS
12435 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12436 S:      Maintained
12437 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12438 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12439 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12440 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12441
12442 MARVELL ARMADA 3700 SERIAL DRIVER
12443 M:      Pali Rohár <pali@kernel.org>
12444 S:      Maintained
12445 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12446 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12447 F:      drivers/tty/serial/mvebu-uart.c
12448
12449 MARVELL ARMADA DRM SUPPORT
12450 M:      Russell King <linux@armlinux.org.uk>
12451 S:      Maintained
12452 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12453 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12454 F:      Documentation/devicetree/bindings/display/armada/
12455 F:      drivers/gpu/drm/armada/
12456 F:      include/uapi/drm/armada_drm.h
12457
12458 MARVELL CRYPTO DRIVER
12459 M:      Boris Brezillon <bbrezillon@kernel.org>
12460 M:      Arnaud Ebalard <arno@natisbad.org>
12461 M:      Srujana Challa <schalla@marvell.com>
12462 L:      linux-crypto@vger.kernel.org
12463 S:      Maintained
12464 F:      drivers/crypto/marvell/
12465 F:      include/linux/soc/marvell/octeontx2/
12466
12467 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12468 M:      Mirko Lindner <mlindner@marvell.com>
12469 M:      Stephen Hemminger <stephen@networkplumber.org>
12470 L:      netdev@vger.kernel.org
12471 S:      Maintained
12472 F:      drivers/net/ethernet/marvell/sk*
12473
12474 MARVELL LIBERTAS WIRELESS DRIVER
12475 L:      libertas-dev@lists.infradead.org
12476 S:      Orphan
12477 F:      drivers/net/wireless/marvell/libertas/
12478
12479 MARVELL MACCHIATOBIN SUPPORT
12480 M:      Russell King <linux@armlinux.org.uk>
12481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12482 S:      Maintained
12483 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12484
12485 MARVELL MV643XX ETHERNET DRIVER
12486 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12487 L:      netdev@vger.kernel.org
12488 S:      Maintained
12489 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12490 F:      include/linux/mv643xx.h
12491
12492 MARVELL MV88X3310 PHY DRIVER
12493 M:      Russell King <linux@armlinux.org.uk>
12494 M:      Marek Behún <kabel@kernel.org>
12495 L:      netdev@vger.kernel.org
12496 S:      Maintained
12497 F:      drivers/net/phy/marvell10g.c
12498
12499 MARVELL MVEBU THERMAL DRIVER
12500 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12501 S:      Maintained
12502 F:      drivers/thermal/armada_thermal.c
12503
12504 MARVELL MVNETA ETHERNET DRIVER
12505 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12506 L:      netdev@vger.kernel.org
12507 S:      Maintained
12508 F:      drivers/net/ethernet/marvell/mvneta.*
12509
12510 MARVELL MVPP2 ETHERNET DRIVER
12511 M:      Marcin Wojtas <mw@semihalf.com>
12512 M:      Russell King <linux@armlinux.org.uk>
12513 L:      netdev@vger.kernel.org
12514 S:      Maintained
12515 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12516 F:      drivers/net/ethernet/marvell/mvpp2/
12517
12518 MARVELL MWIFIEX WIRELESS DRIVER
12519 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12520 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12521 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12522 M:      Xinming Hu <huxinming820@gmail.com>
12523 L:      linux-wireless@vger.kernel.org
12524 S:      Maintained
12525 F:      drivers/net/wireless/marvell/mwifiex/
12526
12527 MARVELL MWL8K WIRELESS DRIVER
12528 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12529 L:      linux-wireless@vger.kernel.org
12530 S:      Odd Fixes
12531 F:      drivers/net/wireless/marvell/mwl8k.c
12532
12533 MARVELL NAND CONTROLLER DRIVER
12534 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12535 L:      linux-mtd@lists.infradead.org
12536 S:      Maintained
12537 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12538 F:      drivers/mtd/nand/raw/marvell_nand.c
12539
12540 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12541 M:      Sunil Goutham <sgoutham@marvell.com>
12542 M:      Geetha sowjanya <gakula@marvell.com>
12543 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12544 M:      hariprasad <hkelam@marvell.com>
12545 L:      netdev@vger.kernel.org
12546 S:      Supported
12547 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12548 F:      include/linux/soc/marvell/octeontx2/
12549
12550 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12551 M:      Sunil Goutham <sgoutham@marvell.com>
12552 M:      Linu Cherian <lcherian@marvell.com>
12553 M:      Geetha sowjanya <gakula@marvell.com>
12554 M:      Jerin Jacob <jerinj@marvell.com>
12555 M:      hariprasad <hkelam@marvell.com>
12556 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12557 L:      netdev@vger.kernel.org
12558 S:      Supported
12559 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12560 F:      drivers/net/ethernet/marvell/octeontx2/af/
12561
12562 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12563 M:      Taras Chornyi <taras.chornyi@plvision.eu>
12564 S:      Supported
12565 W:      https://github.com/Marvell-switching/switchdev-prestera
12566 F:      drivers/net/ethernet/marvell/prestera/
12567
12568 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12569 M:      Nicolas Pitre <nico@fluxnic.net>
12570 S:      Odd Fixes
12571 F:      drivers/mmc/host/mvsdio.*
12572
12573 MARVELL USB MDIO CONTROLLER DRIVER
12574 M:      Tobias Waldekranz <tobias@waldekranz.com>
12575 L:      netdev@vger.kernel.org
12576 S:      Maintained
12577 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12578 F:      drivers/net/mdio/mdio-mvusb.c
12579
12580 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12581 M:      Hu Ziji <huziji@marvell.com>
12582 L:      linux-mmc@vger.kernel.org
12583 S:      Supported
12584 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12585 F:      drivers/mmc/host/sdhci-xenon*
12586
12587 MARVELL OCTEON ENDPOINT DRIVER
12588 M:      Veerasenareddy Burru <vburru@marvell.com>
12589 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12590 L:      netdev@vger.kernel.org
12591 S:      Supported
12592 F:      drivers/net/ethernet/marvell/octeon_ep
12593
12594 MATROX FRAMEBUFFER DRIVER
12595 L:      linux-fbdev@vger.kernel.org
12596 S:      Orphan
12597 F:      drivers/video/fbdev/matrox/matroxfb_*
12598 F:      include/uapi/linux/matroxfb.h
12599
12600 MAX15301 DRIVER
12601 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12602 L:      linux-hwmon@vger.kernel.org
12603 S:      Maintained
12604 F:      Documentation/hwmon/max15301.rst
12605 F:      drivers/hwmon/pmbus/max15301.c
12606
12607 MAX16065 HARDWARE MONITOR DRIVER
12608 M:      Guenter Roeck <linux@roeck-us.net>
12609 L:      linux-hwmon@vger.kernel.org
12610 S:      Maintained
12611 F:      Documentation/hwmon/max16065.rst
12612 F:      drivers/hwmon/max16065.c
12613
12614 MAX2175 SDR TUNER DRIVER
12615 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12616 L:      linux-media@vger.kernel.org
12617 S:      Maintained
12618 T:      git git://linuxtv.org/media_tree.git
12619 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12620 F:      Documentation/userspace-api/media/drivers/max2175.rst
12621 F:      drivers/media/i2c/max2175*
12622 F:      include/uapi/linux/max2175.h
12623
12624 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12625 L:      linux-hwmon@vger.kernel.org
12626 S:      Orphan
12627 F:      Documentation/hwmon/max6650.rst
12628 F:      drivers/hwmon/max6650.c
12629
12630 MAX6697 HARDWARE MONITOR DRIVER
12631 M:      Guenter Roeck <linux@roeck-us.net>
12632 L:      linux-hwmon@vger.kernel.org
12633 S:      Maintained
12634 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12635 F:      Documentation/hwmon/max6697.rst
12636 F:      drivers/hwmon/max6697.c
12637 F:      include/linux/platform_data/max6697.h
12638
12639 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12640 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12641 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12642 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12643 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12644 L:      linux-media@vger.kernel.org
12645 S:      Maintained
12646 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12647 F:      drivers/media/i2c/max9286.c
12648
12649 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12650 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12651 L:      linux-media@vger.kernel.org
12652 S:      Maintained
12653 F:      drivers/staging/media/max96712/max96712.c
12654
12655 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12656 M:      Peter Rosin <peda@axentia.se>
12657 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12658 S:      Maintained
12659 F:      Documentation/devicetree/bindings/sound/max9860.txt
12660 F:      sound/soc/codecs/max9860.*
12661
12662 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12663 M:      Andreas Klinger <ak@it-klinger.de>
12664 L:      linux-iio@vger.kernel.org
12665 S:      Maintained
12666 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12667 F:      drivers/iio/proximity/mb1232.c
12668
12669 MAXIM MAX11205 DRIVER
12670 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12671 L:      linux-iio@vger.kernel.org
12672 S:      Supported
12673 W:      https://ez.analog.com/linux-software-drivers
12674 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12675 F:      drivers/iio/adc/max11205.c
12676
12677 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12678 R:      Iskren Chernev <iskren.chernev@gmail.com>
12679 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12680 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12681 R:      Matheus Castello <matheus@castello.eng.br>
12682 L:      linux-pm@vger.kernel.org
12683 S:      Maintained
12684 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12685 F:      drivers/power/supply/max17040_battery.c
12686
12687 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12688 R:      Hans de Goede <hdegoede@redhat.com>
12689 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12690 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12691 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12692 R:      Purism Kernel Team <kernel@puri.sm>
12693 L:      linux-pm@vger.kernel.org
12694 S:      Maintained
12695 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12696 F:      drivers/power/supply/max17042_battery.c
12697
12698 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12699 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12700 L:      linux-kernel@vger.kernel.org
12701 S:      Maintained
12702 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12703 F:      drivers/regulator/max20086-regulator.c
12704
12705 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12706 M:      Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12707 L:      linux-iio@vger.kernel.org
12708 S:      Maintained
12709 F:      drivers/iio/temperature/max30208.c
12710
12711 MAXIM MAX77650 PMIC MFD DRIVER
12712 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12713 L:      linux-kernel@vger.kernel.org
12714 S:      Maintained
12715 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12716 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12717 F:      drivers/gpio/gpio-max77650.c
12718 F:      drivers/input/misc/max77650-onkey.c
12719 F:      drivers/leds/leds-max77650.c
12720 F:      drivers/mfd/max77650.c
12721 F:      drivers/power/supply/max77650-charger.c
12722 F:      drivers/regulator/max77650-regulator.c
12723 F:      include/linux/mfd/max77650.h
12724
12725 MAXIM MAX77714 PMIC MFD DRIVER
12726 M:      Luca Ceresoli <luca@lucaceresoli.net>
12727 S:      Maintained
12728 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12729 F:      drivers/mfd/max77714.c
12730 F:      include/linux/mfd/max77714.h
12731
12732 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12733 M:      Javier Martinez Canillas <javier@dowhile0.org>
12734 L:      linux-kernel@vger.kernel.org
12735 S:      Supported
12736 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12737 F:      drivers/regulator/max77802-regulator.c
12738 F:      include/dt-bindings/*/*max77802.h
12739
12740 MAXIM MAX77976 BATTERY CHARGER
12741 M:      Luca Ceresoli <luca@lucaceresoli.net>
12742 S:      Supported
12743 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12744 F:      drivers/power/supply/max77976_charger.c
12745
12746 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12747 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12748 L:      linux-pm@vger.kernel.org
12749 S:      Supported
12750 B:      mailto:linux-samsung-soc@vger.kernel.org
12751 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12752 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12753 F:      drivers/power/supply/max14577_charger.c
12754 F:      drivers/power/supply/max77693_charger.c
12755
12756 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12757 M:      Chanwoo Choi <cw00.choi@samsung.com>
12758 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12759 L:      linux-kernel@vger.kernel.org
12760 S:      Supported
12761 B:      mailto:linux-samsung-soc@vger.kernel.org
12762 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12763 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12764 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12765 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12766 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12767 F:      drivers/*/*max77843.c
12768 F:      drivers/*/max14577*.c
12769 F:      drivers/*/max77686*.c
12770 F:      drivers/*/max77693*.c
12771 F:      drivers/clk/clk-max77686.c
12772 F:      drivers/extcon/extcon-max14577.c
12773 F:      drivers/extcon/extcon-max77693.c
12774 F:      drivers/rtc/rtc-max77686.c
12775 F:      include/linux/mfd/max14577*.h
12776 F:      include/linux/mfd/max77686*.h
12777 F:      include/linux/mfd/max77693*.h
12778
12779 MAXIRADIO FM RADIO RECEIVER DRIVER
12780 M:      Hans Verkuil <hverkuil@xs4all.nl>
12781 L:      linux-media@vger.kernel.org
12782 S:      Maintained
12783 W:      https://linuxtv.org
12784 T:      git git://linuxtv.org/media_tree.git
12785 F:      drivers/media/radio/radio-maxiradio*
12786
12787 MAXLINEAR ETHERNET PHY DRIVER
12788 M:      Xu Liang <lxu@maxlinear.com>
12789 L:      netdev@vger.kernel.org
12790 S:      Supported
12791 F:      drivers/net/phy/mxl-gpy.c
12792
12793 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12794 R:      Yasushi SHOJI <yashi@spacecubics.com>
12795 L:      linux-can@vger.kernel.org
12796 S:      Maintained
12797 F:      drivers/net/can/usb/mcba_usb.c
12798
12799 MCAN MMIO DEVICE DRIVER
12800 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12801 L:      linux-can@vger.kernel.org
12802 S:      Maintained
12803 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12804 F:      drivers/net/can/m_can/m_can.c
12805 F:      drivers/net/can/m_can/m_can.h
12806 F:      drivers/net/can/m_can/m_can_platform.c
12807
12808 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12809 M:      Rishi Gupta <gupt21@gmail.com>
12810 L:      linux-i2c@vger.kernel.org
12811 L:      linux-input@vger.kernel.org
12812 S:      Maintained
12813 F:      drivers/hid/hid-mcp2221.c
12814
12815 MCP251XFD SPI-CAN NETWORK DRIVER
12816 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12817 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12818 R:      Thomas Kopp <thomas.kopp@microchip.com>
12819 L:      linux-can@vger.kernel.org
12820 S:      Maintained
12821 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12822 F:      drivers/net/can/spi/mcp251xfd/
12823
12824 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12825 M:      Peter Rosin <peda@axentia.se>
12826 L:      linux-iio@vger.kernel.org
12827 S:      Maintained
12828 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12829 F:      drivers/iio/potentiometer/mcp4018.c
12830 F:      drivers/iio/potentiometer/mcp4531.c
12831
12832 MCR20A IEEE-802.15.4 RADIO DRIVER
12833 M:      Xue Liu <liuxuenetmail@gmail.com>
12834 L:      linux-wpan@vger.kernel.org
12835 S:      Maintained
12836 W:      https://github.com/xueliu/mcr20a-linux
12837 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12838 F:      drivers/net/ieee802154/mcr20a.c
12839 F:      drivers/net/ieee802154/mcr20a.h
12840
12841 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12842 M:      William Breathitt Gray <william.gray@linaro.org>
12843 L:      linux-iio@vger.kernel.org
12844 S:      Maintained
12845 F:      drivers/iio/dac/cio-dac.c
12846
12847 MEDIA CONTROLLER FRAMEWORK
12848 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12849 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12850 L:      linux-media@vger.kernel.org
12851 S:      Supported
12852 W:      https://www.linuxtv.org
12853 T:      git git://linuxtv.org/media_tree.git
12854 F:      drivers/media/mc/
12855 F:      include/media/media-*.h
12856 F:      include/uapi/linux/media.h
12857
12858 MEDIA DRIVER FOR FREESCALE IMX PXP
12859 M:      Philipp Zabel <p.zabel@pengutronix.de>
12860 L:      linux-media@vger.kernel.org
12861 S:      Maintained
12862 T:      git git://linuxtv.org/media_tree.git
12863 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12864
12865 MEDIA DRIVERS FOR ASCOT2E
12866 M:      Sergey Kozlov <serjk@netup.ru>
12867 M:      Abylay Ospan <aospan@netup.ru>
12868 L:      linux-media@vger.kernel.org
12869 S:      Supported
12870 W:      https://linuxtv.org
12871 W:      http://netup.tv/
12872 T:      git git://linuxtv.org/media_tree.git
12873 F:      drivers/media/dvb-frontends/ascot2e*
12874
12875 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12876 M:      Jasmin Jessich <jasmin@anw.at>
12877 L:      linux-media@vger.kernel.org
12878 S:      Maintained
12879 W:      https://linuxtv.org
12880 T:      git git://linuxtv.org/media_tree.git
12881 F:      drivers/media/dvb-frontends/cxd2099*
12882
12883 MEDIA DRIVERS FOR CXD2841ER
12884 M:      Sergey Kozlov <serjk@netup.ru>
12885 M:      Abylay Ospan <aospan@netup.ru>
12886 L:      linux-media@vger.kernel.org
12887 S:      Supported
12888 W:      https://linuxtv.org
12889 W:      http://netup.tv/
12890 T:      git git://linuxtv.org/media_tree.git
12891 F:      drivers/media/dvb-frontends/cxd2841er*
12892
12893 MEDIA DRIVERS FOR CXD2880
12894 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12895 L:      linux-media@vger.kernel.org
12896 S:      Supported
12897 W:      http://linuxtv.org/
12898 T:      git git://linuxtv.org/media_tree.git
12899 F:      drivers/media/dvb-frontends/cxd2880/*
12900 F:      drivers/media/spi/cxd2880*
12901
12902 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12903 L:      linux-media@vger.kernel.org
12904 S:      Orphan
12905 W:      https://linuxtv.org
12906 T:      git git://linuxtv.org/media_tree.git
12907 F:      drivers/media/pci/ddbridge/*
12908
12909 MEDIA DRIVERS FOR FREESCALE IMX
12910 M:      Steve Longerbeam <slongerbeam@gmail.com>
12911 M:      Philipp Zabel <p.zabel@pengutronix.de>
12912 L:      linux-media@vger.kernel.org
12913 S:      Maintained
12914 T:      git git://linuxtv.org/media_tree.git
12915 F:      Documentation/admin-guide/media/imx.rst
12916 F:      Documentation/devicetree/bindings/media/imx.txt
12917 F:      drivers/staging/media/imx/
12918 F:      include/linux/imx-media.h
12919 F:      include/media/imx.h
12920
12921 MEDIA DRIVERS FOR FREESCALE IMX7
12922 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12923 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12924 L:      linux-media@vger.kernel.org
12925 S:      Maintained
12926 T:      git git://linuxtv.org/media_tree.git
12927 F:      Documentation/admin-guide/media/imx7.rst
12928 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12929 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12930 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12931 F:      drivers/media/platform/nxp/imx7-media-csi.c
12932
12933 MEDIA DRIVERS FOR HELENE
12934 M:      Abylay Ospan <aospan@netup.ru>
12935 L:      linux-media@vger.kernel.org
12936 S:      Supported
12937 W:      https://linuxtv.org
12938 W:      http://netup.tv/
12939 T:      git git://linuxtv.org/media_tree.git
12940 F:      drivers/media/dvb-frontends/helene*
12941
12942 MEDIA DRIVERS FOR HORUS3A
12943 M:      Sergey Kozlov <serjk@netup.ru>
12944 M:      Abylay Ospan <aospan@netup.ru>
12945 L:      linux-media@vger.kernel.org
12946 S:      Supported
12947 W:      https://linuxtv.org
12948 W:      http://netup.tv/
12949 T:      git git://linuxtv.org/media_tree.git
12950 F:      drivers/media/dvb-frontends/horus3a*
12951
12952 MEDIA DRIVERS FOR LNBH25
12953 M:      Sergey Kozlov <serjk@netup.ru>
12954 M:      Abylay Ospan <aospan@netup.ru>
12955 L:      linux-media@vger.kernel.org
12956 S:      Supported
12957 W:      https://linuxtv.org
12958 W:      http://netup.tv/
12959 T:      git git://linuxtv.org/media_tree.git
12960 F:      drivers/media/dvb-frontends/lnbh25*
12961
12962 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12963 L:      linux-media@vger.kernel.org
12964 S:      Orphan
12965 W:      https://linuxtv.org
12966 T:      git git://linuxtv.org/media_tree.git
12967 F:      drivers/media/dvb-frontends/mxl5xx*
12968
12969 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12970 M:      Sergey Kozlov <serjk@netup.ru>
12971 M:      Abylay Ospan <aospan@netup.ru>
12972 L:      linux-media@vger.kernel.org
12973 S:      Supported
12974 W:      https://linuxtv.org
12975 W:      http://netup.tv/
12976 T:      git git://linuxtv.org/media_tree.git
12977 F:      drivers/media/pci/netup_unidvb/*
12978
12979 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12980 M:      Dmitry Osipenko <digetx@gmail.com>
12981 L:      linux-media@vger.kernel.org
12982 L:      linux-tegra@vger.kernel.org
12983 S:      Maintained
12984 T:      git git://linuxtv.org/media_tree.git
12985 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12986 F:      drivers/media/platform/nvidia/tegra-vde/
12987
12988 MEDIA DRIVERS FOR RENESAS - CEU
12989 M:      Jacopo Mondi <jacopo@jmondi.org>
12990 L:      linux-media@vger.kernel.org
12991 L:      linux-renesas-soc@vger.kernel.org
12992 S:      Supported
12993 T:      git git://linuxtv.org/media_tree.git
12994 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12995 F:      drivers/media/platform/renesas/renesas-ceu.c
12996 F:      include/media/drv-intf/renesas-ceu.h
12997
12998 MEDIA DRIVERS FOR RENESAS - DRIF
12999 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
13000 L:      linux-media@vger.kernel.org
13001 L:      linux-renesas-soc@vger.kernel.org
13002 S:      Supported
13003 T:      git git://linuxtv.org/media_tree.git
13004 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
13005 F:      drivers/media/platform/renesas/rcar_drif.c
13006
13007 MEDIA DRIVERS FOR RENESAS - FCP
13008 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13009 L:      linux-media@vger.kernel.org
13010 L:      linux-renesas-soc@vger.kernel.org
13011 S:      Supported
13012 T:      git git://linuxtv.org/media_tree.git
13013 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
13014 F:      drivers/media/platform/renesas/rcar-fcp.c
13015 F:      include/media/rcar-fcp.h
13016
13017 MEDIA DRIVERS FOR RENESAS - FDP1
13018 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
13019 L:      linux-media@vger.kernel.org
13020 L:      linux-renesas-soc@vger.kernel.org
13021 S:      Supported
13022 T:      git git://linuxtv.org/media_tree.git
13023 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
13024 F:      drivers/media/platform/renesas/rcar_fdp1.c
13025
13026 MEDIA DRIVERS FOR RENESAS - VIN
13027 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
13028 L:      linux-media@vger.kernel.org
13029 L:      linux-renesas-soc@vger.kernel.org
13030 S:      Supported
13031 T:      git git://linuxtv.org/media_tree.git
13032 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
13033 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
13034 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
13035 F:      drivers/media/platform/renesas/rcar-isp.c
13036 F:      drivers/media/platform/renesas/rcar-vin/
13037
13038 MEDIA DRIVERS FOR RENESAS - VSP1
13039 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13040 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
13041 L:      linux-media@vger.kernel.org
13042 L:      linux-renesas-soc@vger.kernel.org
13043 S:      Supported
13044 T:      git git://linuxtv.org/media_tree.git
13045 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
13046 F:      drivers/media/platform/renesas/vsp1/
13047
13048 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
13049 L:      linux-media@vger.kernel.org
13050 S:      Orphan
13051 W:      https://linuxtv.org
13052 T:      git git://linuxtv.org/media_tree.git
13053 F:      drivers/media/dvb-frontends/stv0910*
13054
13055 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
13056 L:      linux-media@vger.kernel.org
13057 S:      Orphan
13058 W:      https://linuxtv.org
13059 T:      git git://linuxtv.org/media_tree.git
13060 F:      drivers/media/dvb-frontends/stv6111*
13061
13062 MEDIA DRIVERS FOR STM32 - DCMI
13063 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
13064 L:      linux-media@vger.kernel.org
13065 S:      Supported
13066 T:      git git://linuxtv.org/media_tree.git
13067 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
13068 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
13069
13070 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
13071 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13072 L:      linux-media@vger.kernel.org
13073 S:      Maintained
13074 W:      https://linuxtv.org
13075 Q:      http://patchwork.kernel.org/project/linux-media/list/
13076 T:      git git://linuxtv.org/media_tree.git
13077 F:      Documentation/admin-guide/media/
13078 F:      Documentation/devicetree/bindings/media/
13079 F:      Documentation/driver-api/media/
13080 F:      Documentation/userspace-api/media/
13081 F:      drivers/media/
13082 F:      drivers/staging/media/
13083 F:      include/dt-bindings/media/
13084 F:      include/linux/platform_data/media/
13085 F:      include/media/
13086 F:      include/uapi/linux/dvb/
13087 F:      include/uapi/linux/ivtv*
13088 F:      include/uapi/linux/media.h
13089 F:      include/uapi/linux/meye.h
13090 F:      include/uapi/linux/uvcvideo.h
13091 F:      include/uapi/linux/v4l2-*
13092 F:      include/uapi/linux/videodev2.h
13093
13094 MEDIATEK BLUETOOTH DRIVER
13095 M:      Sean Wang <sean.wang@mediatek.com>
13096 L:      linux-bluetooth@vger.kernel.org
13097 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13098 S:      Maintained
13099 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
13100 F:      drivers/bluetooth/btmtkuart.c
13101
13102 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
13103 M:      Sean Wang <sean.wang@mediatek.com>
13104 L:      linux-pm@vger.kernel.org
13105 S:      Maintained
13106 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
13107 F:      drivers/power/reset/mt6323-poweroff.c
13108
13109 MEDIATEK CIR DRIVER
13110 M:      Sean Wang <sean.wang@mediatek.com>
13111 S:      Maintained
13112 F:      drivers/media/rc/mtk-cir.c
13113
13114 MEDIATEK DMA DRIVER
13115 M:      Sean Wang <sean.wang@mediatek.com>
13116 L:      dmaengine@vger.kernel.org
13117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13118 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13119 S:      Maintained
13120 F:      Documentation/devicetree/bindings/dma/mtk-*
13121 F:      drivers/dma/mediatek/
13122
13123 MEDIATEK ETHERNET DRIVER
13124 M:      Felix Fietkau <nbd@nbd.name>
13125 M:      John Crispin <john@phrozen.org>
13126 M:      Sean Wang <sean.wang@mediatek.com>
13127 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
13128 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13129 L:      netdev@vger.kernel.org
13130 S:      Maintained
13131 F:      drivers/net/ethernet/mediatek/
13132
13133 MEDIATEK I2C CONTROLLER DRIVER
13134 M:      Qii Wang <qii.wang@mediatek.com>
13135 L:      linux-i2c@vger.kernel.org
13136 S:      Maintained
13137 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
13138 F:      drivers/i2c/busses/i2c-mt65xx.c
13139
13140 MEDIATEK IOMMU DRIVER
13141 M:      Yong Wu <yong.wu@mediatek.com>
13142 L:      iommu@lists.linux.dev
13143 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13144 S:      Supported
13145 F:      Documentation/devicetree/bindings/iommu/mediatek*
13146 F:      drivers/iommu/mtk_iommu*
13147 F:      include/dt-bindings/memory/mt*-port.h
13148
13149 MEDIATEK JPEG DRIVER
13150 M:      Bin Liu <bin.liu@mediatek.com>
13151 S:      Supported
13152 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13153 F:      drivers/media/platform/mediatek/jpeg/
13154
13155 MEDIATEK KEYPAD DRIVER
13156 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
13157 S:      Supported
13158 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13159 F:      drivers/input/keyboard/mt6779-keypad.c
13160
13161 MEDIATEK MDP DRIVER
13162 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
13163 M:      Houlong Wei <houlong.wei@mediatek.com>
13164 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13165 S:      Supported
13166 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
13167 F:      drivers/media/platform/mediatek/mdp/
13168 F:      drivers/media/platform/mediatek/vpu/
13169
13170 MEDIATEK MEDIA DRIVER
13171 M:      Tiffany Lin <tiffany.lin@mediatek.com>
13172 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13173 M:      Yunfei Dong <yunfei.dong@mediatek.com>
13174 S:      Supported
13175 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13176 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13177 F:      drivers/media/platform/mediatek/vcodec/
13178 F:      drivers/media/platform/mediatek/vpu/
13179
13180 MEDIATEK MMC/SD/SDIO DRIVER
13181 M:      Chaotian Jing <chaotian.jing@mediatek.com>
13182 S:      Maintained
13183 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13184 F:      drivers/mmc/host/mtk-sd.c
13185
13186 MEDIATEK MT76 WIRELESS LAN DRIVER
13187 M:      Felix Fietkau <nbd@nbd.name>
13188 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13189 M:      Ryder Lee <ryder.lee@mediatek.com>
13190 R:      Shayne Chen <shayne.chen@mediatek.com>
13191 R:      Sean Wang <sean.wang@mediatek.com>
13192 L:      linux-wireless@vger.kernel.org
13193 S:      Maintained
13194 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13195 F:      drivers/net/wireless/mediatek/mt76/
13196
13197 MEDIATEK MT7601U WIRELESS LAN DRIVER
13198 M:      Jakub Kicinski <kuba@kernel.org>
13199 L:      linux-wireless@vger.kernel.org
13200 S:      Maintained
13201 F:      drivers/net/wireless/mediatek/mt7601u/
13202
13203 MEDIATEK MT7621 CLOCK DRIVER
13204 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13205 S:      Maintained
13206 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13207 F:      drivers/clk/ralink/clk-mt7621.c
13208
13209 MEDIATEK MT7621/28/88 I2C DRIVER
13210 M:      Stefan Roese <sr@denx.de>
13211 L:      linux-i2c@vger.kernel.org
13212 S:      Maintained
13213 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13214 F:      drivers/i2c/busses/i2c-mt7621.c
13215
13216 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13217 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13218 S:      Maintained
13219 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13220 F:      drivers/pci/controller/pcie-mt7621.c
13221
13222 MEDIATEK MT7621 PHY PCI DRIVER
13223 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13224 S:      Maintained
13225 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13226 F:      drivers/phy/ralink/phy-mt7621-pci.c
13227
13228 MEDIATEK NAND CONTROLLER DRIVER
13229 L:      linux-mtd@lists.infradead.org
13230 S:      Orphan
13231 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
13232 F:      drivers/mtd/nand/raw/mtk_*
13233
13234 MEDIATEK PMIC LED DRIVER
13235 M:      Sean Wang <sean.wang@mediatek.com>
13236 S:      Maintained
13237 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13238 F:      drivers/leds/leds-mt6323.c
13239
13240 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13241 M:      Sean Wang <sean.wang@mediatek.com>
13242 S:      Maintained
13243 F:      drivers/char/hw_random/mtk-rng.c
13244
13245 MEDIATEK SMI DRIVER
13246 M:      Yong Wu <yong.wu@mediatek.com>
13247 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13248 S:      Supported
13249 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13250 F:      drivers/memory/mtk-smi.c
13251 F:      include/soc/mediatek/smi.h
13252
13253 MEDIATEK SWITCH DRIVER
13254 M:      Sean Wang <sean.wang@mediatek.com>
13255 M:      Landen Chao <Landen.Chao@mediatek.com>
13256 M:      DENG Qingfang <dqfext@gmail.com>
13257 L:      netdev@vger.kernel.org
13258 S:      Maintained
13259 F:      drivers/net/dsa/mt7530.*
13260 F:      net/dsa/tag_mtk.c
13261
13262 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13263 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13264 M:      Intel Corporation <linuxwwan@intel.com>
13265 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13266 R:      Liu Haijun <haijun.liu@mediatek.com>
13267 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13268 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
13269 L:      netdev@vger.kernel.org
13270 S:      Supported
13271 F:      drivers/net/wwan/t7xx/
13272
13273 MEDIATEK USB3 DRD IP DRIVER
13274 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
13275 L:      linux-usb@vger.kernel.org
13276 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13277 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13278 S:      Maintained
13279 F:      Documentation/devicetree/bindings/usb/mediatek,*
13280 F:      drivers/usb/host/xhci-mtk*
13281 F:      drivers/usb/mtu3/
13282
13283 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13284 M:      Peter Senna Tschudin <peter.senna@gmail.com>
13285 M:      Martin Donnelly <martin.donnelly@ge.com>
13286 M:      Martyn Welch <martyn.welch@collabora.co.uk>
13287 S:      Maintained
13288 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13289 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13290
13291 MEGARAID SCSI/SAS DRIVERS
13292 M:      Kashyap Desai <kashyap.desai@broadcom.com>
13293 M:      Sumit Saxena <sumit.saxena@broadcom.com>
13294 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13295 L:      megaraidlinux.pdl@broadcom.com
13296 L:      linux-scsi@vger.kernel.org
13297 S:      Maintained
13298 W:      http://www.avagotech.com/support/
13299 F:      Documentation/scsi/megaraid.rst
13300 F:      drivers/scsi/megaraid.*
13301 F:      drivers/scsi/megaraid/
13302
13303 MELEXIS MLX90614 DRIVER
13304 M:      Crt Mori <cmo@melexis.com>
13305 L:      linux-iio@vger.kernel.org
13306 S:      Supported
13307 W:      http://www.melexis.com
13308 F:      drivers/iio/temperature/mlx90614.c
13309
13310 MELEXIS MLX90632 DRIVER
13311 M:      Crt Mori <cmo@melexis.com>
13312 L:      linux-iio@vger.kernel.org
13313 S:      Supported
13314 W:      http://www.melexis.com
13315 F:      drivers/iio/temperature/mlx90632.c
13316
13317 MELFAS MIP4 TOUCHSCREEN DRIVER
13318 M:      Sangwon Jee <jeesw@melfas.com>
13319 S:      Supported
13320 W:      http://www.melfas.com
13321 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13322 F:      drivers/input/touchscreen/melfas_mip4.c
13323
13324 MELLANOX BLUEFIELD I2C DRIVER
13325 M:      Khalil Blaiech <kblaiech@nvidia.com>
13326 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13327 L:      linux-i2c@vger.kernel.org
13328 S:      Supported
13329 F:      drivers/i2c/busses/i2c-mlxbf.c
13330
13331 MELLANOX ETHERNET DRIVER (mlx4_en)
13332 M:      Tariq Toukan <tariqt@nvidia.com>
13333 L:      netdev@vger.kernel.org
13334 S:      Supported
13335 W:      http://www.mellanox.com
13336 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13337 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13338
13339 MELLANOX ETHERNET DRIVER (mlx5e)
13340 M:      Saeed Mahameed <saeedm@nvidia.com>
13341 L:      netdev@vger.kernel.org
13342 S:      Supported
13343 W:      http://www.mellanox.com
13344 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13345 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13346
13347 MELLANOX ETHERNET INNOVA DRIVERS
13348 R:      Boris Pismenny <borisp@nvidia.com>
13349 L:      netdev@vger.kernel.org
13350 S:      Supported
13351 W:      http://www.mellanox.com
13352 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13353 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13354 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13355 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13356
13357 MELLANOX ETHERNET SWITCH DRIVERS
13358 M:      Ido Schimmel <idosch@nvidia.com>
13359 M:      Petr Machata <petrm@nvidia.com>
13360 L:      netdev@vger.kernel.org
13361 S:      Supported
13362 W:      http://www.mellanox.com
13363 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13364 F:      drivers/net/ethernet/mellanox/mlxsw/
13365 F:      tools/testing/selftests/drivers/net/mlxsw/
13366
13367 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13368 M:      mlxsw@nvidia.com
13369 L:      netdev@vger.kernel.org
13370 S:      Supported
13371 W:      http://www.mellanox.com
13372 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13373 F:      drivers/net/ethernet/mellanox/mlxfw/
13374
13375 MELLANOX HARDWARE PLATFORM SUPPORT
13376 M:      Hans de Goede <hdegoede@redhat.com>
13377 M:      Mark Gross <markgross@kernel.org>
13378 M:      Vadim Pasternak <vadimp@nvidia.com>
13379 L:      platform-driver-x86@vger.kernel.org
13380 S:      Supported
13381 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13382 F:      drivers/platform/mellanox/
13383 F:      include/linux/platform_data/mlxreg.h
13384
13385 MELLANOX MLX4 core VPI driver
13386 M:      Tariq Toukan <tariqt@nvidia.com>
13387 L:      netdev@vger.kernel.org
13388 L:      linux-rdma@vger.kernel.org
13389 S:      Supported
13390 W:      http://www.mellanox.com
13391 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13392 F:      drivers/net/ethernet/mellanox/mlx4/
13393 F:      include/linux/mlx4/
13394
13395 MELLANOX MLX4 IB driver
13396 M:      Yishai Hadas <yishaih@nvidia.com>
13397 L:      linux-rdma@vger.kernel.org
13398 S:      Supported
13399 W:      http://www.mellanox.com
13400 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13401 F:      drivers/infiniband/hw/mlx4/
13402 F:      include/linux/mlx4/
13403 F:      include/uapi/rdma/mlx4-abi.h
13404
13405 MELLANOX MLX5 core VPI driver
13406 M:      Saeed Mahameed <saeedm@nvidia.com>
13407 M:      Leon Romanovsky <leonro@nvidia.com>
13408 L:      netdev@vger.kernel.org
13409 L:      linux-rdma@vger.kernel.org
13410 S:      Supported
13411 W:      http://www.mellanox.com
13412 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13413 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13414 F:      drivers/net/ethernet/mellanox/mlx5/core/
13415 F:      include/linux/mlx5/
13416
13417 MELLANOX MLX5 IB driver
13418 M:      Leon Romanovsky <leonro@nvidia.com>
13419 L:      linux-rdma@vger.kernel.org
13420 S:      Supported
13421 W:      http://www.mellanox.com
13422 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13423 F:      drivers/infiniband/hw/mlx5/
13424 F:      include/linux/mlx5/
13425 F:      include/uapi/rdma/mlx5-abi.h
13426
13427 MELLANOX MLXCPLD I2C AND MUX DRIVER
13428 M:      Vadim Pasternak <vadimp@nvidia.com>
13429 M:      Michael Shych <michaelsh@nvidia.com>
13430 L:      linux-i2c@vger.kernel.org
13431 S:      Supported
13432 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13433 F:      drivers/i2c/busses/i2c-mlxcpld.c
13434 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13435
13436 MELLANOX MLXCPLD LED DRIVER
13437 M:      Vadim Pasternak <vadimp@nvidia.com>
13438 L:      linux-leds@vger.kernel.org
13439 S:      Supported
13440 F:      Documentation/leds/leds-mlxcpld.rst
13441 F:      drivers/leds/leds-mlxcpld.c
13442 F:      drivers/leds/leds-mlxreg.c
13443
13444 MELLANOX PLATFORM DRIVER
13445 M:      Vadim Pasternak <vadimp@nvidia.com>
13446 L:      platform-driver-x86@vger.kernel.org
13447 S:      Supported
13448 F:      drivers/platform/x86/mlx-platform.c
13449
13450 MEMBARRIER SUPPORT
13451 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13452 M:      "Paul E. McKenney" <paulmck@kernel.org>
13453 L:      linux-kernel@vger.kernel.org
13454 S:      Supported
13455 F:      arch/powerpc/include/asm/membarrier.h
13456 F:      include/uapi/linux/membarrier.h
13457 F:      kernel/sched/membarrier.c
13458
13459 MEMBLOCK
13460 M:      Mike Rapoport <rppt@kernel.org>
13461 L:      linux-mm@kvack.org
13462 S:      Maintained
13463 F:      Documentation/core-api/boot-time-mm.rst
13464 F:      include/linux/memblock.h
13465 F:      mm/memblock.c
13466 F:      tools/testing/memblock/
13467
13468 MEMORY CONTROLLER DRIVERS
13469 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13470 L:      linux-kernel@vger.kernel.org
13471 S:      Maintained
13472 B:      mailto:krzysztof.kozlowski@linaro.org
13473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13474 F:      Documentation/devicetree/bindings/memory-controllers/
13475 F:      drivers/memory/
13476 F:      include/dt-bindings/memory/
13477 F:      include/memory/
13478
13479 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13480 M:      Dmitry Osipenko <digetx@gmail.com>
13481 L:      linux-pm@vger.kernel.org
13482 L:      linux-tegra@vger.kernel.org
13483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13484 S:      Maintained
13485 F:      drivers/devfreq/tegra30-devfreq.c
13486
13487 MEMORY MANAGEMENT
13488 M:      Andrew Morton <akpm@linux-foundation.org>
13489 L:      linux-mm@kvack.org
13490 S:      Maintained
13491 W:      http://www.linux-mm.org
13492 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13493 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13494 F:      include/linux/gfp.h
13495 F:      include/linux/gfp_types.h
13496 F:      include/linux/memory_hotplug.h
13497 F:      include/linux/mm.h
13498 F:      include/linux/mmzone.h
13499 F:      include/linux/pagewalk.h
13500 F:      mm/
13501 F:      tools/testing/selftests/vm/
13502
13503 VMALLOC
13504 M:      Andrew Morton <akpm@linux-foundation.org>
13505 R:      Uladzislau Rezki <urezki@gmail.com>
13506 R:      Christoph Hellwig <hch@infradead.org>
13507 L:      linux-mm@kvack.org
13508 S:      Maintained
13509 W:      http://www.linux-mm.org
13510 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13511 F:      include/linux/vmalloc.h
13512 F:      mm/vmalloc.c
13513
13514 MEMORY HOT(UN)PLUG
13515 M:      David Hildenbrand <david@redhat.com>
13516 M:      Oscar Salvador <osalvador@suse.de>
13517 L:      linux-mm@kvack.org
13518 S:      Maintained
13519 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13520 F:      Documentation/core-api/memory-hotplug.rst
13521 F:      drivers/base/memory.c
13522 F:      include/linux/memory_hotplug.h
13523 F:      mm/memory_hotplug.c
13524 F:      tools/testing/selftests/memory-hotplug/
13525
13526 MEMORY TECHNOLOGY DEVICES (MTD)
13527 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13528 M:      Richard Weinberger <richard@nod.at>
13529 M:      Vignesh Raghavendra <vigneshr@ti.com>
13530 L:      linux-mtd@lists.infradead.org
13531 S:      Maintained
13532 W:      http://www.linux-mtd.infradead.org/
13533 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13534 C:      irc://irc.oftc.net/mtd
13535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13537 F:      Documentation/devicetree/bindings/mtd/
13538 F:      drivers/mtd/
13539 F:      include/linux/mtd/
13540 F:      include/uapi/mtd/
13541
13542 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13543 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13544 L:      linux-iio@vger.kernel.org
13545 S:      Maintained
13546 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13547 F:      drivers/iio/accel/msa311.c
13548
13549 MEN A21 WATCHDOG DRIVER
13550 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13551 L:      linux-watchdog@vger.kernel.org
13552 S:      Maintained
13553 F:      drivers/watchdog/mena21_wdt.c
13554
13555 MEN CHAMELEON BUS (mcb)
13556 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13557 S:      Maintained
13558 F:      Documentation/driver-api/men-chameleon-bus.rst
13559 F:      drivers/mcb/
13560 F:      include/linux/mcb.h
13561
13562 MEN F21BMC (Board Management Controller)
13563 M:      Andreas Werner <andreas.werner@men.de>
13564 S:      Supported
13565 F:      Documentation/hwmon/menf21bmc.rst
13566 F:      drivers/hwmon/menf21bmc_hwmon.c
13567 F:      drivers/leds/leds-menf21bmc.c
13568 F:      drivers/mfd/menf21bmc.c
13569 F:      drivers/watchdog/menf21bmc_wdt.c
13570
13571 MEN Z069 WATCHDOG DRIVER
13572 M:      Johannes Thumshirn <jth@kernel.org>
13573 L:      linux-watchdog@vger.kernel.org
13574 S:      Maintained
13575 F:      drivers/watchdog/menz69_wdt.c
13576
13577 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13578 M:      Neil Armstrong <neil.armstrong@linaro.org>
13579 L:      linux-media@vger.kernel.org
13580 L:      linux-amlogic@lists.infradead.org
13581 S:      Supported
13582 W:      http://linux-meson.com/
13583 T:      git git://linuxtv.org/media_tree.git
13584 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13585 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13586 F:      drivers/media/cec/platform/meson/ao-cec.c
13587
13588 MESON GE2D DRIVER FOR AMLOGIC SOCS
13589 M:      Neil Armstrong <neil.armstrong@linaro.org>
13590 L:      linux-media@vger.kernel.org
13591 L:      linux-amlogic@lists.infradead.org
13592 S:      Supported
13593 T:      git git://linuxtv.org/media_tree.git
13594 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13595 F:      drivers/media/platform/amlogic/meson-ge2d/
13596
13597 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13598 M:      Liang Yang <liang.yang@amlogic.com>
13599 L:      linux-mtd@lists.infradead.org
13600 S:      Maintained
13601 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13602 F:      drivers/mtd/nand/raw/meson_*
13603
13604 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13605 M:      Neil Armstrong <neil.armstrong@linaro.org>
13606 L:      linux-media@vger.kernel.org
13607 L:      linux-amlogic@lists.infradead.org
13608 S:      Supported
13609 T:      git git://linuxtv.org/media_tree.git
13610 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13611 F:      drivers/staging/media/meson/vdec/
13612
13613 METHODE UDPU SUPPORT
13614 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13615 S:      Maintained
13616 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13617
13618 MHI BUS
13619 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13620 L:      mhi@lists.linux.dev
13621 L:      linux-arm-msm@vger.kernel.org
13622 S:      Maintained
13623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13624 F:      Documentation/ABI/stable/sysfs-bus-mhi
13625 F:      Documentation/mhi/
13626 F:      drivers/bus/mhi/
13627 F:      include/linux/mhi.h
13628
13629 MICROBLAZE ARCHITECTURE
13630 M:      Michal Simek <monstr@monstr.eu>
13631 S:      Supported
13632 W:      http://www.monstr.eu/fdt/
13633 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13634 F:      arch/microblaze/
13635
13636 MICROBLAZE TMR MANAGER
13637 M:      Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13638 S:      Supported
13639 F:      Documentation/ABI/testing/sysfs-driver-xilinx-tmr-manager
13640 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-manager.yaml
13641 F:      drivers/misc/xilinx_tmr_manager.c
13642
13643 MICROBLAZE TMR INJECT
13644 M:      Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13645 S:      Supported
13646 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-inject.yaml
13647 F:      drivers/misc/xilinx_tmr_inject.c
13648
13649 MICROCHIP AT91 DMA DRIVERS
13650 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13651 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13653 L:      dmaengine@vger.kernel.org
13654 S:      Supported
13655 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13656 F:      drivers/dma/at_hdmac.c
13657 F:      drivers/dma/at_xdmac.c
13658 F:      include/dt-bindings/dma/at91.h
13659
13660 MICROCHIP AT91 SERIAL DRIVER
13661 M:      Richard Genoud <richard.genoud@gmail.com>
13662 S:      Maintained
13663 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13664 F:      drivers/tty/serial/atmel_serial.c
13665 F:      drivers/tty/serial/atmel_serial.h
13666
13667 MICROCHIP AT91 USART MFD DRIVER
13668 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13669 L:      linux-kernel@vger.kernel.org
13670 S:      Supported
13671 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13672 F:      drivers/mfd/at91-usart.c
13673 F:      include/dt-bindings/mfd/at91-usart.h
13674
13675 MICROCHIP AT91 USART SPI DRIVER
13676 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13677 L:      linux-spi@vger.kernel.org
13678 S:      Supported
13679 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13680 F:      drivers/spi/spi-at91-usart.c
13681
13682 MICROCHIP AUDIO ASOC DRIVERS
13683 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13684 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13685 S:      Supported
13686 F:      sound/soc/atmel
13687
13688 MICROCHIP CSI2DC DRIVER
13689 M:      Eugen Hristev <eugen.hristev@microchip.com>
13690 L:      linux-media@vger.kernel.org
13691 S:      Supported
13692 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13693 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13694
13695 MICROCHIP ECC DRIVER
13696 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13697 L:      linux-crypto@vger.kernel.org
13698 S:      Maintained
13699 F:      drivers/crypto/atmel-ecc.*
13700
13701 MICROCHIP EIC DRIVER
13702 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13704 S:      Supported
13705 F:      drivers/irqchip/irq-mchp-eic.c
13706
13707 MICROCHIP I2C DRIVER
13708 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13709 L:      linux-i2c@vger.kernel.org
13710 S:      Supported
13711 F:      drivers/i2c/busses/i2c-at91-*.c
13712 F:      drivers/i2c/busses/i2c-at91.h
13713
13714 MICROCHIP ISC DRIVER
13715 M:      Eugen Hristev <eugen.hristev@microchip.com>
13716 L:      linux-media@vger.kernel.org
13717 S:      Supported
13718 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13719 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13720 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13721 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13722 F:      drivers/media/platform/microchip/microchip-isc*
13723 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13724 F:      include/linux/atmel-isc-media.h
13725
13726 MICROCHIP ISI DRIVER
13727 M:      Eugen Hristev <eugen.hristev@microchip.com>
13728 L:      linux-media@vger.kernel.org
13729 S:      Supported
13730 F:      drivers/media/platform/atmel/atmel-isi.c
13731 F:      drivers/media/platform/atmel/atmel-isi.h
13732
13733 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13734 M:      Woojung Huh <woojung.huh@microchip.com>
13735 M:      UNGLinuxDriver@microchip.com
13736 L:      netdev@vger.kernel.org
13737 S:      Maintained
13738 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13739 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13740 F:      drivers/net/dsa/microchip/*
13741 F:      include/linux/platform_data/microchip-ksz.h
13742 F:      net/dsa/tag_ksz.c
13743
13744 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13745 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13746 R:      UNGLinuxDriver@microchip.com
13747 L:      netdev@vger.kernel.org
13748 S:      Maintained
13749 F:      drivers/net/phy/microchip_t1.c
13750
13751 MICROCHIP LAN743X ETHERNET DRIVER
13752 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13753 M:      UNGLinuxDriver@microchip.com
13754 L:      netdev@vger.kernel.org
13755 S:      Maintained
13756 F:      drivers/net/ethernet/microchip/lan743x_*
13757
13758 MICROCHIP LAN966X ETHERNET DRIVER
13759 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13760 M:      UNGLinuxDriver@microchip.com
13761 L:      netdev@vger.kernel.org
13762 S:      Maintained
13763 F:      drivers/net/ethernet/microchip/lan966x/*
13764
13765 MICROCHIP LCDFB DRIVER
13766 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13767 L:      linux-fbdev@vger.kernel.org
13768 S:      Maintained
13769 F:      drivers/video/fbdev/atmel_lcdfb.c
13770 F:      include/video/atmel_lcdc.h
13771
13772 MICROCHIP MCP16502 PMIC DRIVER
13773 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13774 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13775 S:      Supported
13776 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13777 F:      drivers/regulator/mcp16502.c
13778
13779 MICROCHIP MCP3911 ADC DRIVER
13780 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13781 M:      Kent Gustavsson <kent@minoris.se>
13782 L:      linux-iio@vger.kernel.org
13783 S:      Maintained
13784 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13785 F:      drivers/iio/adc/mcp3911.c
13786
13787 MICROCHIP MMC/SD/SDIO MCI DRIVER
13788 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13789 S:      Maintained
13790 F:      drivers/mmc/host/atmel-mci.c
13791
13792 MICROCHIP NAND DRIVER
13793 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13794 L:      linux-mtd@lists.infradead.org
13795 S:      Supported
13796 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13797 F:      drivers/mtd/nand/raw/atmel/*
13798
13799 MICROCHIP PCI1XXXX GP DRIVER
13800 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13801 L:      linux-gpio@vger.kernel.org
13802 S:      Supported
13803 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13804 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13805 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13806
13807 MICROCHIP OTPC DRIVER
13808 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13810 S:      Supported
13811 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13812 F:      drivers/nvmem/microchip-otpc.c
13813 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13814
13815 MICROCHIP PCI1XXXX I2C DRIVER
13816 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13817 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13818 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13819 L:      linux-i2c@vger.kernel.org
13820 S:      Maintained
13821 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13822
13823 MICROCHIP PWM DRIVER
13824 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13826 L:      linux-pwm@vger.kernel.org
13827 S:      Supported
13828 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13829 F:      drivers/pwm/pwm-atmel.c
13830
13831 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13832 M:      Eugen Hristev <eugen.hristev@microchip.com>
13833 L:      linux-iio@vger.kernel.org
13834 S:      Supported
13835 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13836 F:      drivers/iio/adc/at91-sama5d2_adc.c
13837 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13838
13839 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13840 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13841 S:      Supported
13842 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13843
13844 MICROCHIP SPI DRIVER
13845 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13846 S:      Supported
13847 F:      drivers/spi/spi-atmel.*
13848
13849 MICROCHIP SSC DRIVER
13850 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13852 S:      Supported
13853 F:      drivers/misc/atmel-ssc.c
13854 F:      include/linux/atmel-ssc.h
13855
13856 MICROCHIP SOC DRIVERS
13857 M:      Conor Dooley <conor@kernel.org>
13858 S:      Supported
13859 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13860 F:      drivers/soc/microchip/
13861
13862 MICROCHIP USB251XB DRIVER
13863 M:      Richard Leitner <richard.leitner@skidata.com>
13864 L:      linux-usb@vger.kernel.org
13865 S:      Maintained
13866 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13867 F:      drivers/usb/misc/usb251xb.c
13868
13869 MICROCHIP USBA UDC DRIVER
13870 M:      Cristian Birsan <cristian.birsan@microchip.com>
13871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13872 S:      Supported
13873 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13874
13875 MICROCHIP WILC1000 WIFI DRIVER
13876 M:      Ajay Singh <ajay.kathat@microchip.com>
13877 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13878 L:      linux-wireless@vger.kernel.org
13879 S:      Supported
13880 F:      drivers/net/wireless/microchip/wilc1000/
13881
13882 MICROSEMI MIPS SOCS
13883 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13884 M:      UNGLinuxDriver@microchip.com
13885 L:      linux-mips@vger.kernel.org
13886 S:      Supported
13887 F:      Documentation/devicetree/bindings/mips/mscc.txt
13888 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13889 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13890 F:      arch/mips/boot/dts/mscc/
13891 F:      arch/mips/configs/generic/board-ocelot.config
13892 F:      arch/mips/generic/board-ocelot.c
13893
13894 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13895 M:      Don Brace <don.brace@microchip.com>
13896 L:      storagedev@microchip.com
13897 L:      linux-scsi@vger.kernel.org
13898 S:      Supported
13899 F:      Documentation/scsi/smartpqi.rst
13900 F:      drivers/scsi/smartpqi/Kconfig
13901 F:      drivers/scsi/smartpqi/Makefile
13902 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13903 F:      include/linux/cciss*.h
13904 F:      include/uapi/linux/cciss*.h
13905
13906 MICROSOFT MANA RDMA DRIVER
13907 M:      Long Li <longli@microsoft.com>
13908 M:      Ajay Sharma <sharmaajay@microsoft.com>
13909 L:      linux-rdma@vger.kernel.org
13910 S:      Supported
13911 F:      drivers/infiniband/hw/mana/
13912 F:      include/net/mana
13913 F:      include/uapi/rdma/mana-abi.h
13914
13915 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13916 M:      Maximilian Luz <luzmaximilian@gmail.com>
13917 L:      platform-driver-x86@vger.kernel.org
13918 S:      Maintained
13919 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13920
13921 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13922 M:      Maximilian Luz <luzmaximilian@gmail.com>
13923 L:      linux-pm@vger.kernel.org
13924 L:      platform-driver-x86@vger.kernel.org
13925 S:      Maintained
13926 F:      drivers/power/supply/surface_battery.c
13927 F:      drivers/power/supply/surface_charger.c
13928
13929 MICROSOFT SURFACE DTX DRIVER
13930 M:      Maximilian Luz <luzmaximilian@gmail.com>
13931 L:      platform-driver-x86@vger.kernel.org
13932 S:      Maintained
13933 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13934 F:      drivers/platform/surface/surface_dtx.c
13935 F:      include/uapi/linux/surface_aggregator/dtx.h
13936
13937 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13938 M:      Maximilian Luz <luzmaximilian@gmail.com>
13939 L:      platform-driver-x86@vger.kernel.org
13940 S:      Maintained
13941 F:      drivers/platform/surface/surface_gpe.c
13942
13943 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13944 M:      Hans de Goede <hdegoede@redhat.com>
13945 M:      Mark Gross <markgross@kernel.org>
13946 M:      Maximilian Luz <luzmaximilian@gmail.com>
13947 L:      platform-driver-x86@vger.kernel.org
13948 S:      Maintained
13949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13950 F:      drivers/platform/surface/
13951
13952 MICROSOFT SURFACE HID TRANSPORT DRIVER
13953 M:      Maximilian Luz <luzmaximilian@gmail.com>
13954 L:      linux-input@vger.kernel.org
13955 L:      platform-driver-x86@vger.kernel.org
13956 S:      Maintained
13957 F:      drivers/hid/surface-hid/
13958
13959 MICROSOFT SURFACE HOT-PLUG DRIVER
13960 M:      Maximilian Luz <luzmaximilian@gmail.com>
13961 L:      platform-driver-x86@vger.kernel.org
13962 S:      Maintained
13963 F:      drivers/platform/surface/surface_hotplug.c
13964
13965 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13966 M:      Maximilian Luz <luzmaximilian@gmail.com>
13967 L:      platform-driver-x86@vger.kernel.org
13968 S:      Maintained
13969 F:      drivers/platform/surface/surface_platform_profile.c
13970
13971 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13972 M:      Chen Yu <yu.c.chen@intel.com>
13973 L:      platform-driver-x86@vger.kernel.org
13974 S:      Supported
13975 F:      drivers/platform/surface/surfacepro3_button.c
13976
13977 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13978 M:      Maximilian Luz <luzmaximilian@gmail.com>
13979 L:      platform-driver-x86@vger.kernel.org
13980 S:      Maintained
13981 W:      https://github.com/linux-surface/surface-aggregator-module
13982 C:      irc://irc.libera.chat/linux-surface
13983 F:      Documentation/driver-api/surface_aggregator/
13984 F:      drivers/platform/surface/aggregator/
13985 F:      drivers/platform/surface/surface_acpi_notify.c
13986 F:      drivers/platform/surface/surface_aggregator_cdev.c
13987 F:      drivers/platform/surface/surface_aggregator_registry.c
13988 F:      include/linux/surface_acpi_notify.h
13989 F:      include/linux/surface_aggregator/
13990 F:      include/uapi/linux/surface_aggregator/
13991
13992 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13993 M:      Maximilian Luz <luzmaximilian@gmail.com>
13994 L:      platform-driver-x86@vger.kernel.org
13995 S:      Maintained
13996 F:      drivers/platform/surface/surface_aggregator_hub.c
13997
13998 MICROTEK X6 SCANNER
13999 M:      Oliver Neukum <oliver@neukum.org>
14000 S:      Maintained
14001 F:      drivers/usb/image/microtek.*
14002
14003 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
14004 M:      Luka Kovacic <luka.kovacic@sartura.hr>
14005 M:      Luka Perkov <luka.perkov@sartura.hr>
14006 S:      Maintained
14007 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
14008 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
14009 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
14010 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
14011 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
14012 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
14013
14014 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
14015 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14016 L:      linux-media@vger.kernel.org
14017 S:      Maintained
14018 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
14019 F:      Documentation/driver-api/media/drivers/ccs/
14020 F:      Documentation/userspace-api/media/drivers/ccs.rst
14021 F:      drivers/media/i2c/ccs-pll.c
14022 F:      drivers/media/i2c/ccs-pll.h
14023 F:      drivers/media/i2c/ccs/
14024 F:      include/uapi/linux/ccs.h
14025 F:      include/uapi/linux/smiapp.h
14026
14027 MIPS
14028 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14029 L:      linux-mips@vger.kernel.org
14030 S:      Maintained
14031 W:      http://www.linux-mips.org/
14032 Q:      https://patchwork.kernel.org/project/linux-mips/list/
14033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
14034 F:      Documentation/devicetree/bindings/mips/
14035 F:      Documentation/mips/
14036 F:      arch/mips/
14037 F:      drivers/platform/mips/
14038 F:      include/dt-bindings/mips/
14039
14040 MIPS BOSTON DEVELOPMENT BOARD
14041 M:      Paul Burton <paulburton@kernel.org>
14042 L:      linux-mips@vger.kernel.org
14043 S:      Maintained
14044 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
14045 F:      arch/mips/boot/dts/img/boston.dts
14046 F:      arch/mips/configs/generic/board-boston.config
14047 F:      drivers/clk/imgtec/clk-boston.c
14048 F:      include/dt-bindings/clock/boston-clock.h
14049
14050 MIPS CORE DRIVERS
14051 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14052 M:      Serge Semin <fancer.lancer@gmail.com>
14053 L:      linux-mips@vger.kernel.org
14054 S:      Supported
14055 F:      drivers/bus/mips_cdmm.c
14056 F:      drivers/clocksource/mips-gic-timer.c
14057 F:      drivers/cpuidle/cpuidle-cps.c
14058 F:      drivers/irqchip/irq-mips-cpu.c
14059 F:      drivers/irqchip/irq-mips-gic.c
14060
14061 MIPS GENERIC PLATFORM
14062 M:      Paul Burton <paulburton@kernel.org>
14063 L:      linux-mips@vger.kernel.org
14064 S:      Supported
14065 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
14066 F:      arch/mips/generic/
14067 F:      arch/mips/tools/generic-board-config.sh
14068
14069 MIPS RINT INSTRUCTION EMULATION
14070 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
14071 L:      linux-mips@vger.kernel.org
14072 S:      Supported
14073 F:      arch/mips/math-emu/dp_rint.c
14074 F:      arch/mips/math-emu/sp_rint.c
14075
14076 MIPS/LOONGSON1 ARCHITECTURE
14077 M:      Keguang Zhang <keguang.zhang@gmail.com>
14078 L:      linux-mips@vger.kernel.org
14079 S:      Maintained
14080 F:      arch/mips/include/asm/mach-loongson32/
14081 F:      arch/mips/loongson32/
14082 F:      drivers/*/*/*loongson1*
14083 F:      drivers/*/*loongson1*
14084
14085 MIPS/LOONGSON2EF ARCHITECTURE
14086 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
14087 L:      linux-mips@vger.kernel.org
14088 S:      Maintained
14089 F:      arch/mips/include/asm/mach-loongson2ef/
14090 F:      arch/mips/loongson2ef/
14091 F:      drivers/cpufreq/loongson2_cpufreq.c
14092
14093 MIPS/LOONGSON64 ARCHITECTURE
14094 M:      Huacai Chen <chenhuacai@kernel.org>
14095 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
14096 L:      linux-mips@vger.kernel.org
14097 S:      Maintained
14098 F:      arch/mips/include/asm/mach-loongson64/
14099 F:      arch/mips/loongson64/
14100 F:      drivers/irqchip/irq-loongson*
14101 F:      drivers/platform/mips/cpu_hwmon.c
14102
14103 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
14104 M:      Hans Verkuil <hverkuil@xs4all.nl>
14105 L:      linux-media@vger.kernel.org
14106 S:      Odd Fixes
14107 W:      https://linuxtv.org
14108 T:      git git://linuxtv.org/media_tree.git
14109 F:      drivers/media/radio/radio-miropcm20*
14110
14111 MMP SUPPORT
14112 R:      Lubomir Rintel <lkundrak@v3.sk>
14113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14114 S:      Odd Fixes
14115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
14116 F:      arch/arm/boot/dts/mmp*
14117 F:      arch/arm/mach-mmp/
14118 F:      include/linux/soc/mmp/
14119
14120 MMP USB PHY DRIVERS
14121 R:      Lubomir Rintel <lkundrak@v3.sk>
14122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14123 S:      Maintained
14124 F:      drivers/phy/marvell/phy-mmp3-usb.c
14125 F:      drivers/phy/marvell/phy-pxa-usb.c
14126
14127 MMU GATHER AND TLB INVALIDATION
14128 M:      Will Deacon <will@kernel.org>
14129 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
14130 M:      Andrew Morton <akpm@linux-foundation.org>
14131 M:      Nick Piggin <npiggin@gmail.com>
14132 M:      Peter Zijlstra <peterz@infradead.org>
14133 L:      linux-arch@vger.kernel.org
14134 L:      linux-mm@kvack.org
14135 S:      Maintained
14136 F:      arch/*/include/asm/tlb.h
14137 F:      include/asm-generic/tlb.h
14138 F:      mm/mmu_gather.c
14139
14140 MN88472 MEDIA DRIVER
14141 M:      Antti Palosaari <crope@iki.fi>
14142 L:      linux-media@vger.kernel.org
14143 S:      Maintained
14144 W:      https://linuxtv.org
14145 W:      http://palosaari.fi/linux/
14146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14147 F:      drivers/media/dvb-frontends/mn88472*
14148
14149 MN88473 MEDIA DRIVER
14150 M:      Antti Palosaari <crope@iki.fi>
14151 L:      linux-media@vger.kernel.org
14152 S:      Maintained
14153 W:      https://linuxtv.org
14154 W:      http://palosaari.fi/linux/
14155 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14156 F:      drivers/media/dvb-frontends/mn88473*
14157
14158 MODULE SUPPORT
14159 M:      Luis Chamberlain <mcgrof@kernel.org>
14160 L:      linux-modules@vger.kernel.org
14161 L:      linux-kernel@vger.kernel.org
14162 S:      Maintained
14163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14164 F:      include/linux/module.h
14165 F:      kernel/module/
14166 F:      scripts/module*
14167
14168 MONOLITHIC POWER SYSTEM PMIC DRIVER
14169 M:      Saravanan Sekar <sravanhome@gmail.com>
14170 S:      Maintained
14171 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14172 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14173 F:      drivers/iio/adc/mp2629_adc.c
14174 F:      drivers/mfd/mp2629.c
14175 F:      drivers/power/supply/mp2629_charger.c
14176 F:      drivers/regulator/mp5416.c
14177 F:      drivers/regulator/mpq7920.c
14178 F:      drivers/regulator/mpq7920.h
14179 F:      include/linux/mfd/mp2629.h
14180
14181 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
14182 S:      Orphan
14183 W:      http://popies.net/meye/
14184 F:      Documentation/userspace-api/media/drivers/meye*
14185 F:      drivers/staging/media/deprecated/meye/
14186 F:      include/uapi/linux/meye.h
14187
14188 MOTORCOMM PHY DRIVER
14189 M:      Peter Geis <pgwipeout@gmail.com>
14190 M:      Frank <Frank.Sae@motor-comm.com>
14191 L:      netdev@vger.kernel.org
14192 S:      Maintained
14193 F:      drivers/net/phy/motorcomm.c
14194
14195 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14196 M:      Jiri Slaby <jirislaby@kernel.org>
14197 S:      Maintained
14198 F:      Documentation/driver-api/tty/moxa-smartio.rst
14199 F:      drivers/tty/mxser.*
14200
14201 MR800 AVERMEDIA USB FM RADIO DRIVER
14202 M:      Alexey Klimov <klimov.linux@gmail.com>
14203 L:      linux-media@vger.kernel.org
14204 S:      Maintained
14205 T:      git git://linuxtv.org/media_tree.git
14206 F:      drivers/media/radio/radio-mr800.c
14207
14208 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14209 M:      Alan Ott <alan@signal11.us>
14210 L:      linux-wpan@vger.kernel.org
14211 S:      Maintained
14212 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14213 F:      drivers/net/ieee802154/mrf24j40.c
14214
14215 MSI LAPTOP SUPPORT
14216 M:      "Lee, Chun-Yi" <jlee@suse.com>
14217 L:      platform-driver-x86@vger.kernel.org
14218 S:      Maintained
14219 F:      drivers/platform/x86/msi-laptop.c
14220
14221 MSI WMI SUPPORT
14222 L:      platform-driver-x86@vger.kernel.org
14223 S:      Orphan
14224 F:      drivers/platform/x86/msi-wmi.c
14225
14226 MSI001 MEDIA DRIVER
14227 M:      Antti Palosaari <crope@iki.fi>
14228 L:      linux-media@vger.kernel.org
14229 S:      Maintained
14230 W:      https://linuxtv.org
14231 W:      http://palosaari.fi/linux/
14232 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14233 T:      git git://linuxtv.org/anttip/media_tree.git
14234 F:      drivers/media/tuners/msi001*
14235
14236 MSI2500 MEDIA DRIVER
14237 M:      Antti Palosaari <crope@iki.fi>
14238 L:      linux-media@vger.kernel.org
14239 S:      Maintained
14240 W:      https://linuxtv.org
14241 W:      http://palosaari.fi/linux/
14242 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14243 T:      git git://linuxtv.org/anttip/media_tree.git
14244 F:      drivers/media/usb/msi2500/
14245
14246 MSTAR INTERRUPT CONTROLLER DRIVER
14247 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14248 M:      Daniel Palmer <daniel@thingy.jp>
14249 S:      Maintained
14250 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14251 F:      drivers/irqchip/irq-mst-intc.c
14252
14253 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14254 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14255 L:      linux-mtd@lists.infradead.org
14256 S:      Maintained
14257 F:      drivers/mtd/devices/docg3*
14258
14259 MT9M032 APTINA SENSOR DRIVER
14260 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14261 L:      linux-media@vger.kernel.org
14262 S:      Maintained
14263 T:      git git://linuxtv.org/media_tree.git
14264 F:      drivers/media/i2c/mt9m032.c
14265 F:      include/media/i2c/mt9m032.h
14266
14267 MT9P031 APTINA CAMERA SENSOR
14268 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14269 L:      linux-media@vger.kernel.org
14270 S:      Maintained
14271 T:      git git://linuxtv.org/media_tree.git
14272 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14273 F:      drivers/media/i2c/mt9p031.c
14274 F:      include/media/i2c/mt9p031.h
14275
14276 MT9T001 APTINA CAMERA SENSOR
14277 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14278 L:      linux-media@vger.kernel.org
14279 S:      Maintained
14280 T:      git git://linuxtv.org/media_tree.git
14281 F:      drivers/media/i2c/mt9t001.c
14282 F:      include/media/i2c/mt9t001.h
14283
14284 MT9T112 APTINA CAMERA SENSOR
14285 M:      Jacopo Mondi <jacopo@jmondi.org>
14286 L:      linux-media@vger.kernel.org
14287 S:      Odd Fixes
14288 T:      git git://linuxtv.org/media_tree.git
14289 F:      drivers/media/i2c/mt9t112.c
14290 F:      include/media/i2c/mt9t112.h
14291
14292 MT9V032 APTINA CAMERA SENSOR
14293 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14294 L:      linux-media@vger.kernel.org
14295 S:      Maintained
14296 T:      git git://linuxtv.org/media_tree.git
14297 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14298 F:      drivers/media/i2c/mt9v032.c
14299 F:      include/media/i2c/mt9v032.h
14300
14301 MT9V111 APTINA CAMERA SENSOR
14302 M:      Jacopo Mondi <jacopo@jmondi.org>
14303 L:      linux-media@vger.kernel.org
14304 S:      Maintained
14305 T:      git git://linuxtv.org/media_tree.git
14306 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14307 F:      drivers/media/i2c/mt9v111.c
14308
14309 MULTIFUNCTION DEVICES (MFD)
14310 M:      Lee Jones <lee@kernel.org>
14311 S:      Supported
14312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14313 F:      Documentation/devicetree/bindings/mfd/
14314 F:      drivers/mfd/
14315 F:      include/dt-bindings/mfd/
14316 F:      include/linux/mfd/
14317
14318 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14319 S:      Orphan
14320 F:      drivers/mmc/host/mmc_spi.c
14321 F:      include/linux/spi/mmc_spi.h
14322
14323 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14324 M:      Ulf Hansson <ulf.hansson@linaro.org>
14325 L:      linux-mmc@vger.kernel.org
14326 S:      Maintained
14327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14328 F:      Documentation/devicetree/bindings/mmc/
14329 F:      drivers/mmc/
14330 F:      include/linux/mmc/
14331 F:      include/uapi/linux/mmc/
14332
14333 MULTIPLEXER SUBSYSTEM
14334 M:      Peter Rosin <peda@axentia.se>
14335 S:      Maintained
14336 F:      Documentation/ABI/testing/sysfs-class-mux*
14337 F:      Documentation/devicetree/bindings/mux/
14338 F:      drivers/mux/
14339 F:      include/dt-bindings/mux/
14340 F:      include/linux/mux/
14341
14342 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14343 M:      Bin Liu <b-liu@ti.com>
14344 L:      linux-usb@vger.kernel.org
14345 S:      Maintained
14346 F:      drivers/usb/musb/
14347
14348 MXL301RF MEDIA DRIVER
14349 M:      Akihiro Tsukada <tskd08@gmail.com>
14350 L:      linux-media@vger.kernel.org
14351 S:      Odd Fixes
14352 F:      drivers/media/tuners/mxl301rf*
14353
14354 MXL5007T MEDIA DRIVER
14355 M:      Michael Krufky <mkrufky@linuxtv.org>
14356 L:      linux-media@vger.kernel.org
14357 S:      Maintained
14358 W:      https://linuxtv.org
14359 W:      http://github.com/mkrufky
14360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14361 T:      git git://linuxtv.org/mkrufky/tuners.git
14362 F:      drivers/media/tuners/mxl5007t.*
14363
14364 MXSFB DRM DRIVER
14365 M:      Marek Vasut <marex@denx.de>
14366 M:      Stefan Agner <stefan@agner.ch>
14367 L:      dri-devel@lists.freedesktop.org
14368 S:      Supported
14369 T:      git git://anongit.freedesktop.org/drm/drm-misc
14370 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14371 F:      drivers/gpu/drm/mxsfb/
14372
14373 MYLEX DAC960 PCI RAID Controller
14374 M:      Hannes Reinecke <hare@kernel.org>
14375 L:      linux-scsi@vger.kernel.org
14376 S:      Supported
14377 F:      drivers/scsi/myrb.*
14378 F:      drivers/scsi/myrs.*
14379
14380 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14381 M:      Chris Lee <christopher.lee@cspi.com>
14382 L:      netdev@vger.kernel.org
14383 S:      Supported
14384 W:      https://www.cspi.com/ethernet-products/support/downloads/
14385 F:      drivers/net/ethernet/myricom/myri10ge/
14386
14387 NAND FLASH SUBSYSTEM
14388 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14389 R:      Richard Weinberger <richard@nod.at>
14390 L:      linux-mtd@lists.infradead.org
14391 S:      Maintained
14392 W:      http://www.linux-mtd.infradead.org/
14393 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14394 C:      irc://irc.oftc.net/mtd
14395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14396 F:      drivers/mtd/nand/
14397 F:      include/linux/mtd/*nand*.h
14398
14399 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14400 M:      Daniel Mack <zonque@gmail.com>
14401 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14402 S:      Maintained
14403 W:      http://www.native-instruments.com
14404 F:      sound/usb/caiaq/
14405
14406 NATSEMI ETHERNET DRIVER (DP8381x)
14407 S:      Orphan
14408 F:      drivers/net/ethernet/natsemi/natsemi.c
14409
14410 NCR 5380 SCSI DRIVERS
14411 M:      Finn Thain <fthain@linux-m68k.org>
14412 M:      Michael Schmitz <schmitzmic@gmail.com>
14413 L:      linux-scsi@vger.kernel.org
14414 S:      Maintained
14415 F:      Documentation/scsi/g_NCR5380.rst
14416 F:      drivers/scsi/NCR5380.*
14417 F:      drivers/scsi/arm/cumana_1.c
14418 F:      drivers/scsi/arm/oak.c
14419 F:      drivers/scsi/atari_scsi.*
14420 F:      drivers/scsi/dmx3191d.c
14421 F:      drivers/scsi/g_NCR5380.*
14422 F:      drivers/scsi/mac_scsi.*
14423 F:      drivers/scsi/sun3_scsi.*
14424 F:      drivers/scsi/sun3_scsi_vme.c
14425
14426 NCSI LIBRARY
14427 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14428 S:      Maintained
14429 F:      net/ncsi/
14430
14431 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14432 M:      Guenter Roeck <linux@roeck-us.net>
14433 L:      linux-hwmon@vger.kernel.org
14434 S:      Maintained
14435 F:      Documentation/hwmon/nct6775.rst
14436 F:      drivers/hwmon/nct6775-core.c
14437 F:      drivers/hwmon/nct6775-platform.c
14438 F:      drivers/hwmon/nct6775.h
14439
14440 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14441 M:      Zev Weiss <zev@bewilderbeest.net>
14442 L:      linux-hwmon@vger.kernel.org
14443 S:      Maintained
14444 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14445 F:      drivers/hwmon/nct6775-i2c.c
14446
14447 NETDEVSIM
14448 M:      Jakub Kicinski <kuba@kernel.org>
14449 S:      Maintained
14450 F:      drivers/net/netdevsim/*
14451
14452 NETEM NETWORK EMULATOR
14453 M:      Stephen Hemminger <stephen@networkplumber.org>
14454 L:      netdev@vger.kernel.org
14455 S:      Maintained
14456 F:      net/sched/sch_netem.c
14457
14458 NETERION 10GbE DRIVERS (s2io)
14459 M:      Jon Mason <jdmason@kudzu.us>
14460 L:      netdev@vger.kernel.org
14461 S:      Supported
14462 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14463 F:      drivers/net/ethernet/neterion/
14464
14465 NETFILTER
14466 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14467 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14468 M:      Florian Westphal <fw@strlen.de>
14469 L:      netfilter-devel@vger.kernel.org
14470 L:      coreteam@netfilter.org
14471 S:      Maintained
14472 W:      http://www.netfilter.org/
14473 W:      http://www.iptables.org/
14474 W:      http://www.nftables.org/
14475 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14476 C:      irc://irc.libera.chat/netfilter
14477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14479 F:      include/linux/netfilter*
14480 F:      include/linux/netfilter/
14481 F:      include/net/netfilter/
14482 F:      include/uapi/linux/netfilter*
14483 F:      include/uapi/linux/netfilter/
14484 F:      net/*/netfilter.c
14485 F:      net/*/netfilter/
14486 F:      net/bridge/br_netfilter*.c
14487 F:      net/netfilter/
14488
14489 NETROM NETWORK LAYER
14490 M:      Ralf Baechle <ralf@linux-mips.org>
14491 L:      linux-hams@vger.kernel.org
14492 S:      Maintained
14493 W:      http://www.linux-ax25.org/
14494 F:      include/net/netrom.h
14495 F:      include/uapi/linux/netrom.h
14496 F:      net/netrom/
14497
14498 NETRONIX EMBEDDED CONTROLLER
14499 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14500 S:      Maintained
14501 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14502 F:      drivers/mfd/ntxec.c
14503 F:      drivers/pwm/pwm-ntxec.c
14504 F:      drivers/rtc/rtc-ntxec.c
14505 F:      include/linux/mfd/ntxec.h
14506
14507 NETRONOME ETHERNET DRIVERS
14508 M:      Simon Horman <simon.horman@corigine.com>
14509 R:      Jakub Kicinski <kuba@kernel.org>
14510 L:      oss-drivers@corigine.com
14511 S:      Maintained
14512 F:      drivers/net/ethernet/netronome/
14513
14514 NETWORK BLOCK DEVICE (NBD)
14515 M:      Josef Bacik <josef@toxicpanda.com>
14516 L:      linux-block@vger.kernel.org
14517 L:      nbd@other.debian.org
14518 S:      Maintained
14519 F:      Documentation/admin-guide/blockdev/nbd.rst
14520 F:      drivers/block/nbd.c
14521 F:      include/trace/events/nbd.h
14522 F:      include/uapi/linux/nbd.h
14523
14524 NETWORK DROP MONITOR
14525 M:      Neil Horman <nhorman@tuxdriver.com>
14526 L:      netdev@vger.kernel.org
14527 S:      Maintained
14528 W:      https://fedorahosted.org/dropwatch/
14529 F:      include/uapi/linux/net_dropmon.h
14530 F:      net/core/drop_monitor.c
14531
14532 NETWORKING DRIVERS
14533 M:      "David S. Miller" <davem@davemloft.net>
14534 M:      Eric Dumazet <edumazet@google.com>
14535 M:      Jakub Kicinski <kuba@kernel.org>
14536 M:      Paolo Abeni <pabeni@redhat.com>
14537 L:      netdev@vger.kernel.org
14538 S:      Maintained
14539 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14542 F:      Documentation/devicetree/bindings/net/
14543 F:      drivers/connector/
14544 F:      drivers/net/
14545 F:      include/dt-bindings/net/
14546 F:      include/linux/etherdevice.h
14547 F:      include/linux/fcdevice.h
14548 F:      include/linux/fddidevice.h
14549 F:      include/linux/hippidevice.h
14550 F:      include/linux/if_*
14551 F:      include/linux/inetdevice.h
14552 F:      include/linux/netdevice.h
14553 F:      include/uapi/linux/if_*
14554 F:      include/uapi/linux/netdevice.h
14555
14556 NETWORKING DRIVERS (WIRELESS)
14557 M:      Kalle Valo <kvalo@kernel.org>
14558 L:      linux-wireless@vger.kernel.org
14559 S:      Maintained
14560 W:      https://wireless.wiki.kernel.org/
14561 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14564 F:      Documentation/devicetree/bindings/net/wireless/
14565 F:      drivers/net/wireless/
14566
14567 NETWORKING [DSA]
14568 M:      Andrew Lunn <andrew@lunn.ch>
14569 M:      Florian Fainelli <f.fainelli@gmail.com>
14570 M:      Vladimir Oltean <olteanv@gmail.com>
14571 S:      Maintained
14572 F:      Documentation/devicetree/bindings/net/dsa/
14573 F:      drivers/net/dsa/
14574 F:      include/linux/dsa/
14575 F:      include/linux/platform_data/dsa.h
14576 F:      include/net/dsa.h
14577 F:      net/dsa/
14578 F:      tools/testing/selftests/drivers/net/dsa/
14579
14580 NETWORKING [GENERAL]
14581 M:      "David S. Miller" <davem@davemloft.net>
14582 M:      Eric Dumazet <edumazet@google.com>
14583 M:      Jakub Kicinski <kuba@kernel.org>
14584 M:      Paolo Abeni <pabeni@redhat.com>
14585 L:      netdev@vger.kernel.org
14586 S:      Maintained
14587 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14588 B:      mailto:netdev@vger.kernel.org
14589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14591 F:      Documentation/networking/
14592 F:      Documentation/process/maintainer-netdev.rst
14593 F:      include/linux/in.h
14594 F:      include/linux/net.h
14595 F:      include/linux/netdevice.h
14596 F:      include/net/
14597 F:      include/uapi/linux/in.h
14598 F:      include/uapi/linux/net.h
14599 F:      include/uapi/linux/net_namespace.h
14600 F:      include/uapi/linux/netdevice.h
14601 F:      lib/net_utils.c
14602 F:      lib/random32.c
14603 F:      net/
14604 F:      tools/testing/selftests/net/
14605
14606 NETWORKING [IPSEC]
14607 M:      Steffen Klassert <steffen.klassert@secunet.com>
14608 M:      Herbert Xu <herbert@gondor.apana.org.au>
14609 M:      "David S. Miller" <davem@davemloft.net>
14610 L:      netdev@vger.kernel.org
14611 S:      Maintained
14612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14614 F:      include/net/xfrm.h
14615 F:      include/uapi/linux/xfrm.h
14616 F:      net/ipv4/ah4.c
14617 F:      net/ipv4/esp4*
14618 F:      net/ipv4/ip_vti.c
14619 F:      net/ipv4/ipcomp.c
14620 F:      net/ipv4/xfrm*
14621 F:      net/ipv6/ah6.c
14622 F:      net/ipv6/esp6*
14623 F:      net/ipv6/ip6_vti.c
14624 F:      net/ipv6/ipcomp6.c
14625 F:      net/ipv6/xfrm*
14626 F:      net/key/
14627 F:      net/xfrm/
14628 F:      tools/testing/selftests/net/ipsec.c
14629
14630 NETWORKING [IPv4/IPv6]
14631 M:      "David S. Miller" <davem@davemloft.net>
14632 M:      David Ahern <dsahern@kernel.org>
14633 L:      netdev@vger.kernel.org
14634 S:      Maintained
14635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14636 F:      arch/x86/net/*
14637 F:      include/linux/ip.h
14638 F:      include/linux/ipv6*
14639 F:      include/net/fib*
14640 F:      include/net/ip*
14641 F:      include/net/route.h
14642 F:      net/ipv4/
14643 F:      net/ipv6/
14644
14645 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14646 M:      Paul Moore <paul@paul-moore.com>
14647 L:      netdev@vger.kernel.org
14648 L:      linux-security-module@vger.kernel.org
14649 S:      Maintained
14650 W:      https://github.com/netlabel
14651 F:      Documentation/netlabel/
14652 F:      include/net/calipso.h
14653 F:      include/net/cipso_ipv4.h
14654 F:      include/net/netlabel.h
14655 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14656 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14657 F:      net/ipv4/cipso_ipv4.c
14658 F:      net/ipv6/calipso.c
14659 F:      net/netfilter/xt_CONNSECMARK.c
14660 F:      net/netfilter/xt_SECMARK.c
14661 F:      net/netlabel/
14662
14663 NETWORKING [MPTCP]
14664 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14665 L:      netdev@vger.kernel.org
14666 L:      mptcp@lists.linux.dev
14667 S:      Maintained
14668 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14669 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14670 F:      Documentation/networking/mptcp-sysctl.rst
14671 F:      include/net/mptcp.h
14672 F:      include/trace/events/mptcp.h
14673 F:      include/uapi/linux/mptcp.h
14674 F:      net/mptcp/
14675 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14676 F:      tools/testing/selftests/net/mptcp/
14677
14678 NETWORKING [TCP]
14679 M:      Eric Dumazet <edumazet@google.com>
14680 L:      netdev@vger.kernel.org
14681 S:      Maintained
14682 F:      include/linux/tcp.h
14683 F:      include/net/tcp.h
14684 F:      include/trace/events/tcp.h
14685 F:      include/uapi/linux/tcp.h
14686 F:      net/ipv4/syncookies.c
14687 F:      net/ipv4/tcp*.c
14688 F:      net/ipv6/syncookies.c
14689 F:      net/ipv6/tcp*.c
14690
14691 NETWORKING [TLS]
14692 M:      Boris Pismenny <borisp@nvidia.com>
14693 M:      John Fastabend <john.fastabend@gmail.com>
14694 M:      Jakub Kicinski <kuba@kernel.org>
14695 L:      netdev@vger.kernel.org
14696 S:      Maintained
14697 F:      include/net/tls.h
14698 F:      include/uapi/linux/tls.h
14699 F:      net/tls/*
14700
14701 NETXEN (1/10) GbE SUPPORT
14702 M:      Manish Chopra <manishc@marvell.com>
14703 M:      Rahul Verma <rahulv@marvell.com>
14704 M:      GR-Linux-NIC-Dev@marvell.com
14705 L:      netdev@vger.kernel.org
14706 S:      Supported
14707 F:      drivers/net/ethernet/qlogic/netxen/
14708
14709 NET_FAILOVER MODULE
14710 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14711 L:      netdev@vger.kernel.org
14712 S:      Supported
14713 F:      Documentation/networking/net_failover.rst
14714 F:      drivers/net/net_failover.c
14715 F:      include/net/net_failover.h
14716
14717 NEXTHOP
14718 M:      David Ahern <dsahern@kernel.org>
14719 L:      netdev@vger.kernel.org
14720 S:      Maintained
14721 F:      include/net/netns/nexthop.h
14722 F:      include/net/nexthop.h
14723 F:      include/uapi/linux/nexthop.h
14724 F:      net/ipv4/nexthop.c
14725
14726 NFC SUBSYSTEM
14727 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14728 L:      linux-nfc@lists.01.org (subscribers-only)
14729 L:      netdev@vger.kernel.org
14730 S:      Maintained
14731 B:      mailto:linux-nfc@lists.01.org
14732 F:      Documentation/devicetree/bindings/net/nfc/
14733 F:      drivers/nfc/
14734 F:      include/linux/platform_data/nfcmrvl.h
14735 F:      include/net/nfc/
14736 F:      include/uapi/linux/nfc.h
14737 F:      net/nfc/
14738
14739 NFC VIRTUAL NCI DEVICE DRIVER
14740 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14741 L:      netdev@vger.kernel.org
14742 L:      linux-nfc@lists.01.org (subscribers-only)
14743 S:      Supported
14744 F:      drivers/nfc/virtual_ncidev.c
14745 F:      tools/testing/selftests/nci/
14746
14747 NFS, SUNRPC, AND LOCKD CLIENTS
14748 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14749 M:      Anna Schumaker <anna@kernel.org>
14750 L:      linux-nfs@vger.kernel.org
14751 S:      Maintained
14752 W:      http://client.linux-nfs.org
14753 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14754 F:      fs/lockd/
14755 F:      fs/nfs/
14756 F:      fs/nfs_common/
14757 F:      include/linux/lockd/
14758 F:      include/linux/nfs*
14759 F:      include/linux/sunrpc/
14760 F:      include/uapi/linux/nfs*
14761 F:      include/uapi/linux/sunrpc/
14762 F:      net/sunrpc/
14763 F:      Documentation/filesystems/nfs/
14764
14765 NILFS2 FILESYSTEM
14766 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14767 L:      linux-nilfs@vger.kernel.org
14768 S:      Supported
14769 W:      https://nilfs.sourceforge.io/
14770 W:      https://nilfs.osdn.jp/
14771 T:      git https://github.com/konis/nilfs2.git
14772 F:      Documentation/filesystems/nilfs2.rst
14773 F:      fs/nilfs2/
14774 F:      include/trace/events/nilfs2.h
14775 F:      include/uapi/linux/nilfs2_api.h
14776 F:      include/uapi/linux/nilfs2_ondisk.h
14777
14778 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14779 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14780 S:      Maintained
14781 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14782 F:      Documentation/scsi/NinjaSCSI.rst
14783 F:      drivers/scsi/pcmcia/nsp_*
14784
14785 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14786 M:      GOTO Masanori <gotom@debian.or.jp>
14787 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14788 S:      Maintained
14789 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14790 F:      Documentation/scsi/NinjaSCSI.rst
14791 F:      drivers/scsi/nsp32*
14792
14793 NINTENDO HID DRIVER
14794 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14795 L:      linux-input@vger.kernel.org
14796 S:      Maintained
14797 F:      drivers/hid/hid-nintendo*
14798
14799 NIOS2 ARCHITECTURE
14800 M:      Dinh Nguyen <dinguyen@kernel.org>
14801 S:      Maintained
14802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14803 F:      arch/nios2/
14804
14805 NITRO ENCLAVES (NE)
14806 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14807 L:      linux-kernel@vger.kernel.org
14808 L:      The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14809 S:      Supported
14810 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14811 F:      Documentation/virt/ne_overview.rst
14812 F:      drivers/virt/nitro_enclaves/
14813 F:      include/linux/nitro_enclaves.h
14814 F:      include/uapi/linux/nitro_enclaves.h
14815 F:      samples/nitro_enclaves/
14816
14817 NOHZ, DYNTICKS SUPPORT
14818 M:      Frederic Weisbecker <fweisbec@gmail.com>
14819 M:      Thomas Gleixner <tglx@linutronix.de>
14820 M:      Ingo Molnar <mingo@kernel.org>
14821 L:      linux-kernel@vger.kernel.org
14822 S:      Maintained
14823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14824 F:      include/linux/sched/nohz.h
14825 F:      include/linux/tick.h
14826 F:      kernel/time/tick*.*
14827
14828 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14829 M:      Pavel Machek <pavel@ucw.cz>
14830 M:      Sakari Ailus <sakari.ailus@iki.fi>
14831 L:      linux-media@vger.kernel.org
14832 S:      Maintained
14833 F:      drivers/media/i2c/ad5820.c
14834 F:      drivers/media/i2c/et8ek8
14835
14836 NOKIA N900 POWER SUPPLY DRIVERS
14837 R:      Pali Rohár <pali@kernel.org>
14838 F:      drivers/power/supply/bq2415x_charger.c
14839 F:      drivers/power/supply/bq27xxx_battery.c
14840 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14841 F:      drivers/power/supply/isp1704_charger.c
14842 F:      drivers/power/supply/rx51_battery.c
14843 F:      include/linux/power/bq2415x_charger.h
14844 F:      include/linux/power/bq27xxx_battery.h
14845
14846 NOLIBC HEADER FILE
14847 M:      Willy Tarreau <w@1wt.eu>
14848 S:      Maintained
14849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14850 F:      tools/include/nolibc/
14851 F:      tools/testing/selftests/nolibc/
14852
14853 NSDEPS
14854 M:      Matthias Maennich <maennich@google.com>
14855 S:      Maintained
14856 F:      Documentation/core-api/symbol-namespaces.rst
14857 F:      scripts/nsdeps
14858
14859 NTB AMD DRIVER
14860 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14861 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14862 L:      ntb@lists.linux.dev
14863 S:      Supported
14864 F:      drivers/ntb/hw/amd/
14865
14866 NTB DRIVER CORE
14867 M:      Jon Mason <jdmason@kudzu.us>
14868 M:      Dave Jiang <dave.jiang@intel.com>
14869 M:      Allen Hubbe <allenbh@gmail.com>
14870 L:      ntb@lists.linux.dev
14871 S:      Supported
14872 W:      https://github.com/jonmason/ntb/wiki
14873 T:      git git://github.com/jonmason/ntb.git
14874 F:      drivers/net/ntb_netdev.c
14875 F:      drivers/ntb/
14876 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14877 F:      include/linux/ntb.h
14878 F:      include/linux/ntb_transport.h
14879 F:      tools/testing/selftests/ntb/
14880
14881 NTB IDT DRIVER
14882 M:      Serge Semin <fancer.lancer@gmail.com>
14883 L:      ntb@lists.linux.dev
14884 S:      Supported
14885 F:      drivers/ntb/hw/idt/
14886
14887 NTB INTEL DRIVER
14888 M:      Dave Jiang <dave.jiang@intel.com>
14889 L:      ntb@lists.linux.dev
14890 S:      Supported
14891 W:      https://github.com/davejiang/linux/wiki
14892 T:      git https://github.com/davejiang/linux.git
14893 F:      drivers/ntb/hw/intel/
14894
14895 NTFS FILESYSTEM
14896 M:      Anton Altaparmakov <anton@tuxera.com>
14897 L:      linux-ntfs-dev@lists.sourceforge.net
14898 S:      Supported
14899 W:      http://www.tuxera.com/
14900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14901 F:      Documentation/filesystems/ntfs.rst
14902 F:      fs/ntfs/
14903
14904 NTFS3 FILESYSTEM
14905 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14906 L:      ntfs3@lists.linux.dev
14907 S:      Supported
14908 W:      http://www.paragon-software.com/
14909 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14910 F:      Documentation/filesystems/ntfs3.rst
14911 F:      fs/ntfs3/
14912
14913 NUBUS SUBSYSTEM
14914 M:      Finn Thain <fthain@linux-m68k.org>
14915 L:      linux-m68k@lists.linux-m68k.org
14916 S:      Maintained
14917 F:      arch/*/include/asm/nubus.h
14918 F:      drivers/nubus/
14919 F:      include/linux/nubus.h
14920 F:      include/uapi/linux/nubus.h
14921
14922 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14923 M:      Antonino Daplas <adaplas@gmail.com>
14924 L:      linux-fbdev@vger.kernel.org
14925 S:      Maintained
14926 F:      drivers/video/fbdev/nvidia/
14927 F:      drivers/video/fbdev/riva/
14928
14929 NVIDIA WMI EC BACKLIGHT DRIVER
14930 M:      Daniel Dadap <ddadap@nvidia.com>
14931 L:      platform-driver-x86@vger.kernel.org
14932 S:      Supported
14933 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14934 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14935
14936 NVM EXPRESS DRIVER
14937 M:      Keith Busch <kbusch@kernel.org>
14938 M:      Jens Axboe <axboe@fb.com>
14939 M:      Christoph Hellwig <hch@lst.de>
14940 M:      Sagi Grimberg <sagi@grimberg.me>
14941 L:      linux-nvme@lists.infradead.org
14942 S:      Supported
14943 W:      http://git.infradead.org/nvme.git
14944 T:      git://git.infradead.org/nvme.git
14945 F:      Documentation/nvme/
14946 F:      drivers/nvme/host/
14947 F:      drivers/nvme/common/
14948 F:      include/linux/nvme.h
14949 F:      include/linux/nvme-*.h
14950 F:      include/uapi/linux/nvme_ioctl.h
14951
14952 NVM EXPRESS FABRICS AUTHENTICATION
14953 M:      Hannes Reinecke <hare@suse.de>
14954 L:      linux-nvme@lists.infradead.org
14955 S:      Supported
14956 F:      drivers/nvme/host/auth.c
14957 F:      drivers/nvme/target/auth.c
14958 F:      drivers/nvme/target/fabrics-cmd-auth.c
14959 F:      include/linux/nvme-auth.h
14960
14961 NVM EXPRESS HARDWARE MONITORING SUPPORT
14962 M:      Guenter Roeck <linux@roeck-us.net>
14963 L:      linux-nvme@lists.infradead.org
14964 S:      Supported
14965 F:      drivers/nvme/host/hwmon.c
14966
14967 NVM EXPRESS FC TRANSPORT DRIVERS
14968 M:      James Smart <james.smart@broadcom.com>
14969 L:      linux-nvme@lists.infradead.org
14970 S:      Supported
14971 F:      drivers/nvme/host/fc.c
14972 F:      drivers/nvme/target/fc.c
14973 F:      drivers/nvme/target/fcloop.c
14974 F:      include/linux/nvme-fc-driver.h
14975 F:      include/linux/nvme-fc.h
14976
14977 NVM EXPRESS TARGET DRIVER
14978 M:      Christoph Hellwig <hch@lst.de>
14979 M:      Sagi Grimberg <sagi@grimberg.me>
14980 M:      Chaitanya Kulkarni <kch@nvidia.com>
14981 L:      linux-nvme@lists.infradead.org
14982 S:      Supported
14983 W:      http://git.infradead.org/nvme.git
14984 T:      git://git.infradead.org/nvme.git
14985 F:      drivers/nvme/target/
14986
14987 NVMEM FRAMEWORK
14988 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14989 S:      Maintained
14990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14991 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14992 F:      Documentation/devicetree/bindings/nvmem/
14993 F:      drivers/nvmem/
14994 F:      include/linux/nvmem-consumer.h
14995 F:      include/linux/nvmem-provider.h
14996
14997 NXP C45 TJA11XX PHY DRIVER
14998 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14999 L:      netdev@vger.kernel.org
15000 S:      Maintained
15001 F:      drivers/net/phy/nxp-c45-tja11xx.c
15002
15003 NXP FSPI DRIVER
15004 M:      Han Xu <han.xu@nxp.com>
15005 M:      Haibo Chen <haibo.chen@nxp.com>
15006 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
15007 L:      linux-spi@vger.kernel.org
15008 S:      Maintained
15009 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
15010 F:      drivers/spi/spi-nxp-fspi.c
15011
15012 NXP FXAS21002C DRIVER
15013 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15014 L:      linux-iio@vger.kernel.org
15015 S:      Maintained
15016 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
15017 F:      drivers/iio/gyro/fxas21002c.h
15018 F:      drivers/iio/gyro/fxas21002c_core.c
15019 F:      drivers/iio/gyro/fxas21002c_i2c.c
15020 F:      drivers/iio/gyro/fxas21002c_spi.c
15021
15022 NXP i.MX CLOCK DRIVERS
15023 M:      Abel Vesa <abelvesa@kernel.org>
15024 L:      linux-clk@vger.kernel.org
15025 L:      linux-imx@nxp.com
15026 S:      Maintained
15027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
15028 F:      Documentation/devicetree/bindings/clock/imx*
15029 F:      drivers/clk/imx/
15030 F:      include/dt-bindings/clock/imx*
15031
15032 NXP i.MX 8MQ DCSS DRIVER
15033 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
15034 R:      Lucas Stach <l.stach@pengutronix.de>
15035 L:      dri-devel@lists.freedesktop.org
15036 S:      Maintained
15037 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
15038 F:      drivers/gpu/drm/imx/dcss/
15039
15040 NXP i.MX 8QXP ADC DRIVER
15041 M:      Cai Huoqing <cai.huoqing@linux.dev>
15042 M:      Haibo Chen <haibo.chen@nxp.com>
15043 L:      linux-imx@nxp.com
15044 L:      linux-iio@vger.kernel.org
15045 S:      Maintained
15046 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
15047 F:      drivers/iio/adc/imx8qxp-adc.c
15048
15049 NXP i.MX 7D/6SX/6UL/93 AND VF610 ADC DRIVER
15050 M:      Haibo Chen <haibo.chen@nxp.com>
15051 L:      linux-iio@vger.kernel.org
15052 L:      linux-imx@nxp.com
15053 S:      Maintained
15054 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
15055 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
15056 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx93-adc.yaml
15057 F:      drivers/iio/adc/imx7d_adc.c
15058 F:      drivers/iio/adc/imx93_adc.c
15059 F:      drivers/iio/adc/vf610_adc.c
15060
15061 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
15062 M:      Jagan Teki <jagan@amarulasolutions.com>
15063 S:      Maintained
15064 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
15065 F:      drivers/regulator/pf8x00-regulator.c
15066
15067 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
15068 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15069 L:      linux-kernel@vger.kernel.org
15070 S:      Maintained
15071 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
15072 F:      drivers/extcon/extcon-ptn5150.c
15073
15074 NXP SGTL5000 DRIVER
15075 M:      Fabio Estevam <festevam@gmail.com>
15076 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15077 S:      Maintained
15078 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
15079 F:      sound/soc/codecs/sgtl5000*
15080
15081 NXP SJA1105 ETHERNET SWITCH DRIVER
15082 M:      Vladimir Oltean <olteanv@gmail.com>
15083 L:      linux-kernel@vger.kernel.org
15084 S:      Maintained
15085 F:      drivers/net/dsa/sja1105
15086 F:      drivers/net/pcs/pcs-xpcs-nxp.c
15087
15088 NXP TDA998X DRM DRIVER
15089 M:      Russell King <linux@armlinux.org.uk>
15090 S:      Maintained
15091 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
15092 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
15093 F:      drivers/gpu/drm/i2c/tda998x_drv.c
15094 F:      include/drm/i2c/tda998x.h
15095 F:      include/dt-bindings/display/tda998x.h
15096 K:      "nxp,tda998x"
15097
15098 NXP TFA9879 DRIVER
15099 M:      Peter Rosin <peda@axentia.se>
15100 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15101 S:      Maintained
15102 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
15103 F:      sound/soc/codecs/tfa9879*
15104
15105 NXP/Goodix TFA989X (TFA1) DRIVER
15106 M:      Stephan Gerhold <stephan@gerhold.net>
15107 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15108 S:      Maintained
15109 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
15110 F:      sound/soc/codecs/tfa989x.c
15111
15112 NXP-NCI NFC DRIVER
15113 L:      linux-nfc@lists.01.org (subscribers-only)
15114 S:      Orphan
15115 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
15116 F:      drivers/nfc/nxp-nci
15117
15118 NXP i.MX 8MP DW100 V4L2 DRIVER
15119 M:      Xavier Roumegue <xavier.roumegue@oss.nxp.com>
15120 L:      linux-media@vger.kernel.org
15121 S:      Maintained
15122 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
15123 F:      Documentation/userspace-api/media/drivers/dw100.rst
15124 F:      drivers/media/platform/nxp/dw100/
15125 F:      include/uapi/linux/dw100.h
15126
15127 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
15128 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
15129 R:      NXP Linux Team <linux-imx@nxp.com>
15130 L:      linux-media@vger.kernel.org
15131 S:      Maintained
15132 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
15133 F:      drivers/media/platform/nxp/imx-jpeg
15134
15135 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
15136 M:      Jonas Malaco <jonas@protocubo.io>
15137 L:      linux-hwmon@vger.kernel.org
15138 S:      Maintained
15139 F:      Documentation/hwmon/nzxt-kraken2.rst
15140 F:      drivers/hwmon/nzxt-kraken2.c
15141
15142 NZXT-SMART2 HARDWARE MONITORING DRIVER
15143 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
15144 L:      linux-hwmon@vger.kernel.org
15145 S:      Maintained
15146 F:      Documentation/hwmon/nzxt-smart2.rst
15147 F:      drivers/hwmon/nzxt-smart2.c
15148
15149 OBJAGG
15150 M:      Jiri Pirko <jiri@nvidia.com>
15151 L:      netdev@vger.kernel.org
15152 S:      Supported
15153 F:      include/linux/objagg.h
15154 F:      lib/objagg.c
15155 F:      lib/test_objagg.c
15156
15157 OBJTOOL
15158 M:      Josh Poimboeuf <jpoimboe@kernel.org>
15159 M:      Peter Zijlstra <peterz@infradead.org>
15160 S:      Supported
15161 F:      tools/objtool/
15162 F:      include/linux/objtool.h
15163
15164 OCELOT ETHERNET SWITCH DRIVER
15165 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
15166 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
15167 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15168 M:      UNGLinuxDriver@microchip.com
15169 L:      netdev@vger.kernel.org
15170 S:      Supported
15171 F:      drivers/net/dsa/ocelot/*
15172 F:      drivers/net/ethernet/mscc/
15173 F:      include/soc/mscc/ocelot*
15174 F:      net/dsa/tag_ocelot.c
15175 F:      net/dsa/tag_ocelot_8021q.c
15176 F:      tools/testing/selftests/drivers/net/ocelot/*
15177
15178 OCELOT EXTERNAL SWITCH CONTROL
15179 M:      Colin Foster <colin.foster@in-advantage.com>
15180 S:      Supported
15181 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15182 F:      drivers/mfd/ocelot*
15183 F:      include/linux/mfd/ocelot.h
15184
15185 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15186 M:      Frederic Barrat <fbarrat@linux.ibm.com>
15187 M:      Andrew Donnellan <ajd@linux.ibm.com>
15188 L:      linuxppc-dev@lists.ozlabs.org
15189 S:      Supported
15190 F:      Documentation/userspace-api/accelerators/ocxl.rst
15191 F:      arch/powerpc/include/asm/pnv-ocxl.h
15192 F:      arch/powerpc/platforms/powernv/ocxl.c
15193 F:      drivers/misc/ocxl/
15194 F:      include/misc/ocxl*
15195 F:      include/uapi/misc/ocxl.h
15196
15197 OMAP AUDIO SUPPORT
15198 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
15199 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
15200 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15201 L:      linux-omap@vger.kernel.org
15202 S:      Maintained
15203 F:      sound/soc/ti/n810.c
15204 F:      sound/soc/ti/omap*
15205 F:      sound/soc/ti/rx51.c
15206 F:      sound/soc/ti/sdma-pcm.*
15207
15208 OMAP CLOCK FRAMEWORK SUPPORT
15209 M:      Paul Walmsley <paul@pwsan.com>
15210 L:      linux-omap@vger.kernel.org
15211 S:      Maintained
15212 F:      arch/arm/*omap*/*clock*
15213
15214 OMAP DEVICE TREE SUPPORT
15215 M:      Benoît Cousson <bcousson@baylibre.com>
15216 M:      Tony Lindgren <tony@atomide.com>
15217 L:      linux-omap@vger.kernel.org
15218 L:      devicetree@vger.kernel.org
15219 S:      Maintained
15220 F:      arch/arm/boot/dts/*am3*
15221 F:      arch/arm/boot/dts/*am4*
15222 F:      arch/arm/boot/dts/*am5*
15223 F:      arch/arm/boot/dts/*dra7*
15224 F:      arch/arm/boot/dts/*omap*
15225 F:      arch/arm/boot/dts/logicpd-som-lv*
15226 F:      arch/arm/boot/dts/logicpd-torpedo*
15227
15228 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15229 L:      linux-omap@vger.kernel.org
15230 L:      linux-fbdev@vger.kernel.org
15231 S:      Orphan
15232 F:      Documentation/arm/omap/dss.rst
15233 F:      drivers/video/fbdev/omap2/
15234
15235 OMAP FRAMEBUFFER SUPPORT
15236 L:      linux-fbdev@vger.kernel.org
15237 L:      linux-omap@vger.kernel.org
15238 S:      Orphan
15239 F:      drivers/video/fbdev/omap/
15240
15241 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15242 M:      Roger Quadros <rogerq@kernel.org>
15243 M:      Tony Lindgren <tony@atomide.com>
15244 L:      linux-omap@vger.kernel.org
15245 S:      Maintained
15246 F:      arch/arm/mach-omap2/*gpmc*
15247 F:      drivers/memory/omap-gpmc.c
15248
15249 OMAP GPIO DRIVER
15250 M:      Grygorii Strashko <grygorii.strashko@ti.com>
15251 M:      Santosh Shilimkar <ssantosh@kernel.org>
15252 M:      Kevin Hilman <khilman@kernel.org>
15253 L:      linux-omap@vger.kernel.org
15254 S:      Maintained
15255 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15256 F:      drivers/gpio/gpio-omap.c
15257
15258 OMAP HARDWARE SPINLOCK SUPPORT
15259 M:      Ohad Ben-Cohen <ohad@wizery.com>
15260 L:      linux-omap@vger.kernel.org
15261 S:      Maintained
15262 F:      drivers/hwspinlock/omap_hwspinlock.c
15263
15264 OMAP HS MMC SUPPORT
15265 L:      linux-mmc@vger.kernel.org
15266 L:      linux-omap@vger.kernel.org
15267 S:      Orphan
15268 F:      drivers/mmc/host/omap_hsmmc.c
15269
15270 OMAP HWMOD DATA
15271 M:      Paul Walmsley <paul@pwsan.com>
15272 L:      linux-omap@vger.kernel.org
15273 S:      Maintained
15274 F:      arch/arm/mach-omap2/omap_hwmod*data*
15275
15276 OMAP HWMOD SUPPORT
15277 M:      Benoît Cousson <bcousson@baylibre.com>
15278 M:      Paul Walmsley <paul@pwsan.com>
15279 L:      linux-omap@vger.kernel.org
15280 S:      Maintained
15281 F:      arch/arm/mach-omap2/omap_hwmod.*
15282
15283 OMAP I2C DRIVER
15284 M:      Vignesh R <vigneshr@ti.com>
15285 L:      linux-omap@vger.kernel.org
15286 L:      linux-i2c@vger.kernel.org
15287 S:      Maintained
15288 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15289 F:      drivers/i2c/busses/i2c-omap.c
15290
15291 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15292 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15293 L:      linux-media@vger.kernel.org
15294 S:      Maintained
15295 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15296 F:      drivers/media/platform/ti/omap3isp/
15297 F:      drivers/staging/media/omap4iss/
15298
15299 OMAP MMC SUPPORT
15300 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15301 L:      linux-omap@vger.kernel.org
15302 S:      Odd Fixes
15303 F:      drivers/mmc/host/omap.c
15304
15305 OMAP POWER MANAGEMENT SUPPORT
15306 M:      Kevin Hilman <khilman@kernel.org>
15307 L:      linux-omap@vger.kernel.org
15308 S:      Maintained
15309 F:      arch/arm/*omap*/*pm*
15310 F:      drivers/cpufreq/omap-cpufreq.c
15311
15312 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15313 M:      Paul Walmsley <paul@pwsan.com>
15314 L:      linux-omap@vger.kernel.org
15315 S:      Maintained
15316 F:      arch/arm/mach-omap2/prm*
15317
15318 OMAP RANDOM NUMBER GENERATOR SUPPORT
15319 M:      Deepak Saxena <dsaxena@plexity.net>
15320 S:      Maintained
15321 F:      drivers/char/hw_random/omap-rng.c
15322
15323 OMAP USB SUPPORT
15324 L:      linux-usb@vger.kernel.org
15325 L:      linux-omap@vger.kernel.org
15326 S:      Orphan
15327 F:      arch/arm/*omap*/usb*
15328 F:      drivers/usb/*/*omap*
15329
15330 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15331 M:      Mark Jackson <mpfj@newflow.co.uk>
15332 L:      linux-omap@vger.kernel.org
15333 S:      Maintained
15334 F:      arch/arm/boot/dts/am335x-nano.dts
15335
15336 OMAP1 SUPPORT
15337 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15338 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
15339 M:      Tony Lindgren <tony@atomide.com>
15340 L:      linux-omap@vger.kernel.org
15341 S:      Maintained
15342 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15344 F:      arch/arm/configs/omap1_defconfig
15345 F:      arch/arm/mach-omap1/
15346 F:      arch/arm/plat-omap/
15347 F:      drivers/i2c/busses/i2c-omap.c
15348 F:      include/linux/platform_data/ams-delta-fiq.h
15349 F:      include/linux/platform_data/i2c-omap.h
15350
15351 OMAP2+ SUPPORT
15352 M:      Tony Lindgren <tony@atomide.com>
15353 L:      linux-omap@vger.kernel.org
15354 S:      Maintained
15355 W:      http://www.muru.com/linux/omap/
15356 W:      http://linux.omap.com/
15357 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15359 F:      arch/arm/configs/omap2plus_defconfig
15360 F:      arch/arm/mach-omap2/
15361 F:      arch/arm/plat-omap/
15362 F:      drivers/bus/ti-sysc.c
15363 F:      drivers/i2c/busses/i2c-omap.c
15364 F:      drivers/irqchip/irq-omap-intc.c
15365 F:      drivers/mfd/*omap*.c
15366 F:      drivers/mfd/menelaus.c
15367 F:      drivers/mfd/palmas.c
15368 F:      drivers/mfd/tps65217.c
15369 F:      drivers/mfd/tps65218.c
15370 F:      drivers/mfd/tps65219.c
15371 F:      drivers/mfd/tps65910.c
15372 F:      drivers/mfd/twl-core.[ch]
15373 F:      drivers/mfd/twl4030*.c
15374 F:      drivers/mfd/twl6030*.c
15375 F:      drivers/mfd/twl6040*.c
15376 F:      drivers/regulator/palmas-regulator*.c
15377 F:      drivers/regulator/pbias-regulator.c
15378 F:      drivers/regulator/tps65217-regulator.c
15379 F:      drivers/regulator/tps65218-regulator.c
15380 F:      drivers/regulator/tps65219-regulator.c
15381 F:      drivers/regulator/tps65910-regulator.c
15382 F:      drivers/regulator/twl-regulator.c
15383 F:      drivers/regulator/twl6030-regulator.c
15384 F:      include/linux/platform_data/i2c-omap.h
15385 F:      include/linux/platform_data/ti-sysc.h
15386
15387 OMFS FILESYSTEM
15388 M:      Bob Copeland <me@bobcopeland.com>
15389 L:      linux-karma-devel@lists.sourceforge.net
15390 S:      Maintained
15391 F:      Documentation/filesystems/omfs.rst
15392 F:      fs/omfs/
15393
15394 OMNIKEY CARDMAN 4000 DRIVER
15395 M:      Harald Welte <laforge@gnumonks.org>
15396 S:      Maintained
15397 F:      drivers/char/pcmcia/cm4000_cs.c
15398 F:      include/linux/cm4000_cs.h
15399 F:      include/uapi/linux/cm4000_cs.h
15400
15401 OMNIKEY CARDMAN 4040 DRIVER
15402 M:      Harald Welte <laforge@gnumonks.org>
15403 S:      Maintained
15404 F:      drivers/char/pcmcia/cm4040_cs.*
15405
15406 OMNIVISION OG01A1B SENSOR DRIVER
15407 M:      Shawn Tu <shawnx.tu@intel.com>
15408 L:      linux-media@vger.kernel.org
15409 S:      Maintained
15410 F:      drivers/media/i2c/og01a1b.c
15411
15412 OMNIVISION OV02A10 SENSOR DRIVER
15413 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15414 L:      linux-media@vger.kernel.org
15415 S:      Maintained
15416 T:      git git://linuxtv.org/media_tree.git
15417 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15418 F:      drivers/media/i2c/ov02a10.c
15419
15420 OMNIVISION OV08D10 SENSOR DRIVER
15421 M:      Jimmy Su <jimmy.su@intel.com>
15422 L:      linux-media@vger.kernel.org
15423 S:      Maintained
15424 T:      git git://linuxtv.org/media_tree.git
15425 F:      drivers/media/i2c/ov08d10.c
15426
15427 OMNIVISION OV08X40 SENSOR DRIVER
15428 M:      Jason Chen <jason.z.chen@intel.com>
15429 L:      linux-media@vger.kernel.org
15430 S:      Maintained
15431 T:      git git://linuxtv.org/media_tree.git
15432 F:      drivers/media/i2c/ov08x40.c
15433
15434 OMNIVISION OV13858 SENSOR DRIVER
15435 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15436 L:      linux-media@vger.kernel.org
15437 S:      Maintained
15438 T:      git git://linuxtv.org/media_tree.git
15439 F:      drivers/media/i2c/ov13858.c
15440
15441 OMNIVISION OV13B10 SENSOR DRIVER
15442 M:      Arec Kao <arec.kao@intel.com>
15443 L:      linux-media@vger.kernel.org
15444 S:      Maintained
15445 T:      git git://linuxtv.org/media_tree.git
15446 F:      drivers/media/i2c/ov13b10.c
15447
15448 OMNIVISION OV2680 SENSOR DRIVER
15449 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15450 L:      linux-media@vger.kernel.org
15451 S:      Maintained
15452 T:      git git://linuxtv.org/media_tree.git
15453 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15454 F:      drivers/media/i2c/ov2680.c
15455
15456 OMNIVISION OV2685 SENSOR DRIVER
15457 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15458 L:      linux-media@vger.kernel.org
15459 S:      Maintained
15460 T:      git git://linuxtv.org/media_tree.git
15461 F:      drivers/media/i2c/ov2685.c
15462
15463 OMNIVISION OV2740 SENSOR DRIVER
15464 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15465 R:      Shawn Tu <shawnx.tu@intel.com>
15466 R:      Bingbu Cao <bingbu.cao@intel.com>
15467 L:      linux-media@vger.kernel.org
15468 S:      Maintained
15469 T:      git git://linuxtv.org/media_tree.git
15470 F:      drivers/media/i2c/ov2740.c
15471
15472 OMNIVISION OV4689 SENSOR DRIVER
15473 M:      Mikhail Rudenko <mike.rudenko@gmail.com>
15474 L:      linux-media@vger.kernel.org
15475 S:      Maintained
15476 T:      git git://linuxtv.org/media_tree.git
15477 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15478 F:      drivers/media/i2c/ov5647.c
15479
15480 OMNIVISION OV5640 SENSOR DRIVER
15481 M:      Steve Longerbeam <slongerbeam@gmail.com>
15482 L:      linux-media@vger.kernel.org
15483 S:      Maintained
15484 T:      git git://linuxtv.org/media_tree.git
15485 F:      drivers/media/i2c/ov5640.c
15486
15487 OMNIVISION OV5647 SENSOR DRIVER
15488 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15489 M:      Jacopo Mondi <jacopo@jmondi.org>
15490 L:      linux-media@vger.kernel.org
15491 S:      Maintained
15492 T:      git git://linuxtv.org/media_tree.git
15493 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15494 F:      drivers/media/i2c/ov5647.c
15495
15496 OMNIVISION OV5670 SENSOR DRIVER
15497 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15498 L:      linux-media@vger.kernel.org
15499 S:      Maintained
15500 T:      git git://linuxtv.org/media_tree.git
15501 F:      drivers/media/i2c/ov5670.c
15502
15503 OMNIVISION OV5675 SENSOR DRIVER
15504 M:      Shawn Tu <shawnx.tu@intel.com>
15505 L:      linux-media@vger.kernel.org
15506 S:      Maintained
15507 T:      git git://linuxtv.org/media_tree.git
15508 F:      drivers/media/i2c/ov5675.c
15509
15510 OMNIVISION OV5693 SENSOR DRIVER
15511 M:      Daniel Scally <djrscally@gmail.com>
15512 L:      linux-media@vger.kernel.org
15513 S:      Maintained
15514 T:      git git://linuxtv.org/media_tree.git
15515 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15516 F:      drivers/media/i2c/ov5693.c
15517
15518 OMNIVISION OV5695 SENSOR DRIVER
15519 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15520 L:      linux-media@vger.kernel.org
15521 S:      Maintained
15522 T:      git git://linuxtv.org/media_tree.git
15523 F:      drivers/media/i2c/ov5695.c
15524
15525 OMNIVISION OV7670 SENSOR DRIVER
15526 L:      linux-media@vger.kernel.org
15527 S:      Orphan
15528 T:      git git://linuxtv.org/media_tree.git
15529 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15530 F:      drivers/media/i2c/ov7670.c
15531
15532 OMNIVISION OV772x SENSOR DRIVER
15533 M:      Jacopo Mondi <jacopo@jmondi.org>
15534 L:      linux-media@vger.kernel.org
15535 S:      Odd fixes
15536 T:      git git://linuxtv.org/media_tree.git
15537 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15538 F:      drivers/media/i2c/ov772x.c
15539 F:      include/media/i2c/ov772x.h
15540
15541 OMNIVISION OV7740 SENSOR DRIVER
15542 M:      Wenyou Yang <wenyou.yang@microchip.com>
15543 L:      linux-media@vger.kernel.org
15544 S:      Maintained
15545 T:      git git://linuxtv.org/media_tree.git
15546 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15547 F:      drivers/media/i2c/ov7740.c
15548
15549 OMNIVISION OV8856 SENSOR DRIVER
15550 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15551 L:      linux-media@vger.kernel.org
15552 S:      Maintained
15553 T:      git git://linuxtv.org/media_tree.git
15554 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15555 F:      drivers/media/i2c/ov8856.c
15556
15557 OMNIVISION OV9282 SENSOR DRIVER
15558 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15559 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15560 L:      linux-media@vger.kernel.org
15561 S:      Maintained
15562 T:      git git://linuxtv.org/media_tree.git
15563 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15564 F:      drivers/media/i2c/ov9282.c
15565
15566 OMNIVISION OV9640 SENSOR DRIVER
15567 M:      Petr Cvek <petrcvekcz@gmail.com>
15568 L:      linux-media@vger.kernel.org
15569 S:      Maintained
15570 F:      drivers/media/i2c/ov9640.*
15571
15572 OMNIVISION OV9650 SENSOR DRIVER
15573 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15574 R:      Akinobu Mita <akinobu.mita@gmail.com>
15575 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15576 L:      linux-media@vger.kernel.org
15577 S:      Maintained
15578 T:      git git://linuxtv.org/media_tree.git
15579 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15580 F:      drivers/media/i2c/ov9650.c
15581
15582 OMNIVISION OV9734 SENSOR DRIVER
15583 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15584 R:      Bingbu Cao <bingbu.cao@intel.com>
15585 L:      linux-media@vger.kernel.org
15586 S:      Maintained
15587 T:      git git://linuxtv.org/media_tree.git
15588 F:      drivers/media/i2c/ov9734.c
15589
15590 ONBOARD USB HUB DRIVER
15591 M:      Matthias Kaehlcke <mka@chromium.org>
15592 L:      linux-usb@vger.kernel.org
15593 S:      Maintained
15594 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15595 F:      drivers/usb/misc/onboard_usb_hub.c
15596
15597 ONENAND FLASH DRIVER
15598 M:      Kyungmin Park <kyungmin.park@samsung.com>
15599 L:      linux-mtd@lists.infradead.org
15600 S:      Maintained
15601 F:      drivers/mtd/nand/onenand/
15602 F:      include/linux/mtd/onenand*.h
15603
15604 ONEXPLAYER FAN DRIVER
15605 M:      Joaquín Ignacio Aramendía <samsagax@gmail.com>
15606 L:      linux-hwmon@vger.kernel.org
15607 S:      Maintained
15608 F:      drivers/hwmon/oxp-sensors.c
15609
15610 ONION OMEGA2+ BOARD
15611 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15612 L:      linux-mips@vger.kernel.org
15613 S:      Maintained
15614 F:      arch/mips/boot/dts/ralink/omega2p.dts
15615
15616 OP-TEE DRIVER
15617 M:      Jens Wiklander <jens.wiklander@linaro.org>
15618 L:      op-tee@lists.trustedfirmware.org
15619 S:      Maintained
15620 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15621 F:      drivers/tee/optee/
15622
15623 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15624 M:      Sumit Garg <sumit.garg@linaro.org>
15625 L:      op-tee@lists.trustedfirmware.org
15626 S:      Maintained
15627 F:      drivers/char/hw_random/optee-rng.c
15628
15629 OP-TEE RTC DRIVER
15630 M:      Clément Léger <clement.leger@bootlin.com>
15631 L:      linux-rtc@vger.kernel.org
15632 S:      Maintained
15633 F:      drivers/rtc/rtc-optee.c
15634
15635 OPA-VNIC DRIVER
15636 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15637 L:      linux-rdma@vger.kernel.org
15638 S:      Supported
15639 F:      drivers/infiniband/ulp/opa_vnic
15640
15641 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15642 M:      Rob Herring <robh+dt@kernel.org>
15643 M:      Frank Rowand <frowand.list@gmail.com>
15644 L:      devicetree@vger.kernel.org
15645 S:      Maintained
15646 C:      irc://irc.libera.chat/devicetree
15647 W:      http://www.devicetree.org/
15648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15649 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15650 F:      drivers/of/
15651 F:      include/linux/of*.h
15652 F:      scripts/dtc/
15653 K:      of_overlay_notifier_
15654 K:      of_overlay_fdt_apply
15655 K:      of_overlay_remove
15656
15657 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15658 M:      Rob Herring <robh+dt@kernel.org>
15659 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15660 L:      devicetree@vger.kernel.org
15661 S:      Maintained
15662 C:      irc://irc.libera.chat/devicetree
15663 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15665 F:      Documentation/devicetree/
15666 F:      arch/*/boot/dts/
15667 F:      include/dt-bindings/
15668
15669 OPENCOMPUTE PTP CLOCK DRIVER
15670 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15671 M:      Vadim Fedorenko <vadfed@fb.com>
15672 L:      netdev@vger.kernel.org
15673 S:      Maintained
15674 F:      drivers/ptp/ptp_ocp.c
15675
15676 OPENCORES I2C BUS DRIVER
15677 M:      Peter Korsgaard <peter@korsgaard.com>
15678 M:      Andrew Lunn <andrew@lunn.ch>
15679 L:      linux-i2c@vger.kernel.org
15680 S:      Maintained
15681 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15682 F:      Documentation/i2c/busses/i2c-ocores.rst
15683 F:      drivers/i2c/busses/i2c-ocores.c
15684 F:      include/linux/platform_data/i2c-ocores.h
15685
15686 OPENRISC ARCHITECTURE
15687 M:      Jonas Bonn <jonas@southpole.se>
15688 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15689 M:      Stafford Horne <shorne@gmail.com>
15690 L:      linux-openrisc@vger.kernel.org
15691 S:      Maintained
15692 W:      http://openrisc.io
15693 T:      git https://github.com/openrisc/linux.git
15694 F:      Documentation/devicetree/bindings/openrisc/
15695 F:      Documentation/openrisc/
15696 F:      arch/openrisc/
15697 F:      drivers/irqchip/irq-ompic.c
15698 F:      drivers/irqchip/irq-or1k-*
15699
15700 OPENVSWITCH
15701 M:      Pravin B Shelar <pshelar@ovn.org>
15702 L:      netdev@vger.kernel.org
15703 L:      dev@openvswitch.org
15704 S:      Maintained
15705 W:      http://openvswitch.org
15706 F:      include/uapi/linux/openvswitch.h
15707 F:      net/openvswitch/
15708 F:      tools/testing/selftests/net/openvswitch/
15709
15710 OPERATING PERFORMANCE POINTS (OPP)
15711 M:      Viresh Kumar <vireshk@kernel.org>
15712 M:      Nishanth Menon <nm@ti.com>
15713 M:      Stephen Boyd <sboyd@kernel.org>
15714 L:      linux-pm@vger.kernel.org
15715 S:      Maintained
15716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15717 F:      Documentation/devicetree/bindings/opp/
15718 F:      Documentation/power/opp.rst
15719 F:      drivers/opp/
15720 F:      include/linux/pm_opp.h
15721
15722 OPL4 DRIVER
15723 M:      Clemens Ladisch <clemens@ladisch.de>
15724 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15725 S:      Maintained
15726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15727 F:      sound/drivers/opl4/
15728
15729 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15730 M:      Mark Fasheh <mark@fasheh.com>
15731 M:      Joel Becker <jlbec@evilplan.org>
15732 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15733 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15734 S:      Supported
15735 W:      http://ocfs2.wiki.kernel.org
15736 F:      Documentation/filesystems/dlmfs.rst
15737 F:      Documentation/filesystems/ocfs2.rst
15738 F:      fs/ocfs2/
15739
15740 ORANGEFS FILESYSTEM
15741 M:      Mike Marshall <hubcap@omnibond.com>
15742 R:      Martin Brandenburg <martin@omnibond.com>
15743 L:      devel@lists.orangefs.org
15744 S:      Supported
15745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15746 F:      Documentation/filesystems/orangefs.rst
15747 F:      fs/orangefs/
15748
15749 ORINOCO DRIVER
15750 L:      linux-wireless@vger.kernel.org
15751 S:      Orphan
15752 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15753 W:      http://www.nongnu.org/orinoco/
15754 F:      drivers/net/wireless/intersil/orinoco/
15755
15756 OV2659 OMNIVISION SENSOR DRIVER
15757 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15758 L:      linux-media@vger.kernel.org
15759 S:      Maintained
15760 W:      https://linuxtv.org
15761 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15762 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15763 F:      drivers/media/i2c/ov2659.c
15764 F:      include/media/i2c/ov2659.h
15765
15766 OVERLAY FILESYSTEM
15767 M:      Miklos Szeredi <miklos@szeredi.hu>
15768 L:      linux-unionfs@vger.kernel.org
15769 S:      Supported
15770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15771 F:      Documentation/filesystems/overlayfs.rst
15772 F:      fs/overlayfs/
15773
15774 P54 WIRELESS DRIVER
15775 M:      Christian Lamparter <chunkeey@googlemail.com>
15776 L:      linux-wireless@vger.kernel.org
15777 S:      Maintained
15778 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15779 F:      drivers/net/wireless/intersil/p54/
15780
15781 PACKET SOCKETS
15782 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15783 S:      Maintained
15784 F:      include/uapi/linux/if_packet.h
15785 F:      net/packet/af_packet.c
15786
15787 PACKING
15788 M:      Vladimir Oltean <olteanv@gmail.com>
15789 L:      netdev@vger.kernel.org
15790 S:      Supported
15791 F:      Documentation/core-api/packing.rst
15792 F:      include/linux/packing.h
15793 F:      lib/packing.c
15794
15795 PADATA PARALLEL EXECUTION MECHANISM
15796 M:      Steffen Klassert <steffen.klassert@secunet.com>
15797 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15798 L:      linux-crypto@vger.kernel.org
15799 L:      linux-kernel@vger.kernel.org
15800 S:      Maintained
15801 F:      Documentation/core-api/padata.rst
15802 F:      include/linux/padata.h
15803 F:      kernel/padata.c
15804
15805 PAGE CACHE
15806 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15807 L:      linux-fsdevel@vger.kernel.org
15808 S:      Supported
15809 T:      git git://git.infradead.org/users/willy/pagecache.git
15810 F:      Documentation/filesystems/locking.rst
15811 F:      Documentation/filesystems/vfs.rst
15812 F:      include/linux/pagemap.h
15813 F:      mm/filemap.c
15814 F:      mm/page-writeback.c
15815 F:      mm/readahead.c
15816 F:      mm/truncate.c
15817
15818 PAGE POOL
15819 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15820 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15821 L:      netdev@vger.kernel.org
15822 S:      Supported
15823 F:      Documentation/networking/page_pool.rst
15824 F:      include/net/page_pool.h
15825 F:      include/trace/events/page_pool.h
15826 F:      net/core/page_pool.c
15827
15828 PAGE TABLE CHECK
15829 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15830 M:      Andrew Morton <akpm@linux-foundation.org>
15831 L:      linux-mm@kvack.org
15832 S:      Maintained
15833 F:      Documentation/mm/page_table_check.rst
15834 F:      include/linux/page_table_check.h
15835 F:      mm/page_table_check.c
15836
15837 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15838 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15839 L:      platform-driver-x86@vger.kernel.org
15840 S:      Maintained
15841 F:      drivers/platform/x86/panasonic-laptop.c
15842
15843 PARALLAX PING IIO SENSOR DRIVER
15844 M:      Andreas Klinger <ak@it-klinger.de>
15845 L:      linux-iio@vger.kernel.org
15846 S:      Maintained
15847 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15848 F:      drivers/iio/proximity/ping.c
15849
15850 PARALLEL LCD/KEYPAD PANEL DRIVER
15851 M:      Willy Tarreau <willy@haproxy.com>
15852 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15853 S:      Odd Fixes
15854 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15855 F:      drivers/auxdisplay/panel.c
15856
15857 PARALLEL PORT SUBSYSTEM
15858 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15859 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15860 L:      linux-parport@lists.infradead.org (subscribers-only)
15861 S:      Maintained
15862 F:      Documentation/driver-api/parport*.rst
15863 F:      drivers/char/ppdev.c
15864 F:      drivers/parport/
15865 F:      include/linux/parport*.h
15866 F:      include/uapi/linux/ppdev.h
15867
15868 PARAVIRT_OPS INTERFACE
15869 M:      Juergen Gross <jgross@suse.com>
15870 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15871 R:      Alexey Makhalov <amakhalov@vmware.com>
15872 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15873 L:      virtualization@lists.linux-foundation.org
15874 L:      x86@kernel.org
15875 S:      Supported
15876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15877 F:      Documentation/virt/paravirt_ops.rst
15878 F:      arch/*/include/asm/paravirt*.h
15879 F:      arch/*/kernel/paravirt*
15880 F:      include/linux/hypervisor.h
15881
15882 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15883 M:      Tim Waugh <tim@cyberelk.net>
15884 L:      linux-parport@lists.infradead.org (subscribers-only)
15885 S:      Maintained
15886 F:      Documentation/admin-guide/blockdev/paride.rst
15887 F:      drivers/block/paride/
15888
15889 PARISC ARCHITECTURE
15890 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15891 M:      Helge Deller <deller@gmx.de>
15892 L:      linux-parisc@vger.kernel.org
15893 S:      Maintained
15894 W:      https://parisc.wiki.kernel.org
15895 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15898 F:      Documentation/parisc/
15899 F:      arch/parisc/
15900 F:      drivers/char/agp/parisc-agp.c
15901 F:      drivers/input/misc/hp_sdc_rtc.c
15902 F:      drivers/input/serio/gscps2.c
15903 F:      drivers/input/serio/hp_sdc*
15904 F:      drivers/parisc/
15905 F:      drivers/parport/parport_gsc.*
15906 F:      drivers/tty/serial/8250/8250_parisc.c
15907 F:      drivers/video/console/sti*
15908 F:      drivers/video/fbdev/sti*
15909 F:      drivers/video/logo/logo_parisc*
15910 F:      include/linux/hp_sdc.h
15911
15912 PARMAN
15913 M:      Jiri Pirko <jiri@nvidia.com>
15914 L:      netdev@vger.kernel.org
15915 S:      Supported
15916 F:      include/linux/parman.h
15917 F:      lib/parman.c
15918 F:      lib/test_parman.c
15919
15920 PC ENGINES APU BOARD DRIVER
15921 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15922 S:      Maintained
15923 F:      drivers/platform/x86/pcengines-apuv2.c
15924
15925 PC87360 HARDWARE MONITORING DRIVER
15926 M:      Jim Cromie <jim.cromie@gmail.com>
15927 L:      linux-hwmon@vger.kernel.org
15928 S:      Maintained
15929 F:      Documentation/hwmon/pc87360.rst
15930 F:      drivers/hwmon/pc87360.c
15931
15932 PC8736x GPIO DRIVER
15933 M:      Jim Cromie <jim.cromie@gmail.com>
15934 S:      Maintained
15935 F:      drivers/char/pc8736x_gpio.c
15936
15937 PC87427 HARDWARE MONITORING DRIVER
15938 M:      Jean Delvare <jdelvare@suse.com>
15939 L:      linux-hwmon@vger.kernel.org
15940 S:      Maintained
15941 F:      Documentation/hwmon/pc87427.rst
15942 F:      drivers/hwmon/pc87427.c
15943
15944 PCA9532 LED DRIVER
15945 M:      Riku Voipio <riku.voipio@iki.fi>
15946 S:      Maintained
15947 F:      drivers/leds/leds-pca9532.c
15948 F:      include/linux/leds-pca9532.h
15949
15950 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15951 M:      Guenter Roeck <linux@roeck-us.net>
15952 L:      linux-i2c@vger.kernel.org
15953 S:      Maintained
15954 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15955
15956 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15957 M:      Khalid Aziz <khalid@gonehiking.org>
15958 S:      Maintained
15959 F:      drivers/firmware/pcdp.*
15960
15961 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15962 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15963 M:      Pali Rohár <pali@kernel.org>
15964 L:      linux-pci@vger.kernel.org
15965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15966 S:      Maintained
15967 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15968 F:      drivers/pci/controller/pci-aardvark.c
15969
15970 PCI DRIVER FOR ALTERA PCIE IP
15971 M:      Joyce Ooi <joyce.ooi@intel.com>
15972 L:      linux-pci@vger.kernel.org
15973 S:      Supported
15974 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15975 F:      drivers/pci/controller/pcie-altera.c
15976
15977 PCI DRIVER FOR APPLIEDMICRO XGENE
15978 M:      Toan Le <toan@os.amperecomputing.com>
15979 L:      linux-pci@vger.kernel.org
15980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15981 S:      Maintained
15982 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15983 F:      drivers/pci/controller/pci-xgene.c
15984
15985 PCI DRIVER FOR ARM VERSATILE PLATFORM
15986 M:      Rob Herring <robh@kernel.org>
15987 L:      linux-pci@vger.kernel.org
15988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15989 S:      Maintained
15990 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15991 F:      drivers/pci/controller/pci-versatile.c
15992
15993 PCI DRIVER FOR ARMADA 8K
15994 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15995 L:      linux-pci@vger.kernel.org
15996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15997 S:      Maintained
15998 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15999 F:      drivers/pci/controller/dwc/pcie-armada8k.c
16000
16001 PCI DRIVER FOR CADENCE PCIE IP
16002 M:      Tom Joseph <tjoseph@cadence.com>
16003 L:      linux-pci@vger.kernel.org
16004 S:      Maintained
16005 F:      Documentation/devicetree/bindings/pci/cdns,*
16006 F:      drivers/pci/controller/cadence/
16007
16008 PCI DRIVER FOR FREESCALE LAYERSCAPE
16009 M:      Minghuan Lian <minghuan.Lian@nxp.com>
16010 M:      Mingkai Hu <mingkai.hu@nxp.com>
16011 M:      Roy Zang <roy.zang@nxp.com>
16012 L:      linuxppc-dev@lists.ozlabs.org
16013 L:      linux-pci@vger.kernel.org
16014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16015 S:      Maintained
16016 F:      drivers/pci/controller/dwc/*layerscape*
16017
16018 PCI DRIVER FOR GENERIC OF HOSTS
16019 M:      Will Deacon <will@kernel.org>
16020 L:      linux-pci@vger.kernel.org
16021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16022 S:      Maintained
16023 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
16024 F:      drivers/pci/controller/pci-host-common.c
16025 F:      drivers/pci/controller/pci-host-generic.c
16026
16027 PCI DRIVER FOR IMX6
16028 M:      Richard Zhu <hongxing.zhu@nxp.com>
16029 M:      Lucas Stach <l.stach@pengutronix.de>
16030 L:      linux-pci@vger.kernel.org
16031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16032 S:      Maintained
16033 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
16034 F:      drivers/pci/controller/dwc/*imx6*
16035
16036 PCI DRIVER FOR FU740
16037 M:      Paul Walmsley <paul.walmsley@sifive.com>
16038 M:      Greentime Hu <greentime.hu@sifive.com>
16039 L:      linux-pci@vger.kernel.org
16040 S:      Maintained
16041 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
16042 F:      drivers/pci/controller/dwc/pcie-fu740.c
16043
16044 PCI DRIVER FOR INTEL IXP4XX
16045 M:      Linus Walleij <linus.walleij@linaro.org>
16046 S:      Maintained
16047 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
16048 F:      drivers/pci/controller/pci-ixp4xx.c
16049
16050 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
16051 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
16052 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
16053 L:      linux-pci@vger.kernel.org
16054 S:      Supported
16055 F:      drivers/pci/controller/vmd.c
16056
16057 PCI DRIVER FOR MICROSEMI SWITCHTEC
16058 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
16059 M:      Logan Gunthorpe <logang@deltatee.com>
16060 L:      linux-pci@vger.kernel.org
16061 S:      Maintained
16062 F:      Documentation/ABI/testing/sysfs-class-switchtec
16063 F:      Documentation/driver-api/switchtec.rst
16064 F:      drivers/ntb/hw/mscc/
16065 F:      drivers/pci/switch/switchtec*
16066 F:      include/linux/switchtec.h
16067 F:      include/uapi/linux/switchtec_ioctl.h
16068
16069 PCI DRIVER FOR MOBIVEIL PCIE IP
16070 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
16071 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
16072 L:      linux-pci@vger.kernel.org
16073 S:      Supported
16074 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
16075 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
16076
16077 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
16078 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16079 M:      Pali Rohár <pali@kernel.org>
16080 L:      linux-pci@vger.kernel.org
16081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16082 S:      Maintained
16083 F:      drivers/pci/controller/*mvebu*
16084
16085 PCI DRIVER FOR NVIDIA TEGRA
16086 M:      Thierry Reding <thierry.reding@gmail.com>
16087 L:      linux-tegra@vger.kernel.org
16088 L:      linux-pci@vger.kernel.org
16089 S:      Supported
16090 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
16091 F:      drivers/pci/controller/pci-tegra.c
16092
16093 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
16094 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
16095 L:      linux-pci@vger.kernel.org
16096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16097 S:      Maintained
16098 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
16099 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
16100
16101 PCI DRIVER FOR RENESAS R-CAR
16102 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16103 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16104 L:      linux-pci@vger.kernel.org
16105 L:      linux-renesas-soc@vger.kernel.org
16106 S:      Maintained
16107 F:      Documentation/devicetree/bindings/pci/*rcar*
16108 F:      drivers/pci/controller/*rcar*
16109
16110 PCI DRIVER FOR SAMSUNG EXYNOS
16111 M:      Jingoo Han <jingoohan1@gmail.com>
16112 L:      linux-pci@vger.kernel.org
16113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16114 L:      linux-samsung-soc@vger.kernel.org
16115 S:      Maintained
16116 F:      drivers/pci/controller/dwc/pci-exynos.c
16117
16118 PCI DRIVER FOR SYNOPSYS DESIGNWARE
16119 M:      Jingoo Han <jingoohan1@gmail.com>
16120 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
16121 L:      linux-pci@vger.kernel.org
16122 S:      Maintained
16123 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
16124 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
16125 F:      drivers/pci/controller/dwc/*designware*
16126
16127 PCI DRIVER FOR TI DRA7XX/J721E
16128 M:      Vignesh Raghavendra <vigneshr@ti.com>
16129 L:      linux-omap@vger.kernel.org
16130 L:      linux-pci@vger.kernel.org
16131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16132 S:      Supported
16133 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
16134 F:      drivers/pci/controller/cadence/pci-j721e.c
16135 F:      drivers/pci/controller/dwc/pci-dra7xx.c
16136
16137 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
16138 M:      Linus Walleij <linus.walleij@linaro.org>
16139 L:      linux-pci@vger.kernel.org
16140 S:      Maintained
16141 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
16142 F:      drivers/pci/controller/pci-v3-semi.c
16143
16144 PCI ENDPOINT SUBSYSTEM
16145 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16146 R:      Krzysztof Wilczyński <kw@linux.com>
16147 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16148 R:      Kishon Vijay Abraham I <kishon@kernel.org>
16149 L:      linux-pci@vger.kernel.org
16150 S:      Supported
16151 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16152 B:      https://bugzilla.kernel.org
16153 C:      irc://irc.oftc.net/linux-pci
16154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
16155 F:      Documentation/PCI/endpoint/*
16156 F:      Documentation/misc-devices/pci-endpoint-test.rst
16157 F:      drivers/misc/pci_endpoint_test.c
16158 F:      drivers/pci/endpoint/
16159 F:      tools/pci/
16160
16161 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16162 M:      Mahesh J Salgaonkar <mahesh@linux.ibm.com>
16163 R:      Oliver O'Halloran <oohall@gmail.com>
16164 L:      linuxppc-dev@lists.ozlabs.org
16165 S:      Supported
16166 F:      Documentation/PCI/pci-error-recovery.rst
16167 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
16168 F:      arch/powerpc/include/*/eeh*.h
16169 F:      arch/powerpc/kernel/eeh*.c
16170 F:      arch/powerpc/platforms/*/eeh*.c
16171 F:      drivers/pci/pcie/aer.c
16172 F:      drivers/pci/pcie/dpc.c
16173 F:      drivers/pci/pcie/err.c
16174
16175 PCI ERROR RECOVERY
16176 M:      Linas Vepstas <linasvepstas@gmail.com>
16177 L:      linux-pci@vger.kernel.org
16178 S:      Supported
16179 F:      Documentation/PCI/pci-error-recovery.rst
16180
16181 PCI PEER-TO-PEER DMA (P2PDMA)
16182 M:      Bjorn Helgaas <bhelgaas@google.com>
16183 M:      Logan Gunthorpe <logang@deltatee.com>
16184 L:      linux-pci@vger.kernel.org
16185 S:      Supported
16186 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16187 B:      https://bugzilla.kernel.org
16188 C:      irc://irc.oftc.net/linux-pci
16189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
16190 F:      Documentation/driver-api/pci/p2pdma.rst
16191 F:      drivers/pci/p2pdma.c
16192 F:      include/linux/pci-p2pdma.h
16193
16194 PCI MSI DRIVER FOR ALTERA MSI IP
16195 M:      Joyce Ooi <joyce.ooi@intel.com>
16196 L:      linux-pci@vger.kernel.org
16197 S:      Supported
16198 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16199 F:      drivers/pci/controller/pcie-altera-msi.c
16200
16201 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16202 M:      Toan Le <toan@os.amperecomputing.com>
16203 L:      linux-pci@vger.kernel.org
16204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16205 S:      Maintained
16206 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16207 F:      drivers/pci/controller/pci-xgene-msi.c
16208
16209 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16210 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16211 R:      Rob Herring <robh@kernel.org>
16212 R:      Krzysztof Wilczyński <kw@linux.com>
16213 L:      linux-pci@vger.kernel.org
16214 S:      Supported
16215 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16216 B:      https://bugzilla.kernel.org
16217 C:      irc://irc.oftc.net/linux-pci
16218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
16219 F:      Documentation/devicetree/bindings/pci/
16220 F:      drivers/pci/controller/
16221 F:      drivers/pci/pci-bridge-emul.c
16222 F:      drivers/pci/pci-bridge-emul.h
16223
16224 PCI SUBSYSTEM
16225 M:      Bjorn Helgaas <bhelgaas@google.com>
16226 L:      linux-pci@vger.kernel.org
16227 S:      Supported
16228 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16229 B:      https://bugzilla.kernel.org
16230 C:      irc://irc.oftc.net/linux-pci
16231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
16232 F:      Documentation/PCI/
16233 F:      Documentation/devicetree/bindings/pci/
16234 F:      arch/x86/kernel/early-quirks.c
16235 F:      arch/x86/kernel/quirks.c
16236 F:      arch/x86/pci/
16237 F:      drivers/acpi/pci*
16238 F:      drivers/pci/
16239 F:      include/asm-generic/pci*
16240 F:      include/linux/of_pci.h
16241 F:      include/linux/pci*
16242 F:      include/uapi/linux/pci*
16243 F:      lib/pci*
16244
16245 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16246 M:      Jonathan Chocron <jonnyc@amazon.com>
16247 L:      linux-pci@vger.kernel.org
16248 S:      Maintained
16249 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16250 F:      drivers/pci/controller/dwc/pcie-al.c
16251
16252 PCIE DRIVER FOR AMLOGIC MESON
16253 M:      Yue Wang <yue.wang@Amlogic.com>
16254 L:      linux-pci@vger.kernel.org
16255 L:      linux-amlogic@lists.infradead.org
16256 S:      Maintained
16257 F:      drivers/pci/controller/dwc/pci-meson.c
16258
16259 PCIE DRIVER FOR AXIS ARTPEC
16260 M:      Jesper Nilsson <jesper.nilsson@axis.com>
16261 L:      linux-arm-kernel@axis.com
16262 L:      linux-pci@vger.kernel.org
16263 S:      Maintained
16264 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16265 F:      drivers/pci/controller/dwc/*artpec*
16266
16267 PCIE DRIVER FOR CAVIUM THUNDERX
16268 M:      Robert Richter <rric@kernel.org>
16269 L:      linux-pci@vger.kernel.org
16270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16271 S:      Odd Fixes
16272 F:      drivers/pci/controller/pci-thunder-*
16273
16274 PCIE DRIVER FOR HISILICON
16275 M:      Zhou Wang <wangzhou1@hisilicon.com>
16276 L:      linux-pci@vger.kernel.org
16277 S:      Maintained
16278 F:      drivers/pci/controller/dwc/pcie-hisi.c
16279
16280 PCIE DRIVER FOR HISILICON KIRIN
16281 M:      Xiaowei Song <songxiaowei@hisilicon.com>
16282 M:      Binghui Wang <wangbinghui@hisilicon.com>
16283 L:      linux-pci@vger.kernel.org
16284 S:      Maintained
16285 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16286 F:      drivers/pci/controller/dwc/pcie-kirin.c
16287
16288 PCIE DRIVER FOR HISILICON STB
16289 M:      Shawn Guo <shawn.guo@linaro.org>
16290 L:      linux-pci@vger.kernel.org
16291 S:      Maintained
16292 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16293 F:      drivers/pci/controller/dwc/pcie-histb.c
16294
16295 PCIE DRIVER FOR INTEL KEEM BAY
16296 M:      Srikanth Thokala <srikanth.thokala@intel.com>
16297 L:      linux-pci@vger.kernel.org
16298 S:      Supported
16299 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16300 F:      drivers/pci/controller/dwc/pcie-keembay.c
16301
16302 PCIE DRIVER FOR INTEL LGM GW SOC
16303 M:      Rahul Tanwar <rtanwar@maxlinear.com>
16304 L:      linux-pci@vger.kernel.org
16305 S:      Maintained
16306 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16307 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16308
16309 PCIE DRIVER FOR MEDIATEK
16310 M:      Ryder Lee <ryder.lee@mediatek.com>
16311 M:      Jianjun Wang <jianjun.wang@mediatek.com>
16312 L:      linux-pci@vger.kernel.org
16313 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16314 S:      Supported
16315 F:      Documentation/devicetree/bindings/pci/mediatek*
16316 F:      drivers/pci/controller/*mediatek*
16317
16318 PCIE DRIVER FOR MICROCHIP
16319 M:      Daire McNamara <daire.mcnamara@microchip.com>
16320 L:      linux-pci@vger.kernel.org
16321 S:      Supported
16322 F:      Documentation/devicetree/bindings/pci/microchip*
16323 F:      drivers/pci/controller/*microchip*
16324
16325 PCIE DRIVER FOR QUALCOMM MSM
16326 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16327 L:      linux-pci@vger.kernel.org
16328 L:      linux-arm-msm@vger.kernel.org
16329 S:      Maintained
16330 F:      drivers/pci/controller/dwc/pcie-qcom.c
16331
16332 PCIE ENDPOINT DRIVER FOR QUALCOMM
16333 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16334 L:      linux-pci@vger.kernel.org
16335 L:      linux-arm-msm@vger.kernel.org
16336 S:      Maintained
16337 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16338 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16339
16340 PCIE DRIVER FOR ROCKCHIP
16341 M:      Shawn Lin <shawn.lin@rock-chips.com>
16342 L:      linux-pci@vger.kernel.org
16343 L:      linux-rockchip@lists.infradead.org
16344 S:      Maintained
16345 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
16346 F:      drivers/pci/controller/pcie-rockchip*
16347
16348 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16349 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16350 L:      linux-pci@vger.kernel.org
16351 S:      Maintained
16352 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16353 F:      drivers/pci/controller/dwc/pcie-uniphier*
16354
16355 PCIE DRIVER FOR ST SPEAR13XX
16356 M:      Pratyush Anand <pratyush.anand@gmail.com>
16357 L:      linux-pci@vger.kernel.org
16358 S:      Maintained
16359 F:      drivers/pci/controller/dwc/*spear*
16360
16361 PCI DRIVER FOR XILINX VERSAL CPM
16362 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16363 M:      Michal Simek <michal.simek@amd.com>
16364 L:      linux-pci@vger.kernel.org
16365 S:      Maintained
16366 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16367 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16368
16369 PCMCIA SUBSYSTEM
16370 M:      Dominik Brodowski <linux@dominikbrodowski.net>
16371 S:      Odd Fixes
16372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16373 F:      Documentation/pcmcia/
16374 F:      drivers/pcmcia/
16375 F:      include/pcmcia/
16376 F:      tools/pcmcia/
16377
16378 PCNET32 NETWORK DRIVER
16379 M:      Don Fry <pcnet32@frontier.com>
16380 L:      netdev@vger.kernel.org
16381 S:      Maintained
16382 F:      drivers/net/ethernet/amd/pcnet32.c
16383
16384 PCRYPT PARALLEL CRYPTO ENGINE
16385 M:      Steffen Klassert <steffen.klassert@secunet.com>
16386 L:      linux-crypto@vger.kernel.org
16387 S:      Maintained
16388 F:      crypto/pcrypt.c
16389 F:      include/crypto/pcrypt.h
16390
16391 PEAQ WMI HOTKEYS DRIVER
16392 M:      Hans de Goede <hdegoede@redhat.com>
16393 L:      platform-driver-x86@vger.kernel.org
16394 S:      Maintained
16395 F:      drivers/platform/x86/peaq-wmi.c
16396
16397 PECI HARDWARE MONITORING DRIVERS
16398 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16399 L:      linux-hwmon@vger.kernel.org
16400 S:      Supported
16401 F:      Documentation/hwmon/peci-cputemp.rst
16402 F:      Documentation/hwmon/peci-dimmtemp.rst
16403 F:      drivers/hwmon/peci/
16404
16405 PECI SUBSYSTEM
16406 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16407 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
16408 S:      Supported
16409 F:      Documentation/devicetree/bindings/peci/
16410 F:      Documentation/peci/
16411 F:      drivers/peci/
16412 F:      include/linux/peci-cpu.h
16413 F:      include/linux/peci.h
16414
16415 PENSANDO ETHERNET DRIVERS
16416 M:      Shannon Nelson <shannon.nelson@amd.com>
16417 M:      Brett Creeley <brett.creeley@amd.com>
16418 M:      drivers@pensando.io
16419 L:      netdev@vger.kernel.org
16420 S:      Supported
16421 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16422 F:      drivers/net/ethernet/pensando/
16423
16424 PER-CPU MEMORY ALLOCATOR
16425 M:      Dennis Zhou <dennis@kernel.org>
16426 M:      Tejun Heo <tj@kernel.org>
16427 M:      Christoph Lameter <cl@linux.com>
16428 L:      linux-mm@kvack.org
16429 S:      Maintained
16430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16431 F:      arch/*/include/asm/percpu.h
16432 F:      include/linux/percpu*.h
16433 F:      lib/percpu*.c
16434 F:      mm/percpu*.c
16435
16436 PER-TASK DELAY ACCOUNTING
16437 M:      Balbir Singh <bsingharora@gmail.com>
16438 S:      Maintained
16439 F:      include/linux/delayacct.h
16440 F:      kernel/delayacct.c
16441
16442 PERFORMANCE EVENTS SUBSYSTEM
16443 M:      Peter Zijlstra <peterz@infradead.org>
16444 M:      Ingo Molnar <mingo@redhat.com>
16445 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16446 R:      Mark Rutland <mark.rutland@arm.com>
16447 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16448 R:      Jiri Olsa <jolsa@kernel.org>
16449 R:      Namhyung Kim <namhyung@kernel.org>
16450 L:      linux-perf-users@vger.kernel.org
16451 L:      linux-kernel@vger.kernel.org
16452 S:      Supported
16453 W:      https://perf.wiki.kernel.org/
16454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16455 F:      arch/*/events/*
16456 F:      arch/*/events/*/*
16457 F:      arch/*/include/asm/perf_event.h
16458 F:      arch/*/kernel/*/*/perf_event*.c
16459 F:      arch/*/kernel/*/perf_event*.c
16460 F:      arch/*/kernel/perf_callchain.c
16461 F:      arch/*/kernel/perf_event*.c
16462 F:      include/linux/perf_event.h
16463 F:      include/uapi/linux/perf_event.h
16464 F:      kernel/events/*
16465 F:      tools/lib/perf/
16466 F:      tools/perf/
16467
16468 PERFORMANCE EVENTS TOOLING ARM64
16469 R:      John Garry <john.g.garry@oracle.com>
16470 R:      Will Deacon <will@kernel.org>
16471 R:      James Clark <james.clark@arm.com>
16472 R:      Mike Leach <mike.leach@linaro.org>
16473 R:      Leo Yan <leo.yan@linaro.org>
16474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16475 S:      Supported
16476 F:      tools/build/feature/test-libopencsd.c
16477 F:      tools/perf/arch/arm*/
16478 F:      tools/perf/pmu-events/arch/arm64/
16479 F:      tools/perf/util/arm-spe*
16480 F:      tools/perf/util/cs-etm*
16481
16482 PERSONALITY HANDLING
16483 M:      Christoph Hellwig <hch@infradead.org>
16484 L:      linux-abi-devel@lists.sourceforge.net
16485 S:      Maintained
16486 F:      include/linux/personality.h
16487 F:      include/uapi/linux/personality.h
16488
16489 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16490 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16491 L:      linux-input@vger.kernel.org
16492 S:      Maintained
16493 F:      Documentation/input/devices/pxrc.rst
16494 F:      drivers/input/joystick/pxrc.c
16495
16496 PHONET PROTOCOL
16497 M:      Remi Denis-Courmont <courmisch@gmail.com>
16498 S:      Supported
16499 F:      Documentation/networking/phonet.rst
16500 F:      include/linux/phonet.h
16501 F:      include/net/phonet/
16502 F:      include/uapi/linux/phonet.h
16503 F:      net/phonet/
16504
16505 PHRAM MTD DRIVER
16506 M:      Joern Engel <joern@lazybastard.org>
16507 L:      linux-mtd@lists.infradead.org
16508 S:      Maintained
16509 F:      drivers/mtd/devices/phram.c
16510
16511 PICOLCD HID DRIVER
16512 M:      Bruno Prémont <bonbons@linux-vserver.org>
16513 L:      linux-input@vger.kernel.org
16514 S:      Maintained
16515 F:      drivers/hid/hid-picolcd*
16516
16517 PIDFD API
16518 M:      Christian Brauner <christian@brauner.io>
16519 L:      linux-kernel@vger.kernel.org
16520 S:      Maintained
16521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16522 F:      samples/pidfd/
16523 F:      tools/testing/selftests/clone3/
16524 F:      tools/testing/selftests/pid_namespace/
16525 F:      tools/testing/selftests/pidfd/
16526 K:      (?i)pidfd
16527 K:      (?i)clone3
16528 K:      \b(clone_args|kernel_clone_args)\b
16529
16530 PIN CONTROL SUBSYSTEM
16531 M:      Linus Walleij <linus.walleij@linaro.org>
16532 L:      linux-gpio@vger.kernel.org
16533 S:      Maintained
16534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16535 F:      Documentation/devicetree/bindings/pinctrl/
16536 F:      Documentation/driver-api/pin-control.rst
16537 F:      drivers/pinctrl/
16538 F:      include/dt-bindings/pinctrl/
16539 F:      include/linux/pinctrl/
16540
16541 PIN CONTROLLER - AMD
16542 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16543 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16544 S:      Maintained
16545 F:      drivers/pinctrl/pinctrl-amd.c
16546
16547 PIN CONTROLLER - FREESCALE
16548 M:      Dong Aisheng <aisheng.dong@nxp.com>
16549 M:      Fabio Estevam <festevam@gmail.com>
16550 M:      Shawn Guo <shawnguo@kernel.org>
16551 M:      Jacky Bai <ping.bai@nxp.com>
16552 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16553 L:      linux-gpio@vger.kernel.org
16554 S:      Maintained
16555 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16556 F:      drivers/pinctrl/freescale/
16557
16558 PIN CONTROLLER - INTEL
16559 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16560 M:      Andy Shevchenko <andy@kernel.org>
16561 S:      Supported
16562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16563 F:      drivers/pinctrl/intel/
16564
16565 PIN CONTROLLER - KEEMBAY
16566 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16567 S:      Supported
16568 F:      drivers/pinctrl/pinctrl-keembay*
16569
16570 PIN CONTROLLER - MEDIATEK
16571 M:      Sean Wang <sean.wang@kernel.org>
16572 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16573 S:      Maintained
16574 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16575 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16576 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16577 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16578 F:      drivers/pinctrl/mediatek/
16579
16580 PIN CONTROLLER - MICROCHIP AT91
16581 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16583 L:      linux-gpio@vger.kernel.org
16584 S:      Supported
16585 F:      drivers/gpio/gpio-sama5d2-piobu.c
16586 F:      drivers/pinctrl/pinctrl-at91*
16587
16588 PIN CONTROLLER - QUALCOMM
16589 M:      Bjorn Andersson <andersson@kernel.org>
16590 L:      linux-arm-msm@vger.kernel.org
16591 S:      Maintained
16592 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16593 F:      drivers/pinctrl/qcom/
16594
16595 PIN CONTROLLER - RENESAS
16596 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16597 L:      linux-renesas-soc@vger.kernel.org
16598 S:      Supported
16599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16600 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16601 F:      drivers/pinctrl/renesas/
16602
16603 PIN CONTROLLER - SAMSUNG
16604 M:      Tomasz Figa <tomasz.figa@gmail.com>
16605 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16606 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16607 R:      Alim Akhtar <alim.akhtar@samsung.com>
16608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16609 L:      linux-samsung-soc@vger.kernel.org
16610 S:      Maintained
16611 C:      irc://irc.libera.chat/linux-exynos
16612 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16613 B:      mailto:linux-samsung-soc@vger.kernel.org
16614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16615 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16616 F:      drivers/pinctrl/samsung/
16617 F:      include/dt-bindings/pinctrl/samsung.h
16618
16619 PIN CONTROLLER - SINGLE
16620 M:      Tony Lindgren <tony@atomide.com>
16621 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16623 L:      linux-omap@vger.kernel.org
16624 S:      Maintained
16625 F:      drivers/pinctrl/pinctrl-single.c
16626
16627 PIN CONTROLLER - THUNDERBAY
16628 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16629 S:      Supported
16630 F:      drivers/pinctrl/pinctrl-thunderbay.c
16631
16632 PIN CONTROLLER - SUNPLUS / TIBBO
16633 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16634 M:      Wells Lu <wellslutw@gmail.com>
16635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16636 S:      Maintained
16637 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16638 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16639 F:      drivers/pinctrl/sunplus/
16640 F:      include/dt-bindings/pinctrl/sppctl*.h
16641
16642 PINE64 PINEPHONE KEYBOARD DRIVER
16643 M:      Samuel Holland <samuel@sholland.org>
16644 S:      Supported
16645 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16646 F:      drivers/input/keyboard/pinephone-keyboard.c
16647
16648 PKTCDVD DRIVER
16649 M:      linux-block@vger.kernel.org
16650 S:      Orphan
16651 F:      drivers/block/pktcdvd.c
16652 F:      include/linux/pktcdvd.h
16653 F:      include/uapi/linux/pktcdvd.h
16654
16655 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16656 M:      Tomasz Duszynski <tduszyns@gmail.com>
16657 S:      Maintained
16658 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16659 F:      drivers/iio/chemical/pms7003.c
16660
16661 PLDMFW LIBRARY
16662 M:      Jacob Keller <jacob.e.keller@intel.com>
16663 S:      Maintained
16664 F:      Documentation/driver-api/pldmfw/
16665 F:      include/linux/pldmfw.h
16666 F:      lib/pldmfw/
16667
16668 PLX DMA DRIVER
16669 M:      Logan Gunthorpe <logang@deltatee.com>
16670 S:      Maintained
16671 F:      drivers/dma/plx_dma.c
16672
16673 PM6764TR DRIVER
16674 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16675 L:      linux-hwmon@vger.kernel.org
16676 S:      Maintained
16677 F:      Documentation/hwmon/pm6764tr.rst
16678 F:      drivers/hwmon/pmbus/pm6764tr.c
16679
16680 PM-GRAPH UTILITY
16681 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16682 L:      linux-pm@vger.kernel.org
16683 S:      Supported
16684 W:      https://01.org/pm-graph
16685 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16686 T:      git git://github.com/intel/pm-graph
16687 F:      tools/power/pm-graph
16688
16689 PMBUS HARDWARE MONITORING DRIVERS
16690 M:      Guenter Roeck <linux@roeck-us.net>
16691 L:      linux-hwmon@vger.kernel.org
16692 S:      Maintained
16693 W:      http://hwmon.wiki.kernel.org/
16694 W:      http://www.roeck-us.net/linux/drivers/
16695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16696 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16697 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16698 F:      Documentation/hwmon/adm1275.rst
16699 F:      Documentation/hwmon/ibm-cffps.rst
16700 F:      Documentation/hwmon/ir35221.rst
16701 F:      Documentation/hwmon/lm25066.rst
16702 F:      Documentation/hwmon/ltc2978.rst
16703 F:      Documentation/hwmon/ltc3815.rst
16704 F:      Documentation/hwmon/max16064.rst
16705 F:      Documentation/hwmon/max20751.rst
16706 F:      Documentation/hwmon/max31785.rst
16707 F:      Documentation/hwmon/max34440.rst
16708 F:      Documentation/hwmon/max8688.rst
16709 F:      Documentation/hwmon/pmbus-core.rst
16710 F:      Documentation/hwmon/pmbus.rst
16711 F:      Documentation/hwmon/tps40422.rst
16712 F:      Documentation/hwmon/ucd9000.rst
16713 F:      Documentation/hwmon/ucd9200.rst
16714 F:      Documentation/hwmon/zl6100.rst
16715 F:      drivers/hwmon/pmbus/
16716 F:      include/linux/pmbus.h
16717
16718 PMC SIERRA MaxRAID DRIVER
16719 L:      linux-scsi@vger.kernel.org
16720 S:      Orphan
16721 W:      http://www.pmc-sierra.com/
16722 F:      drivers/scsi/pmcraid.*
16723
16724 PMC SIERRA PM8001 DRIVER
16725 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16726 L:      linux-scsi@vger.kernel.org
16727 S:      Supported
16728 F:      drivers/scsi/pm8001/
16729
16730 PNI RM3100 IIO DRIVER
16731 M:      Song Qiang <songqiang1304521@gmail.com>
16732 L:      linux-iio@vger.kernel.org
16733 S:      Maintained
16734 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16735 F:      drivers/iio/magnetometer/rm3100*
16736
16737 PNP SUPPORT
16738 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16739 L:      linux-acpi@vger.kernel.org
16740 S:      Maintained
16741 F:      drivers/pnp/
16742 F:      include/linux/pnp.h
16743
16744 POSIX CLOCKS and TIMERS
16745 M:      Thomas Gleixner <tglx@linutronix.de>
16746 L:      linux-kernel@vger.kernel.org
16747 S:      Maintained
16748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16749 F:      fs/timerfd.c
16750 F:      include/linux/time_namespace.h
16751 F:      include/linux/timer*
16752 F:      kernel/time/*timer*
16753 F:      kernel/time/namespace.c
16754
16755 POWER MANAGEMENT CORE
16756 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16757 L:      linux-pm@vger.kernel.org
16758 S:      Supported
16759 B:      https://bugzilla.kernel.org
16760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16761 F:      drivers/base/power/
16762 F:      drivers/powercap/
16763 F:      include/linux/intel_rapl.h
16764 F:      include/linux/pm.h
16765 F:      include/linux/pm_*
16766 F:      include/linux/powercap.h
16767 F:      kernel/configs/nopm.config
16768
16769 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16770 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16771 L:      linux-pm@vger.kernel.org
16772 S:      Supported
16773 B:      https://bugzilla.kernel.org
16774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16775 F:      drivers/powercap/dtpm*
16776 F:      include/linux/dtpm.h
16777
16778 POWER STATE COORDINATION INTERFACE (PSCI)
16779 M:      Mark Rutland <mark.rutland@arm.com>
16780 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16782 S:      Maintained
16783 F:      drivers/firmware/psci/
16784 F:      include/linux/psci.h
16785 F:      include/uapi/linux/psci.h
16786
16787 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16788 M:      Sebastian Reichel <sre@kernel.org>
16789 L:      linux-pm@vger.kernel.org
16790 S:      Maintained
16791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16792 F:      Documentation/ABI/testing/sysfs-class-power
16793 F:      Documentation/devicetree/bindings/power/supply/
16794 F:      drivers/power/supply/
16795 F:      include/linux/power/
16796 F:      include/linux/power_supply.h
16797
16798 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16799 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16800 L:      linuxppc-dev@lists.ozlabs.org
16801 S:      Maintained
16802 F:      drivers/char/powernv-op-panel.c
16803
16804 PPP OVER ATM (RFC 2364)
16805 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16806 S:      Maintained
16807 F:      include/uapi/linux/atmppp.h
16808 F:      net/atm/pppoatm.c
16809
16810 PPP OVER ETHERNET
16811 M:      Michal Ostrowski <mostrows@earthlink.net>
16812 S:      Maintained
16813 F:      drivers/net/ppp/pppoe.c
16814 F:      drivers/net/ppp/pppox.c
16815
16816 PPP OVER L2TP
16817 M:      James Chapman <jchapman@katalix.com>
16818 S:      Maintained
16819 F:      include/linux/if_pppol2tp.h
16820 F:      include/uapi/linux/if_pppol2tp.h
16821 F:      net/l2tp/l2tp_ppp.c
16822
16823 PPP PROTOCOL DRIVERS AND COMPRESSORS
16824 M:      Paul Mackerras <paulus@samba.org>
16825 L:      linux-ppp@vger.kernel.org
16826 S:      Maintained
16827 F:      drivers/net/ppp/ppp_*
16828
16829 PPS SUPPORT
16830 M:      Rodolfo Giometti <giometti@enneenne.com>
16831 L:      linuxpps@ml.enneenne.com (subscribers-only)
16832 S:      Maintained
16833 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16834 F:      Documentation/ABI/testing/sysfs-pps
16835 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16836 F:      Documentation/driver-api/pps.rst
16837 F:      drivers/pps/
16838 F:      include/linux/pps*.h
16839 F:      include/uapi/linux/pps.h
16840
16841 PPTP DRIVER
16842 M:      Dmitry Kozlov <xeb@mail.ru>
16843 L:      netdev@vger.kernel.org
16844 S:      Maintained
16845 W:      http://sourceforge.net/projects/accel-pptp
16846 F:      drivers/net/ppp/pptp.c
16847
16848 PRESSURE STALL INFORMATION (PSI)
16849 M:      Johannes Weiner <hannes@cmpxchg.org>
16850 M:      Suren Baghdasaryan <surenb@google.com>
16851 S:      Maintained
16852 F:      include/linux/psi*
16853 F:      kernel/sched/psi.c
16854
16855 PRINTK
16856 M:      Petr Mladek <pmladek@suse.com>
16857 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16858 R:      Steven Rostedt <rostedt@goodmis.org>
16859 R:      John Ogness <john.ogness@linutronix.de>
16860 S:      Maintained
16861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16862 F:      include/linux/printk.h
16863 F:      kernel/printk/
16864
16865 PRINTK INDEXING
16866 R:      Chris Down <chris@chrisdown.name>
16867 S:      Maintained
16868 F:      Documentation/core-api/printk-index.rst
16869 F:      kernel/printk/index.c
16870 K:      printk_index
16871
16872 PROC FILESYSTEM
16873 L:      linux-kernel@vger.kernel.org
16874 L:      linux-fsdevel@vger.kernel.org
16875 S:      Maintained
16876 F:      Documentation/filesystems/proc.rst
16877 F:      fs/proc/
16878 F:      include/linux/proc_fs.h
16879 F:      tools/testing/selftests/proc/
16880
16881 PROC SYSCTL
16882 M:      Luis Chamberlain <mcgrof@kernel.org>
16883 M:      Kees Cook <keescook@chromium.org>
16884 M:      Iurii Zaikin <yzaikin@google.com>
16885 L:      linux-kernel@vger.kernel.org
16886 L:      linux-fsdevel@vger.kernel.org
16887 S:      Maintained
16888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16889 F:      fs/proc/proc_sysctl.c
16890 F:      include/linux/sysctl.h
16891 F:      kernel/sysctl-test.c
16892 F:      kernel/sysctl.c
16893 F:      tools/testing/selftests/sysctl/
16894
16895 PS3 NETWORK SUPPORT
16896 M:      Geoff Levand <geoff@infradead.org>
16897 L:      netdev@vger.kernel.org
16898 L:      linuxppc-dev@lists.ozlabs.org
16899 S:      Maintained
16900 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16901
16902 PS3 PLATFORM SUPPORT
16903 M:      Geoff Levand <geoff@infradead.org>
16904 L:      linuxppc-dev@lists.ozlabs.org
16905 S:      Maintained
16906 F:      arch/powerpc/boot/ps3*
16907 F:      arch/powerpc/include/asm/lv1call.h
16908 F:      arch/powerpc/include/asm/ps3*.h
16909 F:      arch/powerpc/platforms/ps3/
16910 F:      drivers/*/ps3*
16911 F:      drivers/ps3/
16912 F:      drivers/rtc/rtc-ps3.c
16913 F:      drivers/usb/host/*ps3.c
16914 F:      sound/ppc/snd_ps3*
16915
16916 PS3VRAM DRIVER
16917 M:      Jim Paris <jim@jtan.com>
16918 M:      Geoff Levand <geoff@infradead.org>
16919 L:      linuxppc-dev@lists.ozlabs.org
16920 S:      Maintained
16921 F:      drivers/block/ps3vram.c
16922
16923 PSAMPLE PACKET SAMPLING SUPPORT
16924 M:      Yotam Gigi <yotam.gi@gmail.com>
16925 S:      Maintained
16926 F:      include/net/psample.h
16927 F:      include/uapi/linux/psample.h
16928 F:      net/psample
16929
16930 PSTORE FILESYSTEM
16931 M:      Kees Cook <keescook@chromium.org>
16932 R:      Tony Luck <tony.luck@intel.com>
16933 R:      Guilherme G. Piccoli <gpiccoli@igalia.com>
16934 L:      linux-hardening@vger.kernel.org
16935 S:      Supported
16936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16937 F:      Documentation/admin-guide/ramoops.rst
16938 F:      Documentation/admin-guide/pstore-blk.rst
16939 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16940 F:      drivers/acpi/apei/erst.c
16941 F:      drivers/firmware/efi/efi-pstore.c
16942 F:      fs/pstore/
16943 F:      include/linux/pstore*
16944 K:      \b(pstore|ramoops)
16945
16946 PTP HARDWARE CLOCK SUPPORT
16947 M:      Richard Cochran <richardcochran@gmail.com>
16948 L:      netdev@vger.kernel.org
16949 S:      Maintained
16950 W:      http://linuxptp.sourceforge.net/
16951 F:      Documentation/ABI/testing/sysfs-ptp
16952 F:      Documentation/driver-api/ptp.rst
16953 F:      drivers/net/phy/dp83640*
16954 F:      drivers/ptp/*
16955 F:      include/linux/ptp_cl*
16956 K:      (?:\b|_)ptp(?:\b|_)
16957
16958 PTP VIRTUAL CLOCK SUPPORT
16959 M:      Yangbo Lu <yangbo.lu@nxp.com>
16960 L:      netdev@vger.kernel.org
16961 S:      Maintained
16962 F:      drivers/ptp/ptp_vclock.c
16963 F:      net/ethtool/phc_vclocks.c
16964
16965 PTRACE SUPPORT
16966 M:      Oleg Nesterov <oleg@redhat.com>
16967 S:      Maintained
16968 F:      arch/*/*/ptrace*.c
16969 F:      arch/*/include/asm/ptrace*.h
16970 F:      arch/*/ptrace*.c
16971 F:      include/asm-generic/syscall.h
16972 F:      include/linux/ptrace.h
16973 F:      include/linux/regset.h
16974 F:      include/uapi/linux/ptrace.h
16975 F:      kernel/ptrace.c
16976
16977 PULSE8-CEC DRIVER
16978 M:      Hans Verkuil <hverkuil@xs4all.nl>
16979 L:      linux-media@vger.kernel.org
16980 S:      Maintained
16981 T:      git git://linuxtv.org/media_tree.git
16982 F:      drivers/media/cec/usb/pulse8/
16983
16984 PURELIFI PLFXLC DRIVER
16985 M:      Srinivasan Raju <srini.raju@purelifi.com>
16986 L:      linux-wireless@vger.kernel.org
16987 S:      Supported
16988 F:      drivers/net/wireless/purelifi/plfxlc/
16989
16990 PVRUSB2 VIDEO4LINUX DRIVER
16991 M:      Mike Isely <isely@pobox.com>
16992 L:      pvrusb2@isely.net       (subscribers-only)
16993 L:      linux-media@vger.kernel.org
16994 S:      Maintained
16995 W:      http://www.isely.net/pvrusb2/
16996 T:      git git://linuxtv.org/media_tree.git
16997 F:      Documentation/driver-api/media/drivers/pvrusb2*
16998 F:      drivers/media/usb/pvrusb2/
16999
17000 PWC WEBCAM DRIVER
17001 M:      Hans Verkuil <hverkuil@xs4all.nl>
17002 L:      linux-media@vger.kernel.org
17003 S:      Odd Fixes
17004 T:      git git://linuxtv.org/media_tree.git
17005 F:      drivers/media/usb/pwc/*
17006 F:      include/trace/events/pwc.h
17007
17008 PWM IR Transmitter
17009 M:      Sean Young <sean@mess.org>
17010 L:      linux-media@vger.kernel.org
17011 S:      Maintained
17012 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
17013 F:      drivers/media/rc/pwm-ir-tx.c
17014
17015 PWM SUBSYSTEM
17016 M:      Thierry Reding <thierry.reding@gmail.com>
17017 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17018 L:      linux-pwm@vger.kernel.org
17019 S:      Maintained
17020 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
17021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
17022 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
17023 F:      Documentation/devicetree/bindings/pwm/
17024 F:      Documentation/driver-api/pwm.rst
17025 F:      drivers/gpio/gpio-mvebu.c
17026 F:      drivers/pwm/
17027 F:      drivers/video/backlight/pwm_bl.c
17028 F:      include/dt-bindings/pwm/
17029 F:      include/linux/pwm.h
17030 F:      include/linux/pwm_backlight.h
17031 K:      pwm_(config|apply_state|ops)
17032
17033 PXA GPIO DRIVER
17034 M:      Robert Jarzmik <robert.jarzmik@free.fr>
17035 L:      linux-gpio@vger.kernel.org
17036 S:      Maintained
17037 F:      drivers/gpio/gpio-pxa.c
17038
17039 PXA MMCI DRIVER
17040 S:      Orphan
17041
17042 PXA RTC DRIVER
17043 M:      Robert Jarzmik <robert.jarzmik@free.fr>
17044 L:      linux-rtc@vger.kernel.org
17045 S:      Maintained
17046
17047 PXA2xx/PXA3xx SUPPORT
17048 M:      Daniel Mack <daniel@zonque.org>
17049 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
17050 M:      Robert Jarzmik <robert.jarzmik@free.fr>
17051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17052 S:      Maintained
17053 T:      git git://github.com/hzhuang1/linux.git
17054 T:      git git://github.com/rjarzmik/linux.git
17055 F:      arch/arm/boot/dts/pxa*
17056 F:      arch/arm/mach-pxa/
17057 F:      drivers/dma/pxa*
17058 F:      drivers/pcmcia/pxa2xx*
17059 F:      drivers/pinctrl/pxa/
17060 F:      drivers/spi/spi-pxa2xx*
17061 F:      drivers/usb/gadget/udc/pxa2*
17062 F:      include/sound/pxa2xx-lib.h
17063 F:      sound/arm/pxa*
17064 F:      sound/soc/pxa/
17065
17066 QAT DRIVER
17067 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
17068 L:      qat-linux@intel.com
17069 S:      Supported
17070 F:      drivers/crypto/qat/
17071
17072 QCOM AUDIO (ASoC) DRIVERS
17073 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17074 M:      Banajit Goswami <bgoswami@quicinc.com>
17075 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17076 S:      Supported
17077 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
17078 F:      Documentation/devicetree/bindings/sound/qcom,*
17079 F:      drivers/soc/qcom/apr.c
17080 F:      include/dt-bindings/sound/qcom,wcd9335.h
17081 F:      sound/soc/codecs/lpass-rx-macro.*
17082 F:      sound/soc/codecs/lpass-tx-macro.*
17083 F:      sound/soc/codecs/lpass-va-macro.c
17084 F:      sound/soc/codecs/lpass-wsa-macro.*
17085 F:      sound/soc/codecs/msm8916-wcd-analog.c
17086 F:      sound/soc/codecs/msm8916-wcd-digital.c
17087 F:      sound/soc/codecs/wcd9335.*
17088 F:      sound/soc/codecs/wcd934x.c
17089 F:      sound/soc/codecs/wcd-clsh-v2.*
17090 F:      sound/soc/codecs/wcd-mbhc-v2.*
17091 F:      sound/soc/codecs/wsa881x.c
17092 F:      sound/soc/codecs/wsa883x.c
17093 F:      sound/soc/qcom/
17094
17095 QCOM EMBEDDED USB DEBUGGER (EUD)
17096 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
17097 L:      linux-arm-msm@vger.kernel.org
17098 S:      Maintained
17099 F:      Documentation/ABI/testing/sysfs-driver-eud
17100 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
17101 F:      drivers/usb/misc/qcom_eud.c
17102
17103 QCOM IPA DRIVER
17104 M:      Alex Elder <elder@kernel.org>
17105 L:      netdev@vger.kernel.org
17106 S:      Supported
17107 F:      drivers/net/ipa/
17108
17109 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
17110 M:      Gabriel Somlo <somlo@cmu.edu>
17111 M:      "Michael S. Tsirkin" <mst@redhat.com>
17112 L:      qemu-devel@nongnu.org
17113 S:      Maintained
17114 F:      drivers/firmware/qemu_fw_cfg.c
17115 F:      include/uapi/linux/qemu_fw_cfg.h
17116
17117 QIB DRIVER
17118 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17119 L:      linux-rdma@vger.kernel.org
17120 S:      Supported
17121 F:      drivers/infiniband/hw/qib/
17122
17123 QLOGIC QL41xxx FCOE DRIVER
17124 M:      Saurav Kashyap <skashyap@marvell.com>
17125 M:      Javed Hasan <jhasan@marvell.com>
17126 M:      GR-QLogic-Storage-Upstream@marvell.com
17127 L:      linux-scsi@vger.kernel.org
17128 S:      Supported
17129 F:      drivers/scsi/qedf/
17130
17131 QLOGIC QL41xxx ISCSI DRIVER
17132 M:      Nilesh Javali <njavali@marvell.com>
17133 M:      Manish Rangankar <mrangankar@marvell.com>
17134 M:      GR-QLogic-Storage-Upstream@marvell.com
17135 L:      linux-scsi@vger.kernel.org
17136 S:      Supported
17137 F:      drivers/scsi/qedi/
17138
17139 QLOGIC QL4xxx ETHERNET DRIVER
17140 M:      Ariel Elior <aelior@marvell.com>
17141 M:      Manish Chopra <manishc@marvell.com>
17142 L:      netdev@vger.kernel.org
17143 S:      Supported
17144 F:      drivers/net/ethernet/qlogic/qed/
17145 F:      drivers/net/ethernet/qlogic/qede/
17146 F:      include/linux/qed/
17147
17148 QLOGIC QL4xxx RDMA DRIVER
17149 M:      Michal Kalderon <mkalderon@marvell.com>
17150 M:      Ariel Elior <aelior@marvell.com>
17151 L:      linux-rdma@vger.kernel.org
17152 S:      Supported
17153 F:      drivers/infiniband/hw/qedr/
17154 F:      include/uapi/rdma/qedr-abi.h
17155
17156 QLOGIC QLA1280 SCSI DRIVER
17157 M:      Michael Reed <mdr@sgi.com>
17158 L:      linux-scsi@vger.kernel.org
17159 S:      Maintained
17160 F:      drivers/scsi/qla1280.[ch]
17161
17162 QLOGIC QLA2XXX FC-SCSI DRIVER
17163 M:      Nilesh Javali <njavali@marvell.com>
17164 M:      GR-QLogic-Storage-Upstream@marvell.com
17165 L:      linux-scsi@vger.kernel.org
17166 S:      Supported
17167 F:      drivers/scsi/qla2xxx/
17168
17169 QLOGIC QLA3XXX NETWORK DRIVER
17170 M:      GR-Linux-NIC-Dev@marvell.com
17171 L:      netdev@vger.kernel.org
17172 S:      Supported
17173 F:      drivers/net/ethernet/qlogic/qla3xxx.*
17174
17175 QLOGIC QLA4XXX iSCSI DRIVER
17176 M:      Nilesh Javali <njavali@marvell.com>
17177 M:      Manish Rangankar <mrangankar@marvell.com>
17178 M:      GR-QLogic-Storage-Upstream@marvell.com
17179 L:      linux-scsi@vger.kernel.org
17180 S:      Supported
17181 F:      drivers/scsi/qla4xxx/
17182
17183 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17184 M:      Shahed Shaikh <shshaikh@marvell.com>
17185 M:      Manish Chopra <manishc@marvell.com>
17186 M:      GR-Linux-NIC-Dev@marvell.com
17187 L:      netdev@vger.kernel.org
17188 S:      Supported
17189 F:      drivers/net/ethernet/qlogic/qlcnic/
17190
17191 QLOGIC QLGE 10Gb ETHERNET DRIVER
17192 M:      Manish Chopra <manishc@marvell.com>
17193 M:      GR-Linux-NIC-Dev@marvell.com
17194 M:      Coiby Xu <coiby.xu@gmail.com>
17195 L:      netdev@vger.kernel.org
17196 S:      Supported
17197 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17198 F:      drivers/staging/qlge/
17199
17200 QM1D1B0004 MEDIA DRIVER
17201 M:      Akihiro Tsukada <tskd08@gmail.com>
17202 L:      linux-media@vger.kernel.org
17203 S:      Odd Fixes
17204 F:      drivers/media/tuners/qm1d1b0004*
17205
17206 QM1D1C0042 MEDIA DRIVER
17207 M:      Akihiro Tsukada <tskd08@gmail.com>
17208 L:      linux-media@vger.kernel.org
17209 S:      Odd Fixes
17210 F:      drivers/media/tuners/qm1d1c0042*
17211
17212 QNX4 FILESYSTEM
17213 M:      Anders Larsen <al@alarsen.net>
17214 S:      Maintained
17215 W:      http://www.alarsen.net/linux/qnx4fs/
17216 F:      fs/qnx4/
17217 F:      include/uapi/linux/qnx4_fs.h
17218 F:      include/uapi/linux/qnxtypes.h
17219
17220 QORIQ DPAA2 FSL-MC BUS DRIVER
17221 M:      Stuart Yoder <stuyoder@gmail.com>
17222 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
17223 L:      linux-kernel@vger.kernel.org
17224 S:      Maintained
17225 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17226 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17227 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17228 F:      drivers/bus/fsl-mc/
17229 F:      include/uapi/linux/fsl_mc.h
17230
17231 QT1010 MEDIA DRIVER
17232 M:      Antti Palosaari <crope@iki.fi>
17233 L:      linux-media@vger.kernel.org
17234 S:      Maintained
17235 W:      https://linuxtv.org
17236 W:      http://palosaari.fi/linux/
17237 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17238 T:      git git://linuxtv.org/anttip/media_tree.git
17239 F:      drivers/media/tuners/qt1010*
17240
17241 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17242 M:      Kalle Valo <kvalo@kernel.org>
17243 L:      ath10k@lists.infradead.org
17244 S:      Supported
17245 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17247 F:      drivers/net/wireless/ath/ath10k/
17248 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
17249
17250 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17251 M:      Kalle Valo <kvalo@kernel.org>
17252 L:      ath11k@lists.infradead.org
17253 S:      Supported
17254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17255 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17256 F:      drivers/net/wireless/ath/ath11k/
17257
17258 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17259 M:      Toke Høiland-Jørgensen <toke@toke.dk>
17260 L:      linux-wireless@vger.kernel.org
17261 S:      Maintained
17262 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17263 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17264 F:      drivers/net/wireless/ath/ath9k/
17265
17266 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17267 M:      Stephan Gerhold <stephan@gerhold.net>
17268 L:      netdev@vger.kernel.org
17269 L:      linux-arm-msm@vger.kernel.org
17270 S:      Maintained
17271 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17272 F:      drivers/net/wwan/qcom_bam_dmux.c
17273
17274 QUALCOMM CAMERA SUBSYSTEM DRIVER
17275 M:      Robert Foss <rfoss@kernel.org>
17276 M:      Todor Tomov <todor.too@gmail.com>
17277 L:      linux-media@vger.kernel.org
17278 S:      Maintained
17279 F:      Documentation/admin-guide/media/qcom_camss.rst
17280 F:      Documentation/devicetree/bindings/media/*camss*
17281 F:      drivers/media/platform/qcom/camss/
17282
17283 QUALCOMM CLOCK DRIVERS
17284 M:      Bjorn Andersson <andersson@kernel.org>
17285 L:      linux-arm-msm@vger.kernel.org
17286 S:      Supported
17287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17288 F:      Documentation/devicetree/bindings/clock/qcom,*
17289 F:      drivers/clk/qcom/
17290 F:      include/dt-bindings/clock/qcom,*
17291
17292 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17293 M:      Niklas Cassel <nks@flawful.org>
17294 L:      linux-pm@vger.kernel.org
17295 L:      linux-arm-msm@vger.kernel.org
17296 S:      Maintained
17297 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17298 F:      drivers/soc/qcom/cpr.c
17299
17300 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17301 M:      Ilia Lin <ilia.lin@kernel.org>
17302 L:      linux-pm@vger.kernel.org
17303 S:      Maintained
17304 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17305 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17306 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17307
17308 QUALCOMM CRYPTO DRIVERS
17309 M:      Thara Gopinath <thara.gopinath@gmail.com>
17310 L:      linux-crypto@vger.kernel.org
17311 L:      linux-arm-msm@vger.kernel.org
17312 S:      Maintained
17313 F:      drivers/crypto/qce/
17314
17315 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17316 M:      Timur Tabi <timur@kernel.org>
17317 L:      netdev@vger.kernel.org
17318 S:      Maintained
17319 F:      drivers/net/ethernet/qualcomm/emac/
17320
17321 QUALCOMM ETHQOS ETHERNET DRIVER
17322 M:      Vinod Koul <vkoul@kernel.org>
17323 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
17324 L:      netdev@vger.kernel.org
17325 S:      Maintained
17326 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
17327 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17328
17329 QUALCOMM FASTRPC DRIVER
17330 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17331 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
17332 L:      linux-arm-msm@vger.kernel.org
17333 S:      Maintained
17334 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17335 F:      drivers/misc/fastrpc.c
17336 F:      include/uapi/misc/fastrpc.h
17337
17338 QUALCOMM HEXAGON ARCHITECTURE
17339 M:      Brian Cain <bcain@quicinc.com>
17340 L:      linux-hexagon@vger.kernel.org
17341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17342 S:      Supported
17343 F:      arch/hexagon/
17344
17345 QUALCOMM HIDMA DRIVER
17346 M:      Sinan Kaya <okaya@kernel.org>
17347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17348 L:      linux-arm-msm@vger.kernel.org
17349 L:      dmaengine@vger.kernel.org
17350 S:      Supported
17351 F:      drivers/dma/qcom/hidma*
17352
17353 QUALCOMM I2C CCI DRIVER
17354 M:      Loic Poulain <loic.poulain@linaro.org>
17355 M:      Robert Foss <rfoss@kernel.org>
17356 L:      linux-i2c@vger.kernel.org
17357 L:      linux-arm-msm@vger.kernel.org
17358 S:      Maintained
17359 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17360 F:      drivers/i2c/busses/i2c-qcom-cci.c
17361
17362 QUALCOMM INTERCONNECT BWMON DRIVER
17363 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17364 L:      linux-arm-msm@vger.kernel.org
17365 S:      Maintained
17366 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17367 F:      drivers/soc/qcom/icc-bwmon.c
17368
17369 QUALCOMM IOMMU
17370 M:      Rob Clark <robdclark@gmail.com>
17371 L:      iommu@lists.linux.dev
17372 L:      linux-arm-msm@vger.kernel.org
17373 S:      Maintained
17374 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17375
17376 QUALCOMM IPC ROUTER (QRTR) DRIVER
17377 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17378 L:      linux-arm-msm@vger.kernel.org
17379 S:      Maintained
17380 F:      include/trace/events/qrtr.h
17381 F:      include/uapi/linux/qrtr.h
17382 F:      net/qrtr/
17383
17384 QUALCOMM IPCC MAILBOX DRIVER
17385 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17386 L:      linux-arm-msm@vger.kernel.org
17387 S:      Supported
17388 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17389 F:      drivers/mailbox/qcom-ipcc.c
17390 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17391
17392 QUALCOMM IPQ4019 USB PHY DRIVER
17393 M:      Robert Marko <robert.marko@sartura.hr>
17394 M:      Luka Perkov <luka.perkov@sartura.hr>
17395 L:      linux-arm-msm@vger.kernel.org
17396 S:      Maintained
17397 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17398 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17399
17400 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17401 M:      Robert Marko <robert.marko@sartura.hr>
17402 M:      Luka Perkov <luka.perkov@sartura.hr>
17403 L:      linux-arm-msm@vger.kernel.org
17404 S:      Maintained
17405 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17406 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17407
17408 QUALCOMM NAND CONTROLLER DRIVER
17409 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17410 L:      linux-mtd@lists.infradead.org
17411 L:      linux-arm-msm@vger.kernel.org
17412 S:      Maintained
17413 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17414 F:      drivers/mtd/nand/raw/qcom_nandc.c
17415
17416 QUALCOMM RMNET DRIVER
17417 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17418 M:      Sean Tranchetti <quic_stranche@quicinc.com>
17419 L:      netdev@vger.kernel.org
17420 S:      Maintained
17421 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17422 F:      drivers/net/ethernet/qualcomm/rmnet/
17423 F:      include/linux/if_rmnet.h
17424
17425 QUALCOMM TSENS THERMAL DRIVER
17426 M:      Amit Kucheria <amitk@kernel.org>
17427 M:      Thara Gopinath <thara.gopinath@gmail.com>
17428 L:      linux-pm@vger.kernel.org
17429 L:      linux-arm-msm@vger.kernel.org
17430 S:      Maintained
17431 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17432 F:      drivers/thermal/qcom/
17433
17434 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17435 M:      Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17436 M:      Vikash Garodia <quic_vgarodia@quicinc.com>
17437 L:      linux-media@vger.kernel.org
17438 L:      linux-arm-msm@vger.kernel.org
17439 S:      Maintained
17440 T:      git git://linuxtv.org/media_tree.git
17441 F:      Documentation/devicetree/bindings/media/*venus*
17442 F:      drivers/media/platform/qcom/venus/
17443
17444 QUALCOMM WCN36XX WIRELESS DRIVER
17445 M:      Loic Poulain <loic.poulain@linaro.org>
17446 L:      wcn36xx@lists.infradead.org
17447 S:      Supported
17448 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17449 F:      drivers/net/wireless/ath/wcn36xx/
17450
17451 QUANTENNA QTNFMAC WIRELESS DRIVER
17452 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17453 R:      Sergey Matyukevich <geomatsi@gmail.com>
17454 L:      linux-wireless@vger.kernel.org
17455 S:      Maintained
17456 F:      drivers/net/wireless/quantenna
17457
17458 RADEON and AMDGPU DRM DRIVERS
17459 M:      Alex Deucher <alexander.deucher@amd.com>
17460 M:      Christian König <christian.koenig@amd.com>
17461 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17462 L:      amd-gfx@lists.freedesktop.org
17463 S:      Supported
17464 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17465 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17466 C:      irc://irc.oftc.net/radeon
17467 F:      Documentation/gpu/amdgpu/
17468 F:      drivers/gpu/drm/amd/
17469 F:      drivers/gpu/drm/radeon/
17470 F:      include/uapi/drm/amdgpu_drm.h
17471 F:      include/uapi/drm/radeon_drm.h
17472
17473 RADEON FRAMEBUFFER DISPLAY DRIVER
17474 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17475 L:      linux-fbdev@vger.kernel.org
17476 S:      Maintained
17477 F:      drivers/video/fbdev/aty/radeon*
17478 F:      include/uapi/linux/radeonfb.h
17479
17480 RADIOSHARK RADIO DRIVER
17481 M:      Hans Verkuil <hverkuil@xs4all.nl>
17482 L:      linux-media@vger.kernel.org
17483 S:      Maintained
17484 T:      git git://linuxtv.org/media_tree.git
17485 F:      drivers/media/radio/radio-shark.c
17486
17487 RADIOSHARK2 RADIO DRIVER
17488 M:      Hans Verkuil <hverkuil@xs4all.nl>
17489 L:      linux-media@vger.kernel.org
17490 S:      Maintained
17491 T:      git git://linuxtv.org/media_tree.git
17492 F:      drivers/media/radio/radio-shark2.c
17493 F:      drivers/media/radio/radio-tea5777.c
17494
17495 RADOS BLOCK DEVICE (RBD)
17496 M:      Ilya Dryomov <idryomov@gmail.com>
17497 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17498 L:      ceph-devel@vger.kernel.org
17499 S:      Supported
17500 W:      http://ceph.com/
17501 T:      git https://github.com/ceph/ceph-client.git
17502 F:      Documentation/ABI/testing/sysfs-bus-rbd
17503 F:      drivers/block/rbd.c
17504 F:      drivers/block/rbd_types.h
17505
17506 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17507 M:      Paul Mackerras <paulus@samba.org>
17508 L:      linux-fbdev@vger.kernel.org
17509 S:      Maintained
17510 F:      drivers/video/fbdev/aty/aty128fb.c
17511
17512 RAINSHADOW-CEC DRIVER
17513 M:      Hans Verkuil <hverkuil@xs4all.nl>
17514 L:      linux-media@vger.kernel.org
17515 S:      Maintained
17516 T:      git git://linuxtv.org/media_tree.git
17517 F:      drivers/media/cec/usb/rainshadow/
17518
17519 RALINK MIPS ARCHITECTURE
17520 M:      John Crispin <john@phrozen.org>
17521 L:      linux-mips@vger.kernel.org
17522 S:      Maintained
17523 F:      arch/mips/ralink
17524
17525 RALINK MT7621 MIPS ARCHITECTURE
17526 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17527 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17528 L:      linux-mips@vger.kernel.org
17529 S:      Maintained
17530 F:      arch/mips/boot/dts/ralink/mt7621*
17531
17532 RALINK PINCTRL DRIVER
17533 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17534 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17535 L:      linux-mips@vger.kernel.org
17536 S:      Maintained
17537 F:      drivers/pinctrl/ralink/
17538
17539 RALINK RT2X00 WIRELESS LAN DRIVER
17540 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17541 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17542 L:      linux-wireless@vger.kernel.org
17543 S:      Maintained
17544 F:      drivers/net/wireless/ralink/rt2x00/
17545
17546 RAMDISK RAM BLOCK DEVICE DRIVER
17547 M:      Jens Axboe <axboe@kernel.dk>
17548 S:      Maintained
17549 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17550 F:      drivers/block/brd.c
17551
17552 RANCHU VIRTUAL BOARD FOR MIPS
17553 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17554 L:      linux-mips@vger.kernel.org
17555 S:      Supported
17556 F:      arch/mips/configs/generic/board-ranchu.config
17557 F:      arch/mips/generic/board-ranchu.c
17558
17559 RANDOM NUMBER DRIVER
17560 M:      "Theodore Ts'o" <tytso@mit.edu>
17561 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17562 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17563 S:      Maintained
17564 F:      drivers/char/random.c
17565 F:      drivers/virt/vmgenid.c
17566
17567 RAPIDIO SUBSYSTEM
17568 M:      Matt Porter <mporter@kernel.crashing.org>
17569 M:      Alexandre Bounine <alex.bou9@gmail.com>
17570 S:      Maintained
17571 F:      drivers/rapidio/
17572
17573 RAS INFRASTRUCTURE
17574 M:      Tony Luck <tony.luck@intel.com>
17575 M:      Borislav Petkov <bp@alien8.de>
17576 L:      linux-edac@vger.kernel.org
17577 S:      Maintained
17578 F:      Documentation/admin-guide/ras.rst
17579 F:      drivers/ras/
17580 F:      include/linux/ras.h
17581 F:      include/ras/ras_event.h
17582
17583 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17584 L:      linux-wireless@vger.kernel.org
17585 S:      Orphan
17586 F:      drivers/net/wireless/ray*
17587
17588 RC-CORE / LIRC FRAMEWORK
17589 M:      Sean Young <sean@mess.org>
17590 L:      linux-media@vger.kernel.org
17591 S:      Maintained
17592 W:      http://linuxtv.org
17593 T:      git git://linuxtv.org/media_tree.git
17594 F:      Documentation/driver-api/media/rc-core.rst
17595 F:      Documentation/userspace-api/media/rc/
17596 F:      drivers/media/rc/
17597 F:      include/media/rc-map.h
17598 F:      include/media/rc-core.h
17599 F:      include/uapi/linux/lirc.h
17600
17601 RCMM REMOTE CONTROLS DECODER
17602 M:      Patrick Lerda <patrick9876@free.fr>
17603 S:      Maintained
17604 F:      drivers/media/rc/ir-rcmm-decoder.c
17605
17606 RCUTORTURE TEST FRAMEWORK
17607 M:      "Paul E. McKenney" <paulmck@kernel.org>
17608 M:      Josh Triplett <josh@joshtriplett.org>
17609 R:      Steven Rostedt <rostedt@goodmis.org>
17610 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17611 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17612 L:      rcu@vger.kernel.org
17613 S:      Supported
17614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17615 F:      tools/testing/selftests/rcutorture
17616
17617 RDACM20 Camera Sensor
17618 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17619 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17620 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17621 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17622 L:      linux-media@vger.kernel.org
17623 S:      Maintained
17624 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17625 F:      drivers/media/i2c/max9271.c
17626 F:      drivers/media/i2c/max9271.h
17627 F:      drivers/media/i2c/rdacm20.c
17628
17629 RDACM21 Camera Sensor
17630 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17631 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17632 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17633 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17634 L:      linux-media@vger.kernel.org
17635 S:      Maintained
17636 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17637 F:      drivers/media/i2c/max9271.c
17638 F:      drivers/media/i2c/max9271.h
17639 F:      drivers/media/i2c/rdacm21.c
17640
17641 RDC R-321X SoC
17642 M:      Florian Fainelli <florian@openwrt.org>
17643 S:      Maintained
17644
17645 RDC R6040 FAST ETHERNET DRIVER
17646 M:      Florian Fainelli <f.fainelli@gmail.com>
17647 L:      netdev@vger.kernel.org
17648 S:      Maintained
17649 F:      drivers/net/ethernet/rdc/r6040.c
17650
17651 RDMAVT - RDMA verbs software
17652 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17653 L:      linux-rdma@vger.kernel.org
17654 S:      Supported
17655 F:      drivers/infiniband/sw/rdmavt
17656
17657 RDS - RELIABLE DATAGRAM SOCKETS
17658 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17659 L:      netdev@vger.kernel.org
17660 L:      linux-rdma@vger.kernel.org
17661 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17662 S:      Supported
17663 W:      https://oss.oracle.com/projects/rds/
17664 F:      Documentation/networking/rds.rst
17665 F:      net/rds/
17666
17667 RDT - RESOURCE ALLOCATION
17668 M:      Fenghua Yu <fenghua.yu@intel.com>
17669 M:      Reinette Chatre <reinette.chatre@intel.com>
17670 L:      linux-kernel@vger.kernel.org
17671 S:      Supported
17672 F:      Documentation/x86/resctrl*
17673 F:      arch/x86/include/asm/resctrl.h
17674 F:      arch/x86/kernel/cpu/resctrl/
17675 F:      tools/testing/selftests/resctrl/
17676
17677 READ-COPY UPDATE (RCU)
17678 M:      "Paul E. McKenney" <paulmck@kernel.org>
17679 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17680 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17681 M:      Josh Triplett <josh@joshtriplett.org>
17682 R:      Steven Rostedt <rostedt@goodmis.org>
17683 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17684 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17685 R:      Joel Fernandes <joel@joelfernandes.org>
17686 L:      rcu@vger.kernel.org
17687 S:      Supported
17688 W:      http://www.rdrop.com/users/paulmck/RCU/
17689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17690 F:      Documentation/RCU/
17691 F:      include/linux/rcu*
17692 F:      kernel/rcu/
17693 X:      Documentation/RCU/torture.rst
17694 X:      include/linux/srcu*.h
17695 X:      kernel/rcu/srcu*.c
17696
17697 REAL TIME CLOCK (RTC) SUBSYSTEM
17698 M:      Alessandro Zummo <a.zummo@towertech.it>
17699 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17700 L:      linux-rtc@vger.kernel.org
17701 S:      Maintained
17702 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17704 F:      Documentation/admin-guide/rtc.rst
17705 F:      Documentation/devicetree/bindings/rtc/
17706 F:      drivers/rtc/
17707 F:      include/linux/platform_data/rtc-*
17708 F:      include/linux/rtc.h
17709 F:      include/linux/rtc/
17710 F:      include/uapi/linux/rtc.h
17711 F:      tools/testing/selftests/rtc/
17712
17713 REALTEK AUDIO CODECS
17714 M:      Oder Chiou <oder_chiou@realtek.com>
17715 S:      Maintained
17716 F:      include/sound/rt*.h
17717 F:      sound/soc/codecs/rt*
17718
17719 REALTEK OTTO WATCHDOG
17720 M:      Sander Vanheule <sander@svanheule.net>
17721 L:      linux-watchdog@vger.kernel.org
17722 S:      Maintained
17723 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17724 F:      drivers/watchdog/realtek_otto_wdt.c
17725
17726 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17727 M:      Linus Walleij <linus.walleij@linaro.org>
17728 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17729 S:      Maintained
17730 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17731 F:      drivers/net/dsa/realtek/*
17732
17733 REALTEK WIRELESS DRIVER (rtlwifi family)
17734 M:      Ping-Ke Shih <pkshih@realtek.com>
17735 L:      linux-wireless@vger.kernel.org
17736 S:      Maintained
17737 W:      https://wireless.wiki.kernel.org/
17738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17739 F:      drivers/net/wireless/realtek/rtlwifi/
17740
17741 REALTEK WIRELESS DRIVER (rtw88)
17742 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17743 L:      linux-wireless@vger.kernel.org
17744 S:      Maintained
17745 F:      drivers/net/wireless/realtek/rtw88/
17746
17747 REALTEK WIRELESS DRIVER (rtw89)
17748 M:      Ping-Ke Shih <pkshih@realtek.com>
17749 L:      linux-wireless@vger.kernel.org
17750 S:      Maintained
17751 F:      drivers/net/wireless/realtek/rtw89/
17752
17753 REDPINE WIRELESS DRIVER
17754 L:      linux-wireless@vger.kernel.org
17755 S:      Orphan
17756 F:      drivers/net/wireless/rsi/
17757
17758 REGISTER MAP ABSTRACTION
17759 M:      Mark Brown <broonie@kernel.org>
17760 L:      linux-kernel@vger.kernel.org
17761 S:      Supported
17762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17763 F:      Documentation/devicetree/bindings/regmap/
17764 F:      drivers/base/regmap/
17765 F:      include/linux/regmap.h
17766
17767 REISERFS FILE SYSTEM
17768 L:      reiserfs-devel@vger.kernel.org
17769 S:      Supported
17770 F:      fs/reiserfs/
17771
17772 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17773 M:      Bjorn Andersson <andersson@kernel.org>
17774 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17775 L:      linux-remoteproc@vger.kernel.org
17776 S:      Maintained
17777 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17778 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17779 F:      Documentation/devicetree/bindings/remoteproc/
17780 F:      Documentation/staging/remoteproc.rst
17781 F:      drivers/remoteproc/
17782 F:      include/linux/remoteproc.h
17783 F:      include/linux/remoteproc/
17784
17785 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17786 M:      Bjorn Andersson <andersson@kernel.org>
17787 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17788 L:      linux-remoteproc@vger.kernel.org
17789 S:      Maintained
17790 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17791 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17792 F:      Documentation/staging/rpmsg.rst
17793 F:      drivers/rpmsg/
17794 F:      include/linux/rpmsg.h
17795 F:      include/linux/rpmsg/
17796 F:      include/uapi/linux/rpmsg.h
17797 F:      samples/rpmsg/
17798
17799 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17800 M:      Stephan Gerhold <stephan@gerhold.net>
17801 L:      netdev@vger.kernel.org
17802 L:      linux-remoteproc@vger.kernel.org
17803 S:      Maintained
17804 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17805
17806 RENESAS CLOCK DRIVERS
17807 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17808 L:      linux-renesas-soc@vger.kernel.org
17809 S:      Supported
17810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17811 F:      Documentation/devicetree/bindings/clock/renesas,*
17812 F:      drivers/clk/renesas/
17813
17814 RENESAS EMEV2 I2C DRIVER
17815 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17816 L:      linux-renesas-soc@vger.kernel.org
17817 S:      Supported
17818 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17819 F:      drivers/i2c/busses/i2c-emev2.c
17820
17821 RENESAS ETHERNET DRIVERS
17822 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17823 L:      netdev@vger.kernel.org
17824 L:      linux-renesas-soc@vger.kernel.org
17825 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17826 F:      drivers/net/ethernet/renesas/
17827 F:      include/linux/sh_eth.h
17828
17829 RENESAS R-CAR GYROADC DRIVER
17830 M:      Marek Vasut <marek.vasut@gmail.com>
17831 L:      linux-iio@vger.kernel.org
17832 S:      Supported
17833 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17834 F:      drivers/iio/adc/rcar-gyroadc.c
17835
17836 RENESAS R-CAR I2C DRIVERS
17837 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17838 L:      linux-renesas-soc@vger.kernel.org
17839 S:      Supported
17840 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17841 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17842 F:      drivers/i2c/busses/i2c-rcar.c
17843 F:      drivers/i2c/busses/i2c-sh_mobile.c
17844
17845 RENESAS R-CAR SATA DRIVER
17846 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17847 S:      Supported
17848 L:      linux-ide@vger.kernel.org
17849 L:      linux-renesas-soc@vger.kernel.org
17850 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17851 F:      drivers/ata/sata_rcar.c
17852
17853 RENESAS R-CAR THERMAL DRIVERS
17854 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17855 L:      linux-renesas-soc@vger.kernel.org
17856 S:      Supported
17857 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17858 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17859 F:      drivers/thermal/rcar_gen3_thermal.c
17860 F:      drivers/thermal/rcar_thermal.c
17861
17862 RENESAS RIIC DRIVER
17863 M:      Chris Brandt <chris.brandt@renesas.com>
17864 L:      linux-renesas-soc@vger.kernel.org
17865 S:      Supported
17866 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17867 F:      drivers/i2c/busses/i2c-riic.c
17868
17869 RENESAS USB PHY DRIVER
17870 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17871 L:      linux-renesas-soc@vger.kernel.org
17872 S:      Maintained
17873 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17874
17875 RENESAS RZ/G2L A/D DRIVER
17876 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17877 L:      linux-iio@vger.kernel.org
17878 L:      linux-renesas-soc@vger.kernel.org
17879 S:      Supported
17880 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17881 F:      drivers/iio/adc/rzg2l_adc.c
17882
17883 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17884 M:      Clément Léger <clement.leger@bootlin.com>
17885 L:      linux-renesas-soc@vger.kernel.org
17886 L:      netdev@vger.kernel.org
17887 S:      Maintained
17888 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17889 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17890 F:      drivers/net/dsa/rzn1_a5psw*
17891 F:      drivers/net/pcs/pcs-rzn1-miic.c
17892 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17893 F:      include/linux/pcs-rzn1-miic.h
17894 F:      net/dsa/tag_rzn1_a5psw.c
17895
17896 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17897 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17898 L:      linux-rtc@vger.kernel.org
17899 L:      linux-renesas-soc@vger.kernel.org
17900 S:      Maintained
17901 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17902 F:      drivers/rtc/rtc-rzn1.c
17903
17904 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17905 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17906 L:      linux-mtd@lists.infradead.org
17907 L:      linux-renesas-soc@vger.kernel.org
17908 S:      Maintained
17909 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17910 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17911
17912 RENESAS VERSACLOCK 7 CLOCK DRIVER
17913 M:      Alex Helms <alexander.helms.jy@renesas.com>
17914 S:      Maintained
17915 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17916 F:      drivers/clk/clk-versaclock7.c
17917
17918 RESET CONTROLLER FRAMEWORK
17919 M:      Philipp Zabel <p.zabel@pengutronix.de>
17920 S:      Maintained
17921 T:      git git://git.pengutronix.de/git/pza/linux
17922 F:      Documentation/devicetree/bindings/reset/
17923 F:      Documentation/driver-api/reset.rst
17924 F:      drivers/reset/
17925 F:      include/dt-bindings/reset/
17926 F:      include/linux/reset-controller.h
17927 F:      include/linux/reset.h
17928 F:      include/linux/reset/
17929 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17930
17931 RESTARTABLE SEQUENCES SUPPORT
17932 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17933 M:      Peter Zijlstra <peterz@infradead.org>
17934 M:      "Paul E. McKenney" <paulmck@kernel.org>
17935 M:      Boqun Feng <boqun.feng@gmail.com>
17936 L:      linux-kernel@vger.kernel.org
17937 S:      Supported
17938 F:      include/trace/events/rseq.h
17939 F:      include/uapi/linux/rseq.h
17940 F:      kernel/rseq.c
17941 F:      tools/testing/selftests/rseq/
17942
17943 RFKILL
17944 M:      Johannes Berg <johannes@sipsolutions.net>
17945 L:      linux-wireless@vger.kernel.org
17946 S:      Maintained
17947 W:      https://wireless.wiki.kernel.org/
17948 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17951 F:      Documentation/ABI/stable/sysfs-class-rfkill
17952 F:      Documentation/driver-api/rfkill.rst
17953 F:      include/linux/rfkill.h
17954 F:      include/uapi/linux/rfkill.h
17955 F:      net/rfkill/
17956
17957 RHASHTABLE
17958 M:      Thomas Graf <tgraf@suug.ch>
17959 M:      Herbert Xu <herbert@gondor.apana.org.au>
17960 L:      netdev@vger.kernel.org
17961 S:      Maintained
17962 F:      include/linux/rhashtable-types.h
17963 F:      include/linux/rhashtable.h
17964 F:      lib/rhashtable.c
17965 F:      lib/test_rhashtable.c
17966
17967 RICOH R5C592 MEMORYSTICK DRIVER
17968 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17969 S:      Maintained
17970 F:      drivers/memstick/host/r592.*
17971
17972 RICOH SMARTMEDIA/XD DRIVER
17973 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17974 S:      Maintained
17975 F:      drivers/mtd/nand/raw/r852.c
17976 F:      drivers/mtd/nand/raw/r852.h
17977
17978 RISC-V PMU DRIVERS
17979 M:      Atish Patra <atishp@atishpatra.org>
17980 R:      Anup Patel <anup@brainfault.org>
17981 L:      linux-riscv@lists.infradead.org
17982 S:      Supported
17983 F:      drivers/perf/riscv_pmu.c
17984 F:      drivers/perf/riscv_pmu_legacy.c
17985 F:      drivers/perf/riscv_pmu_sbi.c
17986
17987 RISC-V ARCHITECTURE
17988 M:      Paul Walmsley <paul.walmsley@sifive.com>
17989 M:      Palmer Dabbelt <palmer@dabbelt.com>
17990 M:      Albert Ou <aou@eecs.berkeley.edu>
17991 L:      linux-riscv@lists.infradead.org
17992 S:      Supported
17993 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17994 C:      irc://irc.libera.chat/riscv
17995 P:      Documentation/riscv/patch-acceptance.rst
17996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17997 F:      arch/riscv/
17998 N:      riscv
17999 K:      riscv
18000
18001 RISC-V MICROCHIP FPGA SUPPORT
18002 M:      Conor Dooley <conor.dooley@microchip.com>
18003 M:      Daire McNamara <daire.mcnamara@microchip.com>
18004 L:      linux-riscv@lists.infradead.org
18005 S:      Supported
18006 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
18007 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
18008 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
18009 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
18010 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
18011 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
18012 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
18013 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
18014 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
18015 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
18016 F:      arch/riscv/boot/dts/microchip/
18017 F:      drivers/char/hw_random/mpfs-rng.c
18018 F:      drivers/clk/microchip/clk-mpfs.c
18019 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
18020 F:      drivers/mailbox/mailbox-mpfs.c
18021 F:      drivers/pci/controller/pcie-microchip-host.c
18022 F:      drivers/reset/reset-mpfs.c
18023 F:      drivers/rtc/rtc-mpfs.c
18024 F:      drivers/soc/microchip/mpfs-sys-controller.c
18025 F:      drivers/spi/spi-microchip-core-qspi.c
18026 F:      drivers/spi/spi-microchip-core.c
18027 F:      drivers/usb/musb/mpfs.c
18028 F:      include/soc/microchip/mpfs.h
18029
18030 RISC-V MISC SOC SUPPORT
18031 M:      Conor Dooley <conor@kernel.org>
18032 L:      linux-riscv@lists.infradead.org
18033 S:      Maintained
18034 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
18035 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18036 F:      Documentation/devicetree/bindings/riscv/
18037 F:      arch/riscv/boot/dts/
18038
18039 RNBD BLOCK DRIVERS
18040 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18041 M:      Jack Wang <jinpu.wang@ionos.com>
18042 L:      linux-block@vger.kernel.org
18043 S:      Maintained
18044 F:      drivers/block/rnbd/
18045
18046 ROCCAT DRIVERS
18047 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
18048 S:      Maintained
18049 W:      http://sourceforge.net/projects/roccat/
18050 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
18051 F:      drivers/hid/hid-roccat*
18052 F:      include/linux/hid-roccat*
18053
18054 ROCKCHIP CRYPTO DRIVERS
18055 M:      Corentin Labbe <clabbe@baylibre.com>
18056 L:      linux-crypto@vger.kernel.org
18057 S:      Maintained
18058 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
18059 F:      drivers/crypto/rockchip/
18060
18061 ROCKCHIP I2S TDM DRIVER
18062 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
18063 L:      linux-rockchip@lists.infradead.org
18064 S:      Maintained
18065 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
18066 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
18067
18068 ROCKCHIP ISP V1 DRIVER
18069 M:      Dafna Hirschfeld <dafna@fastmail.com>
18070 L:      linux-media@vger.kernel.org
18071 L:      linux-rockchip@lists.infradead.org
18072 S:      Maintained
18073 F:      Documentation/admin-guide/media/rkisp1.rst
18074 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
18075 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
18076 F:      drivers/media/platform/rockchip/rkisp1
18077 F:      include/uapi/linux/rkisp1-config.h
18078
18079 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
18080 M:      Jacob Chen <jacob-chen@iotwrt.com>
18081 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18082 L:      linux-media@vger.kernel.org
18083 L:      linux-rockchip@lists.infradead.org
18084 S:      Maintained
18085 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
18086 F:      drivers/media/platform/rockchip/rga/
18087
18088 ROCKCHIP VIDEO DECODER DRIVER
18089 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18090 L:      linux-media@vger.kernel.org
18091 L:      linux-rockchip@lists.infradead.org
18092 S:      Maintained
18093 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
18094 F:      drivers/staging/media/rkvdec/
18095
18096 ROCKER DRIVER
18097 M:      Jiri Pirko <jiri@resnulli.us>
18098 L:      netdev@vger.kernel.org
18099 S:      Supported
18100 F:      drivers/net/ethernet/rocker/
18101
18102 ROCKETPORT EXPRESS/INFINITY DRIVER
18103 M:      Kevin Cernekee <cernekee@gmail.com>
18104 L:      linux-serial@vger.kernel.org
18105 S:      Odd Fixes
18106 F:      drivers/tty/serial/rp2.*
18107
18108 ROHM BD99954 CHARGER IC
18109 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18110 S:      Supported
18111 F:      drivers/power/supply/bd99954-charger.c
18112 F:      drivers/power/supply/bd99954-charger.h
18113
18114 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
18115 M:      Tomasz Duszynski <tduszyns@gmail.com>
18116 S:      Maintained
18117 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
18118 F:      drivers/iio/light/bh1750.c
18119
18120 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
18121 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
18122 L:      linux-kernel@vger.kernel.org
18123 L:      linux-renesas-soc@vger.kernel.org
18124 S:      Supported
18125 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
18126 F:      drivers/gpio/gpio-bd9571mwv.c
18127 F:      drivers/mfd/bd9571mwv.c
18128 F:      drivers/regulator/bd9571mwv-regulator.c
18129 F:      include/linux/mfd/bd9571mwv.h
18130
18131 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
18132 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18133 S:      Supported
18134 F:      drivers/clk/clk-bd718x7.c
18135 F:      drivers/gpio/gpio-bd71815.c
18136 F:      drivers/gpio/gpio-bd71828.c
18137 F:      drivers/mfd/rohm-bd71828.c
18138 F:      drivers/mfd/rohm-bd718x7.c
18139 F:      drivers/mfd/rohm-bd9576.c
18140 F:      drivers/regulator/bd71815-regulator.c
18141 F:      drivers/regulator/bd71828-regulator.c
18142 F:      drivers/regulator/bd718x7-regulator.c
18143 F:      drivers/regulator/bd9576-regulator.c
18144 F:      drivers/regulator/rohm-regulator.c
18145 F:      drivers/rtc/rtc-bd70528.c
18146 F:      drivers/watchdog/bd9576_wdt.c
18147 F:      include/linux/mfd/rohm-bd71815.h
18148 F:      include/linux/mfd/rohm-bd71828.h
18149 F:      include/linux/mfd/rohm-bd718x7.h
18150 F:      include/linux/mfd/rohm-bd957x.h
18151 F:      include/linux/mfd/rohm-generic.h
18152 F:      include/linux/mfd/rohm-shared.h
18153
18154 ROSE NETWORK LAYER
18155 M:      Ralf Baechle <ralf@linux-mips.org>
18156 L:      linux-hams@vger.kernel.org
18157 S:      Maintained
18158 W:      http://www.linux-ax25.org/
18159 F:      include/net/rose.h
18160 F:      include/uapi/linux/rose.h
18161 F:      net/rose/
18162
18163 ROTATION DRIVER FOR ALLWINNER A83T
18164 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
18165 L:      linux-media@vger.kernel.org
18166 S:      Maintained
18167 T:      git git://linuxtv.org/media_tree.git
18168 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18169 F:      drivers/media/platform/sunxi/sun8i-rotate/
18170
18171 RPMSG TTY DRIVER
18172 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18173 L:      linux-remoteproc@vger.kernel.org
18174 S:      Maintained
18175 F:      drivers/tty/rpmsg_tty.c
18176
18177 RTL2830 MEDIA DRIVER
18178 M:      Antti Palosaari <crope@iki.fi>
18179 L:      linux-media@vger.kernel.org
18180 S:      Maintained
18181 W:      https://linuxtv.org
18182 W:      http://palosaari.fi/linux/
18183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18184 T:      git git://linuxtv.org/anttip/media_tree.git
18185 F:      drivers/media/dvb-frontends/rtl2830*
18186
18187 RTL2832 MEDIA DRIVER
18188 M:      Antti Palosaari <crope@iki.fi>
18189 L:      linux-media@vger.kernel.org
18190 S:      Maintained
18191 W:      https://linuxtv.org
18192 W:      http://palosaari.fi/linux/
18193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18194 T:      git git://linuxtv.org/anttip/media_tree.git
18195 F:      drivers/media/dvb-frontends/rtl2832*
18196
18197 RTL2832_SDR MEDIA DRIVER
18198 M:      Antti Palosaari <crope@iki.fi>
18199 L:      linux-media@vger.kernel.org
18200 S:      Maintained
18201 W:      https://linuxtv.org
18202 W:      http://palosaari.fi/linux/
18203 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18204 T:      git git://linuxtv.org/anttip/media_tree.git
18205 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18206
18207 RTL8180 WIRELESS DRIVER
18208 L:      linux-wireless@vger.kernel.org
18209 S:      Orphan
18210 W:      https://wireless.wiki.kernel.org/
18211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18212 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18213
18214 RTL8187 WIRELESS DRIVER
18215 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18216 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
18217 M:      Larry Finger <Larry.Finger@lwfinger.net>
18218 L:      linux-wireless@vger.kernel.org
18219 S:      Maintained
18220 W:      https://wireless.wiki.kernel.org/
18221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18222 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18223
18224 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18225 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
18226 L:      linux-wireless@vger.kernel.org
18227 S:      Maintained
18228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18229 F:      drivers/net/wireless/realtek/rtl8xxxu/
18230
18231 RTRS TRANSPORT DRIVERS
18232 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18233 M:      Jack Wang <jinpu.wang@ionos.com>
18234 L:      linux-rdma@vger.kernel.org
18235 S:      Maintained
18236 F:      drivers/infiniband/ulp/rtrs/
18237
18238 RUNTIME VERIFICATION (RV)
18239 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
18240 M:      Steven Rostedt <rostedt@goodmis.org>
18241 L:      linux-trace-devel@vger.kernel.org
18242 S:      Maintained
18243 F:      Documentation/trace/rv/
18244 F:      include/linux/rv.h
18245 F:      include/rv/
18246 F:      kernel/trace/rv/
18247 F:      tools/verification/
18248
18249 RUST
18250 M:      Miguel Ojeda <ojeda@kernel.org>
18251 M:      Alex Gaynor <alex.gaynor@gmail.com>
18252 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
18253 R:      Boqun Feng <boqun.feng@gmail.com>
18254 R:      Gary Guo <gary@garyguo.net>
18255 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
18256 L:      rust-for-linux@vger.kernel.org
18257 S:      Supported
18258 W:      https://github.com/Rust-for-Linux/linux
18259 B:      https://github.com/Rust-for-Linux/linux/issues
18260 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18261 F:      Documentation/rust/
18262 F:      rust/
18263 F:      samples/rust/
18264 F:      scripts/*rust*
18265 K:      \b(?i:rust)\b
18266
18267 RXRPC SOCKETS (AF_RXRPC)
18268 M:      David Howells <dhowells@redhat.com>
18269 M:      Marc Dionne <marc.dionne@auristor.com>
18270 L:      linux-afs@lists.infradead.org
18271 S:      Supported
18272 W:      https://www.infradead.org/~dhowells/kafs/
18273 F:      Documentation/networking/rxrpc.rst
18274 F:      include/keys/rxrpc-type.h
18275 F:      include/net/af_rxrpc.h
18276 F:      include/trace/events/rxrpc.h
18277 F:      include/uapi/linux/rxrpc.h
18278 F:      net/rxrpc/
18279
18280 S3 SAVAGE FRAMEBUFFER DRIVER
18281 M:      Antonino Daplas <adaplas@gmail.com>
18282 L:      linux-fbdev@vger.kernel.org
18283 S:      Maintained
18284 F:      drivers/video/fbdev/savage/
18285
18286 S390 ARCHITECTURE
18287 M:      Heiko Carstens <hca@linux.ibm.com>
18288 M:      Vasily Gorbik <gor@linux.ibm.com>
18289 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18290 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
18291 R:      Sven Schnelle <svens@linux.ibm.com>
18292 L:      linux-s390@vger.kernel.org
18293 S:      Supported
18294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18295 F:      Documentation/driver-api/s390-drivers.rst
18296 F:      Documentation/s390/
18297 F:      arch/s390/
18298 F:      drivers/s390/
18299
18300 S390 COMMON I/O LAYER
18301 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18302 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
18303 L:      linux-s390@vger.kernel.org
18304 S:      Supported
18305 F:      drivers/s390/cio/
18306
18307 S390 DASD DRIVER
18308 M:      Stefan Haberland <sth@linux.ibm.com>
18309 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
18310 L:      linux-s390@vger.kernel.org
18311 S:      Supported
18312 F:      block/partitions/ibm.c
18313 F:      drivers/s390/block/dasd*
18314 F:      include/linux/dasd_mod.h
18315
18316 S390 IOMMU (PCI)
18317 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18318 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18319 L:      linux-s390@vger.kernel.org
18320 S:      Supported
18321 F:      drivers/iommu/s390-iommu.c
18322
18323 S390 IUCV NETWORK LAYER
18324 M:      Alexandra Winter <wintera@linux.ibm.com>
18325 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18326 L:      linux-s390@vger.kernel.org
18327 L:      netdev@vger.kernel.org
18328 S:      Supported
18329 F:      drivers/s390/net/*iucv*
18330 F:      include/net/iucv/
18331 F:      net/iucv/
18332
18333 S390 NETWORK DRIVERS
18334 M:      Alexandra Winter <wintera@linux.ibm.com>
18335 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18336 L:      linux-s390@vger.kernel.org
18337 L:      netdev@vger.kernel.org
18338 S:      Supported
18339 F:      drivers/s390/net/
18340
18341 S390 MM
18342 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18343 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18344 L:      linux-s390@vger.kernel.org
18345 S:      Supported
18346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18347 F:      arch/s390/include/asm/pgtable.h
18348 F:      arch/s390/mm
18349
18350 S390 PCI SUBSYSTEM
18351 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18352 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18353 L:      linux-s390@vger.kernel.org
18354 S:      Supported
18355 F:      arch/s390/pci/
18356 F:      drivers/pci/hotplug/s390_pci_hpc.c
18357 F:      Documentation/s390/pci.rst
18358
18359 S390 VFIO AP DRIVER
18360 M:      Tony Krowiak <akrowiak@linux.ibm.com>
18361 M:      Halil Pasic <pasic@linux.ibm.com>
18362 M:      Jason Herne <jjherne@linux.ibm.com>
18363 L:      linux-s390@vger.kernel.org
18364 S:      Supported
18365 F:      Documentation/s390/vfio-ap*
18366 F:      drivers/s390/crypto/vfio_ap*
18367
18368 S390 VFIO-CCW DRIVER
18369 M:      Eric Farman <farman@linux.ibm.com>
18370 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18371 R:      Halil Pasic <pasic@linux.ibm.com>
18372 L:      linux-s390@vger.kernel.org
18373 L:      kvm@vger.kernel.org
18374 S:      Supported
18375 F:      Documentation/s390/vfio-ccw.rst
18376 F:      drivers/s390/cio/vfio_ccw*
18377 F:      include/uapi/linux/vfio_ccw.h
18378
18379 S390 VFIO-PCI DRIVER
18380 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18381 M:      Eric Farman <farman@linux.ibm.com>
18382 L:      linux-s390@vger.kernel.org
18383 L:      kvm@vger.kernel.org
18384 S:      Supported
18385 F:      arch/s390/kvm/pci*
18386 F:      drivers/vfio/pci/vfio_pci_zdev.c
18387 F:      include/uapi/linux/vfio_zdev.h
18388
18389 S390 ZCRYPT DRIVER
18390 M:      Harald Freudenberger <freude@linux.ibm.com>
18391 L:      linux-s390@vger.kernel.org
18392 S:      Supported
18393 F:      drivers/s390/crypto/
18394
18395 S390 ZFCP DRIVER
18396 M:      Steffen Maier <maier@linux.ibm.com>
18397 M:      Benjamin Block <bblock@linux.ibm.com>
18398 L:      linux-s390@vger.kernel.org
18399 S:      Supported
18400 F:      drivers/s390/scsi/zfcp_*
18401
18402 S3C ADC BATTERY DRIVER
18403 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18404 L:      linux-samsung-soc@vger.kernel.org
18405 S:      Odd Fixes
18406 F:      drivers/power/supply/s3c_adc_battery.c
18407 F:      include/linux/s3c_adc_battery.h
18408
18409 S3C24XX SD/MMC Driver
18410 M:      Ben Dooks <ben-linux@fluff.org>
18411 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18412 S:      Supported
18413 F:      drivers/mmc/host/s3cmci.*
18414
18415 SAA6588 RDS RECEIVER DRIVER
18416 M:      Hans Verkuil <hverkuil@xs4all.nl>
18417 L:      linux-media@vger.kernel.org
18418 S:      Odd Fixes
18419 W:      https://linuxtv.org
18420 T:      git git://linuxtv.org/media_tree.git
18421 F:      drivers/media/i2c/saa6588*
18422
18423 SAA7134 VIDEO4LINUX DRIVER
18424 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18425 L:      linux-media@vger.kernel.org
18426 S:      Odd fixes
18427 W:      https://linuxtv.org
18428 T:      git git://linuxtv.org/media_tree.git
18429 F:      Documentation/driver-api/media/drivers/saa7134*
18430 F:      drivers/media/pci/saa7134/
18431
18432 SAA7146 VIDEO4LINUX-2 DRIVER
18433 M:      Hans Verkuil <hverkuil@xs4all.nl>
18434 L:      linux-media@vger.kernel.org
18435 S:      Maintained
18436 T:      git git://linuxtv.org/media_tree.git
18437 F:      drivers/staging/media/deprecated/saa7146/
18438
18439 SAFESETID SECURITY MODULE
18440 M:      Micah Morton <mortonm@chromium.org>
18441 S:      Supported
18442 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18443 F:      security/safesetid/
18444
18445 SAMSUNG AUDIO (ASoC) DRIVERS
18446 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18447 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18448 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18449 S:      Supported
18450 B:      mailto:linux-samsung-soc@vger.kernel.org
18451 F:      Documentation/devicetree/bindings/sound/samsung*
18452 F:      sound/soc/samsung/
18453
18454 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18455 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18456 L:      linux-crypto@vger.kernel.org
18457 L:      linux-samsung-soc@vger.kernel.org
18458 S:      Maintained
18459 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18460 F:      drivers/crypto/exynos-rng.c
18461
18462 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18463 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18464 L:      linux-samsung-soc@vger.kernel.org
18465 S:      Maintained
18466 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18467 F:      drivers/char/hw_random/exynos-trng.c
18468
18469 SAMSUNG FRAMEBUFFER DRIVER
18470 M:      Jingoo Han <jingoohan1@gmail.com>
18471 L:      linux-fbdev@vger.kernel.org
18472 S:      Maintained
18473 F:      drivers/video/fbdev/s3c-fb.c
18474
18475 SAMSUNG INTERCONNECT DRIVERS
18476 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18477 M:      Artur Świgoń <a.swigon@samsung.com>
18478 L:      linux-pm@vger.kernel.org
18479 L:      linux-samsung-soc@vger.kernel.org
18480 S:      Supported
18481 F:      drivers/interconnect/samsung/
18482
18483 SAMSUNG LAPTOP DRIVER
18484 M:      Corentin Chary <corentin.chary@gmail.com>
18485 L:      platform-driver-x86@vger.kernel.org
18486 S:      Maintained
18487 F:      drivers/platform/x86/samsung-laptop.c
18488
18489 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18490 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18491 L:      linux-kernel@vger.kernel.org
18492 L:      linux-samsung-soc@vger.kernel.org
18493 S:      Supported
18494 B:      mailto:linux-samsung-soc@vger.kernel.org
18495 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18496 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18497 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18498 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18499 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18500 F:      drivers/clk/clk-s2mps11.c
18501 F:      drivers/mfd/sec*.c
18502 F:      drivers/regulator/s2m*.c
18503 F:      drivers/regulator/s5m*.c
18504 F:      drivers/rtc/rtc-s5m.c
18505 F:      include/linux/mfd/samsung/
18506
18507 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18508 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18509 L:      linux-media@vger.kernel.org
18510 L:      linux-samsung-soc@vger.kernel.org
18511 S:      Maintained
18512 F:      drivers/media/platform/samsung/s3c-camif/
18513 F:      include/media/drv-intf/s3c_camif.h
18514
18515 SAMSUNG S3FWRN5 NFC DRIVER
18516 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18517 L:      linux-nfc@lists.01.org (subscribers-only)
18518 S:      Maintained
18519 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18520 F:      drivers/nfc/s3fwrn5
18521
18522 SAMSUNG S5C73M3 CAMERA DRIVER
18523 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18524 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18525 L:      linux-media@vger.kernel.org
18526 S:      Supported
18527 F:      drivers/media/i2c/s5c73m3/*
18528
18529 SAMSUNG S5K5BAF CAMERA DRIVER
18530 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18531 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18532 L:      linux-media@vger.kernel.org
18533 S:      Supported
18534 F:      drivers/media/i2c/s5k5baf.c
18535
18536 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18537 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18538 M:      Vladimir Zapolskiy <vz@mleia.com>
18539 L:      linux-crypto@vger.kernel.org
18540 L:      linux-samsung-soc@vger.kernel.org
18541 S:      Maintained
18542 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18543 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18544 F:      drivers/crypto/s5p-sss.c
18545
18546 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18547 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18548 L:      linux-media@vger.kernel.org
18549 S:      Supported
18550 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18551 F:      drivers/media/platform/samsung/exynos4-is/
18552
18553 SAMSUNG SOC CLOCK DRIVERS
18554 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18555 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18556 M:      Tomasz Figa <tomasz.figa@gmail.com>
18557 M:      Chanwoo Choi <cw00.choi@samsung.com>
18558 R:      Alim Akhtar <alim.akhtar@samsung.com>
18559 L:      linux-samsung-soc@vger.kernel.org
18560 S:      Supported
18561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18563 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18564 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18565 F:      drivers/clk/samsung/
18566 F:      include/dt-bindings/clock/exynos*.h
18567 F:      include/dt-bindings/clock/s3c*.h
18568 F:      include/dt-bindings/clock/s5p*.h
18569 F:      include/dt-bindings/clock/samsung,*.h
18570 F:      include/linux/clk/samsung.h
18571 F:      include/linux/platform_data/clk-s3c2410.h
18572
18573 SAMSUNG SPI DRIVERS
18574 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18575 M:      Andi Shyti <andi@etezian.org>
18576 L:      linux-spi@vger.kernel.org
18577 L:      linux-samsung-soc@vger.kernel.org
18578 S:      Maintained
18579 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18580 F:      drivers/spi/spi-s3c*
18581 F:      include/linux/platform_data/spi-s3c64xx.h
18582 F:      include/linux/spi/s3c24xx-fiq.h
18583
18584 SAMSUNG SXGBE DRIVERS
18585 M:      Byungho An <bh74.an@samsung.com>
18586 L:      netdev@vger.kernel.org
18587 S:      Supported
18588 F:      drivers/net/ethernet/samsung/sxgbe/
18589
18590 SAMSUNG THERMAL DRIVER
18591 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18592 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18593 L:      linux-pm@vger.kernel.org
18594 L:      linux-samsung-soc@vger.kernel.org
18595 S:      Maintained
18596 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18597 F:      drivers/thermal/samsung/
18598
18599 SAMSUNG USB2 PHY DRIVER
18600 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18601 L:      linux-kernel@vger.kernel.org
18602 S:      Supported
18603 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18604 F:      Documentation/driver-api/phy/samsung-usb2.rst
18605 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18606 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18607 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18608 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18609 F:      drivers/phy/samsung/phy-samsung-usb2.c
18610 F:      drivers/phy/samsung/phy-samsung-usb2.h
18611
18612 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18613 M:      Paul Barker <paul.barker@sancloud.com>
18614 R:      Marc Murphy <marc.murphy@sancloud.com>
18615 S:      Supported
18616 F:      arch/arm/boot/dts/am335x-sancloud*
18617
18618 SC1200 WDT DRIVER
18619 M:      Zwane Mwaikambo <zwanem@gmail.com>
18620 S:      Maintained
18621 F:      drivers/watchdog/sc1200wdt.c
18622
18623 SCHEDULER
18624 M:      Ingo Molnar <mingo@redhat.com>
18625 M:      Peter Zijlstra <peterz@infradead.org>
18626 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18627 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18628 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18629 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18630 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18631 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18632 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18633 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18634 L:      linux-kernel@vger.kernel.org
18635 S:      Maintained
18636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18637 F:      include/linux/preempt.h
18638 F:      include/linux/sched.h
18639 F:      include/linux/wait.h
18640 F:      include/uapi/linux/sched.h
18641 F:      kernel/sched/
18642
18643 SCR24X CHIP CARD INTERFACE DRIVER
18644 M:      Lubomir Rintel <lkundrak@v3.sk>
18645 S:      Supported
18646 F:      drivers/char/pcmcia/scr24x_cs.c
18647
18648 SCSI RDMA PROTOCOL (SRP) INITIATOR
18649 M:      Bart Van Assche <bvanassche@acm.org>
18650 L:      linux-rdma@vger.kernel.org
18651 S:      Supported
18652 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18653 F:      drivers/infiniband/ulp/srp/
18654 F:      include/scsi/srp.h
18655
18656 SCSI RDMA PROTOCOL (SRP) TARGET
18657 M:      Bart Van Assche <bvanassche@acm.org>
18658 L:      linux-rdma@vger.kernel.org
18659 L:      target-devel@vger.kernel.org
18660 S:      Supported
18661 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18662 F:      drivers/infiniband/ulp/srpt/
18663
18664 SCSI SG DRIVER
18665 M:      Doug Gilbert <dgilbert@interlog.com>
18666 L:      linux-scsi@vger.kernel.org
18667 S:      Maintained
18668 W:      http://sg.danny.cz/sg
18669 F:      Documentation/scsi/scsi-generic.rst
18670 F:      drivers/scsi/sg.c
18671 F:      include/scsi/sg.h
18672
18673 SCSI SUBSYSTEM
18674 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18675 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18676 L:      linux-scsi@vger.kernel.org
18677 S:      Maintained
18678 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18681 F:      Documentation/devicetree/bindings/scsi/
18682 F:      drivers/scsi/
18683 F:      drivers/ufs/
18684 F:      include/scsi/
18685
18686 SCSI TAPE DRIVER
18687 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18688 L:      linux-scsi@vger.kernel.org
18689 S:      Maintained
18690 F:      Documentation/scsi/st.rst
18691 F:      drivers/scsi/st.*
18692 F:      drivers/scsi/st_*.h
18693
18694 SCSI TARGET CORE USER DRIVER
18695 M:      Bodo Stroesser <bostroesser@gmail.com>
18696 L:      linux-scsi@vger.kernel.org
18697 L:      target-devel@vger.kernel.org
18698 S:      Supported
18699 F:      Documentation/target/tcmu-design.rst
18700 F:      drivers/target/target_core_user.c
18701 F:      include/uapi/linux/target_core_user.h
18702
18703 SCSI TARGET SUBSYSTEM
18704 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18705 L:      linux-scsi@vger.kernel.org
18706 L:      target-devel@vger.kernel.org
18707 S:      Supported
18708 W:      http://www.linux-iscsi.org
18709 Q:      https://patchwork.kernel.org/project/target-devel/list/
18710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18711 F:      Documentation/target/
18712 F:      drivers/target/
18713 F:      include/target/
18714
18715 SCTP PROTOCOL
18716 M:      Neil Horman <nhorman@tuxdriver.com>
18717 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18718 M:      Xin Long <lucien.xin@gmail.com>
18719 L:      linux-sctp@vger.kernel.org
18720 S:      Maintained
18721 W:      http://lksctp.sourceforge.net
18722 F:      Documentation/networking/sctp.rst
18723 F:      include/linux/sctp.h
18724 F:      include/net/sctp/
18725 F:      include/uapi/linux/sctp.h
18726 F:      net/sctp/
18727
18728 SCx200 CPU SUPPORT
18729 M:      Jim Cromie <jim.cromie@gmail.com>
18730 S:      Odd Fixes
18731 F:      Documentation/i2c/busses/scx200_acb.rst
18732 F:      arch/x86/platform/scx200/
18733 F:      drivers/i2c/busses/scx200*
18734 F:      drivers/mtd/maps/scx200_docflash.c
18735 F:      drivers/watchdog/scx200_wdt.c
18736 F:      include/linux/scx200.h
18737
18738 SCx200 GPIO DRIVER
18739 M:      Jim Cromie <jim.cromie@gmail.com>
18740 S:      Maintained
18741 F:      drivers/char/scx200_gpio.c
18742 F:      include/linux/scx200_gpio.h
18743
18744 SCx200 HRT CLOCKSOURCE DRIVER
18745 M:      Jim Cromie <jim.cromie@gmail.com>
18746 S:      Maintained
18747 F:      drivers/clocksource/scx200_hrt.c
18748
18749 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18750 M:      Sascha Sommer <saschasommer@freenet.de>
18751 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18752 S:      Maintained
18753 F:      drivers/mmc/host/sdricoh_cs.c
18754
18755 SECO BOARDS CEC DRIVER
18756 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18757 S:      Maintained
18758 F:      drivers/media/cec/platform/seco/seco-cec.c
18759 F:      drivers/media/cec/platform/seco/seco-cec.h
18760
18761 SECURE COMPUTING
18762 M:      Kees Cook <keescook@chromium.org>
18763 R:      Andy Lutomirski <luto@amacapital.net>
18764 R:      Will Drewry <wad@chromium.org>
18765 S:      Supported
18766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18767 F:      Documentation/userspace-api/seccomp_filter.rst
18768 F:      include/linux/seccomp.h
18769 F:      include/uapi/linux/seccomp.h
18770 F:      kernel/seccomp.c
18771 F:      tools/testing/selftests/kselftest_harness.h
18772 F:      tools/testing/selftests/seccomp/*
18773 K:      \bsecure_computing
18774 K:      \bTIF_SECCOMP\b
18775
18776 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18777 M:      Kamal Dasu <kdasu.kdev@gmail.com>
18778 M:      Al Cooper <alcooperx@gmail.com>
18779 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18780 L:      linux-mmc@vger.kernel.org
18781 S:      Maintained
18782 F:      drivers/mmc/host/sdhci-brcmstb*
18783
18784 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18785 M:      Adrian Hunter <adrian.hunter@intel.com>
18786 L:      linux-mmc@vger.kernel.org
18787 S:      Supported
18788 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18789 F:      drivers/mmc/host/sdhci*
18790
18791 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18792 M:      Eugen Hristev <eugen.hristev@microchip.com>
18793 L:      linux-mmc@vger.kernel.org
18794 S:      Supported
18795 F:      drivers/mmc/host/sdhci-of-at91.c
18796
18797 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18798 M:      Ben Dooks <ben-linux@fluff.org>
18799 M:      Jaehoon Chung <jh80.chung@samsung.com>
18800 L:      linux-mmc@vger.kernel.org
18801 S:      Maintained
18802 F:      drivers/mmc/host/sdhci-s3c*
18803
18804 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18805 M:      Viresh Kumar <vireshk@kernel.org>
18806 L:      linux-mmc@vger.kernel.org
18807 S:      Maintained
18808 F:      drivers/mmc/host/sdhci-spear.c
18809
18810 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18811 M:      Vignesh Raghavendra <vigneshr@ti.com>
18812 L:      linux-mmc@vger.kernel.org
18813 S:      Maintained
18814 F:      drivers/mmc/host/sdhci-omap.c
18815
18816 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18817 M:      Haibo Chen <haibo.chen@nxp.com>
18818 L:      linux-imx@nxp.com
18819 L:      linux-mmc@vger.kernel.org
18820 S:      Maintained
18821 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18822
18823 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18824 M:      Jonathan Derrick <jonathan.derrick@linux.dev>
18825 L:      linux-block@vger.kernel.org
18826 S:      Supported
18827 F:      block/opal_proto.h
18828 F:      block/sed*
18829 F:      include/linux/sed*
18830 F:      include/uapi/linux/sed*
18831
18832 SECURITY CONTACT
18833 M:      Security Officers <security@kernel.org>
18834 S:      Supported
18835 F:      Documentation/admin-guide/security-bugs.rst
18836
18837 SECURITY SUBSYSTEM
18838 M:      Paul Moore <paul@paul-moore.com>
18839 M:      James Morris <jmorris@namei.org>
18840 M:      "Serge E. Hallyn" <serge@hallyn.com>
18841 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18842 S:      Supported
18843 W:      http://kernsec.org/
18844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18845 F:      security/
18846 X:      security/selinux/
18847
18848 SELINUX SECURITY MODULE
18849 M:      Paul Moore <paul@paul-moore.com>
18850 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18851 M:      Eric Paris <eparis@parisplace.org>
18852 L:      selinux@vger.kernel.org
18853 S:      Supported
18854 W:      https://selinuxproject.org
18855 W:      https://github.com/SELinuxProject
18856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18857 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18858 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18859 F:      Documentation/admin-guide/LSM/SELinux.rst
18860 F:      include/trace/events/avc.h
18861 F:      include/uapi/linux/selinux_netlink.h
18862 F:      scripts/selinux/
18863 F:      security/selinux/
18864
18865 SENSABLE PHANTOM
18866 M:      Jiri Slaby <jirislaby@kernel.org>
18867 S:      Maintained
18868 F:      drivers/misc/phantom.c
18869 F:      include/uapi/linux/phantom.h
18870
18871 SENSEAIR SUNRISE 006-0-0007
18872 M:      Jacopo Mondi <jacopo@jmondi.org>
18873 S:      Maintained
18874 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18875 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18876 F:      drivers/iio/chemical/sunrise_co2.c
18877
18878 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18879 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18880 S:      Maintained
18881 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18882 F:      drivers/iio/chemical/scd30.h
18883 F:      drivers/iio/chemical/scd30_core.c
18884 F:      drivers/iio/chemical/scd30_i2c.c
18885 F:      drivers/iio/chemical/scd30_serial.c
18886
18887 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18888 M:      Roan van Dijk <roan@protonic.nl>
18889 S:      Maintained
18890 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18891 F:      drivers/iio/chemical/scd4x.c
18892
18893 SENSIRION SGP40 GAS SENSOR DRIVER
18894 M:      Andreas Klinger <ak@it-klinger.de>
18895 S:      Maintained
18896 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18897 F:      drivers/iio/chemical/sgp40.c
18898
18899 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18900 M:      Tomasz Duszynski <tduszyns@gmail.com>
18901 S:      Maintained
18902 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18903 F:      drivers/iio/chemical/sps30.c
18904 F:      drivers/iio/chemical/sps30_i2c.c
18905 F:      drivers/iio/chemical/sps30_serial.c
18906
18907 SERIAL DEVICE BUS
18908 M:      Rob Herring <robh@kernel.org>
18909 L:      linux-serial@vger.kernel.org
18910 S:      Maintained
18911 F:      Documentation/devicetree/bindings/serial/serial.yaml
18912 F:      drivers/tty/serdev/
18913 F:      include/linux/serdev.h
18914
18915 SERIAL DRIVERS
18916 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18917 L:      linux-serial@vger.kernel.org
18918 S:      Maintained
18919 F:      Documentation/devicetree/bindings/serial/
18920 F:      drivers/tty/serial/
18921
18922 SERIAL IR RECEIVER
18923 M:      Sean Young <sean@mess.org>
18924 L:      linux-media@vger.kernel.org
18925 S:      Maintained
18926 F:      drivers/media/rc/serial_ir.c
18927
18928 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18929 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18930 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18931 S:      Maintained
18932 F:      Documentation/devicetree/bindings/slimbus/
18933 F:      drivers/slimbus/
18934 F:      include/linux/slimbus.h
18935
18936 SFC NETWORK DRIVER
18937 M:      Edward Cree <ecree.xilinx@gmail.com>
18938 M:      Martin Habets <habetsm.xilinx@gmail.com>
18939 L:      netdev@vger.kernel.org
18940 S:      Supported
18941 F:      drivers/net/ethernet/sfc/
18942
18943 SFF/SFP/SFP+ MODULE SUPPORT
18944 M:      Russell King <linux@armlinux.org.uk>
18945 L:      netdev@vger.kernel.org
18946 S:      Maintained
18947 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18948 F:      drivers/net/phy/phylink.c
18949 F:      drivers/net/phy/sfp*
18950 F:      include/linux/mdio/mdio-i2c.h
18951 F:      include/linux/phylink.h
18952 F:      include/linux/sfp.h
18953 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)
18954
18955 SGI GRU DRIVER
18956 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18957 S:      Maintained
18958 F:      drivers/misc/sgi-gru/
18959
18960 SGI XP/XPC/XPNET DRIVER
18961 M:      Robin Holt <robinmholt@gmail.com>
18962 M:      Steve Wahl <steve.wahl@hpe.com>
18963 R:      Mike Travis <mike.travis@hpe.com>
18964 S:      Maintained
18965 F:      drivers/misc/sgi-xp/
18966
18967 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18968 M:      Karsten Graul <kgraul@linux.ibm.com>
18969 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18970 M:      Jan Karcher <jaka@linux.ibm.com>
18971 L:      linux-s390@vger.kernel.org
18972 S:      Supported
18973 F:      net/smc/
18974
18975 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18976 M:      Linus Walleij <linus.walleij@linaro.org>
18977 L:      linux-iio@vger.kernel.org
18978 S:      Maintained
18979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18980 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18981 F:      drivers/iio/light/gp2ap002.c
18982
18983 SHARP RJ54N1CB0C SENSOR DRIVER
18984 M:      Jacopo Mondi <jacopo@jmondi.org>
18985 L:      linux-media@vger.kernel.org
18986 S:      Odd fixes
18987 T:      git git://linuxtv.org/media_tree.git
18988 F:      drivers/media/i2c/rj54n1cb0c.c
18989 F:      include/media/i2c/rj54n1cb0c.h
18990
18991 SH_VOU V4L2 OUTPUT DRIVER
18992 L:      linux-media@vger.kernel.org
18993 S:      Orphan
18994 F:      drivers/media/platform/renesas/sh_vou.c
18995 F:      include/media/drv-intf/sh_vou.h
18996
18997 SI2157 MEDIA DRIVER
18998 M:      Antti Palosaari <crope@iki.fi>
18999 L:      linux-media@vger.kernel.org
19000 S:      Maintained
19001 W:      https://linuxtv.org
19002 W:      http://palosaari.fi/linux/
19003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19004 T:      git git://linuxtv.org/anttip/media_tree.git
19005 F:      drivers/media/tuners/si2157*
19006
19007 SI2165 MEDIA DRIVER
19008 M:      Matthias Schwarzott <zzam@gentoo.org>
19009 L:      linux-media@vger.kernel.org
19010 S:      Maintained
19011 W:      https://linuxtv.org
19012 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19013 F:      drivers/media/dvb-frontends/si2165*
19014
19015 SI2168 MEDIA DRIVER
19016 M:      Antti Palosaari <crope@iki.fi>
19017 L:      linux-media@vger.kernel.org
19018 S:      Maintained
19019 W:      https://linuxtv.org
19020 W:      http://palosaari.fi/linux/
19021 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19022 T:      git git://linuxtv.org/anttip/media_tree.git
19023 F:      drivers/media/dvb-frontends/si2168*
19024
19025 SI470X FM RADIO RECEIVER I2C DRIVER
19026 M:      Hans Verkuil <hverkuil@xs4all.nl>
19027 L:      linux-media@vger.kernel.org
19028 S:      Odd Fixes
19029 W:      https://linuxtv.org
19030 T:      git git://linuxtv.org/media_tree.git
19031 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
19032
19033 SI470X FM RADIO RECEIVER USB DRIVER
19034 M:      Hans Verkuil <hverkuil@xs4all.nl>
19035 L:      linux-media@vger.kernel.org
19036 S:      Maintained
19037 W:      https://linuxtv.org
19038 T:      git git://linuxtv.org/media_tree.git
19039 F:      drivers/media/radio/si470x/radio-si470x-common.c
19040 F:      drivers/media/radio/si470x/radio-si470x-usb.c
19041 F:      drivers/media/radio/si470x/radio-si470x.h
19042
19043 SI4713 FM RADIO TRANSMITTER I2C DRIVER
19044 M:      Eduardo Valentin <edubezval@gmail.com>
19045 L:      linux-media@vger.kernel.org
19046 S:      Odd Fixes
19047 W:      https://linuxtv.org
19048 T:      git git://linuxtv.org/media_tree.git
19049 F:      drivers/media/radio/si4713/si4713.?
19050
19051 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
19052 M:      Eduardo Valentin <edubezval@gmail.com>
19053 L:      linux-media@vger.kernel.org
19054 S:      Odd Fixes
19055 W:      https://linuxtv.org
19056 T:      git git://linuxtv.org/media_tree.git
19057 F:      drivers/media/radio/si4713/radio-platform-si4713.c
19058
19059 SI4713 FM RADIO TRANSMITTER USB DRIVER
19060 M:      Hans Verkuil <hverkuil@xs4all.nl>
19061 L:      linux-media@vger.kernel.org
19062 S:      Maintained
19063 W:      https://linuxtv.org
19064 T:      git git://linuxtv.org/media_tree.git
19065 F:      drivers/media/radio/si4713/radio-usb-si4713.c
19066
19067 SIANO DVB DRIVER
19068 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19069 L:      linux-media@vger.kernel.org
19070 S:      Odd fixes
19071 W:      https://linuxtv.org
19072 T:      git git://linuxtv.org/media_tree.git
19073 F:      drivers/media/common/siano/
19074 F:      drivers/media/mmc/siano/
19075 F:      drivers/media/usb/siano/
19076 F:      drivers/media/usb/siano/
19077
19078 SIFIVE DRIVERS
19079 M:      Palmer Dabbelt <palmer@dabbelt.com>
19080 M:      Paul Walmsley <paul.walmsley@sifive.com>
19081 L:      linux-riscv@lists.infradead.org
19082 S:      Supported
19083 N:      sifive
19084 K:      [^@]sifive
19085
19086 SIFIVE FU540 SYSTEM-ON-CHIP
19087 M:      Paul Walmsley <paul.walmsley@sifive.com>
19088 M:      Palmer Dabbelt <palmer@dabbelt.com>
19089 L:      linux-riscv@lists.infradead.org
19090 S:      Supported
19091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
19092 N:      fu540
19093 K:      fu540
19094
19095 SIFIVE PDMA DRIVER
19096 M:      Green Wan <green.wan@sifive.com>
19097 S:      Maintained
19098 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
19099 F:      drivers/dma/sf-pdma/
19100
19101 SIFIVE SOC DRIVERS
19102 M:      Conor Dooley <conor@kernel.org>
19103 L:      linux-riscv@lists.infradead.org
19104 S:      Maintained
19105 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
19106 F:      drivers/soc/sifive/
19107
19108 SILEAD TOUCHSCREEN DRIVER
19109 M:      Hans de Goede <hdegoede@redhat.com>
19110 L:      linux-input@vger.kernel.org
19111 L:      platform-driver-x86@vger.kernel.org
19112 S:      Maintained
19113 F:      drivers/input/touchscreen/silead.c
19114 F:      drivers/platform/x86/touchscreen_dmi.c
19115
19116 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
19117 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
19118 S:      Supported
19119 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
19120 F:      drivers/net/wireless/silabs/wfx/
19121
19122 SILICON MOTION SM712 FRAME BUFFER DRIVER
19123 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19124 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19125 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19126 L:      linux-fbdev@vger.kernel.org
19127 S:      Maintained
19128 F:      Documentation/fb/sm712fb.rst
19129 F:      drivers/video/fbdev/sm712*
19130
19131 SILVACO I3C DUAL-ROLE MASTER
19132 M:      Miquel Raynal <miquel.raynal@bootlin.com>
19133 M:      Conor Culhane <conor.culhane@silvaco.com>
19134 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
19135 S:      Maintained
19136 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
19137 F:      drivers/i3c/master/svc-i3c-master.c
19138
19139 SIMPLEFB FB DRIVER
19140 M:      Hans de Goede <hdegoede@redhat.com>
19141 L:      linux-fbdev@vger.kernel.org
19142 S:      Maintained
19143 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19144 F:      drivers/video/fbdev/simplefb.c
19145 F:      include/linux/platform_data/simplefb.h
19146
19147 SIMTEC EB110ATX (Chalice CATS)
19148 M:      Simtec Linux Team <linux@simtec.co.uk>
19149 S:      Supported
19150 W:      http://www.simtec.co.uk/products/EB110ATX/
19151
19152 SIMTEC EB2410ITX (BAST)
19153 M:      Simtec Linux Team <linux@simtec.co.uk>
19154 S:      Supported
19155 W:      http://www.simtec.co.uk/products/EB2410ITX/
19156 F:      arch/arm/mach-s3c/bast-ide.c
19157 F:      arch/arm/mach-s3c/bast-irq.c
19158 F:      arch/arm/mach-s3c/mach-bast.c
19159
19160 SIOX
19161 M:      Thorsten Scherer <t.scherer@eckelmann.de>
19162 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
19163 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
19164 S:      Supported
19165 F:      drivers/gpio/gpio-siox.c
19166 F:      drivers/siox/*
19167 F:      include/trace/events/siox.h
19168
19169 SIPHASH PRF ROUTINES
19170 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19171 S:      Maintained
19172 F:      include/linux/siphash.h
19173 F:      lib/siphash.c
19174 F:      lib/siphash_kunit.c
19175
19176 SIS 190 ETHERNET DRIVER
19177 M:      Francois Romieu <romieu@fr.zoreil.com>
19178 L:      netdev@vger.kernel.org
19179 S:      Maintained
19180 F:      drivers/net/ethernet/sis/sis190.c
19181
19182 SIS 900/7016 FAST ETHERNET DRIVER
19183 M:      Daniele Venzano <venza@brownhat.org>
19184 L:      netdev@vger.kernel.org
19185 S:      Maintained
19186 W:      http://www.brownhat.org/sis900.html
19187 F:      drivers/net/ethernet/sis/sis900.*
19188
19189 SIS FRAMEBUFFER DRIVER
19190 M:      Thomas Winischhofer <thomas@winischhofer.net>
19191 S:      Maintained
19192 W:      http://www.winischhofer.net/linuxsisvga.shtml
19193 F:      Documentation/fb/sisfb.rst
19194 F:      drivers/video/fbdev/sis/
19195 F:      include/video/sisfb.h
19196
19197 SIS I2C TOUCHSCREEN DRIVER
19198 M:      Mika Penttilä <mpenttil@redhat.com>
19199 L:      linux-input@vger.kernel.org
19200 S:      Maintained
19201 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19202 F:      drivers/input/touchscreen/sis_i2c.c
19203
19204 SIS USB2VGA DRIVER
19205 M:      Thomas Winischhofer <thomas@winischhofer.net>
19206 S:      Maintained
19207 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
19208 F:      drivers/usb/misc/sisusbvga/
19209
19210 SL28 CPLD MFD DRIVER
19211 M:      Michael Walle <michael@walle.cc>
19212 S:      Maintained
19213 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19214 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19215 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19216 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19217 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19218 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19219 F:      drivers/gpio/gpio-sl28cpld.c
19220 F:      drivers/hwmon/sl28cpld-hwmon.c
19221 F:      drivers/irqchip/irq-sl28cpld.c
19222 F:      drivers/pwm/pwm-sl28cpld.c
19223 F:      drivers/watchdog/sl28cpld_wdt.c
19224
19225 SLAB ALLOCATOR
19226 M:      Christoph Lameter <cl@linux.com>
19227 M:      Pekka Enberg <penberg@kernel.org>
19228 M:      David Rientjes <rientjes@google.com>
19229 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
19230 M:      Andrew Morton <akpm@linux-foundation.org>
19231 M:      Vlastimil Babka <vbabka@suse.cz>
19232 R:      Roman Gushchin <roman.gushchin@linux.dev>
19233 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
19234 L:      linux-mm@kvack.org
19235 S:      Maintained
19236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19237 F:      include/linux/sl?b*.h
19238 F:      mm/sl?b*
19239
19240 SLCAN CAN NETWORK DRIVER
19241 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
19242 L:      linux-can@vger.kernel.org
19243 S:      Maintained
19244 F:      drivers/net/can/slcan/
19245
19246 SLEEPABLE READ-COPY UPDATE (SRCU)
19247 M:      Lai Jiangshan <jiangshanlai@gmail.com>
19248 M:      "Paul E. McKenney" <paulmck@kernel.org>
19249 M:      Josh Triplett <josh@joshtriplett.org>
19250 R:      Steven Rostedt <rostedt@goodmis.org>
19251 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19252 L:      rcu@vger.kernel.org
19253 S:      Supported
19254 W:      http://www.rdrop.com/users/paulmck/RCU/
19255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19256 F:      include/linux/srcu*.h
19257 F:      kernel/rcu/srcu*.c
19258
19259 SMACK SECURITY MODULE
19260 M:      Casey Schaufler <casey@schaufler-ca.com>
19261 L:      linux-security-module@vger.kernel.org
19262 S:      Maintained
19263 W:      http://schaufler-ca.com
19264 T:      git git://github.com/cschaufler/smack-next
19265 F:      Documentation/admin-guide/LSM/Smack.rst
19266 F:      security/smack/
19267
19268 SMC91x ETHERNET DRIVER
19269 M:      Nicolas Pitre <nico@fluxnic.net>
19270 S:      Odd Fixes
19271 F:      drivers/net/ethernet/smsc/smc91x.*
19272
19273 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19274 M:      Mark Rutland <mark.rutland@arm.com>
19275 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
19276 M:      Sudeep Holla <sudeep.holla@arm.com>
19277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19278 S:      Maintained
19279 F:      drivers/firmware/smccc/
19280 F:      include/linux/arm-smccc.h
19281
19282 SMM665 HARDWARE MONITOR DRIVER
19283 M:      Guenter Roeck <linux@roeck-us.net>
19284 L:      linux-hwmon@vger.kernel.org
19285 S:      Maintained
19286 F:      Documentation/hwmon/smm665.rst
19287 F:      drivers/hwmon/smm665.c
19288
19289 SMSC EMC2103 HARDWARE MONITOR DRIVER
19290 M:      Steve Glendinning <steve.glendinning@shawell.net>
19291 L:      linux-hwmon@vger.kernel.org
19292 S:      Maintained
19293 F:      Documentation/hwmon/emc2103.rst
19294 F:      drivers/hwmon/emc2103.c
19295
19296 SMSC SCH5627 HARDWARE MONITOR DRIVER
19297 M:      Hans de Goede <hdegoede@redhat.com>
19298 L:      linux-hwmon@vger.kernel.org
19299 S:      Supported
19300 F:      Documentation/hwmon/sch5627.rst
19301 F:      drivers/hwmon/sch5627.c
19302
19303 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19304 M:      Steve Glendinning <steve.glendinning@shawell.net>
19305 L:      linux-fbdev@vger.kernel.org
19306 S:      Maintained
19307 F:      drivers/video/fbdev/smscufx.c
19308
19309 SMSC47B397 HARDWARE MONITOR DRIVER
19310 M:      Jean Delvare <jdelvare@suse.com>
19311 L:      linux-hwmon@vger.kernel.org
19312 S:      Maintained
19313 F:      Documentation/hwmon/smsc47b397.rst
19314 F:      drivers/hwmon/smsc47b397.c
19315
19316 SMSC911x ETHERNET DRIVER
19317 M:      Steve Glendinning <steve.glendinning@shawell.net>
19318 L:      netdev@vger.kernel.org
19319 S:      Maintained
19320 F:      drivers/net/ethernet/smsc/smsc911x.*
19321 F:      include/linux/smsc911x.h
19322
19323 SMSC9420 PCI ETHERNET DRIVER
19324 M:      Steve Glendinning <steve.glendinning@shawell.net>
19325 L:      netdev@vger.kernel.org
19326 S:      Maintained
19327 F:      drivers/net/ethernet/smsc/smsc9420.*
19328
19329 SOCIONEXT (SNI) AVE NETWORK DRIVER
19330 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19331 L:      netdev@vger.kernel.org
19332 S:      Maintained
19333 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19334 F:      drivers/net/ethernet/socionext/sni_ave.c
19335
19336 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19337 M:      Jassi Brar <jaswinder.singh@linaro.org>
19338 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
19339 L:      netdev@vger.kernel.org
19340 S:      Maintained
19341 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19342 F:      drivers/net/ethernet/socionext/netsec.c
19343
19344 SOCIONEXT (SNI) Synquacer SPI DRIVER
19345 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
19346 M:      Jassi Brar <jaswinder.singh@linaro.org>
19347 L:      linux-spi@vger.kernel.org
19348 S:      Maintained
19349 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19350 F:      drivers/spi/spi-synquacer.c
19351
19352 SOCIONEXT SYNQUACER I2C DRIVER
19353 M:      Ard Biesheuvel <ardb@kernel.org>
19354 L:      linux-i2c@vger.kernel.org
19355 S:      Maintained
19356 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
19357 F:      drivers/i2c/busses/i2c-synquacer.c
19358
19359 SOCIONEXT UNIPHIER SOUND DRIVER
19360 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19361 S:      Orphan
19362 F:      sound/soc/uniphier/
19363
19364 SOCKET TIMESTAMPING
19365 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19366 S:      Maintained
19367 F:      Documentation/networking/timestamping.rst
19368 F:      include/uapi/linux/net_tstamp.h
19369 F:      tools/testing/selftests/net/so_txtime.c
19370
19371 SOEKRIS NET48XX LED SUPPORT
19372 M:      Chris Boot <bootc@bootc.net>
19373 S:      Maintained
19374 F:      drivers/leds/leds-net48xx.c
19375
19376 SOFT-IWARP DRIVER (siw)
19377 M:      Bernard Metzler <bmt@zurich.ibm.com>
19378 L:      linux-rdma@vger.kernel.org
19379 S:      Supported
19380 F:      drivers/infiniband/sw/siw/
19381 F:      include/uapi/rdma/siw-abi.h
19382
19383 SOFT-ROCE DRIVER (rxe)
19384 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
19385 L:      linux-rdma@vger.kernel.org
19386 S:      Supported
19387 F:      drivers/infiniband/sw/rxe/
19388 F:      include/uapi/rdma/rdma_user_rxe.h
19389
19390 SOFTLOGIC 6x10 MPEG CODEC
19391 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19392 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19393 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19394 M:      Ismael Luceno <ismael@iodev.co.uk>
19395 L:      linux-media@vger.kernel.org
19396 S:      Supported
19397 F:      drivers/media/pci/solo6x10/
19398
19399 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19400 M:      James Morse <james.morse@arm.com>
19401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19402 S:      Maintained
19403 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19404 F:      drivers/firmware/arm_sdei.c
19405 F:      include/linux/arm_sdei.h
19406 F:      include/uapi/linux/arm_sdei.h
19407
19408 SOFTWARE NODES AND DEVICE PROPERTIES
19409 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19410 R:      Daniel Scally <djrscally@gmail.com>
19411 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19412 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19413 L:      linux-acpi@vger.kernel.org
19414 S:      Maintained
19415 F:      drivers/base/property.c
19416 F:      drivers/base/swnode.c
19417 F:      include/linux/fwnode.h
19418 F:      include/linux/property.h
19419
19420 SOFTWARE RAID (Multiple Disks) SUPPORT
19421 M:      Song Liu <song@kernel.org>
19422 L:      linux-raid@vger.kernel.org
19423 S:      Supported
19424 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19426 F:      drivers/md/Kconfig
19427 F:      drivers/md/Makefile
19428 F:      drivers/md/md*
19429 F:      drivers/md/raid*
19430 F:      include/linux/raid/
19431 F:      include/uapi/linux/raid/
19432
19433 SOLIDRUN CLEARFOG SUPPORT
19434 M:      Russell King <linux@armlinux.org.uk>
19435 S:      Maintained
19436 F:      arch/arm/boot/dts/armada-388-clearfog*
19437 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19438
19439 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19440 M:      Russell King <linux@armlinux.org.uk>
19441 S:      Maintained
19442 F:      arch/arm/boot/dts/imx6*-cubox-i*
19443 F:      arch/arm/boot/dts/imx6*-hummingboard*
19444 F:      arch/arm/boot/dts/imx6*-sr-*
19445
19446 SONIC NETWORK DRIVER
19447 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19448 L:      netdev@vger.kernel.org
19449 S:      Maintained
19450 F:      drivers/net/ethernet/natsemi/sonic.*
19451
19452 SONICS SILICON BACKPLANE DRIVER (SSB)
19453 M:      Michael Buesch <m@bues.ch>
19454 L:      linux-wireless@vger.kernel.org
19455 S:      Maintained
19456 F:      drivers/ssb/
19457 F:      include/linux/ssb/
19458
19459 SONY IMX208 SENSOR DRIVER
19460 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19461 L:      linux-media@vger.kernel.org
19462 S:      Maintained
19463 T:      git git://linuxtv.org/media_tree.git
19464 F:      drivers/media/i2c/imx208.c
19465
19466 SONY IMX214 SENSOR DRIVER
19467 M:      Ricardo Ribalda <ribalda@kernel.org>
19468 L:      linux-media@vger.kernel.org
19469 S:      Maintained
19470 T:      git git://linuxtv.org/media_tree.git
19471 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19472 F:      drivers/media/i2c/imx214.c
19473
19474 SONY IMX219 SENSOR DRIVER
19475 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19476 L:      linux-media@vger.kernel.org
19477 S:      Maintained
19478 T:      git git://linuxtv.org/media_tree.git
19479 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19480 F:      drivers/media/i2c/imx219.c
19481
19482 SONY IMX258 SENSOR DRIVER
19483 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19484 L:      linux-media@vger.kernel.org
19485 S:      Maintained
19486 T:      git git://linuxtv.org/media_tree.git
19487 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19488 F:      drivers/media/i2c/imx258.c
19489
19490 SONY IMX274 SENSOR DRIVER
19491 M:      Leon Luo <leonl@leopardimaging.com>
19492 L:      linux-media@vger.kernel.org
19493 S:      Maintained
19494 T:      git git://linuxtv.org/media_tree.git
19495 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19496 F:      drivers/media/i2c/imx274.c
19497
19498 SONY IMX290 SENSOR DRIVER
19499 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19500 L:      linux-media@vger.kernel.org
19501 S:      Maintained
19502 T:      git git://linuxtv.org/media_tree.git
19503 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19504 F:      drivers/media/i2c/imx290.c
19505
19506 SONY IMX319 SENSOR DRIVER
19507 M:      Bingbu Cao <bingbu.cao@intel.com>
19508 L:      linux-media@vger.kernel.org
19509 S:      Maintained
19510 T:      git git://linuxtv.org/media_tree.git
19511 F:      drivers/media/i2c/imx319.c
19512
19513 SONY IMX334 SENSOR DRIVER
19514 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19515 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19516 L:      linux-media@vger.kernel.org
19517 S:      Maintained
19518 T:      git git://linuxtv.org/media_tree.git
19519 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19520 F:      drivers/media/i2c/imx334.c
19521
19522 SONY IMX335 SENSOR DRIVER
19523 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19524 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19525 L:      linux-media@vger.kernel.org
19526 S:      Maintained
19527 T:      git git://linuxtv.org/media_tree.git
19528 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19529 F:      drivers/media/i2c/imx335.c
19530
19531 SONY IMX355 SENSOR DRIVER
19532 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19533 L:      linux-media@vger.kernel.org
19534 S:      Maintained
19535 T:      git git://linuxtv.org/media_tree.git
19536 F:      drivers/media/i2c/imx355.c
19537
19538 SONY IMX412 SENSOR DRIVER
19539 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19540 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19541 L:      linux-media@vger.kernel.org
19542 S:      Maintained
19543 T:      git git://linuxtv.org/media_tree.git
19544 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19545 F:      drivers/media/i2c/imx412.c
19546
19547 SONY MEMORYSTICK SUBSYSTEM
19548 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19549 M:      Alex Dubov <oakad@yahoo.com>
19550 M:      Ulf Hansson <ulf.hansson@linaro.org>
19551 L:      linux-mmc@vger.kernel.org
19552 S:      Maintained
19553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19554 F:      drivers/memstick/
19555 F:      include/linux/memstick.h
19556
19557 SONY VAIO CONTROL DEVICE DRIVER
19558 M:      Mattia Dongili <malattia@linux.it>
19559 L:      platform-driver-x86@vger.kernel.org
19560 S:      Maintained
19561 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19562 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19563 F:      drivers/char/sonypi.c
19564 F:      drivers/platform/x86/sony-laptop.c
19565 F:      include/linux/sony-laptop.h
19566
19567 SOUND
19568 M:      Jaroslav Kysela <perex@perex.cz>
19569 M:      Takashi Iwai <tiwai@suse.com>
19570 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19571 S:      Maintained
19572 W:      http://www.alsa-project.org/
19573 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19575 F:      Documentation/sound/
19576 F:      include/sound/
19577 F:      include/uapi/sound/
19578 F:      sound/
19579 F:      tools/testing/selftests/alsa
19580
19581 SOUND - COMPRESSED AUDIO
19582 M:      Vinod Koul <vkoul@kernel.org>
19583 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19584 S:      Supported
19585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19586 F:      Documentation/sound/designs/compress-offload.rst
19587 F:      include/sound/compress_driver.h
19588 F:      include/uapi/sound/compress_*
19589 F:      sound/core/compress_offload.c
19590 F:      sound/soc/soc-compress.c
19591
19592 SOUND - DMAENGINE HELPERS
19593 M:      Lars-Peter Clausen <lars@metafoo.de>
19594 S:      Supported
19595 F:      include/sound/dmaengine_pcm.h
19596 F:      sound/core/pcm_dmaengine.c
19597 F:      sound/soc/soc-generic-dmaengine-pcm.c
19598
19599 SOUND - ALSA SELFTESTS
19600 M:      Mark Brown <broonie@kernel.org>
19601 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19602 L:      linux-kselftest@vger.kernel.org
19603 S:      Supported
19604 F:      tools/testing/selftests/alsa
19605
19606 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19607 M:      Liam Girdwood <lgirdwood@gmail.com>
19608 M:      Mark Brown <broonie@kernel.org>
19609 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19610 S:      Supported
19611 W:      http://alsa-project.org/main/index.php/ASoC
19612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19613 F:      Documentation/devicetree/bindings/sound/
19614 F:      Documentation/sound/soc/
19615 F:      include/dt-bindings/sound/
19616 F:      include/sound/soc*
19617 F:      sound/soc/
19618
19619 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19620 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19621 M:      Liam Girdwood <lgirdwood@gmail.com>
19622 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19623 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19624 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19625 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19626 M:      Daniel Baluta <daniel.baluta@nxp.com>
19627 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19628 S:      Supported
19629 W:      https://github.com/thesofproject/linux/
19630 F:      sound/soc/sof/
19631
19632 SOUNDWIRE SUBSYSTEM
19633 M:      Vinod Koul <vkoul@kernel.org>
19634 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19635 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19636 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19637 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19638 S:      Supported
19639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19640 F:      Documentation/driver-api/soundwire/
19641 F:      drivers/soundwire/
19642 F:      include/linux/soundwire/
19643
19644 SP2 MEDIA DRIVER
19645 M:      Olli Salonen <olli.salonen@iki.fi>
19646 L:      linux-media@vger.kernel.org
19647 S:      Maintained
19648 W:      https://linuxtv.org
19649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19650 F:      drivers/media/dvb-frontends/sp2*
19651
19652 SPANISH DOCUMENTATION
19653 M:      Carlos Bilbao <carlos.bilbao@amd.com>
19654 S:      Maintained
19655 F:      Documentation/translations/sp_SP/
19656
19657 SPARC + UltraSPARC (sparc/sparc64)
19658 M:      "David S. Miller" <davem@davemloft.net>
19659 L:      sparclinux@vger.kernel.org
19660 S:      Maintained
19661 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19664 F:      arch/sparc/
19665 F:      drivers/sbus/
19666
19667 SPARC SERIAL DRIVERS
19668 M:      "David S. Miller" <davem@davemloft.net>
19669 L:      sparclinux@vger.kernel.org
19670 S:      Maintained
19671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19673 F:      drivers/tty/serial/suncore.c
19674 F:      drivers/tty/serial/sunhv.c
19675 F:      drivers/tty/serial/sunsab.c
19676 F:      drivers/tty/serial/sunsab.h
19677 F:      drivers/tty/serial/sunsu.c
19678 F:      drivers/tty/serial/sunzilog.c
19679 F:      drivers/tty/serial/sunzilog.h
19680 F:      drivers/tty/vcc.c
19681 F:      include/linux/sunserialcore.h
19682
19683 SPARSE CHECKER
19684 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19685 L:      linux-sparse@vger.kernel.org
19686 S:      Maintained
19687 W:      https://sparse.docs.kernel.org/
19688 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19689 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19690 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19691 F:      include/linux/compiler.h
19692
19693 SPEAKUP CONSOLE SPEECH DRIVER
19694 M:      William Hubbs <w.d.hubbs@gmail.com>
19695 M:      Chris Brannon <chris@the-brannons.com>
19696 M:      Kirk Reiser <kirk@reisers.ca>
19697 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19698 L:      speakup@linux-speakup.org
19699 S:      Odd Fixes
19700 W:      http://www.linux-speakup.org/
19701 W:      https://github.com/linux-speakup/speakup
19702 B:      https://github.com/linux-speakup/speakup/issues
19703 F:      drivers/accessibility/speakup/
19704
19705 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19706 M:      Viresh Kumar <vireshk@kernel.org>
19707 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19708 M:      soc@kernel.org
19709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19710 S:      Maintained
19711 W:      http://www.st.com/spear
19712 F:      arch/arm/boot/dts/spear*
19713 F:      arch/arm/mach-spear/
19714 F:      drivers/clk/spear/
19715 F:      drivers/pinctrl/spear/
19716
19717 SPI NOR SUBSYSTEM
19718 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
19719 M:      Pratyush Yadav <pratyush@kernel.org>
19720 R:      Michael Walle <michael@walle.cc>
19721 L:      linux-mtd@lists.infradead.org
19722 S:      Maintained
19723 W:      http://www.linux-mtd.infradead.org/
19724 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19725 C:      irc://irc.oftc.net/mtd
19726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19727 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19728 F:      drivers/mtd/spi-nor/
19729 F:      include/linux/mtd/spi-nor.h
19730
19731 SPI SUBSYSTEM
19732 M:      Mark Brown <broonie@kernel.org>
19733 L:      linux-spi@vger.kernel.org
19734 S:      Maintained
19735 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19737 F:      Documentation/devicetree/bindings/spi/
19738 F:      Documentation/spi/
19739 F:      drivers/spi/
19740 F:      include/linux/spi/
19741 F:      include/uapi/linux/spi/
19742 F:      tools/spi/
19743
19744 SPIDERNET NETWORK DRIVER for CELL
19745 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19746 M:      Geoff Levand <geoff@infradead.org>
19747 L:      netdev@vger.kernel.org
19748 L:      linuxppc-dev@lists.ozlabs.org
19749 S:      Maintained
19750 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19751 F:      drivers/net/ethernet/toshiba/spider_net*
19752
19753 SPMI SUBSYSTEM
19754 M:      Stephen Boyd <sboyd@kernel.org>
19755 L:      linux-kernel@vger.kernel.org
19756 S:      Maintained
19757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19758 F:      Documentation/devicetree/bindings/spmi/
19759 F:      drivers/spmi/
19760 F:      include/dt-bindings/spmi/spmi.h
19761 F:      include/linux/spmi.h
19762 F:      include/trace/events/spmi.h
19763
19764 SPU FILE SYSTEM
19765 M:      Jeremy Kerr <jk@ozlabs.org>
19766 L:      linuxppc-dev@lists.ozlabs.org
19767 S:      Supported
19768 W:      http://www.ibm.com/developerworks/power/cell/
19769 F:      Documentation/filesystems/spufs/spufs.rst
19770 F:      arch/powerpc/platforms/cell/spufs/
19771
19772 SQUASHFS FILE SYSTEM
19773 M:      Phillip Lougher <phillip@squashfs.org.uk>
19774 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19775 S:      Maintained
19776 W:      http://squashfs.org.uk
19777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19778 F:      Documentation/filesystems/squashfs.rst
19779 F:      fs/squashfs/
19780
19781 SRM (Alpha) environment access
19782 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19783 S:      Maintained
19784 F:      arch/alpha/kernel/srm_env.c
19785
19786 ST LSM6DSx IMU IIO DRIVER
19787 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19788 L:      linux-iio@vger.kernel.org
19789 S:      Maintained
19790 W:      http://www.st.com/
19791 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19792 F:      drivers/iio/imu/st_lsm6dsx/
19793
19794 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19795 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19796 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19797 L:      linux-media@vger.kernel.org
19798 S:      Maintained
19799 T:      git git://linuxtv.org/media_tree.git
19800 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19801 F:      drivers/media/i2c/st-mipid02.c
19802
19803 ST STM32 I2C/SMBUS DRIVER
19804 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19805 M:      Alain Volmat <alain.volmat@foss.st.com>
19806 L:      linux-i2c@vger.kernel.org
19807 S:      Maintained
19808 F:      drivers/i2c/busses/i2c-stm32*
19809
19810 ST STM32 SPI DRIVER
19811 M:      Alain Volmat <alain.volmat@foss.st.com>
19812 L:      linux-spi@vger.kernel.org
19813 S:      Maintained
19814 F:      drivers/spi/spi-stm32.c
19815
19816 ST STPDDC60 DRIVER
19817 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19818 L:      linux-hwmon@vger.kernel.org
19819 S:      Maintained
19820 F:      Documentation/hwmon/stpddc60.rst
19821 F:      drivers/hwmon/pmbus/stpddc60.c
19822
19823 ST VGXY61 DRIVER
19824 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19825 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19826 L:      linux-media@vger.kernel.org
19827 S:      Maintained
19828 T:      git git://linuxtv.org/media_tree.git
19829 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19830 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19831 F:      drivers/media/i2c/st-vgxy61.c
19832
19833 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19834 M:      Song Qiang <songqiang1304521@gmail.com>
19835 L:      linux-iio@vger.kernel.org
19836 S:      Maintained
19837 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19838 F:      drivers/iio/proximity/vl53l0x-i2c.c
19839
19840 STABLE BRANCH
19841 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19842 M:      Sasha Levin <sashal@kernel.org>
19843 L:      stable@vger.kernel.org
19844 S:      Supported
19845 F:      Documentation/process/stable-kernel-rules.rst
19846
19847 STAGING - ATOMISP DRIVER
19848 M:      Hans de Goede <hdegoede@redhat.com>
19849 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19850 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19851 L:      linux-media@vger.kernel.org
19852 S:      Maintained
19853 F:      drivers/staging/media/atomisp/
19854
19855 STAGING - FIELDBUS SUBSYSTEM
19856 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19857 S:      Maintained
19858 F:      drivers/staging/fieldbus/*
19859 F:      drivers/staging/fieldbus/Documentation/
19860
19861 STAGING - HMS ANYBUS-S BUS
19862 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19863 S:      Maintained
19864 F:      drivers/staging/fieldbus/anybuss/
19865
19866 STAGING - INDUSTRIAL IO
19867 M:      Jonathan Cameron <jic23@kernel.org>
19868 L:      linux-iio@vger.kernel.org
19869 S:      Odd Fixes
19870 F:      Documentation/devicetree/bindings/staging/iio/
19871 F:      drivers/staging/iio/
19872
19873 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19874 M:      Marc Dietrich <marvin24@gmx.de>
19875 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19876 L:      linux-tegra@vger.kernel.org
19877 S:      Maintained
19878 F:      drivers/staging/nvec/
19879
19880 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19881 M:      Jens Frederich <jfrederich@gmail.com>
19882 M:      Jon Nettleton <jon.nettleton@gmail.com>
19883 S:      Maintained
19884 W:      http://wiki.laptop.org/go/DCON
19885 F:      drivers/staging/olpc_dcon/
19886
19887 STAGING - REALTEK RTL8188EU DRIVERS
19888 M:      Larry Finger <Larry.Finger@lwfinger.net>
19889 M:      Phillip Potter <phil@philpotter.co.uk>
19890 R:      Pavel Skripkin <paskripkin@gmail.com>
19891 S:      Supported
19892 F:      drivers/staging/r8188eu/
19893
19894 STAGING - REALTEK RTL8712U DRIVERS
19895 M:      Larry Finger <Larry.Finger@lwfinger.net>
19896 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19897 S:      Odd Fixes
19898 F:      drivers/staging/rtl8712/
19899
19900 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19901 M:      Michael Hennerich <michael.hennerich@analog.com>
19902 L:      linux-fbdev@vger.kernel.org
19903 S:      Supported
19904 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19905 F:      drivers/staging/fbtft/fb_seps525.c
19906
19907 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19908 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19909 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19910 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19911 L:      linux-fbdev@vger.kernel.org
19912 S:      Maintained
19913 F:      drivers/staging/sm750fb/
19914
19915 STAGING - VIA VT665X DRIVERS
19916 M:      Forest Bond <forest@alittletooquiet.net>
19917 S:      Odd Fixes
19918 F:      drivers/staging/vt665?/
19919
19920 STAGING SUBSYSTEM
19921 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19922 L:      linux-staging@lists.linux.dev
19923 S:      Supported
19924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19925 F:      drivers/staging/
19926
19927 STARFIRE/DURALAN NETWORK DRIVER
19928 M:      Ion Badulescu <ionut@badula.org>
19929 S:      Odd Fixes
19930 F:      drivers/net/ethernet/adaptec/starfire*
19931
19932 STARFIVE DEVICETREES
19933 M:      Emil Renner Berthing <kernel@esmil.dk>
19934 S:      Maintained
19935 F:      arch/riscv/boot/dts/starfive/
19936
19937 STARFIVE JH7100 CLOCK DRIVERS
19938 M:      Emil Renner Berthing <kernel@esmil.dk>
19939 S:      Maintained
19940 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19941 F:      drivers/clk/starfive/clk-starfive-jh7100*
19942 F:      include/dt-bindings/clock/starfive-jh7100*.h
19943
19944 STARFIVE JH7100 PINCTRL DRIVER
19945 M:      Emil Renner Berthing <kernel@esmil.dk>
19946 L:      linux-gpio@vger.kernel.org
19947 S:      Maintained
19948 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19949 F:      drivers/pinctrl/starfive/
19950 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
19951
19952 STARFIVE JH7100 RESET CONTROLLER DRIVER
19953 M:      Emil Renner Berthing <kernel@esmil.dk>
19954 S:      Maintained
19955 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19956 F:      drivers/reset/reset-starfive-jh7100.c
19957 F:      include/dt-bindings/reset/starfive-jh7100.h
19958
19959 STATIC BRANCH/CALL
19960 M:      Peter Zijlstra <peterz@infradead.org>
19961 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19962 M:      Jason Baron <jbaron@akamai.com>
19963 R:      Steven Rostedt <rostedt@goodmis.org>
19964 R:      Ard Biesheuvel <ardb@kernel.org>
19965 S:      Supported
19966 F:      arch/*/include/asm/jump_label*.h
19967 F:      arch/*/include/asm/static_call*.h
19968 F:      arch/*/kernel/jump_label.c
19969 F:      arch/*/kernel/static_call.c
19970 F:      include/linux/jump_label*.h
19971 F:      include/linux/static_call*.h
19972 F:      kernel/jump_label.c
19973 F:      kernel/static_call.c
19974
19975 STI AUDIO (ASoC) DRIVERS
19976 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19977 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19978 S:      Maintained
19979 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19980 F:      sound/soc/sti/
19981
19982 STI CEC DRIVER
19983 M:      Alain Volmat <alain.volmat@foss.st.com>
19984 S:      Maintained
19985 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19986 F:      drivers/media/cec/platform/sti/
19987
19988 STK1160 USB VIDEO CAPTURE DRIVER
19989 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19990 L:      linux-media@vger.kernel.org
19991 S:      Maintained
19992 T:      git git://linuxtv.org/media_tree.git
19993 F:      drivers/media/usb/stk1160/
19994
19995 STM32 AUDIO (ASoC) DRIVERS
19996 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19997 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19998 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19999 S:      Maintained
20000 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
20001 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
20002 F:      sound/soc/stm/
20003
20004 STM32 TIMER/LPTIMER DRIVERS
20005 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
20006 S:      Maintained
20007 F:      Documentation/ABI/testing/*timer-stm32
20008 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
20009 F:      drivers/*/stm32-*timer*
20010 F:      drivers/pwm/pwm-stm32*
20011 F:      include/linux/*/stm32-*tim*
20012
20013 STMMAC ETHERNET DRIVER
20014 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
20015 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
20016 M:      Jose Abreu <joabreu@synopsys.com>
20017 L:      netdev@vger.kernel.org
20018 S:      Supported
20019 W:      http://www.stlinux.com
20020 F:      Documentation/networking/device_drivers/ethernet/stmicro/
20021 F:      drivers/net/ethernet/stmicro/stmmac/
20022
20023 SUN3/3X
20024 M:      Sam Creasey <sammy@sammy.net>
20025 S:      Maintained
20026 W:      http://sammy.net/sun3/
20027 F:      arch/m68k/include/asm/sun3*
20028 F:      arch/m68k/kernel/*sun3*
20029 F:      arch/m68k/sun3*/
20030 F:      drivers/net/ethernet/i825xx/sun3*
20031
20032 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
20033 M:      Hans de Goede <hdegoede@redhat.com>
20034 L:      linux-input@vger.kernel.org
20035 S:      Maintained
20036 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
20037 F:      drivers/input/keyboard/sun4i-lradc-keys.c
20038
20039 SUNDANCE NETWORK DRIVER
20040 M:      Denis Kirjanov <kda@linux-powerpc.org>
20041 L:      netdev@vger.kernel.org
20042 S:      Maintained
20043 F:      drivers/net/ethernet/dlink/sundance.c
20044
20045 SUN HAPPY MEAL ETHERNET DRIVER
20046 M:      Sean Anderson <seanga2@gmail.com>
20047 S:      Maintained
20048 F:      drivers/net/ethernet/sun/sunhme.*
20049
20050 SUNPLUS ETHERNET DRIVER
20051 M:      Wells Lu <wellslutw@gmail.com>
20052 L:      netdev@vger.kernel.org
20053 S:      Maintained
20054 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
20055 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
20056 F:      drivers/net/ethernet/sunplus/
20057
20058 SUNPLUS MMC DRIVER
20059 M:      Tony Huang <tonyhuang.sunplus@gmail.com>
20060 M:      Li-hao Kuo <lhjeff911@gmail.com>
20061 S:      Maintained
20062 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
20063 F:      drivers/mmc/host/sunplus-mmc.c
20064
20065 SUNPLUS OCOTP DRIVER
20066 M:      Vincent Shih <vincent.sunplus@gmail.com>
20067 S:      Maintained
20068 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
20069 F:      drivers/nvmem/sunplus-ocotp.c
20070
20071 SUNPLUS USB2 PHY DRIVER
20072 M:      Vincent Shih <vincent.sunplus@gmail.com>
20073 L:      linux-usb@vger.kernel.org
20074 S:      Maintained
20075 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
20076 F:      drivers/phy/sunplus/Kconfig
20077 F:      drivers/phy/sunplus/Makefile
20078 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
20079
20080 SUNPLUS PWM DRIVER
20081 M:      Hammer Hsieh <hammerh0314@gmail.com>
20082 S:      Maintained
20083 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
20084 F:      drivers/pwm/pwm-sunplus.c
20085
20086 SUNPLUS RTC DRIVER
20087 M:      Vincent Shih <vincent.sunplus@gmail.com>
20088 L:      linux-rtc@vger.kernel.org
20089 S:      Maintained
20090 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
20091 F:      drivers/rtc/rtc-sunplus.c
20092
20093 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
20094 M:      Li-hao Kuo <lhjeff911@gmail.com>
20095 L:      linux-spi@vger.kernel.org
20096 S:      Maintained
20097 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
20098 F:      drivers/spi/spi-sunplus-sp7021.c
20099
20100 SUNPLUS UART DRIVER
20101 M:      Hammer Hsieh <hammerh0314@gmail.com>
20102 S:      Maintained
20103 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
20104 F:      drivers/tty/serial/sunplus-uart.c
20105
20106 SUNPLUS WATCHDOG DRIVER
20107 M:      Xiantao Hu <xt.hu@cqplus1.com>
20108 L:      linux-watchdog@vger.kernel.org
20109 S:      Maintained
20110 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
20111 F:      drivers/watchdog/sunplus_wdt.c
20112
20113 SUPERH
20114 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
20115 M:      Rich Felker <dalias@libc.org>
20116 L:      linux-sh@vger.kernel.org
20117 S:      Maintained
20118 Q:      http://patchwork.kernel.org/project/linux-sh/list/
20119 F:      Documentation/sh/
20120 F:      arch/sh/
20121 F:      drivers/sh/
20122
20123 SUSPEND TO RAM
20124 M:      "Rafael J. Wysocki" <rafael@kernel.org>
20125 M:      Len Brown <len.brown@intel.com>
20126 M:      Pavel Machek <pavel@ucw.cz>
20127 L:      linux-pm@vger.kernel.org
20128 S:      Supported
20129 B:      https://bugzilla.kernel.org
20130 F:      Documentation/power/
20131 F:      arch/x86/kernel/acpi/
20132 F:      drivers/base/power/
20133 F:      include/linux/freezer.h
20134 F:      include/linux/pm.h
20135 F:      include/linux/suspend.h
20136 F:      kernel/power/
20137
20138 SVGA HANDLING
20139 M:      Martin Mares <mj@ucw.cz>
20140 L:      linux-video@atrey.karlin.mff.cuni.cz
20141 S:      Maintained
20142 F:      Documentation/admin-guide/svga.rst
20143 F:      arch/x86/boot/video*
20144
20145 SWITCHDEV
20146 M:      Jiri Pirko <jiri@resnulli.us>
20147 M:      Ivan Vecera <ivecera@redhat.com>
20148 L:      netdev@vger.kernel.org
20149 S:      Supported
20150 F:      include/net/switchdev.h
20151 F:      net/switchdev/
20152
20153 SY8106A REGULATOR DRIVER
20154 M:      Icenowy Zheng <icenowy@aosc.io>
20155 S:      Maintained
20156 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20157 F:      drivers/regulator/sy8106a-regulator.c
20158
20159 SYNC FILE FRAMEWORK
20160 M:      Sumit Semwal <sumit.semwal@linaro.org>
20161 R:      Gustavo Padovan <gustavo@padovan.org>
20162 L:      linux-media@vger.kernel.org
20163 L:      dri-devel@lists.freedesktop.org
20164 S:      Maintained
20165 T:      git git://anongit.freedesktop.org/drm/drm-misc
20166 F:      Documentation/driver-api/sync_file.rst
20167 F:      drivers/dma-buf/dma-fence*
20168 F:      drivers/dma-buf/sw_sync.c
20169 F:      drivers/dma-buf/sync_*
20170 F:      include/linux/sync_file.h
20171 F:      include/uapi/linux/sync_file.h
20172
20173 SYNOPSYS ARC ARCHITECTURE
20174 M:      Vineet Gupta <vgupta@kernel.org>
20175 L:      linux-snps-arc@lists.infradead.org
20176 S:      Supported
20177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20178 F:      Documentation/arc/
20179 F:      Documentation/devicetree/bindings/arc/*
20180 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20181 F:      arch/arc/
20182 F:      drivers/clocksource/arc_timer.c
20183 F:      drivers/tty/serial/arc_uart.c
20184
20185 SYNOPSYS ARC HSDK SDP pll clock driver
20186 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20187 S:      Supported
20188 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20189 F:      drivers/clk/clk-hsdk-pll.c
20190
20191 SYNOPSYS ARC SDP clock driver
20192 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20193 S:      Supported
20194 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20195 F:      drivers/clk/axs10x/*
20196
20197 SYNOPSYS ARC SDP platform support
20198 M:      Alexey Brodkin <abrodkin@synopsys.com>
20199 S:      Supported
20200 F:      Documentation/devicetree/bindings/arc/axs10*
20201 F:      arch/arc/boot/dts/ax*
20202 F:      arch/arc/plat-axs10x
20203
20204 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20205 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20206 S:      Supported
20207 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20208 F:      drivers/reset/reset-axs10x.c
20209
20210 SYNOPSYS CREG GPIO DRIVER
20211 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20212 S:      Maintained
20213 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20214 F:      drivers/gpio/gpio-creg-snps.c
20215
20216 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20217 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20218 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20219 S:      Supported
20220 F:      drivers/tty/serial/8250/8250_dw.c
20221 F:      drivers/tty/serial/8250/8250_dwlib.*
20222 F:      drivers/tty/serial/8250/8250_lpss.c
20223
20224 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20225 M:      Hoan Tran <hoan@os.amperecomputing.com>
20226 M:      Serge Semin <fancer.lancer@gmail.com>
20227 L:      linux-gpio@vger.kernel.org
20228 S:      Maintained
20229 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20230 F:      drivers/gpio/gpio-dwapb.c
20231
20232 SYNOPSYS DESIGNWARE APB SSI DRIVER
20233 M:      Serge Semin <fancer.lancer@gmail.com>
20234 L:      linux-spi@vger.kernel.org
20235 S:      Supported
20236 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20237 F:      drivers/spi/spi-dw*
20238
20239 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20240 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20241 S:      Maintained
20242 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20243 F:      drivers/dma/dw-axi-dmac/
20244
20245 SYNOPSYS DESIGNWARE DMAC DRIVER
20246 M:      Viresh Kumar <vireshk@kernel.org>
20247 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20248 S:      Maintained
20249 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20250 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20251 F:      drivers/dma/dw/
20252 F:      include/dt-bindings/dma/dw-dmac.h
20253 F:      include/linux/dma/dw.h
20254 F:      include/linux/platform_data/dma-dw.h
20255
20256 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20257 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20258 L:      netdev@vger.kernel.org
20259 S:      Supported
20260 F:      drivers/net/ethernet/synopsys/
20261
20262 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20263 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20264 L:      netdev@vger.kernel.org
20265 S:      Supported
20266 F:      drivers/net/pcs/pcs-xpcs.c
20267 F:      drivers/net/pcs/pcs-xpcs.h
20268 F:      include/linux/pcs/pcs-xpcs.h
20269
20270 SYNOPSYS DESIGNWARE I2C DRIVER
20271 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
20272 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20273 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
20274 R:      Jan Dabros <jsd@semihalf.com>
20275 L:      linux-i2c@vger.kernel.org
20276 S:      Supported
20277 F:      drivers/i2c/busses/i2c-designware-*
20278
20279 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20280 M:      Jaehoon Chung <jh80.chung@samsung.com>
20281 L:      linux-mmc@vger.kernel.org
20282 S:      Maintained
20283 F:      drivers/mmc/host/dw_mmc*
20284
20285 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20286 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20287 S:      Supported
20288 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20289 F:      drivers/reset/reset-hsdk.c
20290 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20291
20292 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20293 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
20294 M:      Manjunath M B <manjumb@synopsys.com>
20295 L:      linux-mmc@vger.kernel.org
20296 S:      Maintained
20297 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20298
20299 SYSTEM CONFIGURATION (SYSCON)
20300 M:      Lee Jones <lee@kernel.org>
20301 M:      Arnd Bergmann <arnd@arndb.de>
20302 S:      Supported
20303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20304 F:      drivers/mfd/syscon.c
20305
20306 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20307 M:      Sudeep Holla <sudeep.holla@arm.com>
20308 R:      Cristian Marussi <cristian.marussi@arm.com>
20309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20310 S:      Maintained
20311 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20312 F:      drivers/clk/clk-sc[mp]i.c
20313 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20314 F:      drivers/firmware/arm_scmi/
20315 F:      drivers/firmware/arm_scpi.c
20316 F:      drivers/powercap/arm_scmi_powercap.c
20317 F:      drivers/regulator/scmi-regulator.c
20318 F:      drivers/reset/reset-scmi.c
20319 F:      include/linux/sc[mp]i_protocol.h
20320 F:      include/trace/events/scmi.h
20321 F:      include/uapi/linux/virtio_scmi.h
20322
20323 SYSTEM RESET/SHUTDOWN DRIVERS
20324 M:      Sebastian Reichel <sre@kernel.org>
20325 L:      linux-pm@vger.kernel.org
20326 S:      Maintained
20327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20328 F:      Documentation/devicetree/bindings/power/reset/
20329 F:      drivers/power/reset/
20330
20331 SYSTEM TRACE MODULE CLASS
20332 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
20333 S:      Maintained
20334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20335 F:      Documentation/trace/stm.rst
20336 F:      drivers/hwtracing/stm/
20337 F:      include/linux/stm.h
20338 F:      include/uapi/linux/stm.h
20339
20340 SYSTEM76 ACPI DRIVER
20341 M:      Jeremy Soller <jeremy@system76.com>
20342 M:      System76 Product Development <productdev@system76.com>
20343 L:      platform-driver-x86@vger.kernel.org
20344 S:      Maintained
20345 F:      drivers/platform/x86/system76_acpi.c
20346
20347 SYSV FILESYSTEM
20348 M:      Christoph Hellwig <hch@infradead.org>
20349 S:      Maintained
20350 F:      Documentation/filesystems/sysv-fs.rst
20351 F:      fs/sysv/
20352 F:      include/linux/sysv_fs.h
20353
20354 TASKSTATS STATISTICS INTERFACE
20355 M:      Balbir Singh <bsingharora@gmail.com>
20356 S:      Maintained
20357 F:      Documentation/accounting/taskstats*
20358 F:      include/linux/taskstats*
20359 F:      kernel/taskstats.c
20360
20361 TC subsystem
20362 M:      Jamal Hadi Salim <jhs@mojatatu.com>
20363 M:      Cong Wang <xiyou.wangcong@gmail.com>
20364 M:      Jiri Pirko <jiri@resnulli.us>
20365 L:      netdev@vger.kernel.org
20366 S:      Maintained
20367 F:      include/net/pkt_cls.h
20368 F:      include/net/pkt_sched.h
20369 F:      include/net/tc_act/
20370 F:      include/uapi/linux/pkt_cls.h
20371 F:      include/uapi/linux/pkt_sched.h
20372 F:      include/uapi/linux/tc_act/
20373 F:      include/uapi/linux/tc_ematch/
20374 F:      net/sched/
20375 F:      tools/testing/selftests/tc-testing
20376
20377 TC90522 MEDIA DRIVER
20378 M:      Akihiro Tsukada <tskd08@gmail.com>
20379 L:      linux-media@vger.kernel.org
20380 S:      Odd Fixes
20381 F:      drivers/media/dvb-frontends/tc90522*
20382
20383 TCP LOW PRIORITY MODULE
20384 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20385 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20386 S:      Maintained
20387 W:      http://tcp-lp-mod.sourceforge.net/
20388 F:      net/ipv4/tcp_lp.c
20389
20390 TDA10071 MEDIA DRIVER
20391 M:      Antti Palosaari <crope@iki.fi>
20392 L:      linux-media@vger.kernel.org
20393 S:      Maintained
20394 W:      https://linuxtv.org
20395 W:      http://palosaari.fi/linux/
20396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20397 T:      git git://linuxtv.org/anttip/media_tree.git
20398 F:      drivers/media/dvb-frontends/tda10071*
20399
20400 TDA18212 MEDIA DRIVER
20401 M:      Antti Palosaari <crope@iki.fi>
20402 L:      linux-media@vger.kernel.org
20403 S:      Maintained
20404 W:      https://linuxtv.org
20405 W:      http://palosaari.fi/linux/
20406 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20407 T:      git git://linuxtv.org/anttip/media_tree.git
20408 F:      drivers/media/tuners/tda18212*
20409
20410 TDA18218 MEDIA DRIVER
20411 M:      Antti Palosaari <crope@iki.fi>
20412 L:      linux-media@vger.kernel.org
20413 S:      Maintained
20414 W:      https://linuxtv.org
20415 W:      http://palosaari.fi/linux/
20416 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20417 T:      git git://linuxtv.org/anttip/media_tree.git
20418 F:      drivers/media/tuners/tda18218*
20419
20420 TDA18250 MEDIA DRIVER
20421 M:      Olli Salonen <olli.salonen@iki.fi>
20422 L:      linux-media@vger.kernel.org
20423 S:      Maintained
20424 W:      https://linuxtv.org
20425 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20426 T:      git git://linuxtv.org/media_tree.git
20427 F:      drivers/media/tuners/tda18250*
20428
20429 TDA18271 MEDIA DRIVER
20430 M:      Michael Krufky <mkrufky@linuxtv.org>
20431 L:      linux-media@vger.kernel.org
20432 S:      Maintained
20433 W:      https://linuxtv.org
20434 W:      http://github.com/mkrufky
20435 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20436 T:      git git://linuxtv.org/mkrufky/tuners.git
20437 F:      drivers/media/tuners/tda18271*
20438
20439 TDA1997x MEDIA DRIVER
20440 M:      Tim Harvey <tharvey@gateworks.com>
20441 L:      linux-media@vger.kernel.org
20442 S:      Maintained
20443 W:      https://linuxtv.org
20444 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20445 F:      drivers/media/i2c/tda1997x.*
20446
20447 TDA827x MEDIA DRIVER
20448 M:      Michael Krufky <mkrufky@linuxtv.org>
20449 L:      linux-media@vger.kernel.org
20450 S:      Maintained
20451 W:      https://linuxtv.org
20452 W:      http://github.com/mkrufky
20453 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20454 T:      git git://linuxtv.org/mkrufky/tuners.git
20455 F:      drivers/media/tuners/tda8290.*
20456
20457 TDA8290 MEDIA DRIVER
20458 M:      Michael Krufky <mkrufky@linuxtv.org>
20459 L:      linux-media@vger.kernel.org
20460 S:      Maintained
20461 W:      https://linuxtv.org
20462 W:      http://github.com/mkrufky
20463 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20464 T:      git git://linuxtv.org/mkrufky/tuners.git
20465 F:      drivers/media/tuners/tda8290.*
20466
20467 TDA9840 MEDIA DRIVER
20468 M:      Hans Verkuil <hverkuil@xs4all.nl>
20469 L:      linux-media@vger.kernel.org
20470 S:      Maintained
20471 W:      https://linuxtv.org
20472 T:      git git://linuxtv.org/media_tree.git
20473 F:      drivers/media/i2c/tda9840*
20474
20475 TEA5761 TUNER DRIVER
20476 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20477 L:      linux-media@vger.kernel.org
20478 S:      Odd fixes
20479 W:      https://linuxtv.org
20480 T:      git git://linuxtv.org/media_tree.git
20481 F:      drivers/media/tuners/tea5761.*
20482
20483 TEA5767 TUNER DRIVER
20484 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20485 L:      linux-media@vger.kernel.org
20486 S:      Maintained
20487 W:      https://linuxtv.org
20488 T:      git git://linuxtv.org/media_tree.git
20489 F:      drivers/media/tuners/tea5767.*
20490
20491 TEA6415C MEDIA DRIVER
20492 M:      Hans Verkuil <hverkuil@xs4all.nl>
20493 L:      linux-media@vger.kernel.org
20494 S:      Maintained
20495 W:      https://linuxtv.org
20496 T:      git git://linuxtv.org/media_tree.git
20497 F:      drivers/media/i2c/tea6415c*
20498
20499 TEA6420 MEDIA DRIVER
20500 M:      Hans Verkuil <hverkuil@xs4all.nl>
20501 L:      linux-media@vger.kernel.org
20502 S:      Maintained
20503 W:      https://linuxtv.org
20504 T:      git git://linuxtv.org/media_tree.git
20505 F:      drivers/media/i2c/tea6420*
20506
20507 TEAM DRIVER
20508 M:      Jiri Pirko <jiri@resnulli.us>
20509 L:      netdev@vger.kernel.org
20510 S:      Supported
20511 F:      drivers/net/team/
20512 F:      include/linux/if_team.h
20513 F:      include/uapi/linux/if_team.h
20514 F:      tools/testing/selftests/drivers/net/team/
20515
20516 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20517 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20518 S:      Maintained
20519 F:      arch/x86/platform/ts5500/
20520
20521 TECHNOTREND USB IR RECEIVER
20522 M:      Sean Young <sean@mess.org>
20523 L:      linux-media@vger.kernel.org
20524 S:      Maintained
20525 F:      drivers/media/rc/ttusbir.c
20526
20527 TECHWELL TW9910 VIDEO DECODER
20528 L:      linux-media@vger.kernel.org
20529 S:      Orphan
20530 F:      drivers/media/i2c/tw9910.c
20531 F:      include/media/i2c/tw9910.h
20532
20533 TEE SUBSYSTEM
20534 M:      Jens Wiklander <jens.wiklander@linaro.org>
20535 R:      Sumit Garg <sumit.garg@linaro.org>
20536 L:      op-tee@lists.trustedfirmware.org
20537 S:      Maintained
20538 F:      Documentation/staging/tee.rst
20539 F:      drivers/tee/
20540 F:      include/linux/tee_drv.h
20541 F:      include/uapi/linux/tee.h
20542
20543 TEGRA ARCHITECTURE SUPPORT
20544 M:      Thierry Reding <thierry.reding@gmail.com>
20545 M:      Jonathan Hunter <jonathanh@nvidia.com>
20546 L:      linux-tegra@vger.kernel.org
20547 S:      Supported
20548 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20550 N:      [^a-z]tegra
20551
20552 TEGRA CLOCK DRIVER
20553 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20554 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20555 S:      Supported
20556 F:      drivers/clk/tegra/
20557
20558 TEGRA DMA DRIVERS
20559 M:      Laxman Dewangan <ldewangan@nvidia.com>
20560 M:      Jon Hunter <jonathanh@nvidia.com>
20561 S:      Supported
20562 F:      drivers/dma/tegra*
20563
20564 TEGRA I2C DRIVER
20565 M:      Laxman Dewangan <ldewangan@nvidia.com>
20566 R:      Dmitry Osipenko <digetx@gmail.com>
20567 S:      Supported
20568 F:      drivers/i2c/busses/i2c-tegra.c
20569
20570 TEGRA IOMMU DRIVERS
20571 M:      Thierry Reding <thierry.reding@gmail.com>
20572 R:      Krishna Reddy <vdumpa@nvidia.com>
20573 L:      linux-tegra@vger.kernel.org
20574 S:      Supported
20575 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20576 F:      drivers/iommu/tegra*
20577
20578 TEGRA KBC DRIVER
20579 M:      Laxman Dewangan <ldewangan@nvidia.com>
20580 S:      Supported
20581 F:      drivers/input/keyboard/tegra-kbc.c
20582
20583 TEGRA NAND DRIVER
20584 M:      Stefan Agner <stefan@agner.ch>
20585 M:      Lucas Stach <dev@lynxeye.de>
20586 S:      Maintained
20587 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20588 F:      drivers/mtd/nand/raw/tegra_nand.c
20589
20590 TEGRA PWM DRIVER
20591 M:      Thierry Reding <thierry.reding@gmail.com>
20592 S:      Supported
20593 F:      drivers/pwm/pwm-tegra.c
20594
20595 TEGRA SERIAL DRIVER
20596 M:      Laxman Dewangan <ldewangan@nvidia.com>
20597 S:      Supported
20598 F:      drivers/tty/serial/serial-tegra.c
20599
20600 TEGRA SPI DRIVER
20601 M:      Laxman Dewangan <ldewangan@nvidia.com>
20602 S:      Supported
20603 F:      drivers/spi/spi-tegra*
20604
20605 TEGRA QUAD SPI DRIVER
20606 M:      Thierry Reding <thierry.reding@gmail.com>
20607 M:      Jonathan Hunter <jonathanh@nvidia.com>
20608 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20609 L:      linux-tegra@vger.kernel.org
20610 S:      Maintained
20611 F:      drivers/spi/spi-tegra210-quad.c
20612
20613 TEGRA VIDEO DRIVER
20614 M:      Thierry Reding <thierry.reding@gmail.com>
20615 M:      Jonathan Hunter <jonathanh@nvidia.com>
20616 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20617 L:      linux-media@vger.kernel.org
20618 L:      linux-tegra@vger.kernel.org
20619 S:      Maintained
20620 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20621 F:      drivers/staging/media/tegra-video/
20622
20623 TEGRA XUSB PADCTL DRIVER
20624 M:      JC Kuo <jckuo@nvidia.com>
20625 S:      Supported
20626 F:      drivers/phy/tegra/xusb*
20627
20628 TEHUTI ETHERNET DRIVER
20629 M:      Andy Gospodarek <andy@greyhouse.net>
20630 L:      netdev@vger.kernel.org
20631 S:      Supported
20632 F:      drivers/net/ethernet/tehuti/*
20633
20634 TELECOM CLOCK DRIVER FOR MCPL0010
20635 M:      Mark Gross <markgross@kernel.org>
20636 S:      Supported
20637 F:      drivers/char/tlclk.c
20638
20639 TEMPO SEMICONDUCTOR DRIVERS
20640 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20641 S:      Maintained
20642 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20643 F:      sound/soc/codecs/tscs*.c
20644 F:      sound/soc/codecs/tscs*.h
20645
20646 TENSILICA XTENSA PORT (xtensa)
20647 M:      Chris Zankel <chris@zankel.net>
20648 M:      Max Filippov <jcmvbkbc@gmail.com>
20649 L:      linux-xtensa@linux-xtensa.org
20650 S:      Maintained
20651 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20652 F:      arch/xtensa/
20653 F:      drivers/irqchip/irq-xtensa-*
20654
20655 TEXAS INSTRUMENTS ASoC DRIVERS
20656 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20657 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20658 S:      Maintained
20659 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20660 F:      sound/soc/ti/
20661
20662 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20663 M:      Ricardo Ribalda <ribalda@kernel.org>
20664 L:      linux-iio@vger.kernel.org
20665 S:      Supported
20666 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20667 F:      drivers/iio/dac/ti-dac7612.c
20668
20669 TEXAS INSTRUMENTS DMA DRIVERS
20670 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20671 L:      dmaengine@vger.kernel.org
20672 S:      Maintained
20673 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20674 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20675 F:      Documentation/devicetree/bindings/dma/ti/
20676 F:      drivers/dma/ti/
20677 X:      drivers/dma/ti/cppi41.c
20678 F:      include/linux/dma/k3-udma-glue.h
20679 F:      include/linux/dma/ti-cppi5.h
20680 F:      include/linux/dma/k3-psil.h
20681
20682 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20683 M:      Nishanth Menon <nm@ti.com>
20684 M:      Tero Kristo <kristo@kernel.org>
20685 M:      Santosh Shilimkar <ssantosh@kernel.org>
20686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20687 S:      Maintained
20688 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20689 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20690 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20691 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20692 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20693 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20694 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20695 F:      drivers/clk/keystone/sci-clk.c
20696 F:      drivers/firmware/ti_sci*
20697 F:      drivers/irqchip/irq-ti-sci-inta.c
20698 F:      drivers/irqchip/irq-ti-sci-intr.c
20699 F:      drivers/reset/reset-ti-sci.c
20700 F:      drivers/soc/ti/ti_sci_inta_msi.c
20701 F:      drivers/soc/ti/ti_sci_pm_domains.c
20702 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20703 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20704 F:      include/linux/soc/ti/ti_sci_protocol.h
20705
20706 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20707 M:      Robert Marko <robert.marko@sartura.hr>
20708 M:      Luka Perkov <luka.perkov@sartura.hr>
20709 L:      linux-hwmon@vger.kernel.org
20710 S:      Maintained
20711 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20712 F:      Documentation/hwmon/tps23861.rst
20713 F:      drivers/hwmon/tps23861.c
20714
20715 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20716 M:      Puranjay Mohan <puranjay12@gmail.com>
20717 L:      linux-iio@vger.kernel.org
20718 S:      Supported
20719 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20720 F:      drivers/iio/temperature/tmp117.c
20721
20722 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20723 M:      Hans Verkuil <hverkuil@xs4all.nl>
20724 L:      linux-media@vger.kernel.org
20725 S:      Maintained
20726 W:      https://linuxtv.org
20727 T:      git git://linuxtv.org/media_tree.git
20728 F:      drivers/media/radio/radio-raremono.c
20729
20730 THERMAL
20731 M:      Rafael J. Wysocki <rafael@kernel.org>
20732 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20733 R:      Amit Kucheria <amitk@kernel.org>
20734 R:      Zhang Rui <rui.zhang@intel.com>
20735 L:      linux-pm@vger.kernel.org
20736 S:      Supported
20737 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20739 F:      Documentation/ABI/testing/sysfs-class-thermal
20740 F:      Documentation/devicetree/bindings/thermal/
20741 F:      Documentation/driver-api/thermal/
20742 F:      drivers/thermal/
20743 F:      include/dt-bindings/thermal/
20744 F:      include/linux/cpu_cooling.h
20745 F:      include/linux/thermal.h
20746 F:      include/uapi/linux/thermal.h
20747 F:      tools/lib/thermal/
20748 F:      tools/thermal/
20749
20750 THERMAL DRIVER FOR AMLOGIC SOCS
20751 M:      Guillaume La Roque <glaroque@baylibre.com>
20752 L:      linux-pm@vger.kernel.org
20753 L:      linux-amlogic@lists.infradead.org
20754 S:      Supported
20755 W:      http://linux-meson.com/
20756 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20757 F:      drivers/thermal/amlogic_thermal.c
20758
20759 THERMAL/CPU_COOLING
20760 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20761 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20762 M:      Viresh Kumar <viresh.kumar@linaro.org>
20763 R:      Lukasz Luba <lukasz.luba@arm.com>
20764 L:      linux-pm@vger.kernel.org
20765 S:      Supported
20766 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20767 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20768 F:      drivers/thermal/cpufreq_cooling.c
20769 F:      drivers/thermal/cpuidle_cooling.c
20770 F:      include/linux/cpu_cooling.h
20771
20772 THERMAL/POWER_ALLOCATOR
20773 M:      Lukasz Luba <lukasz.luba@arm.com>
20774 L:      linux-pm@vger.kernel.org
20775 S:      Maintained
20776 F:      Documentation/driver-api/thermal/power_allocator.rst
20777 F:      drivers/thermal/gov_power_allocator.c
20778 F:      include/trace/events/thermal_power_allocator.h
20779
20780 THINKPAD ACPI EXTRAS DRIVER
20781 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20782 L:      ibm-acpi-devel@lists.sourceforge.net
20783 L:      platform-driver-x86@vger.kernel.org
20784 S:      Maintained
20785 W:      http://ibm-acpi.sourceforge.net
20786 W:      http://thinkwiki.org/wiki/Ibm-acpi
20787 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20788 F:      drivers/platform/x86/thinkpad_acpi.c
20789
20790 THINKPAD LMI DRIVER
20791 M:      Mark Pearson <markpearson@lenovo.com>
20792 L:      platform-driver-x86@vger.kernel.org
20793 S:      Maintained
20794 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20795 F:      drivers/platform/x86/think-lmi.?
20796
20797 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20798 M:      Isaac Hazan <isaac.hazan@intel.com>
20799 L:      linux-usb@vger.kernel.org
20800 S:      Maintained
20801 F:      drivers/thunderbolt/dma_test.c
20802
20803 THUNDERBOLT DRIVER
20804 M:      Andreas Noever <andreas.noever@gmail.com>
20805 M:      Michael Jamet <michael.jamet@intel.com>
20806 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20807 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20808 L:      linux-usb@vger.kernel.org
20809 S:      Maintained
20810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20811 F:      Documentation/admin-guide/thunderbolt.rst
20812 F:      drivers/thunderbolt/
20813 F:      include/linux/thunderbolt.h
20814
20815 THUNDERBOLT NETWORK DRIVER
20816 M:      Michael Jamet <michael.jamet@intel.com>
20817 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20818 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20819 L:      netdev@vger.kernel.org
20820 S:      Maintained
20821 F:      drivers/net/thunderbolt.c
20822
20823 THUNDERX GPIO DRIVER
20824 M:      Robert Richter <rric@kernel.org>
20825 S:      Odd Fixes
20826 F:      drivers/gpio/gpio-thunderx.c
20827
20828 TI ADS7924 ADC DRIVER
20829 M:      Hugo Villeneuve <hvilleneuve@dimonoff.com>
20830 L:      linux-iio@vger.kernel.org
20831 S:      Supported
20832 F:      Documentation/devicetree/bindings/iio/adc/ti,ads7924.yaml
20833 F:      drivers/iio/adc/ti-ads7924.c
20834
20835 TI AM437X VPFE DRIVER
20836 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20837 L:      linux-media@vger.kernel.org
20838 S:      Maintained
20839 W:      https://linuxtv.org
20840 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20841 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20842 F:      drivers/media/platform/ti/am437x/
20843
20844 TI BANDGAP AND THERMAL DRIVER
20845 M:      Eduardo Valentin <edubezval@gmail.com>
20846 M:      Keerthy <j-keerthy@ti.com>
20847 L:      linux-pm@vger.kernel.org
20848 L:      linux-omap@vger.kernel.org
20849 S:      Maintained
20850 F:      drivers/thermal/ti-soc-thermal/
20851
20852 TI BQ27XXX POWER SUPPLY DRIVER
20853 F:      drivers/power/supply/bq27xxx_battery.c
20854 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20855 F:      include/linux/power/bq27xxx_battery.h
20856
20857 TI CDCE706 CLOCK DRIVER
20858 M:      Max Filippov <jcmvbkbc@gmail.com>
20859 S:      Maintained
20860 F:      drivers/clk/clk-cdce706.c
20861
20862 TI CLOCK DRIVER
20863 M:      Tero Kristo <kristo@kernel.org>
20864 L:      linux-omap@vger.kernel.org
20865 S:      Odd Fixes
20866 F:      drivers/clk/ti/
20867 F:      include/linux/clk/ti.h
20868
20869 TI DAVINCI MACHINE SUPPORT
20870 M:      Sekhar Nori <nsekhar@ti.com>
20871 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20873 S:      Supported
20874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20875 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20876 F:      arch/arm/boot/dts/da850*
20877 F:      arch/arm/mach-davinci/
20878 F:      drivers/i2c/busses/i2c-davinci.c
20879
20880 TI DAVINCI SERIES CLOCK DRIVER
20881 M:      David Lechner <david@lechnology.com>
20882 R:      Sekhar Nori <nsekhar@ti.com>
20883 S:      Maintained
20884 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20885 F:      drivers/clk/davinci/
20886 F:      include/linux/clk/davinci.h
20887
20888 TI DAVINCI SERIES GPIO DRIVER
20889 M:      Keerthy <j-keerthy@ti.com>
20890 L:      linux-gpio@vger.kernel.org
20891 S:      Maintained
20892 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20893 F:      drivers/gpio/gpio-davinci.c
20894
20895 TI DAVINCI SERIES MEDIA DRIVER
20896 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20897 L:      linux-media@vger.kernel.org
20898 S:      Maintained
20899 W:      https://linuxtv.org
20900 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20901 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20902 F:      drivers/media/platform/ti/davinci/
20903 F:      drivers/staging/media/deprecated/vpfe_capture/
20904 F:      include/media/davinci/
20905
20906 TI ENHANCED CAPTURE (eCAP) DRIVER
20907 M:      Vignesh Raghavendra <vigneshr@ti.com>
20908 R:      Julien Panis <jpanis@baylibre.com>
20909 L:      linux-iio@vger.kernel.org
20910 L:      linux-omap@vger.kernel.org
20911 S:      Maintained
20912 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
20913 F:      drivers/counter/ti-ecap-capture.c
20914
20915 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20916 R:      David Lechner <david@lechnology.com>
20917 L:      linux-iio@vger.kernel.org
20918 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20919 F:      drivers/counter/ti-eqep.c
20920
20921 TI ETHERNET SWITCH DRIVER (CPSW)
20922 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20923 L:      linux-omap@vger.kernel.org
20924 L:      netdev@vger.kernel.org
20925 S:      Maintained
20926 F:      drivers/net/ethernet/ti/cpsw*
20927 F:      drivers/net/ethernet/ti/davinci*
20928
20929 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20930 M:      Alex Dubov <oakad@yahoo.com>
20931 S:      Maintained
20932 W:      http://tifmxx.berlios.de/
20933 F:      drivers/memstick/host/tifm_ms.c
20934 F:      drivers/misc/tifm*
20935 F:      drivers/mmc/host/tifm_sd.c
20936 F:      include/linux/tifm.h
20937
20938 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20939 M:      Nishanth Menon <nm@ti.com>
20940 M:      Santosh Shilimkar <ssantosh@kernel.org>
20941 L:      linux-kernel@vger.kernel.org
20942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20943 S:      Maintained
20944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20945 F:      drivers/soc/ti/*
20946
20947 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20948 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20949 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20950 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20951 S:      Maintained
20952 F:      sound/soc/codecs/isabelle*
20953 F:      sound/soc/codecs/lm49453*
20954
20955 TI LMP92064 ADC DRIVER
20956 M:      Leonard Göhrs <l.goehrs@pengutronix.de>
20957 R:      kernel@pengutronix.de
20958 L:      linux-iio@vger.kernel.org
20959 S:      Maintained
20960 F:      Documentation/devicetree/bindings/iio/adc/ti,lmp92064.yaml
20961 F:      drivers/iio/adc/ti-lmp92064.c
20962
20963 TI PCM3060 ASoC CODEC DRIVER
20964 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20965 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20966 S:      Maintained
20967 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20968 F:      sound/soc/codecs/pcm3060*
20969
20970 TI TAS571X FAMILY ASoC CODEC DRIVER
20971 M:      Kevin Cernekee <cernekee@chromium.org>
20972 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20973 S:      Odd Fixes
20974 F:      sound/soc/codecs/tas571x*
20975
20976 TI TMAG5273 MAGNETOMETER DRIVER
20977 M:      Gerald Loacker <gerald.loacker@wolfvision.net>
20978 L:      linux-iio@vger.kernel.org
20979 S:      Maintained
20980 F:      Documentation/devicetree/bindings/iio/magnetometer/ti,tmag5273.yaml
20981 F:      drivers/iio/magnetometer/tmag5273.c
20982
20983 TI TRF7970A NFC DRIVER
20984 M:      Mark Greer <mgreer@animalcreek.com>
20985 L:      linux-wireless@vger.kernel.org
20986 L:      linux-nfc@lists.01.org (subscribers-only)
20987 S:      Supported
20988 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20989 F:      drivers/nfc/trf7970a.c
20990
20991 TI TSC2046 ADC DRIVER
20992 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20993 R:      kernel@pengutronix.de
20994 L:      linux-iio@vger.kernel.org
20995 S:      Maintained
20996 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20997 F:      drivers/iio/adc/ti-tsc2046.c
20998
20999 TI TWL4030 SERIES SOC CODEC DRIVER
21000 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
21001 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21002 S:      Maintained
21003 F:      sound/soc/codecs/twl4030*
21004
21005 TI VPE/CAL DRIVERS
21006 M:      Benoit Parrot <bparrot@ti.com>
21007 L:      linux-media@vger.kernel.org
21008 S:      Maintained
21009 W:      http://linuxtv.org/
21010 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21011 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
21012 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
21013 F:      drivers/media/platform/ti/cal/
21014 F:      drivers/media/platform/ti/vpe/
21015
21016 TI WILINK WIRELESS DRIVERS
21017 L:      linux-wireless@vger.kernel.org
21018 S:      Orphan
21019 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
21020 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
21021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
21022 F:      drivers/net/wireless/ti/
21023
21024 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
21025 M:      John Stultz <jstultz@google.com>
21026 M:      Thomas Gleixner <tglx@linutronix.de>
21027 R:      Stephen Boyd <sboyd@kernel.org>
21028 L:      linux-kernel@vger.kernel.org
21029 S:      Supported
21030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
21031 F:      include/linux/clocksource.h
21032 F:      include/linux/time.h
21033 F:      include/linux/timex.h
21034 F:      include/uapi/linux/time.h
21035 F:      include/uapi/linux/timex.h
21036 F:      kernel/time/alarmtimer.c
21037 F:      kernel/time/clocksource.c
21038 F:      kernel/time/ntp.c
21039 F:      kernel/time/time*.c
21040 F:      tools/testing/selftests/timers/
21041
21042 TIPC NETWORK LAYER
21043 M:      Jon Maloy <jmaloy@redhat.com>
21044 M:      Ying Xue <ying.xue@windriver.com>
21045 L:      netdev@vger.kernel.org (core kernel code)
21046 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
21047 S:      Maintained
21048 W:      http://tipc.sourceforge.net/
21049 F:      include/uapi/linux/tipc*.h
21050 F:      net/tipc/
21051
21052 TLAN NETWORK DRIVER
21053 M:      Samuel Chessman <chessman@tux.org>
21054 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
21055 S:      Maintained
21056 W:      http://sourceforge.net/projects/tlan/
21057 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
21058 F:      drivers/net/ethernet/ti/tlan.*
21059
21060 TM6000 VIDEO4LINUX DRIVER
21061 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21062 L:      linux-media@vger.kernel.org
21063 S:      Odd fixes
21064 W:      https://linuxtv.org
21065 T:      git git://linuxtv.org/media_tree.git
21066 F:      Documentation/admin-guide/media/tm6000*
21067 F:      drivers/staging/media/deprecated/tm6000/
21068
21069 TMIO/SDHI MMC DRIVER
21070 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
21071 L:      linux-mmc@vger.kernel.org
21072 L:      linux-renesas-soc@vger.kernel.org
21073 S:      Supported
21074 F:      drivers/mmc/host/renesas_sdhi*
21075 F:      drivers/mmc/host/tmio_mmc*
21076 F:      include/linux/mfd/tmio.h
21077
21078 TMP401 HARDWARE MONITOR DRIVER
21079 M:      Guenter Roeck <linux@roeck-us.net>
21080 L:      linux-hwmon@vger.kernel.org
21081 S:      Maintained
21082 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
21083 F:      Documentation/hwmon/tmp401.rst
21084 F:      drivers/hwmon/tmp401.c
21085
21086 TMP464 HARDWARE MONITOR DRIVER
21087 M:      Agathe Porte <agathe.porte@nokia.com>
21088 M:      Guenter Roeck <linux@roeck-us.net>
21089 L:      linux-hwmon@vger.kernel.org
21090 S:      Maintained
21091 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
21092 F:      Documentation/hwmon/tmp464.rst
21093 F:      drivers/hwmon/tmp464.c
21094
21095 TMP513 HARDWARE MONITOR DRIVER
21096 M:      Eric Tremblay <etremblay@distech-controls.com>
21097 L:      linux-hwmon@vger.kernel.org
21098 S:      Maintained
21099 F:      Documentation/hwmon/tmp513.rst
21100 F:      drivers/hwmon/tmp513.c
21101
21102 TMPFS (SHMEM FILESYSTEM)
21103 M:      Hugh Dickins <hughd@google.com>
21104 L:      linux-mm@kvack.org
21105 S:      Maintained
21106 F:      include/linux/shmem_fs.h
21107 F:      mm/shmem.c
21108
21109 TOMOYO SECURITY MODULE
21110 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
21111 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
21112 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
21113 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
21114 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
21115 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
21116 S:      Maintained
21117 W:      https://tomoyo.osdn.jp/
21118 F:      security/tomoyo/
21119
21120 TOPSTAR LAPTOP EXTRAS DRIVER
21121 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
21122 L:      platform-driver-x86@vger.kernel.org
21123 S:      Maintained
21124 F:      drivers/platform/x86/topstar-laptop.c
21125
21126 TORTURE-TEST MODULES
21127 M:      Davidlohr Bueso <dave@stgolabs.net>
21128 M:      "Paul E. McKenney" <paulmck@kernel.org>
21129 M:      Josh Triplett <josh@joshtriplett.org>
21130 L:      linux-kernel@vger.kernel.org
21131 S:      Supported
21132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
21133 F:      Documentation/RCU/torture.rst
21134 F:      kernel/locking/locktorture.c
21135 F:      kernel/rcu/rcuscale.c
21136 F:      kernel/rcu/rcutorture.c
21137 F:      kernel/rcu/refscale.c
21138 F:      kernel/torture.c
21139
21140 TOSHIBA ACPI EXTRAS DRIVER
21141 M:      Azael Avalos <coproscefalo@gmail.com>
21142 L:      platform-driver-x86@vger.kernel.org
21143 S:      Maintained
21144 F:      drivers/platform/x86/toshiba_acpi.c
21145
21146 TOSHIBA BLUETOOTH DRIVER
21147 M:      Azael Avalos <coproscefalo@gmail.com>
21148 L:      platform-driver-x86@vger.kernel.org
21149 S:      Maintained
21150 F:      drivers/platform/x86/toshiba_bluetooth.c
21151
21152 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
21153 M:      Azael Avalos <coproscefalo@gmail.com>
21154 L:      platform-driver-x86@vger.kernel.org
21155 S:      Maintained
21156 F:      drivers/platform/x86/toshiba_haps.c
21157
21158 TOSHIBA SMM DRIVER
21159 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
21160 S:      Maintained
21161 W:      http://www.buzzard.org.uk/toshiba/
21162 F:      drivers/char/toshiba.c
21163 F:      include/linux/toshiba.h
21164 F:      include/uapi/linux/toshiba.h
21165
21166 TOSHIBA TC358743 DRIVER
21167 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21168 L:      linux-media@vger.kernel.org
21169 S:      Maintained
21170 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
21171 F:      drivers/media/i2c/tc358743*
21172 F:      include/media/i2c/tc358743.h
21173
21174 TOSHIBA WMI HOTKEYS DRIVER
21175 M:      Azael Avalos <coproscefalo@gmail.com>
21176 L:      platform-driver-x86@vger.kernel.org
21177 S:      Maintained
21178 F:      drivers/platform/x86/toshiba-wmi.c
21179
21180 TPM DEVICE DRIVER
21181 M:      Peter Huewe <peterhuewe@gmx.de>
21182 M:      Jarkko Sakkinen <jarkko@kernel.org>
21183 R:      Jason Gunthorpe <jgg@ziepe.ca>
21184 L:      linux-integrity@vger.kernel.org
21185 S:      Maintained
21186 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21187 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
21188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21189 F:      drivers/char/tpm/
21190
21191 TPS546D24 DRIVER
21192 M:      Duke Du <dukedu83@gmail.com>
21193 L:      linux-hwmon@vger.kernel.org
21194 S:      Maintained
21195 F:      Documentation/hwmon/tps546d24.rst
21196 F:      drivers/hwmon/pmbus/tps546d24.c
21197
21198 TRACING
21199 M:      Steven Rostedt <rostedt@goodmis.org>
21200 M:      Masami Hiramatsu <mhiramat@kernel.org>
21201 L:      linux-kernel@vger.kernel.org
21202 L:      linux-trace-kernel@vger.kernel.org
21203 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
21204 S:      Maintained
21205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21206 F:      Documentation/trace/*
21207 F:      fs/tracefs/
21208 F:      include/linux/trace*.h
21209 F:      include/trace/
21210 F:      kernel/trace/
21211 F:      scripts/tracing/
21212 F:      tools/testing/selftests/ftrace/
21213
21214 TRACING MMIO ACCESSES (MMIOTRACE)
21215 M:      Steven Rostedt <rostedt@goodmis.org>
21216 M:      Masami Hiramatsu <mhiramat@kernel.org>
21217 R:      Karol Herbst <karolherbst@gmail.com>
21218 R:      Pekka Paalanen <ppaalanen@gmail.com>
21219 L:      linux-kernel@vger.kernel.org
21220 L:      nouveau@lists.freedesktop.org
21221 S:      Maintained
21222 F:      arch/x86/mm/kmmio.c
21223 F:      arch/x86/mm/mmio-mod.c
21224 F:      arch/x86/mm/testmmiotrace.c
21225 F:      include/linux/mmiotrace.h
21226 F:      kernel/trace/trace_mmiotrace.c
21227
21228 TRACING OS NOISE / LATENCY TRACERS
21229 M:      Steven Rostedt <rostedt@goodmis.org>
21230 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21231 S:      Maintained
21232 F:      kernel/trace/trace_osnoise.c
21233 F:      include/trace/events/osnoise.h
21234 F:      kernel/trace/trace_hwlat.c
21235 F:      kernel/trace/trace_irqsoff.c
21236 F:      kernel/trace/trace_sched_wakeup.c
21237 F:      Documentation/trace/osnoise-tracer.rst
21238 F:      Documentation/trace/timerlat-tracer.rst
21239 F:      Documentation/trace/hwlat_detector.rst
21240 F:      arch/*/kernel/trace.c
21241
21242 Real-time Linux Analysis (RTLA) tools
21243 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21244 M:      Steven Rostedt <rostedt@goodmis.org>
21245 L:      linux-trace-devel@vger.kernel.org
21246 S:      Maintained
21247 F:      Documentation/tools/rtla/
21248 F:      tools/tracing/rtla/
21249
21250 TRADITIONAL CHINESE DOCUMENTATION
21251 M:      Hu Haowen <src.res@email.cn>
21252 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21253 S:      Maintained
21254 W:      https://github.com/srcres258/linux-doc
21255 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21256 F:      Documentation/translations/zh_TW/
21257
21258 TTY LAYER
21259 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21260 M:      Jiri Slaby <jirislaby@kernel.org>
21261 S:      Supported
21262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21263 F:      Documentation/driver-api/serial/
21264 F:      drivers/tty/
21265 F:      drivers/tty/serial/serial_core.c
21266 F:      include/linux/selection.h
21267 F:      include/linux/serial.h
21268 F:      include/linux/serial_core.h
21269 F:      include/linux/sysrq.h
21270 F:      include/linux/tty*.h
21271 F:      include/linux/vt.h
21272 F:      include/linux/vt_*.h
21273 F:      include/uapi/linux/serial.h
21274 F:      include/uapi/linux/serial_core.h
21275 F:      include/uapi/linux/tty.h
21276
21277 TUA9001 MEDIA DRIVER
21278 M:      Antti Palosaari <crope@iki.fi>
21279 L:      linux-media@vger.kernel.org
21280 S:      Maintained
21281 W:      https://linuxtv.org
21282 W:      http://palosaari.fi/linux/
21283 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21284 T:      git git://linuxtv.org/anttip/media_tree.git
21285 F:      drivers/media/tuners/tua9001*
21286
21287 TULIP NETWORK DRIVERS
21288 L:      netdev@vger.kernel.org
21289 L:      linux-parisc@vger.kernel.org
21290 S:      Orphan
21291 F:      drivers/net/ethernet/dec/tulip/
21292
21293 TUN/TAP driver
21294 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
21295 S:      Maintained
21296 W:      http://vtun.sourceforge.net/tun
21297 F:      Documentation/networking/tuntap.rst
21298 F:      arch/um/os-Linux/drivers/
21299
21300 TURBOCHANNEL SUBSYSTEM
21301 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21302 M:      Ralf Baechle <ralf@linux-mips.org>
21303 L:      linux-mips@vger.kernel.org
21304 S:      Maintained
21305 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21306 F:      drivers/tc/
21307 F:      include/linux/tc.h
21308
21309 TURBOSTAT UTILITY
21310 M:      "Len Brown" <lenb@kernel.org>
21311 L:      linux-pm@vger.kernel.org
21312 S:      Supported
21313 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21314 B:      https://bugzilla.kernel.org
21315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21316 F:      tools/power/x86/turbostat/
21317
21318 TW5864 VIDEO4LINUX DRIVER
21319 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21320 M:      Anton Sviridenko <anton@corp.bluecherry.net>
21321 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21322 M:      Andrey Utkin <andrey_utkin@fastmail.com>
21323 L:      linux-media@vger.kernel.org
21324 S:      Supported
21325 F:      drivers/media/pci/tw5864/
21326
21327 TW68 VIDEO4LINUX DRIVER
21328 M:      Hans Verkuil <hverkuil@xs4all.nl>
21329 L:      linux-media@vger.kernel.org
21330 S:      Odd Fixes
21331 W:      https://linuxtv.org
21332 T:      git git://linuxtv.org/media_tree.git
21333 F:      drivers/media/pci/tw68/
21334
21335 TW686X VIDEO4LINUX DRIVER
21336 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21337 L:      linux-media@vger.kernel.org
21338 S:      Maintained
21339 W:      http://linuxtv.org
21340 T:      git git://linuxtv.org/media_tree.git
21341 F:      drivers/media/pci/tw686x/
21342
21343 U-BOOT ENVIRONMENT VARIABLES
21344 M:      Rafał Miłecki <rafal@milecki.pl>
21345 S:      Maintained
21346 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21347 F:      drivers/nvmem/u-boot-env.c
21348
21349 UACCE ACCELERATOR FRAMEWORK
21350 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
21351 M:      Zhou Wang <wangzhou1@hisilicon.com>
21352 L:      linux-accelerators@lists.ozlabs.org
21353 L:      linux-kernel@vger.kernel.org
21354 S:      Maintained
21355 F:      Documentation/ABI/testing/sysfs-driver-uacce
21356 F:      Documentation/misc-devices/uacce.rst
21357 F:      drivers/misc/uacce/
21358 F:      include/linux/uacce.h
21359 F:      include/uapi/misc/uacce/
21360
21361 UBI FILE SYSTEM (UBIFS)
21362 M:      Richard Weinberger <richard@nod.at>
21363 L:      linux-mtd@lists.infradead.org
21364 S:      Supported
21365 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21368 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21369 F:      Documentation/filesystems/ubifs-authentication.rst
21370 F:      Documentation/filesystems/ubifs.rst
21371 F:      fs/ubifs/
21372
21373 UBLK USERSPACE BLOCK DRIVER
21374 M:      Ming Lei <ming.lei@redhat.com>
21375 L:      linux-block@vger.kernel.org
21376 S:      Maintained
21377 F:      Documentation/block/ublk.rst
21378 F:      drivers/block/ublk_drv.c
21379 F:      include/uapi/linux/ublk_cmd.h
21380
21381 UCLINUX (M68KNOMMU AND COLDFIRE)
21382 M:      Greg Ungerer <gerg@linux-m68k.org>
21383 L:      linux-m68k@lists.linux-m68k.org
21384 L:      uclinux-dev@uclinux.org  (subscribers-only)
21385 S:      Maintained
21386 W:      http://www.linux-m68k.org/
21387 W:      http://www.uclinux.org/
21388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21389 F:      arch/m68k/*/*_no.*
21390 F:      arch/m68k/68*/
21391 F:      arch/m68k/coldfire/
21392 F:      arch/m68k/include/asm/*_no.*
21393
21394 UDF FILESYSTEM
21395 M:      Jan Kara <jack@suse.com>
21396 S:      Maintained
21397 F:      Documentation/filesystems/udf.rst
21398 F:      fs/udf/
21399
21400 UDRAW TABLET
21401 M:      Bastien Nocera <hadess@hadess.net>
21402 L:      linux-input@vger.kernel.org
21403 S:      Maintained
21404 F:      drivers/hid/hid-udraw-ps3.c
21405
21406 UFS FILESYSTEM
21407 M:      Evgeniy Dushistov <dushistov@mail.ru>
21408 S:      Maintained
21409 F:      Documentation/admin-guide/ufs.rst
21410 F:      fs/ufs/
21411
21412 UHID USERSPACE HID IO DRIVER
21413 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21414 L:      linux-input@vger.kernel.org
21415 S:      Maintained
21416 F:      drivers/hid/uhid.c
21417 F:      include/uapi/linux/uhid.h
21418
21419 ULPI BUS
21420 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21421 L:      linux-usb@vger.kernel.org
21422 S:      Maintained
21423 F:      drivers/usb/common/ulpi.c
21424 F:      include/linux/ulpi/
21425
21426 UNICODE SUBSYSTEM
21427 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
21428 L:      linux-fsdevel@vger.kernel.org
21429 S:      Supported
21430 F:      fs/unicode/
21431
21432 UNIFDEF
21433 M:      Tony Finch <dot@dotat.at>
21434 S:      Maintained
21435 W:      http://dotat.at/prog/unifdef
21436 F:      scripts/unifdef.c
21437
21438 UNIFORM CDROM DRIVER
21439 M:      Phillip Potter <phil@philpotter.co.uk>
21440 S:      Maintained
21441 F:      Documentation/cdrom/
21442 F:      drivers/cdrom/cdrom.c
21443 F:      include/linux/cdrom.h
21444 F:      include/uapi/linux/cdrom.h
21445
21446 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21447 R:      Alim Akhtar <alim.akhtar@samsung.com>
21448 R:      Avri Altman <avri.altman@wdc.com>
21449 R:      Bart Van Assche <bvanassche@acm.org>
21450 L:      linux-scsi@vger.kernel.org
21451 S:      Supported
21452 F:      Documentation/devicetree/bindings/ufs/
21453 F:      Documentation/scsi/ufs.rst
21454 F:      drivers/ufs/core/
21455
21456 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21457 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
21458 L:      linux-scsi@vger.kernel.org
21459 S:      Supported
21460 F:      drivers/ufs/host/*dwc*
21461
21462 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21463 M:      Stanley Chu <stanley.chu@mediatek.com>
21464 L:      linux-scsi@vger.kernel.org
21465 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21466 S:      Maintained
21467 F:      drivers/ufs/host/ufs-mediatek*
21468
21469 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21470 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21471 L:      linux-renesas-soc@vger.kernel.org
21472 L:      linux-scsi@vger.kernel.org
21473 S:      Maintained
21474 F:      drivers/ufs/host/ufs-renesas.c
21475
21476 UNSORTED BLOCK IMAGES (UBI)
21477 M:      Richard Weinberger <richard@nod.at>
21478 L:      linux-mtd@lists.infradead.org
21479 S:      Supported
21480 W:      http://www.linux-mtd.infradead.org/
21481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21483 F:      drivers/mtd/ubi/
21484 F:      include/linux/mtd/ubi.h
21485 F:      include/uapi/mtd/ubi-user.h
21486
21487 USB "USBNET" DRIVER FRAMEWORK
21488 M:      Oliver Neukum <oneukum@suse.com>
21489 L:      netdev@vger.kernel.org
21490 S:      Maintained
21491 W:      http://www.linux-usb.org/usbnet
21492 F:      drivers/net/usb/usbnet.c
21493 F:      include/linux/usb/usbnet.h
21494
21495 USB ACM DRIVER
21496 M:      Oliver Neukum <oneukum@suse.com>
21497 L:      linux-usb@vger.kernel.org
21498 S:      Maintained
21499 F:      Documentation/usb/acm.rst
21500 F:      drivers/usb/class/cdc-acm.*
21501
21502 USB APPLE MFI FASTCHARGE DRIVER
21503 M:      Bastien Nocera <hadess@hadess.net>
21504 L:      linux-usb@vger.kernel.org
21505 S:      Maintained
21506 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21507
21508 USB AR5523 WIRELESS DRIVER
21509 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
21510 L:      linux-wireless@vger.kernel.org
21511 S:      Maintained
21512 F:      drivers/net/wireless/ath/ar5523/
21513
21514 USB ATTACHED SCSI
21515 M:      Oliver Neukum <oneukum@suse.com>
21516 L:      linux-usb@vger.kernel.org
21517 L:      linux-scsi@vger.kernel.org
21518 S:      Maintained
21519 F:      drivers/usb/storage/uas.c
21520
21521 USB CDC ETHERNET DRIVER
21522 M:      Oliver Neukum <oliver@neukum.org>
21523 L:      linux-usb@vger.kernel.org
21524 S:      Maintained
21525 F:      drivers/net/usb/cdc_*.c
21526 F:      include/uapi/linux/usb/cdc.h
21527
21528 USB CHAOSKEY DRIVER
21529 M:      Keith Packard <keithp@keithp.com>
21530 L:      linux-usb@vger.kernel.org
21531 S:      Maintained
21532 F:      drivers/usb/misc/chaoskey.c
21533
21534 USB CYPRESS C67X00 DRIVER
21535 L:      linux-usb@vger.kernel.org
21536 S:      Orphan
21537 F:      drivers/usb/c67x00/
21538
21539 USB DAVICOM DM9601 DRIVER
21540 M:      Peter Korsgaard <peter@korsgaard.com>
21541 L:      netdev@vger.kernel.org
21542 S:      Maintained
21543 W:      http://www.linux-usb.org/usbnet
21544 F:      drivers/net/usb/dm9601.c
21545
21546 USB EHCI DRIVER
21547 M:      Alan Stern <stern@rowland.harvard.edu>
21548 L:      linux-usb@vger.kernel.org
21549 S:      Maintained
21550 F:      Documentation/usb/ehci.rst
21551 F:      drivers/usb/host/ehci*
21552
21553 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21554 M:      Jiri Kosina <jikos@kernel.org>
21555 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21556 L:      linux-usb@vger.kernel.org
21557 S:      Maintained
21558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21559 F:      Documentation/hid/hiddev.rst
21560 F:      drivers/hid/usbhid/
21561
21562 USB INTEL XHCI ROLE MUX DRIVER
21563 M:      Hans de Goede <hdegoede@redhat.com>
21564 L:      linux-usb@vger.kernel.org
21565 S:      Maintained
21566 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21567
21568 USB IP DRIVER FOR HISILICON KIRIN 960
21569 M:      Yu Chen <chenyu56@huawei.com>
21570 M:      Binghui Wang <wangbinghui@hisilicon.com>
21571 L:      linux-usb@vger.kernel.org
21572 S:      Maintained
21573 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21574 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21575
21576 USB IP DRIVER FOR HISILICON KIRIN 970
21577 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21578 L:      linux-usb@vger.kernel.org
21579 S:      Maintained
21580 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21581 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21582
21583 USB ISP116X DRIVER
21584 M:      Olav Kongas <ok@artecdesign.ee>
21585 L:      linux-usb@vger.kernel.org
21586 S:      Maintained
21587 F:      drivers/usb/host/isp116x*
21588 F:      include/linux/usb/isp116x.h
21589
21590 USB ISP1760 DRIVER
21591 M:      Rui Miguel Silva <rui.silva@linaro.org>
21592 L:      linux-usb@vger.kernel.org
21593 S:      Maintained
21594 F:      drivers/usb/isp1760/*
21595 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21596
21597 USB LAN78XX ETHERNET DRIVER
21598 M:      Woojung Huh <woojung.huh@microchip.com>
21599 M:      UNGLinuxDriver@microchip.com
21600 L:      netdev@vger.kernel.org
21601 S:      Maintained
21602 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21603 F:      drivers/net/usb/lan78xx.*
21604 F:      include/dt-bindings/net/microchip-lan78xx.h
21605
21606 USB MASS STORAGE DRIVER
21607 M:      Alan Stern <stern@rowland.harvard.edu>
21608 L:      linux-usb@vger.kernel.org
21609 L:      usb-storage@lists.one-eyed-alien.net
21610 S:      Maintained
21611 F:      drivers/usb/storage/
21612
21613 USB MIDI DRIVER
21614 M:      Clemens Ladisch <clemens@ladisch.de>
21615 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21616 S:      Maintained
21617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21618 F:      sound/usb/midi.*
21619
21620 USB NETWORKING DRIVERS
21621 L:      linux-usb@vger.kernel.org
21622 S:      Odd Fixes
21623 F:      drivers/net/usb/
21624
21625 USB OHCI DRIVER
21626 M:      Alan Stern <stern@rowland.harvard.edu>
21627 L:      linux-usb@vger.kernel.org
21628 S:      Maintained
21629 F:      Documentation/usb/ohci.rst
21630 F:      drivers/usb/host/ohci*
21631
21632 USB OTG FSM (Finite State Machine)
21633 M:      Peter Chen <peter.chen@kernel.org>
21634 L:      linux-usb@vger.kernel.org
21635 S:      Maintained
21636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21637 F:      drivers/usb/common/usb-otg-fsm.c
21638
21639 USB OVER IP DRIVER
21640 M:      Valentina Manea <valentina.manea.m@gmail.com>
21641 M:      Shuah Khan <shuah@kernel.org>
21642 M:      Shuah Khan <skhan@linuxfoundation.org>
21643 L:      linux-usb@vger.kernel.org
21644 S:      Maintained
21645 F:      Documentation/usb/usbip_protocol.rst
21646 F:      drivers/usb/usbip/
21647 F:      tools/testing/selftests/drivers/usb/usbip/
21648 F:      tools/usb/usbip/
21649
21650 USB PEGASUS DRIVER
21651 M:      Petko Manolov <petkan@nucleusys.com>
21652 L:      linux-usb@vger.kernel.org
21653 L:      netdev@vger.kernel.org
21654 S:      Maintained
21655 W:      https://github.com/petkan/pegasus
21656 T:      git https://github.com/petkan/pegasus.git
21657 F:      drivers/net/usb/pegasus.*
21658
21659 USB PRINTER DRIVER (usblp)
21660 M:      Pete Zaitcev <zaitcev@redhat.com>
21661 L:      linux-usb@vger.kernel.org
21662 S:      Supported
21663 F:      drivers/usb/class/usblp.c
21664
21665 USB RAW GADGET DRIVER
21666 R:      Andrey Konovalov <andreyknvl@gmail.com>
21667 L:      linux-usb@vger.kernel.org
21668 S:      Maintained
21669 F:      Documentation/usb/raw-gadget.rst
21670 F:      drivers/usb/gadget/legacy/raw_gadget.c
21671 F:      include/uapi/linux/usb/raw_gadget.h
21672
21673 USB QMI WWAN NETWORK DRIVER
21674 M:      Bjørn Mork <bjorn@mork.no>
21675 L:      netdev@vger.kernel.org
21676 S:      Maintained
21677 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21678 F:      drivers/net/usb/qmi_wwan.c
21679
21680 USB RTL8150 DRIVER
21681 M:      Petko Manolov <petkan@nucleusys.com>
21682 L:      linux-usb@vger.kernel.org
21683 L:      netdev@vger.kernel.org
21684 S:      Maintained
21685 W:      https://github.com/petkan/rtl8150
21686 T:      git https://github.com/petkan/rtl8150.git
21687 F:      drivers/net/usb/rtl8150.c
21688
21689 USB SERIAL SUBSYSTEM
21690 M:      Johan Hovold <johan@kernel.org>
21691 L:      linux-usb@vger.kernel.org
21692 S:      Maintained
21693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21694 F:      Documentation/usb/usb-serial.rst
21695 F:      drivers/usb/serial/
21696 F:      include/linux/usb/serial.h
21697
21698 USB SMSC75XX ETHERNET DRIVER
21699 M:      Steve Glendinning <steve.glendinning@shawell.net>
21700 L:      netdev@vger.kernel.org
21701 S:      Maintained
21702 F:      drivers/net/usb/smsc75xx.*
21703
21704 USB SMSC95XX ETHERNET DRIVER
21705 M:      Steve Glendinning <steve.glendinning@shawell.net>
21706 M:      UNGLinuxDriver@microchip.com
21707 L:      netdev@vger.kernel.org
21708 S:      Maintained
21709 F:      drivers/net/usb/smsc95xx.*
21710
21711 USB SUBSYSTEM
21712 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21713 L:      linux-usb@vger.kernel.org
21714 S:      Supported
21715 W:      http://www.linux-usb.org
21716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21717 F:      Documentation/devicetree/bindings/usb/
21718 F:      Documentation/usb/
21719 F:      drivers/usb/
21720 F:      include/dt-bindings/usb/
21721 F:      include/linux/usb.h
21722 F:      include/linux/usb/
21723
21724 USB TYPEC BUS FOR ALTERNATE MODES
21725 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21726 L:      linux-usb@vger.kernel.org
21727 S:      Maintained
21728 F:      Documentation/ABI/testing/sysfs-bus-typec
21729 F:      Documentation/driver-api/usb/typec_bus.rst
21730 F:      drivers/usb/typec/altmodes/
21731 F:      include/linux/usb/typec_altmode.h
21732
21733 USB TYPEC CLASS
21734 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21735 L:      linux-usb@vger.kernel.org
21736 S:      Maintained
21737 F:      Documentation/ABI/testing/sysfs-class-typec
21738 F:      Documentation/driver-api/usb/typec.rst
21739 F:      drivers/usb/typec/
21740 F:      include/linux/usb/typec.h
21741
21742 USB TYPEC INTEL PMC MUX DRIVER
21743 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21744 L:      linux-usb@vger.kernel.org
21745 S:      Maintained
21746 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21747 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21748
21749 USB TYPEC PI3USB30532 MUX DRIVER
21750 M:      Hans de Goede <hdegoede@redhat.com>
21751 L:      linux-usb@vger.kernel.org
21752 S:      Maintained
21753 F:      drivers/usb/typec/mux/pi3usb30532.c
21754
21755 USB TYPEC PORT CONTROLLER DRIVERS
21756 M:      Guenter Roeck <linux@roeck-us.net>
21757 L:      linux-usb@vger.kernel.org
21758 S:      Maintained
21759 F:      drivers/usb/typec/tcpm/
21760
21761 USB UHCI DRIVER
21762 M:      Alan Stern <stern@rowland.harvard.edu>
21763 L:      linux-usb@vger.kernel.org
21764 S:      Maintained
21765 F:      drivers/usb/host/uhci*
21766
21767 USB VIDEO CLASS
21768 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21769 L:      linux-media@vger.kernel.org
21770 S:      Maintained
21771 W:      http://www.ideasonboard.org/uvc/
21772 T:      git git://linuxtv.org/media_tree.git
21773 F:      drivers/media/usb/uvc/
21774 F:      include/uapi/linux/uvcvideo.h
21775
21776 USB WEBCAM GADGET
21777 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21778 M:      Daniel Scally <dan.scally@ideasonboard.com>
21779 L:      linux-usb@vger.kernel.org
21780 S:      Maintained
21781 F:      drivers/usb/gadget/function/*uvc*
21782 F:      drivers/usb/gadget/legacy/webcam.c
21783 F:      include/uapi/linux/usb/g_uvc.h
21784
21785 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21786 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21787 L:      linux-wireless@vger.kernel.org
21788 S:      Maintained
21789 F:      drivers/net/wireless/rndis_wlan.c
21790
21791 USB XHCI DRIVER
21792 M:      Mathias Nyman <mathias.nyman@intel.com>
21793 L:      linux-usb@vger.kernel.org
21794 S:      Supported
21795 F:      drivers/usb/host/pci-quirks*
21796 F:      drivers/usb/host/xhci*
21797
21798 USB ZD1201 DRIVER
21799 L:      linux-wireless@vger.kernel.org
21800 S:      Orphan
21801 W:      http://linux-lc100020.sourceforge.net
21802 F:      drivers/net/wireless/zydas/zd1201.*
21803
21804 USB ZR364XX DRIVER
21805 M:      Antoine Jacquet <royale@zerezo.com>
21806 L:      linux-usb@vger.kernel.org
21807 L:      linux-media@vger.kernel.org
21808 S:      Maintained
21809 W:      http://royale.zerezo.com/zr364xx/
21810 T:      git git://linuxtv.org/media_tree.git
21811 F:      Documentation/admin-guide/media/zr364xx*
21812 F:      drivers/staging/media/deprecated/zr364xx/
21813
21814 USER DATAGRAM PROTOCOL (UDP)
21815 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21816 S:      Maintained
21817 F:      include/linux/udp.h
21818 F:      net/ipv4/udp.c
21819 F:      net/ipv6/udp.c
21820
21821 USER-MODE LINUX (UML)
21822 M:      Richard Weinberger <richard@nod.at>
21823 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21824 M:      Johannes Berg <johannes@sipsolutions.net>
21825 L:      linux-um@lists.infradead.org
21826 S:      Maintained
21827 W:      http://user-mode-linux.sourceforge.net
21828 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21831 F:      Documentation/virt/uml/
21832 F:      arch/um/
21833 F:      arch/x86/um/
21834 F:      fs/hostfs/
21835
21836 USERSPACE COPYIN/COPYOUT (UIOVEC)
21837 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21838 S:      Maintained
21839 F:      include/linux/uio.h
21840 F:      lib/iov_iter.c
21841
21842 USERSPACE DMA BUFFER DRIVER
21843 M:      Gerd Hoffmann <kraxel@redhat.com>
21844 L:      dri-devel@lists.freedesktop.org
21845 S:      Maintained
21846 T:      git git://anongit.freedesktop.org/drm/drm-misc
21847 F:      drivers/dma-buf/udmabuf.c
21848 F:      include/uapi/linux/udmabuf.h
21849
21850 USERSPACE I/O (UIO)
21851 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21852 S:      Maintained
21853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21854 F:      Documentation/driver-api/uio-howto.rst
21855 F:      drivers/uio/
21856 F:      include/linux/uio_driver.h
21857
21858 UTIL-LINUX PACKAGE
21859 M:      Karel Zak <kzak@redhat.com>
21860 L:      util-linux@vger.kernel.org
21861 S:      Maintained
21862 W:      http://en.wikipedia.org/wiki/Util-linux
21863 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21864
21865 UUID HELPERS
21866 M:      Christoph Hellwig <hch@lst.de>
21867 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21868 L:      linux-kernel@vger.kernel.org
21869 S:      Maintained
21870 T:      git git://git.infradead.org/users/hch/uuid.git
21871 F:      include/linux/uuid.h
21872 F:      lib/test_uuid.c
21873 F:      lib/uuid.c
21874
21875 UV SYSFS DRIVER
21876 M:      Justin Ernst <justin.ernst@hpe.com>
21877 L:      platform-driver-x86@vger.kernel.org
21878 S:      Maintained
21879 F:      drivers/platform/x86/uv_sysfs.c
21880
21881 UVESAFB DRIVER
21882 M:      Michal Januszewski <spock@gentoo.org>
21883 L:      linux-fbdev@vger.kernel.org
21884 S:      Maintained
21885 W:      https://github.com/mjanusz/v86d
21886 F:      Documentation/fb/uvesafb.rst
21887 F:      drivers/video/fbdev/uvesafb.*
21888
21889 Ux500 CLOCK DRIVERS
21890 M:      Ulf Hansson <ulf.hansson@linaro.org>
21891 L:      linux-clk@vger.kernel.org
21892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21893 S:      Maintained
21894 F:      drivers/clk/ux500/
21895
21896 VF610 NAND DRIVER
21897 M:      Stefan Agner <stefan@agner.ch>
21898 L:      linux-mtd@lists.infradead.org
21899 S:      Supported
21900 F:      drivers/mtd/nand/raw/vf610_nfc.c
21901
21902 VFAT/FAT/MSDOS FILESYSTEM
21903 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21904 S:      Maintained
21905 F:      Documentation/filesystems/vfat.rst
21906 F:      fs/fat/
21907 F:      tools/testing/selftests/filesystems/fat/
21908
21909 VFIO DRIVER
21910 M:      Alex Williamson <alex.williamson@redhat.com>
21911 R:      Cornelia Huck <cohuck@redhat.com>
21912 L:      kvm@vger.kernel.org
21913 S:      Maintained
21914 T:      git https://github.com/awilliam/linux-vfio.git
21915 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
21916 F:      Documentation/driver-api/vfio.rst
21917 F:      drivers/vfio/
21918 F:      include/linux/vfio.h
21919 F:      include/linux/vfio_pci_core.h
21920 F:      include/uapi/linux/vfio.h
21921
21922 VFIO FSL-MC DRIVER
21923 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21924 L:      kvm@vger.kernel.org
21925 S:      Maintained
21926 F:      drivers/vfio/fsl-mc/
21927
21928 VFIO HISILICON PCI DRIVER
21929 M:      Longfang Liu <liulongfang@huawei.com>
21930 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21931 L:      kvm@vger.kernel.org
21932 S:      Maintained
21933 F:      drivers/vfio/pci/hisilicon/
21934
21935 VFIO MEDIATED DEVICE DRIVERS
21936 M:      Kirti Wankhede <kwankhede@nvidia.com>
21937 L:      kvm@vger.kernel.org
21938 S:      Maintained
21939 F:      Documentation/driver-api/vfio-mediated-device.rst
21940 F:      drivers/vfio/mdev/
21941 F:      include/linux/mdev.h
21942 F:      samples/vfio-mdev/
21943
21944 VFIO PCI DEVICE SPECIFIC DRIVERS
21945 R:      Jason Gunthorpe <jgg@nvidia.com>
21946 R:      Yishai Hadas <yishaih@nvidia.com>
21947 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21948 R:      Kevin Tian <kevin.tian@intel.com>
21949 L:      kvm@vger.kernel.org
21950 S:      Maintained
21951 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21952 F:      drivers/vfio/pci/*/
21953
21954 VFIO PLATFORM DRIVER
21955 M:      Eric Auger <eric.auger@redhat.com>
21956 L:      kvm@vger.kernel.org
21957 S:      Maintained
21958 F:      drivers/vfio/platform/
21959
21960 VFIO MLX5 PCI DRIVER
21961 M:      Yishai Hadas <yishaih@nvidia.com>
21962 L:      kvm@vger.kernel.org
21963 S:      Maintained
21964 F:      drivers/vfio/pci/mlx5/
21965
21966 VGA_SWITCHEROO
21967 R:      Lukas Wunner <lukas@wunner.de>
21968 S:      Maintained
21969 T:      git git://anongit.freedesktop.org/drm/drm-misc
21970 F:      Documentation/gpu/vga-switcheroo.rst
21971 F:      drivers/gpu/vga/vga_switcheroo.c
21972 F:      include/linux/vga_switcheroo.h
21973
21974 VIA RHINE NETWORK DRIVER
21975 S:      Maintained
21976 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21977 F:      drivers/net/ethernet/via/via-rhine.c
21978
21979 VIA SD/MMC CARD CONTROLLER DRIVER
21980 M:      Bruce Chang <brucechang@via.com.tw>
21981 M:      Harald Welte <HaraldWelte@viatech.com>
21982 S:      Maintained
21983 F:      drivers/mmc/host/via-sdmmc.c
21984
21985 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21986 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21987 L:      linux-fbdev@vger.kernel.org
21988 S:      Maintained
21989 F:      drivers/video/fbdev/via/
21990 F:      include/linux/via-core.h
21991 F:      include/linux/via-gpio.h
21992 F:      include/linux/via_i2c.h
21993
21994 VIA VELOCITY NETWORK DRIVER
21995 M:      Francois Romieu <romieu@fr.zoreil.com>
21996 L:      netdev@vger.kernel.org
21997 S:      Maintained
21998 F:      drivers/net/ethernet/via/via-velocity.*
21999
22000 VICODEC VIRTUAL CODEC DRIVER
22001 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
22002 L:      linux-media@vger.kernel.org
22003 S:      Maintained
22004 W:      https://linuxtv.org
22005 T:      git git://linuxtv.org/media_tree.git
22006 F:      drivers/media/test-drivers/vicodec/*
22007
22008 VIDEO I2C POLLING DRIVER
22009 M:      Matt Ranostay <matt.ranostay@konsulko.com>
22010 L:      linux-media@vger.kernel.org
22011 S:      Maintained
22012 F:      drivers/media/i2c/video-i2c.c
22013
22014 VIDEO MULTIPLEXER DRIVER
22015 M:      Philipp Zabel <p.zabel@pengutronix.de>
22016 L:      linux-media@vger.kernel.org
22017 S:      Maintained
22018 F:      drivers/media/platform/video-mux.c
22019
22020 VIDEOBUF2 FRAMEWORK
22021 M:      Tomasz Figa <tfiga@chromium.org>
22022 M:      Marek Szyprowski <m.szyprowski@samsung.com>
22023 L:      linux-media@vger.kernel.org
22024 S:      Maintained
22025 F:      drivers/media/common/videobuf2/*
22026 F:      include/media/videobuf2-*
22027
22028 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
22029 M:      Shuah Khan <skhan@linuxfoundation.org>
22030 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
22031 L:      linux-media@vger.kernel.org
22032 S:      Maintained
22033 W:      https://linuxtv.org
22034 T:      git git://linuxtv.org/media_tree.git
22035 F:      drivers/media/test-drivers/vimc/*
22036
22037 VIRT LIB
22038 M:      Alex Williamson <alex.williamson@redhat.com>
22039 M:      Paolo Bonzini <pbonzini@redhat.com>
22040 L:      kvm@vger.kernel.org
22041 S:      Supported
22042 F:      virt/lib/
22043
22044 VIRTIO AND VHOST VSOCK DRIVER
22045 M:      Stefan Hajnoczi <stefanha@redhat.com>
22046 M:      Stefano Garzarella <sgarzare@redhat.com>
22047 L:      kvm@vger.kernel.org
22048 L:      virtualization@lists.linux-foundation.org
22049 L:      netdev@vger.kernel.org
22050 S:      Maintained
22051 F:      drivers/vhost/vsock.c
22052 F:      include/linux/virtio_vsock.h
22053 F:      include/uapi/linux/virtio_vsock.h
22054 F:      net/vmw_vsock/virtio_transport.c
22055 F:      net/vmw_vsock/virtio_transport_common.c
22056
22057 VIRTIO BLOCK AND SCSI DRIVERS
22058 M:      "Michael S. Tsirkin" <mst@redhat.com>
22059 M:      Jason Wang <jasowang@redhat.com>
22060 R:      Paolo Bonzini <pbonzini@redhat.com>
22061 R:      Stefan Hajnoczi <stefanha@redhat.com>
22062 L:      virtualization@lists.linux-foundation.org
22063 S:      Maintained
22064 F:      drivers/block/virtio_blk.c
22065 F:      drivers/scsi/virtio_scsi.c
22066 F:      drivers/vhost/scsi.c
22067 F:      include/uapi/linux/virtio_blk.h
22068 F:      include/uapi/linux/virtio_scsi.h
22069
22070 VIRTIO CONSOLE DRIVER
22071 M:      Amit Shah <amit@kernel.org>
22072 L:      virtualization@lists.linux-foundation.org
22073 S:      Maintained
22074 F:      drivers/char/virtio_console.c
22075 F:      include/linux/virtio_console.h
22076 F:      include/uapi/linux/virtio_console.h
22077
22078 VIRTIO CORE AND NET DRIVERS
22079 M:      "Michael S. Tsirkin" <mst@redhat.com>
22080 M:      Jason Wang <jasowang@redhat.com>
22081 L:      virtualization@lists.linux-foundation.org
22082 S:      Maintained
22083 F:      Documentation/ABI/testing/sysfs-bus-vdpa
22084 F:      Documentation/ABI/testing/sysfs-class-vduse
22085 F:      Documentation/devicetree/bindings/virtio/
22086 F:      drivers/block/virtio_blk.c
22087 F:      drivers/crypto/virtio/
22088 F:      drivers/net/virtio_net.c
22089 F:      drivers/vdpa/
22090 F:      drivers/virtio/
22091 F:      include/linux/vdpa.h
22092 F:      include/linux/virtio*.h
22093 F:      include/uapi/linux/virtio_*.h
22094 F:      tools/virtio/
22095
22096 VISL VIRTUAL STATELESS DECODER DRIVER
22097 M:      Daniel Almeida <daniel.almeida@collabora.com>
22098 L:      linux-media@vger.kernel.org
22099 S:      Supported
22100 F:      drivers/media/test-drivers/visl
22101
22102 IFCVF VIRTIO DATA PATH ACCELERATOR
22103 R:      Zhu Lingshan <lingshan.zhu@intel.com>
22104 F:      drivers/vdpa/ifcvf/
22105
22106 VIRTIO BALLOON
22107 M:      "Michael S. Tsirkin" <mst@redhat.com>
22108 M:      David Hildenbrand <david@redhat.com>
22109 L:      virtualization@lists.linux-foundation.org
22110 S:      Maintained
22111 F:      drivers/virtio/virtio_balloon.c
22112 F:      include/uapi/linux/virtio_balloon.h
22113 F:      include/linux/balloon_compaction.h
22114 F:      mm/balloon_compaction.c
22115
22116 VIRTIO CRYPTO DRIVER
22117 M:      Gonglei <arei.gonglei@huawei.com>
22118 L:      virtualization@lists.linux-foundation.org
22119 L:      linux-crypto@vger.kernel.org
22120 S:      Maintained
22121 F:      drivers/crypto/virtio/
22122 F:      include/uapi/linux/virtio_crypto.h
22123
22124 VIRTIO DRIVERS FOR S390
22125 M:      Cornelia Huck <cohuck@redhat.com>
22126 M:      Halil Pasic <pasic@linux.ibm.com>
22127 M:      Eric Farman <farman@linux.ibm.com>
22128 L:      linux-s390@vger.kernel.org
22129 L:      virtualization@lists.linux-foundation.org
22130 L:      kvm@vger.kernel.org
22131 S:      Supported
22132 F:      arch/s390/include/uapi/asm/virtio-ccw.h
22133 F:      drivers/s390/virtio/
22134
22135 VIRTIO FILE SYSTEM
22136 M:      Vivek Goyal <vgoyal@redhat.com>
22137 M:      Stefan Hajnoczi <stefanha@redhat.com>
22138 M:      Miklos Szeredi <miklos@szeredi.hu>
22139 L:      virtualization@lists.linux-foundation.org
22140 L:      linux-fsdevel@vger.kernel.org
22141 S:      Supported
22142 W:      https://virtio-fs.gitlab.io/
22143 F:      Documentation/filesystems/virtiofs.rst
22144 F:      fs/fuse/virtio_fs.c
22145 F:      include/uapi/linux/virtio_fs.h
22146
22147 VIRTIO GPIO DRIVER
22148 M:      Enrico Weigelt, metux IT consult <info@metux.net>
22149 M:      Viresh Kumar <vireshk@kernel.org>
22150 L:      linux-gpio@vger.kernel.org
22151 L:      virtualization@lists.linux-foundation.org
22152 S:      Maintained
22153 F:      drivers/gpio/gpio-virtio.c
22154 F:      include/uapi/linux/virtio_gpio.h
22155
22156 VIRTIO GPU DRIVER
22157 M:      David Airlie <airlied@redhat.com>
22158 M:      Gerd Hoffmann <kraxel@redhat.com>
22159 R:      Gurchetan Singh <gurchetansingh@chromium.org>
22160 R:      Chia-I Wu <olvaffe@gmail.com>
22161 L:      dri-devel@lists.freedesktop.org
22162 L:      virtualization@lists.linux-foundation.org
22163 S:      Maintained
22164 T:      git git://anongit.freedesktop.org/drm/drm-misc
22165 F:      drivers/gpu/drm/virtio/
22166 F:      include/uapi/linux/virtio_gpu.h
22167
22168 VIRTIO HOST (VHOST)
22169 M:      "Michael S. Tsirkin" <mst@redhat.com>
22170 M:      Jason Wang <jasowang@redhat.com>
22171 L:      kvm@vger.kernel.org
22172 L:      virtualization@lists.linux-foundation.org
22173 L:      netdev@vger.kernel.org
22174 S:      Maintained
22175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22176 F:      drivers/vhost/
22177 F:      include/linux/vhost_iotlb.h
22178 F:      include/uapi/linux/vhost.h
22179
22180 VIRTIO INPUT DRIVER
22181 M:      Gerd Hoffmann <kraxel@redhat.com>
22182 S:      Maintained
22183 F:      drivers/virtio/virtio_input.c
22184 F:      include/uapi/linux/virtio_input.h
22185
22186 VIRTIO IOMMU DRIVER
22187 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
22188 L:      virtualization@lists.linux-foundation.org
22189 S:      Maintained
22190 F:      drivers/iommu/virtio-iommu.c
22191 F:      include/uapi/linux/virtio_iommu.h
22192
22193 VIRTIO MEM DRIVER
22194 M:      David Hildenbrand <david@redhat.com>
22195 L:      virtualization@lists.linux-foundation.org
22196 S:      Maintained
22197 W:      https://virtio-mem.gitlab.io/
22198 F:      drivers/virtio/virtio_mem.c
22199 F:      include/uapi/linux/virtio_mem.h
22200
22201 VIRTIO SOUND DRIVER
22202 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
22203 M:      "Michael S. Tsirkin" <mst@redhat.com>
22204 L:      virtualization@lists.linux-foundation.org
22205 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22206 S:      Maintained
22207 F:      include/uapi/linux/virtio_snd.h
22208 F:      sound/virtio/*
22209
22210 VIRTIO I2C DRIVER
22211 M:      Conghui Chen <conghui.chen@intel.com>
22212 M:      Viresh Kumar <viresh.kumar@linaro.org>
22213 L:      linux-i2c@vger.kernel.org
22214 L:      virtualization@lists.linux-foundation.org
22215 S:      Maintained
22216 F:      drivers/i2c/busses/i2c-virtio.c
22217 F:      include/uapi/linux/virtio_i2c.h
22218
22219 VIRTIO PMEM DRIVER
22220 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
22221 L:      virtualization@lists.linux-foundation.org
22222 S:      Maintained
22223 F:      drivers/nvdimm/virtio_pmem.c
22224 F:      drivers/nvdimm/nd_virtio.c
22225
22226 VIRTUAL BOX GUEST DEVICE DRIVER
22227 M:      Hans de Goede <hdegoede@redhat.com>
22228 M:      Arnd Bergmann <arnd@arndb.de>
22229 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22230 S:      Maintained
22231 F:      drivers/virt/vboxguest/
22232 F:      include/linux/vbox_utils.h
22233 F:      include/uapi/linux/vbox*.h
22234
22235 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22236 M:      Hans de Goede <hdegoede@redhat.com>
22237 L:      linux-fsdevel@vger.kernel.org
22238 S:      Maintained
22239 F:      fs/vboxsf/*
22240
22241 VIRTUAL SERIO DEVICE DRIVER
22242 M:      Stephen Chandler Paul <thatslyude@gmail.com>
22243 S:      Maintained
22244 F:      drivers/input/serio/userio.c
22245 F:      include/uapi/linux/userio.h
22246
22247 VIVID VIRTUAL VIDEO DRIVER
22248 M:      Hans Verkuil <hverkuil@xs4all.nl>
22249 L:      linux-media@vger.kernel.org
22250 S:      Maintained
22251 W:      https://linuxtv.org
22252 T:      git git://linuxtv.org/media_tree.git
22253 F:      drivers/media/test-drivers/vivid/*
22254
22255 VIDTV VIRTUAL DIGITAL TV DRIVER
22256 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22257 L:      linux-media@vger.kernel.org
22258 S:      Maintained
22259 W:      https://linuxtv.org
22260 T:      git git://linuxtv.org/media_tree.git
22261 F:      drivers/media/test-drivers/vidtv/*
22262
22263 VLYNQ BUS
22264 M:      Florian Fainelli <f.fainelli@gmail.com>
22265 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
22266 S:      Maintained
22267 F:      drivers/vlynq/vlynq.c
22268 F:      include/linux/vlynq.h
22269
22270 VME SUBSYSTEM
22271 M:      Martyn Welch <martyn@welchs.me.uk>
22272 M:      Manohar Vanga <manohar.vanga@gmail.com>
22273 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22274 L:      linux-kernel@vger.kernel.org
22275 S:      Odd fixes
22276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22277 F:      Documentation/driver-api/vme.rst
22278 F:      drivers/staging/vme_user/
22279
22280 VM SOCKETS (AF_VSOCK)
22281 M:      Stefano Garzarella <sgarzare@redhat.com>
22282 L:      virtualization@lists.linux-foundation.org
22283 L:      netdev@vger.kernel.org
22284 S:      Maintained
22285 F:      drivers/net/vsockmon.c
22286 F:      include/net/af_vsock.h
22287 F:      include/uapi/linux/vm_sockets.h
22288 F:      include/uapi/linux/vm_sockets_diag.h
22289 F:      include/uapi/linux/vsockmon.h
22290 F:      net/vmw_vsock/
22291 F:      tools/testing/vsock/
22292
22293 VMWARE BALLOON DRIVER
22294 M:      Nadav Amit <namit@vmware.com>
22295 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22296 L:      linux-kernel@vger.kernel.org
22297 S:      Supported
22298 F:      drivers/misc/vmw_balloon.c
22299
22300 VMWARE HYPERVISOR INTERFACE
22301 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22302 M:      Alexey Makhalov <amakhalov@vmware.com>
22303 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22304 L:      virtualization@lists.linux-foundation.org
22305 L:      x86@kernel.org
22306 S:      Supported
22307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22308 F:      arch/x86/include/asm/vmware.h
22309 F:      arch/x86/kernel/cpu/vmware.c
22310
22311 VMWARE PVRDMA DRIVER
22312 M:      Bryan Tan <bryantan@vmware.com>
22313 M:      Vishnu Dasa <vdasa@vmware.com>
22314 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22315 L:      linux-rdma@vger.kernel.org
22316 S:      Supported
22317 F:      drivers/infiniband/hw/vmw_pvrdma/
22318
22319 VMWARE PVSCSI DRIVER
22320 M:      Vishal Bhakta <vbhakta@vmware.com>
22321 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22322 L:      linux-scsi@vger.kernel.org
22323 S:      Supported
22324 F:      drivers/scsi/vmw_pvscsi.c
22325 F:      drivers/scsi/vmw_pvscsi.h
22326
22327 VMWARE VIRTUAL PTP CLOCK DRIVER
22328 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22329 M:      Deep Shah <sdeep@vmware.com>
22330 R:      Alexey Makhalov <amakhalov@vmware.com>
22331 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22332 L:      netdev@vger.kernel.org
22333 S:      Supported
22334 F:      drivers/ptp/ptp_vmw.c
22335
22336 VMWARE VMCI DRIVER
22337 M:      Bryan Tan <bryantan@vmware.com>
22338 M:      Vishnu Dasa <vdasa@vmware.com>
22339 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22340 L:      linux-kernel@vger.kernel.org
22341 S:      Supported
22342 F:      drivers/misc/vmw_vmci/
22343 F:      include/linux/vmw_vmci*
22344
22345 VMWARE VMMOUSE SUBDRIVER
22346 M:      Zack Rusin <zackr@vmware.com>
22347 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22348 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22349 L:      linux-input@vger.kernel.org
22350 S:      Supported
22351 F:      drivers/input/mouse/vmmouse.c
22352 F:      drivers/input/mouse/vmmouse.h
22353
22354 VMWARE VMXNET3 ETHERNET DRIVER
22355 M:      Ronak Doshi <doshir@vmware.com>
22356 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22357 L:      netdev@vger.kernel.org
22358 S:      Supported
22359 F:      drivers/net/vmxnet3/
22360
22361 VMWARE VSOCK VMCI TRANSPORT DRIVER
22362 M:      Bryan Tan <bryantan@vmware.com>
22363 M:      Vishnu Dasa <vdasa@vmware.com>
22364 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22365 L:      linux-kernel@vger.kernel.org
22366 S:      Supported
22367 F:      net/vmw_vsock/vmci_transport*
22368
22369 VOCORE VOCORE2 BOARD
22370 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
22371 L:      linux-mips@vger.kernel.org
22372 S:      Maintained
22373 F:      arch/mips/boot/dts/ralink/vocore2.dts
22374
22375 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22376 M:      Liam Girdwood <lgirdwood@gmail.com>
22377 M:      Mark Brown <broonie@kernel.org>
22378 L:      linux-kernel@vger.kernel.org
22379 S:      Supported
22380 W:      http://www.slimlogic.co.uk/?p=48
22381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22382 F:      Documentation/devicetree/bindings/regulator/
22383 F:      Documentation/power/regulator/
22384 F:      drivers/regulator/
22385 F:      include/dt-bindings/regulator/
22386 F:      include/linux/regulator/
22387 K:      regulator_get_optional
22388
22389 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22390 R:      Matti Vaittinen <mazziesaccount@gmail.com>
22391 F:      drivers/regulator/irq_helpers.c
22392
22393 VRF
22394 M:      David Ahern <dsahern@kernel.org>
22395 L:      netdev@vger.kernel.org
22396 S:      Maintained
22397 F:      Documentation/networking/vrf.rst
22398 F:      drivers/net/vrf.c
22399
22400 VSPRINTF
22401 M:      Petr Mladek <pmladek@suse.com>
22402 M:      Steven Rostedt <rostedt@goodmis.org>
22403 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22404 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22405 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
22406 S:      Maintained
22407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22408 F:      Documentation/core-api/printk-formats.rst
22409 F:      lib/test_printf.c
22410 F:      lib/test_scanf.c
22411 F:      lib/vsprintf.c
22412
22413 VT1211 HARDWARE MONITOR DRIVER
22414 M:      Juerg Haefliger <juergh@proton.me>
22415 L:      linux-hwmon@vger.kernel.org
22416 S:      Maintained
22417 F:      Documentation/hwmon/vt1211.rst
22418 F:      drivers/hwmon/vt1211.c
22419
22420 VT8231 HARDWARE MONITOR DRIVER
22421 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
22422 L:      linux-hwmon@vger.kernel.org
22423 S:      Maintained
22424 F:      drivers/hwmon/vt8231.c
22425
22426 VUB300 USB to SDIO/SD/MMC bridge chip
22427 L:      linux-mmc@vger.kernel.org
22428 S:      Orphan
22429 F:      drivers/mmc/host/vub300.c
22430
22431 W1 DALLAS'S 1-WIRE BUS
22432 M:      Evgeniy Polyakov <zbr@ioremap.net>
22433 S:      Maintained
22434 F:      Documentation/devicetree/bindings/w1/
22435 F:      Documentation/w1/
22436 F:      drivers/w1/
22437 F:      include/linux/w1.h
22438
22439 W83791D HARDWARE MONITORING DRIVER
22440 M:      Marc Hulsman <m.hulsman@tudelft.nl>
22441 L:      linux-hwmon@vger.kernel.org
22442 S:      Maintained
22443 F:      Documentation/hwmon/w83791d.rst
22444 F:      drivers/hwmon/w83791d.c
22445
22446 W83793 HARDWARE MONITORING DRIVER
22447 M:      Rudolf Marek <r.marek@assembler.cz>
22448 L:      linux-hwmon@vger.kernel.org
22449 S:      Maintained
22450 F:      Documentation/hwmon/w83793.rst
22451 F:      drivers/hwmon/w83793.c
22452
22453 W83795 HARDWARE MONITORING DRIVER
22454 M:      Jean Delvare <jdelvare@suse.com>
22455 L:      linux-hwmon@vger.kernel.org
22456 S:      Maintained
22457 F:      drivers/hwmon/w83795.c
22458
22459 W83L51xD SD/MMC CARD INTERFACE DRIVER
22460 M:      Pierre Ossman <pierre@ossman.eu>
22461 S:      Maintained
22462 F:      drivers/mmc/host/wbsd.*
22463
22464 WACOM PROTOCOL 4 SERIAL TABLETS
22465 M:      Julian Squires <julian@cipht.net>
22466 M:      Hans de Goede <hdegoede@redhat.com>
22467 L:      linux-input@vger.kernel.org
22468 S:      Maintained
22469 F:      drivers/input/tablet/wacom_serial4.c
22470
22471 WANGXUN ETHERNET DRIVER
22472 M:      Jiawen Wu <jiawenwu@trustnetic.com>
22473 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
22474 W:      https://www.net-swift.com
22475 L:      netdev@vger.kernel.org
22476 S:      Maintained
22477 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22478 F:      drivers/net/ethernet/wangxun/
22479
22480 WATCHDOG DEVICE DRIVERS
22481 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
22482 M:      Guenter Roeck <linux@roeck-us.net>
22483 L:      linux-watchdog@vger.kernel.org
22484 S:      Maintained
22485 W:      http://www.linux-watchdog.org/
22486 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22487 F:      Documentation/devicetree/bindings/watchdog/
22488 F:      Documentation/watchdog/
22489 F:      drivers/watchdog/
22490 F:      include/linux/watchdog.h
22491 F:      include/uapi/linux/watchdog.h
22492 F:      include/trace/events/watchdog.h
22493
22494 WHISKEYCOVE PMIC GPIO DRIVER
22495 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22496 L:      linux-gpio@vger.kernel.org
22497 S:      Maintained
22498 F:      drivers/gpio/gpio-wcove.c
22499
22500 WHWAVE RTC DRIVER
22501 M:      Dianlong Li <long17.cool@163.com>
22502 L:      linux-rtc@vger.kernel.org
22503 S:      Maintained
22504 F:      drivers/rtc/rtc-sd3078.c
22505
22506 WIIMOTE HID DRIVER
22507 M:      David Rheinsberg <david.rheinsberg@gmail.com>
22508 L:      linux-input@vger.kernel.org
22509 S:      Maintained
22510 F:      drivers/hid/hid-wiimote*
22511
22512 WILOCITY WIL6210 WIRELESS DRIVER
22513 L:      linux-wireless@vger.kernel.org
22514 S:      Orphan
22515 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22516 F:      drivers/net/wireless/ath/wil6210/
22517
22518 WINBOND CIR DRIVER
22519 M:      David Härdeman <david@hardeman.nu>
22520 S:      Maintained
22521 F:      drivers/media/rc/winbond-cir.c
22522
22523 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22524 M:      William Breathitt Gray <william.gray@linaro.org>
22525 L:      linux-watchdog@vger.kernel.org
22526 S:      Maintained
22527 F:      drivers/watchdog/ebc-c384_wdt.c
22528
22529 WINSYSTEMS WS16C48 GPIO DRIVER
22530 M:      William Breathitt Gray <william.gray@linaro.org>
22531 L:      linux-gpio@vger.kernel.org
22532 S:      Maintained
22533 F:      drivers/gpio/gpio-ws16c48.c
22534
22535 WIREGUARD SECURE NETWORK TUNNEL
22536 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22537 L:      wireguard@lists.zx2c4.com
22538 L:      netdev@vger.kernel.org
22539 S:      Maintained
22540 F:      drivers/net/wireguard/
22541 F:      tools/testing/selftests/wireguard/
22542
22543 WISTRON LAPTOP BUTTON DRIVER
22544 M:      Miloslav Trmac <mitr@volny.cz>
22545 S:      Maintained
22546 F:      drivers/input/misc/wistron_btns.c
22547
22548 WL3501 WIRELESS PCMCIA CARD DRIVER
22549 L:      linux-wireless@vger.kernel.org
22550 S:      Odd fixes
22551 F:      drivers/net/wireless/wl3501*
22552
22553 WOLFSON MICROELECTRONICS DRIVERS
22554 L:      patches@opensource.cirrus.com
22555 S:      Supported
22556 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22557 T:      git https://github.com/CirrusLogic/linux-drivers.git
22558 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22559 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22560 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22561 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22562 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22563 F:      Documentation/devicetree/bindings/sound/wm*
22564 F:      Documentation/hwmon/wm83??.rst
22565 F:      arch/arm/mach-s3c/mach-crag6410*
22566 F:      drivers/clk/clk-wm83*.c
22567 F:      drivers/gpio/gpio-*wm*.c
22568 F:      drivers/gpio/gpio-arizona.c
22569 F:      drivers/hwmon/wm83??-hwmon.c
22570 F:      drivers/input/misc/wm831x-on.c
22571 F:      drivers/input/touchscreen/wm831x-ts.c
22572 F:      drivers/input/touchscreen/wm97*.c
22573 F:      drivers/leds/leds-wm83*.c
22574 F:      drivers/mfd/arizona*
22575 F:      drivers/mfd/cs47l24*
22576 F:      drivers/mfd/wm*.c
22577 F:      drivers/power/supply/wm83*.c
22578 F:      drivers/regulator/arizona*
22579 F:      drivers/regulator/wm8*.c
22580 F:      drivers/rtc/rtc-wm83*.c
22581 F:      drivers/video/backlight/wm83*_bl.c
22582 F:      drivers/watchdog/wm83*_wdt.c
22583 F:      include/linux/mfd/arizona/
22584 F:      include/linux/mfd/wm831x/
22585 F:      include/linux/mfd/wm8350/
22586 F:      include/linux/mfd/wm8400*
22587 F:      include/linux/regulator/arizona*
22588 F:      include/linux/wm97xx.h
22589 F:      include/sound/wm????.h
22590 F:      sound/soc/codecs/arizona*
22591 F:      sound/soc/codecs/cs47l24*
22592 F:      sound/soc/codecs/wm*
22593
22594 WORKQUEUE
22595 M:      Tejun Heo <tj@kernel.org>
22596 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22597 S:      Maintained
22598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22599 F:      Documentation/core-api/workqueue.rst
22600 F:      include/linux/workqueue.h
22601 F:      kernel/workqueue.c
22602
22603 WWAN DRIVERS
22604 M:      Loic Poulain <loic.poulain@linaro.org>
22605 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22606 R:      Johannes Berg <johannes@sipsolutions.net>
22607 L:      netdev@vger.kernel.org
22608 S:      Maintained
22609 F:      drivers/net/wwan/
22610 F:      include/linux/wwan.h
22611 F:      include/uapi/linux/wwan.h
22612
22613 X-POWERS AXP288 PMIC DRIVERS
22614 M:      Hans de Goede <hdegoede@redhat.com>
22615 S:      Maintained
22616 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22617 N:      axp288
22618
22619 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22620 M:      Chen-Yu Tsai <wens@csie.org>
22621 L:      linux-kernel@vger.kernel.org
22622 S:      Maintained
22623 N:      axp[128]
22624
22625 X.25 STACK
22626 M:      Martin Schiller <ms@dev.tdt.de>
22627 L:      linux-x25@vger.kernel.org
22628 S:      Maintained
22629 F:      Documentation/networking/lapb-module.rst
22630 F:      Documentation/networking/x25*
22631 F:      drivers/net/wan/hdlc_x25.c
22632 F:      drivers/net/wan/lapbether.c
22633 F:      include/*/lapb.h
22634 F:      include/net/x25*
22635 F:      include/uapi/linux/x25.h
22636 F:      net/lapb/
22637 F:      net/x25/
22638
22639 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22640 M:      Thomas Gleixner <tglx@linutronix.de>
22641 M:      Ingo Molnar <mingo@redhat.com>
22642 M:      Borislav Petkov <bp@alien8.de>
22643 M:      Dave Hansen <dave.hansen@linux.intel.com>
22644 M:      x86@kernel.org
22645 R:      "H. Peter Anvin" <hpa@zytor.com>
22646 L:      linux-kernel@vger.kernel.org
22647 S:      Maintained
22648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22649 F:      Documentation/devicetree/bindings/x86/
22650 F:      Documentation/x86/
22651 F:      arch/x86/
22652
22653 X86 ENTRY CODE
22654 M:      Andy Lutomirski <luto@kernel.org>
22655 L:      linux-kernel@vger.kernel.org
22656 S:      Maintained
22657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22658 F:      arch/x86/entry/
22659
22660 X86 MCE INFRASTRUCTURE
22661 M:      Tony Luck <tony.luck@intel.com>
22662 M:      Borislav Petkov <bp@alien8.de>
22663 L:      linux-edac@vger.kernel.org
22664 S:      Maintained
22665 F:      Documentation/ABI/testing/sysfs-mce
22666 F:      Documentation/x86/x86_64/machinecheck.rst
22667 F:      arch/x86/kernel/cpu/mce/*
22668
22669 X86 MICROCODE UPDATE SUPPORT
22670 M:      Borislav Petkov <bp@alien8.de>
22671 S:      Maintained
22672 F:      arch/x86/kernel/cpu/microcode/*
22673
22674 X86 MM
22675 M:      Dave Hansen <dave.hansen@linux.intel.com>
22676 M:      Andy Lutomirski <luto@kernel.org>
22677 M:      Peter Zijlstra <peterz@infradead.org>
22678 L:      linux-kernel@vger.kernel.org
22679 S:      Maintained
22680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22681 F:      arch/x86/mm/
22682
22683 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22684 M:      Hans de Goede <hdegoede@redhat.com>
22685 L:      platform-driver-x86@vger.kernel.org
22686 S:      Maintained
22687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22688 F:      drivers/platform/x86/x86-android-tablets.c
22689
22690 X86 PLATFORM DRIVERS
22691 M:      Hans de Goede <hdegoede@redhat.com>
22692 M:      Mark Gross <markgross@kernel.org>
22693 L:      platform-driver-x86@vger.kernel.org
22694 S:      Maintained
22695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22696 F:      drivers/platform/olpc/
22697 F:      drivers/platform/x86/
22698
22699 X86 PLATFORM DRIVERS - ARCH
22700 R:      Darren Hart <dvhart@infradead.org>
22701 R:      Andy Shevchenko <andy@infradead.org>
22702 L:      platform-driver-x86@vger.kernel.org
22703 L:      x86@kernel.org
22704 S:      Maintained
22705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22706 F:      arch/x86/platform
22707
22708 X86 PLATFORM UV HPE SUPERDOME FLEX
22709 M:      Steve Wahl <steve.wahl@hpe.com>
22710 R:      Mike Travis <mike.travis@hpe.com>
22711 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22712 R:      Russ Anderson <russ.anderson@hpe.com>
22713 S:      Supported
22714 F:      arch/x86/include/asm/uv/
22715 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22716 F:      arch/x86/platform/uv/
22717
22718 X86 STACK UNWINDING
22719 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22720 M:      Peter Zijlstra <peterz@infradead.org>
22721 S:      Supported
22722 F:      arch/x86/include/asm/unwind*.h
22723 F:      arch/x86/kernel/dumpstack.c
22724 F:      arch/x86/kernel/stacktrace.c
22725 F:      arch/x86/kernel/unwind_*.c
22726
22727 X86 VDSO
22728 M:      Andy Lutomirski <luto@kernel.org>
22729 L:      linux-kernel@vger.kernel.org
22730 S:      Maintained
22731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22732 F:      arch/x86/entry/vdso/
22733
22734 XARRAY
22735 M:      Matthew Wilcox <willy@infradead.org>
22736 L:      linux-fsdevel@vger.kernel.org
22737 S:      Supported
22738 F:      Documentation/core-api/xarray.rst
22739 F:      include/linux/idr.h
22740 F:      include/linux/xarray.h
22741 F:      lib/idr.c
22742 F:      lib/xarray.c
22743 F:      tools/testing/radix-tree
22744
22745 XBOX DVD IR REMOTE
22746 M:      Benjamin Valentin <benpicco@googlemail.com>
22747 S:      Maintained
22748 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22749 F:      drivers/media/rc/xbox_remote.c
22750
22751 XC2028/3028 TUNER DRIVER
22752 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22753 L:      linux-media@vger.kernel.org
22754 S:      Maintained
22755 W:      https://linuxtv.org
22756 T:      git git://linuxtv.org/media_tree.git
22757 F:      drivers/media/tuners/xc2028.*
22758
22759 XDP (eXpress Data Path)
22760 M:      Alexei Starovoitov <ast@kernel.org>
22761 M:      Daniel Borkmann <daniel@iogearbox.net>
22762 M:      David S. Miller <davem@davemloft.net>
22763 M:      Jakub Kicinski <kuba@kernel.org>
22764 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22765 M:      John Fastabend <john.fastabend@gmail.com>
22766 L:      netdev@vger.kernel.org
22767 L:      bpf@vger.kernel.org
22768 S:      Supported
22769 F:      include/net/xdp.h
22770 F:      include/net/xdp_priv.h
22771 F:      include/trace/events/xdp.h
22772 F:      kernel/bpf/cpumap.c
22773 F:      kernel/bpf/devmap.c
22774 F:      net/core/xdp.c
22775 F:      samples/bpf/xdp*
22776 F:      tools/testing/selftests/bpf/*xdp*
22777 F:      tools/testing/selftests/bpf/*/*xdp*
22778 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22779 F:      drivers/net/ethernet/*/*/*xdp*
22780 K:      (?:\b|_)xdp(?:\b|_)
22781
22782 XDP SOCKETS (AF_XDP)
22783 M:      Björn Töpel <bjorn@kernel.org>
22784 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22785 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22786 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22787 L:      netdev@vger.kernel.org
22788 L:      bpf@vger.kernel.org
22789 S:      Maintained
22790 F:      Documentation/networking/af_xdp.rst
22791 F:      include/net/xdp_sock*
22792 F:      include/net/xsk_buff_pool.h
22793 F:      include/uapi/linux/if_xdp.h
22794 F:      include/uapi/linux/xdp_diag.h
22795 F:      include/net/netns/xdp.h
22796 F:      net/xdp/
22797 F:      tools/testing/selftests/bpf/*xsk*
22798
22799 XEN BLOCK SUBSYSTEM
22800 M:      Roger Pau Monné <roger.pau@citrix.com>
22801 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22802 S:      Supported
22803 F:      drivers/block/xen*
22804 F:      drivers/block/xen-blkback/*
22805
22806 XEN HYPERVISOR ARM
22807 M:      Stefano Stabellini <sstabellini@kernel.org>
22808 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22809 S:      Maintained
22810 F:      arch/arm/include/asm/xen/
22811 F:      arch/arm/xen/
22812
22813 XEN HYPERVISOR ARM64
22814 M:      Stefano Stabellini <sstabellini@kernel.org>
22815 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22816 S:      Maintained
22817 F:      arch/arm64/include/asm/xen/
22818 F:      arch/arm64/xen/
22819
22820 XEN HYPERVISOR INTERFACE
22821 M:      Juergen Gross <jgross@suse.com>
22822 M:      Stefano Stabellini <sstabellini@kernel.org>
22823 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22824 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22825 S:      Supported
22826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22827 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22828 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22829 F:      drivers/*/xen-*front.c
22830 F:      drivers/xen/
22831 F:      include/uapi/xen/
22832 F:      include/xen/
22833 F:      kernel/configs/xen.config
22834
22835 XEN HYPERVISOR X86
22836 M:      Juergen Gross <jgross@suse.com>
22837 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22838 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22839 S:      Supported
22840 F:      arch/x86/configs/xen.config
22841 F:      arch/x86/include/asm/pvclock-abi.h
22842 F:      arch/x86/include/asm/xen/
22843 F:      arch/x86/platform/pvh/
22844 F:      arch/x86/xen/
22845
22846 XEN NETWORK BACKEND DRIVER
22847 M:      Wei Liu <wei.liu@kernel.org>
22848 M:      Paul Durrant <paul@xen.org>
22849 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22850 L:      netdev@vger.kernel.org
22851 S:      Supported
22852 F:      drivers/net/xen-netback/*
22853
22854 XEN PCI SUBSYSTEM
22855 M:      Juergen Gross <jgross@suse.com>
22856 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22857 S:      Supported
22858 F:      arch/x86/pci/*xen*
22859 F:      drivers/pci/*xen*
22860
22861 XEN PVSCSI DRIVERS
22862 M:      Juergen Gross <jgross@suse.com>
22863 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22864 L:      linux-scsi@vger.kernel.org
22865 S:      Supported
22866 F:      drivers/scsi/xen-scsifront.c
22867 F:      drivers/xen/xen-scsiback.c
22868 F:      include/xen/interface/io/vscsiif.h
22869
22870 XEN PVUSB DRIVER
22871 M:      Juergen Gross <jgross@suse.com>
22872 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22873 L:      linux-usb@vger.kernel.org
22874 S:      Supported
22875 F:      drivers/usb/host/xen*
22876 F:      include/xen/interface/io/usbif.h
22877
22878 XEN SOUND FRONTEND DRIVER
22879 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22880 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22881 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22882 S:      Supported
22883 F:      sound/xen/*
22884
22885 XEN SWIOTLB SUBSYSTEM
22886 M:      Juergen Gross <jgross@suse.com>
22887 M:      Stefano Stabellini <sstabellini@kernel.org>
22888 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22889 L:      iommu@lists.linux.dev
22890 S:      Supported
22891 F:      arch/*/include/asm/xen/swiotlb-xen.h
22892 F:      drivers/xen/swiotlb-xen.c
22893 F:      include/xen/arm/swiotlb-xen.h
22894 F:      include/xen/swiotlb-xen.h
22895
22896 XFS FILESYSTEM
22897 C:      irc://irc.oftc.net/xfs
22898 M:      Darrick J. Wong <djwong@kernel.org>
22899 L:      linux-xfs@vger.kernel.org
22900 S:      Supported
22901 W:      http://xfs.org/
22902 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22903 F:      Documentation/ABI/testing/sysfs-fs-xfs
22904 F:      Documentation/admin-guide/xfs.rst
22905 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22906 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22907 F:      fs/xfs/
22908 F:      include/uapi/linux/dqblk_xfs.h
22909 F:      include/uapi/linux/fsmap.h
22910
22911 XILINX AMS DRIVER
22912 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22913 L:      linux-iio@vger.kernel.org
22914 S:      Maintained
22915 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22916 F:      drivers/iio/adc/xilinx-ams.c
22917
22918 XILINX AXI ETHERNET DRIVER
22919 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22920 S:      Maintained
22921 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22922
22923 XILINX CAN DRIVER
22924 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22925 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22926 L:      linux-can@vger.kernel.org
22927 S:      Maintained
22928 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22929 F:      drivers/net/can/xilinx_can.c
22930
22931 XILINX GPIO DRIVER
22932 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22933 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22934 R:      Michal Simek <michal.simek@xilinx.com>
22935 S:      Maintained
22936 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22937 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22938 F:      drivers/gpio/gpio-xilinx.c
22939 F:      drivers/gpio/gpio-zynq.c
22940
22941 XILINX SD-FEC IP CORES
22942 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22943 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22944 S:      Maintained
22945 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22946 F:      Documentation/misc-devices/xilinx_sdfec.rst
22947 F:      drivers/misc/Kconfig
22948 F:      drivers/misc/Makefile
22949 F:      drivers/misc/xilinx_sdfec.c
22950 F:      include/uapi/misc/xilinx_sdfec.h
22951
22952 XILINX PWM DRIVER
22953 M:      Sean Anderson <sean.anderson@seco.com>
22954 S:      Maintained
22955 F:      drivers/pwm/pwm-xilinx.c
22956 F:      include/clocksource/timer-xilinx.h
22957
22958 XILINX UARTLITE SERIAL DRIVER
22959 M:      Peter Korsgaard <jacmet@sunsite.dk>
22960 L:      linux-serial@vger.kernel.org
22961 S:      Maintained
22962 F:      drivers/tty/serial/uartlite.c
22963
22964 XILINX VIDEO IP CORES
22965 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22966 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22967 L:      linux-media@vger.kernel.org
22968 S:      Supported
22969 T:      git git://linuxtv.org/media_tree.git
22970 F:      Documentation/devicetree/bindings/media/xilinx/
22971 F:      drivers/media/platform/xilinx/
22972 F:      include/uapi/linux/xilinx-v4l2-controls.h
22973
22974 XILINX ZYNQMP DPDMA DRIVER
22975 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22976 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22977 L:      dmaengine@vger.kernel.org
22978 S:      Supported
22979 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22980 F:      drivers/dma/xilinx/xilinx_dpdma.c
22981 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22982
22983 XILINX ZYNQMP PSGTR PHY DRIVER
22984 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22985 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22986 L:      linux-kernel@vger.kernel.org
22987 S:      Supported
22988 T:      git https://github.com/Xilinx/linux-xlnx.git
22989 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22990 F:      drivers/phy/xilinx/phy-zynqmp.c
22991
22992 XILINX ZYNQMP SHA3 DRIVER
22993 M:      Harsha <harsha.harsha@xilinx.com>
22994 S:      Maintained
22995 F:      drivers/crypto/xilinx/zynqmp-sha.c
22996
22997 XILINX EVENT MANAGEMENT DRIVER
22998 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22999 S:      Maintained
23000 F:      drivers/soc/xilinx/xlnx_event_manager.c
23001 F:      include/linux/firmware/xlnx-event-manager.h
23002
23003 XILLYBUS DRIVER
23004 M:      Eli Billauer <eli.billauer@gmail.com>
23005 L:      linux-kernel@vger.kernel.org
23006 S:      Supported
23007 F:      drivers/char/xillybus/
23008
23009 XLP9XX I2C DRIVER
23010 M:      George Cherian <gcherian@marvell.com>
23011 L:      linux-i2c@vger.kernel.org
23012 S:      Supported
23013 W:      http://www.marvell.com
23014 F:      drivers/i2c/busses/i2c-xlp9xx.c
23015
23016 XRA1403 GPIO EXPANDER
23017 M:      Nandor Han <nandor.han@ge.com>
23018 M:      Semi Malinen <semi.malinen@ge.com>
23019 L:      linux-gpio@vger.kernel.org
23020 S:      Maintained
23021 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
23022 F:      drivers/gpio/gpio-xra1403.c
23023
23024 XTENSA XTFPGA PLATFORM SUPPORT
23025 M:      Max Filippov <jcmvbkbc@gmail.com>
23026 L:      linux-xtensa@linux-xtensa.org
23027 S:      Maintained
23028 F:      drivers/spi/spi-xtensa-xtfpga.c
23029 F:      sound/soc/xtensa/xtfpga-i2s.c
23030
23031 YAM DRIVER FOR AX.25
23032 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
23033 L:      linux-hams@vger.kernel.org
23034 S:      Maintained
23035 F:      drivers/net/hamradio/yam*
23036 F:      include/linux/yam.h
23037
23038 YAMA SECURITY MODULE
23039 M:      Kees Cook <keescook@chromium.org>
23040 S:      Supported
23041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
23042 F:      Documentation/admin-guide/LSM/Yama.rst
23043 F:      security/yama/
23044
23045 YEALINK PHONE DRIVER
23046 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
23047 L:      usbb2k-api-dev@nongnu.org
23048 S:      Maintained
23049 F:      Documentation/input/devices/yealink.rst
23050 F:      drivers/input/misc/yealink.*
23051
23052 Z8530 DRIVER FOR AX.25
23053 M:      Joerg Reuter <jreuter@yaina.de>
23054 L:      linux-hams@vger.kernel.org
23055 S:      Maintained
23056 W:      http://yaina.de/jreuter/
23057 W:      http://www.qsl.net/dl1bke/
23058 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
23059 F:      drivers/net/hamradio/*scc.c
23060 F:      drivers/net/hamradio/z8530.h
23061
23062 ZBUD COMPRESSED PAGE ALLOCATOR
23063 M:      Seth Jennings <sjenning@redhat.com>
23064 M:      Dan Streetman <ddstreet@ieee.org>
23065 L:      linux-mm@kvack.org
23066 S:      Maintained
23067 F:      mm/zbud.c
23068
23069 Z3FOLD COMPRESSED PAGE ALLOCATOR
23070 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23071 R:      Miaohe Lin <linmiaohe@huawei.com>
23072 L:      linux-mm@kvack.org
23073 S:      Maintained
23074 F:      mm/z3fold.c
23075
23076 ZD1211RW WIRELESS DRIVER
23077 M:      Ulrich Kunitz <kune@deine-taler.de>
23078 L:      linux-wireless@vger.kernel.org
23079 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
23080 S:      Maintained
23081 W:      http://zd1211.ath.cx/wiki/DriverRewrite
23082 F:      drivers/net/wireless/zydas/zd1211rw/
23083
23084 ZD1301 MEDIA DRIVER
23085 M:      Antti Palosaari <crope@iki.fi>
23086 L:      linux-media@vger.kernel.org
23087 S:      Maintained
23088 W:      https://linuxtv.org/
23089 W:      http://palosaari.fi/linux/
23090 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23091 F:      drivers/media/usb/dvb-usb-v2/zd1301*
23092
23093 ZD1301_DEMOD MEDIA DRIVER
23094 M:      Antti Palosaari <crope@iki.fi>
23095 L:      linux-media@vger.kernel.org
23096 S:      Maintained
23097 W:      https://linuxtv.org/
23098 W:      http://palosaari.fi/linux/
23099 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23100 F:      drivers/media/dvb-frontends/zd1301_demod*
23101
23102 ZHAOXIN PROCESSOR SUPPORT
23103 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
23104 L:      linux-kernel@vger.kernel.org
23105 S:      Maintained
23106 F:      arch/x86/kernel/cpu/zhaoxin.c
23107
23108 ZONEFS FILESYSTEM
23109 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
23110 M:      Naohiro Aota <naohiro.aota@wdc.com>
23111 R:      Johannes Thumshirn <jth@kernel.org>
23112 L:      linux-fsdevel@vger.kernel.org
23113 S:      Maintained
23114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
23115 F:      Documentation/filesystems/zonefs.rst
23116 F:      fs/zonefs/
23117
23118 ZPOOL COMPRESSED PAGE STORAGE API
23119 M:      Dan Streetman <ddstreet@ieee.org>
23120 L:      linux-mm@kvack.org
23121 S:      Maintained
23122 F:      include/linux/zpool.h
23123 F:      mm/zpool.c
23124
23125 ZR36067 VIDEO FOR LINUX DRIVER
23126 M:      Corentin Labbe <clabbe@baylibre.com>
23127 L:      mjpeg-users@lists.sourceforge.net
23128 L:      linux-media@vger.kernel.org
23129 S:      Maintained
23130 W:      http://mjpeg.sourceforge.net/driver-zoran/
23131 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23132 F:      Documentation/driver-api/media/drivers/zoran.rst
23133 F:      drivers/media/pci/zoran/
23134
23135 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
23136 M:      Minchan Kim <minchan@kernel.org>
23137 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23138 L:      linux-kernel@vger.kernel.org
23139 S:      Maintained
23140 F:      Documentation/admin-guide/blockdev/zram.rst
23141 F:      drivers/block/zram/
23142
23143 ZS DECSTATION Z85C30 SERIAL DRIVER
23144 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
23145 S:      Maintained
23146 F:      drivers/tty/serial/zs.*
23147
23148 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
23149 M:      Minchan Kim <minchan@kernel.org>
23150 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23151 L:      linux-mm@kvack.org
23152 S:      Maintained
23153 F:      Documentation/mm/zsmalloc.rst
23154 F:      include/linux/zsmalloc.h
23155 F:      mm/zsmalloc.c
23156
23157 ZSTD
23158 M:      Nick Terrell <terrelln@fb.com>
23159 S:      Maintained
23160 B:      https://github.com/facebook/zstd/issues
23161 T:      git https://github.com/terrelln/linux.git
23162 F:      include/linux/zstd*
23163 F:      lib/zstd/
23164 F:      lib/decompress_unzstd.c
23165 F:      crypto/zstd.c
23166 N:      zstd
23167 K:      zstd
23168
23169 ZSWAP COMPRESSED SWAP CACHING
23170 M:      Seth Jennings <sjenning@redhat.com>
23171 M:      Dan Streetman <ddstreet@ieee.org>
23172 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23173 L:      linux-mm@kvack.org
23174 S:      Maintained
23175 F:      mm/zswap.c
23176
23177 THE REST
23178 M:      Linus Torvalds <torvalds@linux-foundation.org>
23179 L:      linux-kernel@vger.kernel.org
23180 S:      Buried alive in reporters
23181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23182 F:      *
23183 F:      */