Merge tag 'sound-6.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[platform/kernel/linux-rpi.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:      arch/x86/kernel/acpi/
365 F:      arch/x86/pci/acpi.c
366 F:      drivers/acpi/
367 F:      drivers/pci/*/*acpi*
368 F:      drivers/pci/*acpi*
369 F:      drivers/pnp/pnpacpi/
370 F:      include/acpi/
371 F:      include/linux/acpi.h
372 F:      include/linux/fwnode.h
373 F:      tools/power/acpi/
374
375 ACPI APEI
376 M:      "Rafael J. Wysocki" <rafael@kernel.org>
377 R:      Len Brown <lenb@kernel.org>
378 R:      James Morse <james.morse@arm.com>
379 R:      Tony Luck <tony.luck@intel.com>
380 R:      Borislav Petkov <bp@alien8.de>
381 L:      linux-acpi@vger.kernel.org
382 F:      drivers/acpi/apei/
383
384 ACPI COMPONENT ARCHITECTURE (ACPICA)
385 M:      Robert Moore <robert.moore@intel.com>
386 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
387 L:      linux-acpi@vger.kernel.org
388 L:      acpica-devel@lists.linuxfoundation.org
389 S:      Supported
390 W:      https://acpica.org/
391 W:      https://github.com/acpica/acpica/
392 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
393 B:      https://bugzilla.kernel.org
394 B:      https://bugs.acpica.org
395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
396 F:      drivers/acpi/acpica/
397 F:      include/acpi/
398 F:      tools/power/acpi/
399
400 ACPI FOR ARM64 (ACPI/arm64)
401 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
402 M:      Hanjun Guo <guohanjun@huawei.com>
403 M:      Sudeep Holla <sudeep.holla@arm.com>
404 L:      linux-acpi@vger.kernel.org
405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
406 S:      Maintained
407 F:      drivers/acpi/arm64
408
409 ACPI SERIAL MULTI INSTANTIATE DRIVER
410 M:      Hans de Goede <hdegoede@redhat.com>
411 L:      platform-driver-x86@vger.kernel.org
412 S:      Maintained
413 F:      drivers/platform/x86/serial-multi-instantiate.c
414
415 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
416 M:      Sudeep Holla <sudeep.holla@arm.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 F:      drivers/mailbox/pcc.c
420
421 ACPI PMIC DRIVERS
422 M:      "Rafael J. Wysocki" <rafael@kernel.org>
423 M:      Len Brown <lenb@kernel.org>
424 R:      Andy Shevchenko <andy@kernel.org>
425 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
426 L:      linux-acpi@vger.kernel.org
427 S:      Supported
428 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
429 B:      https://bugzilla.kernel.org
430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
431 F:      drivers/acpi/pmic/
432
433 ACPI THERMAL DRIVER
434 M:      Rafael J. Wysocki <rafael@kernel.org>
435 R:      Zhang Rui <rui.zhang@intel.com>
436 L:      linux-acpi@vger.kernel.org
437 S:      Supported
438 B:      https://bugzilla.kernel.org
439 F:      drivers/acpi/*thermal*
440
441 ACPI VIOT DRIVER
442 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
443 L:      linux-acpi@vger.kernel.org
444 L:      iommu@lists.linux.dev
445 S:      Maintained
446 F:      drivers/acpi/viot.c
447 F:      include/linux/acpi_viot.h
448
449 ACPI WMI DRIVER
450 L:      platform-driver-x86@vger.kernel.org
451 S:      Orphan
452 F:      drivers/platform/x86/wmi.c
453 F:      include/uapi/linux/wmi.h
454
455 ACRN HYPERVISOR SERVICE MODULE
456 M:      Fei Li <fei1.li@intel.com>
457 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
458 S:      Supported
459 W:      https://projectacrn.org
460 F:      Documentation/virt/acrn/
461 F:      drivers/virt/acrn/
462 F:      include/uapi/linux/acrn.h
463
464 AD1889 ALSA SOUND DRIVER
465 L:      linux-parisc@vger.kernel.org
466 S:      Maintained
467 W:      https://parisc.wiki.kernel.org/index.php/AD1889
468 F:      sound/pci/ad1889.*
469
470 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
471 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
472 L:      linux-iio@vger.kernel.org
473 S:      Supported
474 F:      drivers/iio/potentiometer/ad5110.c
475
476 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD5254
480 W:      https://ez.analog.com/linux-software-drivers
481 F:      drivers/misc/ad525x_dpot.c
482
483 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD5398
487 W:      https://ez.analog.com/linux-software-drivers
488 F:      drivers/regulator/ad5398.c
489
490 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7142
494 W:      https://ez.analog.com/linux-software-drivers
495 F:      drivers/input/misc/ad714x.c
496
497 AD7877 TOUCHSCREEN DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 S:      Supported
500 W:      http://wiki.analog.com/AD7877
501 W:      https://ez.analog.com/linux-software-drivers
502 F:      drivers/input/touchscreen/ad7877.c
503
504 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
505 M:      Michael Hennerich <michael.hennerich@analog.com>
506 S:      Supported
507 W:      http://wiki.analog.com/AD7879
508 W:      https://ez.analog.com/linux-software-drivers
509 F:      drivers/input/touchscreen/ad7879.c
510
511 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
512 M:      Jiri Kosina <jikos@kernel.org>
513 S:      Maintained
514
515 ADF7242 IEEE 802.15.4 RADIO DRIVER
516 M:      Michael Hennerich <michael.hennerich@analog.com>
517 L:      linux-wpan@vger.kernel.org
518 S:      Supported
519 W:      https://wiki.analog.com/ADF7242
520 W:      https://ez.analog.com/linux-software-drivers
521 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
522 F:      drivers/net/ieee802154/adf7242.c
523
524 ADM1025 HARDWARE MONITOR DRIVER
525 M:      Jean Delvare <jdelvare@suse.com>
526 L:      linux-hwmon@vger.kernel.org
527 S:      Maintained
528 F:      Documentation/hwmon/adm1025.rst
529 F:      drivers/hwmon/adm1025.c
530
531 ADM1029 HARDWARE MONITOR DRIVER
532 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
533 L:      linux-hwmon@vger.kernel.org
534 S:      Maintained
535 F:      drivers/hwmon/adm1029.c
536
537 ADM8211 WIRELESS DRIVER
538 L:      linux-wireless@vger.kernel.org
539 S:      Orphan
540 W:      https://wireless.wiki.kernel.org/
541 F:      drivers/net/wireless/admtek/adm8211.*
542
543 ADP1653 FLASH CONTROLLER DRIVER
544 M:      Sakari Ailus <sakari.ailus@iki.fi>
545 L:      linux-media@vger.kernel.org
546 S:      Maintained
547 F:      drivers/media/i2c/adp1653.c
548 F:      include/media/i2c/adp1653.h
549
550 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
551 M:      Michael Hennerich <michael.hennerich@analog.com>
552 S:      Supported
553 W:      http://wiki.analog.com/ADP5520
554 W:      https://ez.analog.com/linux-software-drivers
555 F:      drivers/gpio/gpio-adp5520.c
556 F:      drivers/input/keyboard/adp5520-keys.c
557 F:      drivers/leds/leds-adp5520.c
558 F:      drivers/mfd/adp5520.c
559 F:      drivers/video/backlight/adp5520_bl.c
560
561 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
562 M:      Michael Hennerich <michael.hennerich@analog.com>
563 S:      Supported
564 W:      http://wiki.analog.com/ADP5588
565 W:      https://ez.analog.com/linux-software-drivers
566 F:      Documentation/devicetree/bindings/input/adi,adp5588.yaml
567 F:      drivers/input/keyboard/adp5588-keys.c
568
569 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
570 M:      Michael Hennerich <michael.hennerich@analog.com>
571 S:      Supported
572 W:      http://wiki.analog.com/ADP8860
573 W:      https://ez.analog.com/linux-software-drivers
574 F:      drivers/video/backlight/adp8860_bl.c
575
576 ADT746X FAN DRIVER
577 M:      Colin Leroy <colin@colino.net>
578 S:      Maintained
579 F:      drivers/macintosh/therm_adt746x.c
580
581 ADT7475 HARDWARE MONITOR DRIVER
582 M:      Jean Delvare <jdelvare@suse.com>
583 L:      linux-hwmon@vger.kernel.org
584 S:      Maintained
585 F:      Documentation/hwmon/adt7475.rst
586 F:      drivers/hwmon/adt7475.c
587
588 ADVANSYS SCSI DRIVER
589 M:      Matthew Wilcox <willy@infradead.org>
590 M:      Hannes Reinecke <hare@suse.com>
591 L:      linux-scsi@vger.kernel.org
592 S:      Maintained
593 F:      Documentation/scsi/advansys.rst
594 F:      drivers/scsi/advansys.c
595
596 ADVANTECH SWBTN DRIVER
597 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
598 L:      platform-driver-x86@vger.kernel.org
599 S:      Maintained
600 F:      drivers/platform/x86/adv_swbutton.c
601
602 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
603 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
604 S:      Supported
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
606 F:      drivers/iio/accel/adxl313*
607
608 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
609 M:      Michael Hennerich <michael.hennerich@analog.com>
610 S:      Supported
611 W:      http://wiki.analog.com/ADXL345
612 W:      https://ez.analog.com/linux-software-drivers
613 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
614 F:      drivers/input/misc/adxl34x.c
615
616 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
617 M:      Puranjay Mohan <puranjay12@gmail.com>
618 L:      linux-iio@vger.kernel.org
619 S:      Supported
620 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
621 F:      drivers/iio/accel/adxl355.h
622 F:      drivers/iio/accel/adxl355_core.c
623 F:      drivers/iio/accel/adxl355_i2c.c
624 F:      drivers/iio/accel/adxl355_spi.c
625
626 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
627 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
628 L:      linux-iio@vger.kernel.org
629 S:      Supported
630 W:      https://ez.analog.com/linux-software-drivers
631 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
632 F:      drivers/iio/accel/adxl367*
633
634 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
635 M:      Michael Hennerich <michael.hennerich@analog.com>
636 S:      Supported
637 W:      https://ez.analog.com/linux-software-drivers
638 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
639 F:      drivers/iio/accel/adxl372.c
640 F:      drivers/iio/accel/adxl372_i2c.c
641 F:      drivers/iio/accel/adxl372_spi.c
642
643 AF9013 MEDIA DRIVER
644 M:      Antti Palosaari <crope@iki.fi>
645 L:      linux-media@vger.kernel.org
646 S:      Maintained
647 W:      https://linuxtv.org
648 W:      http://palosaari.fi/linux/
649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
650 T:      git git://linuxtv.org/anttip/media_tree.git
651 F:      drivers/media/dvb-frontends/af9013*
652
653 AF9033 MEDIA DRIVER
654 M:      Antti Palosaari <crope@iki.fi>
655 L:      linux-media@vger.kernel.org
656 S:      Maintained
657 W:      https://linuxtv.org
658 W:      http://palosaari.fi/linux/
659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
660 T:      git git://linuxtv.org/anttip/media_tree.git
661 F:      drivers/media/dvb-frontends/af9033*
662
663 AFFS FILE SYSTEM
664 M:      David Sterba <dsterba@suse.com>
665 L:      linux-fsdevel@vger.kernel.org
666 S:      Odd Fixes
667 F:      Documentation/filesystems/affs.rst
668 F:      fs/affs/
669
670 AFS FILESYSTEM
671 M:      David Howells <dhowells@redhat.com>
672 M:      Marc Dionne <marc.dionne@auristor.com>
673 L:      linux-afs@lists.infradead.org
674 S:      Supported
675 W:      https://www.infradead.org/~dhowells/kafs/
676 F:      Documentation/filesystems/afs.rst
677 F:      fs/afs/
678 F:      include/trace/events/afs.h
679
680 AGPGART DRIVER
681 M:      David Airlie <airlied@redhat.com>
682 L:      dri-devel@lists.freedesktop.org
683 S:      Maintained
684 T:      git git://anongit.freedesktop.org/drm/drm
685 F:      drivers/char/agp/
686 F:      include/linux/agp*
687 F:      include/uapi/linux/agp*
688
689 AHA152X SCSI DRIVER
690 M:      "Juergen E. Fischer" <fischer@norbit.de>
691 L:      linux-scsi@vger.kernel.org
692 S:      Maintained
693 F:      drivers/scsi/aha152x*
694 F:      drivers/scsi/pcmcia/aha152x*
695
696 AIC7XXX / AIC79XX SCSI DRIVER
697 M:      Hannes Reinecke <hare@suse.com>
698 L:      linux-scsi@vger.kernel.org
699 S:      Maintained
700 F:      drivers/scsi/aic7xxx/
701
702 AIMSLAB FM RADIO RECEIVER DRIVER
703 M:      Hans Verkuil <hverkuil@xs4all.nl>
704 L:      linux-media@vger.kernel.org
705 S:      Maintained
706 W:      https://linuxtv.org
707 T:      git git://linuxtv.org/media_tree.git
708 F:      drivers/media/radio/radio-aimslab*
709
710 AIO
711 M:      Benjamin LaHaise <bcrl@kvack.org>
712 L:      linux-aio@kvack.org
713 S:      Supported
714 F:      fs/aio.c
715 F:      include/linux/*aio*.h
716
717 AIRSPY MEDIA DRIVER
718 M:      Antti Palosaari <crope@iki.fi>
719 L:      linux-media@vger.kernel.org
720 S:      Maintained
721 W:      https://linuxtv.org
722 W:      http://palosaari.fi/linux/
723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
724 T:      git git://linuxtv.org/anttip/media_tree.git
725 F:      drivers/media/usb/airspy/
726
727 ALACRITECH GIGABIT ETHERNET DRIVER
728 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
729 S:      Maintained
730 F:      drivers/net/ethernet/alacritech/*
731
732 ALCATEL SPEEDTOUCH USB DRIVER
733 M:      Duncan Sands <duncan.sands@free.fr>
734 L:      linux-usb@vger.kernel.org
735 S:      Maintained
736 W:      http://www.linux-usb.org/SpeedTouch/
737 F:      drivers/usb/atm/speedtch.c
738 F:      drivers/usb/atm/usbatm.c
739
740 ALCHEMY AU1XX0 MMC DRIVER
741 M:      Manuel Lauss <manuel.lauss@gmail.com>
742 S:      Maintained
743 F:      drivers/mmc/host/au1xmmc.c
744
745 ALI1563 I2C DRIVER
746 M:      Rudolf Marek <r.marek@assembler.cz>
747 L:      linux-i2c@vger.kernel.org
748 S:      Maintained
749 F:      Documentation/i2c/busses/i2c-ali1563.rst
750 F:      drivers/i2c/busses/i2c-ali1563.c
751
752 ALIBABA ELASTIC RDMA DRIVER
753 M:      Cheng Xu <chengyou@linux.alibaba.com>
754 M:      Kai Shen <kaishen@linux.alibaba.com>
755 L:      linux-rdma@vger.kernel.org
756 S:      Supported
757 F:      drivers/infiniband/hw/erdma
758 F:      include/uapi/rdma/erdma-abi.h
759
760 ALIBABA PMU DRIVER
761 M:      Shuai Xue <xueshuai@linux.alibaba.com>
762 S:      Supported
763 F:      Documentation/admin-guide/perf/alibaba_pmu.rst
764 F:      drivers/perf/alibaba_uncore_drw_pmu.c
765
766 ALIENWARE WMI DRIVER
767 L:      Dell.Client.Kernel@dell.com
768 S:      Maintained
769 F:      drivers/platform/x86/dell/alienware-wmi.c
770
771 ALLEGRO DVT VIDEO IP CORE DRIVER
772 M:      Michael Tretter <m.tretter@pengutronix.de>
773 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
774 L:      linux-media@vger.kernel.org
775 S:      Maintained
776 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
777 F:      drivers/media/platform/allegro-dvt/
778
779 ALLWINNER A10 CSI DRIVER
780 M:      Maxime Ripard <mripard@kernel.org>
781 L:      linux-media@vger.kernel.org
782 S:      Maintained
783 T:      git git://linuxtv.org/media_tree.git
784 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
785 F:      drivers/media/platform/sunxi/sun4i-csi/
786
787 ALLWINNER A31 CSI DRIVER
788 M:      Yong Deng <yong.deng@magewell.com>
789 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
790 L:      linux-media@vger.kernel.org
791 S:      Maintained
792 T:      git git://linuxtv.org/media_tree.git
793 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
794 F:      drivers/media/platform/sunxi/sun6i-csi/
795
796 ALLWINNER A31 ISP DRIVER
797 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
798 L:      linux-media@vger.kernel.org
799 S:      Maintained
800 T:      git git://linuxtv.org/media_tree.git
801 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
802 F:      drivers/staging/media/sunxi/sun6i-isp/
803 F:      drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
804
805 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
806 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
807 L:      linux-media@vger.kernel.org
808 S:      Maintained
809 T:      git git://linuxtv.org/media_tree.git
810 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
811 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
812
813 ALLWINNER CPUFREQ DRIVER
814 M:      Yangtao Li <tiny.windzz@gmail.com>
815 L:      linux-pm@vger.kernel.org
816 S:      Maintained
817 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
818 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
819
820 ALLWINNER CRYPTO DRIVERS
821 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
822 L:      linux-crypto@vger.kernel.org
823 S:      Maintained
824 F:      drivers/crypto/allwinner/
825
826 ALLWINNER HARDWARE SPINLOCK SUPPORT
827 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
828 S:      Maintained
829 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
830 F:      drivers/hwspinlock/sun6i_hwspinlock.c
831
832 ALLWINNER THERMAL DRIVER
833 M:      Vasily Khoruzhick <anarsoul@gmail.com>
834 M:      Yangtao Li <tiny.windzz@gmail.com>
835 L:      linux-pm@vger.kernel.org
836 S:      Maintained
837 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
838 F:      drivers/thermal/sun8i_thermal.c
839
840 ALLWINNER VPU DRIVER
841 M:      Maxime Ripard <mripard@kernel.org>
842 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
843 L:      linux-media@vger.kernel.org
844 S:      Maintained
845 F:      drivers/staging/media/sunxi/cedrus/
846
847 ALLWINNER DMIC DRIVERS
848 M:      Ban Tao <fengzheng923@gmail.com>
849 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
850 S:      Maintained
851 F:      Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
852 F:      sound/soc/sunxi/sun50i-dmic.c
853
854 ALPHA PORT
855 M:      Richard Henderson <richard.henderson@linaro.org>
856 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
857 M:      Matt Turner <mattst88@gmail.com>
858 L:      linux-alpha@vger.kernel.org
859 S:      Odd Fixes
860 F:      arch/alpha/
861
862 ALPS PS/2 TOUCHPAD DRIVER
863 R:      Pali Rohár <pali@kernel.org>
864 F:      drivers/input/mouse/alps.*
865
866 ALTERA I2C CONTROLLER DRIVER
867 M:      Thor Thayer <thor.thayer@linux.intel.com>
868 S:      Maintained
869 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
870 F:      drivers/i2c/busses/i2c-altera.c
871
872 ALTERA MAILBOX DRIVER
873 M:      Mun Yew Tham <mun.yew.tham@intel.com>
874 S:      Maintained
875 F:      drivers/mailbox/mailbox-altera.c
876
877 ALTERA MSGDMA IP CORE DRIVER
878 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
879 R:      Stefan Roese <sr@denx.de>
880 L:      dmaengine@vger.kernel.org
881 S:      Odd Fixes
882 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
883 F:      drivers/dma/altera-msgdma.c
884
885 ALTERA PIO DRIVER
886 M:      Mun Yew Tham <mun.yew.tham@intel.com>
887 L:      linux-gpio@vger.kernel.org
888 S:      Maintained
889 F:      drivers/gpio/gpio-altera.c
890
891 ALTERA SYSTEM MANAGER DRIVER
892 M:      Thor Thayer <thor.thayer@linux.intel.com>
893 S:      Maintained
894 F:      drivers/mfd/altera-sysmgr.c
895 F:      include/linux/mfd/altera-sysmgr.h
896
897 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
898 M:      Thor Thayer <thor.thayer@linux.intel.com>
899 S:      Maintained
900 F:      drivers/gpio/gpio-altera-a10sr.c
901 F:      drivers/mfd/altera-a10sr.c
902 F:      drivers/reset/reset-a10sr.c
903 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
904 F:      include/linux/mfd/altera-a10sr.h
905
906 ALTERA TRIPLE SPEED ETHERNET DRIVER
907 M:      Joyce Ooi <joyce.ooi@intel.com>
908 L:      netdev@vger.kernel.org
909 S:      Maintained
910 F:      drivers/net/ethernet/altera/
911
912 ALTERA TSE PCS
913 M:      Maxime Chevallier <maxime.chevallier@bootlin.com>
914 L:      netdev@vger.kernel.org
915 S:      Supported
916 F:      drivers/net/pcs/pcs-altera-tse.c
917 F:      include/linux/pcs-altera-tse.h
918
919 ALTERA UART/JTAG UART SERIAL DRIVERS
920 M:      Tobias Klauser <tklauser@distanz.ch>
921 L:      linux-serial@vger.kernel.org
922 S:      Maintained
923 F:      drivers/tty/serial/altera_jtaguart.c
924 F:      drivers/tty/serial/altera_uart.c
925 F:      include/linux/altera_jtaguart.h
926 F:      include/linux/altera_uart.h
927
928 AMAZON ANNAPURNA LABS FIC DRIVER
929 M:      Talel Shenhar <talel@amazon.com>
930 S:      Maintained
931 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
932 F:      drivers/irqchip/irq-al-fic.c
933
934 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
935 M:      Talel Shenhar <talel@amazon.com>
936 M:      Talel Shenhar <talelshenhar@gmail.com>
937 S:      Maintained
938 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
939 F:      drivers/edac/al_mc_edac.c
940
941 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
942 M:      Talel Shenhar <talel@amazon.com>
943 S:      Maintained
944 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
945 F:      drivers/thermal/thermal_mmio.c
946
947 AMAZON ETHERNET DRIVERS
948 M:      Shay Agroskin <shayagr@amazon.com>
949 M:      Arthur Kiyanovski <akiyano@amazon.com>
950 R:      David Arinzon <darinzon@amazon.com>
951 R:      Noam Dagan <ndagan@amazon.com>
952 R:      Saeed Bishara <saeedb@amazon.com>
953 L:      netdev@vger.kernel.org
954 S:      Supported
955 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
956 F:      drivers/net/ethernet/amazon/
957
958 AMAZON RDMA EFA DRIVER
959 M:      Gal Pressman <galpress@amazon.com>
960 R:      Yossi Leybovich <sleybo@amazon.com>
961 L:      linux-rdma@vger.kernel.org
962 S:      Supported
963 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
964 F:      drivers/infiniband/hw/efa/
965 F:      include/uapi/rdma/efa-abi.h
966
967 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
968 M:      Tom Lendacky <thomas.lendacky@amd.com>
969 M:      John Allen <john.allen@amd.com>
970 L:      linux-crypto@vger.kernel.org
971 S:      Supported
972 F:      drivers/crypto/ccp/
973 F:      include/linux/ccp.h
974
975 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
976 M:      Brijesh Singh <brijesh.singh@amd.com>
977 M:      Tom Lendacky <thomas.lendacky@amd.com>
978 L:      linux-crypto@vger.kernel.org
979 S:      Supported
980 F:      drivers/crypto/ccp/sev*
981 F:      include/uapi/linux/psp-sev.h
982
983 AMD DISPLAY CORE
984 M:      Harry Wentland <harry.wentland@amd.com>
985 M:      Leo Li <sunpeng.li@amd.com>
986 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
987 L:      amd-gfx@lists.freedesktop.org
988 S:      Supported
989 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
990 F:      drivers/gpu/drm/amd/display/
991
992 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
993 M:      Huang Rui <ray.huang@amd.com>
994 L:      linux-hwmon@vger.kernel.org
995 S:      Supported
996 F:      Documentation/hwmon/fam15h_power.rst
997 F:      drivers/hwmon/fam15h_power.c
998
999 AMD FCH GPIO DRIVER
1000 M:      Enrico Weigelt, metux IT consult <info@metux.net>
1001 L:      linux-gpio@vger.kernel.org
1002 S:      Maintained
1003 F:      drivers/gpio/gpio-amd-fch.c
1004 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
1005
1006 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
1007 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1008 S:      Orphan
1009 F:      drivers/usb/gadget/udc/amd5536udc.*
1010
1011 AMD GEODE PROCESSOR/CHIPSET SUPPORT
1012 M:      Andres Salomon <dilinger@queued.net>
1013 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1014 S:      Supported
1015 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
1016 F:      arch/x86/include/asm/geode.h
1017 F:      drivers/char/hw_random/geode-rng.c
1018 F:      drivers/crypto/geode*
1019 F:      drivers/video/fbdev/geode/
1020
1021 AMD IOMMU (AMD-VI)
1022 M:      Joerg Roedel <joro@8bytes.org>
1023 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1024 L:      iommu@lists.linux.dev
1025 S:      Maintained
1026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
1027 F:      drivers/iommu/amd/
1028 F:      include/linux/amd-iommu.h
1029
1030 AMD KFD
1031 M:      Felix Kuehling <Felix.Kuehling@amd.com>
1032 L:      amd-gfx@lists.freedesktop.org
1033 S:      Supported
1034 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1035 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1036 F:      drivers/gpu/drm/amd/amdkfd/
1037 F:      drivers/gpu/drm/amd/include/cik_structs.h
1038 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1039 F:      drivers/gpu/drm/amd/include/v9_structs.h
1040 F:      drivers/gpu/drm/amd/include/vi_structs.h
1041 F:      include/uapi/linux/kfd_ioctl.h
1042 F:      include/uapi/linux/kfd_sysfs.h
1043
1044 AMD SPI DRIVER
1045 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1046 S:      Maintained
1047 F:      drivers/spi/spi-amd.c
1048
1049 AMD MP2 I2C DRIVER
1050 M:      Elie Morisse <syniurge@gmail.com>
1051 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1052 L:      linux-i2c@vger.kernel.org
1053 S:      Maintained
1054 F:      drivers/i2c/busses/i2c-amd-mp2*
1055
1056 AMD PMC DRIVER
1057 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1058 L:      platform-driver-x86@vger.kernel.org
1059 S:      Maintained
1060 F:      drivers/platform/x86/amd/pmc.c
1061
1062 AMD PMF DRIVER
1063 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1064 L:      platform-driver-x86@vger.kernel.org
1065 S:      Maintained
1066 F:      Documentation/ABI/testing/sysfs-amd-pmf
1067 F:      drivers/platform/x86/amd/pmf/
1068
1069 AMD HSMP DRIVER
1070 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1071 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1072 L:      platform-driver-x86@vger.kernel.org
1073 S:      Maintained
1074 F:      Documentation/x86/amd_hsmp.rst
1075 F:      arch/x86/include/asm/amd_hsmp.h
1076 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1077 F:      drivers/platform/x86/amd/hsmp.c
1078
1079 AMD POWERPLAY AND SWSMU
1080 M:      Evan Quan <evan.quan@amd.com>
1081 L:      amd-gfx@lists.freedesktop.org
1082 S:      Supported
1083 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1084 F:      drivers/gpu/drm/amd/pm/
1085
1086 AMD PSTATE DRIVER
1087 M:      Huang Rui <ray.huang@amd.com>
1088 L:      linux-pm@vger.kernel.org
1089 S:      Supported
1090 F:      Documentation/admin-guide/pm/amd-pstate.rst
1091 F:      drivers/cpufreq/amd-pstate*
1092 F:      include/linux/amd-pstate.h
1093 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1094
1095 AMD PTDMA DRIVER
1096 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1097 L:      dmaengine@vger.kernel.org
1098 S:      Maintained
1099 F:      drivers/dma/ptdma/
1100
1101 AMD SEATTLE DEVICE TREE SUPPORT
1102 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1103 M:      Tom Lendacky <thomas.lendacky@amd.com>
1104 S:      Supported
1105 F:      arch/arm64/boot/dts/amd/
1106
1107 AMD XGBE DRIVER
1108 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1109 L:      netdev@vger.kernel.org
1110 S:      Supported
1111 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1112 F:      drivers/net/ethernet/amd/xgbe/
1113
1114 AMD SENSOR FUSION HUB DRIVER
1115 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1116 L:      linux-input@vger.kernel.org
1117 S:      Maintained
1118 F:      Documentation/hid/amd-sfh*
1119 F:      drivers/hid/amd-sfh-hid/
1120
1121 AMLOGIC DDR PMU DRIVER
1122 M:      Jiucheng Xu <jiucheng.xu@amlogic.com>
1123 L:      linux-amlogic@lists.infradead.org
1124 S:      Supported
1125 W:      http://www.amlogic.com
1126 F:      Documentation/admin-guide/perf/meson-ddr-pmu.rst
1127 F:      Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1128 F:      drivers/perf/amlogic/
1129 F:      include/soc/amlogic/
1130
1131 AMPHION VPU CODEC V4L2 DRIVER
1132 M:      Ming Qian <ming.qian@nxp.com>
1133 M:      Shijie Qin <shijie.qin@nxp.com>
1134 M:      Zhou Peng <eagle.zhou@nxp.com>
1135 L:      linux-media@vger.kernel.org
1136 S:      Maintained
1137 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1138 F:      drivers/media/platform/amphion/
1139
1140 AMS AS73211 DRIVER
1141 M:      Christian Eggers <ceggers@arri.de>
1142 L:      linux-iio@vger.kernel.org
1143 S:      Maintained
1144 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1145 F:      drivers/iio/light/as73211.c
1146
1147 AMT (Automatic Multicast Tunneling)
1148 M:      Taehee Yoo <ap420073@gmail.com>
1149 L:      netdev@vger.kernel.org
1150 S:      Maintained
1151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1153 F:      drivers/net/amt.c
1154
1155 ANALOG DEVICES INC AD4130 DRIVER
1156 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1157 L:      linux-iio@vger.kernel.org
1158 S:      Supported
1159 W:      http://ez.analog.com/community/linux-device-drivers
1160 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1161 F:      Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1162 F:      drivers/iio/adc/ad4130.c
1163
1164 ANALOG DEVICES INC AD7192 DRIVER
1165 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1166 L:      linux-iio@vger.kernel.org
1167 S:      Supported
1168 W:      https://ez.analog.com/linux-software-drivers
1169 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1170 F:      drivers/iio/adc/ad7192.c
1171
1172 ANALOG DEVICES INC AD7292 DRIVER
1173 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1174 L:      linux-iio@vger.kernel.org
1175 S:      Supported
1176 W:      https://ez.analog.com/linux-software-drivers
1177 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1178 F:      drivers/iio/adc/ad7292.c
1179
1180 ANALOG DEVICES INC AD3552R DRIVER
1181 M:      Nuno Sá <nuno.sa@analog.com>
1182 L:      linux-iio@vger.kernel.org
1183 S:      Supported
1184 W:      https://ez.analog.com/linux-software-drivers
1185 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1186 F:      drivers/iio/dac/ad3552r.c
1187
1188 ANALOG DEVICES INC AD7293 DRIVER
1189 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1190 L:      linux-iio@vger.kernel.org
1191 S:      Supported
1192 W:      https://ez.analog.com/linux-software-drivers
1193 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1194 F:      drivers/iio/dac/ad7293.c
1195
1196 ANALOG DEVICES INC AD7768-1 DRIVER
1197 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1198 L:      linux-iio@vger.kernel.org
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1202 F:      drivers/iio/adc/ad7768-1.c
1203
1204 ANALOG DEVICES INC AD7780 DRIVER
1205 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1206 M:      Renato Lui Geh <renatogeh@gmail.com>
1207 L:      linux-iio@vger.kernel.org
1208 S:      Supported
1209 W:      https://ez.analog.com/linux-software-drivers
1210 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1211 F:      drivers/iio/adc/ad7780.c
1212
1213 ANALOG DEVICES INC AD74115 DRIVER
1214 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1215 L:      linux-iio@vger.kernel.org
1216 S:      Supported
1217 W:      http://ez.analog.com/community/linux-device-drivers
1218 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1219 F:      drivers/iio/addac/ad74115.c
1220
1221 ANALOG DEVICES INC AD74413R DRIVER
1222 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1223 L:      linux-iio@vger.kernel.org
1224 S:      Supported
1225 W:      https://ez.analog.com/linux-software-drivers
1226 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1227 F:      drivers/iio/addac/ad74413r.c
1228 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1229
1230 ANALOG DEVICES INC AD9389B DRIVER
1231 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1232 L:      linux-media@vger.kernel.org
1233 S:      Maintained
1234 F:      drivers/media/i2c/ad9389b*
1235
1236 ANALOG DEVICES INC ADA4250 DRIVER
1237 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1238 L:      linux-iio@vger.kernel.org
1239 S:      Supported
1240 W:      https://ez.analog.com/linux-software-drivers
1241 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1242 F:      drivers/iio/amplifiers/ada4250.c
1243
1244 ANALOG DEVICES INC ADF4377 DRIVER
1245 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1246 L:      linux-iio@vger.kernel.org
1247 S:      Supported
1248 W:      https://ez.analog.com/linux-software-drivers
1249 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1250 F:      drivers/iio/frequency/adf4377.c
1251
1252 ANALOG DEVICES INC ADGS1408 DRIVER
1253 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1254 S:      Supported
1255 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1256 F:      drivers/mux/adgs1408.c
1257
1258 ANALOG DEVICES INC ADIN DRIVER
1259 M:      Michael Hennerich <michael.hennerich@analog.com>
1260 L:      netdev@vger.kernel.org
1261 S:      Supported
1262 W:      https://ez.analog.com/linux-software-drivers
1263 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1264 F:      drivers/net/phy/adin.c
1265
1266 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1267 M:      Nuno Sa <nuno.sa@analog.com>
1268 L:      linux-iio@vger.kernel.org
1269 S:      Supported
1270 F:      drivers/iio/imu/adis.c
1271 F:      drivers/iio/imu/adis_buffer.c
1272 F:      drivers/iio/imu/adis_trigger.c
1273 F:      include/linux/iio/imu/adis.h
1274
1275 ANALOG DEVICES INC ADIS16460 DRIVER
1276 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1277 L:      linux-iio@vger.kernel.org
1278 S:      Supported
1279 W:      https://ez.analog.com/linux-software-drivers
1280 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1281 F:      drivers/iio/imu/adis16460.c
1282
1283 ANALOG DEVICES INC ADIS16475 DRIVER
1284 M:      Nuno Sa <nuno.sa@analog.com>
1285 L:      linux-iio@vger.kernel.org
1286 W:      https://ez.analog.com/linux-software-drivers
1287 S:      Supported
1288 F:      drivers/iio/imu/adis16475.c
1289 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1290
1291 ANALOG DEVICES INC ADM1177 DRIVER
1292 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1293 L:      linux-hwmon@vger.kernel.org
1294 S:      Supported
1295 W:      https://ez.analog.com/linux-software-drivers
1296 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1297 F:      drivers/hwmon/adm1177.c
1298
1299 ANALOG DEVICES INC ADMV1013 DRIVER
1300 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1301 L:      linux-iio@vger.kernel.org
1302 S:      Supported
1303 W:      https://ez.analog.com/linux-software-drivers
1304 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1305 F:      drivers/iio/frequency/admv1013.c
1306
1307 ANALOG DEVICES INC ADMV8818 DRIVER
1308 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1309 L:      linux-iio@vger.kernel.org
1310 S:      Supported
1311 W:      https://ez.analog.com/linux-software-drivers
1312 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1313 F:      drivers/iio/filter/admv8818.c
1314
1315 ANALOG DEVICES INC ADMV1014 DRIVER
1316 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1317 L:      linux-iio@vger.kernel.org
1318 S:      Supported
1319 W:      https://ez.analog.com/linux-software-drivers
1320 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1321 F:      drivers/iio/frequency/admv1014.c
1322
1323 ANALOG DEVICES INC ADP5061 DRIVER
1324 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1325 L:      linux-pm@vger.kernel.org
1326 S:      Supported
1327 W:      https://ez.analog.com/linux-software-drivers
1328 F:      drivers/power/supply/adp5061.c
1329
1330 ANALOG DEVICES INC ADRF6780 DRIVER
1331 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1332 L:      linux-iio@vger.kernel.org
1333 S:      Supported
1334 W:      https://ez.analog.com/linux-software-drivers
1335 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1336 F:      drivers/iio/frequency/adrf6780.c
1337
1338 ANALOG DEVICES INC ADV7180 DRIVER
1339 M:      Lars-Peter Clausen <lars@metafoo.de>
1340 L:      linux-media@vger.kernel.org
1341 S:      Supported
1342 W:      https://ez.analog.com/linux-software-drivers
1343 F:      drivers/media/i2c/adv7180.c
1344 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1345
1346 ANALOG DEVICES INC ADV748X DRIVER
1347 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1348 L:      linux-media@vger.kernel.org
1349 S:      Maintained
1350 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1351 F:      drivers/media/i2c/adv748x/*
1352
1353 ANALOG DEVICES INC ADV7511 DRIVER
1354 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1355 L:      linux-media@vger.kernel.org
1356 S:      Maintained
1357 F:      drivers/media/i2c/adv7511*
1358
1359 ANALOG DEVICES INC ADV7604 DRIVER
1360 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1361 L:      linux-media@vger.kernel.org
1362 S:      Maintained
1363 F:      drivers/media/i2c/adv7604*
1364 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1365
1366 ANALOG DEVICES INC ADV7842 DRIVER
1367 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1368 L:      linux-media@vger.kernel.org
1369 S:      Maintained
1370 F:      drivers/media/i2c/adv7842*
1371
1372 ANALOG DEVICES INC ADXRS290 DRIVER
1373 M:      Nishant Malpani <nish.malpani25@gmail.com>
1374 L:      linux-iio@vger.kernel.org
1375 S:      Supported
1376 F:      drivers/iio/gyro/adxrs290.c
1377 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1378
1379 ANALOG DEVICES INC ASOC CODEC DRIVERS
1380 M:      Lars-Peter Clausen <lars@metafoo.de>
1381 M:      Nuno Sá <nuno.sa@analog.com>
1382 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1383 S:      Supported
1384 W:      http://wiki.analog.com/
1385 W:      https://ez.analog.com/linux-software-drivers
1386 F:      sound/soc/codecs/ad1*
1387 F:      sound/soc/codecs/ad7*
1388 F:      sound/soc/codecs/adau*
1389 F:      sound/soc/codecs/adav*
1390 F:      sound/soc/codecs/sigmadsp.*
1391 F:      sound/soc/codecs/ssm*
1392
1393 ANALOG DEVICES INC DMA DRIVERS
1394 M:      Lars-Peter Clausen <lars@metafoo.de>
1395 S:      Supported
1396 W:      https://ez.analog.com/linux-software-drivers
1397 F:      drivers/dma/dma-axi-dmac.c
1398
1399 ANALOG DEVICES INC IIO DRIVERS
1400 M:      Lars-Peter Clausen <lars@metafoo.de>
1401 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1402 S:      Supported
1403 W:      http://wiki.analog.com/
1404 W:      https://ez.analog.com/linux-software-drivers
1405 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1406 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1407 F:      Documentation/devicetree/bindings/iio/*/adi,*
1408 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1409 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1410 F:      drivers/iio/*/ad*
1411 F:      drivers/iio/adc/ltc249*
1412 F:      drivers/iio/amplifiers/hmc425a.c
1413 F:      drivers/staging/iio/*/ad*
1414 X:      drivers/iio/*/adjd*
1415
1416 ANALOG DEVICES INC MAX31760 DRIVER
1417 M:      Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1418 S:      Maintained
1419 W:      http://wiki.analog.com/
1420 W:      https://ez.analog.com/linux-software-drivers
1421 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1422 F:      Documentation/hwmon/max31760.rst
1423 F:      drivers/hwmon/max31760.c
1424
1425 ANALOGBITS PLL LIBRARIES
1426 M:      Paul Walmsley <paul.walmsley@sifive.com>
1427 S:      Supported
1428 F:      drivers/clk/analogbits/*
1429 F:      include/linux/clk/analogbits*
1430
1431 ANDROID CONFIG FRAGMENTS
1432 M:      Rob Herring <robh@kernel.org>
1433 S:      Supported
1434 F:      kernel/configs/android*
1435
1436 ANDROID DRIVERS
1437 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1438 M:      Arve Hjønnevåg <arve@android.com>
1439 M:      Todd Kjos <tkjos@android.com>
1440 M:      Martijn Coenen <maco@android.com>
1441 M:      Joel Fernandes <joel@joelfernandes.org>
1442 M:      Christian Brauner <christian@brauner.io>
1443 M:      Carlos Llamas <cmllamas@google.com>
1444 M:      Suren Baghdasaryan <surenb@google.com>
1445 L:      linux-kernel@vger.kernel.org
1446 S:      Supported
1447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1448 F:      drivers/android/
1449
1450 ANDROID GOLDFISH PIC DRIVER
1451 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1452 S:      Supported
1453 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1454 F:      drivers/irqchip/irq-goldfish-pic.c
1455
1456 ANDROID GOLDFISH RTC DRIVER
1457 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1458 S:      Supported
1459 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1460 F:      drivers/rtc/rtc-goldfish.c
1461
1462 AOA (Apple Onboard Audio) ALSA DRIVER
1463 M:      Johannes Berg <johannes@sipsolutions.net>
1464 L:      linuxppc-dev@lists.ozlabs.org
1465 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      sound/aoa/
1468
1469 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1470 M:      William Breathitt Gray <william.gray@linaro.org>
1471 L:      linux-iio@vger.kernel.org
1472 S:      Maintained
1473 F:      drivers/iio/addac/stx104.c
1474
1475 APM DRIVER
1476 M:      Jiri Kosina <jikos@kernel.org>
1477 S:      Odd fixes
1478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1479 F:      arch/x86/kernel/apm_32.c
1480 F:      drivers/char/apm-emulation.c
1481 F:      include/linux/apm_bios.h
1482 F:      include/uapi/linux/apm_bios.h
1483
1484 APPARMOR SECURITY MODULE
1485 M:      John Johansen <john.johansen@canonical.com>
1486 M:      John Johansen <john@apparmor.net>
1487 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1488 S:      Supported
1489 W:      apparmor.net
1490 B:      https://gitlab.com/apparmor/apparmor-kernel
1491 C:      irc://irc.oftc.net/apparmor
1492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1493 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1494 F:      Documentation/admin-guide/LSM/apparmor.rst
1495 F:      security/apparmor/
1496
1497 APPLE BCM5974 MULTITOUCH DRIVER
1498 M:      Henrik Rydberg <rydberg@bitmath.org>
1499 L:      linux-input@vger.kernel.org
1500 S:      Odd fixes
1501 F:      drivers/input/mouse/bcm5974.c
1502
1503 APPLE PCIE CONTROLLER DRIVER
1504 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1505 M:      Marc Zyngier <maz@kernel.org>
1506 L:      linux-pci@vger.kernel.org
1507 S:      Maintained
1508 F:      drivers/pci/controller/pcie-apple.c
1509
1510 APPLE SMC DRIVER
1511 M:      Henrik Rydberg <rydberg@bitmath.org>
1512 L:      linux-hwmon@vger.kernel.org
1513 S:      Odd fixes
1514 F:      drivers/hwmon/applesmc.c
1515
1516 APPLETALK NETWORK LAYER
1517 L:      netdev@vger.kernel.org
1518 S:      Odd fixes
1519 F:      drivers/net/appletalk/
1520 F:      include/linux/atalk.h
1521 F:      include/uapi/linux/atalk.h
1522 F:      net/appletalk/
1523
1524 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1525 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1526 S:      Supported
1527 F:      arch/arm64/boot/dts/apm/
1528
1529 APPLIED MICRO (APM) X-GENE SOC EDAC
1530 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1531 S:      Supported
1532 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1533 F:      drivers/edac/xgene_edac.c
1534
1535 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1536 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1537 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1538 S:      Supported
1539 F:      drivers/net/ethernet/apm/xgene-v2/
1540
1541 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1542 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1543 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1544 M:      Quan Nguyen <quan@os.amperecomputing.com>
1545 S:      Supported
1546 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1547 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1548 F:      drivers/net/ethernet/apm/xgene/
1549 F:      drivers/net/mdio/mdio-xgene.c
1550
1551 APPLIED MICRO (APM) X-GENE SOC PMU
1552 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1553 S:      Supported
1554 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1555 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1556 F:      drivers/perf/xgene_pmu.c
1557
1558 APTINA CAMERA SENSOR PLL
1559 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1560 L:      linux-media@vger.kernel.org
1561 S:      Maintained
1562 F:      drivers/media/i2c/aptina-pll.*
1563
1564 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1565 M:      Aleksa Savic <savicaleksa83@gmail.com>
1566 M:      Jack Doan <me@jackdoan.com>
1567 L:      linux-hwmon@vger.kernel.org
1568 S:      Maintained
1569 F:      Documentation/hwmon/aquacomputer_d5next.rst
1570 F:      drivers/hwmon/aquacomputer_d5next.c
1571
1572 AQUANTIA ETHERNET DRIVER (atlantic)
1573 M:      Igor Russkikh <irusskikh@marvell.com>
1574 L:      netdev@vger.kernel.org
1575 S:      Supported
1576 W:      https://www.marvell.com/
1577 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1578 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1579 F:      drivers/net/ethernet/aquantia/atlantic/
1580
1581 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1582 M:      Egor Pomozov <epomozov@marvell.com>
1583 L:      netdev@vger.kernel.org
1584 S:      Supported
1585 W:      http://www.aquantia.com
1586 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1587
1588 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1589 M:      Krzysztof Hałasa <khalasa@piap.pl>
1590 L:      linux-media@vger.kernel.org
1591 S:      Maintained
1592 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1593 F:      drivers/media/i2c/ar0521.c
1594
1595 ARASAN NAND CONTROLLER DRIVER
1596 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1597 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1598 L:      linux-mtd@lists.infradead.org
1599 S:      Maintained
1600 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1601 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1602
1603 ARC FRAMEBUFFER DRIVER
1604 M:      Jaya Kumar <jayalk@intworks.biz>
1605 S:      Maintained
1606 F:      drivers/video/fbdev/arcfb.c
1607 F:      drivers/video/fbdev/core/fb_defio.c
1608
1609 ARC PGU DRM DRIVER
1610 M:      Alexey Brodkin <abrodkin@synopsys.com>
1611 S:      Supported
1612 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1613 F:      drivers/gpu/drm/tiny/arcpgu.c
1614
1615 ARCNET NETWORK LAYER
1616 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1617 L:      netdev@vger.kernel.org
1618 S:      Maintained
1619 F:      drivers/net/arcnet/
1620 F:      include/uapi/linux/if_arcnet.h
1621
1622 ARM ARCHITECTED TIMER DRIVER
1623 M:      Mark Rutland <mark.rutland@arm.com>
1624 M:      Marc Zyngier <maz@kernel.org>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 S:      Maintained
1627 F:      arch/arm/include/asm/arch_timer.h
1628 F:      arch/arm64/include/asm/arch_timer.h
1629 F:      drivers/clocksource/arm_arch_timer.c
1630
1631 ARM HDLCD DRM DRIVER
1632 M:      Liviu Dudau <liviu.dudau@arm.com>
1633 S:      Supported
1634 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1635 F:      drivers/gpu/drm/arm/hdlcd_*
1636
1637 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1638 M:      Linus Walleij <linus.walleij@linaro.org>
1639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1640 S:      Maintained
1641 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1642 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1643 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1644 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1645 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1646 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1647 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1648 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1649 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1650 F:      arch/arm/boot/dts/arm-realview-*
1651 F:      arch/arm/boot/dts/integrator*
1652 F:      arch/arm/boot/dts/versatile*
1653 F:      arch/arm/mach-versatile/
1654 F:      drivers/bus/arm-integrator-lm.c
1655 F:      drivers/clk/versatile/
1656 F:      drivers/i2c/busses/i2c-versatile.c
1657 F:      drivers/irqchip/irq-versatile-fpga.c
1658 F:      drivers/mtd/maps/physmap-versatile.*
1659 F:      drivers/power/reset/arm-versatile-reboot.c
1660 F:      drivers/soc/versatile/
1661
1662 ARM KOMEDA DRM-KMS DRIVER
1663 M:      James (Qian) Wang <james.qian.wang@arm.com>
1664 M:      Liviu Dudau <liviu.dudau@arm.com>
1665 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1666 L:      Mali DP Maintainers <malidp@foss.arm.com>
1667 S:      Supported
1668 T:      git git://anongit.freedesktop.org/drm/drm-misc
1669 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1670 F:      Documentation/gpu/komeda-kms.rst
1671 F:      drivers/gpu/drm/arm/display/include/
1672 F:      drivers/gpu/drm/arm/display/komeda/
1673
1674 ARM MALI PANFROST DRM DRIVER
1675 M:      Rob Herring <robh@kernel.org>
1676 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1677 R:      Steven Price <steven.price@arm.com>
1678 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1679 L:      dri-devel@lists.freedesktop.org
1680 S:      Supported
1681 T:      git git://anongit.freedesktop.org/drm/drm-misc
1682 F:      drivers/gpu/drm/panfrost/
1683 F:      include/uapi/drm/panfrost_drm.h
1684
1685 ARM MALI-DP DRM DRIVER
1686 M:      Liviu Dudau <liviu.dudau@arm.com>
1687 M:      Brian Starkey <brian.starkey@arm.com>
1688 L:      Mali DP Maintainers <malidp@foss.arm.com>
1689 S:      Supported
1690 T:      git git://anongit.freedesktop.org/drm/drm-misc
1691 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1692 F:      Documentation/gpu/afbc.rst
1693 F:      drivers/gpu/drm/arm/
1694
1695 ARM MFM AND FLOPPY DRIVERS
1696 M:      Ian Molton <spyro@f2s.com>
1697 S:      Maintained
1698 F:      arch/arm/include/asm/floppy.h
1699 F:      arch/arm/mach-rpc/floppydma.S
1700
1701 ARM PMU PROFILING AND DEBUGGING
1702 M:      Will Deacon <will@kernel.org>
1703 M:      Mark Rutland <mark.rutland@arm.com>
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 S:      Maintained
1706 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1707 F:      Documentation/devicetree/bindings/perf/
1708 F:      arch/arm*/include/asm/hw_breakpoint.h
1709 F:      arch/arm*/include/asm/perf_event.h
1710 F:      arch/arm*/kernel/hw_breakpoint.c
1711 F:      arch/arm*/kernel/perf_*
1712 F:      drivers/perf/
1713 F:      include/linux/perf/arm_pmu.h
1714
1715 ARM PORT
1716 M:      Russell King <linux@armlinux.org.uk>
1717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1718 S:      Odd Fixes
1719 W:      http://www.armlinux.org.uk/
1720 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1721 F:      arch/arm/
1722 X:      arch/arm/boot/dts/
1723
1724 ARM PRIMECELL AACI PL041 DRIVER
1725 M:      Russell King <linux@armlinux.org.uk>
1726 S:      Odd Fixes
1727 F:      sound/arm/aaci.*
1728
1729 ARM PRIMECELL BUS SUPPORT
1730 M:      Russell King <linux@armlinux.org.uk>
1731 S:      Odd Fixes
1732 F:      drivers/amba/
1733 F:      include/linux/amba/bus.h
1734
1735 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1736 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1737 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1738 L:      linux-mtd@lists.infradead.org
1739 S:      Maintained
1740 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1741 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1742
1743 ARM PRIMECELL PL35X SMC DRIVER
1744 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1745 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1749 F:      drivers/memory/pl353-smc.c
1750
1751 ARM PRIMECELL CLCD PL110 DRIVER
1752 M:      Russell King <linux@armlinux.org.uk>
1753 S:      Odd Fixes
1754 F:      drivers/video/fbdev/amba-clcd.*
1755
1756 ARM PRIMECELL KMI PL050 DRIVER
1757 M:      Russell King <linux@armlinux.org.uk>
1758 S:      Odd Fixes
1759 F:      drivers/input/serio/ambakmi.*
1760 F:      include/linux/amba/kmi.h
1761
1762 ARM PRIMECELL MMCI PL180/1 DRIVER
1763 M:      Russell King <linux@armlinux.org.uk>
1764 S:      Odd Fixes
1765 F:      drivers/mmc/host/mmci.*
1766 F:      include/linux/amba/mmci.h
1767
1768 ARM PRIMECELL SSP PL022 SPI DRIVER
1769 M:      Linus Walleij <linus.walleij@linaro.org>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Maintained
1772 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1773 F:      drivers/spi/spi-pl022.c
1774
1775 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1776 M:      Russell King <linux@armlinux.org.uk>
1777 S:      Odd Fixes
1778 F:      drivers/tty/serial/amba-pl01*.c
1779 F:      include/linux/amba/serial.h
1780
1781 ARM PRIMECELL VIC PL190/PL192 DRIVER
1782 M:      Linus Walleij <linus.walleij@linaro.org>
1783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1784 S:      Maintained
1785 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1786 F:      drivers/irqchip/irq-vic.c
1787
1788 ARM SMC WATCHDOG DRIVER
1789 M:      Julius Werner <jwerner@chromium.org>
1790 R:      Evan Benn <evanbenn@chromium.org>
1791 S:      Maintained
1792 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1793 F:      drivers/watchdog/arm_smc_wdt.c
1794
1795 ARM SMMU DRIVERS
1796 M:      Will Deacon <will@kernel.org>
1797 R:      Robin Murphy <robin.murphy@arm.com>
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S:      Maintained
1800 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1801 F:      drivers/iommu/arm/
1802 F:      drivers/iommu/io-pgtable-arm*
1803
1804 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1805 M:      Arnd Bergmann <arnd@arndb.de>
1806 M:      Olof Johansson <olof@lixom.net>
1807 M:      soc@kernel.org
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 C:      irc://irc.libera.chat/armlinux
1811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1812 F:      arch/arm/boot/dts/Makefile
1813 F:      arch/arm64/boot/dts/Makefile
1814
1815 ARM SUB-ARCHITECTURES
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S:      Maintained
1818 C:      irc://irc.libera.chat/armlinux
1819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1820 F:      arch/arm/mach-*/
1821 F:      arch/arm/plat-*/
1822
1823 ARM/ACTIONS SEMI ARCHITECTURE
1824 M:      Andreas Färber <afaerber@suse.de>
1825 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1828 S:      Maintained
1829 F:      Documentation/devicetree/bindings/arm/actions.yaml
1830 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1831 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1832 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1833 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1834 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1835 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1836 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1837 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1838 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1839 F:      arch/arm/boot/dts/owl-*
1840 F:      arch/arm/mach-actions/
1841 F:      arch/arm64/boot/dts/actions/
1842 F:      drivers/clk/actions/
1843 F:      drivers/clocksource/timer-owl*
1844 F:      drivers/dma/owl-dma.c
1845 F:      drivers/i2c/busses/i2c-owl.c
1846 F:      drivers/irqchip/irq-owl-sirq.c
1847 F:      drivers/mmc/host/owl-mmc.c
1848 F:      drivers/net/ethernet/actions/
1849 F:      drivers/pinctrl/actions/*
1850 F:      drivers/soc/actions/
1851 F:      include/dt-bindings/power/owl-*
1852 F:      include/dt-bindings/reset/actions,*
1853 F:      include/linux/soc/actions/
1854 N:      owl
1855
1856 ARM/Allwinner SoC Clock Support
1857 M:      Emilio López <emilio@elopez.com.ar>
1858 S:      Maintained
1859 F:      drivers/clk/sunxi/
1860
1861 ARM/Allwinner sunXi SoC support
1862 M:      Chen-Yu Tsai <wens@csie.org>
1863 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1864 M:      Samuel Holland <samuel@sholland.org>
1865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1866 S:      Maintained
1867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1868 L:      linux-sunxi@lists.linux.dev
1869 F:      arch/arm/mach-sunxi/
1870 F:      arch/arm64/boot/dts/allwinner/
1871 F:      drivers/clk/sunxi-ng/
1872 F:      drivers/pinctrl/sunxi/
1873 F:      drivers/soc/sunxi/
1874 N:      allwinner
1875 N:      sun[x456789]i
1876 N:      sun[25]0i
1877
1878 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1879 M:      Neil Armstrong <neil.armstrong@linaro.org>
1880 M:      Jerome Brunet <jbrunet@baylibre.com>
1881 L:      linux-amlogic@lists.infradead.org
1882 S:      Maintained
1883 F:      Documentation/devicetree/bindings/clock/amlogic*
1884 F:      drivers/clk/meson/
1885 F:      include/dt-bindings/clock/gxbb*
1886 F:      include/dt-bindings/clock/meson*
1887
1888 ARM/Amlogic Meson SoC Crypto Drivers
1889 M:      Corentin Labbe <clabbe@baylibre.com>
1890 L:      linux-crypto@vger.kernel.org
1891 L:      linux-amlogic@lists.infradead.org
1892 S:      Maintained
1893 F:      Documentation/devicetree/bindings/crypto/amlogic*
1894 F:      drivers/crypto/amlogic/
1895
1896 ARM/Amlogic Meson SoC Sound Drivers
1897 M:      Jerome Brunet <jbrunet@baylibre.com>
1898 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1899 S:      Maintained
1900 F:      Documentation/devicetree/bindings/sound/amlogic*
1901 F:      sound/soc/meson/
1902
1903 ARM/Amlogic Meson SoC support
1904 M:      Neil Armstrong <neil.armstrong@linaro.org>
1905 M:      Kevin Hilman <khilman@baylibre.com>
1906 R:      Jerome Brunet <jbrunet@baylibre.com>
1907 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1909 L:      linux-amlogic@lists.infradead.org
1910 S:      Maintained
1911 W:      http://linux-meson.com/
1912 F:      arch/arm/boot/dts/meson*
1913 F:      arch/arm/mach-meson/
1914 F:      arch/arm64/boot/dts/amlogic/
1915 F:      drivers/mmc/host/meson*
1916 F:      drivers/pinctrl/meson/
1917 F:      drivers/rtc/rtc-meson*
1918 F:      drivers/soc/amlogic/
1919 N:      meson
1920
1921 ARM/Annapurna Labs ALPINE ARCHITECTURE
1922 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1923 M:      Antoine Tenart <atenart@kernel.org>
1924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1925 S:      Maintained
1926 F:      arch/arm/boot/dts/alpine*
1927 F:      arch/arm/mach-alpine/
1928 F:      arch/arm64/boot/dts/amazon/
1929 F:      drivers/*/*alpine*
1930
1931 ARM/APPLE MACHINE SUPPORT
1932 M:      Hector Martin <marcan@marcan.st>
1933 M:      Sven Peter <sven@svenpeter.dev>
1934 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1935 L:      asahi@lists.linux.dev
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938 W:      https://asahilinux.org
1939 B:      https://github.com/AsahiLinux/linux/issues
1940 C:      irc://irc.oftc.net/asahi-dev
1941 T:      git https://github.com/AsahiLinux/linux.git
1942 F:      Documentation/devicetree/bindings/arm/apple.yaml
1943 F:      Documentation/devicetree/bindings/arm/apple/*
1944 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1945 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1946 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1947 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1948 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1949 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1950 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1951 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1952 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1953 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1954 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1955 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1956 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1957 F:      Documentation/devicetree/bindings/power/apple*
1958 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1959 F:      arch/arm64/boot/dts/apple/
1960 F:      drivers/bluetooth/hci_bcm4377.c
1961 F:      drivers/clk/clk-apple-nco.c
1962 F:      drivers/cpufreq/apple-soc-cpufreq.c
1963 F:      drivers/dma/apple-admac.c
1964 F:      drivers/i2c/busses/i2c-pasemi-core.c
1965 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1966 F:      drivers/iommu/apple-dart.c
1967 F:      drivers/iommu/io-pgtable-dart.c
1968 F:      drivers/irqchip/irq-apple-aic.c
1969 F:      drivers/mailbox/apple-mailbox.c
1970 F:      drivers/nvme/host/apple.c
1971 F:      drivers/nvmem/apple-efuses.c
1972 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1973 F:      drivers/soc/apple/*
1974 F:      drivers/watchdog/apple_wdt.c
1975 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1976 F:      include/dt-bindings/pinctrl/apple.h
1977 F:      include/linux/apple-mailbox.h
1978 F:      include/linux/soc/apple/*
1979
1980 ARM/APPLE MACHINE SOUND DRIVERS
1981 M:      Martin Povišer <povik+lin@cutebit.org>
1982 L:      asahi@lists.linux.dev
1983 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1984 S:      Maintained
1985 F:      Documentation/devicetree/bindings/sound/apple,*
1986 F:      sound/soc/apple/*
1987 F:      sound/soc/codecs/cs42l83-i2c.c
1988
1989 ARM/ARTPEC MACHINE SUPPORT
1990 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1991 M:      Lars Persson <lars.persson@axis.com>
1992 L:      linux-arm-kernel@axis.com
1993 S:      Maintained
1994 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1995 F:      arch/arm/boot/dts/artpec6*
1996 F:      arch/arm/mach-artpec
1997 F:      drivers/clk/axis
1998 F:      drivers/crypto/axis
1999 F:      drivers/mmc/host/usdhi6rol0.c
2000 F:      drivers/pinctrl/pinctrl-artpec*
2001
2002 ARM/ASPEED I2C DRIVER
2003 M:      Brendan Higgins <brendanhiggins@google.com>
2004 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
2005 R:      Joel Stanley <joel@jms.id.au>
2006 L:      linux-i2c@vger.kernel.org
2007 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2008 S:      Maintained
2009 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2010 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2011 F:      drivers/i2c/busses/i2c-aspeed.c
2012 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2013
2014 ARM/ASPEED MACHINE SUPPORT
2015 M:      Joel Stanley <joel@jms.id.au>
2016 R:      Andrew Jeffery <andrew@aj.id.au>
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2019 S:      Supported
2020 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2022 F:      Documentation/devicetree/bindings/arm/aspeed/
2023 F:      arch/arm/boot/dts/aspeed-*
2024 F:      arch/arm/mach-aspeed/
2025 N:      aspeed
2026
2027 ARM/BITMAIN ARCHITECTURE
2028 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2032 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2033 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2034 F:      arch/arm64/boot/dts/bitmain/
2035 F:      drivers/clk/clk-bm1880.c
2036 F:      drivers/pinctrl/pinctrl-bm1880.c
2037
2038 ARM/CALXEDA HIGHBANK ARCHITECTURE
2039 M:      Andre Przywara <andre.przywara@arm.com>
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/boot/dts/ecx-*.dts*
2043 F:      arch/arm/boot/dts/highbank.dts
2044 F:      arch/arm/mach-highbank/
2045
2046 ARM/CAVIUM THUNDER NETWORK DRIVER
2047 M:      Sunil Goutham <sgoutham@marvell.com>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 S:      Supported
2050 F:      drivers/net/ethernet/cavium/thunder/
2051
2052 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2053 M:      Lukasz Majewski <lukma@denx.de>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 F:      arch/arm/mach-ep93xx/ts72xx.c
2057
2058 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2059 M:      Alexander Shiyan <shc_work@mail.ru>
2060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2061 S:      Odd Fixes
2062 N:      clps711x
2063
2064 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2065 M:      Lennert Buytenhek <kernel@wantstofly.org>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 S:      Maintained
2068
2069 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2070 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2071 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
2072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2073 S:      Maintained
2074 F:      arch/arm/boot/compressed/misc-ep93xx.h
2075 F:      arch/arm/mach-ep93xx/
2076
2077 ARM/CLKDEV SUPPORT
2078 M:      Russell King <linux@armlinux.org.uk>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2082 F:      drivers/clk/clkdev.c
2083
2084 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2085 M:      Baruch Siach <baruch@tkos.co.il>
2086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2087 S:      Maintained
2088 F:      arch/arm/boot/dts/cx92755*
2089 N:      digicolor
2090
2091 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2092 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2093 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2094 R:      Mike Leach <mike.leach@linaro.org>
2095 R:      Leo Yan <leo.yan@linaro.org>
2096 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2098 S:      Maintained
2099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2100 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2101 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2102 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2103 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2104 F:      Documentation/trace/coresight/*
2105 F:      drivers/hwtracing/coresight/*
2106 F:      include/dt-bindings/arm/coresight-cti-dt.h
2107 F:      include/linux/coresight*
2108 F:      samples/coresight/*
2109 F:      tools/perf/tests/shell/coresight/*
2110 F:      tools/perf/arch/arm/util/auxtrace.c
2111 F:      tools/perf/arch/arm/util/cs-etm.c
2112 F:      tools/perf/arch/arm/util/cs-etm.h
2113 F:      tools/perf/arch/arm/util/pmu.c
2114 F:      tools/perf/util/cs-etm-decoder/*
2115 F:      tools/perf/util/cs-etm.*
2116
2117 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2118 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2119 M:      Linus Walleij <linus.walleij@linaro.org>
2120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2121 S:      Maintained
2122 T:      git git://github.com/ulli-kroll/linux.git
2123 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2124 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2125 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2126 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2127 F:      arch/arm/boot/dts/gemini*
2128 F:      arch/arm/mach-gemini/
2129 F:      drivers/crypto/gemini/
2130 F:      drivers/net/ethernet/cortina/
2131 F:      drivers/pinctrl/pinctrl-gemini.c
2132 F:      drivers/rtc/rtc-ftrtc010.c
2133
2134 ARM/CZ.NIC TURRIS SUPPORT
2135 M:      Marek Behún <kabel@kernel.org>
2136 S:      Maintained
2137 W:      https://www.turris.cz/
2138 F:      Documentation/ABI/testing/debugfs-moxtet
2139 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2140 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2141 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2142 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2143 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2144 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2145 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2146 F:      drivers/bus/moxtet.c
2147 F:      drivers/firmware/turris-mox-rwtm.c
2148 F:      drivers/leds/leds-turris-omnia.c
2149 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2150 F:      drivers/gpio/gpio-moxtet.c
2151 F:      drivers/watchdog/armada_37xx_wdt.c
2152 F:      include/dt-bindings/bus/moxtet.h
2153 F:      include/linux/armada-37xx-rwtm-mailbox.h
2154 F:      include/linux/moxtet.h
2155
2156 ARM/FARADAY FA526 PORT
2157 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2159 S:      Maintained
2160 T:      git git://git.berlios.de/gemini-board
2161 F:      arch/arm/mm/*-fa*
2162
2163 ARM/FOOTBRIDGE ARCHITECTURE
2164 M:      Russell King <linux@armlinux.org.uk>
2165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2166 S:      Maintained
2167 W:      http://www.armlinux.org.uk/
2168 F:      arch/arm/include/asm/hardware/dec21285.h
2169 F:      arch/arm/mach-footbridge/
2170
2171 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2172 M:      Shawn Guo <shawnguo@kernel.org>
2173 M:      Sascha Hauer <s.hauer@pengutronix.de>
2174 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2175 R:      Fabio Estevam <festevam@gmail.com>
2176 R:      NXP Linux Team <linux-imx@nxp.com>
2177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2178 S:      Maintained
2179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2180 X:      drivers/media/i2c/
2181 F:      arch/arm64/boot/dts/freescale/
2182 X:      arch/arm64/boot/dts/freescale/fsl-*
2183 X:      arch/arm64/boot/dts/freescale/qoriq-*
2184 N:      imx
2185 N:      mxs
2186
2187 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2188 M:      Shawn Guo <shawnguo@kernel.org>
2189 M:      Li Yang <leoyang.li@nxp.com>
2190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2191 S:      Maintained
2192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2193 F:      arch/arm/boot/dts/ls1021a*
2194 F:      arch/arm64/boot/dts/freescale/fsl-*
2195 F:      arch/arm64/boot/dts/freescale/qoriq-*
2196
2197 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2198 M:      Shawn Guo <shawnguo@kernel.org>
2199 M:      Sascha Hauer <s.hauer@pengutronix.de>
2200 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2201 R:      Stefan Agner <stefan@agner.ch>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 S:      Maintained
2204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2205 F:      arch/arm/boot/dts/vf*
2206 F:      arch/arm/mach-imx/*vf610*
2207
2208 ARM/GUMSTIX MACHINE SUPPORT
2209 M:      Steve Sakoman <sakoman@gmail.com>
2210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2211 S:      Maintained
2212
2213 ARM/HISILICON SOC SUPPORT
2214 M:      Wei Xu <xuwei5@hisilicon.com>
2215 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2216 S:      Supported
2217 W:      http://www.hisilicon.com
2218 T:      git https://github.com/hisilicon/linux-hisi.git
2219 F:      arch/arm/boot/dts/hi3*
2220 F:      arch/arm/boot/dts/hip*
2221 F:      arch/arm/boot/dts/hisi*
2222 F:      arch/arm/mach-hisi/
2223 F:      arch/arm64/boot/dts/hisilicon/
2224
2225 ARM/HP JORNADA 7XX MACHINE SUPPORT
2226 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2227 S:      Maintained
2228 W:      www.jlime.com
2229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2230 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2231 F:      arch/arm/mach-sa1100/jornada720.c
2232
2233 ARM/HPE GXP ARCHITECTURE
2234 M:      Jean-Marie Verdun <verdun@hpe.com>
2235 M:      Nick Hawkins <nick.hawkins@hpe.com>
2236 S:      Maintained
2237 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2238 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2239 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2240 F:      arch/arm/boot/dts/hpe-bmc*
2241 F:      arch/arm/boot/dts/hpe-gxp*
2242 F:      arch/arm/mach-hpe/
2243 F:      drivers/clocksource/timer-gxp.c
2244 F:      drivers/spi/spi-gxp.c
2245 F:      drivers/watchdog/gxp-wdt.c
2246
2247 ARM/IGEP MACHINE SUPPORT
2248 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2249 M:      Javier Martinez Canillas <javier@dowhile0.org>
2250 L:      linux-omap@vger.kernel.org
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Maintained
2253 F:      arch/arm/boot/dts/omap3-igep*
2254
2255 ARM/INTEL IXP4XX ARM ARCHITECTURE
2256 M:      Linus Walleij <linusw@kernel.org>
2257 M:      Imre Kaloz <kaloz@openwrt.org>
2258 M:      Krzysztof Halasa <khalasa@piap.pl>
2259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2260 S:      Maintained
2261 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2262 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2263 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2264 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2265 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2266 F:      arch/arm/boot/dts/intel-ixp*
2267 F:      arch/arm/mach-ixp4xx/
2268 F:      drivers/bus/intel-ixp4xx-eb.c
2269 F:      drivers/clocksource/timer-ixp4xx.c
2270 F:      drivers/crypto/ixp4xx_crypto.c
2271 F:      drivers/gpio/gpio-ixp4xx.c
2272 F:      drivers/irqchip/irq-ixp4xx.c
2273
2274 ARM/INTEL KEEMBAY ARCHITECTURE
2275 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2276 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2277 S:      Maintained
2278 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2279 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2280 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2281
2282 ARM/INTEL XSC3 (MANZANO) ARM CORE
2283 M:      Lennert Buytenhek <kernel@wantstofly.org>
2284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2285 S:      Maintained
2286
2287 ARM/LG1K ARCHITECTURE
2288 M:      Chanho Min <chanho.min@lge.com>
2289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2290 S:      Maintained
2291 F:      arch/arm64/boot/dts/lg/
2292
2293 ARM/LPC18XX ARCHITECTURE
2294 M:      Vladimir Zapolskiy <vz@mleia.com>
2295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2296 S:      Maintained
2297 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2298 F:      arch/arm/boot/dts/lpc43*
2299 F:      drivers/i2c/busses/i2c-lpc2k.c
2300 F:      drivers/memory/pl172.c
2301 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2302 F:      drivers/rtc/rtc-lpc24xx.c
2303 N:      lpc18xx
2304
2305 ARM/LPC32XX SOC SUPPORT
2306 M:      Vladimir Zapolskiy <vz@mleia.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 S:      Maintained
2309 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2310 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2311 F:      arch/arm/boot/dts/lpc32*
2312 F:      arch/arm/mach-lpc32xx/
2313 F:      drivers/i2c/busses/i2c-pnx.c
2314 F:      drivers/net/ethernet/nxp/lpc_eth.c
2315 F:      drivers/usb/host/ohci-nxp.c
2316 F:      drivers/watchdog/pnx4008_wdt.c
2317 N:      lpc32xx
2318
2319 ARM/Marvell Dove/MV78xx0/Orion SOC support
2320 M:      Andrew Lunn <andrew@lunn.ch>
2321 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2322 M:      Gregory Clement <gregory.clement@bootlin.com>
2323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2324 S:      Maintained
2325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2326 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2327 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2328 F:      Documentation/devicetree/bindings/soc/dove/
2329 F:      arch/arm/boot/dts/dove*
2330 F:      arch/arm/boot/dts/orion5x*
2331 F:      arch/arm/mach-dove/
2332 F:      arch/arm/mach-mv78xx0/
2333 F:      arch/arm/mach-orion5x/
2334 F:      arch/arm/plat-orion/
2335 F:      drivers/soc/dove/
2336
2337 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2338 M:      Andrew Lunn <andrew@lunn.ch>
2339 M:      Gregory Clement <gregory.clement@bootlin.com>
2340 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 S:      Maintained
2343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2344 F:      Documentation/devicetree/bindings/arm/marvell/
2345 F:      arch/arm/boot/dts/armada*
2346 F:      arch/arm/boot/dts/kirkwood*
2347 F:      arch/arm/configs/mvebu_*_defconfig
2348 F:      arch/arm/mach-mvebu/
2349 F:      arch/arm64/boot/dts/marvell/armada*
2350 F:      arch/arm64/boot/dts/marvell/cn913*
2351 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2352 F:      drivers/cpufreq/armada-8k-cpufreq.c
2353 F:      drivers/cpufreq/mvebu-cpufreq.c
2354 F:      drivers/irqchip/irq-armada-370-xp.c
2355 F:      drivers/irqchip/irq-mvebu-*
2356 F:      drivers/pinctrl/mvebu/
2357 F:      drivers/rtc/rtc-armada38x.c
2358
2359 ARM/Mediatek RTC DRIVER
2360 M:      Eddie Huang <eddie.huang@mediatek.com>
2361 M:      Sean Wang <sean.wang@mediatek.com>
2362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2364 S:      Maintained
2365 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2366 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2367 F:      drivers/rtc/rtc-mt2712.c
2368 F:      drivers/rtc/rtc-mt6397.c
2369 F:      drivers/rtc/rtc-mt7622.c
2370
2371 ARM/Mediatek SoC support
2372 M:      Matthias Brugger <matthias.bgg@gmail.com>
2373 R:      AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
2374 L:      linux-kernel@vger.kernel.org
2375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2376 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2377 S:      Maintained
2378 W:      https://mtk.wiki.kernel.org/
2379 C:      irc://irc.libera.chat/linux-mediatek
2380 F:      arch/arm/boot/dts/mt2*
2381 F:      arch/arm/boot/dts/mt6*
2382 F:      arch/arm/boot/dts/mt7*
2383 F:      arch/arm/boot/dts/mt8*
2384 F:      arch/arm/mach-mediatek/
2385 F:      arch/arm64/boot/dts/mediatek/
2386 F:      drivers/soc/mediatek/
2387 N:      mtk
2388 N:      mt[2678]
2389 K:      mediatek
2390
2391 ARM/Mediatek USB3 PHY DRIVER
2392 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2394 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2395 S:      Maintained
2396 F:      Documentation/devicetree/bindings/phy/mediatek,*
2397 F:      drivers/phy/mediatek/
2398
2399 ARM/Microchip (AT91) SoC support
2400 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2401 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2402 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2404 S:      Supported
2405 W:      http://www.linux4sam.org
2406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2407 F:      arch/arm/boot/dts/at91*.dts
2408 F:      arch/arm/boot/dts/at91*.dtsi
2409 F:      arch/arm/boot/dts/sama*.dts
2410 F:      arch/arm/boot/dts/sama*.dtsi
2411 F:      arch/arm/include/debug/at91.S
2412 F:      arch/arm/mach-at91/
2413 F:      drivers/memory/atmel*
2414 F:      drivers/watchdog/sama5d4_wdt.c
2415 F:      include/soc/at91/
2416 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2417 X:      drivers/net/wireless/atmel/
2418 N:      at91
2419 N:      atmel
2420
2421 ARM/Microchip Sparx5 SoC support
2422 M:      Lars Povlsen <lars.povlsen@microchip.com>
2423 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2424 M:      Daniel Machon <daniel.machon@microchip.com>
2425 M:      UNGLinuxDriver@microchip.com
2426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2427 S:      Supported
2428 T:      git git://github.com/microchip-ung/linux-upstream.git
2429 F:      arch/arm64/boot/dts/microchip/
2430 F:      drivers/net/ethernet/microchip/vcap/
2431 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2432 N:      sparx5
2433
2434 Microchip Timer Counter Block (TCB) Capture Driver
2435 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 L:      linux-iio@vger.kernel.org
2438 S:      Maintained
2439 F:      drivers/counter/microchip-tcb-capture.c
2440
2441 ARM/MILBEAUT ARCHITECTURE
2442 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2443 M:      Takao Orito <orito.takao@socionext.com>
2444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2445 S:      Maintained
2446 F:      arch/arm/boot/dts/milbeaut*
2447 F:      arch/arm/mach-milbeaut/
2448 N:      milbeaut
2449
2450 ARM/MStar/Sigmastar Armv7 SoC support
2451 M:      Daniel Palmer <daniel@thingy.jp>
2452 M:      Romain Perier <romain.perier@gmail.com>
2453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2454 S:      Maintained
2455 W:      http://linux-chenxing.org/
2456 T:      git git://github.com/linux-chenxing/linux.git
2457 F:      Documentation/devicetree/bindings/arm/mstar/*
2458 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2459 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2460 F:      arch/arm/boot/dts/mstar-*
2461 F:      arch/arm/mach-mstar/
2462 F:      drivers/clk/mstar/
2463 F:      drivers/clocksource/timer-msc313e.c
2464 F:      drivers/gpio/gpio-msc313.c
2465 F:      drivers/rtc/rtc-msc313.c
2466 F:      drivers/watchdog/msc313e_wdt.c
2467 F:      include/dt-bindings/clock/mstar-*
2468 F:      include/dt-bindings/gpio/msc313-gpio.h
2469
2470 ARM/NOMADIK/Ux500 ARCHITECTURES
2471 M:      Linus Walleij <linus.walleij@linaro.org>
2472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2473 S:      Maintained
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2475 F:      Documentation/devicetree/bindings/arm/ste-*
2476 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2477 F:      Documentation/devicetree/bindings/arm/ux500/
2478 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2479 F:      arch/arm/boot/dts/ste-*
2480 F:      arch/arm/mach-nomadik/
2481 F:      arch/arm/mach-ux500/
2482 F:      drivers/clk/clk-nomadik.c
2483 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2484 F:      drivers/dma/ste_dma40*
2485 F:      drivers/hwspinlock/u8500_hsem.c
2486 F:      drivers/i2c/busses/i2c-nomadik.c
2487 F:      drivers/iio/adc/ab8500-gpadc.c
2488 F:      drivers/mfd/ab8500*
2489 F:      drivers/mfd/abx500*
2490 F:      drivers/mfd/db8500*
2491 F:      drivers/pinctrl/nomadik/
2492 F:      drivers/rtc/rtc-ab8500.c
2493 F:      drivers/rtc/rtc-pl031.c
2494 F:      drivers/soc/ux500/
2495
2496 ARM/NUVOTON NPCM ARCHITECTURE
2497 M:      Avi Fishman <avifishman70@gmail.com>
2498 M:      Tomer Maimon <tmaimon77@gmail.com>
2499 M:      Tali Perry <tali.perry1@gmail.com>
2500 R:      Patrick Venture <venture@google.com>
2501 R:      Nancy Yuen <yuenn@google.com>
2502 R:      Benjamin Fair <benjaminfair@google.com>
2503 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2504 S:      Supported
2505 F:      Documentation/devicetree/bindings/*/*/*npcm*
2506 F:      Documentation/devicetree/bindings/*/*npcm*
2507 F:      Documentation/devicetree/bindings/arm/npcm/*
2508 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2509 F:      arch/arm/boot/dts/nuvoton-npcm*
2510 F:      arch/arm/mach-npcm/
2511 F:      arch/arm64/boot/dts/nuvoton/
2512 F:      drivers/*/*npcm*
2513 F:      drivers/*/*/*npcm*
2514 F:      drivers/rtc/rtc-nct3018y.c
2515 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2516 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2517
2518 ARM/NUVOTON WPCM450 ARCHITECTURE
2519 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2520 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2521 S:      Maintained
2522 W:      https://github.com/neuschaefer/wpcm450/wiki
2523 F:      Documentation/devicetree/bindings/*/*wpcm*
2524 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2525 F:      arch/arm/configs/wpcm450_defconfig
2526 F:      arch/arm/mach-npcm/wpcm450.c
2527 F:      drivers/*/*/*wpcm*
2528 F:      drivers/*/*wpcm*
2529
2530 ARM/NXP S32G ARCHITECTURE
2531 M:      Chester Lin <clin@suse.com>
2532 R:      Andreas Färber <afaerber@suse.de>
2533 R:      Matthias Brugger <mbrugger@suse.com>
2534 R:      NXP S32 Linux Team <s32@nxp.com>
2535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2536 S:      Maintained
2537 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2538
2539 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2540 M:      Alexander Clouter <alex@digriz.org.uk>
2541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2542 S:      Maintained
2543 W:      http://www.digriz.org.uk/ts78xx/kernel
2544 F:      arch/arm/mach-orion5x/ts78xx-*
2545
2546 ARM/OXNAS platform support
2547 M:      Neil Armstrong <neil.armstrong@linaro.org>
2548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2549 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2550 S:      Maintained
2551 F:      arch/arm/boot/dts/ox8*.dts*
2552 F:      arch/arm/mach-oxnas/
2553 F:      drivers/power/reset/oxnas-restart.c
2554 N:      oxnas
2555
2556 ARM/QUALCOMM SUPPORT
2557 M:      Andy Gross <agross@kernel.org>
2558 M:      Bjorn Andersson <andersson@kernel.org>
2559 R:      Konrad Dybcio <konrad.dybcio@linaro.org>
2560 L:      linux-arm-msm@vger.kernel.org
2561 S:      Maintained
2562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2563 F:      Documentation/devicetree/bindings/*/qcom*
2564 F:      Documentation/devicetree/bindings/soc/qcom/
2565 F:      arch/arm/boot/dts/qcom-*.dts
2566 F:      arch/arm/boot/dts/qcom-*.dtsi
2567 F:      arch/arm/configs/qcom_defconfig
2568 F:      arch/arm/mach-qcom/
2569 F:      arch/arm64/boot/dts/qcom/
2570 F:      drivers/*/*/qcom*
2571 F:      drivers/*/*/qcom/
2572 F:      drivers/*/pm8???-*
2573 F:      drivers/*/qcom*
2574 F:      drivers/*/qcom/
2575 F:      drivers/bluetooth/btqcomsmd.c
2576 F:      drivers/clocksource/timer-qcom.c
2577 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2578 F:      drivers/extcon/extcon-qcom*
2579 F:      drivers/i2c/busses/i2c-qcom-geni.c
2580 F:      drivers/i2c/busses/i2c-qup.c
2581 F:      drivers/iommu/msm*
2582 F:      drivers/mfd/ssbi.c
2583 F:      drivers/mmc/host/mmci_qcom*
2584 F:      drivers/mmc/host/sdhci-msm.c
2585 F:      drivers/pci/controller/dwc/pcie-qcom.c
2586 F:      drivers/phy/qualcomm/
2587 F:      drivers/power/*/msm*
2588 F:      drivers/reset/reset-qcom-*
2589 F:      drivers/ufs/host/ufs-qcom*
2590 F:      drivers/spi/spi-geni-qcom.c
2591 F:      drivers/spi/spi-qcom-qspi.c
2592 F:      drivers/spi/spi-qup.c
2593 F:      drivers/tty/serial/msm_serial.c
2594 F:      drivers/usb/dwc3/dwc3-qcom.c
2595 F:      include/dt-bindings/*/qcom*
2596 F:      include/linux/*/qcom*
2597 F:      include/linux/soc/qcom/
2598
2599 ARM/RDA MICRO ARCHITECTURE
2600 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2602 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2603 S:      Maintained
2604 F:      Documentation/devicetree/bindings/arm/rda.yaml
2605 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2606 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2607 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2608 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2609 F:      arch/arm/boot/dts/rda8810pl-*
2610 F:      drivers/clocksource/timer-rda.c
2611 F:      drivers/gpio/gpio-rda.c
2612 F:      drivers/irqchip/irq-rda-intc.c
2613 F:      drivers/tty/serial/rda-uart.c
2614
2615 ARM/REALTEK ARCHITECTURE
2616 M:      Andreas Färber <afaerber@suse.de>
2617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2618 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2619 S:      Maintained
2620 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2621 F:      arch/arm/boot/dts/rtd*
2622 F:      arch/arm/mach-realtek/
2623 F:      arch/arm64/boot/dts/realtek/
2624
2625 ARM/RISC-V/RENESAS ARCHITECTURE
2626 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2627 M:      Magnus Damm <magnus.damm@gmail.com>
2628 L:      linux-renesas-soc@vger.kernel.org
2629 S:      Supported
2630 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2631 C:      irc://irc.libera.chat/renesas-soc
2632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2633 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2634 F:      Documentation/devicetree/bindings/soc/renesas/
2635 F:      arch/arm/boot/dts/emev2*
2636 F:      arch/arm/boot/dts/gr-peach*
2637 F:      arch/arm/boot/dts/iwg20d-q7*
2638 F:      arch/arm/boot/dts/r7s*
2639 F:      arch/arm/boot/dts/r8a*
2640 F:      arch/arm/boot/dts/r9a*
2641 F:      arch/arm/boot/dts/sh*
2642 F:      arch/arm/configs/shmobile_defconfig
2643 F:      arch/arm/include/debug/renesas-scif.S
2644 F:      arch/arm/mach-shmobile/
2645 F:      arch/arm64/boot/dts/renesas/
2646 F:      arch/riscv/boot/dts/renesas/
2647 F:      drivers/soc/renesas/
2648 F:      include/linux/soc/renesas/
2649
2650 ARM/RISCPC ARCHITECTURE
2651 M:      Russell King <linux@armlinux.org.uk>
2652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2653 S:      Maintained
2654 W:      http://www.armlinux.org.uk/
2655 F:      arch/arm/include/asm/hardware/ioc.h
2656 F:      arch/arm/include/asm/hardware/iomd.h
2657 F:      arch/arm/include/asm/hardware/memc.h
2658 F:      arch/arm/mach-rpc/
2659 F:      drivers/net/ethernet/8390/etherh.c
2660 F:      drivers/net/ethernet/i825xx/ether1*
2661 F:      drivers/net/ethernet/seeq/ether3*
2662 F:      drivers/scsi/arm/
2663
2664 ARM/Rockchip SoC support
2665 M:      Heiko Stuebner <heiko@sntech.de>
2666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2667 L:      linux-rockchip@lists.infradead.org
2668 S:      Maintained
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2670 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2671 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2672 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2673 F:      arch/arm/boot/dts/rk3*
2674 F:      arch/arm/boot/dts/rv11*
2675 F:      arch/arm/mach-rockchip/
2676 F:      drivers/*/*/*rockchip*
2677 F:      drivers/*/*rockchip*
2678 F:      drivers/clk/rockchip/
2679 F:      drivers/i2c/busses/i2c-rk3x.c
2680 F:      sound/soc/rockchip/
2681 N:      rockchip
2682
2683 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2684 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2685 R:      Alim Akhtar <alim.akhtar@samsung.com>
2686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2687 L:      linux-samsung-soc@vger.kernel.org
2688 S:      Maintained
2689 C:      irc://irc.libera.chat/linux-exynos
2690 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2691 B:      mailto:linux-samsung-soc@vger.kernel.org
2692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2693 F:      Documentation/arm/samsung/
2694 F:      Documentation/devicetree/bindings/arm/samsung/
2695 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2696 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2697 F:      Documentation/devicetree/bindings/soc/samsung/
2698 F:      arch/arm/boot/dts/exynos*
2699 F:      arch/arm/boot/dts/s3c*
2700 F:      arch/arm/boot/dts/s5p*
2701 F:      arch/arm/mach-exynos*/
2702 F:      arch/arm/mach-s3c/
2703 F:      arch/arm/mach-s5p*/
2704 F:      arch/arm64/boot/dts/exynos/
2705 F:      drivers/*/*/*s3c24*
2706 F:      drivers/*/*s3c24*
2707 F:      drivers/*/*s3c64xx*
2708 F:      drivers/*/*s5pv210*
2709 F:      drivers/clocksource/samsung_pwm_timer.c
2710 F:      drivers/memory/samsung/
2711 F:      drivers/pwm/pwm-samsung.c
2712 F:      drivers/soc/samsung/
2713 F:      drivers/tty/serial/samsung*
2714 F:      include/clocksource/samsung_pwm.h
2715 F:      include/linux/platform_data/*s3c*
2716 F:      include/linux/serial_s3c.h
2717 F:      include/linux/soc/samsung/
2718 N:      exynos
2719 N:      s3c64xx
2720 N:      s5pv210
2721
2722 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2723 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2725 L:      linux-media@vger.kernel.org
2726 S:      Maintained
2727 F:      drivers/media/platform/samsung/s5p-g2d/
2728
2729 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2730 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2731 L:      linux-samsung-soc@vger.kernel.org
2732 L:      linux-media@vger.kernel.org
2733 S:      Maintained
2734 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2735 F:      drivers/media/cec/platform/s5p/
2736
2737 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2738 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2739 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2740 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2742 L:      linux-media@vger.kernel.org
2743 S:      Maintained
2744 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2745 F:      drivers/media/platform/samsung/s5p-jpeg/
2746
2747 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2748 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2749 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2751 L:      linux-media@vger.kernel.org
2752 S:      Maintained
2753 F:      drivers/media/platform/samsung/s5p-mfc/
2754
2755 ARM/SOCFPGA ARCHITECTURE
2756 M:      Dinh Nguyen <dinguyen@kernel.org>
2757 S:      Maintained
2758 W:      http://www.rocketboards.org
2759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2760 F:      arch/arm/boot/dts/socfpga*
2761 F:      arch/arm/configs/socfpga_defconfig
2762 F:      arch/arm/mach-socfpga/
2763 F:      arch/arm64/boot/dts/altera/
2764 F:      arch/arm64/boot/dts/intel/
2765
2766 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2767 M:      Dinh Nguyen <dinguyen@kernel.org>
2768 S:      Maintained
2769 F:      drivers/clk/socfpga/
2770
2771 ARM/SOCFPGA EDAC SUPPORT
2772 M:      Dinh Nguyen <dinguyen@kernel.org>
2773 S:      Maintained
2774 F:      drivers/edac/altera_edac.[ch]
2775
2776 ARM/SPREADTRUM SoC SUPPORT
2777 M:      Orson Zhai <orsonzhai@gmail.com>
2778 M:      Baolin Wang <baolin.wang7@gmail.com>
2779 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2780 S:      Maintained
2781 F:      arch/arm64/boot/dts/sprd
2782 N:      sprd
2783 N:      sc27xx
2784 N:      sc2731
2785
2786 ARM/STI ARCHITECTURE
2787 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2788 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2789 S:      Maintained
2790 W:      http://www.stlinux.com
2791 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2792 F:      arch/arm/boot/dts/sti*
2793 F:      arch/arm/mach-sti/
2794 F:      drivers/ata/ahci_st.c
2795 F:      drivers/char/hw_random/st-rng.c
2796 F:      drivers/clocksource/arm_global_timer.c
2797 F:      drivers/clocksource/clksrc_st_lpc.c
2798 F:      drivers/cpufreq/sti-cpufreq.c
2799 F:      drivers/dma/st_fdma*
2800 F:      drivers/i2c/busses/i2c-st.c
2801 F:      drivers/media/platform/st/sti/c8sectpfe/
2802 F:      drivers/media/rc/st_rc.c
2803 F:      drivers/mmc/host/sdhci-st.c
2804 F:      drivers/phy/st/phy-miphy28lp.c
2805 F:      drivers/phy/st/phy-stih407-usb.c
2806 F:      drivers/pinctrl/pinctrl-st.c
2807 F:      drivers/remoteproc/st_remoteproc.c
2808 F:      drivers/remoteproc/st_slim_rproc.c
2809 F:      drivers/reset/sti/
2810 F:      drivers/rtc/rtc-st-lpc.c
2811 F:      drivers/tty/serial/st-asc.c
2812 F:      drivers/usb/dwc3/dwc3-st.c
2813 F:      drivers/usb/host/ehci-st.c
2814 F:      drivers/usb/host/ohci-st.c
2815 F:      drivers/watchdog/st_lpc_wdt.c
2816 F:      include/linux/remoteproc/st_slim_rproc.h
2817
2818 ARM/STM32 ARCHITECTURE
2819 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2820 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2821 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2823 S:      Maintained
2824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2825 F:      arch/arm/boot/dts/stm32*
2826 F:      arch/arm/mach-stm32/
2827 F:      drivers/clocksource/armv7m_systick.c
2828 N:      stm32
2829 N:      stm
2830
2831 ARM/SUNPLUS SP7021 SOC SUPPORT
2832 M:      Qin Jian <qinjian@cqplus1.com>
2833 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2834 S:      Maintained
2835 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2836 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2837 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2838 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2839 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2840 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2841 F:      arch/arm/configs/sp7021_*defconfig
2842 F:      arch/arm/mach-sunplus/
2843 F:      drivers/irqchip/irq-sp7021-intc.c
2844 F:      drivers/reset/reset-sunplus.c
2845 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2846 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2847
2848 ARM/Synaptics SoC support
2849 M:      Jisheng Zhang <jszhang@kernel.org>
2850 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2852 S:      Maintained
2853 F:      arch/arm/boot/dts/berlin*
2854 F:      arch/arm/mach-berlin/
2855 F:      arch/arm64/boot/dts/synaptics/
2856
2857 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2858 M:      Lennert Buytenhek <kernel@wantstofly.org>
2859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2860 S:      Maintained
2861
2862 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2863 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2864 L:      linux-tegra@vger.kernel.org
2865 L:      linux-media@vger.kernel.org
2866 S:      Maintained
2867 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2868 F:      drivers/media/cec/platform/tegra/
2869
2870 ARM/TESLA FSD SoC SUPPORT
2871 M:      Alim Akhtar <alim.akhtar@samsung.com>
2872 M:      linux-fsd@tesla.com
2873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2874 L:      linux-samsung-soc@vger.kernel.org
2875 S:      Maintained
2876 F:      arch/arm64/boot/dts/tesla/
2877
2878 ARM/TETON BGA MACHINE SUPPORT
2879 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2881 S:      Maintained
2882
2883 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2884 M:      Santosh Shilimkar <ssantosh@kernel.org>
2885 L:      linux-kernel@vger.kernel.org
2886 S:      Maintained
2887 F:      drivers/memory/*emif*
2888
2889 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2890 M:      Nishanth Menon <nm@ti.com>
2891 M:      Santosh Shilimkar <ssantosh@kernel.org>
2892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2893 S:      Maintained
2894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2895 F:      arch/arm/boot/dts/keystone-*
2896 F:      arch/arm/mach-keystone/
2897
2898 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2899 M:      Santosh Shilimkar <ssantosh@kernel.org>
2900 L:      linux-kernel@vger.kernel.org
2901 S:      Maintained
2902 F:      drivers/clk/keystone/
2903
2904 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2905 M:      Santosh Shilimkar <ssantosh@kernel.org>
2906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2907 L:      linux-kernel@vger.kernel.org
2908 S:      Maintained
2909 F:      drivers/clocksource/timer-keystone.c
2910
2911 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2912 M:      Santosh Shilimkar <ssantosh@kernel.org>
2913 L:      linux-kernel@vger.kernel.org
2914 S:      Maintained
2915 F:      drivers/power/reset/keystone-reset.c
2916
2917 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2918 M:      Nishanth Menon <nm@ti.com>
2919 M:      Vignesh Raghavendra <vigneshr@ti.com>
2920 M:      Tero Kristo <kristo@kernel.org>
2921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2922 S:      Supported
2923 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2924 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2925 F:      arch/arm64/boot/dts/ti/Makefile
2926 F:      arch/arm64/boot/dts/ti/k3-*
2927 F:      include/dt-bindings/pinctrl/k3.h
2928
2929 ARM/TOSHIBA VISCONTI ARCHITECTURE
2930 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2932 S:      Supported
2933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2934 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2935 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2936 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2937 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2938 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2939 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2940 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2941 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2942 F:      arch/arm64/boot/dts/toshiba/
2943 F:      drivers/clk/visconti/
2944 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2945 F:      drivers/gpio/gpio-visconti.c
2946 F:      drivers/pci/controller/dwc/pcie-visconti.c
2947 F:      drivers/pinctrl/visconti/
2948 F:      drivers/watchdog/visconti_wdt.c
2949 N:      visconti
2950
2951 ARM/UNIPHIER ARCHITECTURE
2952 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2953 M:      Masami Hiramatsu <mhiramat@kernel.org>
2954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2955 S:      Maintained
2956 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2957 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2958 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2959 F:      arch/arm/boot/dts/uniphier*
2960 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2961 F:      arch/arm/mach-uniphier/
2962 F:      arch/arm/mm/cache-uniphier.c
2963 F:      arch/arm64/boot/dts/socionext/uniphier*
2964 F:      drivers/bus/uniphier-system-bus.c
2965 F:      drivers/clk/uniphier/
2966 F:      drivers/dma/uniphier-mdmac.c
2967 F:      drivers/gpio/gpio-uniphier.c
2968 F:      drivers/i2c/busses/i2c-uniphier*
2969 F:      drivers/irqchip/irq-uniphier-aidet.c
2970 F:      drivers/mmc/host/uniphier-sd.c
2971 F:      drivers/pinctrl/uniphier/
2972 F:      drivers/reset/reset-uniphier.c
2973 F:      drivers/tty/serial/8250/8250_uniphier.c
2974 N:      uniphier
2975
2976 ARM/VERSATILE EXPRESS PLATFORM
2977 M:      Liviu Dudau <liviu.dudau@arm.com>
2978 M:      Sudeep Holla <sudeep.holla@arm.com>
2979 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
2980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2981 S:      Maintained
2982 F:      */*/*/vexpress*
2983 F:      */*/vexpress*
2984 F:      arch/arm/boot/dts/vexpress*
2985 F:      arch/arm/mach-versatile/
2986 F:      arch/arm64/boot/dts/arm/
2987 F:      drivers/clk/versatile/clk-vexpress-osc.c
2988 F:      drivers/clocksource/timer-versatile.c
2989 N:      mps2
2990
2991 ARM/VFP SUPPORT
2992 M:      Russell King <linux@armlinux.org.uk>
2993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2994 S:      Maintained
2995 W:      http://www.armlinux.org.uk/
2996 F:      arch/arm/vfp/
2997
2998 ARM/VT8500 ARM ARCHITECTURE
2999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3000 S:      Orphan
3001 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3002 F:      arch/arm/mach-vt8500/
3003 F:      drivers/clocksource/timer-vt8500.c
3004 F:      drivers/i2c/busses/i2c-wmt.c
3005 F:      drivers/mmc/host/wmt-sdmmc.c
3006 F:      drivers/pwm/pwm-vt8500.c
3007 F:      drivers/rtc/rtc-vt8500.c
3008 F:      drivers/tty/serial/vt8500_serial.c
3009 F:      drivers/usb/host/ehci-platform.c
3010 F:      drivers/usb/host/uhci-platform.c
3011 F:      drivers/video/fbdev/vt8500lcdfb.*
3012 F:      drivers/video/fbdev/wm8505fb*
3013 F:      drivers/video/fbdev/wmt_ge_rops.*
3014
3015 ARM/ZYNQ ARCHITECTURE
3016 M:      Michal Simek <michal.simek@xilinx.com>
3017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3018 S:      Supported
3019 W:      http://wiki.xilinx.com
3020 T:      git https://github.com/Xilinx/linux-xlnx.git
3021 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3022 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3023 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3024 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3025 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3026 F:      arch/arm/mach-zynq/
3027 F:      drivers/clocksource/timer-cadence-ttc.c
3028 F:      drivers/cpuidle/cpuidle-zynq.c
3029 F:      drivers/edac/synopsys_edac.c
3030 F:      drivers/i2c/busses/i2c-cadence.c
3031 F:      drivers/i2c/busses/i2c-xiic.c
3032 F:      drivers/mmc/host/sdhci-of-arasan.c
3033 N:      zynq
3034 N:      xilinx
3035
3036 ARM64 PORT (AARCH64 ARCHITECTURE)
3037 M:      Catalin Marinas <catalin.marinas@arm.com>
3038 M:      Will Deacon <will@kernel.org>
3039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3040 S:      Maintained
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3042 F:      Documentation/arm64/
3043 F:      arch/arm64/
3044 F:      tools/testing/selftests/arm64/
3045 X:      arch/arm64/boot/dts/
3046
3047 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3048 M:      George McCollister <george.mccollister@gmail.com>
3049 L:      netdev@vger.kernel.org
3050 S:      Maintained
3051 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3052 F:      drivers/net/dsa/xrs700x/*
3053 F:      net/dsa/tag_xrs700x.c
3054
3055 AS3645A LED FLASH CONTROLLER DRIVER
3056 M:      Sakari Ailus <sakari.ailus@iki.fi>
3057 L:      linux-leds@vger.kernel.org
3058 S:      Maintained
3059 F:      drivers/leds/flash/leds-as3645a.c
3060
3061 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3062 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3063 L:      linux-media@vger.kernel.org
3064 S:      Maintained
3065 T:      git git://linuxtv.org/media_tree.git
3066 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3067 F:      drivers/media/i2c/ak7375.c
3068
3069 ASAHI KASEI AK8974 DRIVER
3070 M:      Linus Walleij <linus.walleij@linaro.org>
3071 L:      linux-iio@vger.kernel.org
3072 S:      Supported
3073 W:      http://www.akm.com/
3074 F:      drivers/iio/magnetometer/ak8974.c
3075
3076 ASC7621 HARDWARE MONITOR DRIVER
3077 M:      George Joseph <george.joseph@fairview5.com>
3078 L:      linux-hwmon@vger.kernel.org
3079 S:      Maintained
3080 F:      Documentation/hwmon/asc7621.rst
3081 F:      drivers/hwmon/asc7621.c
3082
3083 ASIX AX88796C SPI ETHERNET ADAPTER
3084 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3085 S:      Maintained
3086 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3087 F:      drivers/net/ethernet/asix/ax88796c_*
3088
3089 ASPEED PECI CONTROLLER
3090 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3091 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3092 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3093 S:      Supported
3094 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3095 F:      drivers/peci/controller/peci-aspeed.c
3096
3097 ASPEED PINCTRL DRIVERS
3098 M:      Andrew Jeffery <andrew@aj.id.au>
3099 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3100 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3101 L:      linux-gpio@vger.kernel.org
3102 S:      Maintained
3103 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3104 F:      drivers/pinctrl/aspeed/
3105
3106 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3107 M:      Eddie James <eajames@linux.ibm.com>
3108 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3109 S:      Maintained
3110 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3111 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3112 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3113
3114 ASPEED SD/MMC DRIVER
3115 M:      Andrew Jeffery <andrew@aj.id.au>
3116 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3117 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3118 L:      linux-mmc@vger.kernel.org
3119 S:      Maintained
3120 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3121 F:      drivers/mmc/host/sdhci-of-aspeed*
3122
3123 ASPEED SMC SPI DRIVER
3124 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3125 M:      Cédric Le Goater <clg@kaod.org>
3126 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3127 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3128 L:      linux-spi@vger.kernel.org
3129 S:      Maintained
3130 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3131 F:      drivers/spi/spi-aspeed-smc.c
3132
3133 ASPEED VIDEO ENGINE DRIVER
3134 M:      Eddie James <eajames@linux.ibm.com>
3135 L:      linux-media@vger.kernel.org
3136 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3137 S:      Maintained
3138 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3139 F:      drivers/media/platform/aspeed/
3140
3141 ASPEED USB UDC DRIVER
3142 M:      Neal Liu <neal_liu@aspeedtech.com>
3143 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3144 S:      Maintained
3145 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3146 F:      drivers/usb/gadget/udc/aspeed_udc.c
3147
3148 ASPEED CRYPTO DRIVER
3149 M:      Neal Liu <neal_liu@aspeedtech.com>
3150 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3151 S:      Maintained
3152 F:      Documentation/devicetree/bindings/crypto/aspeed,*
3153 F:      drivers/crypto/aspeed/
3154
3155 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3156 M:      Corentin Chary <corentin.chary@gmail.com>
3157 L:      acpi4asus-user@lists.sourceforge.net
3158 L:      platform-driver-x86@vger.kernel.org
3159 S:      Maintained
3160 W:      http://acpi4asus.sf.net
3161 F:      drivers/platform/x86/asus*.c
3162 F:      drivers/platform/x86/eeepc*.c
3163
3164 ASUS TF103C DOCK DRIVER
3165 M:      Hans de Goede <hdegoede@redhat.com>
3166 L:      platform-driver-x86@vger.kernel.org
3167 S:      Maintained
3168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3169 F:      drivers/platform/x86/asus-tf103c-dock.c
3170
3171 ASUS WMI HARDWARE MONITOR DRIVER
3172 M:      Ed Brindley <kernel@maidavale.org>
3173 M:      Denis Pauk <pauk.denis@gmail.com>
3174 L:      linux-hwmon@vger.kernel.org
3175 S:      Maintained
3176 F:      drivers/hwmon/asus_wmi_sensors.c
3177
3178 ASUS EC HARDWARE MONITOR DRIVER
3179 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3180 L:      linux-hwmon@vger.kernel.org
3181 S:      Maintained
3182 F:      drivers/hwmon/asus-ec-sensors.c
3183
3184 ASUS WIRELESS RADIO CONTROL DRIVER
3185 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3186 L:      platform-driver-x86@vger.kernel.org
3187 S:      Maintained
3188 F:      drivers/platform/x86/asus-wireless.c
3189
3190 ASYMMETRIC KEYS
3191 M:      David Howells <dhowells@redhat.com>
3192 L:      keyrings@vger.kernel.org
3193 S:      Maintained
3194 F:      Documentation/crypto/asymmetric-keys.rst
3195 F:      crypto/asymmetric_keys/
3196 F:      include/crypto/pkcs7.h
3197 F:      include/crypto/public_key.h
3198 F:      include/linux/verification.h
3199
3200 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3201 R:      Dan Williams <dan.j.williams@intel.com>
3202 S:      Odd fixes
3203 W:      http://sourceforge.net/projects/xscaleiop
3204 F:      Documentation/crypto/async-tx-api.rst
3205 F:      crypto/async_tx/
3206 F:      include/linux/async_tx.h
3207
3208 AT24 EEPROM DRIVER
3209 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3210 L:      linux-i2c@vger.kernel.org
3211 S:      Maintained
3212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3213 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3214 F:      drivers/misc/eeprom/at24.c
3215
3216 ATA OVER ETHERNET (AOE) DRIVER
3217 M:      "Justin Sanders" <justin@coraid.com>
3218 S:      Supported
3219 W:      http://www.openaoe.org/
3220 F:      Documentation/admin-guide/aoe/
3221 F:      drivers/block/aoe/
3222
3223 ATC260X PMIC MFD DRIVER
3224 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3225 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3226 L:      linux-actions@lists.infradead.org
3227 S:      Maintained
3228 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3229 F:      drivers/input/misc/atc260x-onkey.c
3230 F:      drivers/mfd/atc260*
3231 F:      drivers/power/reset/atc260x-poweroff.c
3232 F:      drivers/regulator/atc260x-regulator.c
3233 F:      include/linux/mfd/atc260x/*
3234
3235 ATHEROS 71XX/9XXX GPIO DRIVER
3236 M:      Alban Bedel <albeu@free.fr>
3237 S:      Maintained
3238 W:      https://github.com/AlbanBedel/linux
3239 T:      git git://github.com/AlbanBedel/linux
3240 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3241 F:      drivers/gpio/gpio-ath79.c
3242
3243 ATHEROS 71XX/9XXX USB PHY DRIVER
3244 M:      Alban Bedel <albeu@free.fr>
3245 S:      Maintained
3246 W:      https://github.com/AlbanBedel/linux
3247 T:      git git://github.com/AlbanBedel/linux
3248 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3249 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3250
3251 ATHEROS ATH GENERIC UTILITIES
3252 M:      Kalle Valo <kvalo@kernel.org>
3253 L:      linux-wireless@vger.kernel.org
3254 S:      Supported
3255 F:      drivers/net/wireless/ath/*
3256
3257 ATHEROS ATH5K WIRELESS DRIVER
3258 M:      Jiri Slaby <jirislaby@kernel.org>
3259 M:      Nick Kossifidis <mickflemm@gmail.com>
3260 M:      Luis Chamberlain <mcgrof@kernel.org>
3261 L:      linux-wireless@vger.kernel.org
3262 S:      Maintained
3263 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3264 F:      drivers/net/wireless/ath/ath5k/
3265
3266 ATHEROS ATH6KL WIRELESS DRIVER
3267 L:      linux-wireless@vger.kernel.org
3268 S:      Orphan
3269 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3270 F:      drivers/net/wireless/ath/ath6kl/
3271
3272 ATI_REMOTE2 DRIVER
3273 M:      Ville Syrjala <syrjala@sci.fi>
3274 S:      Maintained
3275 F:      drivers/input/misc/ati_remote2.c
3276
3277 ATK0110 HWMON DRIVER
3278 M:      Luca Tettamanti <kronos.it@gmail.com>
3279 L:      linux-hwmon@vger.kernel.org
3280 S:      Maintained
3281 F:      drivers/hwmon/asus_atk0110.c
3282
3283 ATLX ETHERNET DRIVERS
3284 M:      Chris Snook <chris.snook@gmail.com>
3285 L:      netdev@vger.kernel.org
3286 S:      Maintained
3287 W:      http://sourceforge.net/projects/atl1
3288 W:      http://atl1.sourceforge.net
3289 F:      drivers/net/ethernet/atheros/
3290
3291 ATM
3292 M:      Chas Williams <3chas3@gmail.com>
3293 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3294 L:      netdev@vger.kernel.org
3295 S:      Maintained
3296 W:      http://linux-atm.sourceforge.net
3297 F:      drivers/atm/
3298 F:      include/linux/atm*
3299 F:      include/uapi/linux/atm*
3300
3301 ATMEL MACB ETHERNET DRIVER
3302 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3303 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3304 S:      Supported
3305 F:      drivers/net/ethernet/cadence/
3306
3307 ATMEL MAXTOUCH DRIVER
3308 M:      Nick Dyer <nick@shmanahar.org>
3309 S:      Maintained
3310 T:      git git://github.com/ndyer/linux.git
3311 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3312 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3313
3314 ATMEL WIRELESS DRIVER
3315 M:      Simon Kelley <simon@thekelleys.org.uk>
3316 L:      linux-wireless@vger.kernel.org
3317 S:      Maintained
3318 W:      http://www.thekelleys.org.uk/atmel
3319 W:      http://atmelwlandriver.sourceforge.net/
3320 F:      drivers/net/wireless/atmel/atmel*
3321
3322 ATOMIC INFRASTRUCTURE
3323 M:      Will Deacon <will@kernel.org>
3324 M:      Peter Zijlstra <peterz@infradead.org>
3325 R:      Boqun Feng <boqun.feng@gmail.com>
3326 R:      Mark Rutland <mark.rutland@arm.com>
3327 L:      linux-kernel@vger.kernel.org
3328 S:      Maintained
3329 F:      arch/*/include/asm/atomic*.h
3330 F:      include/*/atomic*.h
3331 F:      include/linux/refcount.h
3332 F:      Documentation/atomic_*.txt
3333 F:      scripts/atomic/
3334
3335 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3336 M:      Bradley Grove <linuxdrivers@attotech.com>
3337 L:      linux-scsi@vger.kernel.org
3338 S:      Supported
3339 W:      http://www.attotech.com
3340 F:      drivers/scsi/esas2r
3341
3342 ATUSB IEEE 802.15.4 RADIO DRIVER
3343 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3344 L:      linux-wpan@vger.kernel.org
3345 S:      Maintained
3346 F:      drivers/net/ieee802154/at86rf230.h
3347 F:      drivers/net/ieee802154/atusb.c
3348 F:      drivers/net/ieee802154/atusb.h
3349
3350 AUDIT SUBSYSTEM
3351 M:      Paul Moore <paul@paul-moore.com>
3352 M:      Eric Paris <eparis@redhat.com>
3353 L:      linux-audit@redhat.com (moderated for non-subscribers)
3354 S:      Supported
3355 W:      https://github.com/linux-audit
3356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3357 F:      include/asm-generic/audit_*.h
3358 F:      include/linux/audit.h
3359 F:      include/linux/audit_arch.h
3360 F:      include/uapi/linux/audit.h
3361 F:      kernel/audit*
3362 F:      lib/*audit.c
3363
3364 AUXILIARY DISPLAY DRIVERS
3365 M:      Miguel Ojeda <ojeda@kernel.org>
3366 S:      Maintained
3367 F:      Documentation/devicetree/bindings/auxdisplay/
3368 F:      drivers/auxdisplay/
3369 F:      include/linux/cfag12864b.h
3370
3371 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3372 M:      Andreas Klinger <ak@it-klinger.de>
3373 L:      linux-iio@vger.kernel.org
3374 S:      Maintained
3375 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3376 F:      drivers/iio/adc/hx711.c
3377
3378 AX.25 NETWORK LAYER
3379 M:      Ralf Baechle <ralf@linux-mips.org>
3380 L:      linux-hams@vger.kernel.org
3381 S:      Maintained
3382 W:      http://www.linux-ax25.org/
3383 F:      include/net/ax25.h
3384 F:      include/uapi/linux/ax25.h
3385 F:      net/ax25/
3386
3387 AXENTIA ARM DEVICES
3388 M:      Peter Rosin <peda@axentia.se>
3389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3390 S:      Maintained
3391 F:      arch/arm/boot/dts/at91-linea.dtsi
3392 F:      arch/arm/boot/dts/at91-natte.dtsi
3393 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3394 F:      arch/arm/boot/dts/at91-tse850-3.dts
3395
3396 AXENTIA ASOC DRIVERS
3397 M:      Peter Rosin <peda@axentia.se>
3398 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3399 S:      Maintained
3400 F:      Documentation/devicetree/bindings/sound/axentia,*
3401 F:      sound/soc/atmel/tse850-pcm5142.c
3402
3403 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3404 M:      Nuno Sá <nuno.sa@analog.com>
3405 L:      linux-hwmon@vger.kernel.org
3406 S:      Supported
3407 W:      https://ez.analog.com/linux-software-drivers
3408 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3409 F:      drivers/hwmon/axi-fan-control.c
3410
3411 AXXIA I2C CONTROLLER
3412 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3413 L:      linux-i2c@vger.kernel.org
3414 S:      Maintained
3415 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3416 F:      drivers/i2c/busses/i2c-axxia.c
3417
3418 AZ6007 DVB DRIVER
3419 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3420 L:      linux-media@vger.kernel.org
3421 S:      Maintained
3422 W:      https://linuxtv.org
3423 T:      git git://linuxtv.org/media_tree.git
3424 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3425
3426 AZTECH FM RADIO RECEIVER DRIVER
3427 M:      Hans Verkuil <hverkuil@xs4all.nl>
3428 L:      linux-media@vger.kernel.org
3429 S:      Maintained
3430 W:      https://linuxtv.org
3431 T:      git git://linuxtv.org/media_tree.git
3432 F:      drivers/media/radio/radio-aztech*
3433
3434 B43 WIRELESS DRIVER
3435 L:      linux-wireless@vger.kernel.org
3436 L:      b43-dev@lists.infradead.org
3437 S:      Odd Fixes
3438 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3439 F:      drivers/net/wireless/broadcom/b43/
3440
3441 B43LEGACY WIRELESS DRIVER
3442 M:      Larry Finger <Larry.Finger@lwfinger.net>
3443 L:      linux-wireless@vger.kernel.org
3444 L:      b43-dev@lists.infradead.org
3445 S:      Maintained
3446 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3447 F:      drivers/net/wireless/broadcom/b43legacy/
3448
3449 BACKLIGHT CLASS/SUBSYSTEM
3450 M:      Lee Jones <lee@kernel.org>
3451 M:      Daniel Thompson <daniel.thompson@linaro.org>
3452 M:      Jingoo Han <jingoohan1@gmail.com>
3453 L:      dri-devel@lists.freedesktop.org
3454 S:      Maintained
3455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3456 F:      Documentation/ABI/stable/sysfs-class-backlight
3457 F:      Documentation/ABI/testing/sysfs-class-backlight
3458 F:      Documentation/devicetree/bindings/leds/backlight
3459 F:      drivers/video/backlight/
3460 F:      include/linux/backlight.h
3461 F:      include/linux/pwm_backlight.h
3462
3463 BARCO P50 GPIO DRIVER
3464 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3465 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3466 S:      Maintained
3467 F:      drivers/platform/x86/barco-p50-gpio.c
3468
3469 BATMAN ADVANCED
3470 M:      Marek Lindner <mareklindner@neomailbox.ch>
3471 M:      Simon Wunderlich <sw@simonwunderlich.de>
3472 M:      Antonio Quartulli <a@unstable.cc>
3473 M:      Sven Eckelmann <sven@narfation.org>
3474 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3475 S:      Maintained
3476 W:      https://www.open-mesh.org/
3477 Q:      https://patchwork.open-mesh.org/project/batman/list/
3478 B:      https://www.open-mesh.org/projects/batman-adv/issues
3479 C:      ircs://irc.hackint.org/batadv
3480 T:      git https://git.open-mesh.org/linux-merge.git
3481 F:      Documentation/networking/batman-adv.rst
3482 F:      include/uapi/linux/batadv_packet.h
3483 F:      include/uapi/linux/batman_adv.h
3484 F:      net/batman-adv/
3485
3486 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3487 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3488 L:      linux-hams@vger.kernel.org
3489 S:      Maintained
3490 W:      http://www.baycom.org/~tom/ham/ham.html
3491 F:      drivers/net/hamradio/baycom*
3492
3493 BCACHE (BLOCK LAYER CACHE)
3494 M:      Coly Li <colyli@suse.de>
3495 M:      Kent Overstreet <kent.overstreet@gmail.com>
3496 L:      linux-bcache@vger.kernel.org
3497 S:      Maintained
3498 W:      http://bcache.evilpiepirate.org
3499 C:      irc://irc.oftc.net/bcache
3500 F:      drivers/md/bcache/
3501
3502 BDISP ST MEDIA DRIVER
3503 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3504 L:      linux-media@vger.kernel.org
3505 S:      Supported
3506 W:      https://linuxtv.org
3507 T:      git git://linuxtv.org/media_tree.git
3508 F:      drivers/media/platform/st/sti/bdisp
3509
3510 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3511 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3512 L:      netdev@vger.kernel.org
3513 S:      Maintained
3514 F:      drivers/net/ethernet/ec_bhf.c
3515
3516 BEFS FILE SYSTEM
3517 M:      Luis de Bethencourt <luisbg@kernel.org>
3518 M:      Salah Triki <salah.triki@gmail.com>
3519 S:      Maintained
3520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3521 F:      Documentation/filesystems/befs.rst
3522 F:      fs/befs/
3523
3524 BFQ I/O SCHEDULER
3525 M:      Paolo Valente <paolo.valente@linaro.org>
3526 M:      Jens Axboe <axboe@kernel.dk>
3527 L:      linux-block@vger.kernel.org
3528 S:      Maintained
3529 F:      Documentation/block/bfq-iosched.rst
3530 F:      block/bfq-*
3531
3532 BFS FILE SYSTEM
3533 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3534 S:      Maintained
3535 F:      Documentation/filesystems/bfs.rst
3536 F:      fs/bfs/
3537 F:      include/uapi/linux/bfs_fs.h
3538
3539 BITMAP API
3540 M:      Yury Norov <yury.norov@gmail.com>
3541 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3542 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3543 S:      Maintained
3544 F:      include/linux/bitmap.h
3545 F:      include/linux/cpumask.h
3546 F:      include/linux/find.h
3547 F:      include/linux/nodemask.h
3548 F:      lib/bitmap.c
3549 F:      lib/cpumask.c
3550 F:      lib/cpumask_kunit.c
3551 F:      lib/find_bit.c
3552 F:      lib/find_bit_benchmark.c
3553 F:      lib/test_bitmap.c
3554 F:      tools/include/linux/bitmap.h
3555 F:      tools/include/linux/find.h
3556 F:      tools/lib/bitmap.c
3557 F:      tools/lib/find_bit.c
3558
3559 BLINKM RGB LED DRIVER
3560 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3561 S:      Maintained
3562 F:      drivers/leds/leds-blinkm.c
3563
3564 BLOCK LAYER
3565 M:      Jens Axboe <axboe@kernel.dk>
3566 L:      linux-block@vger.kernel.org
3567 S:      Maintained
3568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3569 F:      Documentation/ABI/stable/sysfs-block
3570 F:      Documentation/block/
3571 F:      block/
3572 F:      drivers/block/
3573 F:      include/linux/bio.h
3574 F:      include/linux/blk*
3575 F:      kernel/trace/blktrace.c
3576 F:      lib/sbitmap.c
3577
3578 BLOCK2MTD DRIVER
3579 M:      Joern Engel <joern@lazybastard.org>
3580 L:      linux-mtd@lists.infradead.org
3581 S:      Maintained
3582 F:      drivers/mtd/devices/block2mtd.c
3583
3584 BLUETOOTH DRIVERS
3585 M:      Marcel Holtmann <marcel@holtmann.org>
3586 M:      Johan Hedberg <johan.hedberg@gmail.com>
3587 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3588 L:      linux-bluetooth@vger.kernel.org
3589 S:      Supported
3590 W:      http://www.bluez.org/
3591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3593 F:      drivers/bluetooth/
3594
3595 BLUETOOTH SUBSYSTEM
3596 M:      Marcel Holtmann <marcel@holtmann.org>
3597 M:      Johan Hedberg <johan.hedberg@gmail.com>
3598 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3599 L:      linux-bluetooth@vger.kernel.org
3600 S:      Supported
3601 W:      http://www.bluez.org/
3602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3604 F:      include/net/bluetooth/
3605 F:      net/bluetooth/
3606
3607 BONDING DRIVER
3608 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3609 M:      Andy Gospodarek <andy@greyhouse.net>
3610 L:      netdev@vger.kernel.org
3611 S:      Supported
3612 W:      http://sourceforge.net/projects/bonding/
3613 F:      Documentation/networking/bonding.rst
3614 F:      drivers/net/bonding/
3615 F:      include/net/bond*
3616 F:      include/uapi/linux/if_bonding.h
3617 F:      tools/testing/selftests/drivers/net/bonding/
3618
3619 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3620 M:      Dan Robertson <dan@dlrobertson.com>
3621 L:      linux-iio@vger.kernel.org
3622 S:      Maintained
3623 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3624 F:      drivers/iio/accel/bma400*
3625
3626 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3627 M:      Alexei Starovoitov <ast@kernel.org>
3628 M:      Daniel Borkmann <daniel@iogearbox.net>
3629 M:      Andrii Nakryiko <andrii@kernel.org>
3630 R:      Martin KaFai Lau <martin.lau@linux.dev>
3631 R:      Song Liu <song@kernel.org>
3632 R:      Yonghong Song <yhs@fb.com>
3633 R:      John Fastabend <john.fastabend@gmail.com>
3634 R:      KP Singh <kpsingh@kernel.org>
3635 R:      Stanislav Fomichev <sdf@google.com>
3636 R:      Hao Luo <haoluo@google.com>
3637 R:      Jiri Olsa <jolsa@kernel.org>
3638 L:      bpf@vger.kernel.org
3639 S:      Supported
3640 W:      https://bpf.io/
3641 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3644 F:      Documentation/bpf/
3645 F:      Documentation/networking/filter.rst
3646 F:      Documentation/userspace-api/ebpf/
3647 F:      arch/*/net/*
3648 F:      include/linux/bpf*
3649 F:      include/linux/btf*
3650 F:      include/linux/filter.h
3651 F:      include/trace/events/xdp.h
3652 F:      include/uapi/linux/bpf*
3653 F:      include/uapi/linux/btf*
3654 F:      include/uapi/linux/filter.h
3655 F:      kernel/bpf/
3656 F:      kernel/trace/bpf_trace.c
3657 F:      lib/test_bpf.c
3658 F:      net/bpf/
3659 F:      net/core/filter.c
3660 F:      net/sched/act_bpf.c
3661 F:      net/sched/cls_bpf.c
3662 F:      samples/bpf/
3663 F:      scripts/bpf_doc.py
3664 F:      scripts/pahole-flags.sh
3665 F:      scripts/pahole-version.sh
3666 F:      tools/bpf/
3667 F:      tools/lib/bpf/
3668 F:      tools/testing/selftests/bpf/
3669
3670 BPF JIT for ARM
3671 M:      Shubham Bansal <illusionist.neo@gmail.com>
3672 L:      bpf@vger.kernel.org
3673 S:      Odd Fixes
3674 F:      arch/arm/net/
3675
3676 BPF JIT for ARM64
3677 M:      Daniel Borkmann <daniel@iogearbox.net>
3678 M:      Alexei Starovoitov <ast@kernel.org>
3679 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3680 L:      bpf@vger.kernel.org
3681 S:      Supported
3682 F:      arch/arm64/net/
3683
3684 BPF JIT for MIPS (32-BIT AND 64-BIT)
3685 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3686 M:      Paul Burton <paulburton@kernel.org>
3687 L:      bpf@vger.kernel.org
3688 S:      Maintained
3689 F:      arch/mips/net/
3690
3691 BPF JIT for NFP NICs
3692 M:      Jakub Kicinski <kuba@kernel.org>
3693 L:      bpf@vger.kernel.org
3694 S:      Odd Fixes
3695 F:      drivers/net/ethernet/netronome/nfp/bpf/
3696
3697 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3698 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3699 M:      Michael Ellerman <mpe@ellerman.id.au>
3700 L:      bpf@vger.kernel.org
3701 S:      Supported
3702 F:      arch/powerpc/net/
3703
3704 BPF JIT for RISC-V (32-bit)
3705 M:      Luke Nelson <luke.r.nels@gmail.com>
3706 M:      Xi Wang <xi.wang@gmail.com>
3707 L:      bpf@vger.kernel.org
3708 S:      Maintained
3709 F:      arch/riscv/net/
3710 X:      arch/riscv/net/bpf_jit_comp64.c
3711
3712 BPF JIT for RISC-V (64-bit)
3713 M:      Björn Töpel <bjorn@kernel.org>
3714 L:      bpf@vger.kernel.org
3715 S:      Maintained
3716 F:      arch/riscv/net/
3717 X:      arch/riscv/net/bpf_jit_comp32.c
3718
3719 BPF JIT for S390
3720 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3721 M:      Heiko Carstens <hca@linux.ibm.com>
3722 M:      Vasily Gorbik <gor@linux.ibm.com>
3723 L:      bpf@vger.kernel.org
3724 S:      Supported
3725 F:      arch/s390/net/
3726 X:      arch/s390/net/pnet.c
3727
3728 BPF JIT for SPARC (32-BIT AND 64-BIT)
3729 M:      David S. Miller <davem@davemloft.net>
3730 L:      bpf@vger.kernel.org
3731 S:      Odd Fixes
3732 F:      arch/sparc/net/
3733
3734 BPF JIT for X86 32-BIT
3735 M:      Wang YanQing <udknight@gmail.com>
3736 L:      bpf@vger.kernel.org
3737 S:      Odd Fixes
3738 F:      arch/x86/net/bpf_jit_comp32.c
3739
3740 BPF JIT for X86 64-BIT
3741 M:      Alexei Starovoitov <ast@kernel.org>
3742 M:      Daniel Borkmann <daniel@iogearbox.net>
3743 L:      bpf@vger.kernel.org
3744 S:      Supported
3745 F:      arch/x86/net/
3746 X:      arch/x86/net/bpf_jit_comp32.c
3747
3748 BPF [CORE]
3749 M:      Alexei Starovoitov <ast@kernel.org>
3750 M:      Daniel Borkmann <daniel@iogearbox.net>
3751 R:      John Fastabend <john.fastabend@gmail.com>
3752 L:      bpf@vger.kernel.org
3753 S:      Maintained
3754 F:      kernel/bpf/verifier.c
3755 F:      kernel/bpf/tnum.c
3756 F:      kernel/bpf/core.c
3757 F:      kernel/bpf/syscall.c
3758 F:      kernel/bpf/dispatcher.c
3759 F:      kernel/bpf/trampoline.c
3760 F:      include/linux/bpf*
3761 F:      include/linux/filter.h
3762 F:      include/linux/tnum.h
3763
3764 BPF [BTF]
3765 M:      Martin KaFai Lau <martin.lau@linux.dev>
3766 L:      bpf@vger.kernel.org
3767 S:      Maintained
3768 F:      kernel/bpf/btf.c
3769 F:      include/linux/btf*
3770
3771 BPF [TRACING]
3772 M:      Song Liu <song@kernel.org>
3773 R:      Jiri Olsa <jolsa@kernel.org>
3774 L:      bpf@vger.kernel.org
3775 S:      Maintained
3776 F:      kernel/trace/bpf_trace.c
3777 F:      kernel/bpf/stackmap.c
3778
3779 BPF [NETWORKING] (tc BPF, sock_addr)
3780 M:      Martin KaFai Lau <martin.lau@linux.dev>
3781 M:      Daniel Borkmann <daniel@iogearbox.net>
3782 R:      John Fastabend <john.fastabend@gmail.com>
3783 L:      bpf@vger.kernel.org
3784 L:      netdev@vger.kernel.org
3785 S:      Maintained
3786 F:      net/core/filter.c
3787 F:      net/sched/act_bpf.c
3788 F:      net/sched/cls_bpf.c
3789
3790 BPF [NETWORKING] (struct_ops, reuseport)
3791 M:      Martin KaFai Lau <martin.lau@linux.dev>
3792 L:      bpf@vger.kernel.org
3793 L:      netdev@vger.kernel.org
3794 S:      Maintained
3795 F:      kernel/bpf/bpf_struct*
3796
3797 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3798 M:      KP Singh <kpsingh@kernel.org>
3799 R:      Florent Revest <revest@chromium.org>
3800 R:      Brendan Jackman <jackmanb@chromium.org>
3801 L:      bpf@vger.kernel.org
3802 S:      Maintained
3803 F:      Documentation/bpf/prog_lsm.rst
3804 F:      include/linux/bpf_lsm.h
3805 F:      kernel/bpf/bpf_lsm.c
3806 F:      security/bpf/
3807
3808 BPF [STORAGE & CGROUPS]
3809 M:      Martin KaFai Lau <martin.lau@linux.dev>
3810 L:      bpf@vger.kernel.org
3811 S:      Maintained
3812 F:      kernel/bpf/cgroup.c
3813 F:      kernel/bpf/*storage.c
3814 F:      kernel/bpf/bpf_lru*
3815
3816 BPF [RINGBUF]
3817 M:      Andrii Nakryiko <andrii@kernel.org>
3818 L:      bpf@vger.kernel.org
3819 S:      Maintained
3820 F:      kernel/bpf/ringbuf.c
3821
3822 BPF [ITERATOR]
3823 M:      Yonghong Song <yhs@fb.com>
3824 L:      bpf@vger.kernel.org
3825 S:      Maintained
3826 F:      kernel/bpf/*iter.c
3827
3828 BPF [L7 FRAMEWORK] (sockmap)
3829 M:      John Fastabend <john.fastabend@gmail.com>
3830 M:      Jakub Sitnicki <jakub@cloudflare.com>
3831 L:      netdev@vger.kernel.org
3832 L:      bpf@vger.kernel.org
3833 S:      Maintained
3834 F:      include/linux/skmsg.h
3835 F:      net/core/skmsg.c
3836 F:      net/core/sock_map.c
3837 F:      net/ipv4/tcp_bpf.c
3838 F:      net/ipv4/udp_bpf.c
3839 F:      net/unix/unix_bpf.c
3840
3841 BPF [LIBRARY] (libbpf)
3842 M:      Andrii Nakryiko <andrii@kernel.org>
3843 L:      bpf@vger.kernel.org
3844 S:      Maintained
3845 F:      tools/lib/bpf/
3846
3847 BPF [TOOLING] (bpftool)
3848 M:      Quentin Monnet <quentin@isovalent.com>
3849 L:      bpf@vger.kernel.org
3850 S:      Maintained
3851 F:      kernel/bpf/disasm.*
3852 F:      tools/bpf/bpftool/
3853
3854 BPF [SELFTESTS] (Test Runners & Infrastructure)
3855 M:      Andrii Nakryiko <andrii@kernel.org>
3856 R:      Mykola Lysenko <mykolal@fb.com>
3857 L:      bpf@vger.kernel.org
3858 S:      Maintained
3859 F:      tools/testing/selftests/bpf/
3860
3861 BPF [DOCUMENTATION] (Related to Standardization)
3862 R:      David Vernet <void@manifault.com>
3863 L:      bpf@vger.kernel.org
3864 L:      bpf@ietf.org
3865 S:      Maintained
3866 F:      Documentation/bpf/instruction-set.rst
3867
3868 BPF [MISC]
3869 L:      bpf@vger.kernel.org
3870 S:      Odd Fixes
3871 K:      (?:\b|_)bpf(?:\b|_)
3872
3873 BROADCOM B44 10/100 ETHERNET DRIVER
3874 M:      Michael Chan <michael.chan@broadcom.com>
3875 L:      netdev@vger.kernel.org
3876 S:      Supported
3877 F:      drivers/net/ethernet/broadcom/b44.*
3878
3879 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3880 M:      Florian Fainelli <f.fainelli@gmail.com>
3881 L:      netdev@vger.kernel.org
3882 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3883 S:      Supported
3884 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3885 F:      drivers/net/dsa/b53/*
3886 F:      drivers/net/dsa/bcm_sf2*
3887 F:      include/linux/dsa/brcm.h
3888 F:      include/linux/platform_data/b53.h
3889
3890 BROADCOM BCMBCA ARM ARCHITECTURE
3891 M:      William Zhang <william.zhang@broadcom.com>
3892 M:      Anand Gore <anand.gore@broadcom.com>
3893 M:      Kursad Oney <kursad.oney@broadcom.com>
3894 M:      Florian Fainelli <f.fainelli@gmail.com>
3895 M:      Rafał Miłecki <rafal@milecki.pl>
3896 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3898 S:      Maintained
3899 T:      git https://github.com/broadcom/stblinux.git
3900 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3901 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3902 N:      bcmbca
3903 N:      bcm[9]?47622
3904 N:      bcm[9]?4912
3905 N:      bcm[9]?63138
3906 N:      bcm[9]?63146
3907 N:      bcm[9]?63148
3908 N:      bcm[9]?63158
3909 N:      bcm[9]?63178
3910 N:      bcm[9]?6756
3911 N:      bcm[9]?6813
3912 N:      bcm[9]?6846
3913 N:      bcm[9]?6855
3914 N:      bcm[9]?6856
3915 N:      bcm[9]?6858
3916 N:      bcm[9]?6878
3917
3918 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3919 M:      Florian Fainelli <f.fainelli@gmail.com>
3920 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3921 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3923 S:      Maintained
3924 T:      git https://github.com/broadcom/stblinux.git
3925 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3926 F:      drivers/pci/controller/pcie-brcmstb.c
3927 F:      drivers/staging/vc04_services
3928 N:      bcm2711
3929 N:      bcm283*
3930 N:      raspberrypi
3931
3932 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3933 M:      Florian Fainelli <f.fainelli@gmail.com>
3934 M:      Ray Jui <rjui@broadcom.com>
3935 M:      Scott Branden <sbranden@broadcom.com>
3936 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3937 S:      Maintained
3938 T:      git https://github.com/broadcom/mach-bcm
3939 F:      arch/arm/mach-bcm/
3940 N:      bcm281*
3941 N:      bcm113*
3942 N:      bcm216*
3943 N:      kona
3944
3945 BROADCOM BCM47XX MIPS ARCHITECTURE
3946 M:      Hauke Mehrtens <hauke@hauke-m.de>
3947 M:      Rafał Miłecki <zajec5@gmail.com>
3948 L:      linux-mips@vger.kernel.org
3949 S:      Maintained
3950 F:      Documentation/devicetree/bindings/mips/brcm/
3951 F:      arch/mips/bcm47xx/*
3952 F:      arch/mips/include/asm/mach-bcm47xx/*
3953
3954 BROADCOM BCM4908 ETHERNET DRIVER
3955 M:      Rafał Miłecki <rafal@milecki.pl>
3956 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3957 L:      netdev@vger.kernel.org
3958 S:      Maintained
3959 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3960 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3961 F:      drivers/net/ethernet/broadcom/unimac.h
3962
3963 BROADCOM BCM4908 PINMUX DRIVER
3964 M:      Rafał Miłecki <rafal@milecki.pl>
3965 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3966 L:      linux-gpio@vger.kernel.org
3967 S:      Maintained
3968 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3969 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3970
3971 BROADCOM BCM5301X ARM ARCHITECTURE
3972 M:      Florian Fainelli <f.fainelli@gmail.com>
3973 M:      Hauke Mehrtens <hauke@hauke-m.de>
3974 M:      Rafał Miłecki <zajec5@gmail.com>
3975 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3977 S:      Maintained
3978 F:      arch/arm/boot/dts/bcm470*
3979 F:      arch/arm/boot/dts/bcm5301*
3980 F:      arch/arm/boot/dts/bcm953012*
3981 F:      arch/arm/mach-bcm/bcm_5301x.c
3982
3983 BROADCOM BCM53573 ARM ARCHITECTURE
3984 M:      Florian Fainelli <f.fainelli@gmail.com>
3985 M:      Rafał Miłecki <rafal@milecki.pl>
3986 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3988 S:      Maintained
3989 F:      arch/arm/boot/dts/bcm47189*
3990 F:      arch/arm/boot/dts/bcm53573*
3991
3992 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3993 M:      Kevin Cernekee <cernekee@gmail.com>
3994 L:      linux-usb@vger.kernel.org
3995 S:      Maintained
3996 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3997
3998 BROADCOM BCM7XXX ARM ARCHITECTURE
3999 M:      Florian Fainelli <f.fainelli@gmail.com>
4000 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4002 S:      Maintained
4003 T:      git https://github.com/broadcom/stblinux.git
4004 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4005 F:      arch/arm/boot/dts/bcm7*.dts*
4006 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4007 F:      arch/arm/mach-bcm/*brcmstb*
4008 F:      arch/arm/mm/cache-b15-rac.c
4009 F:      drivers/bus/brcmstb_gisb.c
4010 F:      drivers/pci/controller/pcie-brcmstb.c
4011 N:      brcmstb
4012 N:      bcm7038
4013 N:      bcm7120
4014
4015 BROADCOM BDC DRIVER
4016 M:      Justin Chen <justinpopo6@gmail.com>
4017 M:      Al Cooper <alcooperx@gmail.com>
4018 L:      linux-usb@vger.kernel.org
4019 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4020 S:      Maintained
4021 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4022 F:      drivers/usb/gadget/udc/bdc/
4023
4024 BROADCOM BMIPS CPUFREQ DRIVER
4025 M:      Markus Mayer <mmayer@broadcom.com>
4026 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4027 L:      linux-pm@vger.kernel.org
4028 S:      Maintained
4029 F:      drivers/cpufreq/bmips-cpufreq.c
4030
4031 BROADCOM BMIPS MIPS ARCHITECTURE
4032 M:      Florian Fainelli <f.fainelli@gmail.com>
4033 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4034 L:      linux-mips@vger.kernel.org
4035 S:      Maintained
4036 T:      git https://github.com/broadcom/stblinux.git
4037 F:      arch/mips/bmips/*
4038 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4039 F:      arch/mips/include/asm/mach-bmips/*
4040 F:      arch/mips/kernel/*bmips*
4041 F:      drivers/soc/bcm/bcm63xx
4042 F:      drivers/irqchip/irq-bcm63*
4043 F:      drivers/irqchip/irq-bcm7*
4044 F:      drivers/irqchip/irq-brcmstb*
4045 F:      include/linux/bcm963xx_nvram.h
4046 F:      include/linux/bcm963xx_tag.h
4047
4048 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4049 M:      Rasesh Mody <rmody@marvell.com>
4050 M:      GR-Linux-NIC-Dev@marvell.com
4051 L:      netdev@vger.kernel.org
4052 S:      Supported
4053 F:      drivers/net/ethernet/broadcom/bnx2.*
4054 F:      drivers/net/ethernet/broadcom/bnx2_*
4055
4056 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4057 M:      Saurav Kashyap <skashyap@marvell.com>
4058 M:      Javed Hasan <jhasan@marvell.com>
4059 M:      GR-QLogic-Storage-Upstream@marvell.com
4060 L:      linux-scsi@vger.kernel.org
4061 S:      Supported
4062 F:      drivers/scsi/bnx2fc/
4063
4064 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4065 M:      Nilesh Javali <njavali@marvell.com>
4066 M:      Manish Rangankar <mrangankar@marvell.com>
4067 M:      GR-QLogic-Storage-Upstream@marvell.com
4068 L:      linux-scsi@vger.kernel.org
4069 S:      Supported
4070 F:      drivers/scsi/bnx2i/
4071
4072 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4073 M:      Ariel Elior <aelior@marvell.com>
4074 M:      Sudarsana Kalluru <skalluru@marvell.com>
4075 M:      Manish Chopra <manishc@marvell.com>
4076 L:      netdev@vger.kernel.org
4077 S:      Supported
4078 F:      drivers/net/ethernet/broadcom/bnx2x/
4079
4080 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4081 M:      Michael Chan <michael.chan@broadcom.com>
4082 L:      netdev@vger.kernel.org
4083 S:      Supported
4084 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4085 F:      drivers/net/ethernet/broadcom/bnxt/
4086 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4087
4088 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4089 M:      Arend van Spriel <aspriel@gmail.com>
4090 M:      Franky Lin <franky.lin@broadcom.com>
4091 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4092 L:      linux-wireless@vger.kernel.org
4093 L:      brcm80211-dev-list.pdl@broadcom.com
4094 L:      SHA-cyfmac-dev-list@infineon.com
4095 S:      Supported
4096 F:      drivers/net/wireless/broadcom/brcm80211/
4097
4098 BROADCOM BRCMSTB GPIO DRIVER
4099 M:      Doug Berger <opendmb@gmail.com>
4100 M:      Florian Fainelli <f.fainelli@gmail.com>
4101 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4102 S:      Supported
4103 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4104 F:      drivers/gpio/gpio-brcmstb.c
4105
4106 BROADCOM BRCMSTB I2C DRIVER
4107 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4108 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4109 L:      linux-i2c@vger.kernel.org
4110 S:      Supported
4111 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4112 F:      drivers/i2c/busses/i2c-brcmstb.c
4113
4114 BROADCOM BRCMSTB UART DRIVER
4115 M:      Al Cooper <alcooperx@gmail.com>
4116 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4117 L:      linux-serial@vger.kernel.org
4118 S:      Maintained
4119 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4120 F:      drivers/tty/serial/8250/8250_bcm7271.c
4121
4122 BROADCOM BRCMSTB USB EHCI DRIVER
4123 M:      Justin Chen <justinpopo6@gmail.com>
4124 M:      Al Cooper <alcooperx@gmail.com>
4125 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4126 L:      linux-usb@vger.kernel.org
4127 S:      Maintained
4128 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4129 F:      drivers/usb/host/ehci-brcm.*
4130
4131 BROADCOM BRCMSTB USB PIN MAP DRIVER
4132 M:      Al Cooper <alcooperx@gmail.com>
4133 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4134 L:      linux-usb@vger.kernel.org
4135 S:      Maintained
4136 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4137 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4138
4139 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4140 M:      Justin Chen <justinpopo6@gmail.com>
4141 M:      Al Cooper <alcooperx@gmail.com>
4142 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4143 L:      linux-kernel@vger.kernel.org
4144 S:      Maintained
4145 F:      drivers/phy/broadcom/phy-brcm-usb*
4146
4147 BROADCOM ETHERNET PHY DRIVERS
4148 M:      Florian Fainelli <f.fainelli@gmail.com>
4149 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4150 L:      netdev@vger.kernel.org
4151 S:      Supported
4152 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4153 F:      drivers/net/phy/bcm*.[ch]
4154 F:      drivers/net/phy/broadcom.c
4155 F:      include/linux/brcmphy.h
4156
4157 BROADCOM GENET ETHERNET DRIVER
4158 M:      Doug Berger <opendmb@gmail.com>
4159 M:      Florian Fainelli <f.fainelli@gmail.com>
4160 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4161 L:      netdev@vger.kernel.org
4162 S:      Supported
4163 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4164 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4165 F:      drivers/net/ethernet/broadcom/genet/
4166 F:      drivers/net/ethernet/broadcom/unimac.h
4167 F:      drivers/net/mdio/mdio-bcm-unimac.c
4168 F:      include/linux/platform_data/bcmgenet.h
4169 F:      include/linux/platform_data/mdio-bcm-unimac.h
4170
4171 BROADCOM IPROC ARM ARCHITECTURE
4172 M:      Ray Jui <rjui@broadcom.com>
4173 M:      Scott Branden <sbranden@broadcom.com>
4174 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4176 S:      Maintained
4177 T:      git https://github.com/broadcom/stblinux.git
4178 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4179 F:      arch/arm64/boot/dts/broadcom/stingray/*
4180 F:      drivers/clk/bcm/clk-ns*
4181 F:      drivers/clk/bcm/clk-sr*
4182 F:      drivers/pinctrl/bcm/pinctrl-ns*
4183 F:      include/dt-bindings/clock/bcm-sr*
4184 N:      iproc
4185 N:      cygnus
4186 N:      bcm[-_]nsp
4187 N:      bcm9113*
4188 N:      bcm9583*
4189 N:      bcm9585*
4190 N:      bcm9586*
4191 N:      bcm988312
4192 N:      bcm113*
4193 N:      bcm583*
4194 N:      bcm585*
4195 N:      bcm586*
4196 N:      bcm88312
4197 N:      hr2
4198 N:      stingray
4199
4200 BROADCOM IPROC GBIT ETHERNET DRIVER
4201 M:      Rafał Miłecki <rafal@milecki.pl>
4202 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4203 L:      netdev@vger.kernel.org
4204 S:      Maintained
4205 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4206 F:      drivers/net/ethernet/broadcom/bgmac*
4207 F:      drivers/net/ethernet/broadcom/unimac.h
4208
4209 BROADCOM KONA GPIO DRIVER
4210 M:      Ray Jui <rjui@broadcom.com>
4211 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4212 S:      Supported
4213 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4214 F:      drivers/gpio/gpio-bcm-kona.c
4215
4216 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4217 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4218 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4219 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4220 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4221 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4222 L:      linux-scsi@vger.kernel.org
4223 S:      Supported
4224 W:      https://www.broadcom.com/support/storage
4225 F:      drivers/scsi/mpi3mr/
4226
4227 BROADCOM NETXTREME-E ROCE DRIVER
4228 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4229 L:      linux-rdma@vger.kernel.org
4230 S:      Supported
4231 W:      http://www.broadcom.com
4232 F:      drivers/infiniband/hw/bnxt_re/
4233 F:      include/uapi/rdma/bnxt_re-abi.h
4234
4235 BROADCOM NVRAM DRIVER
4236 M:      Rafał Miłecki <zajec5@gmail.com>
4237 L:      linux-mips@vger.kernel.org
4238 S:      Maintained
4239 F:      drivers/firmware/broadcom/*
4240
4241 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4242 M:      Rafał Miłecki <rafal@milecki.pl>
4243 M:      Florian Fainelli <f.fainelli@gmail.com>
4244 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4245 L:      linux-pm@vger.kernel.org
4246 S:      Maintained
4247 T:      git https://github.com/broadcom/stblinux.git
4248 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4249 F:      include/dt-bindings/soc/bcm-pmb.h
4250
4251 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4252 M:      Rafał Miłecki <zajec5@gmail.com>
4253 L:      linux-wireless@vger.kernel.org
4254 S:      Maintained
4255 F:      drivers/bcma/
4256 F:      include/linux/bcma/
4257
4258 BROADCOM SPI DRIVER
4259 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4260 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4261 S:      Maintained
4262 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4263 F:      drivers/spi/spi-bcm-qspi.*
4264 F:      drivers/spi/spi-brcmstb-qspi.c
4265 F:      drivers/spi/spi-iproc-qspi.c
4266
4267 BROADCOM STB AVS CPUFREQ DRIVER
4268 M:      Markus Mayer <mmayer@broadcom.com>
4269 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4270 L:      linux-pm@vger.kernel.org
4271 S:      Maintained
4272 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4273 F:      drivers/cpufreq/brcmstb*
4274
4275 BROADCOM STB AVS TMON DRIVER
4276 M:      Markus Mayer <mmayer@broadcom.com>
4277 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4278 L:      linux-pm@vger.kernel.org
4279 S:      Maintained
4280 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4281 F:      drivers/thermal/broadcom/brcmstb*
4282
4283 BROADCOM STB DPFE DRIVER
4284 M:      Markus Mayer <mmayer@broadcom.com>
4285 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4287 S:      Maintained
4288 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4289 F:      drivers/memory/brcmstb_dpfe.c
4290
4291 BROADCOM STB NAND FLASH DRIVER
4292 M:      Brian Norris <computersforpeace@gmail.com>
4293 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4294 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4295 L:      linux-mtd@lists.infradead.org
4296 S:      Maintained
4297 F:      drivers/mtd/nand/raw/brcmnand/
4298 F:      include/linux/platform_data/brcmnand.h
4299
4300 BROADCOM STB PCIE DRIVER
4301 M:      Jim Quinlan <jim2101024@gmail.com>
4302 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4303 M:      Florian Fainelli <f.fainelli@gmail.com>
4304 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4305 L:      linux-pci@vger.kernel.org
4306 S:      Maintained
4307 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4308 F:      drivers/pci/controller/pcie-brcmstb.c
4309
4310 BROADCOM SYSTEMPORT ETHERNET DRIVER
4311 M:      Florian Fainelli <f.fainelli@gmail.com>
4312 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4313 L:      netdev@vger.kernel.org
4314 S:      Supported
4315 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4316 F:      drivers/net/ethernet/broadcom/unimac.h
4317 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4318
4319 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4320 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4321 M:      Prashant Sreedharan <prashant@broadcom.com>
4322 M:      Michael Chan <mchan@broadcom.com>
4323 L:      netdev@vger.kernel.org
4324 S:      Supported
4325 F:      drivers/net/ethernet/broadcom/tg3.*
4326
4327 BROADCOM VK DRIVER
4328 M:      Scott Branden <scott.branden@broadcom.com>
4329 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4330 S:      Supported
4331 F:      drivers/misc/bcm-vk/
4332 F:      include/uapi/linux/misc/bcm_vk.h
4333
4334 BROCADE BFA FC SCSI DRIVER
4335 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4336 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4337 L:      linux-scsi@vger.kernel.org
4338 S:      Supported
4339 F:      drivers/scsi/bfa/
4340
4341 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4342 M:      Rasesh Mody <rmody@marvell.com>
4343 M:      Sudarsana Kalluru <skalluru@marvell.com>
4344 M:      GR-Linux-NIC-Dev@marvell.com
4345 L:      netdev@vger.kernel.org
4346 S:      Supported
4347 F:      drivers/net/ethernet/brocade/bna/
4348
4349 BSG (block layer generic sg v4 driver)
4350 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4351 L:      linux-scsi@vger.kernel.org
4352 S:      Supported
4353 F:      block/bsg.c
4354 F:      include/linux/bsg.h
4355 F:      include/uapi/linux/bsg.h
4356
4357 BT87X AUDIO DRIVER
4358 M:      Clemens Ladisch <clemens@ladisch.de>
4359 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4360 S:      Maintained
4361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4362 F:      Documentation/sound/cards/bt87x.rst
4363 F:      sound/pci/bt87x.c
4364
4365 BT8XXGPIO DRIVER
4366 M:      Michael Buesch <m@bues.ch>
4367 S:      Maintained
4368 W:      http://bu3sch.de/btgpio.php
4369 F:      drivers/gpio/gpio-bt8xx.c
4370
4371 BTRFS FILE SYSTEM
4372 M:      Chris Mason <clm@fb.com>
4373 M:      Josef Bacik <josef@toxicpanda.com>
4374 M:      David Sterba <dsterba@suse.com>
4375 L:      linux-btrfs@vger.kernel.org
4376 S:      Maintained
4377 W:      https://btrfs.readthedocs.io
4378 W:      https://btrfs.wiki.kernel.org/
4379 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4380 C:      irc://irc.libera.chat/btrfs
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4382 F:      Documentation/filesystems/btrfs.rst
4383 F:      fs/btrfs/
4384 F:      include/linux/btrfs*
4385 F:      include/trace/events/btrfs.h
4386 F:      include/uapi/linux/btrfs*
4387
4388 BTTV VIDEO4LINUX DRIVER
4389 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4390 L:      linux-media@vger.kernel.org
4391 S:      Odd fixes
4392 W:      https://linuxtv.org
4393 T:      git git://linuxtv.org/media_tree.git
4394 F:      Documentation/driver-api/media/drivers/bttv*
4395 F:      drivers/media/pci/bt8xx/bttv*
4396
4397 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4398 M:      Chanwoo Choi <cw00.choi@samsung.com>
4399 L:      linux-pm@vger.kernel.org
4400 L:      linux-samsung-soc@vger.kernel.org
4401 S:      Maintained
4402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4403 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4404 F:      drivers/devfreq/exynos-bus.c
4405
4406 BUSLOGIC SCSI DRIVER
4407 M:      Khalid Aziz <khalid@gonehiking.org>
4408 L:      linux-scsi@vger.kernel.org
4409 S:      Maintained
4410 F:      drivers/scsi/BusLogic.*
4411 F:      drivers/scsi/FlashPoint.*
4412
4413 C-MEDIA CMI8788 DRIVER
4414 M:      Clemens Ladisch <clemens@ladisch.de>
4415 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4416 S:      Maintained
4417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4418 F:      sound/pci/oxygen/
4419
4420 C-SKY ARCHITECTURE
4421 M:      Guo Ren <guoren@kernel.org>
4422 L:      linux-csky@vger.kernel.org
4423 S:      Supported
4424 T:      git https://github.com/c-sky/csky-linux.git
4425 F:      Documentation/devicetree/bindings/csky/
4426 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4427 F:      Documentation/devicetree/bindings/timer/csky,*
4428 F:      arch/csky/
4429 F:      drivers/clocksource/timer-gx6605s.c
4430 F:      drivers/clocksource/timer-mp-csky.c
4431 F:      drivers/irqchip/irq-csky-*
4432 N:      csky
4433 K:      csky
4434
4435 CA8210 IEEE-802.15.4 RADIO DRIVER
4436 L:      linux-wpan@vger.kernel.org
4437 S:      Orphan
4438 W:      https://github.com/Cascoda/ca8210-linux.git
4439 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4440 F:      drivers/net/ieee802154/ca8210.c
4441
4442 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4443 M:      Damien Le Moal <damien.lemoal@wdc.com>
4444 L:      linux-riscv@lists.infradead.org
4445 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4446 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4447 F:      drivers/pinctrl/pinctrl-k210.c
4448
4449 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4450 M:      Damien Le Moal <damien.lemoal@wdc.com>
4451 L:      linux-kernel@vger.kernel.org
4452 L:      linux-riscv@lists.infradead.org
4453 S:      Maintained
4454 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4455 F:      drivers/reset/reset-k210.c
4456
4457 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4458 M:      Damien Le Moal <damien.lemoal@wdc.com>
4459 L:      linux-riscv@lists.infradead.org
4460 S:      Maintained
4461 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4462 F:      drivers/soc/canaan/
4463 F:      include/soc/canaan/
4464
4465 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4466 M:      David Howells <dhowells@redhat.com>
4467 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4468 S:      Supported
4469 F:      Documentation/filesystems/caching/cachefiles.rst
4470 F:      fs/cachefiles/
4471
4472 CADENCE MIPI-CSI2 BRIDGES
4473 M:      Maxime Ripard <mripard@kernel.org>
4474 L:      linux-media@vger.kernel.org
4475 S:      Maintained
4476 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4477 F:      drivers/media/platform/cadence/cdns-csi2*
4478
4479 CADENCE NAND DRIVER
4480 L:      linux-mtd@lists.infradead.org
4481 S:      Orphan
4482 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4483 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4484
4485 CADENCE USB3 DRD IP DRIVER
4486 M:      Peter Chen <peter.chen@kernel.org>
4487 M:      Pawel Laszczak <pawell@cadence.com>
4488 R:      Roger Quadros <rogerq@kernel.org>
4489 R:      Aswath Govindraju <a-govindraju@ti.com>
4490 L:      linux-usb@vger.kernel.org
4491 S:      Maintained
4492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4493 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4494 F:      drivers/usb/cdns3/
4495 X:      drivers/usb/cdns3/cdnsp*
4496
4497 CADENCE USBSSP DRD IP DRIVER
4498 M:      Pawel Laszczak <pawell@cadence.com>
4499 L:      linux-usb@vger.kernel.org
4500 S:      Maintained
4501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4502 F:      drivers/usb/cdns3/
4503 X:      drivers/usb/cdns3/cdns3*
4504
4505 CADET FM/AM RADIO RECEIVER DRIVER
4506 M:      Hans Verkuil <hverkuil@xs4all.nl>
4507 L:      linux-media@vger.kernel.org
4508 S:      Maintained
4509 W:      https://linuxtv.org
4510 T:      git git://linuxtv.org/media_tree.git
4511 F:      drivers/media/radio/radio-cadet*
4512
4513 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4514 L:      linux-media@vger.kernel.org
4515 S:      Orphan
4516 T:      git git://linuxtv.org/media_tree.git
4517 F:      Documentation/admin-guide/media/cafe_ccic*
4518 F:      drivers/media/platform/marvell/
4519
4520 CAIF NETWORK LAYER
4521 L:      netdev@vger.kernel.org
4522 S:      Orphan
4523 F:      Documentation/networking/caif/
4524 F:      drivers/net/caif/
4525 F:      include/net/caif/
4526 F:      include/uapi/linux/caif/
4527 F:      net/caif/
4528
4529 CAKE QDISC
4530 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4531 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4532 S:      Maintained
4533 F:      net/sched/sch_cake.c
4534
4535 CAN NETWORK DRIVERS
4536 M:      Wolfgang Grandegger <wg@grandegger.com>
4537 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4538 L:      linux-can@vger.kernel.org
4539 S:      Maintained
4540 W:      https://github.com/linux-can
4541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4543 F:      Documentation/devicetree/bindings/net/can/
4544 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4545 F:      drivers/net/can/
4546 F:      drivers/phy/phy-can-transceiver.c
4547 F:      include/linux/can/bittiming.h
4548 F:      include/linux/can/dev.h
4549 F:      include/linux/can/length.h
4550 F:      include/linux/can/platform/
4551 F:      include/linux/can/rx-offload.h
4552 F:      include/uapi/linux/can/error.h
4553 F:      include/uapi/linux/can/netlink.h
4554 F:      include/uapi/linux/can/vxcan.h
4555
4556 CAN NETWORK LAYER
4557 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4558 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4559 L:      linux-can@vger.kernel.org
4560 S:      Maintained
4561 W:      https://github.com/linux-can
4562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4564 F:      Documentation/networking/can.rst
4565 F:      include/linux/can/can-ml.h
4566 F:      include/linux/can/core.h
4567 F:      include/linux/can/skb.h
4568 F:      include/net/netns/can.h
4569 F:      include/uapi/linux/can.h
4570 F:      include/uapi/linux/can/bcm.h
4571 F:      include/uapi/linux/can/gw.h
4572 F:      include/uapi/linux/can/isotp.h
4573 F:      include/uapi/linux/can/raw.h
4574 F:      net/can/
4575
4576 CAN-J1939 NETWORK LAYER
4577 M:      Robin van der Gracht <robin@protonic.nl>
4578 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4579 R:      kernel@pengutronix.de
4580 L:      linux-can@vger.kernel.org
4581 S:      Maintained
4582 F:      Documentation/networking/j1939.rst
4583 F:      include/uapi/linux/can/j1939.h
4584 F:      net/can/j1939/
4585
4586 CAPABILITIES
4587 M:      Serge Hallyn <serge@hallyn.com>
4588 L:      linux-security-module@vger.kernel.org
4589 S:      Supported
4590 F:      include/linux/capability.h
4591 F:      include/uapi/linux/capability.h
4592 F:      kernel/capability.c
4593 F:      security/commoncap.c
4594
4595 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4596 M:      Kevin Tsai <ktsai@capellamicro.com>
4597 S:      Maintained
4598 F:      drivers/iio/light/cm*
4599
4600 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4601 M:      Christian Lamparter <chunkeey@googlemail.com>
4602 L:      linux-wireless@vger.kernel.org
4603 S:      Maintained
4604 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4605 F:      drivers/net/wireless/ath/carl9170/
4606
4607 CAVIUM I2C DRIVER
4608 M:      Robert Richter <rric@kernel.org>
4609 S:      Odd Fixes
4610 W:      http://www.marvell.com
4611 F:      drivers/i2c/busses/i2c-octeon*
4612 F:      drivers/i2c/busses/i2c-thunderx*
4613
4614 CAVIUM LIQUIDIO NETWORK DRIVER
4615 M:      Derek Chickles <dchickles@marvell.com>
4616 M:      Satanand Burla <sburla@marvell.com>
4617 M:      Felix Manlunas <fmanlunas@marvell.com>
4618 L:      netdev@vger.kernel.org
4619 S:      Supported
4620 W:      http://www.marvell.com
4621 F:      drivers/net/ethernet/cavium/liquidio/
4622
4623 CAVIUM MMC DRIVER
4624 M:      Robert Richter <rric@kernel.org>
4625 S:      Odd Fixes
4626 W:      http://www.marvell.com
4627 F:      drivers/mmc/host/cavium*
4628
4629 CAVIUM OCTEON-TX CRYPTO DRIVER
4630 M:      George Cherian <gcherian@marvell.com>
4631 L:      linux-crypto@vger.kernel.org
4632 S:      Supported
4633 W:      http://www.marvell.com
4634 F:      drivers/crypto/cavium/cpt/
4635
4636 CAVIUM THUNDERX2 ARM64 SOC
4637 M:      Robert Richter <rric@kernel.org>
4638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4639 S:      Odd Fixes
4640 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4641 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4642
4643 CBS/ETF/TAPRIO QDISCS
4644 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4645 S:      Maintained
4646 L:      netdev@vger.kernel.org
4647 F:      net/sched/sch_cbs.c
4648 F:      net/sched/sch_etf.c
4649 F:      net/sched/sch_taprio.c
4650
4651 CC2520 IEEE-802.15.4 RADIO DRIVER
4652 M:      Stefan Schmidt <stefan@datenfreihafen.org>
4653 L:      linux-wpan@vger.kernel.org
4654 S:      Odd Fixes
4655 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4656 F:      drivers/net/ieee802154/cc2520.c
4657
4658 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4659 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4660 L:      linux-crypto@vger.kernel.org
4661 S:      Supported
4662 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4663 F:      drivers/crypto/ccree/
4664
4665 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4666 M:      Hadar Gat <hadar.gat@arm.com>
4667 L:      linux-crypto@vger.kernel.org
4668 S:      Supported
4669 F:      drivers/char/hw_random/cctrng.c
4670 F:      drivers/char/hw_random/cctrng.h
4671 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4672 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4673
4674 CEC FRAMEWORK
4675 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4676 L:      linux-media@vger.kernel.org
4677 S:      Supported
4678 W:      http://linuxtv.org
4679 T:      git git://linuxtv.org/media_tree.git
4680 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4681 F:      Documentation/devicetree/bindings/media/cec.txt
4682 F:      Documentation/driver-api/media/cec-core.rst
4683 F:      Documentation/userspace-api/media/cec
4684 F:      drivers/media/cec/
4685 F:      drivers/media/rc/keymaps/rc-cec.c
4686 F:      include/media/cec-notifier.h
4687 F:      include/media/cec.h
4688 F:      include/uapi/linux/cec-funcs.h
4689 F:      include/uapi/linux/cec.h
4690
4691 CEC GPIO DRIVER
4692 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4693 L:      linux-media@vger.kernel.org
4694 S:      Supported
4695 W:      http://linuxtv.org
4696 T:      git git://linuxtv.org/media_tree.git
4697 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4698 F:      drivers/media/cec/platform/cec-gpio/
4699
4700 CELL BROADBAND ENGINE ARCHITECTURE
4701 M:      Arnd Bergmann <arnd@arndb.de>
4702 L:      linuxppc-dev@lists.ozlabs.org
4703 S:      Supported
4704 W:      http://www.ibm.com/developerworks/power/cell/
4705 F:      arch/powerpc/include/asm/cell*.h
4706 F:      arch/powerpc/include/asm/spu*.h
4707 F:      arch/powerpc/include/uapi/asm/spu*.h
4708 F:      arch/powerpc/platforms/cell/
4709
4710 CELLWISE CW2015 BATTERY DRIVER
4711 M:      Tobias Schrammm <t.schramm@manjaro.org>
4712 S:      Maintained
4713 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4714 F:      drivers/power/supply/cw2015_battery.c
4715
4716 CEPH COMMON CODE (LIBCEPH)
4717 M:      Ilya Dryomov <idryomov@gmail.com>
4718 M:      Xiubo Li <xiubli@redhat.com>
4719 R:      Jeff Layton <jlayton@kernel.org>
4720 L:      ceph-devel@vger.kernel.org
4721 S:      Supported
4722 W:      http://ceph.com/
4723 T:      git https://github.com/ceph/ceph-client.git
4724 F:      include/linux/ceph/
4725 F:      include/linux/crush/
4726 F:      net/ceph/
4727
4728 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4729 M:      Xiubo Li <xiubli@redhat.com>
4730 M:      Ilya Dryomov <idryomov@gmail.com>
4731 R:      Jeff Layton <jlayton@kernel.org>
4732 L:      ceph-devel@vger.kernel.org
4733 S:      Supported
4734 W:      http://ceph.com/
4735 T:      git https://github.com/ceph/ceph-client.git
4736 F:      Documentation/filesystems/ceph.rst
4737 F:      fs/ceph/
4738
4739 CERTIFICATE HANDLING
4740 M:      David Howells <dhowells@redhat.com>
4741 M:      David Woodhouse <dwmw2@infradead.org>
4742 L:      keyrings@vger.kernel.org
4743 S:      Maintained
4744 F:      Documentation/admin-guide/module-signing.rst
4745 F:      certs/
4746 F:      scripts/sign-file.c
4747 F:      tools/certs/
4748
4749 CFAG12864B LCD DRIVER
4750 M:      Miguel Ojeda <ojeda@kernel.org>
4751 S:      Maintained
4752 F:      drivers/auxdisplay/cfag12864b.c
4753 F:      include/linux/cfag12864b.h
4754
4755 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4756 M:      Miguel Ojeda <ojeda@kernel.org>
4757 S:      Maintained
4758 F:      drivers/auxdisplay/cfag12864bfb.c
4759 F:      include/linux/cfag12864b.h
4760
4761 CHAR and MISC DRIVERS
4762 M:      Arnd Bergmann <arnd@arndb.de>
4763 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4764 S:      Supported
4765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4766 F:      drivers/char/
4767 F:      drivers/misc/
4768 F:      include/linux/miscdevice.h
4769 X:      drivers/char/agp/
4770 X:      drivers/char/hw_random/
4771 X:      drivers/char/ipmi/
4772 X:      drivers/char/random.c
4773 X:      drivers/char/tpm/
4774
4775 CHECKPATCH
4776 M:      Andy Whitcroft <apw@canonical.com>
4777 M:      Joe Perches <joe@perches.com>
4778 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4779 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4780 S:      Maintained
4781 F:      scripts/checkpatch.pl
4782
4783 CHECKPATCH DOCUMENTATION
4784 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4785 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4786 R:      Joe Perches <joe@perches.com>
4787 S:      Maintained
4788 F:      Documentation/dev-tools/checkpatch.rst
4789
4790 CHINESE DOCUMENTATION
4791 M:      Alex Shi <alexs@kernel.org>
4792 M:      Yanteng Si <siyanteng@loongson.cn>
4793 S:      Maintained
4794 F:      Documentation/translations/zh_CN/
4795
4796 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4797 M:      Peter Chen <peter.chen@kernel.org>
4798 L:      linux-usb@vger.kernel.org
4799 S:      Maintained
4800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4801 F:      drivers/usb/chipidea/
4802
4803 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4804 M:      Hans de Goede <hdegoede@redhat.com>
4805 L:      linux-input@vger.kernel.org
4806 S:      Maintained
4807 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4808 F:      drivers/input/touchscreen/chipone_icn8318.c
4809
4810 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4811 M:      Hans de Goede <hdegoede@redhat.com>
4812 L:      linux-input@vger.kernel.org
4813 S:      Maintained
4814 F:      drivers/input/touchscreen/chipone_icn8505.c
4815
4816 CHROME HARDWARE PLATFORM SUPPORT
4817 M:      Benson Leung <bleung@chromium.org>
4818 L:      chrome-platform@lists.linux.dev
4819 S:      Maintained
4820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4821 F:      drivers/platform/chrome/
4822
4823 CHROMEOS EC CODEC DRIVER
4824 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4825 M:      Tzung-Bi Shih <tzungbi@kernel.org>
4826 R:      Guenter Roeck <groeck@chromium.org>
4827 L:      chrome-platform@lists.linux.dev
4828 S:      Maintained
4829 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4830 F:      sound/soc/codecs/cros_ec_codec.*
4831
4832 CHROMEOS EC UART DRIVER
4833 M:      Bhanu Prakash Maiya <bhanumaiya@chromium.org>
4834 R:      Benson Leung <bleung@chromium.org>
4835 R:      Tzung-Bi Shih <tzungbi@kernel.org>
4836 S:      Maintained
4837 F:      drivers/platform/chrome/cros_ec_uart.c
4838
4839 CHROMEOS EC SUBDRIVERS
4840 M:      Benson Leung <bleung@chromium.org>
4841 R:      Guenter Roeck <groeck@chromium.org>
4842 L:      chrome-platform@lists.linux.dev
4843 S:      Maintained
4844 F:      drivers/power/supply/cros_usbpd-charger.c
4845 N:      cros_ec
4846 N:      cros-ec
4847
4848 CHROMEOS EC USB TYPE-C DRIVER
4849 M:      Prashant Malani <pmalani@chromium.org>
4850 L:      chrome-platform@lists.linux.dev
4851 S:      Maintained
4852 F:      drivers/platform/chrome/cros_ec_typec.*
4853 F:      drivers/platform/chrome/cros_typec_switch.c
4854 F:      drivers/platform/chrome/cros_typec_vdm.*
4855
4856 CHROMEOS EC USB PD NOTIFY DRIVER
4857 M:      Prashant Malani <pmalani@chromium.org>
4858 L:      chrome-platform@lists.linux.dev
4859 S:      Maintained
4860 F:      drivers/platform/chrome/cros_usbpd_notify.c
4861 F:      include/linux/platform_data/cros_usbpd_notify.h
4862
4863 CHROMEOS HPS DRIVER
4864 M:      Dan Callaghan <dcallagh@chromium.org>
4865 R:      Sami Kyöstilä <skyostil@chromium.org>
4866 S:      Maintained
4867 F:      drivers/platform/chrome/cros_hps_i2c.c
4868
4869 CHRONTEL CH7322 CEC DRIVER
4870 M:      Joe Tessler <jrt@google.com>
4871 L:      linux-media@vger.kernel.org
4872 S:      Maintained
4873 T:      git git://linuxtv.org/media_tree.git
4874 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4875 F:      drivers/media/cec/i2c/ch7322.c
4876
4877 CIRRUS LOGIC AUDIO CODEC DRIVERS
4878 M:      James Schulman <james.schulman@cirrus.com>
4879 M:      David Rhodes <david.rhodes@cirrus.com>
4880 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4881 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4882 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4883 L:      patches@opensource.cirrus.com
4884 S:      Maintained
4885 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4886 F:      include/dt-bindings/sound/cs*
4887 F:      sound/pci/hda/cs*
4888 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4889 F:      sound/soc/codecs/cs*
4890
4891 CIRRUS LOGIC DSP FIRMWARE DRIVER
4892 M:      Simon Trimmer <simont@opensource.cirrus.com>
4893 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4894 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4895 L:      patches@opensource.cirrus.com
4896 S:      Supported
4897 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4898 T:      git https://github.com/CirrusLogic/linux-drivers.git
4899 F:      drivers/firmware/cirrus/*
4900 F:      include/linux/firmware/cirrus/*
4901
4902 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4903 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4904 L:      netdev@vger.kernel.org
4905 S:      Maintained
4906 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4907
4908 CIRRUS LOGIC LOCHNAGAR DRIVER
4909 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4910 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4911 L:      patches@opensource.cirrus.com
4912 S:      Supported
4913 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4914 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4915 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4916 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4917 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4918 F:      Documentation/hwmon/lochnagar.rst
4919 F:      drivers/clk/clk-lochnagar.c
4920 F:      drivers/hwmon/lochnagar-hwmon.c
4921 F:      drivers/mfd/lochnagar-i2c.c
4922 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4923 F:      drivers/regulator/lochnagar-regulator.c
4924 F:      include/dt-bindings/clock/lochnagar.h
4925 F:      include/dt-bindings/pinctrl/lochnagar.h
4926 F:      include/linux/mfd/lochnagar*
4927 F:      sound/soc/codecs/lochnagar-sc.c
4928
4929 CIRRUS LOGIC MADERA CODEC DRIVERS
4930 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4931 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4932 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4933 L:      patches@opensource.cirrus.com
4934 S:      Supported
4935 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4936 T:      git https://github.com/CirrusLogic/linux-drivers.git
4937 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4938 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4939 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4940 F:      drivers/gpio/gpio-madera*
4941 F:      drivers/irqchip/irq-madera*
4942 F:      drivers/mfd/cs47l*
4943 F:      drivers/mfd/madera*
4944 F:      drivers/pinctrl/cirrus/*
4945 F:      include/dt-bindings/sound/madera*
4946 F:      include/linux/irqchip/irq-madera*
4947 F:      include/linux/mfd/madera/*
4948 F:      include/sound/madera*
4949 F:      sound/soc/codecs/cs47l*
4950 F:      sound/soc/codecs/madera*
4951
4952 CISCO FCOE HBA DRIVER
4953 M:      Satish Kharat <satishkh@cisco.com>
4954 M:      Sesidhar Baddela <sebaddel@cisco.com>
4955 M:      Karan Tilak Kumar <kartilak@cisco.com>
4956 L:      linux-scsi@vger.kernel.org
4957 S:      Supported
4958 F:      drivers/scsi/fnic/
4959
4960 CISCO SCSI HBA DRIVER
4961 M:      Karan Tilak Kumar <kartilak@cisco.com>
4962 M:      Sesidhar Baddela <sebaddel@cisco.com>
4963 L:      linux-scsi@vger.kernel.org
4964 S:      Supported
4965 F:      drivers/scsi/snic/
4966
4967 CISCO VIC ETHERNET NIC DRIVER
4968 M:      Christian Benvenuti <benve@cisco.com>
4969 M:      Satish Kharat <satishkh@cisco.com>
4970 S:      Supported
4971 F:      drivers/net/ethernet/cisco/enic/
4972
4973 CISCO VIC LOW LATENCY NIC DRIVER
4974 M:      Christian Benvenuti <benve@cisco.com>
4975 M:      Nelson Escobar <neescoba@cisco.com>
4976 S:      Supported
4977 F:      drivers/infiniband/hw/usnic/
4978
4979 CLANG-FORMAT FILE
4980 M:      Miguel Ojeda <ojeda@kernel.org>
4981 S:      Maintained
4982 F:      .clang-format
4983
4984 CLANG/LLVM BUILD SUPPORT
4985 M:      Nathan Chancellor <nathan@kernel.org>
4986 M:      Nick Desaulniers <ndesaulniers@google.com>
4987 R:      Tom Rix <trix@redhat.com>
4988 L:      llvm@lists.linux.dev
4989 S:      Supported
4990 W:      https://clangbuiltlinux.github.io/
4991 B:      https://github.com/ClangBuiltLinux/linux/issues
4992 C:      irc://irc.libera.chat/clangbuiltlinux
4993 F:      Documentation/kbuild/llvm.rst
4994 F:      include/linux/compiler-clang.h
4995 F:      scripts/Makefile.clang
4996 F:      scripts/clang-tools/
4997 K:      \b(?i:clang|llvm)\b
4998
4999 CLANG CONTROL FLOW INTEGRITY SUPPORT
5000 M:      Sami Tolvanen <samitolvanen@google.com>
5001 M:      Kees Cook <keescook@chromium.org>
5002 R:      Nathan Chancellor <nathan@kernel.org>
5003 R:      Nick Desaulniers <ndesaulniers@google.com>
5004 L:      llvm@lists.linux.dev
5005 S:      Supported
5006 B:      https://github.com/ClangBuiltLinux/linux/issues
5007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5008 F:      include/linux/cfi.h
5009 F:      kernel/cfi.c
5010
5011 CLK API
5012 M:      Russell King <linux@armlinux.org.uk>
5013 L:      linux-clk@vger.kernel.org
5014 S:      Maintained
5015 F:      include/linux/clk.h
5016
5017 CLOCKSOURCE, CLOCKEVENT DRIVERS
5018 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5019 M:      Thomas Gleixner <tglx@linutronix.de>
5020 L:      linux-kernel@vger.kernel.org
5021 S:      Supported
5022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5023 F:      Documentation/devicetree/bindings/timer/
5024 F:      drivers/clocksource/
5025
5026 CMPC ACPI DRIVER
5027 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5028 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5029 L:      platform-driver-x86@vger.kernel.org
5030 S:      Supported
5031 F:      drivers/platform/x86/classmate-laptop.c
5032
5033 COBALT MEDIA DRIVER
5034 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5035 L:      linux-media@vger.kernel.org
5036 S:      Supported
5037 W:      https://linuxtv.org
5038 T:      git git://linuxtv.org/media_tree.git
5039 F:      drivers/media/pci/cobalt/
5040
5041 COCCINELLE/Semantic Patches (SmPL)
5042 M:      Julia Lawall <Julia.Lawall@inria.fr>
5043 M:      Nicolas Palix <nicolas.palix@imag.fr>
5044 L:      cocci@inria.fr (moderated for non-subscribers)
5045 S:      Supported
5046 W:      https://coccinelle.gitlabpages.inria.fr/website/
5047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5048 F:      Documentation/dev-tools/coccinelle.rst
5049 F:      scripts/coccicheck
5050 F:      scripts/coccinelle/
5051
5052 CODA FILE SYSTEM
5053 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5054 M:      coda@cs.cmu.edu
5055 L:      codalist@coda.cs.cmu.edu
5056 S:      Maintained
5057 W:      http://www.coda.cs.cmu.edu/
5058 F:      Documentation/filesystems/coda.rst
5059 F:      fs/coda/
5060 F:      include/linux/coda*.h
5061 F:      include/uapi/linux/coda*.h
5062
5063 CODA V4L2 MEM2MEM DRIVER
5064 M:      Philipp Zabel <p.zabel@pengutronix.de>
5065 L:      linux-media@vger.kernel.org
5066 S:      Maintained
5067 F:      Documentation/devicetree/bindings/media/coda.yaml
5068 F:      drivers/media/platform/chips-media/
5069
5070 CODE OF CONDUCT
5071 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5072 S:      Supported
5073 F:      Documentation/process/code-of-conduct-interpretation.rst
5074 F:      Documentation/process/code-of-conduct.rst
5075
5076 COMEDI DRIVERS
5077 M:      Ian Abbott <abbotti@mev.co.uk>
5078 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5079 S:      Odd Fixes
5080 F:      drivers/comedi/
5081 F:      include/linux/comedi/
5082 F:      include/uapi/linux/comedi.h
5083
5084 COMMON CLK FRAMEWORK
5085 M:      Michael Turquette <mturquette@baylibre.com>
5086 M:      Stephen Boyd <sboyd@kernel.org>
5087 L:      linux-clk@vger.kernel.org
5088 S:      Maintained
5089 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5091 F:      Documentation/devicetree/bindings/clock/
5092 F:      drivers/clk/
5093 F:      include/dt-bindings/clock/
5094 F:      include/linux/clk-pr*
5095 F:      include/linux/clk/
5096 F:      include/linux/of_clk.h
5097 X:      drivers/clk/clkdev.c
5098
5099 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5100 M:      Steve French <sfrench@samba.org>
5101 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5102 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5103 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5104 R:      Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5105 L:      linux-cifs@vger.kernel.org
5106 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5107 S:      Supported
5108 W:      https://wiki.samba.org/index.php/LinuxCIFS
5109 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5110 F:      Documentation/admin-guide/cifs/
5111 F:      fs/cifs/
5112 F:      fs/smbfs_common/
5113 F:      include/uapi/linux/cifs
5114
5115 COMPACTPCI HOTPLUG CORE
5116 M:      Scott Murray <scott@spiteful.org>
5117 L:      linux-pci@vger.kernel.org
5118 S:      Maintained
5119 F:      drivers/pci/hotplug/cpci_hotplug*
5120
5121 COMPACTPCI HOTPLUG GENERIC DRIVER
5122 M:      Scott Murray <scott@spiteful.org>
5123 L:      linux-pci@vger.kernel.org
5124 S:      Maintained
5125 F:      drivers/pci/hotplug/cpcihp_generic.c
5126
5127 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5128 M:      Scott Murray <scott@spiteful.org>
5129 L:      linux-pci@vger.kernel.org
5130 S:      Maintained
5131 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5132
5133 COMPAL LAPTOP SUPPORT
5134 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5135 L:      platform-driver-x86@vger.kernel.org
5136 S:      Maintained
5137 F:      drivers/platform/x86/compal-laptop.c
5138
5139 COMPILER ATTRIBUTES
5140 M:      Miguel Ojeda <ojeda@kernel.org>
5141 R:      Nick Desaulniers <ndesaulniers@google.com>
5142 S:      Maintained
5143 F:      include/linux/compiler_attributes.h
5144
5145 COMPUTE EXPRESS LINK (CXL)
5146 M:      Alison Schofield <alison.schofield@intel.com>
5147 M:      Vishal Verma <vishal.l.verma@intel.com>
5148 M:      Ira Weiny <ira.weiny@intel.com>
5149 M:      Ben Widawsky <bwidawsk@kernel.org>
5150 M:      Dan Williams <dan.j.williams@intel.com>
5151 L:      linux-cxl@vger.kernel.org
5152 S:      Maintained
5153 F:      drivers/cxl/
5154 F:      include/uapi/linux/cxl_mem.h
5155
5156 CONEXANT ACCESSRUNNER USB DRIVER
5157 L:      accessrunner-general@lists.sourceforge.net
5158 S:      Orphan
5159 W:      http://accessrunner.sourceforge.net/
5160 F:      drivers/usb/atm/cxacru.c
5161
5162 CONFIGFS
5163 M:      Joel Becker <jlbec@evilplan.org>
5164 M:      Christoph Hellwig <hch@lst.de>
5165 S:      Supported
5166 T:      git git://git.infradead.org/users/hch/configfs.git
5167 F:      fs/configfs/
5168 F:      include/linux/configfs.h
5169 F:      samples/configfs/
5170
5171 CONSOLE SUBSYSTEM
5172 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5173 S:      Supported
5174 F:      drivers/video/console/
5175 F:      include/linux/console*
5176
5177 CONTEXT TRACKING
5178 M:      Frederic Weisbecker <frederic@kernel.org>
5179 M:      "Paul E. McKenney" <paulmck@kernel.org>
5180 S:      Maintained
5181 F:      kernel/context_tracking.c
5182 F:      include/linux/context_tracking*
5183
5184 CONTROL GROUP (CGROUP)
5185 M:      Tejun Heo <tj@kernel.org>
5186 M:      Zefan Li <lizefan.x@bytedance.com>
5187 M:      Johannes Weiner <hannes@cmpxchg.org>
5188 L:      cgroups@vger.kernel.org
5189 S:      Maintained
5190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5191 F:      Documentation/admin-guide/cgroup-v1/
5192 F:      Documentation/admin-guide/cgroup-v2.rst
5193 F:      include/linux/cgroup*
5194 F:      kernel/cgroup/
5195 F:      tools/testing/selftests/cgroup/
5196
5197 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5198 M:      Tejun Heo <tj@kernel.org>
5199 M:      Josef Bacik <josef@toxicpanda.com>
5200 M:      Jens Axboe <axboe@kernel.dk>
5201 L:      cgroups@vger.kernel.org
5202 L:      linux-block@vger.kernel.org
5203 T:      git git://git.kernel.dk/linux-block
5204 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5205 F:      block/bfq-cgroup.c
5206 F:      block/blk-cgroup.c
5207 F:      block/blk-iocost.c
5208 F:      block/blk-iolatency.c
5209 F:      block/blk-throttle.c
5210 F:      include/linux/blk-cgroup.h
5211
5212 CONTROL GROUP - CPUSET
5213 M:      Waiman Long <longman@redhat.com>
5214 M:      Zefan Li <lizefan.x@bytedance.com>
5215 L:      cgroups@vger.kernel.org
5216 S:      Maintained
5217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5218 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5219 F:      include/linux/cpuset.h
5220 F:      kernel/cgroup/cpuset.c
5221
5222 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5223 M:      Johannes Weiner <hannes@cmpxchg.org>
5224 M:      Michal Hocko <mhocko@kernel.org>
5225 M:      Roman Gushchin <roman.gushchin@linux.dev>
5226 M:      Shakeel Butt <shakeelb@google.com>
5227 R:      Muchun Song <muchun.song@linux.dev>
5228 L:      cgroups@vger.kernel.org
5229 L:      linux-mm@kvack.org
5230 S:      Maintained
5231 F:      mm/memcontrol.c
5232 F:      mm/swap_cgroup.c
5233 F:      tools/testing/selftests/cgroup/memcg_protection.m
5234 F:      tools/testing/selftests/cgroup/test_kmem.c
5235 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5236
5237 CORETEMP HARDWARE MONITORING DRIVER
5238 M:      Fenghua Yu <fenghua.yu@intel.com>
5239 L:      linux-hwmon@vger.kernel.org
5240 S:      Maintained
5241 F:      Documentation/hwmon/coretemp.rst
5242 F:      drivers/hwmon/coretemp.c
5243
5244 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5245 M:      Marius Zachmann <mail@mariuszachmann.de>
5246 L:      linux-hwmon@vger.kernel.org
5247 S:      Maintained
5248 F:      drivers/hwmon/corsair-cpro.c
5249
5250 CORSAIR-PSU HARDWARE MONITOR DRIVER
5251 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5252 L:      linux-hwmon@vger.kernel.org
5253 S:      Maintained
5254 F:      Documentation/hwmon/corsair-psu.rst
5255 F:      drivers/hwmon/corsair-psu.c
5256
5257 COUNTER SUBSYSTEM
5258 M:      William Breathitt Gray <william.gray@linaro.org>
5259 L:      linux-iio@vger.kernel.org
5260 S:      Maintained
5261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5262 F:      Documentation/ABI/testing/sysfs-bus-counter
5263 F:      Documentation/driver-api/generic-counter.rst
5264 F:      drivers/counter/
5265 F:      include/linux/counter.h
5266 F:      include/uapi/linux/counter.h
5267 F:      tools/counter/
5268
5269 CP2615 I2C DRIVER
5270 M:      Bence Csókás <bence98@sch.bme.hu>
5271 S:      Maintained
5272 F:      drivers/i2c/busses/i2c-cp2615.c
5273
5274 CPMAC ETHERNET DRIVER
5275 M:      Florian Fainelli <f.fainelli@gmail.com>
5276 L:      netdev@vger.kernel.org
5277 S:      Maintained
5278 F:      drivers/net/ethernet/ti/cpmac.c
5279
5280 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5281 M:      Viresh Kumar <viresh.kumar@linaro.org>
5282 M:      Sudeep Holla <sudeep.holla@arm.com>
5283 L:      linux-pm@vger.kernel.org
5284 S:      Maintained
5285 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5286 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5287
5288 CPU FREQUENCY SCALING FRAMEWORK
5289 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5290 M:      Viresh Kumar <viresh.kumar@linaro.org>
5291 L:      linux-pm@vger.kernel.org
5292 S:      Maintained
5293 B:      https://bugzilla.kernel.org
5294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5296 F:      Documentation/admin-guide/pm/cpufreq.rst
5297 F:      Documentation/admin-guide/pm/intel_pstate.rst
5298 F:      Documentation/cpu-freq/
5299 F:      Documentation/devicetree/bindings/cpufreq/
5300 F:      drivers/cpufreq/
5301 F:      include/linux/cpufreq.h
5302 F:      include/linux/sched/cpufreq.h
5303 F:      kernel/sched/cpufreq*.c
5304 F:      tools/testing/selftests/cpufreq/
5305
5306 CPU IDLE TIME MANAGEMENT FRAMEWORK
5307 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5308 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5309 L:      linux-pm@vger.kernel.org
5310 S:      Maintained
5311 B:      https://bugzilla.kernel.org
5312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5313 F:      Documentation/admin-guide/pm/cpuidle.rst
5314 F:      Documentation/driver-api/pm/cpuidle.rst
5315 F:      drivers/cpuidle/
5316 F:      include/linux/cpuidle.h
5317
5318 CPU POWER MONITORING SUBSYSTEM
5319 M:      Thomas Renninger <trenn@suse.com>
5320 M:      Shuah Khan <shuah@kernel.org>
5321 M:      Shuah Khan <skhan@linuxfoundation.org>
5322 L:      linux-pm@vger.kernel.org
5323 S:      Maintained
5324 F:      tools/power/cpupower/
5325
5326 CPUID/MSR DRIVER
5327 M:      "H. Peter Anvin" <hpa@zytor.com>
5328 S:      Maintained
5329 F:      arch/x86/kernel/cpuid.c
5330 F:      arch/x86/kernel/msr.c
5331
5332 CPUIDLE DRIVER - ARM BIG LITTLE
5333 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5334 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5335 L:      linux-pm@vger.kernel.org
5336 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5337 S:      Maintained
5338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5339 F:      drivers/cpuidle/cpuidle-big_little.c
5340
5341 CPUIDLE DRIVER - ARM EXYNOS
5342 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5343 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5344 M:      Kukjin Kim <kgene@kernel.org>
5345 L:      linux-pm@vger.kernel.org
5346 L:      linux-samsung-soc@vger.kernel.org
5347 S:      Supported
5348 F:      arch/arm/mach-exynos/pm.c
5349 F:      drivers/cpuidle/cpuidle-exynos.c
5350 F:      include/linux/platform_data/cpuidle-exynos.h
5351
5352 CPUIDLE DRIVER - ARM PSCI
5353 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5354 M:      Sudeep Holla <sudeep.holla@arm.com>
5355 L:      linux-pm@vger.kernel.org
5356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5357 S:      Supported
5358 F:      drivers/cpuidle/cpuidle-psci.c
5359
5360 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5361 M:      Ulf Hansson <ulf.hansson@linaro.org>
5362 L:      linux-pm@vger.kernel.org
5363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5364 S:      Supported
5365 F:      drivers/cpuidle/cpuidle-psci.h
5366 F:      drivers/cpuidle/cpuidle-psci-domain.c
5367
5368 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5369 M:      Ulf Hansson <ulf.hansson@linaro.org>
5370 L:      linux-pm@vger.kernel.org
5371 S:      Supported
5372 F:      drivers/cpuidle/dt_idle_genpd.c
5373 F:      drivers/cpuidle/dt_idle_genpd.h
5374
5375 CPUIDLE DRIVER - RISC-V SBI
5376 M:      Anup Patel <anup@brainfault.org>
5377 L:      linux-pm@vger.kernel.org
5378 L:      linux-riscv@lists.infradead.org
5379 S:      Maintained
5380 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5381
5382 CRAMFS FILESYSTEM
5383 M:      Nicolas Pitre <nico@fluxnic.net>
5384 S:      Maintained
5385 F:      Documentation/filesystems/cramfs.rst
5386 F:      fs/cramfs/
5387
5388 CREATIVE SB0540
5389 M:      Bastien Nocera <hadess@hadess.net>
5390 L:      linux-input@vger.kernel.org
5391 S:      Maintained
5392 F:      drivers/hid/hid-creative-sb0540.c
5393
5394 CRYPTO API
5395 M:      Herbert Xu <herbert@gondor.apana.org.au>
5396 M:      "David S. Miller" <davem@davemloft.net>
5397 L:      linux-crypto@vger.kernel.org
5398 S:      Maintained
5399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5401 F:      Documentation/crypto/
5402 F:      Documentation/devicetree/bindings/crypto/
5403 F:      arch/*/crypto/
5404 F:      crypto/
5405 F:      drivers/crypto/
5406 F:      include/crypto/
5407 F:      include/linux/crypto*
5408 F:      lib/crypto/
5409
5410 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5411 M:      Neil Horman <nhorman@tuxdriver.com>
5412 L:      linux-crypto@vger.kernel.org
5413 S:      Maintained
5414 F:      crypto/ansi_cprng.c
5415 F:      crypto/rng.c
5416
5417 CS3308 MEDIA DRIVER
5418 M:      Hans Verkuil <hverkuil@xs4all.nl>
5419 L:      linux-media@vger.kernel.org
5420 S:      Odd Fixes
5421 W:      http://linuxtv.org
5422 T:      git git://linuxtv.org/media_tree.git
5423 F:      drivers/media/i2c/cs3308.c
5424
5425 CS5535 Audio ALSA driver
5426 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5427 S:      Maintained
5428 F:      sound/pci/cs5535audio/
5429
5430 CTU CAN FD DRIVER
5431 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5432 M:      Ondrej Ille <ondrej.ille@gmail.com>
5433 L:      linux-can@vger.kernel.org
5434 S:      Maintained
5435 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5436 F:      drivers/net/can/ctucanfd/
5437
5438 CW1200 WLAN driver
5439 M:      Solomon Peachy <pizza@shaftnet.org>
5440 S:      Maintained
5441 F:      drivers/net/wireless/st/cw1200/
5442
5443 CX18 VIDEO4LINUX DRIVER
5444 M:      Andy Walls <awalls@md.metrocast.net>
5445 L:      linux-media@vger.kernel.org
5446 S:      Maintained
5447 W:      https://linuxtv.org
5448 T:      git git://linuxtv.org/media_tree.git
5449 F:      drivers/media/pci/cx18/
5450 F:      include/uapi/linux/ivtv*
5451
5452 CX2341X MPEG ENCODER HELPER MODULE
5453 M:      Hans Verkuil <hverkuil@xs4all.nl>
5454 L:      linux-media@vger.kernel.org
5455 S:      Maintained
5456 W:      https://linuxtv.org
5457 T:      git git://linuxtv.org/media_tree.git
5458 F:      drivers/media/common/cx2341x*
5459 F:      include/media/drv-intf/cx2341x.h
5460
5461 CX24120 MEDIA DRIVER
5462 M:      Jemma Denson <jdenson@gmail.com>
5463 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5464 L:      linux-media@vger.kernel.org
5465 S:      Maintained
5466 W:      https://linuxtv.org
5467 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5468 F:      drivers/media/dvb-frontends/cx24120*
5469
5470 CX88 VIDEO4LINUX DRIVER
5471 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5472 L:      linux-media@vger.kernel.org
5473 S:      Odd fixes
5474 W:      https://linuxtv.org
5475 T:      git git://linuxtv.org/media_tree.git
5476 F:      Documentation/driver-api/media/drivers/cx88*
5477 F:      drivers/media/pci/cx88/
5478
5479 CXD2820R MEDIA DRIVER
5480 M:      Antti Palosaari <crope@iki.fi>
5481 L:      linux-media@vger.kernel.org
5482 S:      Maintained
5483 W:      https://linuxtv.org
5484 W:      http://palosaari.fi/linux/
5485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5486 T:      git git://linuxtv.org/anttip/media_tree.git
5487 F:      drivers/media/dvb-frontends/cxd2820r*
5488
5489 CXGB3 ETHERNET DRIVER (CXGB3)
5490 M:      Raju Rangoju <rajur@chelsio.com>
5491 L:      netdev@vger.kernel.org
5492 S:      Supported
5493 W:      http://www.chelsio.com
5494 F:      drivers/net/ethernet/chelsio/cxgb3/
5495
5496 CXGB3 ISCSI DRIVER (CXGB3I)
5497 M:      Varun Prakash <varun@chelsio.com>
5498 L:      linux-scsi@vger.kernel.org
5499 S:      Supported
5500 W:      http://www.chelsio.com
5501 F:      drivers/scsi/cxgbi/cxgb3i
5502
5503 CXGB4 CRYPTO DRIVER (chcr)
5504 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5505 L:      linux-crypto@vger.kernel.org
5506 S:      Supported
5507 W:      http://www.chelsio.com
5508 F:      drivers/crypto/chelsio
5509
5510 CXGB4 INLINE CRYPTO DRIVER
5511 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5512 L:      netdev@vger.kernel.org
5513 S:      Supported
5514 W:      http://www.chelsio.com
5515 F:      drivers/net/ethernet/chelsio/inline_crypto/
5516
5517 CXGB4 ETHERNET DRIVER (CXGB4)
5518 M:      Raju Rangoju <rajur@chelsio.com>
5519 L:      netdev@vger.kernel.org
5520 S:      Supported
5521 W:      http://www.chelsio.com
5522 F:      drivers/net/ethernet/chelsio/cxgb4/
5523
5524 CXGB4 ISCSI DRIVER (CXGB4I)
5525 M:      Varun Prakash <varun@chelsio.com>
5526 L:      linux-scsi@vger.kernel.org
5527 S:      Supported
5528 W:      http://www.chelsio.com
5529 F:      drivers/scsi/cxgbi/cxgb4i
5530
5531 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5532 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5533 L:      linux-rdma@vger.kernel.org
5534 S:      Supported
5535 W:      http://www.openfabrics.org
5536 F:      drivers/infiniband/hw/cxgb4/
5537 F:      include/uapi/rdma/cxgb4-abi.h
5538
5539 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5540 M:      Raju Rangoju <rajur@chelsio.com>
5541 L:      netdev@vger.kernel.org
5542 S:      Supported
5543 W:      http://www.chelsio.com
5544 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5545
5546 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5547 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5548 M:      Andrew Donnellan <ajd@linux.ibm.com>
5549 L:      linuxppc-dev@lists.ozlabs.org
5550 S:      Supported
5551 F:      Documentation/ABI/testing/sysfs-class-cxl
5552 F:      Documentation/powerpc/cxl.rst
5553 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5554 F:      drivers/misc/cxl/
5555 F:      include/misc/cxl*
5556 F:      include/uapi/misc/cxl.h
5557
5558 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5559 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5560 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5561 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5562 L:      linux-scsi@vger.kernel.org
5563 S:      Supported
5564 F:      Documentation/powerpc/cxlflash.rst
5565 F:      drivers/scsi/cxlflash/
5566 F:      include/uapi/scsi/cxlflash_ioctl.h
5567
5568 CYBERPRO FB DRIVER
5569 M:      Russell King <linux@armlinux.org.uk>
5570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5571 S:      Maintained
5572 W:      http://www.armlinux.org.uk/
5573 F:      drivers/video/fbdev/cyber2000fb.*
5574
5575 CYCLADES PC300 DRIVER
5576 S:      Orphan
5577 F:      drivers/net/wan/pc300*
5578
5579 CYPRESS_FIRMWARE MEDIA DRIVER
5580 M:      Antti Palosaari <crope@iki.fi>
5581 L:      linux-media@vger.kernel.org
5582 S:      Maintained
5583 W:      https://linuxtv.org
5584 W:      http://palosaari.fi/linux/
5585 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5586 T:      git git://linuxtv.org/anttip/media_tree.git
5587 F:      drivers/media/common/cypress_firmware*
5588
5589 CYPRESS CY8C95X0 PINCTRL DRIVER
5590 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
5591 L:      linux-gpio@vger.kernel.org
5592 S:      Maintained
5593 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5594
5595 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5596 M:      Linus Walleij <linus.walleij@linaro.org>
5597 L:      linux-input@vger.kernel.org
5598 S:      Maintained
5599 F:      drivers/input/touchscreen/cy8ctma140.c
5600
5601 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5602 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5603 L:      linux-input@vger.kernel.org
5604 S:      Maintained
5605 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5606 F:      drivers/input/keyboard/cypress-sf.c
5607
5608 CYTTSP TOUCHSCREEN DRIVER
5609 M:      Linus Walleij <linus.walleij@linaro.org>
5610 L:      linux-input@vger.kernel.org
5611 S:      Maintained
5612 F:      drivers/input/touchscreen/cyttsp*
5613
5614 D-LINK DIR-685 TOUCHKEYS DRIVER
5615 M:      Linus Walleij <linus.walleij@linaro.org>
5616 L:      linux-input@vger.kernel.org
5617 S:      Supported
5618 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5619
5620 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5621 M:      Joshua Kinard <kumba@gentoo.org>
5622 S:      Maintained
5623 F:      drivers/rtc/rtc-ds1685.c
5624 F:      include/linux/rtc/ds1685.h
5625
5626 DAMA SLAVE for AX.25
5627 M:      Joerg Reuter <jreuter@yaina.de>
5628 L:      linux-hams@vger.kernel.org
5629 S:      Maintained
5630 W:      http://yaina.de/jreuter/
5631 W:      http://www.qsl.net/dl1bke/
5632 F:      net/ax25/af_ax25.c
5633 F:      net/ax25/ax25_dev.c
5634 F:      net/ax25/ax25_ds_*
5635 F:      net/ax25/ax25_in.c
5636 F:      net/ax25/ax25_out.c
5637 F:      net/ax25/ax25_timer.c
5638 F:      net/ax25/sysctl_net_ax25.c
5639
5640 DATA ACCESS MONITOR
5641 M:      SeongJae Park <sj@kernel.org>
5642 L:      damon@lists.linux.dev
5643 L:      linux-mm@kvack.org
5644 S:      Maintained
5645 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5646 F:      Documentation/admin-guide/mm/damon/
5647 F:      Documentation/mm/damon/
5648 F:      include/linux/damon.h
5649 F:      include/trace/events/damon.h
5650 F:      mm/damon/
5651 F:      tools/testing/selftests/damon/
5652
5653 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5654 L:      netdev@vger.kernel.org
5655 S:      Orphan
5656 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5657 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5658
5659 DC390/AM53C974 SCSI driver
5660 M:      Hannes Reinecke <hare@suse.com>
5661 L:      linux-scsi@vger.kernel.org
5662 S:      Maintained
5663 F:      drivers/scsi/am53c974.c
5664
5665 DC395x SCSI driver
5666 M:      Oliver Neukum <oliver@neukum.org>
5667 M:      Ali Akcaagac <aliakc@web.de>
5668 M:      Jamie Lenehan <lenehan@twibble.org>
5669 L:      dc395x@twibble.org
5670 S:      Maintained
5671 W:      http://twibble.org/dist/dc395x/
5672 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5673 F:      Documentation/scsi/dc395x.rst
5674 F:      drivers/scsi/dc395x.*
5675
5676 DCCP PROTOCOL
5677 L:      dccp@vger.kernel.org
5678 S:      Orphan
5679 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5680 F:      include/linux/dccp.h
5681 F:      include/linux/tfrc.h
5682 F:      include/uapi/linux/dccp.h
5683 F:      net/dccp/
5684
5685 DECSTATION PLATFORM SUPPORT
5686 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5687 L:      linux-mips@vger.kernel.org
5688 S:      Maintained
5689 W:      http://www.linux-mips.org/wiki/DECstation
5690 F:      arch/mips/dec/
5691 F:      arch/mips/include/asm/dec/
5692 F:      arch/mips/include/asm/mach-dec/
5693
5694 DEFXX FDDI NETWORK DRIVER
5695 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5696 S:      Maintained
5697 F:      drivers/net/fddi/defxx.*
5698
5699 DEFZA FDDI NETWORK DRIVER
5700 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5701 S:      Maintained
5702 F:      drivers/net/fddi/defza.*
5703
5704 DEINTERLACE DRIVERS FOR ALLWINNER H3
5705 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5706 L:      linux-media@vger.kernel.org
5707 S:      Maintained
5708 T:      git git://linuxtv.org/media_tree.git
5709 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5710 F:      drivers/media/platform/sunxi/sun8i-di/
5711
5712 DELL LAPTOP DRIVER
5713 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5714 M:      Pali Rohár <pali@kernel.org>
5715 L:      platform-driver-x86@vger.kernel.org
5716 S:      Maintained
5717 F:      drivers/platform/x86/dell/dell-laptop.c
5718
5719 DELL LAPTOP FREEFALL DRIVER
5720 M:      Pali Rohár <pali@kernel.org>
5721 S:      Maintained
5722 F:      drivers/platform/x86/dell/dell-smo8800.c
5723
5724 DELL LAPTOP RBTN DRIVER
5725 M:      Pali Rohár <pali@kernel.org>
5726 S:      Maintained
5727 F:      drivers/platform/x86/dell/dell-rbtn.*
5728
5729 DELL LAPTOP SMM DRIVER
5730 M:      Pali Rohár <pali@kernel.org>
5731 S:      Maintained
5732 F:      Documentation/ABI/obsolete/procfs-i8k
5733 F:      drivers/hwmon/dell-smm-hwmon.c
5734 F:      include/uapi/linux/i8k.h
5735
5736 DELL REMOTE BIOS UPDATE DRIVER
5737 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5738 L:      platform-driver-x86@vger.kernel.org
5739 S:      Maintained
5740 F:      drivers/platform/x86/dell/dell_rbu.c
5741
5742 DELL SMBIOS DRIVER
5743 M:      Pali Rohár <pali@kernel.org>
5744 L:      Dell.Client.Kernel@dell.com
5745 L:      platform-driver-x86@vger.kernel.org
5746 S:      Maintained
5747 F:      drivers/platform/x86/dell/dell-smbios.*
5748
5749 DELL SMBIOS SMM DRIVER
5750 L:      Dell.Client.Kernel@dell.com
5751 L:      platform-driver-x86@vger.kernel.org
5752 S:      Maintained
5753 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5754
5755 DELL SMBIOS WMI DRIVER
5756 L:      Dell.Client.Kernel@dell.com
5757 L:      platform-driver-x86@vger.kernel.org
5758 S:      Maintained
5759 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5760 F:      tools/wmi/dell-smbios-example.c
5761
5762 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5763 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5764 L:      platform-driver-x86@vger.kernel.org
5765 S:      Maintained
5766 F:      Documentation/driver-api/dcdbas.rst
5767 F:      drivers/platform/x86/dell/dcdbas.*
5768
5769 DELL WMI DESCRIPTOR DRIVER
5770 L:      Dell.Client.Kernel@dell.com
5771 S:      Maintained
5772 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5773
5774 DELL WMI DDV DRIVER
5775 M:      Armin Wolf <W_Armin@gmx.de>
5776 S:      Maintained
5777 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5778 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5779 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5780
5781 DELL WMI SYSMAN DRIVER
5782 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5783 L:      Dell.Client.Kernel@dell.com
5784 L:      platform-driver-x86@vger.kernel.org
5785 S:      Maintained
5786 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5787 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5788
5789 DELL WMI NOTIFICATIONS DRIVER
5790 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5791 M:      Pali Rohár <pali@kernel.org>
5792 S:      Maintained
5793 F:      drivers/platform/x86/dell/dell-wmi-base.c
5794
5795 DELL WMI HARDWARE PRIVACY SUPPORT
5796 M:      Perry Yuan <Perry.Yuan@dell.com>
5797 L:      Dell.Client.Kernel@dell.com
5798 L:      platform-driver-x86@vger.kernel.org
5799 S:      Maintained
5800 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5801
5802 DELTA ST MEDIA DRIVER
5803 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5804 L:      linux-media@vger.kernel.org
5805 S:      Supported
5806 W:      https://linuxtv.org
5807 T:      git git://linuxtv.org/media_tree.git
5808 F:      drivers/media/platform/st/sti/delta
5809
5810 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5811 M:      Zev Weiss <zev@bewilderbeest.net>
5812 L:      linux-hwmon@vger.kernel.org
5813 S:      Maintained
5814 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5815
5816 DELTA DPS920AB PSU DRIVER
5817 M:      Robert Marko <robert.marko@sartura.hr>
5818 L:      linux-hwmon@vger.kernel.org
5819 S:      Maintained
5820 F:      Documentation/hwmon/dps920ab.rst
5821 F:      drivers/hwmon/pmbus/dps920ab.c
5822
5823 DELTA NETWORKS TN48M CPLD DRIVERS
5824 M:      Robert Marko <robert.marko@sartura.hr>
5825 S:      Maintained
5826 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5827 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5828 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5829 F:      drivers/gpio/gpio-tn48m.c
5830 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5831
5832 DENALI NAND DRIVER
5833 L:      linux-mtd@lists.infradead.org
5834 S:      Orphan
5835 F:      drivers/mtd/nand/raw/denali*
5836
5837 DESIGNWARE EDMA CORE IP DRIVER
5838 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5839 L:      dmaengine@vger.kernel.org
5840 S:      Maintained
5841 F:      drivers/dma/dw-edma/
5842 F:      include/linux/dma/edma.h
5843
5844 DESIGNWARE XDATA IP DRIVER
5845 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5846 L:      linux-pci@vger.kernel.org
5847 S:      Maintained
5848 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5849 F:      drivers/misc/dw-xdata-pcie.c
5850
5851 DESIGNWARE USB2 DRD IP DRIVER
5852 M:      Minas Harutyunyan <hminas@synopsys.com>
5853 L:      linux-usb@vger.kernel.org
5854 S:      Maintained
5855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5856 F:      drivers/usb/dwc2/
5857
5858 DESIGNWARE USB3 DRD IP DRIVER
5859 M:      Thinh Nguyen <Thinh.Nguyen@synopsys.com>
5860 L:      linux-usb@vger.kernel.org
5861 S:      Maintained
5862 F:      drivers/usb/dwc3/
5863
5864 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5865 M:      Andreas Klinger <ak@it-klinger.de>
5866 L:      linux-iio@vger.kernel.org
5867 S:      Maintained
5868 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5869 F:      drivers/iio/proximity/srf*.c
5870
5871 DEVICE COREDUMP (DEV_COREDUMP)
5872 M:      Johannes Berg <johannes@sipsolutions.net>
5873 L:      linux-kernel@vger.kernel.org
5874 S:      Maintained
5875 F:      drivers/base/devcoredump.c
5876 F:      include/linux/devcoredump.h
5877
5878 DEVICE DEPENDENCY HELPER SCRIPT
5879 M:      Saravana Kannan <saravanak@google.com>
5880 L:      linux-kernel@vger.kernel.org
5881 S:      Maintained
5882 F:      scripts/dev-needs.sh
5883
5884 DEVICE DIRECT ACCESS (DAX)
5885 M:      Dan Williams <dan.j.williams@intel.com>
5886 M:      Vishal Verma <vishal.l.verma@intel.com>
5887 M:      Dave Jiang <dave.jiang@intel.com>
5888 L:      nvdimm@lists.linux.dev
5889 S:      Supported
5890 F:      drivers/dax/
5891
5892 DEVICE FREQUENCY (DEVFREQ)
5893 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5894 M:      Kyungmin Park <kyungmin.park@samsung.com>
5895 M:      Chanwoo Choi <cw00.choi@samsung.com>
5896 L:      linux-pm@vger.kernel.org
5897 S:      Maintained
5898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5899 F:      Documentation/devicetree/bindings/devfreq/
5900 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5901 F:      drivers/devfreq/
5902 F:      include/linux/devfreq.h
5903 F:      include/trace/events/devfreq.h
5904
5905 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5906 M:      Chanwoo Choi <cw00.choi@samsung.com>
5907 L:      linux-pm@vger.kernel.org
5908 S:      Supported
5909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5910 F:      Documentation/devicetree/bindings/devfreq/event/
5911 F:      drivers/devfreq/devfreq-event.c
5912 F:      drivers/devfreq/event/
5913 F:      include/dt-bindings/pmu/exynos_ppmu.h
5914 F:      include/linux/devfreq-event.h
5915
5916 DEVICE NUMBER REGISTRY
5917 M:      Torben Mathiasen <device@lanana.org>
5918 S:      Maintained
5919 W:      http://lanana.org/docs/device-list/index.html
5920
5921 DEVICE RESOURCE MANAGEMENT HELPERS
5922 M:      Hans de Goede <hdegoede@redhat.com>
5923 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5924 S:      Maintained
5925 F:      include/linux/devm-helpers.h
5926
5927 DEVICE-MAPPER  (LVM)
5928 M:      Alasdair Kergon <agk@redhat.com>
5929 M:      Mike Snitzer <snitzer@kernel.org>
5930 M:      dm-devel@redhat.com
5931 L:      dm-devel@redhat.com
5932 S:      Maintained
5933 W:      http://sources.redhat.com/dm
5934 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5936 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5937 F:      Documentation/admin-guide/device-mapper/
5938 F:      drivers/md/Kconfig
5939 F:      drivers/md/Makefile
5940 F:      drivers/md/dm*
5941 F:      drivers/md/persistent-data/
5942 F:      include/linux/device-mapper.h
5943 F:      include/linux/dm-*.h
5944 F:      include/uapi/linux/dm-*.h
5945
5946 DEVLINK
5947 M:      Jiri Pirko <jiri@nvidia.com>
5948 L:      netdev@vger.kernel.org
5949 S:      Supported
5950 F:      Documentation/networking/devlink
5951 F:      include/net/devlink.h
5952 F:      include/uapi/linux/devlink.h
5953 F:      net/devlink/
5954
5955 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5956 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5957 L:      kernel@dh-electronics.com
5958 S:      Maintained
5959 F:      arch/arm/boot/dts/imx6*-dhcom-*
5960 F:      arch/arm/boot/dts/imx6*-dhcor-*
5961
5962 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5963 M:      Marek Vasut <marex@denx.de>
5964 L:      kernel@dh-electronics.com
5965 S:      Maintained
5966 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5967 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5968
5969 DIALOG SEMICONDUCTOR DRIVERS
5970 M:      Support Opensource <support.opensource@diasemi.com>
5971 S:      Supported
5972 W:      http://www.dialog-semiconductor.com/products
5973 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5974 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5975 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5976 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
5977 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5978 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5979 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5980 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5981 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5982 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5983 F:      Documentation/hwmon/da90??.rst
5984 F:      drivers/gpio/gpio-da90??.c
5985 F:      drivers/hwmon/da90??-hwmon.c
5986 F:      drivers/iio/adc/da91??-*.c
5987 F:      drivers/input/misc/da72??.[ch]
5988 F:      drivers/input/misc/da90??_onkey.c
5989 F:      drivers/input/touchscreen/da9052_tsi.c
5990 F:      drivers/leds/leds-da90??.c
5991 F:      drivers/mfd/da903x.c
5992 F:      drivers/mfd/da90??-*.c
5993 F:      drivers/mfd/da91??-*.c
5994 F:      drivers/pinctrl/pinctrl-da90??.c
5995 F:      drivers/power/supply/da9052-battery.c
5996 F:      drivers/power/supply/da91??-*.c
5997 F:      drivers/regulator/da9???-regulator.[ch]
5998 F:      drivers/regulator/slg51000-regulator.[ch]
5999 F:      drivers/rtc/rtc-da90??.c
6000 F:      drivers/thermal/da90??-thermal.c
6001 F:      drivers/video/backlight/da90??_bl.c
6002 F:      drivers/watchdog/da90??_wdt.c
6003 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6004 F:      include/linux/mfd/da903x.h
6005 F:      include/linux/mfd/da9052/
6006 F:      include/linux/mfd/da9055/
6007 F:      include/linux/mfd/da9062/
6008 F:      include/linux/mfd/da9063/
6009 F:      include/linux/mfd/da9150/
6010 F:      include/linux/regulator/da9211.h
6011 F:      include/sound/da[79]*.h
6012 F:      sound/soc/codecs/da[79]*.[ch]
6013
6014 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6015 M:      William Breathitt Gray <william.gray@linaro.org>
6016 L:      linux-gpio@vger.kernel.org
6017 S:      Maintained
6018 F:      drivers/gpio/gpio-gpio-mm.c
6019
6020 DIOLAN U2C-12 I2C DRIVER
6021 M:      Guenter Roeck <linux@roeck-us.net>
6022 L:      linux-i2c@vger.kernel.org
6023 S:      Maintained
6024 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6025
6026 DIRECTORY NOTIFICATION (DNOTIFY)
6027 M:      Jan Kara <jack@suse.cz>
6028 R:      Amir Goldstein <amir73il@gmail.com>
6029 L:      linux-fsdevel@vger.kernel.org
6030 S:      Maintained
6031 F:      Documentation/filesystems/dnotify.rst
6032 F:      fs/notify/dnotify/
6033 F:      include/linux/dnotify.h
6034
6035 DISK GEOMETRY AND PARTITION HANDLING
6036 M:      Andries Brouwer <aeb@cwi.nl>
6037 S:      Maintained
6038 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6039 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6040 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6041
6042 DISKQUOTA
6043 M:      Jan Kara <jack@suse.com>
6044 S:      Maintained
6045 F:      Documentation/filesystems/quota.rst
6046 F:      fs/quota/
6047 F:      include/linux/quota*.h
6048 F:      include/uapi/linux/quota*.h
6049
6050 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6051 M:      Bernie Thompson <bernie@plugable.com>
6052 L:      linux-fbdev@vger.kernel.org
6053 S:      Maintained
6054 W:      http://plugable.com/category/projects/udlfb/
6055 F:      Documentation/fb/udlfb.rst
6056 F:      drivers/video/fbdev/udlfb.c
6057 F:      include/video/udlfb.h
6058
6059 DISTRIBUTED LOCK MANAGER (DLM)
6060 M:      Christine Caulfield <ccaulfie@redhat.com>
6061 M:      David Teigland <teigland@redhat.com>
6062 L:      cluster-devel@redhat.com
6063 S:      Supported
6064 W:      http://sources.redhat.com/cluster/
6065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6066 F:      fs/dlm/
6067
6068 DMA BUFFER SHARING FRAMEWORK
6069 M:      Sumit Semwal <sumit.semwal@linaro.org>
6070 M:      Christian König <christian.koenig@amd.com>
6071 L:      linux-media@vger.kernel.org
6072 L:      dri-devel@lists.freedesktop.org
6073 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6074 S:      Maintained
6075 T:      git git://anongit.freedesktop.org/drm/drm-misc
6076 F:      Documentation/driver-api/dma-buf.rst
6077 F:      drivers/dma-buf/
6078 F:      include/linux/*fence.h
6079 F:      include/linux/dma-buf.h
6080 F:      include/linux/dma-resv.h
6081 K:      \bdma_(?:buf|fence|resv)\b
6082
6083 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6084 M:      Vinod Koul <vkoul@kernel.org>
6085 L:      dmaengine@vger.kernel.org
6086 S:      Maintained
6087 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6089 F:      Documentation/devicetree/bindings/dma/
6090 F:      Documentation/driver-api/dmaengine/
6091 F:      drivers/dma/
6092 F:      include/dt-bindings/dma/
6093 F:      include/linux/dma/
6094 F:      include/linux/dmaengine.h
6095 F:      include/linux/of_dma.h
6096
6097 DMA MAPPING HELPERS
6098 M:      Christoph Hellwig <hch@lst.de>
6099 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6100 R:      Robin Murphy <robin.murphy@arm.com>
6101 L:      iommu@lists.linux.dev
6102 S:      Supported
6103 W:      http://git.infradead.org/users/hch/dma-mapping.git
6104 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6105 F:      include/asm-generic/dma-mapping.h
6106 F:      include/linux/dma-direct.h
6107 F:      include/linux/dma-mapping.h
6108 F:      include/linux/dma-map-ops.h
6109 F:      include/linux/swiotlb.h
6110 F:      kernel/dma/
6111
6112 DMA MAPPING BENCHMARK
6113 M:      Xiang Chen <chenxiang66@hisilicon.com>
6114 L:      iommu@lists.linux.dev
6115 F:      kernel/dma/map_benchmark.c
6116 F:      tools/testing/selftests/dma/
6117
6118 DMA-BUF HEAPS FRAMEWORK
6119 M:      Sumit Semwal <sumit.semwal@linaro.org>
6120 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6121 R:      Liam Mark <lmark@codeaurora.org>
6122 R:      Laura Abbott <labbott@redhat.com>
6123 R:      Brian Starkey <Brian.Starkey@arm.com>
6124 R:      John Stultz <jstultz@google.com>
6125 L:      linux-media@vger.kernel.org
6126 L:      dri-devel@lists.freedesktop.org
6127 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6128 S:      Maintained
6129 T:      git git://anongit.freedesktop.org/drm/drm-misc
6130 F:      drivers/dma-buf/dma-heap.c
6131 F:      drivers/dma-buf/heaps/*
6132 F:      include/linux/dma-heap.h
6133 F:      include/uapi/linux/dma-heap.h
6134
6135 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6136 M:      Lukasz Luba <lukasz.luba@arm.com>
6137 L:      linux-pm@vger.kernel.org
6138 L:      linux-samsung-soc@vger.kernel.org
6139 S:      Maintained
6140 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6141 F:      drivers/memory/samsung/exynos5422-dmc.c
6142
6143 DME1737 HARDWARE MONITOR DRIVER
6144 M:      Juerg Haefliger <juergh@proton.me>
6145 L:      linux-hwmon@vger.kernel.org
6146 S:      Maintained
6147 F:      Documentation/hwmon/dme1737.rst
6148 F:      drivers/hwmon/dme1737.c
6149
6150 DMI/SMBIOS SUPPORT
6151 M:      Jean Delvare <jdelvare@suse.com>
6152 S:      Maintained
6153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6154 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6155 F:      drivers/firmware/dmi-id.c
6156 F:      drivers/firmware/dmi_scan.c
6157 F:      include/linux/dmi.h
6158
6159 DOCUMENTATION
6160 M:      Jonathan Corbet <corbet@lwn.net>
6161 L:      linux-doc@vger.kernel.org
6162 S:      Maintained
6163 P:      Documentation/doc-guide/maintainer-profile.rst
6164 T:      git git://git.lwn.net/linux.git docs-next
6165 F:      Documentation/
6166 F:      scripts/documentation-file-ref-check
6167 F:      scripts/kernel-doc
6168 F:      scripts/sphinx-pre-install
6169 X:      Documentation/ABI/
6170 X:      Documentation/admin-guide/media/
6171 X:      Documentation/devicetree/
6172 X:      Documentation/driver-api/media/
6173 X:      Documentation/firmware-guide/acpi/
6174 X:      Documentation/i2c/
6175 X:      Documentation/power/
6176 X:      Documentation/spi/
6177 X:      Documentation/userspace-api/media/
6178
6179 DOCUMENTATION REPORTING ISSUES
6180 M:      Thorsten Leemhuis <linux@leemhuis.info>
6181 L:      linux-doc@vger.kernel.org
6182 S:      Maintained
6183 F:      Documentation/admin-guide/reporting-issues.rst
6184
6185 DOCUMENTATION SCRIPTS
6186 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6187 L:      linux-doc@vger.kernel.org
6188 S:      Maintained
6189 F:      Documentation/sphinx/parse-headers.pl
6190 F:      scripts/documentation-file-ref-check
6191 F:      scripts/sphinx-pre-install
6192
6193 DOCUMENTATION/ITALIAN
6194 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6195 L:      linux-doc@vger.kernel.org
6196 S:      Maintained
6197 F:      Documentation/translations/it_IT
6198
6199 DOCUMENTATION/JAPANESE
6200 R:      Akira Yokosawa <akiyks@gmail.com>
6201 L:      linux-doc@vger.kernel.org
6202 S:      Maintained
6203 F:      Documentation/translations/ja_JP
6204
6205 DONGWOON DW9714 LENS VOICE COIL DRIVER
6206 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6207 L:      linux-media@vger.kernel.org
6208 S:      Maintained
6209 T:      git git://linuxtv.org/media_tree.git
6210 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6211 F:      drivers/media/i2c/dw9714.c
6212
6213 DONGWOON DW9768 LENS VOICE COIL DRIVER
6214 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6215 L:      linux-media@vger.kernel.org
6216 S:      Maintained
6217 T:      git git://linuxtv.org/media_tree.git
6218 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6219 F:      drivers/media/i2c/dw9768.c
6220
6221 DONGWOON DW9807 LENS VOICE COIL DRIVER
6222 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6223 L:      linux-media@vger.kernel.org
6224 S:      Maintained
6225 T:      git git://linuxtv.org/media_tree.git
6226 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6227 F:      drivers/media/i2c/dw9807-vcm.c
6228
6229 DOUBLETALK DRIVER
6230 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6231 L:      blinux-list@redhat.com
6232 S:      Maintained
6233 F:      drivers/char/dtlk.c
6234 F:      include/linux/dtlk.h
6235
6236 DPAA2 DATAPATH I/O (DPIO) DRIVER
6237 M:      Roy Pledge <Roy.Pledge@nxp.com>
6238 L:      linux-kernel@vger.kernel.org
6239 S:      Maintained
6240 F:      drivers/soc/fsl/dpio
6241
6242 DPAA2 ETHERNET DRIVER
6243 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6244 L:      netdev@vger.kernel.org
6245 S:      Maintained
6246 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6247 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6248 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6249 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6250 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6251 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6252 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6253 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6254 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6255 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6256
6257 DPAA2 ETHERNET SWITCH DRIVER
6258 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6259 L:      netdev@vger.kernel.org
6260 S:      Maintained
6261 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6262 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6263 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6264
6265 DRBD DRIVER
6266 M:      Philipp Reisner <philipp.reisner@linbit.com>
6267 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6268 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6269 L:      drbd-dev@lists.linbit.com
6270 S:      Supported
6271 W:      http://www.drbd.org
6272 T:      git git://git.linbit.com/linux-drbd.git
6273 T:      git git://git.linbit.com/drbd-8.4.git
6274 F:      Documentation/admin-guide/blockdev/
6275 F:      drivers/block/drbd/
6276 F:      include/linux/drbd*
6277 F:      lib/lru_cache.c
6278
6279 DRIVER COMPONENT FRAMEWORK
6280 L:      dri-devel@lists.freedesktop.org
6281 F:      drivers/base/component.c
6282 F:      include/linux/component.h
6283
6284 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6285 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6286 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6287 S:      Supported
6288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6289 F:      Documentation/core-api/kobject.rst
6290 F:      drivers/base/
6291 F:      fs/debugfs/
6292 F:      fs/sysfs/
6293 F:      include/linux/debugfs.h
6294 F:      include/linux/kobj*
6295 F:      lib/kobj*
6296
6297 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6298 M:      Nishanth Menon <nm@ti.com>
6299 L:      linux-pm@vger.kernel.org
6300 S:      Maintained
6301 F:      drivers/soc/ti/smartreflex.c
6302 F:      include/linux/power/smartreflex.h
6303
6304 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6305 M:      Maxime Ripard <mripard@kernel.org>
6306 M:      Chen-Yu Tsai <wens@csie.org>
6307 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6308 L:      dri-devel@lists.freedesktop.org
6309 S:      Supported
6310 T:      git git://anongit.freedesktop.org/drm/drm-misc
6311 F:      drivers/gpu/drm/sun4i/sun8i*
6312
6313 DRM DRIVER FOR ARM PL111 CLCD
6314 M:      Emma Anholt <emma@anholt.net>
6315 S:      Supported
6316 T:      git git://anongit.freedesktop.org/drm/drm-misc
6317 F:      drivers/gpu/drm/pl111/
6318
6319 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6320 M:      Linus Walleij <linus.walleij@linaro.org>
6321 S:      Maintained
6322 T:      git git://anongit.freedesktop.org/drm/drm-misc
6323 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6324 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6325
6326 DRM DRIVER FOR ASPEED BMC GFX
6327 M:      Joel Stanley <joel@jms.id.au>
6328 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6329 S:      Supported
6330 T:      git git://anongit.freedesktop.org/drm/drm-misc
6331 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6332 F:      drivers/gpu/drm/aspeed/
6333
6334 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6335 M:      Dave Airlie <airlied@redhat.com>
6336 R:      Thomas Zimmermann <tzimmermann@suse.de>
6337 L:      dri-devel@lists.freedesktop.org
6338 S:      Supported
6339 T:      git git://anongit.freedesktop.org/drm/drm-misc
6340 F:      drivers/gpu/drm/ast/
6341
6342 DRM DRIVER FOR BOCHS VIRTUAL GPU
6343 M:      Gerd Hoffmann <kraxel@redhat.com>
6344 L:      virtualization@lists.linux-foundation.org
6345 S:      Maintained
6346 T:      git git://anongit.freedesktop.org/drm/drm-misc
6347 F:      drivers/gpu/drm/tiny/bochs.c
6348
6349 DRM DRIVER FOR BOE HIMAX8279D PANELS
6350 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6351 S:      Maintained
6352 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6353 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6354
6355 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6356 M:      Jagan Teki <jagan@amarulasolutions.com>
6357 S:      Maintained
6358 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6359 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6360
6361 DRM DRIVER FOR EBBG FT8719 PANEL
6362 M:      Joel Selvaraj <jo@jsfamily.in>
6363 S:      Maintained
6364 T:      git git://anongit.freedesktop.org/drm/drm-misc
6365 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6366 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6367
6368 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6369 M:      Linus Walleij <linus.walleij@linaro.org>
6370 S:      Maintained
6371 T:      git git://anongit.freedesktop.org/drm/drm-misc
6372 F:      drivers/gpu/drm/tve200/
6373
6374 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6375 M:      Icenowy Zheng <icenowy@aosc.io>
6376 S:      Maintained
6377 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6378 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6379
6380 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6381 M:      Jagan Teki <jagan@amarulasolutions.com>
6382 S:      Maintained
6383 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6384 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6385
6386 DRM DRIVER FOR GENERIC EDP PANELS
6387 R:      Douglas Anderson <dianders@chromium.org>
6388 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6389 F:      drivers/gpu/drm/panel/panel-edp.c
6390
6391 DRM DRIVER FOR GENERIC USB DISPLAY
6392 M:      Noralf Trønnes <noralf@tronnes.org>
6393 S:      Maintained
6394 W:      https://github.com/notro/gud/wiki
6395 T:      git git://anongit.freedesktop.org/drm/drm-misc
6396 F:      drivers/gpu/drm/gud/
6397 F:      include/drm/gud.h
6398
6399 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6400 M:      Hans de Goede <hdegoede@redhat.com>
6401 S:      Maintained
6402 T:      git git://anongit.freedesktop.org/drm/drm-misc
6403 F:      drivers/gpu/drm/tiny/gm12u320.c
6404
6405 DRM DRIVER FOR HX8357D PANELS
6406 M:      Emma Anholt <emma@anholt.net>
6407 S:      Maintained
6408 T:      git git://anongit.freedesktop.org/drm/drm-misc
6409 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6410 F:      drivers/gpu/drm/tiny/hx8357d.c
6411
6412 DRM DRIVER FOR ILITEK ILI9225 PANELS
6413 M:      David Lechner <david@lechnology.com>
6414 S:      Maintained
6415 T:      git git://anongit.freedesktop.org/drm/drm-misc
6416 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6417 F:      drivers/gpu/drm/tiny/ili9225.c
6418
6419 DRM DRIVER FOR ILITEK ILI9486 PANELS
6420 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6421 S:      Maintained
6422 T:      git git://anongit.freedesktop.org/drm/drm-misc
6423 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6424 F:      drivers/gpu/drm/tiny/ili9486.c
6425
6426 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6427 S:      Orphan / Obsolete
6428 F:      drivers/gpu/drm/i810/
6429 F:      include/uapi/drm/i810_drm.h
6430
6431 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6432 M:      Jagan Teki <jagan@edgeble.ai>
6433 S:      Maintained
6434 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6435 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6436
6437 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6438 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6439 S:      Supported
6440 T:      git git://anongit.freedesktop.org/drm/drm-misc
6441 F:      drivers/gpu/drm/logicvc/
6442
6443 DRM DRIVER FOR LVDS PANELS
6444 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6445 L:      dri-devel@lists.freedesktop.org
6446 T:      git git://anongit.freedesktop.org/drm/drm-misc
6447 S:      Maintained
6448 F:      drivers/gpu/drm/panel/panel-lvds.c
6449 F:      Documentation/devicetree/bindings/display/lvds.yaml
6450 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6451
6452 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6453 M:      Guido Günther <agx@sigxcpu.org>
6454 R:      Purism Kernel Team <kernel@puri.sm>
6455 S:      Maintained
6456 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6457 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6458
6459 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6460 S:      Orphan / Obsolete
6461 F:      drivers/gpu/drm/mga/
6462 F:      include/uapi/drm/mga_drm.h
6463
6464 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6465 M:      Dave Airlie <airlied@redhat.com>
6466 R:      Thomas Zimmermann <tzimmermann@suse.de>
6467 L:      dri-devel@lists.freedesktop.org
6468 S:      Supported
6469 T:      git git://anongit.freedesktop.org/drm/drm-misc
6470 F:      drivers/gpu/drm/mgag200/
6471
6472 DRM DRIVER FOR MI0283QT
6473 M:      Noralf Trønnes <noralf@tronnes.org>
6474 S:      Maintained
6475 T:      git git://anongit.freedesktop.org/drm/drm-misc
6476 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6477 F:      drivers/gpu/drm/tiny/mi0283qt.c
6478
6479 DRM DRIVER FOR MIPI DBI compatible panels
6480 M:      Noralf Trønnes <noralf@tronnes.org>
6481 S:      Maintained
6482 W:      https://github.com/notro/panel-mipi-dbi/wiki
6483 T:      git git://anongit.freedesktop.org/drm/drm-misc
6484 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6485 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6486
6487 DRM DRIVER FOR MSM ADRENO GPU
6488 M:      Rob Clark <robdclark@gmail.com>
6489 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6490 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6491 R:      Sean Paul <sean@poorly.run>
6492 L:      linux-arm-msm@vger.kernel.org
6493 L:      dri-devel@lists.freedesktop.org
6494 L:      freedreno@lists.freedesktop.org
6495 S:      Maintained
6496 T:      git https://gitlab.freedesktop.org/drm/msm.git
6497 F:      Documentation/devicetree/bindings/display/msm/
6498 F:      drivers/gpu/drm/msm/
6499 F:      include/uapi/drm/msm_drm.h
6500
6501 DRM DRIVER FOR NOVATEK NT35510 PANELS
6502 M:      Linus Walleij <linus.walleij@linaro.org>
6503 S:      Maintained
6504 T:      git git://anongit.freedesktop.org/drm/drm-misc
6505 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6506 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6507
6508 DRM DRIVER FOR NOVATEK NT35560 PANELS
6509 M:      Linus Walleij <linus.walleij@linaro.org>
6510 S:      Maintained
6511 T:      git git://anongit.freedesktop.org/drm/drm-misc
6512 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6513 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6514
6515 DRM DRIVER FOR NOVATEK NT36672A PANELS
6516 M:      Sumit Semwal <sumit.semwal@linaro.org>
6517 S:      Maintained
6518 T:      git git://anongit.freedesktop.org/drm/drm-misc
6519 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6520 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6521
6522 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6523 M:      Ben Skeggs <bskeggs@redhat.com>
6524 M:      Karol Herbst <kherbst@redhat.com>
6525 M:      Lyude Paul <lyude@redhat.com>
6526 L:      dri-devel@lists.freedesktop.org
6527 L:      nouveau@lists.freedesktop.org
6528 S:      Supported
6529 W:      https://nouveau.freedesktop.org/
6530 Q:      https://patchwork.freedesktop.org/project/nouveau/
6531 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6532 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6533 C:      irc://irc.oftc.net/nouveau
6534 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6535 F:      drivers/gpu/drm/nouveau/
6536 F:      include/uapi/drm/nouveau_drm.h
6537
6538 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6539 M:      Stefan Mavrodiev <stefan@olimex.com>
6540 S:      Maintained
6541 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6542 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6543
6544 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6545 R:      Douglas Anderson <dianders@chromium.org>
6546 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6547 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6548
6549 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6550 M:      Noralf Trønnes <noralf@tronnes.org>
6551 S:      Maintained
6552 T:      git git://anongit.freedesktop.org/drm/drm-misc
6553 F:      Documentation/devicetree/bindings/display/repaper.txt
6554 F:      drivers/gpu/drm/tiny/repaper.c
6555
6556 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6557 M:      Javier Martinez Canillas <javierm@redhat.com>
6558 S:      Maintained
6559 T:      git git://anongit.freedesktop.org/drm/drm-misc
6560 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6561 F:      drivers/gpu/drm/solomon/ssd130x*
6562
6563 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6564 M:      Dave Airlie <airlied@redhat.com>
6565 M:      Gerd Hoffmann <kraxel@redhat.com>
6566 L:      virtualization@lists.linux-foundation.org
6567 S:      Obsolete
6568 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6569 T:      git git://anongit.freedesktop.org/drm/drm-misc
6570 F:      drivers/gpu/drm/tiny/cirrus.c
6571
6572 DRM DRIVER FOR QXL VIRTUAL GPU
6573 M:      Dave Airlie <airlied@redhat.com>
6574 M:      Gerd Hoffmann <kraxel@redhat.com>
6575 L:      virtualization@lists.linux-foundation.org
6576 L:      spice-devel@lists.freedesktop.org
6577 S:      Maintained
6578 T:      git git://anongit.freedesktop.org/drm/drm-misc
6579 F:      drivers/gpu/drm/qxl/
6580 F:      include/uapi/drm/qxl_drm.h
6581
6582 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6583 S:      Orphan / Obsolete
6584 F:      drivers/gpu/drm/r128/
6585 F:      include/uapi/drm/r128_drm.h
6586
6587 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6588 M:      Robert Chiras <robert.chiras@nxp.com>
6589 S:      Maintained
6590 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6591 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6592
6593 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6594 M:      Linus Walleij <linus.walleij@linaro.org>
6595 S:      Maintained
6596 T:      git git://anongit.freedesktop.org/drm/drm-misc
6597 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6598 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6599
6600 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6601 M:      Markuss Broks <markuss.broks@gmail.com>
6602 S:      Maintained
6603 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6604 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6605
6606 DRM DRIVER FOR SITRONIX ST7703 PANELS
6607 M:      Guido Günther <agx@sigxcpu.org>
6608 R:      Purism Kernel Team <kernel@puri.sm>
6609 R:      Ondrej Jirman <megous@megous.com>
6610 S:      Maintained
6611 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6612 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6613
6614 DRM DRIVER FOR SAVAGE VIDEO CARDS
6615 S:      Orphan / Obsolete
6616 F:      drivers/gpu/drm/savage/
6617 F:      include/uapi/drm/savage_drm.h
6618
6619 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6620 M:      Thomas Zimmermann <tzimmermann@suse.de>
6621 M:      Javier Martinez Canillas <javierm@redhat.com>
6622 L:      dri-devel@lists.freedesktop.org
6623 S:      Maintained
6624 T:      git git://anongit.freedesktop.org/drm/drm-misc
6625 F:      drivers/gpu/drm/drm_aperture.c
6626 F:      drivers/gpu/drm/tiny/ofdrm.c
6627 F:      drivers/gpu/drm/tiny/simpledrm.c
6628 F:      drivers/video/aperture.c
6629 F:      drivers/video/nomodeset.c
6630 F:      include/drm/drm_aperture.h
6631 F:      include/linux/aperture.h
6632 F:      include/video/nomodeset.h
6633
6634 DRM DRIVER FOR SIS VIDEO CARDS
6635 S:      Orphan / Obsolete
6636 F:      drivers/gpu/drm/sis/
6637 F:      include/uapi/drm/sis_drm.h
6638
6639 DRM DRIVER FOR SITRONIX ST7586 PANELS
6640 M:      David Lechner <david@lechnology.com>
6641 S:      Maintained
6642 T:      git git://anongit.freedesktop.org/drm/drm-misc
6643 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6644 F:      drivers/gpu/drm/tiny/st7586.c
6645
6646 DRM DRIVER FOR SITRONIX ST7701 PANELS
6647 M:      Jagan Teki <jagan@amarulasolutions.com>
6648 S:      Maintained
6649 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6650 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6651
6652 DRM DRIVER FOR SITRONIX ST7735R PANELS
6653 M:      David Lechner <david@lechnology.com>
6654 S:      Maintained
6655 T:      git git://anongit.freedesktop.org/drm/drm-misc
6656 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6657 F:      drivers/gpu/drm/tiny/st7735r.c
6658
6659 DRM DRIVER FOR ST-ERICSSON MCDE
6660 M:      Linus Walleij <linus.walleij@linaro.org>
6661 S:      Maintained
6662 T:      git git://anongit.freedesktop.org/drm/drm-misc
6663 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6664 F:      drivers/gpu/drm/mcde/
6665
6666 DRM DRIVER FOR TDFX VIDEO CARDS
6667 S:      Orphan / Obsolete
6668 F:      drivers/gpu/drm/tdfx/
6669
6670 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6671 M:      Jagan Teki <jagan@amarulasolutions.com>
6672 S:      Maintained
6673 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6674 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6675
6676 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6677 R:      Douglas Anderson <dianders@chromium.org>
6678 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6679 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6680
6681 DRM DRIVER FOR TPO TPG110 PANELS
6682 M:      Linus Walleij <linus.walleij@linaro.org>
6683 S:      Maintained
6684 T:      git git://anongit.freedesktop.org/drm/drm-misc
6685 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6686 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6687
6688 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6689 M:      Dave Airlie <airlied@redhat.com>
6690 R:      Sean Paul <sean@poorly.run>
6691 R:      Thomas Zimmermann <tzimmermann@suse.de>
6692 L:      dri-devel@lists.freedesktop.org
6693 S:      Supported
6694 T:      git git://anongit.freedesktop.org/drm/drm-misc
6695 F:      drivers/gpu/drm/udl/
6696
6697 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6698 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6699 M:      Melissa Wen <melissa.srw@gmail.com>
6700 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6701 R:      Daniel Vetter <daniel@ffwll.ch>
6702 L:      dri-devel@lists.freedesktop.org
6703 S:      Maintained
6704 T:      git git://anongit.freedesktop.org/drm/drm-misc
6705 F:      Documentation/gpu/vkms.rst
6706 F:      drivers/gpu/drm/vkms/
6707
6708 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6709 M:      Hans de Goede <hdegoede@redhat.com>
6710 L:      dri-devel@lists.freedesktop.org
6711 S:      Maintained
6712 T:      git git://anongit.freedesktop.org/drm/drm-misc
6713 F:      drivers/gpu/drm/vboxvideo/
6714
6715 DRM DRIVER FOR VMWARE VIRTUAL GPU
6716 M:      Zack Rusin <zackr@vmware.com>
6717 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6718 L:      dri-devel@lists.freedesktop.org
6719 S:      Supported
6720 T:      git git://anongit.freedesktop.org/drm/drm-misc
6721 F:      drivers/gpu/drm/vmwgfx/
6722 F:      include/uapi/drm/vmwgfx_drm.h
6723
6724 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6725 M:      Linus Walleij <linus.walleij@linaro.org>
6726 S:      Maintained
6727 T:      git git://anongit.freedesktop.org/drm/drm-misc
6728 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6729 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6730
6731 DRM DRIVERS
6732 M:      David Airlie <airlied@gmail.com>
6733 M:      Daniel Vetter <daniel@ffwll.ch>
6734 L:      dri-devel@lists.freedesktop.org
6735 S:      Maintained
6736 B:      https://gitlab.freedesktop.org/drm
6737 C:      irc://irc.oftc.net/dri-devel
6738 T:      git git://anongit.freedesktop.org/drm/drm
6739 F:      Documentation/devicetree/bindings/display/
6740 F:      Documentation/devicetree/bindings/gpu/
6741 F:      Documentation/gpu/
6742 F:      drivers/gpu/
6743 F:      include/drm/
6744 F:      include/linux/vga*
6745 F:      include/uapi/drm/
6746
6747 DRM DRIVERS AND MISC GPU PATCHES
6748 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6749 M:      Maxime Ripard <mripard@kernel.org>
6750 M:      Thomas Zimmermann <tzimmermann@suse.de>
6751 S:      Maintained
6752 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6753 T:      git git://anongit.freedesktop.org/drm/drm-misc
6754 F:      Documentation/gpu/
6755 F:      drivers/gpu/drm/*
6756 F:      drivers/gpu/vga/
6757 F:      include/drm/drm*
6758 F:      include/linux/vga*
6759 F:      include/uapi/drm/drm*
6760
6761 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6762 M:      Oded Gabbay <ogabbay@kernel.org>
6763 L:      dri-devel@lists.freedesktop.org
6764 S:      Maintained
6765 C:      irc://irc.oftc.net/dri-devel
6766 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6767 F:      Documentation/accel/
6768 F:      drivers/accel/
6769
6770 DRM DRIVERS FOR ALLWINNER A10
6771 M:      Maxime Ripard <mripard@kernel.org>
6772 M:      Chen-Yu Tsai <wens@csie.org>
6773 L:      dri-devel@lists.freedesktop.org
6774 S:      Supported
6775 T:      git git://anongit.freedesktop.org/drm/drm-misc
6776 F:      Documentation/devicetree/bindings/display/allwinner*
6777 F:      drivers/gpu/drm/sun4i/
6778
6779 DRM DRIVERS FOR AMLOGIC SOCS
6780 M:      Neil Armstrong <neil.armstrong@linaro.org>
6781 L:      dri-devel@lists.freedesktop.org
6782 L:      linux-amlogic@lists.infradead.org
6783 S:      Supported
6784 W:      http://linux-meson.com/
6785 T:      git git://anongit.freedesktop.org/drm/drm-misc
6786 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6787 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6788 F:      Documentation/gpu/meson.rst
6789 F:      drivers/gpu/drm/meson/
6790
6791 DRM DRIVERS FOR ATMEL HLCDC
6792 M:      Sam Ravnborg <sam@ravnborg.org>
6793 M:      Boris Brezillon <bbrezillon@kernel.org>
6794 L:      dri-devel@lists.freedesktop.org
6795 S:      Supported
6796 T:      git git://anongit.freedesktop.org/drm/drm-misc
6797 F:      Documentation/devicetree/bindings/display/atmel/
6798 F:      drivers/gpu/drm/atmel-hlcdc/
6799
6800 DRM DRIVERS FOR BRIDGE CHIPS
6801 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6802 M:      Neil Armstrong <neil.armstrong@linaro.org>
6803 M:      Robert Foss <rfoss@kernel.org>
6804 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6805 R:      Jonas Karlman <jonas@kwiboo.se>
6806 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6807 S:      Maintained
6808 T:      git git://anongit.freedesktop.org/drm/drm-misc
6809 F:      Documentation/devicetree/bindings/display/bridge/
6810 F:      drivers/gpu/drm/bridge/
6811
6812 DRM DRIVERS FOR EXYNOS
6813 M:      Inki Dae <inki.dae@samsung.com>
6814 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6815 M:      Kyungmin Park <kyungmin.park@samsung.com>
6816 L:      dri-devel@lists.freedesktop.org
6817 S:      Supported
6818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6819 F:      Documentation/devicetree/bindings/display/exynos/
6820 F:      Documentation/devicetree/bindings/display/samsung/
6821 F:      drivers/gpu/drm/exynos/
6822 F:      include/uapi/drm/exynos_drm.h
6823
6824 DRM DRIVERS FOR FREESCALE DCU
6825 M:      Stefan Agner <stefan@agner.ch>
6826 M:      Alison Wang <alison.wang@nxp.com>
6827 L:      dri-devel@lists.freedesktop.org
6828 S:      Supported
6829 T:      git git://anongit.freedesktop.org/drm/drm-misc
6830 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6831 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6832 F:      drivers/gpu/drm/fsl-dcu/
6833
6834 DRM DRIVERS FOR FREESCALE IMX
6835 M:      Philipp Zabel <p.zabel@pengutronix.de>
6836 L:      dri-devel@lists.freedesktop.org
6837 S:      Maintained
6838 F:      Documentation/devicetree/bindings/display/imx/
6839 F:      drivers/gpu/drm/imx/
6840 F:      drivers/gpu/ipu-v3/
6841
6842 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6843 M:      Liu Ying <victor.liu@nxp.com>
6844 L:      dri-devel@lists.freedesktop.org
6845 S:      Maintained
6846 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6847 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6848 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6849 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6850 F:      drivers/gpu/drm/bridge/imx/
6851
6852 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6853 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6854 L:      dri-devel@lists.freedesktop.org
6855 S:      Maintained
6856 T:      git git://github.com/patjak/drm-gma500
6857 F:      drivers/gpu/drm/gma500/
6858
6859 DRM DRIVERS FOR HISILICON
6860 M:      Xinliang Liu <xinliang.liu@linaro.org>
6861 M:      Tian Tao  <tiantao6@hisilicon.com>
6862 R:      John Stultz <jstultz@google.com>
6863 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6864 R:      Chen Feng <puck.chen@hisilicon.com>
6865 L:      dri-devel@lists.freedesktop.org
6866 S:      Maintained
6867 T:      git git://anongit.freedesktop.org/drm/drm-misc
6868 F:      Documentation/devicetree/bindings/display/hisilicon/
6869 F:      drivers/gpu/drm/hisilicon/
6870
6871 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6872 M:      Deepak Rawat <drawat.floss@gmail.com>
6873 L:      linux-hyperv@vger.kernel.org
6874 L:      dri-devel@lists.freedesktop.org
6875 S:      Maintained
6876 T:      git git://anongit.freedesktop.org/drm/drm-misc
6877 F:      drivers/gpu/drm/hyperv
6878
6879 DRM DRIVERS FOR LIMA
6880 M:      Qiang Yu <yuq825@gmail.com>
6881 L:      dri-devel@lists.freedesktop.org
6882 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6883 S:      Maintained
6884 T:      git git://anongit.freedesktop.org/drm/drm-misc
6885 F:      drivers/gpu/drm/lima/
6886 F:      include/uapi/drm/lima_drm.h
6887
6888 DRM DRIVERS FOR MEDIATEK
6889 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6890 M:      Philipp Zabel <p.zabel@pengutronix.de>
6891 L:      dri-devel@lists.freedesktop.org
6892 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6893 S:      Supported
6894 F:      Documentation/devicetree/bindings/display/mediatek/
6895 F:      drivers/gpu/drm/mediatek/
6896 F:      drivers/phy/mediatek/phy-mtk-dp.c
6897 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6898 F:      drivers/phy/mediatek/phy-mtk-mipi*
6899
6900 DRM DRIVERS FOR NVIDIA TEGRA
6901 M:      Thierry Reding <thierry.reding@gmail.com>
6902 L:      dri-devel@lists.freedesktop.org
6903 L:      linux-tegra@vger.kernel.org
6904 S:      Supported
6905 T:      git git://anongit.freedesktop.org/tegra/linux.git
6906 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6907 F:      Documentation/devicetree/bindings/gpu/host1x/
6908 F:      drivers/gpu/drm/tegra/
6909 F:      drivers/gpu/host1x/
6910 F:      include/linux/host1x.h
6911 F:      include/uapi/drm/tegra_drm.h
6912
6913 DRM DRIVERS FOR RENESAS
6914 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6915 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6916 L:      dri-devel@lists.freedesktop.org
6917 L:      linux-renesas-soc@vger.kernel.org
6918 S:      Supported
6919 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6920 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6921 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6922 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6923 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6924 F:      drivers/gpu/drm/rcar-du/
6925 F:      drivers/gpu/drm/shmobile/
6926 F:      include/linux/platform_data/shmob_drm.h
6927
6928 DRM DRIVERS FOR ROCKCHIP
6929 M:      Sandy Huang <hjc@rock-chips.com>
6930 M:      Heiko Stübner <heiko@sntech.de>
6931 L:      dri-devel@lists.freedesktop.org
6932 S:      Maintained
6933 T:      git git://anongit.freedesktop.org/drm/drm-misc
6934 F:      Documentation/devicetree/bindings/display/rockchip/
6935 F:      drivers/gpu/drm/rockchip/
6936
6937 DRM DRIVERS FOR STI
6938 M:      Alain Volmat <alain.volmat@foss.st.com>
6939 L:      dri-devel@lists.freedesktop.org
6940 S:      Maintained
6941 T:      git git://anongit.freedesktop.org/drm/drm-misc
6942 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6943 F:      drivers/gpu/drm/sti
6944
6945 DRM DRIVERS FOR STM
6946 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6947 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6948 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6949 L:      dri-devel@lists.freedesktop.org
6950 S:      Maintained
6951 T:      git git://anongit.freedesktop.org/drm/drm-misc
6952 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6953 F:      drivers/gpu/drm/stm
6954
6955 DRM DRIVERS FOR TI KEYSTONE
6956 M:      Jyri Sarha <jyri.sarha@iki.fi>
6957 M:      Tomi Valkeinen <tomba@kernel.org>
6958 L:      dri-devel@lists.freedesktop.org
6959 S:      Maintained
6960 T:      git git://anongit.freedesktop.org/drm/drm-misc
6961 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6962 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6963 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6964 F:      drivers/gpu/drm/tidss/
6965
6966 DRM DRIVERS FOR TI LCDC
6967 M:      Jyri Sarha <jyri.sarha@iki.fi>
6968 R:      Tomi Valkeinen <tomba@kernel.org>
6969 L:      dri-devel@lists.freedesktop.org
6970 S:      Maintained
6971 F:      Documentation/devicetree/bindings/display/tilcdc/
6972 F:      drivers/gpu/drm/tilcdc/
6973
6974 DRM DRIVERS FOR TI OMAP
6975 M:      Tomi Valkeinen <tomba@kernel.org>
6976 L:      dri-devel@lists.freedesktop.org
6977 S:      Maintained
6978 F:      Documentation/devicetree/bindings/display/ti/
6979 F:      drivers/gpu/drm/omapdrm/
6980
6981 DRM DRIVERS FOR V3D
6982 M:      Emma Anholt <emma@anholt.net>
6983 M:      Melissa Wen <mwen@igalia.com>
6984 S:      Supported
6985 T:      git git://anongit.freedesktop.org/drm/drm-misc
6986 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6987 F:      drivers/gpu/drm/v3d/
6988 F:      include/uapi/drm/v3d_drm.h
6989
6990 DRM DRIVERS FOR VC4
6991 M:      Emma Anholt <emma@anholt.net>
6992 M:      Maxime Ripard <mripard@kernel.org>
6993 S:      Supported
6994 T:      git git://github.com/anholt/linux
6995 T:      git git://anongit.freedesktop.org/drm/drm-misc
6996 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6997 F:      drivers/gpu/drm/vc4/
6998 F:      include/uapi/drm/vc4_drm.h
6999
7000 DRM DRIVERS FOR VIVANTE GPU IP
7001 M:      Lucas Stach <l.stach@pengutronix.de>
7002 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7003 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7004 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7005 L:      dri-devel@lists.freedesktop.org
7006 S:      Maintained
7007 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7008 F:      drivers/gpu/drm/etnaviv/
7009 F:      include/uapi/drm/etnaviv_drm.h
7010
7011 DRM DRIVERS FOR XEN
7012 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7013 L:      dri-devel@lists.freedesktop.org
7014 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7015 S:      Supported
7016 T:      git git://anongit.freedesktop.org/drm/drm-misc
7017 F:      Documentation/gpu/xen-front.rst
7018 F:      drivers/gpu/drm/xen/
7019
7020 DRM DRIVERS FOR XILINX
7021 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7022 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7023 L:      dri-devel@lists.freedesktop.org
7024 S:      Maintained
7025 T:      git git://anongit.freedesktop.org/drm/drm-misc
7026 F:      Documentation/devicetree/bindings/display/xlnx/
7027 F:      drivers/gpu/drm/xlnx/
7028
7029 DRM PANEL DRIVERS
7030 M:      Thierry Reding <thierry.reding@gmail.com>
7031 R:      Sam Ravnborg <sam@ravnborg.org>
7032 L:      dri-devel@lists.freedesktop.org
7033 S:      Maintained
7034 T:      git git://anongit.freedesktop.org/drm/drm-misc
7035 F:      Documentation/devicetree/bindings/display/panel/
7036 F:      drivers/gpu/drm/drm_panel.c
7037 F:      drivers/gpu/drm/panel/
7038 F:      include/drm/drm_panel.h
7039
7040 DRM PRIVACY-SCREEN CLASS
7041 M:      Hans de Goede <hdegoede@redhat.com>
7042 L:      dri-devel@lists.freedesktop.org
7043 S:      Maintained
7044 T:      git git://anongit.freedesktop.org/drm/drm-misc
7045 F:      drivers/gpu/drm/drm_privacy_screen*
7046 F:      include/drm/drm_privacy_screen*
7047
7048 DRM TTM SUBSYSTEM
7049 M:      Christian Koenig <christian.koenig@amd.com>
7050 M:      Huang Rui <ray.huang@amd.com>
7051 L:      dri-devel@lists.freedesktop.org
7052 S:      Maintained
7053 T:      git git://anongit.freedesktop.org/drm/drm-misc
7054 F:      drivers/gpu/drm/ttm/
7055 F:      include/drm/ttm/
7056
7057 DRM GPU SCHEDULER
7058 M:      Luben Tuikov <luben.tuikov@amd.com>
7059 L:      dri-devel@lists.freedesktop.org
7060 S:      Maintained
7061 T:      git git://anongit.freedesktop.org/drm/drm-misc
7062 F:      drivers/gpu/drm/scheduler/
7063 F:      include/drm/gpu_scheduler.h
7064
7065 DSBR100 USB FM RADIO DRIVER
7066 M:      Alexey Klimov <klimov.linux@gmail.com>
7067 L:      linux-media@vger.kernel.org
7068 S:      Maintained
7069 T:      git git://linuxtv.org/media_tree.git
7070 F:      drivers/media/radio/dsbr100.c
7071
7072 DT3155 MEDIA DRIVER
7073 M:      Hans Verkuil <hverkuil@xs4all.nl>
7074 L:      linux-media@vger.kernel.org
7075 S:      Odd Fixes
7076 W:      https://linuxtv.org
7077 T:      git git://linuxtv.org/media_tree.git
7078 F:      drivers/media/pci/dt3155/
7079
7080 DVB_USB_AF9015 MEDIA DRIVER
7081 M:      Antti Palosaari <crope@iki.fi>
7082 L:      linux-media@vger.kernel.org
7083 S:      Maintained
7084 W:      https://linuxtv.org
7085 W:      http://palosaari.fi/linux/
7086 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7087 T:      git git://linuxtv.org/anttip/media_tree.git
7088 F:      drivers/media/usb/dvb-usb-v2/af9015*
7089
7090 DVB_USB_AF9035 MEDIA DRIVER
7091 M:      Antti Palosaari <crope@iki.fi>
7092 L:      linux-media@vger.kernel.org
7093 S:      Maintained
7094 W:      https://linuxtv.org
7095 W:      http://palosaari.fi/linux/
7096 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7097 T:      git git://linuxtv.org/anttip/media_tree.git
7098 F:      drivers/media/usb/dvb-usb-v2/af9035*
7099
7100 DVB_USB_ANYSEE MEDIA DRIVER
7101 M:      Antti Palosaari <crope@iki.fi>
7102 L:      linux-media@vger.kernel.org
7103 S:      Maintained
7104 W:      https://linuxtv.org
7105 W:      http://palosaari.fi/linux/
7106 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7107 T:      git git://linuxtv.org/anttip/media_tree.git
7108 F:      drivers/media/usb/dvb-usb-v2/anysee*
7109
7110 DVB_USB_AU6610 MEDIA DRIVER
7111 M:      Antti Palosaari <crope@iki.fi>
7112 L:      linux-media@vger.kernel.org
7113 S:      Maintained
7114 W:      https://linuxtv.org
7115 W:      http://palosaari.fi/linux/
7116 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7117 T:      git git://linuxtv.org/anttip/media_tree.git
7118 F:      drivers/media/usb/dvb-usb-v2/au6610*
7119
7120 DVB_USB_CE6230 MEDIA DRIVER
7121 M:      Antti Palosaari <crope@iki.fi>
7122 L:      linux-media@vger.kernel.org
7123 S:      Maintained
7124 W:      https://linuxtv.org
7125 W:      http://palosaari.fi/linux/
7126 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7127 T:      git git://linuxtv.org/anttip/media_tree.git
7128 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7129
7130 DVB_USB_CXUSB MEDIA DRIVER
7131 M:      Michael Krufky <mkrufky@linuxtv.org>
7132 L:      linux-media@vger.kernel.org
7133 S:      Maintained
7134 W:      https://linuxtv.org
7135 W:      http://github.com/mkrufky
7136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7137 T:      git git://linuxtv.org/media_tree.git
7138 F:      drivers/media/usb/dvb-usb/cxusb*
7139
7140 DVB_USB_EC168 MEDIA DRIVER
7141 M:      Antti Palosaari <crope@iki.fi>
7142 L:      linux-media@vger.kernel.org
7143 S:      Maintained
7144 W:      https://linuxtv.org
7145 W:      http://palosaari.fi/linux/
7146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7147 T:      git git://linuxtv.org/anttip/media_tree.git
7148 F:      drivers/media/usb/dvb-usb-v2/ec168*
7149
7150 DVB_USB_GL861 MEDIA DRIVER
7151 M:      Antti Palosaari <crope@iki.fi>
7152 L:      linux-media@vger.kernel.org
7153 S:      Maintained
7154 W:      https://linuxtv.org
7155 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7156 T:      git git://linuxtv.org/anttip/media_tree.git
7157 F:      drivers/media/usb/dvb-usb-v2/gl861*
7158
7159 DVB_USB_MXL111SF MEDIA DRIVER
7160 M:      Michael Krufky <mkrufky@linuxtv.org>
7161 L:      linux-media@vger.kernel.org
7162 S:      Maintained
7163 W:      https://linuxtv.org
7164 W:      http://github.com/mkrufky
7165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7166 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7167 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7168
7169 DVB_USB_RTL28XXU MEDIA DRIVER
7170 M:      Antti Palosaari <crope@iki.fi>
7171 L:      linux-media@vger.kernel.org
7172 S:      Maintained
7173 W:      https://linuxtv.org
7174 W:      http://palosaari.fi/linux/
7175 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7176 T:      git git://linuxtv.org/anttip/media_tree.git
7177 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7178
7179 DVB_USB_V2 MEDIA DRIVER
7180 M:      Antti Palosaari <crope@iki.fi>
7181 L:      linux-media@vger.kernel.org
7182 S:      Maintained
7183 W:      https://linuxtv.org
7184 W:      http://palosaari.fi/linux/
7185 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7186 T:      git git://linuxtv.org/anttip/media_tree.git
7187 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7188 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7189
7190 DYNAMIC DEBUG
7191 M:      Jason Baron <jbaron@akamai.com>
7192 S:      Maintained
7193 F:      include/linux/dynamic_debug.h
7194 F:      lib/dynamic_debug.c
7195 M:      Jim Cromie <jim.cromie@gmail.com>
7196 F:      lib/test_dynamic_debug.c
7197
7198 DYNAMIC INTERRUPT MODERATION
7199 M:      Tal Gilboa <talgi@nvidia.com>
7200 S:      Maintained
7201 F:      Documentation/networking/net_dim.rst
7202 F:      include/linux/dim.h
7203 F:      lib/dim/
7204
7205 DZ DECSTATION DZ11 SERIAL DRIVER
7206 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7207 S:      Maintained
7208 F:      drivers/tty/serial/dz.*
7209
7210 E3X0 POWER BUTTON DRIVER
7211 M:      Moritz Fischer <moritz.fischer@ettus.com>
7212 L:      usrp-users@lists.ettus.com
7213 S:      Supported
7214 W:      http://www.ettus.com
7215 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7216 F:      drivers/input/misc/e3x0-button.c
7217
7218 E4000 MEDIA DRIVER
7219 M:      Antti Palosaari <crope@iki.fi>
7220 L:      linux-media@vger.kernel.org
7221 S:      Maintained
7222 W:      https://linuxtv.org
7223 W:      http://palosaari.fi/linux/
7224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7225 T:      git git://linuxtv.org/anttip/media_tree.git
7226 F:      drivers/media/tuners/e4000*
7227
7228 EARTH_PT1 MEDIA DRIVER
7229 M:      Akihiro Tsukada <tskd08@gmail.com>
7230 L:      linux-media@vger.kernel.org
7231 S:      Odd Fixes
7232 F:      drivers/media/pci/pt1/
7233
7234 EARTH_PT3 MEDIA DRIVER
7235 M:      Akihiro Tsukada <tskd08@gmail.com>
7236 L:      linux-media@vger.kernel.org
7237 S:      Odd Fixes
7238 F:      drivers/media/pci/pt3/
7239
7240 EC100 MEDIA DRIVER
7241 M:      Antti Palosaari <crope@iki.fi>
7242 L:      linux-media@vger.kernel.org
7243 S:      Maintained
7244 W:      https://linuxtv.org
7245 W:      http://palosaari.fi/linux/
7246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7247 T:      git git://linuxtv.org/anttip/media_tree.git
7248 F:      drivers/media/dvb-frontends/ec100*
7249
7250 ECRYPT FILE SYSTEM
7251 M:      Tyler Hicks <code@tyhicks.com>
7252 L:      ecryptfs@vger.kernel.org
7253 S:      Odd Fixes
7254 W:      http://ecryptfs.org
7255 W:      https://launchpad.net/ecryptfs
7256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7257 F:      Documentation/filesystems/ecryptfs.rst
7258 F:      fs/ecryptfs/
7259
7260 EDAC-AMD64
7261 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7262 L:      linux-edac@vger.kernel.org
7263 S:      Supported
7264 F:      drivers/edac/amd64_edac*
7265 F:      drivers/edac/mce_amd*
7266
7267 EDAC-ARMADA
7268 M:      Jan Luebbe <jlu@pengutronix.de>
7269 L:      linux-edac@vger.kernel.org
7270 S:      Maintained
7271 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7272 F:      drivers/edac/armada_xp_*
7273
7274 EDAC-AST2500
7275 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7276 S:      Supported
7277 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7278 F:      drivers/edac/aspeed_edac.c
7279
7280 EDAC-BLUEFIELD
7281 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7282 S:      Supported
7283 F:      drivers/edac/bluefield_edac.c
7284
7285 EDAC-CALXEDA
7286 M:      Andre Przywara <andre.przywara@arm.com>
7287 L:      linux-edac@vger.kernel.org
7288 S:      Maintained
7289 F:      drivers/edac/highbank*
7290
7291 EDAC-CAVIUM OCTEON
7292 M:      Ralf Baechle <ralf@linux-mips.org>
7293 L:      linux-edac@vger.kernel.org
7294 L:      linux-mips@vger.kernel.org
7295 S:      Supported
7296 F:      drivers/edac/octeon_edac*
7297
7298 EDAC-CAVIUM THUNDERX
7299 M:      Robert Richter <rric@kernel.org>
7300 L:      linux-edac@vger.kernel.org
7301 S:      Odd Fixes
7302 F:      drivers/edac/thunderx_edac*
7303
7304 EDAC-CORE
7305 M:      Borislav Petkov <bp@alien8.de>
7306 M:      Tony Luck <tony.luck@intel.com>
7307 R:      James Morse <james.morse@arm.com>
7308 R:      Mauro Carvalho Chehab <mchehab@kernel.org>
7309 R:      Robert Richter <rric@kernel.org>
7310 L:      linux-edac@vger.kernel.org
7311 S:      Supported
7312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7313 F:      Documentation/admin-guide/ras.rst
7314 F:      Documentation/driver-api/edac.rst
7315 F:      drivers/edac/
7316 F:      include/linux/edac.h
7317
7318 EDAC-DMC520
7319 M:      Lei Wang <lewan@microsoft.com>
7320 L:      linux-edac@vger.kernel.org
7321 S:      Supported
7322 F:      drivers/edac/dmc520_edac.c
7323
7324 EDAC-E752X
7325 M:      Mark Gross <markgross@kernel.org>
7326 L:      linux-edac@vger.kernel.org
7327 S:      Maintained
7328 F:      drivers/edac/e752x_edac.c
7329
7330 EDAC-E7XXX
7331 L:      linux-edac@vger.kernel.org
7332 S:      Maintained
7333 F:      drivers/edac/e7xxx_edac.c
7334
7335 EDAC-FSL_DDR
7336 M:      York Sun <york.sun@nxp.com>
7337 L:      linux-edac@vger.kernel.org
7338 S:      Maintained
7339 F:      drivers/edac/fsl_ddr_edac.*
7340
7341 EDAC-GHES
7342 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7343 L:      linux-edac@vger.kernel.org
7344 S:      Maintained
7345 F:      drivers/edac/ghes_edac.c
7346
7347 EDAC-I10NM
7348 M:      Tony Luck <tony.luck@intel.com>
7349 L:      linux-edac@vger.kernel.org
7350 S:      Maintained
7351 F:      drivers/edac/i10nm_base.c
7352
7353 EDAC-I3000
7354 L:      linux-edac@vger.kernel.org
7355 S:      Orphan
7356 F:      drivers/edac/i3000_edac.c
7357
7358 EDAC-I5000
7359 L:      linux-edac@vger.kernel.org
7360 S:      Maintained
7361 F:      drivers/edac/i5000_edac.c
7362
7363 EDAC-I5400
7364 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7365 L:      linux-edac@vger.kernel.org
7366 S:      Maintained
7367 F:      drivers/edac/i5400_edac.c
7368
7369 EDAC-I7300
7370 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7371 L:      linux-edac@vger.kernel.org
7372 S:      Maintained
7373 F:      drivers/edac/i7300_edac.c
7374
7375 EDAC-I7CORE
7376 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7377 L:      linux-edac@vger.kernel.org
7378 S:      Maintained
7379 F:      drivers/edac/i7core_edac.c
7380
7381 EDAC-I82443BXGX
7382 M:      Tim Small <tim@buttersideup.com>
7383 L:      linux-edac@vger.kernel.org
7384 S:      Maintained
7385 F:      drivers/edac/i82443bxgx_edac.c
7386
7387 EDAC-I82975X
7388 M:      "Arvind R." <arvino55@gmail.com>
7389 L:      linux-edac@vger.kernel.org
7390 S:      Maintained
7391 F:      drivers/edac/i82975x_edac.c
7392
7393 EDAC-IE31200
7394 M:      Jason Baron <jbaron@akamai.com>
7395 L:      linux-edac@vger.kernel.org
7396 S:      Maintained
7397 F:      drivers/edac/ie31200_edac.c
7398
7399 EDAC-IGEN6
7400 M:      Tony Luck <tony.luck@intel.com>
7401 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7402 L:      linux-edac@vger.kernel.org
7403 S:      Maintained
7404 F:      drivers/edac/igen6_edac.c
7405
7406 EDAC-MPC85XX
7407 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7408 L:      linux-edac@vger.kernel.org
7409 S:      Maintained
7410 F:      drivers/edac/mpc85xx_edac.[ch]
7411
7412 EDAC-PASEMI
7413 M:      Egor Martovetsky <egor@pasemi.com>
7414 L:      linux-edac@vger.kernel.org
7415 S:      Maintained
7416 F:      drivers/edac/pasemi_edac.c
7417
7418 EDAC-PND2
7419 M:      Tony Luck <tony.luck@intel.com>
7420 L:      linux-edac@vger.kernel.org
7421 S:      Maintained
7422 F:      drivers/edac/pnd2_edac.[ch]
7423
7424 EDAC-QCOM
7425 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7426 L:      linux-arm-msm@vger.kernel.org
7427 L:      linux-edac@vger.kernel.org
7428 S:      Maintained
7429 F:      drivers/edac/qcom_edac.c
7430
7431 EDAC-R82600
7432 M:      Tim Small <tim@buttersideup.com>
7433 L:      linux-edac@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/edac/r82600_edac.c
7436
7437 EDAC-SBRIDGE
7438 M:      Tony Luck <tony.luck@intel.com>
7439 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7440 L:      linux-edac@vger.kernel.org
7441 S:      Maintained
7442 F:      drivers/edac/sb_edac.c
7443
7444 EDAC-SKYLAKE
7445 M:      Tony Luck <tony.luck@intel.com>
7446 L:      linux-edac@vger.kernel.org
7447 S:      Maintained
7448 F:      drivers/edac/skx_*.[ch]
7449
7450 EDAC-TI
7451 M:      Tero Kristo <kristo@kernel.org>
7452 L:      linux-edac@vger.kernel.org
7453 S:      Odd Fixes
7454 F:      drivers/edac/ti_edac.c
7455
7456 EDIROL UA-101/UA-1000 DRIVER
7457 M:      Clemens Ladisch <clemens@ladisch.de>
7458 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7459 S:      Maintained
7460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7461 F:      sound/usb/misc/ua101.c
7462
7463 EFI TEST DRIVER
7464 M:      Ivan Hu <ivan.hu@canonical.com>
7465 M:      Ard Biesheuvel <ardb@kernel.org>
7466 L:      linux-efi@vger.kernel.org
7467 S:      Maintained
7468 F:      drivers/firmware/efi/test/
7469
7470 EFI VARIABLE FILESYSTEM
7471 M:      Jeremy Kerr <jk@ozlabs.org>
7472 M:      Ard Biesheuvel <ardb@kernel.org>
7473 L:      linux-efi@vger.kernel.org
7474 S:      Maintained
7475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7476 F:      fs/efivarfs/
7477
7478 EFIFB FRAMEBUFFER DRIVER
7479 M:      Peter Jones <pjones@redhat.com>
7480 L:      linux-fbdev@vger.kernel.org
7481 S:      Maintained
7482 F:      drivers/video/fbdev/efifb.c
7483
7484 EFS FILESYSTEM
7485 S:      Orphan
7486 W:      http://aeschi.ch.eu.org/efs/
7487 F:      fs/efs/
7488
7489 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7490 M:      Douglas Miller <dougmill@linux.ibm.com>
7491 L:      netdev@vger.kernel.org
7492 S:      Maintained
7493 F:      drivers/net/ethernet/ibm/ehea/
7494
7495 ELM327 CAN NETWORK DRIVER
7496 M:      Max Staudt <max@enpas.org>
7497 L:      linux-can@vger.kernel.org
7498 S:      Maintained
7499 F:      Documentation/networking/device_drivers/can/can327.rst
7500 F:      drivers/net/can/can327.c
7501
7502 EM28XX VIDEO4LINUX DRIVER
7503 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7504 L:      linux-media@vger.kernel.org
7505 S:      Maintained
7506 W:      https://linuxtv.org
7507 T:      git git://linuxtv.org/media_tree.git
7508 F:      Documentation/admin-guide/media/em28xx*
7509 F:      drivers/media/usb/em28xx/
7510
7511 EMBEDDED LINUX
7512 M:      Olivia Mackall <olivia@selenic.com>
7513 M:      David Woodhouse <dwmw2@infradead.org>
7514 L:      linux-embedded@vger.kernel.org
7515 S:      Maintained
7516
7517 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7518 M:      Adrian Hunter <adrian.hunter@intel.com>
7519 M:      Ritesh Harjani <riteshh@codeaurora.org>
7520 M:      Asutosh Das <asutoshd@codeaurora.org>
7521 L:      linux-mmc@vger.kernel.org
7522 S:      Supported
7523 F:      drivers/mmc/host/cqhci*
7524
7525 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7526 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7527 L:      linux-scsi@vger.kernel.org
7528 S:      Supported
7529 W:      http://www.broadcom.com
7530 F:      drivers/scsi/be2iscsi/
7531
7532 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7533 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7534 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7535 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7536 L:      netdev@vger.kernel.org
7537 S:      Supported
7538 W:      http://www.emulex.com
7539 F:      drivers/net/ethernet/emulex/benet/
7540
7541 EMULEX ONECONNECT ROCE DRIVER
7542 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7543 L:      linux-rdma@vger.kernel.org
7544 S:      Odd Fixes
7545 W:      http://www.broadcom.com
7546 F:      drivers/infiniband/hw/ocrdma/
7547 F:      include/uapi/rdma/ocrdma-abi.h
7548
7549 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7550 M:      James Smart <james.smart@broadcom.com>
7551 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7552 L:      linux-scsi@vger.kernel.org
7553 S:      Supported
7554 W:      http://www.broadcom.com
7555 F:      drivers/scsi/lpfc/
7556
7557 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7558 M:      James Smart <james.smart@broadcom.com>
7559 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7560 L:      linux-scsi@vger.kernel.org
7561 L:      target-devel@vger.kernel.org
7562 S:      Supported
7563 W:      http://www.broadcom.com
7564 F:      drivers/scsi/elx/
7565
7566 ENE CB710 FLASH CARD READER DRIVER
7567 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7568 S:      Maintained
7569 F:      drivers/misc/cb710/
7570 F:      drivers/mmc/host/cb710-mmc.*
7571 F:      include/linux/cb710.h
7572
7573 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7574 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7575 S:      Maintained
7576 F:      drivers/media/rc/ene_ir.*
7577
7578 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7579 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7580 L:      linuxppc-dev@lists.ozlabs.org
7581 S:      Maintained
7582 F:      drivers/tty/ehv_bytechan.c
7583
7584 EPSON S1D13XXX FRAMEBUFFER DRIVER
7585 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7586 S:      Maintained
7587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7588 F:      drivers/video/fbdev/s1d13xxxfb.c
7589 F:      include/video/s1d13xxxfb.h
7590
7591 EROFS FILE SYSTEM
7592 M:      Gao Xiang <xiang@kernel.org>
7593 M:      Chao Yu <chao@kernel.org>
7594 R:      Yue Hu <huyue2@coolpad.com>
7595 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7596 L:      linux-erofs@lists.ozlabs.org
7597 S:      Maintained
7598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7599 F:      Documentation/ABI/testing/sysfs-fs-erofs
7600 F:      Documentation/filesystems/erofs.rst
7601 F:      fs/erofs/
7602 F:      include/trace/events/erofs.h
7603
7604 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7605 M:      Jeff Layton <jlayton@kernel.org>
7606 S:      Maintained
7607 F:      include/linux/errseq.h
7608 F:      lib/errseq.c
7609
7610 ESD CAN/USB DRIVERS
7611 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7612 R:      socketcan@esd.eu
7613 L:      linux-can@vger.kernel.org
7614 S:      Maintained
7615 F:      drivers/net/can/usb/esd_usb.c
7616
7617 ET131X NETWORK DRIVER
7618 M:      Mark Einon <mark.einon@gmail.com>
7619 S:      Odd Fixes
7620 F:      drivers/net/ethernet/agere/
7621
7622 ETAS ES58X CAN/USB DRIVER
7623 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7624 L:      linux-can@vger.kernel.org
7625 S:      Maintained
7626 F:      Documentation/networking/devlink/etas_es58x.rst
7627 F:      drivers/net/can/usb/etas_es58x/
7628
7629 ETHERNET BRIDGE
7630 M:      Roopa Prabhu <roopa@nvidia.com>
7631 M:      Nikolay Aleksandrov <razor@blackwall.org>
7632 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7633 L:      netdev@vger.kernel.org
7634 S:      Maintained
7635 W:      http://www.linuxfoundation.org/en/Net:Bridge
7636 F:      include/linux/netfilter_bridge/
7637 F:      net/bridge/
7638
7639 ETHERNET PHY LIBRARY
7640 M:      Andrew Lunn <andrew@lunn.ch>
7641 M:      Heiner Kallweit <hkallweit1@gmail.com>
7642 R:      Russell King <linux@armlinux.org.uk>
7643 L:      netdev@vger.kernel.org
7644 S:      Maintained
7645 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7646 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7647 F:      Documentation/devicetree/bindings/net/mdio*
7648 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7649 F:      Documentation/networking/phy.rst
7650 F:      drivers/net/mdio/
7651 F:      drivers/net/mdio/acpi_mdio.c
7652 F:      drivers/net/mdio/fwnode_mdio.c
7653 F:      drivers/net/mdio/of_mdio.c
7654 F:      drivers/net/pcs/
7655 F:      drivers/net/phy/
7656 F:      include/dt-bindings/net/qca-ar803x.h
7657 F:      include/linux/linkmode.h
7658 F:      include/linux/*mdio*.h
7659 F:      include/linux/mdio/*.h
7660 F:      include/linux/mii.h
7661 F:      include/linux/of_net.h
7662 F:      include/linux/phy.h
7663 F:      include/linux/phy_fixed.h
7664 F:      include/linux/platform_data/mdio-bcm-unimac.h
7665 F:      include/linux/platform_data/mdio-gpio.h
7666 F:      include/trace/events/mdio.h
7667 F:      include/uapi/linux/mdio.h
7668 F:      include/uapi/linux/mii.h
7669 F:      net/core/of_net.c
7670
7671 EXEC & BINFMT API
7672 R:      Eric Biederman <ebiederm@xmission.com>
7673 R:      Kees Cook <keescook@chromium.org>
7674 L:      linux-mm@kvack.org
7675 S:      Supported
7676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7677 F:      fs/*binfmt_*.c
7678 F:      fs/exec.c
7679 F:      include/linux/binfmts.h
7680 F:      include/linux/elf.h
7681 F:      include/uapi/linux/binfmts.h
7682 F:      include/uapi/linux/elf.h
7683 F:      tools/testing/selftests/exec/
7684 N:      asm/elf.h
7685 N:      binfmt
7686
7687 EXFAT FILE SYSTEM
7688 M:      Namjae Jeon <linkinjeon@kernel.org>
7689 M:      Sungjong Seo <sj1557.seo@samsung.com>
7690 L:      linux-fsdevel@vger.kernel.org
7691 S:      Maintained
7692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7693 F:      fs/exfat/
7694
7695 EXT2 FILE SYSTEM
7696 M:      Jan Kara <jack@suse.com>
7697 L:      linux-ext4@vger.kernel.org
7698 S:      Maintained
7699 F:      Documentation/filesystems/ext2.rst
7700 F:      fs/ext2/
7701 F:      include/linux/ext2*
7702
7703 EXT4 FILE SYSTEM
7704 M:      "Theodore Ts'o" <tytso@mit.edu>
7705 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7706 L:      linux-ext4@vger.kernel.org
7707 S:      Maintained
7708 W:      http://ext4.wiki.kernel.org
7709 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7711 F:      Documentation/filesystems/ext4/
7712 F:      fs/ext4/
7713 F:      include/trace/events/ext4.h
7714
7715 Extended Verification Module (EVM)
7716 M:      Mimi Zohar <zohar@linux.ibm.com>
7717 L:      linux-integrity@vger.kernel.org
7718 S:      Supported
7719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7720 F:      security/integrity/evm/
7721 F:      security/integrity/
7722
7723 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7724 M:      Ard Biesheuvel <ardb@kernel.org>
7725 L:      linux-efi@vger.kernel.org
7726 S:      Maintained
7727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7728 F:      Documentation/admin-guide/efi-stub.rst
7729 F:      arch/*/include/asm/efi.h
7730 F:      arch/*/kernel/efi.c
7731 F:      arch/arm/boot/compressed/efi-header.S
7732 F:      arch/x86/platform/efi/
7733 F:      drivers/firmware/efi/
7734 F:      include/linux/efi*.h
7735
7736 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7737 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7738 M:      Chanwoo Choi <cw00.choi@samsung.com>
7739 L:      linux-kernel@vger.kernel.org
7740 S:      Maintained
7741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7742 F:      Documentation/devicetree/bindings/extcon/
7743 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7744 F:      drivers/extcon/
7745 F:      include/linux/extcon.h
7746 F:      include/linux/extcon/
7747
7748 EXTRA BOOT CONFIG
7749 M:      Masami Hiramatsu <mhiramat@kernel.org>
7750 L:      linux-kernel@vger.kernel.org
7751 L:      linux-trace-kernel@vger.kernel.org
7752 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7753 S:      Maintained
7754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7755 F:      Documentation/admin-guide/bootconfig.rst
7756 F:      fs/proc/bootconfig.c
7757 F:      include/linux/bootconfig.h
7758 F:      lib/bootconfig-data.S
7759 F:      lib/bootconfig.c
7760 F:      tools/bootconfig/*
7761 F:      tools/bootconfig/scripts/*
7762
7763 EXYNOS DP DRIVER
7764 M:      Jingoo Han <jingoohan1@gmail.com>
7765 L:      dri-devel@lists.freedesktop.org
7766 S:      Maintained
7767 F:      drivers/gpu/drm/exynos/exynos_dp*
7768
7769 EXYNOS SYSMMU (IOMMU) driver
7770 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7771 L:      iommu@lists.linux.dev
7772 S:      Maintained
7773 F:      drivers/iommu/exynos-iommu.c
7774
7775 F2FS FILE SYSTEM
7776 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7777 M:      Chao Yu <chao@kernel.org>
7778 L:      linux-f2fs-devel@lists.sourceforge.net
7779 S:      Maintained
7780 W:      https://f2fs.wiki.kernel.org/
7781 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7783 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7784 F:      Documentation/filesystems/f2fs.rst
7785 F:      fs/f2fs/
7786 F:      include/linux/f2fs_fs.h
7787 F:      include/trace/events/f2fs.h
7788 F:      include/uapi/linux/f2fs.h
7789
7790 F71805F HARDWARE MONITORING DRIVER
7791 M:      Jean Delvare <jdelvare@suse.com>
7792 L:      linux-hwmon@vger.kernel.org
7793 S:      Maintained
7794 F:      Documentation/hwmon/f71805f.rst
7795 F:      drivers/hwmon/f71805f.c
7796
7797 FADDR2LINE
7798 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7799 S:      Maintained
7800 F:      scripts/faddr2line
7801
7802 FAILOVER MODULE
7803 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7804 L:      netdev@vger.kernel.org
7805 S:      Supported
7806 F:      Documentation/networking/failover.rst
7807 F:      include/net/failover.h
7808 F:      net/core/failover.c
7809
7810 FANOTIFY
7811 M:      Jan Kara <jack@suse.cz>
7812 R:      Amir Goldstein <amir73il@gmail.com>
7813 R:      Matthew Bobrowski <repnop@google.com>
7814 L:      linux-fsdevel@vger.kernel.org
7815 S:      Maintained
7816 F:      fs/notify/fanotify/
7817 F:      include/linux/fanotify.h
7818 F:      include/uapi/linux/fanotify.h
7819
7820 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7821 M:      Linus Walleij <linus.walleij@linaro.org>
7822 L:      linux-usb@vger.kernel.org
7823 S:      Maintained
7824 F:      drivers/usb/fotg210/
7825
7826 FARSYNC SYNCHRONOUS DRIVER
7827 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7828 S:      Supported
7829 W:      http://www.farsite.co.uk/
7830 F:      drivers/net/wan/farsync.*
7831
7832 FAULT INJECTION SUPPORT
7833 M:      Akinobu Mita <akinobu.mita@gmail.com>
7834 S:      Supported
7835 F:      Documentation/fault-injection/
7836 F:      lib/fault-inject.c
7837
7838 FBTFT Framebuffer drivers
7839 L:      dri-devel@lists.freedesktop.org
7840 L:      linux-fbdev@vger.kernel.org
7841 S:      Orphan
7842 F:      drivers/staging/fbtft/
7843
7844 FC0011 TUNER DRIVER
7845 M:      Michael Buesch <m@bues.ch>
7846 L:      linux-media@vger.kernel.org
7847 S:      Maintained
7848 F:      drivers/media/tuners/fc0011.c
7849 F:      drivers/media/tuners/fc0011.h
7850
7851 FC2580 MEDIA DRIVER
7852 M:      Antti Palosaari <crope@iki.fi>
7853 L:      linux-media@vger.kernel.org
7854 S:      Maintained
7855 W:      https://linuxtv.org
7856 W:      http://palosaari.fi/linux/
7857 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7858 T:      git git://linuxtv.org/anttip/media_tree.git
7859 F:      drivers/media/tuners/fc2580*
7860
7861 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7862 M:      Hannes Reinecke <hare@suse.de>
7863 L:      linux-scsi@vger.kernel.org
7864 S:      Supported
7865 W:      www.Open-FCoE.org
7866 F:      drivers/scsi/fcoe/
7867 F:      drivers/scsi/libfc/
7868 F:      include/scsi/fc/
7869 F:      include/scsi/libfc.h
7870 F:      include/scsi/libfcoe.h
7871 F:      include/uapi/scsi/fc/
7872
7873 FILE LOCKING (flock() and fcntl()/lockf())
7874 M:      Jeff Layton <jlayton@kernel.org>
7875 M:      Chuck Lever <chuck.lever@oracle.com>
7876 L:      linux-fsdevel@vger.kernel.org
7877 S:      Maintained
7878 F:      fs/fcntl.c
7879 F:      fs/locks.c
7880 F:      include/linux/fcntl.h
7881 F:      include/uapi/linux/fcntl.h
7882
7883 FILESYSTEM DIRECT ACCESS (DAX)
7884 M:      Dan Williams <dan.j.williams@intel.com>
7885 R:      Matthew Wilcox <willy@infradead.org>
7886 R:      Jan Kara <jack@suse.cz>
7887 L:      linux-fsdevel@vger.kernel.org
7888 L:      nvdimm@lists.linux.dev
7889 S:      Supported
7890 F:      fs/dax.c
7891 F:      include/linux/dax.h
7892 F:      include/trace/events/fs_dax.h
7893
7894 FILESYSTEMS (VFS and infrastructure)
7895 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7896 L:      linux-fsdevel@vger.kernel.org
7897 S:      Maintained
7898 F:      fs/*
7899 F:      include/linux/fs.h
7900 F:      include/linux/fs_types.h
7901 F:      include/uapi/linux/fs.h
7902 F:      include/uapi/linux/openat2.h
7903
7904 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7905 M:      Riku Voipio <riku.voipio@iki.fi>
7906 L:      linux-hwmon@vger.kernel.org
7907 S:      Maintained
7908 F:      drivers/hwmon/f75375s.c
7909 F:      include/linux/f75375s.h
7910
7911 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7912 M:      Clemens Ladisch <clemens@ladisch.de>
7913 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7914 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7915 S:      Maintained
7916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7917 F:      include/uapi/sound/firewire.h
7918 F:      sound/firewire/
7919
7920 FIREWIRE MEDIA DRIVERS (firedtv)
7921 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7922 L:      linux-media@vger.kernel.org
7923 L:      linux1394-devel@lists.sourceforge.net
7924 S:      Maintained
7925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7926 F:      drivers/media/firewire/
7927
7928 FIREWIRE SBP-2 TARGET
7929 M:      Chris Boot <bootc@bootc.net>
7930 L:      linux-scsi@vger.kernel.org
7931 L:      target-devel@vger.kernel.org
7932 L:      linux1394-devel@lists.sourceforge.net
7933 S:      Maintained
7934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7935 F:      drivers/target/sbp/
7936
7937 FIREWIRE SUBSYSTEM
7938 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7939 L:      linux1394-devel@lists.sourceforge.net
7940 S:      Maintained
7941 W:      http://ieee1394.wiki.kernel.org/
7942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7943 F:      drivers/firewire/
7944 F:      include/linux/firewire.h
7945 F:      include/uapi/linux/firewire*.h
7946 F:      tools/firewire/
7947
7948 FIRMWARE FRAMEWORK FOR ARMV8-A
7949 M:      Sudeep Holla <sudeep.holla@arm.com>
7950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7951 S:      Maintained
7952 F:      drivers/firmware/arm_ffa/
7953 F:      include/linux/arm_ffa.h
7954
7955 FIRMWARE LOADER (request_firmware)
7956 M:      Luis Chamberlain <mcgrof@kernel.org>
7957 M:      Russ Weight <russell.h.weight@intel.com>
7958 L:      linux-kernel@vger.kernel.org
7959 S:      Maintained
7960 F:      Documentation/firmware_class/
7961 F:      drivers/base/firmware_loader/
7962 F:      include/linux/firmware.h
7963
7964 FLEXTIMER FTM-QUADDEC DRIVER
7965 M:      Patrick Havelange <patrick.havelange@essensium.com>
7966 L:      linux-iio@vger.kernel.org
7967 S:      Maintained
7968 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7969 F:      drivers/counter/ftm-quaddec.c
7970
7971 FLOPPY DRIVER
7972 M:      Denis Efremov <efremov@linux.com>
7973 L:      linux-block@vger.kernel.org
7974 S:      Odd Fixes
7975 F:      drivers/block/floppy.c
7976
7977 FLYSKY FSIA6B RC RECEIVER
7978 M:      Markus Koch <markus@notsyncing.net>
7979 L:      linux-input@vger.kernel.org
7980 S:      Maintained
7981 F:      drivers/input/joystick/fsia6b.c
7982
7983 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7984 M:      Geoffrey D. Bennett <g@b4.vu>
7985 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7986 S:      Maintained
7987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7988 F:      sound/usb/mixer_scarlett_gen2.c
7989
7990 FORCEDETH GIGABIT ETHERNET DRIVER
7991 M:      Rain River <rain.1986.08.12@gmail.com>
7992 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7993 L:      netdev@vger.kernel.org
7994 S:      Maintained
7995 F:      drivers/net/ethernet/nvidia/*
7996
7997 FORTIFY_SOURCE
7998 M:      Kees Cook <keescook@chromium.org>
7999 L:      linux-hardening@vger.kernel.org
8000 S:      Supported
8001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8002 F:      include/linux/fortify-string.h
8003 F:      lib/fortify_kunit.c
8004 F:      lib/memcpy_kunit.c
8005 F:      lib/strscpy_kunit.c
8006 F:      lib/test_fortify/*
8007 F:      scripts/test_fortify.sh
8008 K:      \b__NO_FORTIFY\b
8009
8010 FPGA DFL DRIVERS
8011 M:      Wu Hao <hao.wu@intel.com>
8012 R:      Tom Rix <trix@redhat.com>
8013 L:      linux-fpga@vger.kernel.org
8014 S:      Maintained
8015 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8016 F:      Documentation/fpga/dfl.rst
8017 F:      drivers/fpga/dfl*
8018 F:      drivers/uio/uio_dfl.c
8019 F:      include/linux/dfl.h
8020 F:      include/uapi/linux/fpga-dfl.h
8021
8022 FPGA MANAGER FRAMEWORK
8023 M:      Moritz Fischer <mdf@kernel.org>
8024 M:      Wu Hao <hao.wu@intel.com>
8025 M:      Xu Yilun <yilun.xu@intel.com>
8026 R:      Tom Rix <trix@redhat.com>
8027 L:      linux-fpga@vger.kernel.org
8028 S:      Maintained
8029 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8031 F:      Documentation/devicetree/bindings/fpga/
8032 F:      Documentation/driver-api/fpga/
8033 F:      Documentation/fpga/
8034 F:      drivers/fpga/
8035 F:      include/linux/fpga/
8036
8037 INTEL MAX10 BMC SECURE UPDATES
8038 M:      Russ Weight <russell.h.weight@intel.com>
8039 L:      linux-fpga@vger.kernel.org
8040 S:      Maintained
8041 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8042 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8043
8044 MICROCHIP POLARFIRE FPGA DRIVERS
8045 M:      Conor Dooley <conor.dooley@microchip.com>
8046 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8047 L:      linux-fpga@vger.kernel.org
8048 S:      Supported
8049 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8050 F:      drivers/fpga/microchip-spi.c
8051
8052 FPU EMULATOR
8053 M:      Bill Metzenthen <billm@melbpc.org.au>
8054 S:      Maintained
8055 W:      https://floatingpoint.billm.au/
8056 F:      arch/x86/math-emu/
8057
8058 FRAMEBUFFER CORE
8059 M:      Daniel Vetter <daniel@ffwll.ch>
8060 F:      drivers/video/fbdev/core/
8061 S:      Odd Fixes
8062 T:      git git://anongit.freedesktop.org/drm/drm-misc
8063
8064 FRAMEBUFFER LAYER
8065 M:      Helge Deller <deller@gmx.de>
8066 L:      linux-fbdev@vger.kernel.org
8067 L:      dri-devel@lists.freedesktop.org
8068 S:      Maintained
8069 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8071 F:      Documentation/fb/
8072 F:      drivers/video/
8073 F:      include/linux/fb.h
8074 F:      include/uapi/linux/fb.h
8075 F:      include/uapi/video/
8076 F:      include/video/
8077
8078 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8079 M:      Horia Geantă <horia.geanta@nxp.com>
8080 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8081 M:      Gaurav Jain <gaurav.jain@nxp.com>
8082 L:      linux-crypto@vger.kernel.org
8083 S:      Maintained
8084 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8085 F:      drivers/crypto/caam/
8086
8087 FREESCALE COLDFIRE M5441X MMC DRIVER
8088 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8089 L:      linux-mmc@vger.kernel.org
8090 S:      Maintained
8091 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8092 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8093
8094 FREESCALE DIU FRAMEBUFFER DRIVER
8095 M:      Timur Tabi <timur@kernel.org>
8096 L:      linux-fbdev@vger.kernel.org
8097 S:      Maintained
8098 F:      drivers/video/fbdev/fsl-diu-fb.*
8099
8100 FREESCALE DMA DRIVER
8101 M:      Li Yang <leoyang.li@nxp.com>
8102 M:      Zhang Wei <zw@zh-kernel.org>
8103 L:      linuxppc-dev@lists.ozlabs.org
8104 S:      Maintained
8105 F:      drivers/dma/fsldma.*
8106
8107 FREESCALE DSPI DRIVER
8108 M:      Vladimir Oltean <olteanv@gmail.com>
8109 L:      linux-spi@vger.kernel.org
8110 S:      Maintained
8111 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8112 F:      drivers/spi/spi-fsl-dspi.c
8113 F:      include/linux/spi/spi-fsl-dspi.h
8114
8115 FREESCALE ENETC ETHERNET DRIVERS
8116 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8117 L:      netdev@vger.kernel.org
8118 S:      Maintained
8119 F:      drivers/net/ethernet/freescale/enetc/
8120
8121 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8122 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8123 L:      netdev@vger.kernel.org
8124 S:      Maintained
8125 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8126 F:      drivers/net/ethernet/freescale/gianfar*
8127
8128 FREESCALE GPMI NAND DRIVER
8129 M:      Han Xu <han.xu@nxp.com>
8130 L:      linux-mtd@lists.infradead.org
8131 S:      Maintained
8132 F:      drivers/mtd/nand/raw/gpmi-nand/*
8133
8134 FREESCALE I2C CPM DRIVER
8135 M:      Jochen Friedrich <jochen@scram.de>
8136 L:      linuxppc-dev@lists.ozlabs.org
8137 L:      linux-i2c@vger.kernel.org
8138 S:      Maintained
8139 F:      drivers/i2c/busses/i2c-cpm.c
8140
8141 FREESCALE IMX / MXC FEC DRIVER
8142 M:      Wei Fang <wei.fang@nxp.com>
8143 R:      Shenwei Wang <shenwei.wang@nxp.com>
8144 R:      Clark Wang <xiaoning.wang@nxp.com>
8145 R:      NXP Linux Team <linux-imx@nxp.com>
8146 L:      netdev@vger.kernel.org
8147 S:      Maintained
8148 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8149 F:      drivers/net/ethernet/freescale/fec.h
8150 F:      drivers/net/ethernet/freescale/fec_main.c
8151 F:      drivers/net/ethernet/freescale/fec_ptp.c
8152
8153 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8154 M:      Sascha Hauer <s.hauer@pengutronix.de>
8155 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8156 L:      linux-fbdev@vger.kernel.org
8157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8158 S:      Maintained
8159 F:      drivers/video/fbdev/imxfb.c
8160
8161 FREESCALE IMX DDR PMU DRIVER
8162 M:      Frank Li <Frank.li@nxp.com>
8163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8164 S:      Maintained
8165 F:      Documentation/admin-guide/perf/imx-ddr.rst
8166 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8167 F:      drivers/perf/fsl_imx8_ddr_perf.c
8168
8169 FREESCALE IMX I2C DRIVER
8170 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8171 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8172 L:      linux-i2c@vger.kernel.org
8173 S:      Maintained
8174 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8175 F:      drivers/i2c/busses/i2c-imx.c
8176
8177 FREESCALE IMX LPI2C DRIVER
8178 M:      Dong Aisheng <aisheng.dong@nxp.com>
8179 L:      linux-i2c@vger.kernel.org
8180 L:      linux-imx@nxp.com
8181 S:      Maintained
8182 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8183 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8184
8185 FREESCALE MPC I2C DRIVER
8186 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8187 L:      linux-i2c@vger.kernel.org
8188 S:      Maintained
8189 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8190 F:      drivers/i2c/busses/i2c-mpc.c
8191
8192 FREESCALE QORIQ DPAA ETHERNET DRIVER
8193 M:      Madalin Bucur <madalin.bucur@nxp.com>
8194 L:      netdev@vger.kernel.org
8195 S:      Maintained
8196 F:      drivers/net/ethernet/freescale/dpaa
8197
8198 FREESCALE QORIQ DPAA FMAN DRIVER
8199 M:      Madalin Bucur <madalin.bucur@nxp.com>
8200 L:      netdev@vger.kernel.org
8201 S:      Maintained
8202 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8203 F:      drivers/net/ethernet/freescale/fman
8204
8205 FREESCALE QORIQ PTP CLOCK DRIVER
8206 M:      Yangbo Lu <yangbo.lu@nxp.com>
8207 L:      netdev@vger.kernel.org
8208 S:      Maintained
8209 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8210 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8211 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8212 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8213 F:      drivers/ptp/ptp_qoriq.c
8214 F:      drivers/ptp/ptp_qoriq_debugfs.c
8215 F:      include/linux/fsl/ptp_qoriq.h
8216
8217 FREESCALE QUAD SPI DRIVER
8218 M:      Han Xu <han.xu@nxp.com>
8219 L:      linux-spi@vger.kernel.org
8220 S:      Maintained
8221 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8222 F:      drivers/spi/spi-fsl-qspi.c
8223
8224 FREESCALE QUICC ENGINE LIBRARY
8225 M:      Qiang Zhao <qiang.zhao@nxp.com>
8226 L:      linuxppc-dev@lists.ozlabs.org
8227 S:      Maintained
8228 F:      drivers/soc/fsl/qe/
8229 F:      include/soc/fsl/qe/
8230
8231 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8232 M:      Li Yang <leoyang.li@nxp.com>
8233 L:      netdev@vger.kernel.org
8234 L:      linuxppc-dev@lists.ozlabs.org
8235 S:      Maintained
8236 F:      drivers/net/ethernet/freescale/ucc_geth*
8237
8238 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8239 M:      Zhao Qiang <qiang.zhao@nxp.com>
8240 L:      netdev@vger.kernel.org
8241 L:      linuxppc-dev@lists.ozlabs.org
8242 S:      Maintained
8243 F:      drivers/net/wan/fsl_ucc_hdlc*
8244
8245 FREESCALE QUICC ENGINE UCC UART DRIVER
8246 M:      Timur Tabi <timur@kernel.org>
8247 L:      linuxppc-dev@lists.ozlabs.org
8248 S:      Maintained
8249 F:      drivers/tty/serial/ucc_uart.c
8250
8251 FREESCALE SOC DRIVERS
8252 M:      Li Yang <leoyang.li@nxp.com>
8253 L:      linuxppc-dev@lists.ozlabs.org
8254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8255 S:      Maintained
8256 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8257 F:      Documentation/devicetree/bindings/soc/fsl/
8258 F:      drivers/soc/fsl/
8259 F:      include/linux/fsl/
8260 F:      include/soc/fsl/
8261
8262 FREESCALE SOC FS_ENET DRIVER
8263 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8264 L:      linuxppc-dev@lists.ozlabs.org
8265 L:      netdev@vger.kernel.org
8266 S:      Maintained
8267 F:      drivers/net/ethernet/freescale/fs_enet/
8268 F:      include/linux/fs_enet_pd.h
8269
8270 FREESCALE SOC SOUND DRIVERS
8271 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8272 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8273 R:      Fabio Estevam <festevam@gmail.com>
8274 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8275 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8276 L:      linuxppc-dev@lists.ozlabs.org
8277 S:      Maintained
8278 F:      sound/soc/fsl/fsl*
8279 F:      sound/soc/fsl/imx*
8280 F:      sound/soc/fsl/mpc8610_hpcd.c
8281
8282 FREESCALE USB PERIPHERAL DRIVERS
8283 M:      Li Yang <leoyang.li@nxp.com>
8284 L:      linux-usb@vger.kernel.org
8285 L:      linuxppc-dev@lists.ozlabs.org
8286 S:      Maintained
8287 F:      drivers/usb/gadget/udc/fsl*
8288
8289 FREESCALE USB PHY DRIVER
8290 M:      Ran Wang <ran.wang_1@nxp.com>
8291 L:      linux-usb@vger.kernel.org
8292 L:      linuxppc-dev@lists.ozlabs.org
8293 S:      Maintained
8294 F:      drivers/usb/phy/phy-fsl-usb*
8295
8296 FREEVXFS FILESYSTEM
8297 M:      Christoph Hellwig <hch@infradead.org>
8298 S:      Maintained
8299 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8300 F:      fs/freevxfs/
8301
8302 FREEZER
8303 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8304 M:      Pavel Machek <pavel@ucw.cz>
8305 L:      linux-pm@vger.kernel.org
8306 S:      Supported
8307 F:      Documentation/power/freezing-of-tasks.rst
8308 F:      include/linux/freezer.h
8309 F:      kernel/freezer.c
8310
8311 FRONTSWAP API
8312 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8313 L:      linux-kernel@vger.kernel.org
8314 S:      Maintained
8315 F:      include/linux/frontswap.h
8316 F:      mm/frontswap.c
8317
8318 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8319 M:      David Howells <dhowells@redhat.com>
8320 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8321 S:      Supported
8322 F:      Documentation/filesystems/caching/
8323 F:      fs/fscache/
8324 F:      include/linux/fscache*.h
8325
8326 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8327 M:      Eric Biggers <ebiggers@kernel.org>
8328 M:      Theodore Y. Ts'o <tytso@mit.edu>
8329 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8330 L:      linux-fscrypt@vger.kernel.org
8331 S:      Supported
8332 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8333 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8334 F:      Documentation/filesystems/fscrypt.rst
8335 F:      fs/crypto/
8336 F:      include/linux/fscrypt.h
8337 F:      include/uapi/linux/fscrypt.h
8338
8339 FSI SUBSYSTEM
8340 M:      Jeremy Kerr <jk@ozlabs.org>
8341 M:      Joel Stanley <joel@jms.id.au>
8342 R:      Alistar Popple <alistair@popple.id.au>
8343 R:      Eddie James <eajames@linux.ibm.com>
8344 L:      linux-fsi@lists.ozlabs.org
8345 S:      Supported
8346 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8348 F:      drivers/fsi/
8349 F:      include/linux/fsi*.h
8350 F:      include/trace/events/fsi*.h
8351
8352 FSI-ATTACHED I2C DRIVER
8353 M:      Eddie James <eajames@linux.ibm.com>
8354 L:      linux-i2c@vger.kernel.org
8355 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8356 S:      Maintained
8357 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8358 F:      drivers/i2c/busses/i2c-fsi.c
8359
8360 FSI-ATTACHED SPI DRIVER
8361 M:      Eddie James <eajames@linux.ibm.com>
8362 L:      linux-spi@vger.kernel.org
8363 S:      Maintained
8364 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8365 F:      drivers/spi/spi-fsi.c
8366
8367 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8368 M:      Jan Kara <jack@suse.cz>
8369 R:      Amir Goldstein <amir73il@gmail.com>
8370 L:      linux-fsdevel@vger.kernel.org
8371 S:      Maintained
8372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8373 F:      fs/notify/
8374 F:      include/linux/fsnotify*.h
8375
8376 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8377 M:      Eric Biggers <ebiggers@kernel.org>
8378 M:      Theodore Y. Ts'o <tytso@mit.edu>
8379 L:      fsverity@lists.linux.dev
8380 S:      Supported
8381 Q:      https://patchwork.kernel.org/project/fsverity/list/
8382 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8383 F:      Documentation/filesystems/fsverity.rst
8384 F:      fs/verity/
8385 F:      include/linux/fsverity.h
8386 F:      include/uapi/linux/fsverity.h
8387
8388 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8389 M:      Michael Zaidman <michael.zaidman@gmail.com>
8390 L:      linux-i2c@vger.kernel.org
8391 L:      linux-input@vger.kernel.org
8392 S:      Maintained
8393 F:      drivers/hid/hid-ft260.c
8394
8395 FUJITSU LAPTOP EXTRAS
8396 M:      Jonathan Woithe <jwoithe@just42.net>
8397 L:      platform-driver-x86@vger.kernel.org
8398 S:      Maintained
8399 F:      drivers/platform/x86/fujitsu-laptop.c
8400
8401 FUJITSU M-5MO LS CAMERA ISP DRIVER
8402 M:      Kyungmin Park <kyungmin.park@samsung.com>
8403 M:      Heungjun Kim <riverful.kim@samsung.com>
8404 L:      linux-media@vger.kernel.org
8405 S:      Maintained
8406 F:      drivers/media/i2c/m5mols/
8407 F:      include/media/i2c/m5mols.h
8408
8409 FUJITSU TABLET EXTRAS
8410 M:      Robert Gerlach <khnz@gmx.de>
8411 L:      platform-driver-x86@vger.kernel.org
8412 S:      Maintained
8413 F:      drivers/platform/x86/fujitsu-tablet.c
8414
8415 FUNCTION HOOKS (FTRACE)
8416 M:      Steven Rostedt <rostedt@goodmis.org>
8417 M:      Masami Hiramatsu <mhiramat@kernel.org>
8418 R:      Mark Rutland <mark.rutland@arm.com>
8419 L:      linux-kernel@vger.kernel.org
8420 L:      linux-trace-kernel@vger.kernel.org
8421 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8422 S:      Maintained
8423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8424 F:      Documentation/trace/ftrace*
8425 F:      kernel/trace/ftrace*
8426 F:      kernel/trace/fgraph.c
8427 F:      arch/*/*/*/*ftrace*
8428 F:      arch/*/*/*ftrace*
8429 F:      include/*/ftrace.h
8430 F:      samples/ftrace
8431
8432 FUNGIBLE ETHERNET DRIVERS
8433 M:      Dimitris Michailidis <dmichail@fungible.com>
8434 L:      netdev@vger.kernel.org
8435 S:      Supported
8436 F:      drivers/net/ethernet/fungible/
8437
8438 FUSE: FILESYSTEM IN USERSPACE
8439 M:      Miklos Szeredi <miklos@szeredi.hu>
8440 L:      linux-fsdevel@vger.kernel.org
8441 S:      Maintained
8442 W:      https://github.com/libfuse/
8443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8444 F:      Documentation/filesystems/fuse.rst
8445 F:      fs/fuse/
8446 F:      include/uapi/linux/fuse.h
8447
8448 FUTEX SUBSYSTEM
8449 M:      Thomas Gleixner <tglx@linutronix.de>
8450 M:      Ingo Molnar <mingo@redhat.com>
8451 R:      Peter Zijlstra <peterz@infradead.org>
8452 R:      Darren Hart <dvhart@infradead.org>
8453 R:      Davidlohr Bueso <dave@stgolabs.net>
8454 R:      André Almeida <andrealmeid@igalia.com>
8455 L:      linux-kernel@vger.kernel.org
8456 S:      Maintained
8457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8458 F:      Documentation/locking/*futex*
8459 F:      include/asm-generic/futex.h
8460 F:      include/linux/futex.h
8461 F:      include/uapi/linux/futex.h
8462 F:      kernel/futex/*
8463 F:      tools/perf/bench/futex*
8464 F:      tools/testing/selftests/futex/
8465
8466 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8467 M:      Tim Harvey <tharvey@gateworks.com>
8468 S:      Maintained
8469 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8470 F:      drivers/mfd/gateworks-gsc.c
8471 F:      include/linux/mfd/gsc.h
8472 F:      Documentation/hwmon/gsc-hwmon.rst
8473 F:      drivers/hwmon/gsc-hwmon.c
8474 F:      include/linux/platform_data/gsc_hwmon.h
8475
8476 GCC PLUGINS
8477 M:      Kees Cook <keescook@chromium.org>
8478 L:      linux-hardening@vger.kernel.org
8479 S:      Maintained
8480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8481 F:      Documentation/kbuild/gcc-plugins.rst
8482 F:      scripts/Makefile.gcc-plugins
8483 F:      scripts/gcc-plugins/
8484
8485 GCOV BASED KERNEL PROFILING
8486 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8487 S:      Maintained
8488 F:      Documentation/dev-tools/gcov.rst
8489 F:      kernel/gcov/
8490
8491 GDB KERNEL DEBUGGING HELPER SCRIPTS
8492 M:      Jan Kiszka <jan.kiszka@siemens.com>
8493 M:      Kieran Bingham <kbingham@kernel.org>
8494 S:      Supported
8495 F:      scripts/gdb/
8496
8497 GEMINI CRYPTO DRIVER
8498 M:      Corentin Labbe <clabbe@baylibre.com>
8499 L:      linux-crypto@vger.kernel.org
8500 S:      Maintained
8501 F:      drivers/crypto/gemini/
8502
8503 GEMTEK FM RADIO RECEIVER DRIVER
8504 M:      Hans Verkuil <hverkuil@xs4all.nl>
8505 L:      linux-media@vger.kernel.org
8506 S:      Maintained
8507 W:      https://linuxtv.org
8508 T:      git git://linuxtv.org/media_tree.git
8509 F:      drivers/media/radio/radio-gemtek*
8510
8511 GENERIC ARCHITECTURE TOPOLOGY
8512 M:      Sudeep Holla <sudeep.holla@arm.com>
8513 L:      linux-kernel@vger.kernel.org
8514 S:      Maintained
8515 F:      drivers/base/arch_topology.c
8516 F:      include/linux/arch_topology.h
8517
8518 GENERIC ENTRY CODE
8519 M:      Thomas Gleixner <tglx@linutronix.de>
8520 M:      Peter Zijlstra <peterz@infradead.org>
8521 M:      Andy Lutomirski <luto@kernel.org>
8522 L:      linux-kernel@vger.kernel.org
8523 S:      Maintained
8524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8525 F:      include/linux/entry-common.h
8526 F:      include/linux/entry-kvm.h
8527 F:      kernel/entry/
8528
8529 GENERIC GPIO I2C DRIVER
8530 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8531 S:      Supported
8532 F:      drivers/i2c/busses/i2c-gpio.c
8533 F:      include/linux/platform_data/i2c-gpio.h
8534
8535 GENERIC GPIO I2C MULTIPLEXER DRIVER
8536 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8537 L:      linux-i2c@vger.kernel.org
8538 S:      Supported
8539 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8540 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8541 F:      include/linux/platform_data/i2c-mux-gpio.h
8542
8543 GENERIC HDLC (WAN) DRIVERS
8544 M:      Krzysztof Halasa <khc@pm.waw.pl>
8545 S:      Maintained
8546 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8547 F:      drivers/net/wan/c101.c
8548 F:      drivers/net/wan/hd6457*
8549 F:      drivers/net/wan/hdlc*
8550 F:      drivers/net/wan/n2.c
8551 F:      drivers/net/wan/pc300too.c
8552 F:      drivers/net/wan/pci200syn.c
8553 F:      drivers/net/wan/wanxl*
8554
8555 GENERIC INCLUDE/ASM HEADER FILES
8556 M:      Arnd Bergmann <arnd@arndb.de>
8557 L:      linux-arch@vger.kernel.org
8558 S:      Maintained
8559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8560 F:      include/asm-generic/
8561 F:      include/uapi/asm-generic/
8562
8563 GENERIC PHY FRAMEWORK
8564 M:      Vinod Koul <vkoul@kernel.org>
8565 M:      Kishon Vijay Abraham I <kishon@kernel.org>
8566 L:      linux-phy@lists.infradead.org
8567 S:      Supported
8568 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8570 F:      Documentation/devicetree/bindings/phy/
8571 F:      drivers/phy/
8572 F:      include/dt-bindings/phy/
8573 F:      include/linux/phy/
8574
8575 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8576 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8577 S:      Supported
8578 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8579
8580 GENERIC PM DOMAINS
8581 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8582 M:      Kevin Hilman <khilman@kernel.org>
8583 M:      Ulf Hansson <ulf.hansson@linaro.org>
8584 L:      linux-pm@vger.kernel.org
8585 S:      Supported
8586 F:      Documentation/devicetree/bindings/power/power?domain*
8587 F:      drivers/base/power/domain*.c
8588 F:      include/linux/pm_domain.h
8589
8590 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8591 M:      Eugen Hristev <eugen.hristev@microchip.com>
8592 L:      linux-input@vger.kernel.org
8593 S:      Maintained
8594 F:      drivers/input/touchscreen/resistive-adc-touch.c
8595
8596 GENERIC STRING LIBRARY
8597 R:      Andy Shevchenko <andy@kernel.org>
8598 S:      Maintained
8599 F:      lib/string.c
8600 F:      lib/string_helpers.c
8601 F:      lib/test_string.c
8602 F:      lib/test-string_helpers.c
8603
8604 GENERIC UIO DRIVER FOR PCI DEVICES
8605 M:      "Michael S. Tsirkin" <mst@redhat.com>
8606 L:      kvm@vger.kernel.org
8607 S:      Supported
8608 F:      drivers/uio/uio_pci_generic.c
8609
8610 GENERIC VDSO LIBRARY
8611 M:      Andy Lutomirski <luto@kernel.org>
8612 M:      Thomas Gleixner <tglx@linutronix.de>
8613 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8614 L:      linux-kernel@vger.kernel.org
8615 S:      Maintained
8616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8617 F:      include/asm-generic/vdso/vsyscall.h
8618 F:      include/vdso/
8619 F:      kernel/time/vsyscall.c
8620 F:      lib/vdso/
8621
8622 GENWQE (IBM Generic Workqueue Card)
8623 M:      Frank Haverkamp <haver@linux.ibm.com>
8624 S:      Supported
8625 F:      drivers/misc/genwqe/
8626
8627 GET_MAINTAINER SCRIPT
8628 M:      Joe Perches <joe@perches.com>
8629 S:      Maintained
8630 F:      scripts/get_maintainer.pl
8631
8632 GFS2 FILE SYSTEM
8633 M:      Bob Peterson <rpeterso@redhat.com>
8634 M:      Andreas Gruenbacher <agruenba@redhat.com>
8635 L:      cluster-devel@redhat.com
8636 S:      Supported
8637 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8639 F:      Documentation/filesystems/gfs2*
8640 F:      fs/gfs2/
8641 F:      include/uapi/linux/gfs2_ondisk.h
8642
8643 GIGABYTE WMI DRIVER
8644 M:      Thomas Weißschuh <thomas@weissschuh.net>
8645 L:      platform-driver-x86@vger.kernel.org
8646 S:      Maintained
8647 F:      drivers/platform/x86/gigabyte-wmi.c
8648
8649 GNSS SUBSYSTEM
8650 M:      Johan Hovold <johan@kernel.org>
8651 S:      Maintained
8652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8653 F:      Documentation/ABI/testing/sysfs-class-gnss
8654 F:      Documentation/devicetree/bindings/gnss/
8655 F:      drivers/gnss/
8656 F:      include/linux/gnss.h
8657
8658 GO7007 MPEG CODEC
8659 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8660 L:      linux-media@vger.kernel.org
8661 S:      Maintained
8662 F:      drivers/media/usb/go7007/
8663
8664 GOODIX TOUCHSCREEN
8665 M:      Bastien Nocera <hadess@hadess.net>
8666 M:      Hans de Goede <hdegoede@redhat.com>
8667 L:      linux-input@vger.kernel.org
8668 S:      Maintained
8669 F:      drivers/input/touchscreen/goodix*
8670
8671 GOOGLE ETHERNET DRIVERS
8672 M:      Jeroen de Borst <jeroendb@google.com>
8673 M:      Catherine Sullivan <csully@google.com>
8674 R:      Shailend Chand <shailend@google.com>
8675 L:      netdev@vger.kernel.org
8676 S:      Supported
8677 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8678 F:      drivers/net/ethernet/google
8679
8680 GPD POCKET FAN DRIVER
8681 M:      Hans de Goede <hdegoede@redhat.com>
8682 L:      platform-driver-x86@vger.kernel.org
8683 S:      Maintained
8684 F:      drivers/platform/x86/gpd-pocket-fan.c
8685
8686 GPIO ACPI SUPPORT
8687 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8688 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8689 L:      linux-gpio@vger.kernel.org
8690 L:      linux-acpi@vger.kernel.org
8691 S:      Supported
8692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8693 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8694 F:      drivers/gpio/gpiolib-acpi.c
8695 F:      drivers/gpio/gpiolib-acpi.h
8696
8697 GPIO AGGREGATOR
8698 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8699 L:      linux-gpio@vger.kernel.org
8700 S:      Supported
8701 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8702 F:      drivers/gpio/gpio-aggregator.c
8703
8704 GPIO IR Transmitter
8705 M:      Sean Young <sean@mess.org>
8706 L:      linux-media@vger.kernel.org
8707 S:      Maintained
8708 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8709 F:      drivers/media/rc/gpio-ir-tx.c
8710
8711 GPIO MOCKUP DRIVER
8712 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8713 L:      linux-gpio@vger.kernel.org
8714 S:      Maintained
8715 F:      drivers/gpio/gpio-mockup.c
8716 F:      tools/testing/selftests/gpio/
8717
8718 GPIO REGMAP
8719 R:      Michael Walle <michael@walle.cc>
8720 S:      Maintained
8721 F:      drivers/gpio/gpio-regmap.c
8722 F:      include/linux/gpio/regmap.h
8723
8724 GPIO SUBSYSTEM
8725 M:      Linus Walleij <linus.walleij@linaro.org>
8726 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8727 L:      linux-gpio@vger.kernel.org
8728 S:      Maintained
8729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8730 F:      Documentation/ABI/obsolete/sysfs-gpio
8731 F:      Documentation/ABI/testing/gpio-cdev
8732 F:      Documentation/admin-guide/gpio/
8733 F:      Documentation/devicetree/bindings/gpio/
8734 F:      Documentation/driver-api/gpio/
8735 F:      drivers/gpio/
8736 F:      include/asm-generic/gpio.h
8737 F:      include/dt-bindings/gpio/
8738 F:      include/linux/gpio.h
8739 F:      include/linux/gpio/
8740 F:      include/linux/of_gpio.h
8741 F:      include/uapi/linux/gpio.h
8742 F:      tools/gpio/
8743
8744 GRE DEMULTIPLEXER DRIVER
8745 M:      Dmitry Kozlov <xeb@mail.ru>
8746 L:      netdev@vger.kernel.org
8747 S:      Maintained
8748 F:      include/net/gre.h
8749 F:      net/ipv4/gre_demux.c
8750 F:      net/ipv4/gre_offload.c
8751
8752 GRETH 10/100/1G Ethernet MAC device driver
8753 M:      Andreas Larsson <andreas@gaisler.com>
8754 L:      netdev@vger.kernel.org
8755 S:      Maintained
8756 F:      drivers/net/ethernet/aeroflex/
8757
8758 GREYBUS AUDIO PROTOCOLS DRIVERS
8759 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8760 M:      Mark Greer <mgreer@animalcreek.com>
8761 S:      Maintained
8762 F:      drivers/staging/greybus/audio_apbridgea.c
8763 F:      drivers/staging/greybus/audio_apbridgea.h
8764 F:      drivers/staging/greybus/audio_codec.c
8765 F:      drivers/staging/greybus/audio_codec.h
8766 F:      drivers/staging/greybus/audio_gb.c
8767 F:      drivers/staging/greybus/audio_manager.c
8768 F:      drivers/staging/greybus/audio_manager.h
8769 F:      drivers/staging/greybus/audio_manager_module.c
8770 F:      drivers/staging/greybus/audio_manager_private.h
8771 F:      drivers/staging/greybus/audio_manager_sysfs.c
8772 F:      drivers/staging/greybus/audio_module.c
8773 F:      drivers/staging/greybus/audio_topology.c
8774
8775 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8776 M:      Viresh Kumar <vireshk@kernel.org>
8777 S:      Maintained
8778 F:      drivers/staging/greybus/authentication.c
8779 F:      drivers/staging/greybus/bootrom.c
8780 F:      drivers/staging/greybus/firmware.h
8781 F:      drivers/staging/greybus/fw-core.c
8782 F:      drivers/staging/greybus/fw-download.c
8783 F:      drivers/staging/greybus/fw-management.c
8784 F:      drivers/staging/greybus/greybus_authentication.h
8785 F:      drivers/staging/greybus/greybus_firmware.h
8786 F:      drivers/staging/greybus/hid.c
8787 F:      drivers/staging/greybus/i2c.c
8788 F:      drivers/staging/greybus/spi.c
8789 F:      drivers/staging/greybus/spilib.c
8790 F:      drivers/staging/greybus/spilib.h
8791
8792 GREYBUS LOOPBACK DRIVER
8793 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8794 S:      Maintained
8795 F:      drivers/staging/greybus/loopback.c
8796
8797 GREYBUS PLATFORM DRIVERS
8798 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8799 S:      Maintained
8800 F:      drivers/staging/greybus/arche-apb-ctrl.c
8801 F:      drivers/staging/greybus/arche-platform.c
8802 F:      drivers/staging/greybus/arche_platform.h
8803
8804 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8805 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8806 S:      Maintained
8807 F:      drivers/staging/greybus/gpio.c
8808 F:      drivers/staging/greybus/light.c
8809 F:      drivers/staging/greybus/power_supply.c
8810 F:      drivers/staging/greybus/sdio.c
8811 F:      drivers/staging/greybus/spi.c
8812 F:      drivers/staging/greybus/spilib.c
8813
8814 GREYBUS SUBSYSTEM
8815 M:      Johan Hovold <johan@kernel.org>
8816 M:      Alex Elder <elder@kernel.org>
8817 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8818 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8819 S:      Maintained
8820 F:      drivers/greybus/
8821 F:      drivers/staging/greybus/
8822 F:      include/linux/greybus.h
8823 F:      include/linux/greybus/
8824
8825 GREYBUS UART PROTOCOLS DRIVERS
8826 M:      David Lin <dtwlin@gmail.com>
8827 S:      Maintained
8828 F:      drivers/staging/greybus/log.c
8829 F:      drivers/staging/greybus/uart.c
8830
8831 GS1662 VIDEO SERIALIZER
8832 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8833 L:      linux-media@vger.kernel.org
8834 S:      Maintained
8835 T:      git git://linuxtv.org/media_tree.git
8836 F:      drivers/media/spi/gs1662.c
8837
8838 GSPCA FINEPIX SUBDRIVER
8839 M:      Frank Zago <frank@zago.net>
8840 L:      linux-media@vger.kernel.org
8841 S:      Maintained
8842 T:      git git://linuxtv.org/media_tree.git
8843 F:      drivers/media/usb/gspca/finepix.c
8844
8845 GSPCA GL860 SUBDRIVER
8846 M:      Olivier Lorin <o.lorin@laposte.net>
8847 L:      linux-media@vger.kernel.org
8848 S:      Maintained
8849 T:      git git://linuxtv.org/media_tree.git
8850 F:      drivers/media/usb/gspca/gl860/
8851
8852 GSPCA M5602 SUBDRIVER
8853 M:      Erik Andren <erik.andren@gmail.com>
8854 L:      linux-media@vger.kernel.org
8855 S:      Maintained
8856 T:      git git://linuxtv.org/media_tree.git
8857 F:      drivers/media/usb/gspca/m5602/
8858
8859 GSPCA PAC207 SONIXB SUBDRIVER
8860 M:      Hans Verkuil <hverkuil@xs4all.nl>
8861 L:      linux-media@vger.kernel.org
8862 S:      Odd Fixes
8863 T:      git git://linuxtv.org/media_tree.git
8864 F:      drivers/media/usb/gspca/pac207.c
8865
8866 GSPCA SN9C20X SUBDRIVER
8867 M:      Brian Johnson <brijohn@gmail.com>
8868 L:      linux-media@vger.kernel.org
8869 S:      Maintained
8870 T:      git git://linuxtv.org/media_tree.git
8871 F:      drivers/media/usb/gspca/sn9c20x.c
8872
8873 GSPCA T613 SUBDRIVER
8874 M:      Leandro Costantino <lcostantino@gmail.com>
8875 L:      linux-media@vger.kernel.org
8876 S:      Maintained
8877 T:      git git://linuxtv.org/media_tree.git
8878 F:      drivers/media/usb/gspca/t613.c
8879
8880 GSPCA USB WEBCAM DRIVER
8881 M:      Hans Verkuil <hverkuil@xs4all.nl>
8882 L:      linux-media@vger.kernel.org
8883 S:      Odd Fixes
8884 T:      git git://linuxtv.org/media_tree.git
8885 F:      drivers/media/usb/gspca/
8886
8887 GTP (GPRS Tunneling Protocol)
8888 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8889 M:      Harald Welte <laforge@gnumonks.org>
8890 L:      osmocom-net-gprs@lists.osmocom.org
8891 S:      Maintained
8892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8893 F:      drivers/net/gtp.c
8894
8895 GUID PARTITION TABLE (GPT)
8896 M:      Davidlohr Bueso <dave@stgolabs.net>
8897 L:      linux-efi@vger.kernel.org
8898 S:      Maintained
8899 F:      block/partitions/efi.*
8900
8901 HABANALABS PCI DRIVER
8902 M:      Oded Gabbay <ogabbay@kernel.org>
8903 S:      Supported
8904 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8905 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8906 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8907 F:      drivers/misc/habanalabs/
8908 F:      include/trace/events/habanalabs.h
8909 F:      include/uapi/misc/habanalabs.h
8910
8911 HACKRF MEDIA DRIVER
8912 M:      Antti Palosaari <crope@iki.fi>
8913 L:      linux-media@vger.kernel.org
8914 S:      Maintained
8915 W:      https://linuxtv.org
8916 W:      http://palosaari.fi/linux/
8917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8918 T:      git git://linuxtv.org/anttip/media_tree.git
8919 F:      drivers/media/usb/hackrf/
8920
8921 HANTRO VPU CODEC DRIVER
8922 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8923 M:      Philipp Zabel <p.zabel@pengutronix.de>
8924 L:      linux-media@vger.kernel.org
8925 L:      linux-rockchip@lists.infradead.org
8926 S:      Maintained
8927 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8928 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8929 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8930 F:      drivers/media/platform/verisilicon/
8931
8932 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8933 M:      Frank Seidel <frank@f-seidel.de>
8934 L:      platform-driver-x86@vger.kernel.org
8935 S:      Maintained
8936 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8937 F:      drivers/platform/x86/hdaps.c
8938
8939 HARDWARE MONITORING
8940 M:      Jean Delvare <jdelvare@suse.com>
8941 M:      Guenter Roeck <linux@roeck-us.net>
8942 L:      linux-hwmon@vger.kernel.org
8943 S:      Maintained
8944 W:      http://hwmon.wiki.kernel.org/
8945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8946 F:      Documentation/ABI/testing/sysfs-class-hwmon
8947 F:      Documentation/devicetree/bindings/hwmon/
8948 F:      Documentation/hwmon/
8949 F:      drivers/hwmon/
8950 F:      include/linux/hwmon*.h
8951 F:      include/trace/events/hwmon*.h
8952 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8953
8954 HARDWARE RANDOM NUMBER GENERATOR CORE
8955 M:      Olivia Mackall <olivia@selenic.com>
8956 M:      Herbert Xu <herbert@gondor.apana.org.au>
8957 L:      linux-crypto@vger.kernel.org
8958 S:      Odd fixes
8959 F:      Documentation/admin-guide/hw_random.rst
8960 F:      Documentation/devicetree/bindings/rng/
8961 F:      drivers/char/hw_random/
8962 F:      include/linux/hw_random.h
8963
8964 HARDWARE SPINLOCK CORE
8965 M:      Ohad Ben-Cohen <ohad@wizery.com>
8966 M:      Bjorn Andersson <andersson@kernel.org>
8967 R:      Baolin Wang <baolin.wang7@gmail.com>
8968 L:      linux-remoteproc@vger.kernel.org
8969 S:      Maintained
8970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8971 F:      Documentation/devicetree/bindings/hwlock/
8972 F:      Documentation/locking/hwspinlock.rst
8973 F:      drivers/hwspinlock/
8974 F:      include/linux/hwspinlock.h
8975
8976 HARDWARE TRACING FACILITIES
8977 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8978 S:      Maintained
8979 F:      drivers/hwtracing/
8980
8981 HARMONY SOUND DRIVER
8982 L:      linux-parisc@vger.kernel.org
8983 S:      Maintained
8984 F:      sound/parisc/harmony.*
8985
8986 HDPVR USB VIDEO ENCODER DRIVER
8987 M:      Hans Verkuil <hverkuil@xs4all.nl>
8988 L:      linux-media@vger.kernel.org
8989 S:      Odd Fixes
8990 W:      https://linuxtv.org
8991 T:      git git://linuxtv.org/media_tree.git
8992 F:      drivers/media/usb/hdpvr/
8993
8994 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8995 M:      Matt Hsiao <matt.hsiao@hpe.com>
8996 S:      Supported
8997 F:      drivers/misc/hpilo.[ch]
8998
8999 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9000 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
9001 S:      Supported
9002 F:      Documentation/watchdog/hpwdt.rst
9003 F:      drivers/watchdog/hpwdt.c
9004
9005 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9006 M:      Don Brace <don.brace@microchip.com>
9007 L:      storagedev@microchip.com
9008 L:      linux-scsi@vger.kernel.org
9009 S:      Supported
9010 F:      Documentation/scsi/hpsa.rst
9011 F:      drivers/scsi/hpsa*.[ch]
9012 F:      include/linux/cciss*.h
9013 F:      include/uapi/linux/cciss*.h
9014
9015 HFI1 DRIVER
9016 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9017 L:      linux-rdma@vger.kernel.org
9018 S:      Supported
9019 F:      drivers/infiniband/hw/hfi1
9020
9021 HFS FILESYSTEM
9022 L:      linux-fsdevel@vger.kernel.org
9023 S:      Orphan
9024 F:      Documentation/filesystems/hfs.rst
9025 F:      fs/hfs/
9026
9027 HFSPLUS FILESYSTEM
9028 L:      linux-fsdevel@vger.kernel.org
9029 S:      Orphan
9030 F:      Documentation/filesystems/hfsplus.rst
9031 F:      fs/hfsplus/
9032
9033 HGA FRAMEBUFFER DRIVER
9034 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9035 L:      linux-nvidia@lists.surfsouth.com
9036 S:      Maintained
9037 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9038 F:      drivers/video/fbdev/hgafb.c
9039
9040 HIBERNATION (aka Software Suspend, aka swsusp)
9041 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9042 M:      Pavel Machek <pavel@ucw.cz>
9043 L:      linux-pm@vger.kernel.org
9044 S:      Supported
9045 B:      https://bugzilla.kernel.org
9046 F:      arch/*/include/asm/suspend*.h
9047 F:      arch/x86/power/
9048 F:      drivers/base/power/
9049 F:      include/linux/freezer.h
9050 F:      include/linux/pm.h
9051 F:      include/linux/suspend.h
9052 F:      kernel/power/
9053
9054 HID CORE LAYER
9055 M:      Jiri Kosina <jikos@kernel.org>
9056 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9057 L:      linux-input@vger.kernel.org
9058 S:      Maintained
9059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9060 F:      drivers/hid/
9061 F:      include/linux/hid*
9062 F:      include/uapi/linux/hid*
9063
9064 HID LOGITECH DRIVERS
9065 R:      Filipe Laíns <lains@riseup.net>
9066 L:      linux-input@vger.kernel.org
9067 S:      Maintained
9068 F:      drivers/hid/hid-logitech-*
9069
9070 HID PLAYSTATION DRIVER
9071 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9072 L:      linux-input@vger.kernel.org
9073 S:      Supported
9074 F:      drivers/hid/hid-playstation.c
9075
9076 HID PHOENIX RC FLIGHT CONTROLLER
9077 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9078 L:      linux-input@vger.kernel.org
9079 S:      Maintained
9080 F:      drivers/hid/hid-pxrc.c
9081
9082 HID SENSOR HUB DRIVERS
9083 M:      Jiri Kosina <jikos@kernel.org>
9084 M:      Jonathan Cameron <jic23@kernel.org>
9085 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9086 L:      linux-input@vger.kernel.org
9087 L:      linux-iio@vger.kernel.org
9088 S:      Maintained
9089 F:      Documentation/hid/hid-sensor*
9090 F:      drivers/hid/hid-sensor-*
9091 F:      drivers/iio/*/hid-*
9092 F:      include/linux/hid-sensor-*
9093
9094 HID VRC-2 CAR CONTROLLER DRIVER
9095 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9096 L:      linux-input@vger.kernel.org
9097 S:      Maintained
9098 F:      drivers/hid/hid-vrc2.c
9099
9100 HID WACOM DRIVER
9101 M:      Ping Cheng <ping.cheng@wacom.com>
9102 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9103 L:      linux-input@vger.kernel.org
9104 S:      Maintained
9105 F:      drivers/hid/wacom.h
9106 F:      drivers/hid/wacom_*
9107
9108 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9109 M:      Thomas Gleixner <tglx@linutronix.de>
9110 L:      linux-kernel@vger.kernel.org
9111 S:      Maintained
9112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9113 F:      Documentation/timers/
9114 F:      include/linux/clockchips.h
9115 F:      include/linux/hrtimer.h
9116 F:      kernel/time/clockevents.c
9117 F:      kernel/time/hrtimer.c
9118 F:      kernel/time/timer_*.c
9119
9120 HIGH-SPEED SCC DRIVER FOR AX.25
9121 L:      linux-hams@vger.kernel.org
9122 S:      Orphan
9123 F:      drivers/net/hamradio/scc.c
9124
9125 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9126 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9127 S:      Supported
9128 W:      http://www.highpoint-tech.com
9129 F:      Documentation/scsi/hptiop.rst
9130 F:      drivers/scsi/hptiop.c
9131
9132 HIMAX HX83112B TOUCHSCREEN SUPPORT
9133 M:      Job Noorman <job@noorman.info>
9134 L:      linux-input@vger.kernel.org
9135 S:      Maintained
9136 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9137 F:      drivers/input/touchscreen/himax_hx83112b.c
9138
9139 HIPPI
9140 M:      Jes Sorensen <jes@trained-monkey.org>
9141 L:      linux-hippi@sunsite.dk
9142 S:      Maintained
9143 F:      drivers/net/hippi/
9144 F:      include/linux/hippidevice.h
9145 F:      include/uapi/linux/if_hippi.h
9146 F:      net/802/hippi.c
9147
9148 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9149 M:      Kurt Kanzenbach <kurt@linutronix.de>
9150 L:      netdev@vger.kernel.org
9151 S:      Maintained
9152 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9153 F:      drivers/net/dsa/hirschmann/*
9154 F:      include/linux/platform_data/hirschmann-hellcreek.h
9155 F:      net/dsa/tag_hellcreek.c
9156
9157 HISILICON DMA DRIVER
9158 M:      Zhou Wang <wangzhou1@hisilicon.com>
9159 M:      Jie Hai <haijie1@huawei.com>
9160 L:      dmaengine@vger.kernel.org
9161 S:      Maintained
9162 F:      drivers/dma/hisi_dma.c
9163
9164 HISILICON GPIO DRIVER
9165 M:      Jay Fang <f.fangjian@huawei.com>
9166 L:      linux-gpio@vger.kernel.org
9167 S:      Maintained
9168 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9169 F:      drivers/gpio/gpio-hisi.c
9170
9171 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9172 M:      Longfang Liu <liulongfang@huawei.com>
9173 L:      linux-crypto@vger.kernel.org
9174 S:      Maintained
9175 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9176 F:      drivers/crypto/hisilicon/hpre/hpre.h
9177 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9178 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9179
9180 HISILICON I2C CONTROLLER DRIVER
9181 M:      Yicong Yang <yangyicong@hisilicon.com>
9182 L:      linux-i2c@vger.kernel.org
9183 S:      Maintained
9184 W:      https://www.hisilicon.com
9185 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9186 F:      drivers/i2c/busses/i2c-hisi.c
9187
9188 HISILICON LPC BUS DRIVER
9189 M:      Jay Fang <f.fangjian@huawei.com>
9190 S:      Maintained
9191 W:      http://www.hisilicon.com
9192 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9193 F:      drivers/bus/hisi_lpc.c
9194
9195 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9196 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9197 M:      Salil Mehta <salil.mehta@huawei.com>
9198 L:      netdev@vger.kernel.org
9199 S:      Maintained
9200 W:      http://www.hisilicon.com
9201 F:      drivers/net/ethernet/hisilicon/hns3/
9202
9203 HISILICON NETWORK SUBSYSTEM DRIVER
9204 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9205 M:      Salil Mehta <salil.mehta@huawei.com>
9206 L:      netdev@vger.kernel.org
9207 S:      Maintained
9208 W:      http://www.hisilicon.com
9209 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9210 F:      drivers/net/ethernet/hisilicon/
9211
9212 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9213 M:      John Stultz <jstultz@google.com>
9214 L:      linux-kernel@vger.kernel.org
9215 S:      Maintained
9216 F:      drivers/misc/hisi_hikey_usb.c
9217
9218 HISILICON PMU DRIVER
9219 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9220 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9221 S:      Supported
9222 W:      http://www.hisilicon.com
9223 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9224 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9225 F:      drivers/perf/hisilicon
9226
9227 HISILICON HNS3 PMU DRIVER
9228 M:      Guangbin Huang <huangguangbin2@huawei.com>
9229 S:      Supported
9230 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9231 F:      drivers/perf/hisilicon/hns3_pmu.c
9232
9233 HISILICON PTT DRIVER
9234 M:      Yicong Yang <yangyicong@hisilicon.com>
9235 L:      linux-kernel@vger.kernel.org
9236 S:      Maintained
9237 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9238 F:      Documentation/trace/hisi-ptt.rst
9239 F:      drivers/hwtracing/ptt/
9240
9241 HISILICON QM DRIVER
9242 M:      Weili Qian <qianweili@huawei.com>
9243 M:      Zhou Wang <wangzhou1@hisilicon.com>
9244 L:      linux-crypto@vger.kernel.org
9245 S:      Maintained
9246 F:      drivers/crypto/hisilicon/Kconfig
9247 F:      drivers/crypto/hisilicon/Makefile
9248 F:      drivers/crypto/hisilicon/qm.c
9249 F:      drivers/crypto/hisilicon/sgl.c
9250 F:      include/linux/hisi_acc_qm.h
9251
9252 HISILICON ZIP Controller DRIVER
9253 M:      Yang Shen <shenyang39@huawei.com>
9254 M:      Zhou Wang <wangzhou1@hisilicon.com>
9255 L:      linux-crypto@vger.kernel.org
9256 S:      Maintained
9257 F:      Documentation/ABI/testing/debugfs-hisi-zip
9258 F:      drivers/crypto/hisilicon/zip/
9259
9260 HISILICON ROCE DRIVER
9261 M:      Haoyue Xu <xuhaoyue1@hisilicon.com>
9262 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9263 L:      linux-rdma@vger.kernel.org
9264 S:      Maintained
9265 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9266 F:      drivers/infiniband/hw/hns/
9267
9268 HISILICON SAS Controller
9269 M:      Xiang Chen <chenxiang66@hisilicon.com>
9270 S:      Supported
9271 W:      http://www.hisilicon.com
9272 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9273 F:      drivers/scsi/hisi_sas/
9274
9275 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9276 M:      Kai Ye <yekai13@huawei.com>
9277 M:      Longfang Liu <liulongfang@huawei.com>
9278 L:      linux-crypto@vger.kernel.org
9279 S:      Maintained
9280 F:      Documentation/ABI/testing/debugfs-hisi-sec
9281 F:      drivers/crypto/hisilicon/sec2/sec.h
9282 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9283 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9284 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9285
9286 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9287 M:      Jay Fang <f.fangjian@huawei.com>
9288 L:      linux-spi@vger.kernel.org
9289 S:      Maintained
9290 W:      http://www.hisilicon.com
9291 F:      drivers/spi/spi-hisi-kunpeng.c
9292
9293 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9294 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9295 L:      linux-kernel@vger.kernel.org
9296 S:      Maintained
9297 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9298 F:      drivers/spmi/hisi-spmi-controller.c
9299
9300 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9301 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9302 L:      linux-kernel@vger.kernel.org
9303 S:      Maintained
9304 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9305 F:      drivers/mfd/hi6421-spmi-pmic.c
9306
9307 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9308 M:      Weili Qian <qianweili@huawei.com>
9309 S:      Maintained
9310 F:      drivers/crypto/hisilicon/trng/trng.c
9311
9312 HISILICON V3XX SPI NOR FLASH Controller Driver
9313 M:      Jay Fang <f.fangjian@huawei.com>
9314 S:      Maintained
9315 W:      http://www.hisilicon.com
9316 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9317
9318 HMM - Heterogeneous Memory Management
9319 M:      Jérôme Glisse <jglisse@redhat.com>
9320 L:      linux-mm@kvack.org
9321 S:      Maintained
9322 F:      Documentation/mm/hmm.rst
9323 F:      include/linux/hmm*
9324 F:      lib/test_hmm*
9325 F:      mm/hmm*
9326 F:      tools/testing/selftests/vm/*hmm*
9327
9328 HOST AP DRIVER
9329 M:      Jouni Malinen <j@w1.fi>
9330 L:      linux-wireless@vger.kernel.org
9331 S:      Obsolete
9332 W:      http://w1.fi/hostap-driver.html
9333 F:      drivers/net/wireless/intersil/hostap/
9334
9335 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9336 L:      platform-driver-x86@vger.kernel.org
9337 S:      Orphan
9338 F:      drivers/platform/x86/hp/tc1100-wmi.c
9339
9340 HPET:   High Precision Event Timers driver
9341 M:      Clemens Ladisch <clemens@ladisch.de>
9342 S:      Maintained
9343 F:      Documentation/timers/hpet.rst
9344 F:      drivers/char/hpet.c
9345 F:      include/linux/hpet.h
9346 F:      include/uapi/linux/hpet.h
9347
9348 HPET:   x86
9349 S:      Orphan
9350 F:      arch/x86/include/asm/hpet.h
9351 F:      arch/x86/kernel/hpet.c
9352
9353 HPFS FILESYSTEM
9354 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9355 S:      Maintained
9356 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9357 F:      fs/hpfs/
9358
9359 HSI SUBSYSTEM
9360 M:      Sebastian Reichel <sre@kernel.org>
9361 S:      Maintained
9362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9363 F:      Documentation/ABI/testing/sysfs-bus-hsi
9364 F:      Documentation/driver-api/hsi.rst
9365 F:      drivers/hsi/
9366 F:      include/linux/hsi/
9367 F:      include/uapi/linux/hsi/
9368
9369 HSO 3G MODEM DRIVER
9370 L:      linux-usb@vger.kernel.org
9371 S:      Orphan
9372 F:      drivers/net/usb/hso.c
9373
9374 HSR NETWORK PROTOCOL
9375 L:      netdev@vger.kernel.org
9376 S:      Orphan
9377 F:      net/hsr/
9378
9379 HT16K33 LED CONTROLLER DRIVER
9380 M:      Robin van der Gracht <robin@protonic.nl>
9381 S:      Maintained
9382 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9383 F:      drivers/auxdisplay/ht16k33.c
9384
9385 HTCPEN TOUCHSCREEN DRIVER
9386 M:      Pau Oliva Fora <pof@eslack.org>
9387 L:      linux-input@vger.kernel.org
9388 S:      Maintained
9389 F:      drivers/input/touchscreen/htcpen.c
9390
9391 HTE SUBSYSTEM
9392 M:      Dipen Patel <dipenp@nvidia.com>
9393 S:      Maintained
9394 F:      Documentation/devicetree/bindings/timestamp/
9395 F:      Documentation/driver-api/hte/
9396 F:      drivers/hte/
9397 F:      include/linux/hte.h
9398
9399 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9400 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9401 L:      linux-iio@vger.kernel.org
9402 S:      Maintained
9403 W:      http://www.st.com/
9404 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9405 F:      drivers/iio/humidity/hts221*
9406
9407 HUAWEI ETHERNET DRIVER
9408 M:      Cai Huoqing <cai.huoqing@linux.dev>
9409 L:      netdev@vger.kernel.org
9410 S:      Maintained
9411 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9412 F:      drivers/net/ethernet/huawei/hinic/
9413
9414 HUGETLB SUBSYSTEM
9415 M:      Mike Kravetz <mike.kravetz@oracle.com>
9416 M:      Muchun Song <muchun.song@linux.dev>
9417 L:      linux-mm@kvack.org
9418 S:      Maintained
9419 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9420 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9421 F:      Documentation/mm/hugetlbfs_reserv.rst
9422 F:      Documentation/mm/vmemmap_dedup.rst
9423 F:      fs/hugetlbfs/
9424 F:      include/linux/hugetlb.h
9425 F:      mm/hugetlb.c
9426 F:      mm/hugetlb_vmemmap.c
9427 F:      mm/hugetlb_vmemmap.h
9428
9429 HVA ST MEDIA DRIVER
9430 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9431 L:      linux-media@vger.kernel.org
9432 S:      Supported
9433 W:      https://linuxtv.org
9434 T:      git git://linuxtv.org/media_tree.git
9435 F:      drivers/media/platform/st/sti/hva
9436
9437 HWPOISON MEMORY FAILURE HANDLING
9438 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9439 R:      Miaohe Lin <linmiaohe@huawei.com>
9440 L:      linux-mm@kvack.org
9441 S:      Maintained
9442 F:      mm/hwpoison-inject.c
9443 F:      mm/memory-failure.c
9444
9445 HYCON HY46XX TOUCHSCREEN SUPPORT
9446 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9447 L:      linux-input@vger.kernel.org
9448 S:      Maintained
9449 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9450 F:      drivers/input/touchscreen/hycon-hy46xx.c
9451
9452 HYGON PROCESSOR SUPPORT
9453 M:      Pu Wen <puwen@hygon.cn>
9454 L:      linux-kernel@vger.kernel.org
9455 S:      Maintained
9456 F:      arch/x86/kernel/cpu/hygon.c
9457
9458 HYNIX HI556 SENSOR DRIVER
9459 M:      Shawn Tu <shawnx.tu@intel.com>
9460 L:      linux-media@vger.kernel.org
9461 S:      Maintained
9462 T:      git git://linuxtv.org/media_tree.git
9463 F:      drivers/media/i2c/hi556.c
9464
9465 HYNIX HI846 SENSOR DRIVER
9466 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9467 L:      linux-media@vger.kernel.org
9468 S:      Maintained
9469 F:      drivers/media/i2c/hi846.c
9470
9471 HYNIX HI847 SENSOR DRIVER
9472 M:      Shawn Tu <shawnx.tu@intel.com>
9473 L:      linux-media@vger.kernel.org
9474 S:      Maintained
9475 F:      drivers/media/i2c/hi847.c
9476
9477 Hyper-V/Azure CORE AND DRIVERS
9478 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9479 M:      Haiyang Zhang <haiyangz@microsoft.com>
9480 M:      Wei Liu <wei.liu@kernel.org>
9481 M:      Dexuan Cui <decui@microsoft.com>
9482 L:      linux-hyperv@vger.kernel.org
9483 S:      Supported
9484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9485 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9486 F:      Documentation/ABI/testing/debugfs-hyperv
9487 F:      Documentation/virt/hyperv
9488 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9489 F:      arch/arm64/hyperv
9490 F:      arch/arm64/include/asm/hyperv-tlfs.h
9491 F:      arch/arm64/include/asm/mshyperv.h
9492 F:      arch/x86/hyperv
9493 F:      arch/x86/include/asm/hyperv-tlfs.h
9494 F:      arch/x86/include/asm/mshyperv.h
9495 F:      arch/x86/include/asm/trace/hyperv.h
9496 F:      arch/x86/kernel/cpu/mshyperv.c
9497 F:      drivers/clocksource/hyperv_timer.c
9498 F:      drivers/hid/hid-hyperv.c
9499 F:      drivers/hv/
9500 F:      drivers/input/serio/hyperv-keyboard.c
9501 F:      drivers/iommu/hyperv-iommu.c
9502 F:      drivers/net/ethernet/microsoft/
9503 F:      drivers/net/hyperv/
9504 F:      drivers/pci/controller/pci-hyperv-intf.c
9505 F:      drivers/pci/controller/pci-hyperv.c
9506 F:      drivers/scsi/storvsc_drv.c
9507 F:      drivers/uio/uio_hv_generic.c
9508 F:      drivers/video/fbdev/hyperv_fb.c
9509 F:      include/asm-generic/hyperv-tlfs.h
9510 F:      include/asm-generic/mshyperv.h
9511 F:      include/clocksource/hyperv_timer.h
9512 F:      include/linux/hyperv.h
9513 F:      include/net/mana
9514 F:      include/uapi/linux/hyperv.h
9515 F:      net/vmw_vsock/hyperv_transport.c
9516 F:      tools/hv/
9517
9518 HYPERBUS SUPPORT
9519 M:      Vignesh Raghavendra <vigneshr@ti.com>
9520 L:      linux-mtd@lists.infradead.org
9521 S:      Supported
9522 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9523 C:      irc://irc.oftc.net/mtd
9524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9525 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9526 F:      drivers/mtd/hyperbus/
9527 F:      include/linux/mtd/hyperbus.h
9528
9529 HYPERVISOR VIRTUAL CONSOLE DRIVER
9530 L:      linuxppc-dev@lists.ozlabs.org
9531 S:      Odd Fixes
9532 F:      drivers/tty/hvc/
9533
9534 I2C ACPI SUPPORT
9535 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9536 L:      linux-i2c@vger.kernel.org
9537 L:      linux-acpi@vger.kernel.org
9538 S:      Maintained
9539 F:      drivers/i2c/i2c-core-acpi.c
9540
9541 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9542 M:      Ajay Gupta <ajayg@nvidia.com>
9543 L:      linux-i2c@vger.kernel.org
9544 S:      Maintained
9545 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9546 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9547
9548 I2C MUXES
9549 M:      Peter Rosin <peda@axentia.se>
9550 L:      linux-i2c@vger.kernel.org
9551 S:      Maintained
9552 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9553 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9554 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9555 F:      Documentation/i2c/i2c-topology.rst
9556 F:      Documentation/i2c/muxes/
9557 F:      drivers/i2c/i2c-mux.c
9558 F:      drivers/i2c/muxes/
9559 F:      include/linux/i2c-mux.h
9560
9561 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9562 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9563 L:      linux-i2c@vger.kernel.org
9564 S:      Maintained
9565 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9566 F:      drivers/i2c/busses/i2c-mv64xxx.c
9567
9568 I2C OVER PARALLEL PORT
9569 M:      Jean Delvare <jdelvare@suse.com>
9570 L:      linux-i2c@vger.kernel.org
9571 S:      Maintained
9572 F:      Documentation/i2c/busses/i2c-parport.rst
9573 F:      drivers/i2c/busses/i2c-parport.c
9574
9575 I2C SUBSYSTEM
9576 M:      Wolfram Sang <wsa@kernel.org>
9577 L:      linux-i2c@vger.kernel.org
9578 S:      Maintained
9579 W:      https://i2c.wiki.kernel.org/
9580 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9582 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9583 F:      Documentation/i2c/
9584 F:      drivers/i2c/*
9585 F:      include/dt-bindings/i2c/i2c.h
9586 F:      include/linux/i2c-dev.h
9587 F:      include/linux/i2c-smbus.h
9588 F:      include/linux/i2c.h
9589 F:      include/uapi/linux/i2c-*.h
9590 F:      include/uapi/linux/i2c.h
9591
9592 I2C SUBSYSTEM HOST DRIVERS
9593 L:      linux-i2c@vger.kernel.org
9594 S:      Odd Fixes
9595 W:      https://i2c.wiki.kernel.org/
9596 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9598 F:      Documentation/devicetree/bindings/i2c/
9599 F:      drivers/i2c/algos/
9600 F:      drivers/i2c/busses/
9601 F:      include/dt-bindings/i2c/
9602
9603 I2C-TAOS-EVM DRIVER
9604 M:      Jean Delvare <jdelvare@suse.com>
9605 L:      linux-i2c@vger.kernel.org
9606 S:      Maintained
9607 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9608 F:      drivers/i2c/busses/i2c-taos-evm.c
9609
9610 I2C-TINY-USB DRIVER
9611 M:      Till Harbaum <till@harbaum.org>
9612 L:      linux-i2c@vger.kernel.org
9613 S:      Maintained
9614 W:      http://www.harbaum.org/till/i2c_tiny_usb
9615 F:      drivers/i2c/busses/i2c-tiny-usb.c
9616
9617 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9618 M:      Jean Delvare <jdelvare@suse.com>
9619 L:      linux-i2c@vger.kernel.org
9620 S:      Maintained
9621 F:      Documentation/i2c/busses/i2c-ali1535.rst
9622 F:      Documentation/i2c/busses/i2c-ali1563.rst
9623 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9624 F:      Documentation/i2c/busses/i2c-amd756.rst
9625 F:      Documentation/i2c/busses/i2c-amd8111.rst
9626 F:      Documentation/i2c/busses/i2c-i801.rst
9627 F:      Documentation/i2c/busses/i2c-nforce2.rst
9628 F:      Documentation/i2c/busses/i2c-piix4.rst
9629 F:      Documentation/i2c/busses/i2c-sis5595.rst
9630 F:      Documentation/i2c/busses/i2c-sis630.rst
9631 F:      Documentation/i2c/busses/i2c-sis96x.rst
9632 F:      Documentation/i2c/busses/i2c-via.rst
9633 F:      Documentation/i2c/busses/i2c-viapro.rst
9634 F:      drivers/i2c/busses/i2c-ali1535.c
9635 F:      drivers/i2c/busses/i2c-ali1563.c
9636 F:      drivers/i2c/busses/i2c-ali15x3.c
9637 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9638 F:      drivers/i2c/busses/i2c-amd756.c
9639 F:      drivers/i2c/busses/i2c-amd8111.c
9640 F:      drivers/i2c/busses/i2c-i801.c
9641 F:      drivers/i2c/busses/i2c-isch.c
9642 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9643 F:      drivers/i2c/busses/i2c-nforce2.c
9644 F:      drivers/i2c/busses/i2c-piix4.c
9645 F:      drivers/i2c/busses/i2c-sis5595.c
9646 F:      drivers/i2c/busses/i2c-sis630.c
9647 F:      drivers/i2c/busses/i2c-sis96x.c
9648 F:      drivers/i2c/busses/i2c-via.c
9649 F:      drivers/i2c/busses/i2c-viapro.c
9650
9651 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9652 M:      Hans de Goede <hdegoede@redhat.com>
9653 L:      linux-i2c@vger.kernel.org
9654 S:      Maintained
9655 F:      drivers/i2c/busses/i2c-cht-wc.c
9656
9657 I2C/SMBUS ISMT DRIVER
9658 M:      Seth Heasley <seth.heasley@intel.com>
9659 M:      Neil Horman <nhorman@tuxdriver.com>
9660 L:      linux-i2c@vger.kernel.org
9661 F:      Documentation/i2c/busses/i2c-ismt.rst
9662 F:      drivers/i2c/busses/i2c-ismt.c
9663
9664 I2C/SMBUS STUB DRIVER
9665 M:      Jean Delvare <jdelvare@suse.com>
9666 L:      linux-i2c@vger.kernel.org
9667 S:      Maintained
9668 F:      drivers/i2c/i2c-stub.c
9669
9670 I3C DRIVER FOR CADENCE I3C MASTER IP
9671 M:      Przemysław Gaj <pgaj@cadence.com>
9672 S:      Maintained
9673 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9674 F:      drivers/i3c/master/i3c-master-cdns.c
9675
9676 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9677 S:      Orphan
9678 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9679 F:      drivers/i3c/master/dw*
9680
9681 I3C SUBSYSTEM
9682 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9683 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9684 S:      Maintained
9685 C:      irc://chat.freenode.net/linux-i3c
9686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9687 F:      Documentation/ABI/testing/sysfs-bus-i3c
9688 F:      Documentation/devicetree/bindings/i3c/
9689 F:      Documentation/driver-api/i3c
9690 F:      drivers/i3c/
9691 F:      include/linux/i3c/
9692
9693 IA64 (Itanium) PLATFORM
9694 L:      linux-ia64@vger.kernel.org
9695 S:      Orphan
9696 F:      Documentation/ia64/
9697 F:      arch/ia64/
9698
9699 IBM Operation Panel Input Driver
9700 M:      Eddie James <eajames@linux.ibm.com>
9701 L:      linux-input@vger.kernel.org
9702 S:      Maintained
9703 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9704 F:      drivers/input/misc/ibm-panel.c
9705
9706 IBM Power 842 compression accelerator
9707 M:      Haren Myneni <haren@us.ibm.com>
9708 S:      Supported
9709 F:      crypto/842.c
9710 F:      drivers/crypto/nx/Kconfig
9711 F:      drivers/crypto/nx/Makefile
9712 F:      drivers/crypto/nx/nx-842*
9713 F:      include/linux/sw842.h
9714 F:      lib/842/
9715
9716 IBM Power in-Nest Crypto Acceleration
9717 M:      Breno Leitão <leitao@debian.org>
9718 M:      Nayna Jain <nayna@linux.ibm.com>
9719 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9720 L:      linux-crypto@vger.kernel.org
9721 S:      Supported
9722 F:      drivers/crypto/nx/Kconfig
9723 F:      drivers/crypto/nx/Makefile
9724 F:      drivers/crypto/nx/nx-aes*
9725 F:      drivers/crypto/nx/nx-sha*
9726 F:      drivers/crypto/nx/nx.*
9727 F:      drivers/crypto/nx/nx_csbcpb.h
9728 F:      drivers/crypto/nx/nx_debugfs.c
9729
9730 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9731 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9732 L:      linux-pci@vger.kernel.org
9733 L:      linuxppc-dev@lists.ozlabs.org
9734 S:      Supported
9735 F:      drivers/pci/hotplug/rpadlpar*
9736
9737 IBM Power Linux RAID adapter
9738 M:      Brian King <brking@us.ibm.com>
9739 S:      Supported
9740 F:      drivers/scsi/ipr.*
9741
9742 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9743 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9744 L:      linux-pci@vger.kernel.org
9745 L:      linuxppc-dev@lists.ozlabs.org
9746 S:      Supported
9747 F:      drivers/pci/hotplug/rpaphp*
9748
9749 IBM Power SRIOV Virtual NIC Device Driver
9750 M:      Haren Myneni <haren@linux.ibm.com>
9751 M:      Rick Lindsley <ricklind@linux.ibm.com>
9752 R:      Nick Child <nnac123@linux.ibm.com>
9753 R:      Dany Madden <danymadden@us.ibm.com>
9754 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9755 L:      netdev@vger.kernel.org
9756 S:      Supported
9757 F:      drivers/net/ethernet/ibm/ibmvnic.*
9758
9759 IBM Power Virtual Accelerator Switchboard
9760 L:      linuxppc-dev@lists.ozlabs.org
9761 S:      Supported
9762 F:      arch/powerpc/include/asm/vas.h
9763 F:      arch/powerpc/platforms/powernv/copy-paste.h
9764 F:      arch/powerpc/platforms/powernv/vas*
9765
9766 IBM Power Virtual Ethernet Device Driver
9767 M:      Nick Child <nnac123@linux.ibm.com>
9768 L:      netdev@vger.kernel.org
9769 S:      Supported
9770 F:      drivers/net/ethernet/ibm/ibmveth.*
9771
9772 IBM Power Virtual FC Device Drivers
9773 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9774 L:      linux-scsi@vger.kernel.org
9775 S:      Supported
9776 F:      drivers/scsi/ibmvscsi/ibmvfc*
9777
9778 IBM Power Virtual Management Channel Driver
9779 M:      Brad Warrum <bwarrum@linux.ibm.com>
9780 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9781 S:      Supported
9782 F:      drivers/misc/ibmvmc.*
9783
9784 IBM Power Virtual SCSI Device Drivers
9785 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9786 L:      linux-scsi@vger.kernel.org
9787 S:      Supported
9788 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9789 F:      include/scsi/viosrp.h
9790
9791 IBM Power Virtual SCSI Device Target Driver
9792 M:      Michael Cyr <mikecyr@linux.ibm.com>
9793 L:      linux-scsi@vger.kernel.org
9794 L:      target-devel@vger.kernel.org
9795 S:      Supported
9796 F:      drivers/scsi/ibmvscsi_tgt/
9797
9798 IBM Power VMX Cryptographic instructions
9799 M:      Breno Leitão <leitao@debian.org>
9800 M:      Nayna Jain <nayna@linux.ibm.com>
9801 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9802 L:      linux-crypto@vger.kernel.org
9803 S:      Supported
9804 F:      drivers/crypto/vmx/Kconfig
9805 F:      drivers/crypto/vmx/Makefile
9806 F:      drivers/crypto/vmx/aes*
9807 F:      drivers/crypto/vmx/ghash*
9808 F:      drivers/crypto/vmx/ppc-xlate.pl
9809 F:      drivers/crypto/vmx/vmx.c
9810
9811 IBM ServeRAID RAID DRIVER
9812 S:      Orphan
9813 F:      drivers/scsi/ips.*
9814
9815 ICH LPC AND GPIO DRIVER
9816 M:      Peter Tyser <ptyser@xes-inc.com>
9817 S:      Maintained
9818 F:      drivers/gpio/gpio-ich.c
9819 F:      drivers/mfd/lpc_ich.c
9820
9821 ICY I2C DRIVER
9822 M:      Max Staudt <max@enpas.org>
9823 L:      linux-i2c@vger.kernel.org
9824 S:      Maintained
9825 F:      drivers/i2c/busses/i2c-icy.c
9826
9827 IDEAPAD LAPTOP EXTRAS DRIVER
9828 M:      Ike Panhc <ike.pan@canonical.com>
9829 L:      platform-driver-x86@vger.kernel.org
9830 S:      Maintained
9831 W:      http://launchpad.net/ideapad-laptop
9832 F:      drivers/platform/x86/ideapad-laptop.c
9833
9834 IDEAPAD LAPTOP SLIDEBAR DRIVER
9835 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9836 L:      linux-input@vger.kernel.org
9837 S:      Maintained
9838 W:      https://github.com/o2genum/ideapad-slidebar
9839 F:      drivers/input/misc/ideapad_slidebar.c
9840
9841 IDMAPPED MOUNTS
9842 M:      Christian Brauner <brauner@kernel.org>
9843 M:      Seth Forshee <sforshee@kernel.org>
9844 L:      linux-fsdevel@vger.kernel.org
9845 S:      Maintained
9846 T:      git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9847 F:      Documentation/filesystems/idmappings.rst
9848 F:      tools/testing/selftests/mount_setattr/
9849 F:      include/linux/mnt_idmapping.*
9850
9851 IDT VersaClock 5 CLOCK DRIVER
9852 M:      Luca Ceresoli <luca@lucaceresoli.net>
9853 S:      Maintained
9854 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9855 F:      drivers/clk/clk-versaclock5.c
9856
9857 IEEE 802.15.4 SUBSYSTEM
9858 M:      Alexander Aring <alex.aring@gmail.com>
9859 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9860 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9861 L:      linux-wpan@vger.kernel.org
9862 S:      Maintained
9863 W:      https://linux-wpan.org/
9864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9866 F:      Documentation/networking/ieee802154.rst
9867 F:      drivers/net/ieee802154/
9868 F:      include/linux/ieee802154.h
9869 F:      include/linux/nl802154.h
9870 F:      include/net/af_ieee802154.h
9871 F:      include/net/cfg802154.h
9872 F:      include/net/ieee802154_netdev.h
9873 F:      include/net/mac802154.h
9874 F:      include/net/nl802154.h
9875 F:      net/ieee802154/
9876 F:      net/mac802154/
9877
9878 IFE PROTOCOL
9879 M:      Yotam Gigi <yotam.gi@gmail.com>
9880 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9881 F:      include/net/ife.h
9882 F:      include/uapi/linux/ife.h
9883 F:      net/ife
9884
9885 IGORPLUG-USB IR RECEIVER
9886 M:      Sean Young <sean@mess.org>
9887 L:      linux-media@vger.kernel.org
9888 S:      Maintained
9889 F:      drivers/media/rc/igorplugusb.c
9890
9891 IGUANAWORKS USB IR TRANSCEIVER
9892 M:      Sean Young <sean@mess.org>
9893 L:      linux-media@vger.kernel.org
9894 S:      Maintained
9895 F:      drivers/media/rc/iguanair.c
9896
9897 IIO DIGITAL POTENTIOMETER DAC
9898 M:      Peter Rosin <peda@axentia.se>
9899 L:      linux-iio@vger.kernel.org
9900 S:      Maintained
9901 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9902 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9903 F:      drivers/iio/dac/dpot-dac.c
9904
9905 IIO ENVELOPE DETECTOR
9906 M:      Peter Rosin <peda@axentia.se>
9907 L:      linux-iio@vger.kernel.org
9908 S:      Maintained
9909 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9910 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9911 F:      drivers/iio/adc/envelope-detector.c
9912
9913 IIO MULTIPLEXER
9914 M:      Peter Rosin <peda@axentia.se>
9915 L:      linux-iio@vger.kernel.org
9916 S:      Maintained
9917 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9918 F:      drivers/iio/multiplexer/iio-mux.c
9919
9920 IIO SCMI BASED DRIVER
9921 M:      Jyoti Bhayana <jbhayana@google.com>
9922 L:      linux-iio@vger.kernel.org
9923 S:      Maintained
9924 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9925
9926 IIO SUBSYSTEM AND DRIVERS
9927 M:      Jonathan Cameron <jic23@kernel.org>
9928 R:      Lars-Peter Clausen <lars@metafoo.de>
9929 L:      linux-iio@vger.kernel.org
9930 S:      Maintained
9931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9932 F:      Documentation/ABI/testing/configfs-iio*
9933 F:      Documentation/ABI/testing/sysfs-bus-iio*
9934 F:      Documentation/devicetree/bindings/iio/
9935 F:      drivers/iio/
9936 F:      drivers/staging/iio/
9937 F:      include/dt-bindings/iio/
9938 F:      include/linux/iio/
9939 F:      tools/iio/
9940
9941 IIO UNIT CONVERTER
9942 M:      Peter Rosin <peda@axentia.se>
9943 L:      linux-iio@vger.kernel.org
9944 S:      Maintained
9945 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9946 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9947 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9948 F:      drivers/iio/afe/iio-rescale.c
9949
9950 IKANOS/ADI EAGLE ADSL USB DRIVER
9951 M:      Matthieu Castet <castet.matthieu@free.fr>
9952 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9953 S:      Maintained
9954 F:      drivers/usb/atm/ueagle-atm.c
9955
9956 IMAGIS TOUCHSCREEN DRIVER
9957 M:      Markuss Broks <markuss.broks@gmail.com>
9958 S:      Maintained
9959 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9960 F:      drivers/input/touchscreen/imagis.c
9961
9962 IMGTEC ASCII LCD DRIVER
9963 M:      Paul Burton <paulburton@kernel.org>
9964 S:      Maintained
9965 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9966 F:      drivers/auxdisplay/img-ascii-lcd.c
9967
9968 IMGTEC IR DECODER DRIVER
9969 S:      Orphan
9970 F:      drivers/media/rc/img-ir/
9971
9972 IMON SOUNDGRAPH USB IR RECEIVER
9973 M:      Sean Young <sean@mess.org>
9974 L:      linux-media@vger.kernel.org
9975 S:      Maintained
9976 F:      drivers/media/rc/imon.c
9977 F:      drivers/media/rc/imon_raw.c
9978
9979 IMS TWINTURBO FRAMEBUFFER DRIVER
9980 L:      linux-fbdev@vger.kernel.org
9981 S:      Orphan
9982 F:      drivers/video/fbdev/imsttfb.c
9983
9984 INA209 HARDWARE MONITOR DRIVER
9985 M:      Guenter Roeck <linux@roeck-us.net>
9986 L:      linux-hwmon@vger.kernel.org
9987 S:      Maintained
9988 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9989 F:      Documentation/hwmon/ina209.rst
9990 F:      drivers/hwmon/ina209.c
9991
9992 INA2XX HARDWARE MONITOR DRIVER
9993 M:      Guenter Roeck <linux@roeck-us.net>
9994 L:      linux-hwmon@vger.kernel.org
9995 S:      Maintained
9996 F:      Documentation/hwmon/ina2xx.rst
9997 F:      drivers/hwmon/ina2xx.c
9998 F:      include/linux/platform_data/ina2xx.h
9999
10000 INDEX OF FURTHER KERNEL DOCUMENTATION
10001 M:      Carlos Bilbao <carlos.bilbao@amd.com>
10002 S:      Maintained
10003 F:      Documentation/process/kernel-docs.rst
10004
10005 INDUSTRY PACK SUBSYSTEM (IPACK)
10006 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
10007 M:      Jens Taprogge <jens.taprogge@taprogge.org>
10008 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10009 L:      industrypack-devel@lists.sourceforge.net
10010 S:      Maintained
10011 W:      http://industrypack.sourceforge.net
10012 F:      drivers/ipack/
10013
10014 INFINEON DPS310 Driver
10015 M:      Eddie James <eajames@linux.ibm.com>
10016 L:      linux-iio@vger.kernel.org
10017 S:      Maintained
10018 F:      drivers/iio/pressure/dps310.c
10019
10020 INFINEON PEB2466 ASoC CODEC
10021 M:      Herve Codina <herve.codina@bootlin.com>
10022 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10023 S:      Maintained
10024 F:      Documentation/devicetree/bindings/sound/infineon,peb2466.yaml
10025 F:      sound/soc/codecs/peb2466.c
10026
10027 INFINIBAND SUBSYSTEM
10028 M:      Jason Gunthorpe <jgg@nvidia.com>
10029 M:      Leon Romanovsky <leonro@nvidia.com>
10030 L:      linux-rdma@vger.kernel.org
10031 S:      Supported
10032 W:      https://github.com/linux-rdma/rdma-core
10033 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10035 F:      Documentation/devicetree/bindings/infiniband/
10036 F:      Documentation/infiniband/
10037 F:      drivers/infiniband/
10038 F:      include/rdma/
10039 F:      include/trace/events/ib_mad.h
10040 F:      include/trace/events/ib_umad.h
10041 F:      include/trace/misc/rdma.h
10042 F:      include/uapi/linux/if_infiniband.h
10043 F:      include/uapi/rdma/
10044 F:      samples/bpf/ibumad_kern.c
10045 F:      samples/bpf/ibumad_user.c
10046
10047 INGENIC JZ4780 NAND DRIVER
10048 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10049 L:      linux-mtd@lists.infradead.org
10050 L:      linux-mips@vger.kernel.org
10051 S:      Maintained
10052 F:      drivers/mtd/nand/raw/ingenic/
10053
10054 INGENIC JZ47xx SoCs
10055 M:      Paul Cercueil <paul@crapouillou.net>
10056 L:      linux-mips@vger.kernel.org
10057 S:      Maintained
10058 F:      arch/mips/boot/dts/ingenic/
10059 F:      arch/mips/generic/board-ingenic.c
10060 F:      arch/mips/include/asm/mach-ingenic/
10061 F:      arch/mips/ingenic/Kconfig
10062 F:      drivers/clk/ingenic/
10063 F:      drivers/dma/dma-jz4780.c
10064 F:      drivers/gpu/drm/ingenic/
10065 F:      drivers/i2c/busses/i2c-jz4780.c
10066 F:      drivers/iio/adc/ingenic-adc.c
10067 F:      drivers/irqchip/irq-ingenic.c
10068 F:      drivers/memory/jz4780-nemc.c
10069 F:      drivers/mmc/host/jz4740_mmc.c
10070 F:      drivers/mtd/nand/raw/ingenic/
10071 F:      drivers/pinctrl/pinctrl-ingenic.c
10072 F:      drivers/power/supply/ingenic-battery.c
10073 F:      drivers/pwm/pwm-jz4740.c
10074 F:      drivers/remoteproc/ingenic_rproc.c
10075 F:      drivers/rtc/rtc-jz4740.c
10076 F:      drivers/tty/serial/8250/8250_ingenic.c
10077 F:      drivers/usb/musb/jz4740.c
10078 F:      drivers/watchdog/jz4740_wdt.c
10079 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10080 F:      include/linux/mfd/ingenic-tcu.h
10081 F:      sound/soc/codecs/jz47*
10082 F:      sound/soc/jz4740/
10083
10084 INJOINIC IP5xxx POWER BANK IC DRIVER
10085 M:      Samuel Holland <samuel@sholland.org>
10086 S:      Maintained
10087 F:      drivers/power/supply/ip5xxx_power.c
10088
10089 INOTIFY
10090 M:      Jan Kara <jack@suse.cz>
10091 R:      Amir Goldstein <amir73il@gmail.com>
10092 L:      linux-fsdevel@vger.kernel.org
10093 S:      Maintained
10094 F:      Documentation/filesystems/inotify.rst
10095 F:      fs/notify/inotify/
10096 F:      include/linux/inotify.h
10097 F:      include/uapi/linux/inotify.h
10098
10099 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10100 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10101 L:      linux-input@vger.kernel.org
10102 S:      Maintained
10103 Q:      http://patchwork.kernel.org/project/linux-input/list/
10104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10105 F:      Documentation/devicetree/bindings/input/
10106 F:      Documentation/devicetree/bindings/serio/
10107 F:      Documentation/input/
10108 F:      drivers/input/
10109 F:      include/dt-bindings/input/
10110 F:      include/linux/input.h
10111 F:      include/linux/input/
10112 F:      include/uapi/linux/input-event-codes.h
10113 F:      include/uapi/linux/input.h
10114
10115 INPUT MULTITOUCH (MT) PROTOCOL
10116 M:      Henrik Rydberg <rydberg@bitmath.org>
10117 L:      linux-input@vger.kernel.org
10118 S:      Odd fixes
10119 F:      Documentation/input/multi-touch-protocol.rst
10120 F:      drivers/input/input-mt.c
10121 K:      \b(ABS|SYN)_MT_
10122
10123 INSIDE SECURE CRYPTO DRIVER
10124 M:      Antoine Tenart <atenart@kernel.org>
10125 L:      linux-crypto@vger.kernel.org
10126 S:      Maintained
10127 F:      drivers/crypto/inside-secure/
10128
10129 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10130 M:      Mimi Zohar <zohar@linux.ibm.com>
10131 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10132 L:      linux-integrity@vger.kernel.org
10133 S:      Supported
10134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10135 F:      security/integrity/ima/
10136 F:      security/integrity/
10137
10138 INTEL 810/815 FRAMEBUFFER DRIVER
10139 M:      Antonino Daplas <adaplas@gmail.com>
10140 L:      linux-fbdev@vger.kernel.org
10141 S:      Maintained
10142 F:      drivers/video/fbdev/i810/
10143
10144 INTEL 8255 GPIO DRIVER
10145 M:      William Breathitt Gray <william.gray@linaro.org>
10146 L:      linux-gpio@vger.kernel.org
10147 S:      Maintained
10148 F:      drivers/gpio/gpio-i8255.c
10149 F:      drivers/gpio/gpio-i8255.h
10150
10151 INTEL ASoC DRIVERS
10152 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10153 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10154 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10155 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10156 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10157 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10158 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10159 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10160 S:      Supported
10161 F:      sound/soc/intel/
10162
10163 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10164 M:      Hans de Goede <hdegoede@redhat.com>
10165 L:      platform-driver-x86@vger.kernel.org
10166 S:      Maintained
10167 F:      drivers/platform/x86/intel/atomisp2/pm.c
10168
10169 INTEL ATOMISP2 LED DRIVER
10170 M:      Hans de Goede <hdegoede@redhat.com>
10171 L:      platform-driver-x86@vger.kernel.org
10172 S:      Maintained
10173 F:      drivers/platform/x86/intel/atomisp2/led.c
10174
10175 INTEL BIOS SAR INT1092 DRIVER
10176 M:      Shravan Sudhakar <s.shravan@intel.com>
10177 M:      Intel Corporation <linuxwwan@intel.com>
10178 L:      platform-driver-x86@vger.kernel.org
10179 S:      Maintained
10180 F:      drivers/platform/x86/intel/int1092/
10181
10182 INTEL BROXTON PMC DRIVER
10183 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10184 M:      Zha Qipeng <qipeng.zha@intel.com>
10185 S:      Maintained
10186 F:      drivers/mfd/intel_pmc_bxt.c
10187 F:      include/linux/mfd/intel_pmc_bxt.h
10188
10189 INTEL C600 SERIES SAS CONTROLLER DRIVER
10190 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10191 L:      linux-scsi@vger.kernel.org
10192 S:      Supported
10193 T:      git git://git.code.sf.net/p/intel-sas/isci
10194 F:      drivers/scsi/isci/
10195
10196 INTEL CPU family model numbers
10197 M:      Tony Luck <tony.luck@intel.com>
10198 M:      x86@kernel.org
10199 L:      linux-kernel@vger.kernel.org
10200 S:      Supported
10201 F:      arch/x86/include/asm/intel-family.h
10202
10203 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10204 M:      Jani Nikula <jani.nikula@linux.intel.com>
10205 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10206 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10207 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10208 L:      intel-gfx@lists.freedesktop.org
10209 S:      Supported
10210 W:      https://01.org/linuxgraphics/
10211 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10212 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10213 C:      irc://irc.oftc.net/intel-gfx
10214 T:      git git://anongit.freedesktop.org/drm-intel
10215 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10216 F:      Documentation/gpu/i915.rst
10217 F:      drivers/gpu/drm/i915/
10218 F:      include/drm/i915*
10219 F:      include/uapi/drm/i915_drm.h
10220
10221 INTEL ETHERNET DRIVERS
10222 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10223 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10224 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10225 S:      Supported
10226 W:      http://www.intel.com/support/feedback.htm
10227 W:      http://e1000.sourceforge.net/
10228 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10231 F:      Documentation/networking/device_drivers/ethernet/intel/
10232 F:      drivers/net/ethernet/intel/
10233 F:      drivers/net/ethernet/intel/*/
10234 F:      include/linux/avf/virtchnl.h
10235 F:      include/linux/net/intel/iidc.h
10236
10237 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10238 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10239 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10240 L:      linux-rdma@vger.kernel.org
10241 S:      Supported
10242 F:      drivers/infiniband/hw/irdma/
10243 F:      include/uapi/rdma/irdma-abi.h
10244
10245 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10246 M:      Maik Broemme <mbroemme@libmpq.org>
10247 L:      linux-fbdev@vger.kernel.org
10248 S:      Maintained
10249 F:      Documentation/fb/intelfb.rst
10250 F:      drivers/video/fbdev/intelfb/
10251
10252 INTEL GPIO DRIVERS
10253 M:      Andy Shevchenko <andy@kernel.org>
10254 L:      linux-gpio@vger.kernel.org
10255 S:      Supported
10256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10257 F:      drivers/gpio/gpio-ich.c
10258 F:      drivers/gpio/gpio-merrifield.c
10259 F:      drivers/gpio/gpio-ml-ioh.c
10260 F:      drivers/gpio/gpio-pch.c
10261 F:      drivers/gpio/gpio-sch.c
10262 F:      drivers/gpio/gpio-sodaville.c
10263
10264 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10265 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10266 M:      Zhi Wang <zhi.a.wang@intel.com>
10267 L:      intel-gvt-dev@lists.freedesktop.org
10268 L:      intel-gfx@lists.freedesktop.org
10269 S:      Supported
10270 W:      https://01.org/igvt-g
10271 T:      git https://github.com/intel/gvt-linux.git
10272 F:      drivers/gpu/drm/i915/gvt/
10273
10274 INTEL HID EVENT DRIVER
10275 M:      Alex Hung <alexhung@gmail.com>
10276 L:      platform-driver-x86@vger.kernel.org
10277 S:      Maintained
10278 F:      drivers/platform/x86/intel/hid.c
10279
10280 INTEL I/OAT DMA DRIVER
10281 M:      Dave Jiang <dave.jiang@intel.com>
10282 R:      Dan Williams <dan.j.williams@intel.com>
10283 L:      dmaengine@vger.kernel.org
10284 S:      Supported
10285 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10286 F:      drivers/dma/ioat*
10287
10288 INTEL IDXD DRIVER
10289 M:      Fenghua Yu <fenghua.yu@intel.com>
10290 M:      Dave Jiang <dave.jiang@intel.com>
10291 L:      dmaengine@vger.kernel.org
10292 S:      Supported
10293 F:      drivers/dma/idxd/*
10294 F:      include/uapi/linux/idxd.h
10295
10296 INTEL IDLE DRIVER
10297 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10298 M:      Len Brown <lenb@kernel.org>
10299 L:      linux-pm@vger.kernel.org
10300 S:      Supported
10301 B:      https://bugzilla.kernel.org
10302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10303 F:      drivers/idle/intel_idle.c
10304
10305 INTEL IN FIELD SCAN (IFS) DEVICE
10306 M:      Jithu Joseph <jithu.joseph@intel.com>
10307 R:      Ashok Raj <ashok.raj@intel.com>
10308 R:      Tony Luck <tony.luck@intel.com>
10309 S:      Maintained
10310 F:      drivers/platform/x86/intel/ifs
10311 F:      include/trace/events/intel_ifs.h
10312
10313 INTEL INTEGRATED SENSOR HUB DRIVER
10314 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10315 M:      Jiri Kosina <jikos@kernel.org>
10316 L:      linux-input@vger.kernel.org
10317 S:      Maintained
10318 F:      drivers/hid/intel-ish-hid/
10319
10320 INTEL IOMMU (VT-d)
10321 M:      David Woodhouse <dwmw2@infradead.org>
10322 M:      Lu Baolu <baolu.lu@linux.intel.com>
10323 L:      iommu@lists.linux.dev
10324 S:      Supported
10325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10326 F:      drivers/iommu/intel/
10327 F:      include/linux/intel-svm.h
10328
10329 INTEL IPU3 CSI-2 CIO2 DRIVER
10330 M:      Yong Zhi <yong.zhi@intel.com>
10331 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10332 M:      Bingbu Cao <bingbu.cao@intel.com>
10333 M:      Dan Scally <djrscally@gmail.com>
10334 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10335 L:      linux-media@vger.kernel.org
10336 S:      Maintained
10337 T:      git git://linuxtv.org/media_tree.git
10338 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10339 F:      drivers/media/pci/intel/ipu3/
10340
10341 INTEL IPU3 CSI-2 IMGU DRIVER
10342 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10343 R:      Bingbu Cao <bingbu.cao@intel.com>
10344 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10345 L:      linux-media@vger.kernel.org
10346 S:      Maintained
10347 F:      Documentation/admin-guide/media/ipu3.rst
10348 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10349 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10350 F:      drivers/staging/media/ipu3/
10351
10352 INTEL IXP4XX CRYPTO SUPPORT
10353 M:      Corentin Labbe <clabbe@baylibre.com>
10354 L:      linux-crypto@vger.kernel.org
10355 S:      Maintained
10356 F:      drivers/crypto/ixp4xx_crypto.c
10357
10358 INTEL ISHTP ECLITE DRIVER
10359 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10360 L:      platform-driver-x86@vger.kernel.org
10361 S:      Supported
10362 F:      drivers/platform/x86/intel/ishtp_eclite.c
10363
10364 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10365 M:      Krzysztof Halasa <khalasa@piap.pl>
10366 S:      Maintained
10367 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10368 F:      drivers/net/wan/ixp4xx_hss.c
10369 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10370 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10371 F:      include/linux/soc/ixp4xx/npe.h
10372 F:      include/linux/soc/ixp4xx/qmgr.h
10373
10374 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10375 M:      Deepak Saxena <dsaxena@plexity.net>
10376 S:      Maintained
10377 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10378 F:      drivers/char/hw_random/ixp4xx-rng.c
10379
10380 INTEL KEEM BAY DRM DRIVER
10381 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10382 M:      Edmund Dea <edmund.j.dea@intel.com>
10383 S:      Maintained
10384 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10385 F:      drivers/gpu/drm/kmb/
10386
10387 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10388 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10389 S:      Maintained
10390 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10391 F:      drivers/crypto/keembay/Kconfig
10392 F:      drivers/crypto/keembay/Makefile
10393 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10394 F:      drivers/crypto/keembay/ocs-aes.c
10395 F:      drivers/crypto/keembay/ocs-aes.h
10396
10397 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10398 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10399 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10400 M:      Mark Gross <mgross@linux.intel.com>
10401 S:      Maintained
10402 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10403 F:      drivers/crypto/keembay/Kconfig
10404 F:      drivers/crypto/keembay/Makefile
10405 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10406
10407 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10408 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10409 M:      Declan Murphy <declan.murphy@intel.com>
10410 S:      Maintained
10411 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10412 F:      drivers/crypto/keembay/Kconfig
10413 F:      drivers/crypto/keembay/Makefile
10414 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10415 F:      drivers/crypto/keembay/ocs-hcu.c
10416 F:      drivers/crypto/keembay/ocs-hcu.h
10417
10418 INTEL THUNDER BAY EMMC PHY DRIVER
10419 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10420 M:      Rashmi A <rashmi.a@intel.com>
10421 S:      Maintained
10422 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10423 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10424
10425 INTEL MANAGEMENT ENGINE (mei)
10426 M:      Tomas Winkler <tomas.winkler@intel.com>
10427 L:      linux-kernel@vger.kernel.org
10428 S:      Supported
10429 F:      Documentation/driver-api/mei/*
10430 F:      drivers/misc/mei/
10431 F:      drivers/watchdog/mei_wdt.c
10432 F:      include/linux/mei_aux.h
10433 F:      include/linux/mei_cl_bus.h
10434 F:      include/uapi/linux/mei.h
10435 F:      samples/mei/*
10436
10437 INTEL MAX 10 BMC MFD DRIVER
10438 M:      Xu Yilun <yilun.xu@intel.com>
10439 R:      Tom Rix <trix@redhat.com>
10440 S:      Maintained
10441 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10442 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10443 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10444 F:      drivers/mfd/intel-m10-bmc.c
10445 F:      include/linux/mfd/intel-m10-bmc.h
10446
10447 INTEL MENLOW THERMAL DRIVER
10448 M:      Sujith Thomas <sujith.thomas@intel.com>
10449 L:      linux-pm@vger.kernel.org
10450 S:      Supported
10451 F:      drivers/thermal/intel/intel_menlow.c
10452
10453 INTEL P-Unit IPC DRIVER
10454 M:      Zha Qipeng <qipeng.zha@intel.com>
10455 L:      platform-driver-x86@vger.kernel.org
10456 S:      Maintained
10457 F:      arch/x86/include/asm/intel_punit_ipc.h
10458 F:      drivers/platform/x86/intel/punit_ipc.c
10459
10460 INTEL PMC CORE DRIVER
10461 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10462 M:      David E Box <david.e.box@intel.com>
10463 L:      platform-driver-x86@vger.kernel.org
10464 S:      Maintained
10465 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10466 F:      drivers/platform/x86/intel/pmc/
10467
10468 INTEL PMIC GPIO DRIVERS
10469 M:      Andy Shevchenko <andy@kernel.org>
10470 S:      Supported
10471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10472 F:      drivers/gpio/gpio-*cove.c
10473
10474 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10475 M:      Andy Shevchenko <andy@kernel.org>
10476 S:      Supported
10477 F:      drivers/mfd/intel_soc_pmic*
10478 F:      include/linux/mfd/intel_soc_pmic*
10479
10480 INTEL PMT DRIVERS
10481 M:      David E. Box <david.e.box@linux.intel.com>
10482 S:      Supported
10483 F:      drivers/platform/x86/intel/pmt/
10484
10485 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10486 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10487 L:      linux-wireless@vger.kernel.org
10488 S:      Maintained
10489 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10490 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10491 F:      drivers/net/wireless/intel/ipw2x00/
10492
10493 INTEL PSTATE DRIVER
10494 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10495 M:      Len Brown <lenb@kernel.org>
10496 L:      linux-pm@vger.kernel.org
10497 S:      Supported
10498 F:      drivers/cpufreq/intel_pstate.c
10499
10500 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10501 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10502 L:      linux-iio@vger.kernel.org
10503 F:      drivers/counter/intel-qep.c
10504
10505 INTEL SCU DRIVERS
10506 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10507 S:      Maintained
10508 F:      arch/x86/include/asm/intel_scu_ipc.h
10509 F:      drivers/platform/x86/intel_scu_*
10510
10511 INTEL SDSI DRIVER
10512 M:      David E. Box <david.e.box@linux.intel.com>
10513 S:      Supported
10514 F:      drivers/platform/x86/intel/sdsi.c
10515 F:      tools/arch/x86/intel_sdsi/
10516 F:      tools/testing/selftests/drivers/sdsi/
10517
10518 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10519 M:      Daniel Scally <djrscally@gmail.com>
10520 S:      Maintained
10521 F:      drivers/platform/x86/intel/int3472/
10522
10523 INTEL SPEED SELECT TECHNOLOGY
10524 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10525 L:      platform-driver-x86@vger.kernel.org
10526 S:      Maintained
10527 F:      drivers/platform/x86/intel/speed_select_if/
10528 F:      include/uapi/linux/isst_if.h
10529 F:      tools/power/x86/intel-speed-select/
10530
10531 INTEL STRATIX10 FIRMWARE DRIVERS
10532 M:      Dinh Nguyen <dinguyen@kernel.org>
10533 L:      linux-kernel@vger.kernel.org
10534 S:      Maintained
10535 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10536 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10537 F:      drivers/firmware/stratix10-rsu.c
10538 F:      drivers/firmware/stratix10-svc.c
10539 F:      include/linux/firmware/intel/stratix10-smc.h
10540 F:      include/linux/firmware/intel/stratix10-svc-client.h
10541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10542
10543 INTEL TELEMETRY DRIVER
10544 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10545 M:      "David E. Box" <david.e.box@linux.intel.com>
10546 L:      platform-driver-x86@vger.kernel.org
10547 S:      Maintained
10548 F:      arch/x86/include/asm/intel_telemetry.h
10549 F:      drivers/platform/x86/intel/telemetry/
10550
10551 INTEL TPMI DRIVER
10552 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10553 L:      platform-driver-x86@vger.kernel.org
10554 S:      Maintained
10555 F:      drivers/platform/x86/intel/tpmi.c
10556 F:      include/linux/intel_tpmi.h
10557
10558 INTEL UNCORE FREQUENCY CONTROL
10559 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10560 L:      platform-driver-x86@vger.kernel.org
10561 S:      Maintained
10562 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10563 F:      drivers/platform/x86/intel/uncore-frequency/
10564
10565 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10566 M:      David E. Box <david.e.box@linux.intel.com>
10567 S:      Supported
10568 F:      drivers/platform/x86/intel/vsec.*
10569
10570 INTEL VIRTUAL BUTTON DRIVER
10571 M:      AceLan Kao <acelan.kao@canonical.com>
10572 L:      platform-driver-x86@vger.kernel.org
10573 S:      Maintained
10574 F:      drivers/platform/x86/intel/vbtn.c
10575
10576 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10577 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10578 L:      linux-wireless@vger.kernel.org
10579 S:      Supported
10580 F:      drivers/net/wireless/intel/iwlegacy/
10581
10582 INTEL WIRELESS WIFI LINK (iwlwifi)
10583 M:      Gregory Greenman <gregory.greenman@intel.com>
10584 L:      linux-wireless@vger.kernel.org
10585 S:      Supported
10586 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10588 F:      drivers/net/wireless/intel/iwlwifi/
10589
10590 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10591 M:      Jithu Joseph <jithu.joseph@intel.com>
10592 R:      Maurice Ma <maurice.ma@intel.com>
10593 S:      Maintained
10594 W:      https://slimbootloader.github.io/security/firmware-update.html
10595 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10596
10597 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10598 L:      Dell.Client.Kernel@dell.com
10599 S:      Maintained
10600 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10601
10602 INTEL WWAN IOSM DRIVER
10603 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10604 M:      Intel Corporation <linuxwwan@intel.com>
10605 L:      netdev@vger.kernel.org
10606 S:      Maintained
10607 F:      drivers/net/wwan/iosm/
10608
10609 INTEL(R) TRACE HUB
10610 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10611 S:      Supported
10612 F:      Documentation/trace/intel_th.rst
10613 F:      drivers/hwtracing/intel_th/
10614 F:      include/linux/intel_th.h
10615
10616 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10617 M:      Ning Sun <ning.sun@intel.com>
10618 L:      tboot-devel@lists.sourceforge.net
10619 S:      Supported
10620 W:      http://tboot.sourceforge.net
10621 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10622 F:      Documentation/x86/intel_txt.rst
10623 F:      arch/x86/kernel/tboot.c
10624 F:      include/linux/tboot.h
10625
10626 INTEL SGX
10627 M:      Jarkko Sakkinen <jarkko@kernel.org>
10628 R:      Dave Hansen <dave.hansen@linux.intel.com>
10629 L:      linux-sgx@vger.kernel.org
10630 S:      Supported
10631 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10633 F:      Documentation/x86/sgx.rst
10634 F:      arch/x86/entry/vdso/vsgx.S
10635 F:      arch/x86/include/asm/sgx.h
10636 F:      arch/x86/include/uapi/asm/sgx.h
10637 F:      arch/x86/kernel/cpu/sgx/*
10638 F:      tools/testing/selftests/sgx/*
10639 K:      \bSGX_
10640
10641 INTERCONNECT API
10642 M:      Georgi Djakov <djakov@kernel.org>
10643 L:      linux-pm@vger.kernel.org
10644 S:      Maintained
10645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10646 F:      Documentation/devicetree/bindings/interconnect/
10647 F:      Documentation/driver-api/interconnect.rst
10648 F:      drivers/interconnect/
10649 F:      include/dt-bindings/interconnect/
10650 F:      include/linux/interconnect-provider.h
10651 F:      include/linux/interconnect.h
10652
10653 INTERRUPT COUNTER DRIVER
10654 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10655 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10656 L:      linux-iio@vger.kernel.org
10657 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10658 F:      drivers/counter/interrupt-cnt.c
10659
10660 INTERSIL ISL7998X VIDEO DECODER DRIVER
10661 M:      Michael Tretter <m.tretter@pengutronix.de>
10662 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10663 L:      linux-media@vger.kernel.org
10664 S:      Maintained
10665 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10666 F:      drivers/media/i2c/isl7998x.c
10667
10668 INVENSENSE ICM-426xx IMU DRIVER
10669 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10670 L:      linux-iio@vger.kernel.org
10671 S:      Maintained
10672 W:      https://invensense.tdk.com/
10673 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10674 F:      drivers/iio/imu/inv_icm42600/
10675
10676 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10677 M:      Linus Walleij <linus.walleij@linaro.org>
10678 L:      linux-iio@vger.kernel.org
10679 S:      Maintained
10680 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10681 F:      drivers/iio/gyro/mpu3050*
10682
10683 IOC3 ETHERNET DRIVER
10684 M:      Ralf Baechle <ralf@linux-mips.org>
10685 L:      linux-mips@vger.kernel.org
10686 S:      Maintained
10687 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10688
10689 IOMAP FILESYSTEM LIBRARY
10690 M:      Christoph Hellwig <hch@infradead.org>
10691 M:      Darrick J. Wong <djwong@kernel.org>
10692 L:      linux-xfs@vger.kernel.org
10693 L:      linux-fsdevel@vger.kernel.org
10694 S:      Supported
10695 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10696 F:      fs/iomap/
10697 F:      include/linux/iomap.h
10698
10699 IOMMU DMA-API LAYER
10700 M:      Robin Murphy <robin.murphy@arm.com>
10701 L:      iommu@lists.linux.dev
10702 S:      Maintained
10703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10704 F:      drivers/iommu/dma-iommu.c
10705 F:      drivers/iommu/dma-iommu.h
10706 F:      drivers/iommu/iova.c
10707 F:      include/linux/iova.h
10708
10709 IOMMUFD
10710 M:      Jason Gunthorpe <jgg@nvidia.com>
10711 M:      Kevin Tian <kevin.tian@intel.com>
10712 L:      iommu@lists.linux.dev
10713 S:      Maintained
10714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10715 F:      Documentation/userspace-api/iommufd.rst
10716 F:      drivers/iommu/iommufd/
10717 F:      include/linux/iommufd.h
10718 F:      include/uapi/linux/iommufd.h
10719 F:      tools/testing/selftests/iommu/
10720
10721 IOMMU SUBSYSTEM
10722 M:      Joerg Roedel <joro@8bytes.org>
10723 M:      Will Deacon <will@kernel.org>
10724 R:      Robin Murphy <robin.murphy@arm.com>
10725 L:      iommu@lists.linux.dev
10726 S:      Maintained
10727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10728 F:      Documentation/devicetree/bindings/iommu/
10729 F:      Documentation/userspace-api/iommu.rst
10730 F:      drivers/iommu/
10731 F:      include/linux/iommu.h
10732 F:      include/linux/iova.h
10733 F:      include/linux/of_iommu.h
10734 F:      include/uapi/linux/iommu.h
10735
10736 IOSYS-MAP HELPERS
10737 M:      Thomas Zimmermann <tzimmermann@suse.de>
10738 L:      dri-devel@lists.freedesktop.org
10739 S:      Maintained
10740 T:      git git://anongit.freedesktop.org/drm/drm-misc
10741 F:      include/linux/iosys-map.h
10742
10743 IO_URING
10744 M:      Jens Axboe <axboe@kernel.dk>
10745 R:      Pavel Begunkov <asml.silence@gmail.com>
10746 L:      io-uring@vger.kernel.org
10747 S:      Maintained
10748 T:      git git://git.kernel.dk/linux-block
10749 T:      git git://git.kernel.dk/liburing
10750 F:      io_uring/
10751 F:      include/linux/io_uring.h
10752 F:      include/linux/io_uring_types.h
10753 F:      include/trace/events/io_uring.h
10754 F:      include/uapi/linux/io_uring.h
10755 F:      tools/io_uring/
10756
10757 IPMI SUBSYSTEM
10758 M:      Corey Minyard <minyard@acm.org>
10759 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10760 S:      Supported
10761 W:      http://openipmi.sourceforge.net/
10762 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10763 F:      Documentation/driver-api/ipmi.rst
10764 F:      Documentation/devicetree/bindings/ipmi/
10765 F:      drivers/char/ipmi/
10766 F:      include/linux/ipmi*
10767 F:      include/uapi/linux/ipmi*
10768
10769 IPS SCSI RAID DRIVER
10770 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10771 L:      linux-scsi@vger.kernel.org
10772 S:      Maintained
10773 W:      http://www.adaptec.com/
10774 F:      drivers/scsi/ips*
10775
10776 IPVS
10777 M:      Simon Horman <horms@verge.net.au>
10778 M:      Julian Anastasov <ja@ssi.bg>
10779 L:      netdev@vger.kernel.org
10780 L:      lvs-devel@vger.kernel.org
10781 S:      Maintained
10782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10784 F:      Documentation/networking/ipvs-sysctl.rst
10785 F:      include/net/ip_vs.h
10786 F:      include/uapi/linux/ip_vs.h
10787 F:      net/netfilter/ipvs/
10788
10789 IPWIRELESS DRIVER
10790 M:      Jiri Kosina <jikos@kernel.org>
10791 M:      David Sterba <dsterba@suse.com>
10792 S:      Odd Fixes
10793 F:      drivers/tty/ipwireless/
10794
10795 IRON DEVICE AUDIO CODEC DRIVERS
10796 M:      Kiseok Jo <kiseok.jo@irondevice.com>
10797 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10798 S:      Maintained
10799 F:      Documentation/devicetree/bindings/sound/irondevice,*
10800 F:      sound/soc/codecs/sma*
10801
10802 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10803 M:      Marc Zyngier <maz@kernel.org>
10804 S:      Maintained
10805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10806 F:      Documentation/core-api/irq/irq-domain.rst
10807 F:      include/linux/irqdomain.h
10808 F:      kernel/irq/irqdomain.c
10809 F:      kernel/irq/msi.c
10810
10811 IRQ SUBSYSTEM
10812 M:      Thomas Gleixner <tglx@linutronix.de>
10813 L:      linux-kernel@vger.kernel.org
10814 S:      Maintained
10815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10816 F:      kernel/irq/
10817 F:      include/linux/group_cpus.h
10818 F:      lib/group_cpus.c
10819
10820 IRQCHIP DRIVERS
10821 M:      Thomas Gleixner <tglx@linutronix.de>
10822 M:      Marc Zyngier <maz@kernel.org>
10823 L:      linux-kernel@vger.kernel.org
10824 S:      Maintained
10825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10826 F:      Documentation/devicetree/bindings/interrupt-controller/
10827 F:      drivers/irqchip/
10828
10829 ISA
10830 M:      William Breathitt Gray <william.gray@linaro.org>
10831 S:      Maintained
10832 F:      Documentation/driver-api/isa.rst
10833 F:      drivers/base/isa.c
10834 F:      include/linux/isa.h
10835
10836 ISA RADIO MODULE
10837 M:      Hans Verkuil <hverkuil@xs4all.nl>
10838 L:      linux-media@vger.kernel.org
10839 S:      Maintained
10840 W:      https://linuxtv.org
10841 T:      git git://linuxtv.org/media_tree.git
10842 F:      drivers/media/radio/radio-isa*
10843
10844 ISAPNP
10845 M:      Jaroslav Kysela <perex@perex.cz>
10846 S:      Maintained
10847 F:      Documentation/driver-api/isapnp.rst
10848 F:      drivers/pnp/isapnp/
10849 F:      include/linux/isapnp.h
10850
10851 ISCSI
10852 M:      Lee Duncan <lduncan@suse.com>
10853 M:      Chris Leech <cleech@redhat.com>
10854 M:      Mike Christie <michael.christie@oracle.com>
10855 L:      open-iscsi@googlegroups.com
10856 L:      linux-scsi@vger.kernel.org
10857 S:      Maintained
10858 W:      www.open-iscsi.com
10859 F:      drivers/scsi/*iscsi*
10860 F:      include/scsi/*iscsi*
10861
10862 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10863 M:      Peter Jones <pjones@redhat.com>
10864 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10865 S:      Maintained
10866 F:      drivers/firmware/iscsi_ibft*
10867
10868 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10869 M:      Sagi Grimberg <sagi@grimberg.me>
10870 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10871 L:      linux-rdma@vger.kernel.org
10872 S:      Supported
10873 W:      http://www.openfabrics.org
10874 W:      www.open-iscsi.org
10875 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10876 F:      drivers/infiniband/ulp/iser/
10877
10878 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10879 M:      Sagi Grimberg <sagi@grimberg.me>
10880 L:      linux-rdma@vger.kernel.org
10881 L:      target-devel@vger.kernel.org
10882 S:      Supported
10883 W:      http://www.linux-iscsi.org
10884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10885 F:      drivers/infiniband/ulp/isert
10886
10887 ISDN/CMTP OVER BLUETOOTH
10888 M:      Karsten Keil <isdn@linux-pingi.de>
10889 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10890 L:      netdev@vger.kernel.org
10891 S:      Odd Fixes
10892 W:      http://www.isdn4linux.de
10893 F:      Documentation/isdn/
10894 F:      drivers/isdn/capi/
10895 F:      include/linux/isdn/
10896 F:      include/uapi/linux/isdn/
10897 F:      net/bluetooth/cmtp/
10898
10899 ISDN/mISDN SUBSYSTEM
10900 M:      Karsten Keil <isdn@linux-pingi.de>
10901 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10902 L:      netdev@vger.kernel.org
10903 S:      Maintained
10904 W:      http://www.isdn4linux.de
10905 F:      drivers/isdn/Kconfig
10906 F:      drivers/isdn/Makefile
10907 F:      drivers/isdn/hardware/
10908 F:      drivers/isdn/mISDN/
10909
10910 ISOFS FILESYSTEM
10911 M:      Jan Kara <jack@suse.cz>
10912 L:      linux-fsdevel@vger.kernel.org
10913 S:      Maintained
10914 F:      Documentation/filesystems/isofs.rst
10915 F:      fs/isofs/
10916
10917 IT87 HARDWARE MONITORING DRIVER
10918 M:      Jean Delvare <jdelvare@suse.com>
10919 L:      linux-hwmon@vger.kernel.org
10920 S:      Maintained
10921 F:      Documentation/hwmon/it87.rst
10922 F:      drivers/hwmon/it87.c
10923
10924 IT913X MEDIA DRIVER
10925 M:      Antti Palosaari <crope@iki.fi>
10926 L:      linux-media@vger.kernel.org
10927 S:      Maintained
10928 W:      https://linuxtv.org
10929 W:      http://palosaari.fi/linux/
10930 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10931 T:      git git://linuxtv.org/anttip/media_tree.git
10932 F:      drivers/media/tuners/it913x*
10933
10934 ITE IT66121 HDMI BRIDGE DRIVER
10935 M:      Phong LE <ple@baylibre.com>
10936 M:      Neil Armstrong <neil.armstrong@linaro.org>
10937 S:      Maintained
10938 T:      git git://anongit.freedesktop.org/drm/drm-misc
10939 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10940 F:      drivers/gpu/drm/bridge/ite-it66121.c
10941
10942 IVTV VIDEO4LINUX DRIVER
10943 M:      Andy Walls <awalls@md.metrocast.net>
10944 L:      linux-media@vger.kernel.org
10945 S:      Maintained
10946 W:      https://linuxtv.org
10947 T:      git git://linuxtv.org/media_tree.git
10948 F:      Documentation/admin-guide/media/ivtv*
10949 F:      drivers/media/pci/ivtv/
10950 F:      include/uapi/linux/ivtv*
10951
10952 IX2505V MEDIA DRIVER
10953 M:      Malcolm Priestley <tvboxspy@gmail.com>
10954 L:      linux-media@vger.kernel.org
10955 S:      Maintained
10956 W:      https://linuxtv.org
10957 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10958 F:      drivers/media/dvb-frontends/ix2505v*
10959
10960 JAILHOUSE HYPERVISOR INTERFACE
10961 M:      Jan Kiszka <jan.kiszka@siemens.com>
10962 L:      jailhouse-dev@googlegroups.com
10963 S:      Maintained
10964 F:      arch/x86/include/asm/jailhouse_para.h
10965 F:      arch/x86/kernel/jailhouse.c
10966
10967 JC42.4 TEMPERATURE SENSOR DRIVER
10968 M:      Guenter Roeck <linux@roeck-us.net>
10969 L:      linux-hwmon@vger.kernel.org
10970 S:      Maintained
10971 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10972 F:      Documentation/hwmon/jc42.rst
10973 F:      drivers/hwmon/jc42.c
10974
10975 JFS FILESYSTEM
10976 M:      Dave Kleikamp <shaggy@kernel.org>
10977 L:      jfs-discussion@lists.sourceforge.net
10978 S:      Odd Fixes
10979 W:      http://jfs.sourceforge.net/
10980 T:      git https://github.com/kleikamp/linux-shaggy.git
10981 F:      Documentation/admin-guide/jfs.rst
10982 F:      fs/jfs/
10983
10984 JME NETWORK DRIVER
10985 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10986 L:      netdev@vger.kernel.org
10987 S:      Maintained
10988 F:      drivers/net/ethernet/jme.*
10989
10990 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10991 M:      David Woodhouse <dwmw2@infradead.org>
10992 M:      Richard Weinberger <richard@nod.at>
10993 L:      linux-mtd@lists.infradead.org
10994 S:      Odd Fixes
10995 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10996 T:      git git://git.infradead.org/ubifs-2.6.git
10997 F:      fs/jffs2/
10998 F:      include/uapi/linux/jffs2.h
10999
11000 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
11001 M:      "Theodore Ts'o" <tytso@mit.edu>
11002 M:      Jan Kara <jack@suse.com>
11003 L:      linux-ext4@vger.kernel.org
11004 S:      Maintained
11005 F:      fs/jbd2/
11006 F:      include/linux/jbd2.h
11007
11008 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
11009 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
11010 L:      linux-media@vger.kernel.org
11011 L:      linux-renesas-soc@vger.kernel.org
11012 S:      Maintained
11013 F:      drivers/media/platform/renesas/rcar_jpu.c
11014
11015 JSM Neo PCI based serial card
11016 L:      linux-serial@vger.kernel.org
11017 S:      Orphan
11018 F:      drivers/tty/serial/jsm/
11019
11020 K10TEMP HARDWARE MONITORING DRIVER
11021 M:      Clemens Ladisch <clemens@ladisch.de>
11022 L:      linux-hwmon@vger.kernel.org
11023 S:      Maintained
11024 F:      Documentation/hwmon/k10temp.rst
11025 F:      drivers/hwmon/k10temp.c
11026
11027 K8TEMP HARDWARE MONITORING DRIVER
11028 M:      Rudolf Marek <r.marek@assembler.cz>
11029 L:      linux-hwmon@vger.kernel.org
11030 S:      Maintained
11031 F:      Documentation/hwmon/k8temp.rst
11032 F:      drivers/hwmon/k8temp.c
11033
11034 KASAN
11035 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
11036 R:      Alexander Potapenko <glider@google.com>
11037 R:      Andrey Konovalov <andreyknvl@gmail.com>
11038 R:      Dmitry Vyukov <dvyukov@google.com>
11039 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
11040 L:      kasan-dev@googlegroups.com
11041 S:      Maintained
11042 F:      Documentation/dev-tools/kasan.rst
11043 F:      arch/*/include/asm/*kasan.h
11044 F:      arch/*/mm/kasan_init*
11045 F:      include/linux/kasan*.h
11046 F:      lib/Kconfig.kasan
11047 F:      mm/kasan/
11048 F:      scripts/Makefile.kasan
11049
11050 KCONFIG
11051 M:      Masahiro Yamada <masahiroy@kernel.org>
11052 L:      linux-kbuild@vger.kernel.org
11053 S:      Maintained
11054 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
11056 F:      Documentation/kbuild/kconfig*
11057 F:      scripts/Kconfig.include
11058 F:      scripts/kconfig/
11059
11060 KCOV
11061 R:      Dmitry Vyukov <dvyukov@google.com>
11062 R:      Andrey Konovalov <andreyknvl@gmail.com>
11063 L:      kasan-dev@googlegroups.com
11064 S:      Maintained
11065 F:      Documentation/dev-tools/kcov.rst
11066 F:      include/linux/kcov.h
11067 F:      include/uapi/linux/kcov.h
11068 F:      kernel/kcov.c
11069 F:      scripts/Makefile.kcov
11070
11071 KCSAN
11072 M:      Marco Elver <elver@google.com>
11073 R:      Dmitry Vyukov <dvyukov@google.com>
11074 L:      kasan-dev@googlegroups.com
11075 S:      Maintained
11076 F:      Documentation/dev-tools/kcsan.rst
11077 F:      include/linux/kcsan*.h
11078 F:      kernel/kcsan/
11079 F:      lib/Kconfig.kcsan
11080 F:      scripts/Makefile.kcsan
11081
11082 KDUMP
11083 M:      Baoquan He <bhe@redhat.com>
11084 R:      Vivek Goyal <vgoyal@redhat.com>
11085 R:      Dave Young <dyoung@redhat.com>
11086 L:      kexec@lists.infradead.org
11087 S:      Maintained
11088 W:      http://lse.sourceforge.net/kdump/
11089 F:      Documentation/admin-guide/kdump/
11090 F:      fs/proc/vmcore.c
11091 F:      include/linux/crash_core.h
11092 F:      include/linux/crash_dump.h
11093 F:      include/uapi/linux/vmcore.h
11094 F:      kernel/crash_*.c
11095
11096 KEENE FM RADIO TRANSMITTER DRIVER
11097 M:      Hans Verkuil <hverkuil@xs4all.nl>
11098 L:      linux-media@vger.kernel.org
11099 S:      Maintained
11100 W:      https://linuxtv.org
11101 T:      git git://linuxtv.org/media_tree.git
11102 F:      drivers/media/radio/radio-keene*
11103
11104 KERNEL AUTOMOUNTER
11105 M:      Ian Kent <raven@themaw.net>
11106 L:      autofs@vger.kernel.org
11107 S:      Maintained
11108 F:      fs/autofs/
11109
11110 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11111 M:      Masahiro Yamada <masahiroy@kernel.org>
11112 R:      Nathan Chancellor <nathan@kernel.org>
11113 R:      Nick Desaulniers <ndesaulniers@google.com>
11114 R:      Nicolas Schier <nicolas@fjasle.eu>
11115 L:      linux-kbuild@vger.kernel.org
11116 S:      Maintained
11117 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11119 F:      Documentation/kbuild/
11120 F:      Makefile
11121 F:      scripts/*vmlinux*
11122 F:      scripts/Kbuild*
11123 F:      scripts/Makefile*
11124 F:      scripts/basic/
11125 F:      scripts/dummy-tools/
11126 F:      scripts/mk*
11127 F:      scripts/mod/
11128 F:      scripts/package/
11129
11130 KERNEL HARDENING (not covered by other areas)
11131 M:      Kees Cook <keescook@chromium.org>
11132 L:      linux-hardening@vger.kernel.org
11133 S:      Supported
11134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11135 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11136 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11137 F:      include/linux/overflow.h
11138 F:      include/linux/randomize_kstack.h
11139 F:      mm/usercopy.c
11140 K:      \b(add|choose)_random_kstack_offset\b
11141 K:      \b__check_(object_size|heap_object)\b
11142
11143 KERNEL JANITORS
11144 L:      kernel-janitors@vger.kernel.org
11145 S:      Odd Fixes
11146 W:      http://kernelnewbies.org/KernelJanitors
11147
11148 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11149 M:      Chuck Lever <chuck.lever@oracle.com>
11150 M:      Jeff Layton <jlayton@kernel.org>
11151 L:      linux-nfs@vger.kernel.org
11152 S:      Supported
11153 W:      http://nfs.sourceforge.net/
11154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11155 F:      fs/exportfs/
11156 F:      fs/lockd/
11157 F:      fs/nfs_common/
11158 F:      fs/nfsd/
11159 F:      include/linux/lockd/
11160 F:      include/linux/sunrpc/
11161 F:      include/trace/events/rpcgss.h
11162 F:      include/trace/events/rpcrdma.h
11163 F:      include/trace/events/sunrpc.h
11164 F:      include/trace/misc/fs.h
11165 F:      include/trace/misc/nfs.h
11166 F:      include/trace/misc/sunrpc.h
11167 F:      include/uapi/linux/nfsd/
11168 F:      include/uapi/linux/sunrpc/
11169 F:      net/sunrpc/
11170 F:      Documentation/filesystems/nfs/
11171
11172 KERNEL REGRESSIONS
11173 M:      Thorsten Leemhuis <linux@leemhuis.info>
11174 L:      regressions@lists.linux.dev
11175 S:      Supported
11176 F:      Documentation/admin-guide/reporting-regressions.rst
11177 F:      Documentation/process/handling-regressions.rst
11178
11179 KERNEL SELFTEST FRAMEWORK
11180 M:      Shuah Khan <shuah@kernel.org>
11181 M:      Shuah Khan <skhan@linuxfoundation.org>
11182 L:      linux-kselftest@vger.kernel.org
11183 S:      Maintained
11184 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11186 F:      Documentation/dev-tools/kselftest*
11187 F:      tools/testing/selftests/
11188
11189 KERNEL SMB3 SERVER (KSMBD)
11190 M:      Namjae Jeon <linkinjeon@kernel.org>
11191 M:      Steve French <sfrench@samba.org>
11192 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11193 R:      Tom Talpey <tom@talpey.com>
11194 L:      linux-cifs@vger.kernel.org
11195 S:      Maintained
11196 T:      git git://git.samba.org/ksmbd.git
11197 F:      Documentation/filesystems/cifs/ksmbd.rst
11198 F:      fs/ksmbd/
11199 F:      fs/smbfs_common/
11200
11201 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11202 M:      Brendan Higgins <brendanhiggins@google.com>
11203 M:      David Gow <davidgow@google.com>
11204 L:      linux-kselftest@vger.kernel.org
11205 L:      kunit-dev@googlegroups.com
11206 S:      Maintained
11207 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11208 F:      Documentation/dev-tools/kunit/
11209 F:      include/kunit/
11210 F:      lib/kunit/
11211 F:      tools/testing/kunit/
11212
11213 KERNEL USERMODE HELPER
11214 M:      Luis Chamberlain <mcgrof@kernel.org>
11215 L:      linux-kernel@vger.kernel.org
11216 S:      Maintained
11217 F:      include/linux/umh.h
11218 F:      kernel/umh.c
11219
11220 KERNEL VIRTUAL MACHINE (KVM)
11221 M:      Paolo Bonzini <pbonzini@redhat.com>
11222 L:      kvm@vger.kernel.org
11223 S:      Supported
11224 W:      http://www.linux-kvm.org
11225 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11226 F:      Documentation/virt/kvm/
11227 F:      include/asm-generic/kvm*
11228 F:      include/kvm/iodev.h
11229 F:      include/linux/kvm*
11230 F:      include/trace/events/kvm.h
11231 F:      include/uapi/asm-generic/kvm*
11232 F:      include/uapi/linux/kvm*
11233 F:      tools/kvm/
11234 F:      tools/testing/selftests/kvm/
11235 F:      virt/kvm/*
11236
11237 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11238 M:      Marc Zyngier <maz@kernel.org>
11239 R:      James Morse <james.morse@arm.com>
11240 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11241 R:      Oliver Upton <oliver.upton@linux.dev>
11242 R:      Zenghui Yu <yuzenghui@huawei.com>
11243 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11244 L:      kvmarm@lists.linux.dev
11245 L:      kvmarm@lists.cs.columbia.edu (deprecated, moderated for non-subscribers)
11246 S:      Maintained
11247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11248 F:      arch/arm64/include/asm/kvm*
11249 F:      arch/arm64/include/uapi/asm/kvm*
11250 F:      arch/arm64/kvm/
11251 F:      include/kvm/arm_*
11252 F:      tools/testing/selftests/kvm/*/aarch64/
11253 F:      tools/testing/selftests/kvm/aarch64/
11254
11255 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11256 M:      Huacai Chen <chenhuacai@kernel.org>
11257 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11258 L:      linux-mips@vger.kernel.org
11259 L:      kvm@vger.kernel.org
11260 S:      Maintained
11261 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11262 F:      arch/mips/include/asm/kvm*
11263 F:      arch/mips/include/uapi/asm/kvm*
11264 F:      arch/mips/kvm/
11265
11266 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11267 L:      linuxppc-dev@lists.ozlabs.org
11268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11269 F:      arch/powerpc/include/asm/kvm*
11270 F:      arch/powerpc/include/uapi/asm/kvm*
11271 F:      arch/powerpc/kernel/kvm*
11272 F:      arch/powerpc/kvm/
11273
11274 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11275 M:      Anup Patel <anup@brainfault.org>
11276 R:      Atish Patra <atishp@atishpatra.org>
11277 L:      kvm@vger.kernel.org
11278 L:      kvm-riscv@lists.infradead.org
11279 L:      linux-riscv@lists.infradead.org
11280 S:      Maintained
11281 T:      git https://github.com/kvm-riscv/linux.git
11282 F:      arch/riscv/include/asm/kvm*
11283 F:      arch/riscv/include/uapi/asm/kvm*
11284 F:      arch/riscv/kvm/
11285 F:      tools/testing/selftests/kvm/*/riscv/
11286
11287 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11288 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11289 M:      Janosch Frank <frankja@linux.ibm.com>
11290 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11291 R:      David Hildenbrand <david@redhat.com>
11292 L:      kvm@vger.kernel.org
11293 S:      Supported
11294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11295 F:      Documentation/virt/kvm/s390*
11296 F:      arch/s390/include/asm/gmap.h
11297 F:      arch/s390/include/asm/kvm*
11298 F:      arch/s390/include/uapi/asm/kvm*
11299 F:      arch/s390/include/uapi/asm/uvdevice.h
11300 F:      arch/s390/kernel/uv.c
11301 F:      arch/s390/kvm/
11302 F:      arch/s390/mm/gmap.c
11303 F:      drivers/s390/char/uvdevice.c
11304 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11305 F:      tools/testing/selftests/kvm/*/s390x/
11306 F:      tools/testing/selftests/kvm/s390x/
11307
11308 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11309 M:      Sean Christopherson <seanjc@google.com>
11310 M:      Paolo Bonzini <pbonzini@redhat.com>
11311 L:      kvm@vger.kernel.org
11312 S:      Supported
11313 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11314 F:      arch/x86/include/asm/kvm*
11315 F:      arch/x86/include/asm/svm.h
11316 F:      arch/x86/include/asm/vmx*.h
11317 F:      arch/x86/include/uapi/asm/kvm*
11318 F:      arch/x86/include/uapi/asm/svm.h
11319 F:      arch/x86/include/uapi/asm/vmx.h
11320 F:      arch/x86/kvm/
11321 F:      arch/x86/kvm/*/
11322
11323 KVM PARAVIRT (KVM/paravirt)
11324 M:      Paolo Bonzini <pbonzini@redhat.com>
11325 R:      Wanpeng Li <wanpengli@tencent.com>
11326 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11327 L:      kvm@vger.kernel.org
11328 S:      Supported
11329 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11330 F:      arch/x86/kernel/kvm.c
11331 F:      arch/x86/kernel/kvmclock.c
11332 F:      arch/x86/include/asm/pvclock-abi.h
11333 F:      include/linux/kvm_para.h
11334 F:      include/uapi/linux/kvm_para.h
11335 F:      include/uapi/asm-generic/kvm_para.h
11336 F:      include/asm-generic/kvm_para.h
11337 F:      arch/um/include/asm/kvm_para.h
11338 F:      arch/x86/include/asm/kvm_para.h
11339 F:      arch/x86/include/uapi/asm/kvm_para.h
11340
11341 KVM X86 HYPER-V (KVM/hyper-v)
11342 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11343 M:      Sean Christopherson <seanjc@google.com>
11344 M:      Paolo Bonzini <pbonzini@redhat.com>
11345 L:      kvm@vger.kernel.org
11346 S:      Supported
11347 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11348 F:      arch/x86/kvm/hyperv.*
11349 F:      arch/x86/kvm/kvm_onhyperv.*
11350 F:      arch/x86/kvm/svm/hyperv.*
11351 F:      arch/x86/kvm/svm/svm_onhyperv.*
11352 F:      arch/x86/kvm/vmx/hyperv.*
11353
11354 KVM X86 Xen (KVM/Xen)
11355 M:      David Woodhouse <dwmw2@infradead.org>
11356 M:      Paul Durrant <paul@xen.org>
11357 M:      Sean Christopherson <seanjc@google.com>
11358 M:      Paolo Bonzini <pbonzini@redhat.com>
11359 L:      kvm@vger.kernel.org
11360 S:      Supported
11361 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11362 F:      arch/x86/kvm/xen.*
11363
11364 KERNFS
11365 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11366 M:      Tejun Heo <tj@kernel.org>
11367 S:      Supported
11368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11369 F:      fs/kernfs/
11370 F:      include/linux/kernfs.h
11371
11372 KEXEC
11373 M:      Eric Biederman <ebiederm@xmission.com>
11374 L:      kexec@lists.infradead.org
11375 S:      Maintained
11376 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11377 F:      include/linux/kexec.h
11378 F:      include/uapi/linux/kexec.h
11379 F:      kernel/kexec*
11380
11381 KEYS-ENCRYPTED
11382 M:      Mimi Zohar <zohar@linux.ibm.com>
11383 L:      linux-integrity@vger.kernel.org
11384 L:      keyrings@vger.kernel.org
11385 S:      Supported
11386 F:      Documentation/security/keys/trusted-encrypted.rst
11387 F:      include/keys/encrypted-type.h
11388 F:      security/keys/encrypted-keys/
11389
11390 KEYS-TRUSTED
11391 M:      James Bottomley <jejb@linux.ibm.com>
11392 M:      Jarkko Sakkinen <jarkko@kernel.org>
11393 M:      Mimi Zohar <zohar@linux.ibm.com>
11394 L:      linux-integrity@vger.kernel.org
11395 L:      keyrings@vger.kernel.org
11396 S:      Supported
11397 F:      Documentation/security/keys/trusted-encrypted.rst
11398 F:      include/keys/trusted-type.h
11399 F:      include/keys/trusted_tpm.h
11400 F:      security/keys/trusted-keys/
11401
11402 KEYS-TRUSTED-TEE
11403 M:      Sumit Garg <sumit.garg@linaro.org>
11404 L:      linux-integrity@vger.kernel.org
11405 L:      keyrings@vger.kernel.org
11406 S:      Supported
11407 F:      include/keys/trusted_tee.h
11408 F:      security/keys/trusted-keys/trusted_tee.c
11409
11410 KEYS-TRUSTED-CAAM
11411 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11412 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11413 L:      linux-integrity@vger.kernel.org
11414 L:      keyrings@vger.kernel.org
11415 S:      Maintained
11416 F:      include/keys/trusted_caam.h
11417 F:      security/keys/trusted-keys/trusted_caam.c
11418
11419 KEYS/KEYRINGS
11420 M:      David Howells <dhowells@redhat.com>
11421 M:      Jarkko Sakkinen <jarkko@kernel.org>
11422 L:      keyrings@vger.kernel.org
11423 S:      Maintained
11424 F:      Documentation/security/keys/core.rst
11425 F:      include/keys/
11426 F:      include/linux/key-type.h
11427 F:      include/linux/key.h
11428 F:      include/linux/keyctl.h
11429 F:      include/uapi/linux/keyctl.h
11430 F:      security/keys/
11431
11432 KEYS/KEYRINGS_INTEGRITY
11433 M:      Jarkko Sakkinen <jarkko@kernel.org>
11434 M:      Mimi Zohar <zohar@linux.ibm.com>
11435 L:      linux-integrity@vger.kernel.org
11436 L:      keyrings@vger.kernel.org
11437 S:      Supported
11438 F:      security/integrity/platform_certs
11439
11440 KFENCE
11441 M:      Alexander Potapenko <glider@google.com>
11442 M:      Marco Elver <elver@google.com>
11443 R:      Dmitry Vyukov <dvyukov@google.com>
11444 L:      kasan-dev@googlegroups.com
11445 S:      Maintained
11446 F:      Documentation/dev-tools/kfence.rst
11447 F:      arch/*/include/asm/kfence.h
11448 F:      include/linux/kfence.h
11449 F:      lib/Kconfig.kfence
11450 F:      mm/kfence/
11451
11452 KFIFO
11453 M:      Stefani Seibold <stefani@seibold.net>
11454 S:      Maintained
11455 F:      include/linux/kfifo.h
11456 F:      lib/kfifo.c
11457 F:      samples/kfifo/
11458
11459 KGDB / KDB /debug_core
11460 M:      Jason Wessel <jason.wessel@windriver.com>
11461 M:      Daniel Thompson <daniel.thompson@linaro.org>
11462 R:      Douglas Anderson <dianders@chromium.org>
11463 L:      kgdb-bugreport@lists.sourceforge.net
11464 S:      Maintained
11465 W:      http://kgdb.wiki.kernel.org/
11466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11467 F:      Documentation/dev-tools/kgdb.rst
11468 F:      drivers/misc/kgdbts.c
11469 F:      drivers/tty/serial/kgdboc.c
11470 F:      include/linux/kdb.h
11471 F:      include/linux/kgdb.h
11472 F:      kernel/debug/
11473 F:      kernel/module/kdb.c
11474
11475 KHADAS MCU MFD DRIVER
11476 M:      Neil Armstrong <neil.armstrong@linaro.org>
11477 L:      linux-amlogic@lists.infradead.org
11478 S:      Maintained
11479 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11480 F:      drivers/mfd/khadas-mcu.c
11481 F:      include/linux/mfd/khadas-mcu.h
11482 F:      drivers/thermal/khadas_mcu_fan.c
11483
11484 KIONIX/ROHM KX022A ACCELEROMETER
11485 M:      Matti Vaittinen <mazziesaccount@gmail.com>
11486 L:      linux-iio@vger.kernel.org
11487 S:      Supported
11488 F:      drivers/iio/accel/kionix-kx022a*
11489
11490 KMEMLEAK
11491 M:      Catalin Marinas <catalin.marinas@arm.com>
11492 S:      Maintained
11493 F:      Documentation/dev-tools/kmemleak.rst
11494 F:      include/linux/kmemleak.h
11495 F:      mm/kmemleak.c
11496 F:      samples/kmemleak/kmemleak-test.c
11497
11498 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11499 M:      Luis Chamberlain <mcgrof@kernel.org>
11500 L:      linux-kernel@vger.kernel.org
11501 L:      linux-modules@vger.kernel.org
11502 S:      Maintained
11503 F:      include/linux/kmod.h
11504 F:      kernel/kmod.c
11505 F:      lib/test_kmod.c
11506 F:      tools/testing/selftests/kmod/
11507
11508 KMSAN
11509 M:      Alexander Potapenko <glider@google.com>
11510 R:      Marco Elver <elver@google.com>
11511 R:      Dmitry Vyukov <dvyukov@google.com>
11512 L:      kasan-dev@googlegroups.com
11513 S:      Maintained
11514 F:      Documentation/dev-tools/kmsan.rst
11515 F:      arch/*/include/asm/kmsan.h
11516 F:      arch/*/mm/kmsan_*
11517 F:      include/linux/kmsan*.h
11518 F:      lib/Kconfig.kmsan
11519 F:      mm/kmsan/
11520 F:      scripts/Makefile.kmsan
11521
11522 KPROBES
11523 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11524 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11525 M:      "David S. Miller" <davem@davemloft.net>
11526 M:      Masami Hiramatsu <mhiramat@kernel.org>
11527 L:      linux-kernel@vger.kernel.org
11528 L:      linux-trace-kernel@vger.kernel.org
11529 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11530 S:      Maintained
11531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11532 F:      Documentation/trace/kprobes.rst
11533 F:      include/asm-generic/kprobes.h
11534 F:      include/linux/kprobes.h
11535 F:      kernel/kprobes.c
11536 F:      lib/test_kprobes.c
11537 F:      samples/kprobes
11538
11539 KS0108 LCD CONTROLLER DRIVER
11540 M:      Miguel Ojeda <ojeda@kernel.org>
11541 S:      Maintained
11542 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11543 F:      drivers/auxdisplay/ks0108.c
11544 F:      include/linux/ks0108.h
11545
11546 KTD253 BACKLIGHT DRIVER
11547 M:      Linus Walleij <linus.walleij@linaro.org>
11548 S:      Maintained
11549 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11550 F:      drivers/video/backlight/ktd253-backlight.c
11551
11552 KTEST
11553 M:      Steven Rostedt <rostedt@goodmis.org>
11554 M:      John Hawley <warthog9@eaglescrag.net>
11555 S:      Maintained
11556 F:      tools/testing/ktest
11557
11558 L3MDEV
11559 M:      David Ahern <dsahern@kernel.org>
11560 L:      netdev@vger.kernel.org
11561 S:      Maintained
11562 F:      include/net/l3mdev.h
11563 F:      net/l3mdev
11564
11565 LANDLOCK SECURITY MODULE
11566 M:      Mickaël Salaün <mic@digikod.net>
11567 L:      linux-security-module@vger.kernel.org
11568 S:      Supported
11569 W:      https://landlock.io
11570 T:      git https://github.com/landlock-lsm/linux.git
11571 F:      Documentation/security/landlock.rst
11572 F:      Documentation/userspace-api/landlock.rst
11573 F:      include/uapi/linux/landlock.h
11574 F:      samples/landlock/
11575 F:      security/landlock/
11576 F:      tools/testing/selftests/landlock/
11577 K:      landlock
11578 K:      LANDLOCK
11579
11580 LANTIQ / INTEL Ethernet drivers
11581 M:      Hauke Mehrtens <hauke@hauke-m.de>
11582 L:      netdev@vger.kernel.org
11583 S:      Maintained
11584 F:      drivers/net/dsa/lantiq_gswip.c
11585 F:      drivers/net/dsa/lantiq_pce.h
11586 F:      drivers/net/ethernet/lantiq_xrx200.c
11587 F:      net/dsa/tag_gswip.c
11588
11589 LANTIQ MIPS ARCHITECTURE
11590 M:      John Crispin <john@phrozen.org>
11591 L:      linux-mips@vger.kernel.org
11592 S:      Maintained
11593 F:      arch/mips/lantiq
11594 F:      drivers/soc/lantiq
11595
11596 LASI 53c700 driver for PARISC
11597 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11598 L:      linux-scsi@vger.kernel.org
11599 S:      Maintained
11600 F:      Documentation/scsi/53c700.rst
11601 F:      drivers/scsi/53c700*
11602
11603 LEAKING_ADDRESSES
11604 M:      Tobin C. Harding <me@tobin.cc>
11605 M:      Tycho Andersen <tycho@tycho.pizza>
11606 L:      linux-hardening@vger.kernel.org
11607 S:      Maintained
11608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11609 F:      scripts/leaking_addresses.pl
11610
11611 LED SUBSYSTEM
11612 M:      Pavel Machek <pavel@ucw.cz>
11613 M:      Lee Jones <lee@kernel.org>
11614 L:      linux-leds@vger.kernel.org
11615 S:      Maintained
11616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11617 F:      Documentation/devicetree/bindings/leds/
11618 F:      drivers/leds/
11619 F:      include/dt-bindings/leds/
11620 F:      include/linux/leds.h
11621
11622 LEGACY EEPROM DRIVER
11623 M:      Jean Delvare <jdelvare@suse.com>
11624 S:      Maintained
11625 F:      Documentation/misc-devices/eeprom.rst
11626 F:      drivers/misc/eeprom/eeprom.c
11627
11628 LEGO MINDSTORMS EV3
11629 R:      David Lechner <david@lechnology.com>
11630 S:      Maintained
11631 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11632 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11633 F:      drivers/power/supply/lego_ev3_battery.c
11634
11635 LEGO USB Tower driver
11636 M:      Juergen Stuber <starblue@users.sourceforge.net>
11637 L:      legousb-devel@lists.sourceforge.net
11638 S:      Maintained
11639 W:      http://legousb.sourceforge.net/
11640 F:      drivers/usb/misc/legousbtower.c
11641
11642 LETSKETCH HID TABLET DRIVER
11643 M:      Hans de Goede <hdegoede@redhat.com>
11644 L:      linux-input@vger.kernel.org
11645 S:      Maintained
11646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11647 F:      drivers/hid/hid-letsketch.c
11648
11649 LG LAPTOP EXTRAS
11650 M:      Matan Ziv-Av <matan@svgalib.org>
11651 L:      platform-driver-x86@vger.kernel.org
11652 S:      Maintained
11653 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11654 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11655 F:      drivers/platform/x86/lg-laptop.c
11656
11657 LG2160 MEDIA DRIVER
11658 M:      Michael Krufky <mkrufky@linuxtv.org>
11659 L:      linux-media@vger.kernel.org
11660 S:      Maintained
11661 W:      https://linuxtv.org
11662 W:      http://github.com/mkrufky
11663 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11664 T:      git git://linuxtv.org/mkrufky/tuners.git
11665 F:      drivers/media/dvb-frontends/lg2160.*
11666
11667 LGDT3305 MEDIA DRIVER
11668 M:      Michael Krufky <mkrufky@linuxtv.org>
11669 L:      linux-media@vger.kernel.org
11670 S:      Maintained
11671 W:      https://linuxtv.org
11672 W:      http://github.com/mkrufky
11673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11674 T:      git git://linuxtv.org/mkrufky/tuners.git
11675 F:      drivers/media/dvb-frontends/lgdt3305.*
11676
11677 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11678 M:      Viresh Kumar <vireshk@kernel.org>
11679 L:      linux-ide@vger.kernel.org
11680 S:      Maintained
11681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11682 F:      drivers/ata/pata_arasan_cf.c
11683 F:      include/linux/pata_arasan_cf_data.h
11684
11685 LIBATA PATA DRIVERS
11686 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11687 L:      linux-ide@vger.kernel.org
11688 F:      drivers/ata/ata_*.c
11689 F:      drivers/ata/pata_*.c
11690
11691 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11692 M:      Linus Walleij <linus.walleij@linaro.org>
11693 L:      linux-ide@vger.kernel.org
11694 S:      Maintained
11695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11696 F:      drivers/ata/pata_ftide010.c
11697 F:      drivers/ata/sata_gemini.c
11698 F:      drivers/ata/sata_gemini.h
11699
11700 LIBATA SATA AHCI PLATFORM devices support
11701 M:      Hans de Goede <hdegoede@redhat.com>
11702 M:      Jens Axboe <axboe@kernel.dk>
11703 L:      linux-ide@vger.kernel.org
11704 S:      Maintained
11705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11706 F:      drivers/ata/ahci_platform.c
11707 F:      drivers/ata/libahci_platform.c
11708 F:      include/linux/ahci_platform.h
11709
11710 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11711 M:      Serge Semin <fancer.lancer@gmail.com>
11712 L:      linux-ide@vger.kernel.org
11713 S:      Maintained
11714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11715 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11716 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11717 F:      drivers/ata/ahci_dwc.c
11718
11719 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11720 M:      Mikael Pettersson <mikpelinux@gmail.com>
11721 L:      linux-ide@vger.kernel.org
11722 S:      Maintained
11723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11724 F:      drivers/ata/sata_promise.*
11725
11726 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11727 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11728 L:      linux-ide@vger.kernel.org
11729 S:      Maintained
11730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11731 F:      Documentation/ABI/testing/sysfs-ata
11732 F:      Documentation/devicetree/bindings/ata/
11733 F:      drivers/ata/
11734 F:      include/linux/ata.h
11735 F:      include/linux/libata.h
11736
11737 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11738 M:      Vishal Verma <vishal.l.verma@intel.com>
11739 M:      Dan Williams <dan.j.williams@intel.com>
11740 M:      Dave Jiang <dave.jiang@intel.com>
11741 L:      nvdimm@lists.linux.dev
11742 S:      Supported
11743 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11744 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11745 F:      drivers/nvdimm/btt*
11746
11747 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11748 M:      Dan Williams <dan.j.williams@intel.com>
11749 M:      Vishal Verma <vishal.l.verma@intel.com>
11750 M:      Dave Jiang <dave.jiang@intel.com>
11751 L:      nvdimm@lists.linux.dev
11752 S:      Supported
11753 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11754 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11755 F:      drivers/nvdimm/pmem*
11756
11757 LIBNVDIMM: DEVICETREE BINDINGS
11758 M:      Oliver O'Halloran <oohall@gmail.com>
11759 L:      nvdimm@lists.linux.dev
11760 S:      Supported
11761 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11762 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11763 F:      drivers/nvdimm/of_pmem.c
11764
11765 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11766 M:      Dan Williams <dan.j.williams@intel.com>
11767 M:      Vishal Verma <vishal.l.verma@intel.com>
11768 M:      Dave Jiang <dave.jiang@intel.com>
11769 M:      Ira Weiny <ira.weiny@intel.com>
11770 L:      nvdimm@lists.linux.dev
11771 S:      Supported
11772 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11773 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11775 F:      drivers/acpi/nfit/*
11776 F:      drivers/nvdimm/*
11777 F:      include/linux/libnvdimm.h
11778 F:      include/linux/nd.h
11779 F:      include/uapi/linux/ndctl.h
11780 F:      tools/testing/nvdimm/
11781
11782 LICENSES and SPDX stuff
11783 M:      Thomas Gleixner <tglx@linutronix.de>
11784 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11785 L:      linux-spdx@vger.kernel.org
11786 S:      Maintained
11787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11788 F:      COPYING
11789 F:      Documentation/process/license-rules.rst
11790 F:      LICENSES/
11791 F:      scripts/spdxcheck-test.sh
11792 F:      scripts/spdxcheck.py
11793 F:      scripts/spdxexclude
11794
11795 LINEAR RANGES HELPERS
11796 M:      Mark Brown <broonie@kernel.org>
11797 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11798 F:      lib/linear_ranges.c
11799 F:      lib/test_linear_ranges.c
11800 F:      include/linux/linear_range.h
11801
11802 LINUX FOR POWER MACINTOSH
11803 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11804 L:      linuxppc-dev@lists.ozlabs.org
11805 S:      Odd Fixes
11806 F:      arch/powerpc/platforms/powermac/
11807 F:      drivers/macintosh/
11808
11809 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11810 M:      Michael Ellerman <mpe@ellerman.id.au>
11811 R:      Nicholas Piggin <npiggin@gmail.com>
11812 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11813 L:      linuxppc-dev@lists.ozlabs.org
11814 S:      Supported
11815 W:      https://github.com/linuxppc/wiki/wiki
11816 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11818 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11819 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11820 F:      Documentation/devicetree/bindings/powerpc/
11821 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11822 F:      Documentation/powerpc/
11823 F:      arch/powerpc/
11824 F:      drivers/*/*/*pasemi*
11825 F:      drivers/*/*pasemi*
11826 F:      drivers/char/tpm/tpm_ibmvtpm*
11827 F:      drivers/crypto/nx/
11828 F:      drivers/crypto/vmx/
11829 F:      drivers/i2c/busses/i2c-opal.c
11830 F:      drivers/net/ethernet/ibm/ibmveth.*
11831 F:      drivers/net/ethernet/ibm/ibmvnic.*
11832 F:      drivers/pci/hotplug/pnv_php.c
11833 F:      drivers/pci/hotplug/rpa*
11834 F:      drivers/rtc/rtc-opal.c
11835 F:      drivers/scsi/ibmvscsi/
11836 F:      drivers/tty/hvc/hvc_opal.c
11837 F:      drivers/watchdog/wdrtas.c
11838 F:      tools/testing/selftests/powerpc
11839 N:      /pmac
11840 N:      powermac
11841 N:      powernv
11842 N:      [^a-z0-9]ps3
11843 N:      pseries
11844
11845 LINUX FOR POWERPC EMBEDDED MPC5XXX
11846 M:      Anatolij Gustschin <agust@denx.de>
11847 L:      linuxppc-dev@lists.ozlabs.org
11848 S:      Odd Fixes
11849 F:      arch/powerpc/platforms/512x/
11850 F:      arch/powerpc/platforms/52xx/
11851
11852 LINUX FOR POWERPC EMBEDDED PPC4XX
11853 L:      linuxppc-dev@lists.ozlabs.org
11854 S:      Orphan
11855 F:      arch/powerpc/platforms/40x/
11856 F:      arch/powerpc/platforms/44x/
11857
11858 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11859 M:      Scott Wood <oss@buserror.net>
11860 L:      linuxppc-dev@lists.ozlabs.org
11861 S:      Odd fixes
11862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11863 F:      Documentation/devicetree/bindings/powerpc/fsl/
11864 F:      arch/powerpc/platforms/83xx/
11865 F:      arch/powerpc/platforms/85xx/
11866
11867 LINUX FOR POWERPC EMBEDDED PPC8XX
11868 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11869 L:      linuxppc-dev@lists.ozlabs.org
11870 S:      Maintained
11871 F:      arch/powerpc/platforms/8xx/
11872
11873 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11874 M:      Kees Cook <keescook@chromium.org>
11875 S:      Maintained
11876 F:      drivers/misc/lkdtm/*
11877 F:      tools/testing/selftests/lkdtm/*
11878
11879 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11880 M:      Alan Stern <stern@rowland.harvard.edu>
11881 M:      Andrea Parri <parri.andrea@gmail.com>
11882 M:      Will Deacon <will@kernel.org>
11883 M:      Peter Zijlstra <peterz@infradead.org>
11884 M:      Boqun Feng <boqun.feng@gmail.com>
11885 M:      Nicholas Piggin <npiggin@gmail.com>
11886 M:      David Howells <dhowells@redhat.com>
11887 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11888 M:      Luc Maranget <luc.maranget@inria.fr>
11889 M:      "Paul E. McKenney" <paulmck@kernel.org>
11890 R:      Akira Yokosawa <akiyks@gmail.com>
11891 R:      Daniel Lustig <dlustig@nvidia.com>
11892 R:      Joel Fernandes <joel@joelfernandes.org>
11893 L:      linux-kernel@vger.kernel.org
11894 L:      linux-arch@vger.kernel.org
11895 S:      Supported
11896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11897 F:      Documentation/atomic_bitops.txt
11898 F:      Documentation/atomic_t.txt
11899 F:      Documentation/core-api/refcount-vs-atomic.rst
11900 F:      Documentation/litmus-tests/
11901 F:      Documentation/memory-barriers.txt
11902 F:      tools/memory-model/
11903
11904 LIS3LV02D ACCELEROMETER DRIVER
11905 M:      Eric Piel <eric.piel@tremplin-utc.net>
11906 S:      Maintained
11907 F:      Documentation/misc-devices/lis3lv02d.rst
11908 F:      drivers/misc/lis3lv02d/
11909 F:      drivers/platform/x86/hp/hp_accel.c
11910
11911 LIST KUNIT TEST
11912 M:      David Gow <davidgow@google.com>
11913 L:      linux-kselftest@vger.kernel.org
11914 L:      kunit-dev@googlegroups.com
11915 S:      Maintained
11916 F:      lib/list-test.c
11917
11918 LITEX PLATFORM
11919 M:      Karol Gugala <kgugala@antmicro.com>
11920 M:      Mateusz Holenko <mholenko@antmicro.com>
11921 M:      Gabriel Somlo <gsomlo@gmail.com>
11922 M:      Joel Stanley <joel@jms.id.au>
11923 S:      Maintained
11924 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11925 F:      arch/openrisc/boot/dts/or1klitex.dts
11926 F:      include/linux/litex.h
11927 F:      drivers/tty/serial/liteuart.c
11928 F:      drivers/soc/litex/*
11929 F:      drivers/net/ethernet/litex/*
11930 F:      drivers/mmc/host/litex_mmc.c
11931 N:      litex
11932
11933 LIVE PATCHING
11934 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11935 M:      Jiri Kosina <jikos@kernel.org>
11936 M:      Miroslav Benes <mbenes@suse.cz>
11937 M:      Petr Mladek <pmladek@suse.com>
11938 R:      Joe Lawrence <joe.lawrence@redhat.com>
11939 L:      live-patching@vger.kernel.org
11940 S:      Maintained
11941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11942 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11943 F:      Documentation/livepatch/
11944 F:      arch/powerpc/include/asm/livepatch.h
11945 F:      include/linux/livepatch.h
11946 F:      kernel/livepatch/
11947 F:      kernel/module/livepatch.c
11948 F:      lib/livepatch/
11949 F:      samples/livepatch/
11950 F:      tools/testing/selftests/livepatch/
11951
11952 LLC (802.2)
11953 L:      netdev@vger.kernel.org
11954 S:      Odd fixes
11955 F:      include/linux/llc.h
11956 F:      include/net/llc*
11957 F:      include/uapi/linux/llc.h
11958 F:      net/llc/
11959
11960 LM73 HARDWARE MONITOR DRIVER
11961 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11962 L:      linux-hwmon@vger.kernel.org
11963 S:      Maintained
11964 F:      drivers/hwmon/lm73.c
11965
11966 LM78 HARDWARE MONITOR DRIVER
11967 M:      Jean Delvare <jdelvare@suse.com>
11968 L:      linux-hwmon@vger.kernel.org
11969 S:      Maintained
11970 F:      Documentation/hwmon/lm78.rst
11971 F:      drivers/hwmon/lm78.c
11972
11973 LM83 HARDWARE MONITOR DRIVER
11974 M:      Jean Delvare <jdelvare@suse.com>
11975 L:      linux-hwmon@vger.kernel.org
11976 S:      Maintained
11977 F:      Documentation/hwmon/lm83.rst
11978 F:      drivers/hwmon/lm83.c
11979
11980 LM90 HARDWARE MONITOR DRIVER
11981 M:      Jean Delvare <jdelvare@suse.com>
11982 L:      linux-hwmon@vger.kernel.org
11983 S:      Maintained
11984 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11985 F:      Documentation/hwmon/lm90.rst
11986 F:      drivers/hwmon/lm90.c
11987 F:      include/dt-bindings/thermal/lm90.h
11988
11989 LM95234 HARDWARE MONITOR DRIVER
11990 M:      Guenter Roeck <linux@roeck-us.net>
11991 L:      linux-hwmon@vger.kernel.org
11992 S:      Maintained
11993 F:      Documentation/hwmon/lm95234.rst
11994 F:      drivers/hwmon/lm95234.c
11995
11996 LME2510 MEDIA DRIVER
11997 M:      Malcolm Priestley <tvboxspy@gmail.com>
11998 L:      linux-media@vger.kernel.org
11999 S:      Maintained
12000 W:      https://linuxtv.org
12001 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12002 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
12003
12004 LOADPIN SECURITY MODULE
12005 M:      Kees Cook <keescook@chromium.org>
12006 S:      Supported
12007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12008 F:      Documentation/admin-guide/LSM/LoadPin.rst
12009 F:      security/loadpin/
12010
12011 LOCKING PRIMITIVES
12012 M:      Peter Zijlstra <peterz@infradead.org>
12013 M:      Ingo Molnar <mingo@redhat.com>
12014 M:      Will Deacon <will@kernel.org>
12015 R:      Waiman Long <longman@redhat.com>
12016 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
12017 L:      linux-kernel@vger.kernel.org
12018 S:      Maintained
12019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12020 F:      Documentation/locking/
12021 F:      arch/*/include/asm/spinlock*.h
12022 F:      include/linux/lockdep.h
12023 F:      include/linux/mutex*.h
12024 F:      include/linux/rwlock*.h
12025 F:      include/linux/rwsem*.h
12026 F:      include/linux/seqlock.h
12027 F:      include/linux/spinlock*.h
12028 F:      kernel/locking/
12029 F:      lib/locking*.[ch]
12030 X:      kernel/locking/locktorture.c
12031
12032 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12033 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
12034 L:      linux-ntfs-dev@lists.sourceforge.net
12035 S:      Maintained
12036 W:      http://www.linux-ntfs.org/content/view/19/37/
12037 F:      Documentation/admin-guide/ldm.rst
12038 F:      block/partitions/ldm.*
12039
12040 LOGITECH HID GAMING KEYBOARDS
12041 M:      Hans de Goede <hdegoede@redhat.com>
12042 L:      linux-input@vger.kernel.org
12043 S:      Maintained
12044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12045 F:      drivers/hid/hid-lg-g15.c
12046
12047 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12048 M:      Adrien Grassein <adrien.grassein@gmail.com>
12049 S:      Maintained
12050 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12051 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12052
12053 LOONGARCH
12054 M:      Huacai Chen <chenhuacai@kernel.org>
12055 R:      WANG Xuerui <kernel@xen0n.name>
12056 L:      loongarch@lists.linux.dev
12057 S:      Maintained
12058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12059 F:      arch/loongarch/
12060 F:      drivers/*/*loongarch*
12061 F:      Documentation/loongarch/
12062 F:      Documentation/translations/zh_CN/loongarch/
12063
12064 LOONGSON-2 SOC SERIES GUTS DRIVER
12065 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12066 L:      loongarch@lists.linux.dev
12067 S:      Maintained
12068 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12069 F:      drivers/soc/loongson/loongson2_guts.c
12070
12071 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12072 M:      zhanghongchen <zhanghongchen@loongson.cn>
12073 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12074 L:      linux-gpio@vger.kernel.org
12075 S:      Maintained
12076 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12077 F:      drivers/pinctrl/pinctrl-loongson2.c
12078
12079 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12080 M:      Sathya Prakash <sathya.prakash@broadcom.com>
12081 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12082 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12083 L:      MPT-FusionLinux.pdl@broadcom.com
12084 L:      linux-scsi@vger.kernel.org
12085 S:      Supported
12086 W:      http://www.avagotech.com/support/
12087 F:      drivers/message/fusion/
12088 F:      drivers/scsi/mpt3sas/
12089
12090 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12091 M:      Matthew Wilcox <willy@infradead.org>
12092 L:      linux-scsi@vger.kernel.org
12093 S:      Maintained
12094 F:      drivers/scsi/sym53c8xx_2/
12095
12096 LTC1660 DAC DRIVER
12097 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12098 L:      linux-iio@vger.kernel.org
12099 S:      Maintained
12100 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12101 F:      drivers/iio/dac/ltc1660.c
12102
12103 LTC2688 IIO DAC DRIVER
12104 M:      Nuno Sá <nuno.sa@analog.com>
12105 L:      linux-iio@vger.kernel.org
12106 S:      Supported
12107 W:      https://ez.analog.com/linux-software-drivers
12108 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12109 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12110 F:      drivers/iio/dac/ltc2688.c
12111
12112 LTC2947 HARDWARE MONITOR DRIVER
12113 M:      Nuno Sá <nuno.sa@analog.com>
12114 L:      linux-hwmon@vger.kernel.org
12115 S:      Supported
12116 W:      https://ez.analog.com/linux-software-drivers
12117 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12118 F:      drivers/hwmon/ltc2947-core.c
12119 F:      drivers/hwmon/ltc2947-i2c.c
12120 F:      drivers/hwmon/ltc2947-spi.c
12121 F:      drivers/hwmon/ltc2947.h
12122
12123 LTC2983 IIO TEMPERATURE DRIVER
12124 M:      Nuno Sá <nuno.sa@analog.com>
12125 L:      linux-iio@vger.kernel.org
12126 S:      Supported
12127 W:      https://ez.analog.com/linux-software-drivers
12128 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12129 F:      drivers/iio/temperature/ltc2983.c
12130
12131 LTC4261 HARDWARE MONITOR DRIVER
12132 M:      Guenter Roeck <linux@roeck-us.net>
12133 L:      linux-hwmon@vger.kernel.org
12134 S:      Maintained
12135 F:      Documentation/hwmon/ltc4261.rst
12136 F:      drivers/hwmon/ltc4261.c
12137
12138 LTC4306 I2C MULTIPLEXER DRIVER
12139 M:      Michael Hennerich <michael.hennerich@analog.com>
12140 L:      linux-i2c@vger.kernel.org
12141 S:      Supported
12142 W:      https://ez.analog.com/linux-software-drivers
12143 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12144 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12145
12146 LTP (Linux Test Project)
12147 M:      Mike Frysinger <vapier@gentoo.org>
12148 M:      Cyril Hrubis <chrubis@suse.cz>
12149 M:      Wanlong Gao <wanlong.gao@gmail.com>
12150 M:      Jan Stancek <jstancek@redhat.com>
12151 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12152 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
12153 L:      ltp@lists.linux.it (subscribers-only)
12154 S:      Maintained
12155 W:      http://linux-test-project.github.io/
12156 T:      git https://github.com/linux-test-project/ltp.git
12157
12158 LYNX 28G SERDES PHY DRIVER
12159 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12160 L:      netdev@vger.kernel.org
12161 S:      Supported
12162 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12163 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12164
12165 LYNX PCS MODULE
12166 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12167 L:      netdev@vger.kernel.org
12168 S:      Supported
12169 F:      drivers/net/pcs/pcs-lynx.c
12170 F:      include/linux/pcs-lynx.h
12171
12172 M68K ARCHITECTURE
12173 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12174 L:      linux-m68k@lists.linux-m68k.org
12175 S:      Maintained
12176 W:      http://www.linux-m68k.org/
12177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12178 F:      arch/m68k/
12179 F:      drivers/zorro/
12180
12181 M68K ON APPLE MACINTOSH
12182 M:      Joshua Thompson <funaho@jurai.org>
12183 L:      linux-m68k@lists.linux-m68k.org
12184 S:      Maintained
12185 W:      http://www.mac.linux-m68k.org/
12186 F:      arch/m68k/mac/
12187 F:      drivers/macintosh/adb-iop.c
12188 F:      drivers/macintosh/via-macii.c
12189
12190 M68K ON HP9000/300
12191 M:      Philip Blundell <philb@gnu.org>
12192 S:      Maintained
12193 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12194 F:      arch/m68k/hp300/
12195
12196 M88DS3103 MEDIA DRIVER
12197 M:      Antti Palosaari <crope@iki.fi>
12198 L:      linux-media@vger.kernel.org
12199 S:      Maintained
12200 W:      https://linuxtv.org
12201 W:      http://palosaari.fi/linux/
12202 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12203 T:      git git://linuxtv.org/anttip/media_tree.git
12204 F:      drivers/media/dvb-frontends/m88ds3103*
12205
12206 M88RS2000 MEDIA DRIVER
12207 M:      Malcolm Priestley <tvboxspy@gmail.com>
12208 L:      linux-media@vger.kernel.org
12209 S:      Maintained
12210 W:      https://linuxtv.org
12211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12212 F:      drivers/media/dvb-frontends/m88rs2000*
12213
12214 MA901 MASTERKIT USB FM RADIO DRIVER
12215 M:      Alexey Klimov <klimov.linux@gmail.com>
12216 L:      linux-media@vger.kernel.org
12217 S:      Maintained
12218 T:      git git://linuxtv.org/media_tree.git
12219 F:      drivers/media/radio/radio-ma901.c
12220
12221 MAC80211
12222 M:      Johannes Berg <johannes@sipsolutions.net>
12223 L:      linux-wireless@vger.kernel.org
12224 S:      Maintained
12225 W:      https://wireless.wiki.kernel.org/
12226 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12229 F:      Documentation/networking/mac80211-injection.rst
12230 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12231 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12232 F:      include/net/mac80211.h
12233 F:      net/mac80211/
12234
12235 MAILBOX API
12236 M:      Jassi Brar <jassisinghbrar@gmail.com>
12237 L:      linux-kernel@vger.kernel.org
12238 S:      Maintained
12239 F:      drivers/mailbox/
12240 F:      include/linux/mailbox_client.h
12241 F:      include/linux/mailbox_controller.h
12242 F:      include/dt-bindings/mailbox/
12243 F:      Documentation/devicetree/bindings/mailbox/
12244
12245 MAILBOX ARM MHUv2
12246 M:      Viresh Kumar <viresh.kumar@linaro.org>
12247 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12248 L:      linux-kernel@vger.kernel.org
12249 S:      Maintained
12250 F:      drivers/mailbox/arm_mhuv2.c
12251 F:      include/linux/mailbox/arm_mhuv2_message.h
12252 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12253
12254 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12255 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12256 M:      Matt Johnston <matt@codeconstruct.com.au>
12257 L:      netdev@vger.kernel.org
12258 S:      Maintained
12259 F:      Documentation/networking/mctp.rst
12260 F:      drivers/net/mctp/
12261 F:      include/net/mctp.h
12262 F:      include/net/mctpdevice.h
12263 F:      include/net/netns/mctp.h
12264 F:      net/mctp/
12265
12266 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12267 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12268 L:      linux-man@vger.kernel.org
12269 S:      Maintained
12270 W:      http://www.kernel.org/doc/man-pages
12271
12272 MAPLE TREE
12273 M:      Liam R. Howlett <Liam.Howlett@oracle.com>
12274 L:      linux-mm@kvack.org
12275 S:      Supported
12276 F:      Documentation/core-api/maple_tree.rst
12277 F:      include/linux/maple_tree.h
12278 F:      include/trace/events/maple_tree.h
12279 F:      lib/maple_tree.c
12280 F:      lib/test_maple_tree.c
12281 F:      tools/testing/radix-tree/linux/maple_tree.h
12282 F:      tools/testing/radix-tree/maple.c
12283
12284 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12285 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12286 L:      linux-mips@vger.kernel.org
12287 S:      Maintained
12288 F:      arch/mips/boot/dts/img/pistachio*
12289
12290 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12291 M:      Andrew Lunn <andrew@lunn.ch>
12292 L:      netdev@vger.kernel.org
12293 S:      Maintained
12294 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12295 F:      Documentation/networking/devlink/mv88e6xxx.rst
12296 F:      drivers/net/dsa/mv88e6xxx/
12297 F:      include/linux/dsa/mv88e6xxx.h
12298 F:      include/linux/platform_data/mv88e6xxx.h
12299
12300 MARVELL ARMADA 3700 PHY DRIVERS
12301 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12302 S:      Maintained
12303 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12304 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12305 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12306 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12307
12308 MARVELL ARMADA 3700 SERIAL DRIVER
12309 M:      Pali Rohár <pali@kernel.org>
12310 S:      Maintained
12311 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12312 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12313 F:      drivers/tty/serial/mvebu-uart.c
12314
12315 MARVELL ARMADA DRM SUPPORT
12316 M:      Russell King <linux@armlinux.org.uk>
12317 S:      Maintained
12318 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12319 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12320 F:      Documentation/devicetree/bindings/display/armada/
12321 F:      drivers/gpu/drm/armada/
12322 F:      include/uapi/drm/armada_drm.h
12323
12324 MARVELL CRYPTO DRIVER
12325 M:      Boris Brezillon <bbrezillon@kernel.org>
12326 M:      Arnaud Ebalard <arno@natisbad.org>
12327 M:      Srujana Challa <schalla@marvell.com>
12328 L:      linux-crypto@vger.kernel.org
12329 S:      Maintained
12330 F:      drivers/crypto/marvell/
12331 F:      include/linux/soc/marvell/octeontx2/
12332
12333 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12334 M:      Mirko Lindner <mlindner@marvell.com>
12335 M:      Stephen Hemminger <stephen@networkplumber.org>
12336 L:      netdev@vger.kernel.org
12337 S:      Maintained
12338 F:      drivers/net/ethernet/marvell/sk*
12339
12340 MARVELL LIBERTAS WIRELESS DRIVER
12341 L:      libertas-dev@lists.infradead.org
12342 S:      Orphan
12343 F:      drivers/net/wireless/marvell/libertas/
12344
12345 MARVELL MACCHIATOBIN SUPPORT
12346 M:      Russell King <linux@armlinux.org.uk>
12347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12348 S:      Maintained
12349 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12350
12351 MARVELL MV643XX ETHERNET DRIVER
12352 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12353 L:      netdev@vger.kernel.org
12354 S:      Maintained
12355 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12356 F:      include/linux/mv643xx.h
12357
12358 MARVELL MV88X3310 PHY DRIVER
12359 M:      Russell King <linux@armlinux.org.uk>
12360 M:      Marek Behún <kabel@kernel.org>
12361 L:      netdev@vger.kernel.org
12362 S:      Maintained
12363 F:      drivers/net/phy/marvell10g.c
12364
12365 MARVELL MVEBU THERMAL DRIVER
12366 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12367 S:      Maintained
12368 F:      drivers/thermal/armada_thermal.c
12369
12370 MARVELL MVNETA ETHERNET DRIVER
12371 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12372 L:      netdev@vger.kernel.org
12373 S:      Maintained
12374 F:      drivers/net/ethernet/marvell/mvneta.*
12375
12376 MARVELL MVPP2 ETHERNET DRIVER
12377 M:      Marcin Wojtas <mw@semihalf.com>
12378 M:      Russell King <linux@armlinux.org.uk>
12379 L:      netdev@vger.kernel.org
12380 S:      Maintained
12381 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12382 F:      drivers/net/ethernet/marvell/mvpp2/
12383
12384 MARVELL MWIFIEX WIRELESS DRIVER
12385 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12386 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12387 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12388 M:      Xinming Hu <huxinming820@gmail.com>
12389 L:      linux-wireless@vger.kernel.org
12390 S:      Maintained
12391 F:      drivers/net/wireless/marvell/mwifiex/
12392
12393 MARVELL MWL8K WIRELESS DRIVER
12394 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12395 L:      linux-wireless@vger.kernel.org
12396 S:      Odd Fixes
12397 F:      drivers/net/wireless/marvell/mwl8k.c
12398
12399 MARVELL NAND CONTROLLER DRIVER
12400 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12401 L:      linux-mtd@lists.infradead.org
12402 S:      Maintained
12403 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12404 F:      drivers/mtd/nand/raw/marvell_nand.c
12405
12406 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12407 M:      Sunil Goutham <sgoutham@marvell.com>
12408 M:      Geetha sowjanya <gakula@marvell.com>
12409 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12410 M:      hariprasad <hkelam@marvell.com>
12411 L:      netdev@vger.kernel.org
12412 S:      Supported
12413 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12414 F:      include/linux/soc/marvell/octeontx2/
12415
12416 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12417 M:      Sunil Goutham <sgoutham@marvell.com>
12418 M:      Linu Cherian <lcherian@marvell.com>
12419 M:      Geetha sowjanya <gakula@marvell.com>
12420 M:      Jerin Jacob <jerinj@marvell.com>
12421 M:      hariprasad <hkelam@marvell.com>
12422 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12423 L:      netdev@vger.kernel.org
12424 S:      Supported
12425 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12426 F:      drivers/net/ethernet/marvell/octeontx2/af/
12427
12428 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12429 M:      Taras Chornyi <taras.chornyi@plvision.eu>
12430 S:      Supported
12431 W:      https://github.com/Marvell-switching/switchdev-prestera
12432 F:      drivers/net/ethernet/marvell/prestera/
12433
12434 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12435 M:      Nicolas Pitre <nico@fluxnic.net>
12436 S:      Odd Fixes
12437 F:      drivers/mmc/host/mvsdio.*
12438
12439 MARVELL USB MDIO CONTROLLER DRIVER
12440 M:      Tobias Waldekranz <tobias@waldekranz.com>
12441 L:      netdev@vger.kernel.org
12442 S:      Maintained
12443 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12444 F:      drivers/net/mdio/mdio-mvusb.c
12445
12446 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12447 M:      Hu Ziji <huziji@marvell.com>
12448 L:      linux-mmc@vger.kernel.org
12449 S:      Supported
12450 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12451 F:      drivers/mmc/host/sdhci-xenon*
12452
12453 MARVELL OCTEON ENDPOINT DRIVER
12454 M:      Veerasenareddy Burru <vburru@marvell.com>
12455 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12456 L:      netdev@vger.kernel.org
12457 S:      Supported
12458 F:      drivers/net/ethernet/marvell/octeon_ep
12459
12460 MATROX FRAMEBUFFER DRIVER
12461 L:      linux-fbdev@vger.kernel.org
12462 S:      Orphan
12463 F:      drivers/video/fbdev/matrox/matroxfb_*
12464 F:      include/uapi/linux/matroxfb.h
12465
12466 MAX15301 DRIVER
12467 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12468 L:      linux-hwmon@vger.kernel.org
12469 S:      Maintained
12470 F:      Documentation/hwmon/max15301.rst
12471 F:      drivers/hwmon/pmbus/max15301.c
12472
12473 MAX16065 HARDWARE MONITOR DRIVER
12474 M:      Guenter Roeck <linux@roeck-us.net>
12475 L:      linux-hwmon@vger.kernel.org
12476 S:      Maintained
12477 F:      Documentation/hwmon/max16065.rst
12478 F:      drivers/hwmon/max16065.c
12479
12480 MAX2175 SDR TUNER DRIVER
12481 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12482 L:      linux-media@vger.kernel.org
12483 S:      Maintained
12484 T:      git git://linuxtv.org/media_tree.git
12485 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12486 F:      Documentation/userspace-api/media/drivers/max2175.rst
12487 F:      drivers/media/i2c/max2175*
12488 F:      include/uapi/linux/max2175.h
12489
12490 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12491 L:      linux-hwmon@vger.kernel.org
12492 S:      Orphan
12493 F:      Documentation/hwmon/max6650.rst
12494 F:      drivers/hwmon/max6650.c
12495
12496 MAX6697 HARDWARE MONITOR DRIVER
12497 M:      Guenter Roeck <linux@roeck-us.net>
12498 L:      linux-hwmon@vger.kernel.org
12499 S:      Maintained
12500 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12501 F:      Documentation/hwmon/max6697.rst
12502 F:      drivers/hwmon/max6697.c
12503 F:      include/linux/platform_data/max6697.h
12504
12505 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12506 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12507 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12508 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12509 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12510 L:      linux-media@vger.kernel.org
12511 S:      Maintained
12512 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12513 F:      drivers/media/i2c/max9286.c
12514
12515 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12516 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12517 L:      linux-media@vger.kernel.org
12518 S:      Maintained
12519 F:      drivers/staging/media/max96712/max96712.c
12520
12521 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12522 M:      Peter Rosin <peda@axentia.se>
12523 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12524 S:      Maintained
12525 F:      Documentation/devicetree/bindings/sound/max9860.txt
12526 F:      sound/soc/codecs/max9860.*
12527
12528 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12529 M:      Andreas Klinger <ak@it-klinger.de>
12530 L:      linux-iio@vger.kernel.org
12531 S:      Maintained
12532 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12533 F:      drivers/iio/proximity/mb1232.c
12534
12535 MAXIM MAX11205 DRIVER
12536 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12537 L:      linux-iio@vger.kernel.org
12538 S:      Supported
12539 W:      https://ez.analog.com/linux-software-drivers
12540 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12541 F:      drivers/iio/adc/max11205.c
12542
12543 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12544 R:      Iskren Chernev <iskren.chernev@gmail.com>
12545 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12546 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12547 R:      Matheus Castello <matheus@castello.eng.br>
12548 L:      linux-pm@vger.kernel.org
12549 S:      Maintained
12550 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12551 F:      drivers/power/supply/max17040_battery.c
12552
12553 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12554 R:      Hans de Goede <hdegoede@redhat.com>
12555 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12556 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12557 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12558 R:      Purism Kernel Team <kernel@puri.sm>
12559 L:      linux-pm@vger.kernel.org
12560 S:      Maintained
12561 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12562 F:      drivers/power/supply/max17042_battery.c
12563
12564 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12565 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12566 L:      linux-kernel@vger.kernel.org
12567 S:      Maintained
12568 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12569 F:      drivers/regulator/max20086-regulator.c
12570
12571 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12572 M:      Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12573 L:      linux-iio@vger.kernel.org
12574 S:      Maintained
12575 F:      drivers/iio/temperature/max30208.c
12576
12577 MAXIM MAX77650 PMIC MFD DRIVER
12578 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12579 L:      linux-kernel@vger.kernel.org
12580 S:      Maintained
12581 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12582 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12583 F:      drivers/gpio/gpio-max77650.c
12584 F:      drivers/input/misc/max77650-onkey.c
12585 F:      drivers/leds/leds-max77650.c
12586 F:      drivers/mfd/max77650.c
12587 F:      drivers/power/supply/max77650-charger.c
12588 F:      drivers/regulator/max77650-regulator.c
12589 F:      include/linux/mfd/max77650.h
12590
12591 MAXIM MAX77714 PMIC MFD DRIVER
12592 M:      Luca Ceresoli <luca@lucaceresoli.net>
12593 S:      Maintained
12594 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12595 F:      drivers/mfd/max77714.c
12596 F:      include/linux/mfd/max77714.h
12597
12598 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12599 M:      Javier Martinez Canillas <javier@dowhile0.org>
12600 L:      linux-kernel@vger.kernel.org
12601 S:      Supported
12602 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12603 F:      drivers/regulator/max77802-regulator.c
12604 F:      include/dt-bindings/*/*max77802.h
12605
12606 MAXIM MAX77976 BATTERY CHARGER
12607 M:      Luca Ceresoli <luca@lucaceresoli.net>
12608 S:      Supported
12609 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12610 F:      drivers/power/supply/max77976_charger.c
12611
12612 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12613 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12614 L:      linux-pm@vger.kernel.org
12615 S:      Supported
12616 B:      mailto:linux-samsung-soc@vger.kernel.org
12617 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12618 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12619 F:      drivers/power/supply/max14577_charger.c
12620 F:      drivers/power/supply/max77693_charger.c
12621
12622 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12623 M:      Chanwoo Choi <cw00.choi@samsung.com>
12624 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12625 L:      linux-kernel@vger.kernel.org
12626 S:      Supported
12627 B:      mailto:linux-samsung-soc@vger.kernel.org
12628 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12629 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12630 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12631 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12632 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12633 F:      drivers/*/*max77843.c
12634 F:      drivers/*/max14577*.c
12635 F:      drivers/*/max77686*.c
12636 F:      drivers/*/max77693*.c
12637 F:      drivers/clk/clk-max77686.c
12638 F:      drivers/extcon/extcon-max14577.c
12639 F:      drivers/extcon/extcon-max77693.c
12640 F:      drivers/rtc/rtc-max77686.c
12641 F:      include/linux/mfd/max14577*.h
12642 F:      include/linux/mfd/max77686*.h
12643 F:      include/linux/mfd/max77693*.h
12644
12645 MAXIRADIO FM RADIO RECEIVER DRIVER
12646 M:      Hans Verkuil <hverkuil@xs4all.nl>
12647 L:      linux-media@vger.kernel.org
12648 S:      Maintained
12649 W:      https://linuxtv.org
12650 T:      git git://linuxtv.org/media_tree.git
12651 F:      drivers/media/radio/radio-maxiradio*
12652
12653 MAXLINEAR ETHERNET PHY DRIVER
12654 M:      Xu Liang <lxu@maxlinear.com>
12655 L:      netdev@vger.kernel.org
12656 S:      Supported
12657 F:      drivers/net/phy/mxl-gpy.c
12658
12659 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12660 R:      Yasushi SHOJI <yashi@spacecubics.com>
12661 L:      linux-can@vger.kernel.org
12662 S:      Maintained
12663 F:      drivers/net/can/usb/mcba_usb.c
12664
12665 MCAN MMIO DEVICE DRIVER
12666 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12667 L:      linux-can@vger.kernel.org
12668 S:      Maintained
12669 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12670 F:      drivers/net/can/m_can/m_can.c
12671 F:      drivers/net/can/m_can/m_can.h
12672 F:      drivers/net/can/m_can/m_can_platform.c
12673
12674 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12675 M:      Rishi Gupta <gupt21@gmail.com>
12676 L:      linux-i2c@vger.kernel.org
12677 L:      linux-input@vger.kernel.org
12678 S:      Maintained
12679 F:      drivers/hid/hid-mcp2221.c
12680
12681 MCP251XFD SPI-CAN NETWORK DRIVER
12682 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12683 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12684 R:      Thomas Kopp <thomas.kopp@microchip.com>
12685 L:      linux-can@vger.kernel.org
12686 S:      Maintained
12687 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12688 F:      drivers/net/can/spi/mcp251xfd/
12689
12690 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12691 M:      Peter Rosin <peda@axentia.se>
12692 L:      linux-iio@vger.kernel.org
12693 S:      Maintained
12694 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12695 F:      drivers/iio/potentiometer/mcp4018.c
12696 F:      drivers/iio/potentiometer/mcp4531.c
12697
12698 MCR20A IEEE-802.15.4 RADIO DRIVER
12699 M:      Stefan Schmidt <stefan@datenfreihafen.org>
12700 L:      linux-wpan@vger.kernel.org
12701 S:      Odd Fixes
12702 W:      https://github.com/xueliu/mcr20a-linux
12703 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12704 F:      drivers/net/ieee802154/mcr20a.c
12705 F:      drivers/net/ieee802154/mcr20a.h
12706
12707 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12708 M:      William Breathitt Gray <william.gray@linaro.org>
12709 L:      linux-iio@vger.kernel.org
12710 S:      Maintained
12711 F:      drivers/iio/dac/cio-dac.c
12712
12713 MEDIA CONTROLLER FRAMEWORK
12714 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12715 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12716 L:      linux-media@vger.kernel.org
12717 S:      Supported
12718 W:      https://www.linuxtv.org
12719 T:      git git://linuxtv.org/media_tree.git
12720 F:      drivers/media/mc/
12721 F:      include/media/media-*.h
12722 F:      include/uapi/linux/media.h
12723
12724 MEDIA DRIVER FOR FREESCALE IMX PXP
12725 M:      Philipp Zabel <p.zabel@pengutronix.de>
12726 L:      linux-media@vger.kernel.org
12727 S:      Maintained
12728 T:      git git://linuxtv.org/media_tree.git
12729 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12730
12731 MEDIA DRIVERS FOR ASCOT2E
12732 M:      Sergey Kozlov <serjk@netup.ru>
12733 M:      Abylay Ospan <aospan@netup.ru>
12734 L:      linux-media@vger.kernel.org
12735 S:      Supported
12736 W:      https://linuxtv.org
12737 W:      http://netup.tv/
12738 T:      git git://linuxtv.org/media_tree.git
12739 F:      drivers/media/dvb-frontends/ascot2e*
12740
12741 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12742 M:      Jasmin Jessich <jasmin@anw.at>
12743 L:      linux-media@vger.kernel.org
12744 S:      Maintained
12745 W:      https://linuxtv.org
12746 T:      git git://linuxtv.org/media_tree.git
12747 F:      drivers/media/dvb-frontends/cxd2099*
12748
12749 MEDIA DRIVERS FOR CXD2841ER
12750 M:      Sergey Kozlov <serjk@netup.ru>
12751 M:      Abylay Ospan <aospan@netup.ru>
12752 L:      linux-media@vger.kernel.org
12753 S:      Supported
12754 W:      https://linuxtv.org
12755 W:      http://netup.tv/
12756 T:      git git://linuxtv.org/media_tree.git
12757 F:      drivers/media/dvb-frontends/cxd2841er*
12758
12759 MEDIA DRIVERS FOR CXD2880
12760 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12761 L:      linux-media@vger.kernel.org
12762 S:      Supported
12763 W:      http://linuxtv.org/
12764 T:      git git://linuxtv.org/media_tree.git
12765 F:      drivers/media/dvb-frontends/cxd2880/*
12766 F:      drivers/media/spi/cxd2880*
12767
12768 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12769 L:      linux-media@vger.kernel.org
12770 S:      Orphan
12771 W:      https://linuxtv.org
12772 T:      git git://linuxtv.org/media_tree.git
12773 F:      drivers/media/pci/ddbridge/*
12774
12775 MEDIA DRIVERS FOR FREESCALE IMX
12776 M:      Steve Longerbeam <slongerbeam@gmail.com>
12777 M:      Philipp Zabel <p.zabel@pengutronix.de>
12778 L:      linux-media@vger.kernel.org
12779 S:      Maintained
12780 T:      git git://linuxtv.org/media_tree.git
12781 F:      Documentation/admin-guide/media/imx.rst
12782 F:      Documentation/devicetree/bindings/media/imx.txt
12783 F:      drivers/staging/media/imx/
12784 F:      include/linux/imx-media.h
12785 F:      include/media/imx.h
12786
12787 MEDIA DRIVERS FOR FREESCALE IMX7
12788 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12789 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12790 L:      linux-media@vger.kernel.org
12791 S:      Maintained
12792 T:      git git://linuxtv.org/media_tree.git
12793 F:      Documentation/admin-guide/media/imx7.rst
12794 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12795 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12796 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12797 F:      drivers/media/platform/nxp/imx7-media-csi.c
12798
12799 MEDIA DRIVERS FOR HELENE
12800 M:      Abylay Ospan <aospan@netup.ru>
12801 L:      linux-media@vger.kernel.org
12802 S:      Supported
12803 W:      https://linuxtv.org
12804 W:      http://netup.tv/
12805 T:      git git://linuxtv.org/media_tree.git
12806 F:      drivers/media/dvb-frontends/helene*
12807
12808 MEDIA DRIVERS FOR HORUS3A
12809 M:      Sergey Kozlov <serjk@netup.ru>
12810 M:      Abylay Ospan <aospan@netup.ru>
12811 L:      linux-media@vger.kernel.org
12812 S:      Supported
12813 W:      https://linuxtv.org
12814 W:      http://netup.tv/
12815 T:      git git://linuxtv.org/media_tree.git
12816 F:      drivers/media/dvb-frontends/horus3a*
12817
12818 MEDIA DRIVERS FOR LNBH25
12819 M:      Sergey Kozlov <serjk@netup.ru>
12820 M:      Abylay Ospan <aospan@netup.ru>
12821 L:      linux-media@vger.kernel.org
12822 S:      Supported
12823 W:      https://linuxtv.org
12824 W:      http://netup.tv/
12825 T:      git git://linuxtv.org/media_tree.git
12826 F:      drivers/media/dvb-frontends/lnbh25*
12827
12828 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12829 L:      linux-media@vger.kernel.org
12830 S:      Orphan
12831 W:      https://linuxtv.org
12832 T:      git git://linuxtv.org/media_tree.git
12833 F:      drivers/media/dvb-frontends/mxl5xx*
12834
12835 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12836 M:      Sergey Kozlov <serjk@netup.ru>
12837 M:      Abylay Ospan <aospan@netup.ru>
12838 L:      linux-media@vger.kernel.org
12839 S:      Supported
12840 W:      https://linuxtv.org
12841 W:      http://netup.tv/
12842 T:      git git://linuxtv.org/media_tree.git
12843 F:      drivers/media/pci/netup_unidvb/*
12844
12845 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12846 M:      Dmitry Osipenko <digetx@gmail.com>
12847 L:      linux-media@vger.kernel.org
12848 L:      linux-tegra@vger.kernel.org
12849 S:      Maintained
12850 T:      git git://linuxtv.org/media_tree.git
12851 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12852 F:      drivers/media/platform/nvidia/tegra-vde/
12853
12854 MEDIA DRIVERS FOR RENESAS - CEU
12855 M:      Jacopo Mondi <jacopo@jmondi.org>
12856 L:      linux-media@vger.kernel.org
12857 L:      linux-renesas-soc@vger.kernel.org
12858 S:      Supported
12859 T:      git git://linuxtv.org/media_tree.git
12860 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12861 F:      drivers/media/platform/renesas/renesas-ceu.c
12862 F:      include/media/drv-intf/renesas-ceu.h
12863
12864 MEDIA DRIVERS FOR RENESAS - DRIF
12865 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12866 L:      linux-media@vger.kernel.org
12867 L:      linux-renesas-soc@vger.kernel.org
12868 S:      Supported
12869 T:      git git://linuxtv.org/media_tree.git
12870 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12871 F:      drivers/media/platform/renesas/rcar_drif.c
12872
12873 MEDIA DRIVERS FOR RENESAS - FCP
12874 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12875 L:      linux-media@vger.kernel.org
12876 L:      linux-renesas-soc@vger.kernel.org
12877 S:      Supported
12878 T:      git git://linuxtv.org/media_tree.git
12879 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12880 F:      drivers/media/platform/renesas/rcar-fcp.c
12881 F:      include/media/rcar-fcp.h
12882
12883 MEDIA DRIVERS FOR RENESAS - FDP1
12884 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12885 L:      linux-media@vger.kernel.org
12886 L:      linux-renesas-soc@vger.kernel.org
12887 S:      Supported
12888 T:      git git://linuxtv.org/media_tree.git
12889 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12890 F:      drivers/media/platform/renesas/rcar_fdp1.c
12891
12892 MEDIA DRIVERS FOR RENESAS - VIN
12893 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12894 L:      linux-media@vger.kernel.org
12895 L:      linux-renesas-soc@vger.kernel.org
12896 S:      Supported
12897 T:      git git://linuxtv.org/media_tree.git
12898 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12899 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12900 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12901 F:      drivers/media/platform/renesas/rcar-isp.c
12902 F:      drivers/media/platform/renesas/rcar-vin/
12903
12904 MEDIA DRIVERS FOR RENESAS - VSP1
12905 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12906 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12907 L:      linux-media@vger.kernel.org
12908 L:      linux-renesas-soc@vger.kernel.org
12909 S:      Supported
12910 T:      git git://linuxtv.org/media_tree.git
12911 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12912 F:      drivers/media/platform/renesas/vsp1/
12913
12914 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12915 L:      linux-media@vger.kernel.org
12916 S:      Orphan
12917 W:      https://linuxtv.org
12918 T:      git git://linuxtv.org/media_tree.git
12919 F:      drivers/media/dvb-frontends/stv0910*
12920
12921 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12922 L:      linux-media@vger.kernel.org
12923 S:      Orphan
12924 W:      https://linuxtv.org
12925 T:      git git://linuxtv.org/media_tree.git
12926 F:      drivers/media/dvb-frontends/stv6111*
12927
12928 MEDIA DRIVERS FOR STM32 - DCMI
12929 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12930 L:      linux-media@vger.kernel.org
12931 S:      Supported
12932 T:      git git://linuxtv.org/media_tree.git
12933 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12934 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12935
12936 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12937 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12938 L:      linux-media@vger.kernel.org
12939 S:      Maintained
12940 W:      https://linuxtv.org
12941 Q:      http://patchwork.kernel.org/project/linux-media/list/
12942 T:      git git://linuxtv.org/media_tree.git
12943 F:      Documentation/admin-guide/media/
12944 F:      Documentation/devicetree/bindings/media/
12945 F:      Documentation/driver-api/media/
12946 F:      Documentation/userspace-api/media/
12947 F:      drivers/media/
12948 F:      drivers/staging/media/
12949 F:      include/dt-bindings/media/
12950 F:      include/linux/platform_data/media/
12951 F:      include/media/
12952 F:      include/uapi/linux/dvb/
12953 F:      include/uapi/linux/ivtv*
12954 F:      include/uapi/linux/media.h
12955 F:      include/uapi/linux/meye.h
12956 F:      include/uapi/linux/uvcvideo.h
12957 F:      include/uapi/linux/v4l2-*
12958 F:      include/uapi/linux/videodev2.h
12959
12960 MEDIATEK BLUETOOTH DRIVER
12961 M:      Sean Wang <sean.wang@mediatek.com>
12962 L:      linux-bluetooth@vger.kernel.org
12963 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12964 S:      Maintained
12965 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12966 F:      drivers/bluetooth/btmtkuart.c
12967
12968 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12969 M:      Sean Wang <sean.wang@mediatek.com>
12970 L:      linux-pm@vger.kernel.org
12971 S:      Maintained
12972 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12973 F:      drivers/power/reset/mt6323-poweroff.c
12974
12975 MEDIATEK CIR DRIVER
12976 M:      Sean Wang <sean.wang@mediatek.com>
12977 S:      Maintained
12978 F:      drivers/media/rc/mtk-cir.c
12979
12980 MEDIATEK DMA DRIVER
12981 M:      Sean Wang <sean.wang@mediatek.com>
12982 L:      dmaengine@vger.kernel.org
12983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12984 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12985 S:      Maintained
12986 F:      Documentation/devicetree/bindings/dma/mtk-*
12987 F:      drivers/dma/mediatek/
12988
12989 MEDIATEK ETHERNET DRIVER
12990 M:      Felix Fietkau <nbd@nbd.name>
12991 M:      John Crispin <john@phrozen.org>
12992 M:      Sean Wang <sean.wang@mediatek.com>
12993 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12994 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12995 L:      netdev@vger.kernel.org
12996 S:      Maintained
12997 F:      drivers/net/ethernet/mediatek/
12998
12999 MEDIATEK I2C CONTROLLER DRIVER
13000 M:      Qii Wang <qii.wang@mediatek.com>
13001 L:      linux-i2c@vger.kernel.org
13002 S:      Maintained
13003 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
13004 F:      drivers/i2c/busses/i2c-mt65xx.c
13005
13006 MEDIATEK IOMMU DRIVER
13007 M:      Yong Wu <yong.wu@mediatek.com>
13008 L:      iommu@lists.linux.dev
13009 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13010 S:      Supported
13011 F:      Documentation/devicetree/bindings/iommu/mediatek*
13012 F:      drivers/iommu/mtk_iommu*
13013 F:      include/dt-bindings/memory/mt*-port.h
13014
13015 MEDIATEK JPEG DRIVER
13016 M:      Bin Liu <bin.liu@mediatek.com>
13017 S:      Supported
13018 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13019 F:      drivers/media/platform/mediatek/jpeg/
13020
13021 MEDIATEK KEYPAD DRIVER
13022 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
13023 S:      Supported
13024 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13025 F:      drivers/input/keyboard/mt6779-keypad.c
13026
13027 MEDIATEK MDP DRIVER
13028 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
13029 M:      Houlong Wei <houlong.wei@mediatek.com>
13030 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13031 S:      Supported
13032 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
13033 F:      drivers/media/platform/mediatek/mdp/
13034 F:      drivers/media/platform/mediatek/vpu/
13035
13036 MEDIATEK MEDIA DRIVER
13037 M:      Tiffany Lin <tiffany.lin@mediatek.com>
13038 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13039 M:      Yunfei Dong <yunfei.dong@mediatek.com>
13040 S:      Supported
13041 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13042 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13043 F:      drivers/media/platform/mediatek/vcodec/
13044 F:      drivers/media/platform/mediatek/vpu/
13045
13046 MEDIATEK MMC/SD/SDIO DRIVER
13047 M:      Chaotian Jing <chaotian.jing@mediatek.com>
13048 S:      Maintained
13049 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13050 F:      drivers/mmc/host/mtk-sd.c
13051
13052 MEDIATEK MT76 WIRELESS LAN DRIVER
13053 M:      Felix Fietkau <nbd@nbd.name>
13054 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13055 M:      Ryder Lee <ryder.lee@mediatek.com>
13056 R:      Shayne Chen <shayne.chen@mediatek.com>
13057 R:      Sean Wang <sean.wang@mediatek.com>
13058 L:      linux-wireless@vger.kernel.org
13059 S:      Maintained
13060 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13061 F:      drivers/net/wireless/mediatek/mt76/
13062
13063 MEDIATEK MT7601U WIRELESS LAN DRIVER
13064 M:      Jakub Kicinski <kuba@kernel.org>
13065 L:      linux-wireless@vger.kernel.org
13066 S:      Maintained
13067 F:      drivers/net/wireless/mediatek/mt7601u/
13068
13069 MEDIATEK MT7621 CLOCK DRIVER
13070 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13071 S:      Maintained
13072 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13073 F:      drivers/clk/ralink/clk-mt7621.c
13074
13075 MEDIATEK MT7621/28/88 I2C DRIVER
13076 M:      Stefan Roese <sr@denx.de>
13077 L:      linux-i2c@vger.kernel.org
13078 S:      Maintained
13079 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13080 F:      drivers/i2c/busses/i2c-mt7621.c
13081
13082 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13083 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13084 S:      Maintained
13085 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13086 F:      drivers/pci/controller/pcie-mt7621.c
13087
13088 MEDIATEK MT7621 PHY PCI DRIVER
13089 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13090 S:      Maintained
13091 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13092 F:      drivers/phy/ralink/phy-mt7621-pci.c
13093
13094 MEDIATEK NAND CONTROLLER DRIVER
13095 L:      linux-mtd@lists.infradead.org
13096 S:      Orphan
13097 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
13098 F:      drivers/mtd/nand/raw/mtk_*
13099
13100 MEDIATEK PMIC LED DRIVER
13101 M:      Sean Wang <sean.wang@mediatek.com>
13102 S:      Maintained
13103 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13104 F:      drivers/leds/leds-mt6323.c
13105
13106 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13107 M:      Sean Wang <sean.wang@mediatek.com>
13108 S:      Maintained
13109 F:      drivers/char/hw_random/mtk-rng.c
13110
13111 MEDIATEK SMI DRIVER
13112 M:      Yong Wu <yong.wu@mediatek.com>
13113 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13114 S:      Supported
13115 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13116 F:      drivers/memory/mtk-smi.c
13117 F:      include/soc/mediatek/smi.h
13118
13119 MEDIATEK SWITCH DRIVER
13120 M:      Sean Wang <sean.wang@mediatek.com>
13121 M:      Landen Chao <Landen.Chao@mediatek.com>
13122 M:      DENG Qingfang <dqfext@gmail.com>
13123 L:      netdev@vger.kernel.org
13124 S:      Maintained
13125 F:      drivers/net/dsa/mt7530.*
13126 F:      net/dsa/tag_mtk.c
13127
13128 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13129 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13130 M:      Intel Corporation <linuxwwan@intel.com>
13131 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13132 R:      Liu Haijun <haijun.liu@mediatek.com>
13133 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13134 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
13135 L:      netdev@vger.kernel.org
13136 S:      Supported
13137 F:      drivers/net/wwan/t7xx/
13138
13139 MEDIATEK USB3 DRD IP DRIVER
13140 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
13141 L:      linux-usb@vger.kernel.org
13142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13143 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13144 S:      Maintained
13145 F:      Documentation/devicetree/bindings/usb/mediatek,*
13146 F:      drivers/usb/host/xhci-mtk*
13147 F:      drivers/usb/mtu3/
13148
13149 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13150 M:      Peter Senna Tschudin <peter.senna@gmail.com>
13151 M:      Martin Donnelly <martin.donnelly@ge.com>
13152 M:      Martyn Welch <martyn.welch@collabora.co.uk>
13153 S:      Maintained
13154 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13155 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13156
13157 MEGARAID SCSI/SAS DRIVERS
13158 M:      Kashyap Desai <kashyap.desai@broadcom.com>
13159 M:      Sumit Saxena <sumit.saxena@broadcom.com>
13160 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13161 L:      megaraidlinux.pdl@broadcom.com
13162 L:      linux-scsi@vger.kernel.org
13163 S:      Maintained
13164 W:      http://www.avagotech.com/support/
13165 F:      Documentation/scsi/megaraid.rst
13166 F:      drivers/scsi/megaraid.*
13167 F:      drivers/scsi/megaraid/
13168
13169 MELEXIS MLX90614 DRIVER
13170 M:      Crt Mori <cmo@melexis.com>
13171 L:      linux-iio@vger.kernel.org
13172 S:      Supported
13173 W:      http://www.melexis.com
13174 F:      drivers/iio/temperature/mlx90614.c
13175
13176 MELEXIS MLX90632 DRIVER
13177 M:      Crt Mori <cmo@melexis.com>
13178 L:      linux-iio@vger.kernel.org
13179 S:      Supported
13180 W:      http://www.melexis.com
13181 F:      drivers/iio/temperature/mlx90632.c
13182
13183 MELFAS MIP4 TOUCHSCREEN DRIVER
13184 M:      Sangwon Jee <jeesw@melfas.com>
13185 S:      Supported
13186 W:      http://www.melfas.com
13187 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13188 F:      drivers/input/touchscreen/melfas_mip4.c
13189
13190 MELLANOX BLUEFIELD I2C DRIVER
13191 M:      Khalil Blaiech <kblaiech@nvidia.com>
13192 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13193 L:      linux-i2c@vger.kernel.org
13194 S:      Supported
13195 F:      drivers/i2c/busses/i2c-mlxbf.c
13196
13197 MELLANOX ETHERNET DRIVER (mlx4_en)
13198 M:      Tariq Toukan <tariqt@nvidia.com>
13199 L:      netdev@vger.kernel.org
13200 S:      Supported
13201 W:      http://www.mellanox.com
13202 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13203 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13204
13205 MELLANOX ETHERNET DRIVER (mlx5e)
13206 M:      Saeed Mahameed <saeedm@nvidia.com>
13207 L:      netdev@vger.kernel.org
13208 S:      Supported
13209 W:      http://www.mellanox.com
13210 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13211 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13212
13213 MELLANOX ETHERNET INNOVA DRIVERS
13214 R:      Boris Pismenny <borisp@nvidia.com>
13215 L:      netdev@vger.kernel.org
13216 S:      Supported
13217 W:      http://www.mellanox.com
13218 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13219 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13220 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13221 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13222
13223 MELLANOX ETHERNET SWITCH DRIVERS
13224 M:      Ido Schimmel <idosch@nvidia.com>
13225 M:      Petr Machata <petrm@nvidia.com>
13226 L:      netdev@vger.kernel.org
13227 S:      Supported
13228 W:      http://www.mellanox.com
13229 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13230 F:      drivers/net/ethernet/mellanox/mlxsw/
13231 F:      tools/testing/selftests/drivers/net/mlxsw/
13232
13233 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13234 M:      mlxsw@nvidia.com
13235 L:      netdev@vger.kernel.org
13236 S:      Supported
13237 W:      http://www.mellanox.com
13238 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13239 F:      drivers/net/ethernet/mellanox/mlxfw/
13240
13241 MELLANOX HARDWARE PLATFORM SUPPORT
13242 M:      Hans de Goede <hdegoede@redhat.com>
13243 M:      Mark Gross <markgross@kernel.org>
13244 M:      Vadim Pasternak <vadimp@nvidia.com>
13245 L:      platform-driver-x86@vger.kernel.org
13246 S:      Supported
13247 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13248 F:      drivers/platform/mellanox/
13249 F:      include/linux/platform_data/mlxreg.h
13250
13251 MELLANOX MLX4 core VPI driver
13252 M:      Tariq Toukan <tariqt@nvidia.com>
13253 L:      netdev@vger.kernel.org
13254 L:      linux-rdma@vger.kernel.org
13255 S:      Supported
13256 W:      http://www.mellanox.com
13257 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13258 F:      drivers/net/ethernet/mellanox/mlx4/
13259 F:      include/linux/mlx4/
13260
13261 MELLANOX MLX4 IB driver
13262 M:      Yishai Hadas <yishaih@nvidia.com>
13263 L:      linux-rdma@vger.kernel.org
13264 S:      Supported
13265 W:      http://www.mellanox.com
13266 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13267 F:      drivers/infiniband/hw/mlx4/
13268 F:      include/linux/mlx4/
13269 F:      include/uapi/rdma/mlx4-abi.h
13270
13271 MELLANOX MLX5 core VPI driver
13272 M:      Saeed Mahameed <saeedm@nvidia.com>
13273 M:      Leon Romanovsky <leonro@nvidia.com>
13274 L:      netdev@vger.kernel.org
13275 L:      linux-rdma@vger.kernel.org
13276 S:      Supported
13277 W:      http://www.mellanox.com
13278 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13279 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13280 F:      drivers/net/ethernet/mellanox/mlx5/core/
13281 F:      include/linux/mlx5/
13282
13283 MELLANOX MLX5 IB driver
13284 M:      Leon Romanovsky <leonro@nvidia.com>
13285 L:      linux-rdma@vger.kernel.org
13286 S:      Supported
13287 W:      http://www.mellanox.com
13288 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13289 F:      drivers/infiniband/hw/mlx5/
13290 F:      include/linux/mlx5/
13291 F:      include/uapi/rdma/mlx5-abi.h
13292
13293 MELLANOX MLXCPLD I2C AND MUX DRIVER
13294 M:      Vadim Pasternak <vadimp@nvidia.com>
13295 M:      Michael Shych <michaelsh@nvidia.com>
13296 L:      linux-i2c@vger.kernel.org
13297 S:      Supported
13298 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13299 F:      drivers/i2c/busses/i2c-mlxcpld.c
13300 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13301
13302 MELLANOX MLXCPLD LED DRIVER
13303 M:      Vadim Pasternak <vadimp@nvidia.com>
13304 L:      linux-leds@vger.kernel.org
13305 S:      Supported
13306 F:      Documentation/leds/leds-mlxcpld.rst
13307 F:      drivers/leds/leds-mlxcpld.c
13308 F:      drivers/leds/leds-mlxreg.c
13309
13310 MELLANOX PLATFORM DRIVER
13311 M:      Vadim Pasternak <vadimp@nvidia.com>
13312 L:      platform-driver-x86@vger.kernel.org
13313 S:      Supported
13314 F:      drivers/platform/x86/mlx-platform.c
13315
13316 MEMBARRIER SUPPORT
13317 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13318 M:      "Paul E. McKenney" <paulmck@kernel.org>
13319 L:      linux-kernel@vger.kernel.org
13320 S:      Supported
13321 F:      arch/powerpc/include/asm/membarrier.h
13322 F:      include/uapi/linux/membarrier.h
13323 F:      kernel/sched/membarrier.c
13324
13325 MEMBLOCK
13326 M:      Mike Rapoport <rppt@kernel.org>
13327 L:      linux-mm@kvack.org
13328 S:      Maintained
13329 F:      Documentation/core-api/boot-time-mm.rst
13330 F:      include/linux/memblock.h
13331 F:      mm/memblock.c
13332 F:      tools/testing/memblock/
13333
13334 MEMORY CONTROLLER DRIVERS
13335 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13336 L:      linux-kernel@vger.kernel.org
13337 S:      Maintained
13338 B:      mailto:krzysztof.kozlowski@linaro.org
13339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13340 F:      Documentation/devicetree/bindings/memory-controllers/
13341 F:      drivers/memory/
13342 F:      include/dt-bindings/memory/
13343 F:      include/memory/
13344
13345 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13346 M:      Dmitry Osipenko <digetx@gmail.com>
13347 L:      linux-pm@vger.kernel.org
13348 L:      linux-tegra@vger.kernel.org
13349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13350 S:      Maintained
13351 F:      drivers/devfreq/tegra30-devfreq.c
13352
13353 MEMORY MANAGEMENT
13354 M:      Andrew Morton <akpm@linux-foundation.org>
13355 L:      linux-mm@kvack.org
13356 S:      Maintained
13357 W:      http://www.linux-mm.org
13358 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13359 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13360 F:      include/linux/gfp.h
13361 F:      include/linux/gfp_types.h
13362 F:      include/linux/memory_hotplug.h
13363 F:      include/linux/mm.h
13364 F:      include/linux/mmzone.h
13365 F:      include/linux/pagewalk.h
13366 F:      mm/
13367 F:      tools/testing/selftests/vm/
13368
13369 VMALLOC
13370 M:      Andrew Morton <akpm@linux-foundation.org>
13371 R:      Uladzislau Rezki <urezki@gmail.com>
13372 R:      Christoph Hellwig <hch@infradead.org>
13373 L:      linux-mm@kvack.org
13374 S:      Maintained
13375 W:      http://www.linux-mm.org
13376 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13377 F:      include/linux/vmalloc.h
13378 F:      mm/vmalloc.c
13379
13380 MEMORY HOT(UN)PLUG
13381 M:      David Hildenbrand <david@redhat.com>
13382 M:      Oscar Salvador <osalvador@suse.de>
13383 L:      linux-mm@kvack.org
13384 S:      Maintained
13385 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13386 F:      Documentation/core-api/memory-hotplug.rst
13387 F:      drivers/base/memory.c
13388 F:      include/linux/memory_hotplug.h
13389 F:      mm/memory_hotplug.c
13390 F:      tools/testing/selftests/memory-hotplug/
13391
13392 MEMORY TECHNOLOGY DEVICES (MTD)
13393 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13394 M:      Richard Weinberger <richard@nod.at>
13395 M:      Vignesh Raghavendra <vigneshr@ti.com>
13396 L:      linux-mtd@lists.infradead.org
13397 S:      Maintained
13398 W:      http://www.linux-mtd.infradead.org/
13399 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13400 C:      irc://irc.oftc.net/mtd
13401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13403 F:      Documentation/devicetree/bindings/mtd/
13404 F:      drivers/mtd/
13405 F:      include/linux/mtd/
13406 F:      include/uapi/mtd/
13407
13408 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13409 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13410 L:      linux-iio@vger.kernel.org
13411 S:      Maintained
13412 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13413 F:      drivers/iio/accel/msa311.c
13414
13415 MEN A21 WATCHDOG DRIVER
13416 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13417 L:      linux-watchdog@vger.kernel.org
13418 S:      Maintained
13419 F:      drivers/watchdog/mena21_wdt.c
13420
13421 MEN CHAMELEON BUS (mcb)
13422 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13423 S:      Maintained
13424 F:      Documentation/driver-api/men-chameleon-bus.rst
13425 F:      drivers/mcb/
13426 F:      include/linux/mcb.h
13427
13428 MEN F21BMC (Board Management Controller)
13429 M:      Andreas Werner <andreas.werner@men.de>
13430 S:      Supported
13431 F:      Documentation/hwmon/menf21bmc.rst
13432 F:      drivers/hwmon/menf21bmc_hwmon.c
13433 F:      drivers/leds/leds-menf21bmc.c
13434 F:      drivers/mfd/menf21bmc.c
13435 F:      drivers/watchdog/menf21bmc_wdt.c
13436
13437 MEN Z069 WATCHDOG DRIVER
13438 M:      Johannes Thumshirn <jth@kernel.org>
13439 L:      linux-watchdog@vger.kernel.org
13440 S:      Maintained
13441 F:      drivers/watchdog/menz69_wdt.c
13442
13443 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13444 M:      Neil Armstrong <neil.armstrong@linaro.org>
13445 L:      linux-media@vger.kernel.org
13446 L:      linux-amlogic@lists.infradead.org
13447 S:      Supported
13448 W:      http://linux-meson.com/
13449 T:      git git://linuxtv.org/media_tree.git
13450 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13451 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13452 F:      drivers/media/cec/platform/meson/ao-cec.c
13453
13454 MESON GE2D DRIVER FOR AMLOGIC SOCS
13455 M:      Neil Armstrong <neil.armstrong@linaro.org>
13456 L:      linux-media@vger.kernel.org
13457 L:      linux-amlogic@lists.infradead.org
13458 S:      Supported
13459 T:      git git://linuxtv.org/media_tree.git
13460 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13461 F:      drivers/media/platform/amlogic/meson-ge2d/
13462
13463 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13464 M:      Liang Yang <liang.yang@amlogic.com>
13465 L:      linux-mtd@lists.infradead.org
13466 S:      Maintained
13467 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13468 F:      drivers/mtd/nand/raw/meson_*
13469
13470 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13471 M:      Neil Armstrong <neil.armstrong@linaro.org>
13472 L:      linux-media@vger.kernel.org
13473 L:      linux-amlogic@lists.infradead.org
13474 S:      Supported
13475 T:      git git://linuxtv.org/media_tree.git
13476 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13477 F:      drivers/staging/media/meson/vdec/
13478
13479 METHODE UDPU SUPPORT
13480 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13481 S:      Maintained
13482 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13483
13484 MHI BUS
13485 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13486 L:      mhi@lists.linux.dev
13487 L:      linux-arm-msm@vger.kernel.org
13488 S:      Maintained
13489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13490 F:      Documentation/ABI/stable/sysfs-bus-mhi
13491 F:      Documentation/mhi/
13492 F:      drivers/bus/mhi/
13493 F:      include/linux/mhi.h
13494
13495 MICROBLAZE ARCHITECTURE
13496 M:      Michal Simek <monstr@monstr.eu>
13497 S:      Supported
13498 W:      http://www.monstr.eu/fdt/
13499 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13500 F:      arch/microblaze/
13501
13502 MICROCHIP AT91 DMA DRIVERS
13503 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13504 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13506 L:      dmaengine@vger.kernel.org
13507 S:      Supported
13508 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13509 F:      drivers/dma/at_hdmac.c
13510 F:      drivers/dma/at_xdmac.c
13511 F:      include/dt-bindings/dma/at91.h
13512
13513 MICROCHIP AT91 SERIAL DRIVER
13514 M:      Richard Genoud <richard.genoud@gmail.com>
13515 S:      Maintained
13516 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13517 F:      drivers/tty/serial/atmel_serial.c
13518 F:      drivers/tty/serial/atmel_serial.h
13519
13520 MICROCHIP AT91 USART MFD DRIVER
13521 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13522 L:      linux-kernel@vger.kernel.org
13523 S:      Supported
13524 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13525 F:      drivers/mfd/at91-usart.c
13526 F:      include/dt-bindings/mfd/at91-usart.h
13527
13528 MICROCHIP AT91 USART SPI DRIVER
13529 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13530 L:      linux-spi@vger.kernel.org
13531 S:      Supported
13532 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13533 F:      drivers/spi/spi-at91-usart.c
13534
13535 MICROCHIP AUDIO ASOC DRIVERS
13536 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13537 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13538 S:      Supported
13539 F:      sound/soc/atmel
13540
13541 MICROCHIP CSI2DC DRIVER
13542 M:      Eugen Hristev <eugen.hristev@microchip.com>
13543 L:      linux-media@vger.kernel.org
13544 S:      Supported
13545 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13546 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13547
13548 MICROCHIP ECC DRIVER
13549 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13550 L:      linux-crypto@vger.kernel.org
13551 S:      Maintained
13552 F:      drivers/crypto/atmel-ecc.*
13553
13554 MICROCHIP EIC DRIVER
13555 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13557 S:      Supported
13558 F:      drivers/irqchip/irq-mchp-eic.c
13559
13560 MICROCHIP I2C DRIVER
13561 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13562 L:      linux-i2c@vger.kernel.org
13563 S:      Supported
13564 F:      drivers/i2c/busses/i2c-at91-*.c
13565 F:      drivers/i2c/busses/i2c-at91.h
13566
13567 MICROCHIP ISC DRIVER
13568 M:      Eugen Hristev <eugen.hristev@microchip.com>
13569 L:      linux-media@vger.kernel.org
13570 S:      Supported
13571 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13572 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13573 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13574 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13575 F:      drivers/media/platform/microchip/microchip-isc*
13576 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13577 F:      include/linux/atmel-isc-media.h
13578
13579 MICROCHIP ISI DRIVER
13580 M:      Eugen Hristev <eugen.hristev@microchip.com>
13581 L:      linux-media@vger.kernel.org
13582 S:      Supported
13583 F:      drivers/media/platform/atmel/atmel-isi.c
13584 F:      drivers/media/platform/atmel/atmel-isi.h
13585
13586 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13587 M:      Woojung Huh <woojung.huh@microchip.com>
13588 M:      UNGLinuxDriver@microchip.com
13589 L:      netdev@vger.kernel.org
13590 S:      Maintained
13591 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13592 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13593 F:      drivers/net/dsa/microchip/*
13594 F:      include/linux/dsa/ksz_common.h
13595 F:      include/linux/platform_data/microchip-ksz.h
13596 F:      net/dsa/tag_ksz.c
13597
13598 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13599 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13600 R:      UNGLinuxDriver@microchip.com
13601 L:      netdev@vger.kernel.org
13602 S:      Maintained
13603 F:      drivers/net/phy/microchip_t1.c
13604
13605 MICROCHIP LAN743X ETHERNET DRIVER
13606 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13607 M:      UNGLinuxDriver@microchip.com
13608 L:      netdev@vger.kernel.org
13609 S:      Maintained
13610 F:      drivers/net/ethernet/microchip/lan743x_*
13611
13612 MICROCHIP LAN966X ETHERNET DRIVER
13613 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13614 M:      UNGLinuxDriver@microchip.com
13615 L:      netdev@vger.kernel.org
13616 S:      Maintained
13617 F:      drivers/net/ethernet/microchip/lan966x/*
13618
13619 MICROCHIP LCDFB DRIVER
13620 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13621 L:      linux-fbdev@vger.kernel.org
13622 S:      Maintained
13623 F:      drivers/video/fbdev/atmel_lcdfb.c
13624 F:      include/video/atmel_lcdc.h
13625
13626 MICROCHIP MCP16502 PMIC DRIVER
13627 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13629 S:      Supported
13630 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13631 F:      drivers/regulator/mcp16502.c
13632
13633 MICROCHIP MCP3911 ADC DRIVER
13634 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13635 M:      Kent Gustavsson <kent@minoris.se>
13636 L:      linux-iio@vger.kernel.org
13637 S:      Maintained
13638 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13639 F:      drivers/iio/adc/mcp3911.c
13640
13641 MICROCHIP MMC/SD/SDIO MCI DRIVER
13642 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13643 S:      Maintained
13644 F:      drivers/mmc/host/atmel-mci.c
13645
13646 MICROCHIP NAND DRIVER
13647 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13648 L:      linux-mtd@lists.infradead.org
13649 S:      Supported
13650 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13651 F:      drivers/mtd/nand/raw/atmel/*
13652
13653 MICROCHIP PCI1XXXX GP DRIVER
13654 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13655 L:      linux-gpio@vger.kernel.org
13656 S:      Supported
13657 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13658 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13659 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13660
13661 MICROCHIP OTPC DRIVER
13662 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13664 S:      Supported
13665 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13666 F:      drivers/nvmem/microchip-otpc.c
13667 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13668
13669 MICROCHIP PCI1XXXX I2C DRIVER
13670 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13671 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13672 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13673 L:      linux-i2c@vger.kernel.org
13674 S:      Maintained
13675 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13676
13677 MICROCHIP PWM DRIVER
13678 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13680 L:      linux-pwm@vger.kernel.org
13681 S:      Supported
13682 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13683 F:      drivers/pwm/pwm-atmel.c
13684
13685 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13686 M:      Eugen Hristev <eugen.hristev@microchip.com>
13687 L:      linux-iio@vger.kernel.org
13688 S:      Supported
13689 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13690 F:      drivers/iio/adc/at91-sama5d2_adc.c
13691 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13692
13693 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13694 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13695 S:      Supported
13696 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13697
13698 MICROCHIP SPI DRIVER
13699 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13700 S:      Supported
13701 F:      drivers/spi/spi-atmel.*
13702
13703 MICROCHIP SSC DRIVER
13704 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13705 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13706 S:      Supported
13707 F:      drivers/misc/atmel-ssc.c
13708 F:      include/linux/atmel-ssc.h
13709
13710 MICROCHIP SOC DRIVERS
13711 M:      Conor Dooley <conor@kernel.org>
13712 S:      Supported
13713 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13714 F:      drivers/soc/microchip/
13715
13716 MICROCHIP USB251XB DRIVER
13717 M:      Richard Leitner <richard.leitner@skidata.com>
13718 L:      linux-usb@vger.kernel.org
13719 S:      Maintained
13720 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13721 F:      drivers/usb/misc/usb251xb.c
13722
13723 MICROCHIP USBA UDC DRIVER
13724 M:      Cristian Birsan <cristian.birsan@microchip.com>
13725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13726 S:      Supported
13727 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13728
13729 MICROCHIP WILC1000 WIFI DRIVER
13730 M:      Ajay Singh <ajay.kathat@microchip.com>
13731 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13732 L:      linux-wireless@vger.kernel.org
13733 S:      Supported
13734 F:      drivers/net/wireless/microchip/wilc1000/
13735
13736 MICROSEMI MIPS SOCS
13737 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13738 M:      UNGLinuxDriver@microchip.com
13739 L:      linux-mips@vger.kernel.org
13740 S:      Supported
13741 F:      Documentation/devicetree/bindings/mips/mscc.txt
13742 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13743 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13744 F:      arch/mips/boot/dts/mscc/
13745 F:      arch/mips/configs/generic/board-ocelot.config
13746 F:      arch/mips/generic/board-ocelot.c
13747
13748 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13749 M:      Don Brace <don.brace@microchip.com>
13750 L:      storagedev@microchip.com
13751 L:      linux-scsi@vger.kernel.org
13752 S:      Supported
13753 F:      Documentation/scsi/smartpqi.rst
13754 F:      drivers/scsi/smartpqi/Kconfig
13755 F:      drivers/scsi/smartpqi/Makefile
13756 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13757 F:      include/linux/cciss*.h
13758 F:      include/uapi/linux/cciss*.h
13759
13760 MICROSOFT MANA RDMA DRIVER
13761 M:      Long Li <longli@microsoft.com>
13762 M:      Ajay Sharma <sharmaajay@microsoft.com>
13763 L:      linux-rdma@vger.kernel.org
13764 S:      Supported
13765 F:      drivers/infiniband/hw/mana/
13766 F:      include/net/mana
13767 F:      include/uapi/rdma/mana-abi.h
13768
13769 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13770 M:      Maximilian Luz <luzmaximilian@gmail.com>
13771 L:      platform-driver-x86@vger.kernel.org
13772 S:      Maintained
13773 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13774
13775 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13776 M:      Maximilian Luz <luzmaximilian@gmail.com>
13777 L:      linux-pm@vger.kernel.org
13778 L:      platform-driver-x86@vger.kernel.org
13779 S:      Maintained
13780 F:      drivers/power/supply/surface_battery.c
13781 F:      drivers/power/supply/surface_charger.c
13782
13783 MICROSOFT SURFACE DTX DRIVER
13784 M:      Maximilian Luz <luzmaximilian@gmail.com>
13785 L:      platform-driver-x86@vger.kernel.org
13786 S:      Maintained
13787 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13788 F:      drivers/platform/surface/surface_dtx.c
13789 F:      include/uapi/linux/surface_aggregator/dtx.h
13790
13791 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13792 M:      Maximilian Luz <luzmaximilian@gmail.com>
13793 L:      platform-driver-x86@vger.kernel.org
13794 S:      Maintained
13795 F:      drivers/platform/surface/surface_gpe.c
13796
13797 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13798 M:      Hans de Goede <hdegoede@redhat.com>
13799 M:      Mark Gross <markgross@kernel.org>
13800 M:      Maximilian Luz <luzmaximilian@gmail.com>
13801 L:      platform-driver-x86@vger.kernel.org
13802 S:      Maintained
13803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13804 F:      drivers/platform/surface/
13805
13806 MICROSOFT SURFACE HID TRANSPORT DRIVER
13807 M:      Maximilian Luz <luzmaximilian@gmail.com>
13808 L:      linux-input@vger.kernel.org
13809 L:      platform-driver-x86@vger.kernel.org
13810 S:      Maintained
13811 F:      drivers/hid/surface-hid/
13812
13813 MICROSOFT SURFACE HOT-PLUG DRIVER
13814 M:      Maximilian Luz <luzmaximilian@gmail.com>
13815 L:      platform-driver-x86@vger.kernel.org
13816 S:      Maintained
13817 F:      drivers/platform/surface/surface_hotplug.c
13818
13819 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13820 M:      Maximilian Luz <luzmaximilian@gmail.com>
13821 L:      platform-driver-x86@vger.kernel.org
13822 S:      Maintained
13823 F:      drivers/platform/surface/surface_platform_profile.c
13824
13825 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13826 M:      Chen Yu <yu.c.chen@intel.com>
13827 L:      platform-driver-x86@vger.kernel.org
13828 S:      Supported
13829 F:      drivers/platform/surface/surfacepro3_button.c
13830
13831 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13832 M:      Maximilian Luz <luzmaximilian@gmail.com>
13833 L:      platform-driver-x86@vger.kernel.org
13834 S:      Maintained
13835 W:      https://github.com/linux-surface/surface-aggregator-module
13836 C:      irc://irc.libera.chat/linux-surface
13837 F:      Documentation/driver-api/surface_aggregator/
13838 F:      drivers/platform/surface/aggregator/
13839 F:      drivers/platform/surface/surface_acpi_notify.c
13840 F:      drivers/platform/surface/surface_aggregator_cdev.c
13841 F:      drivers/platform/surface/surface_aggregator_registry.c
13842 F:      include/linux/surface_acpi_notify.h
13843 F:      include/linux/surface_aggregator/
13844 F:      include/uapi/linux/surface_aggregator/
13845
13846 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13847 M:      Maximilian Luz <luzmaximilian@gmail.com>
13848 L:      platform-driver-x86@vger.kernel.org
13849 S:      Maintained
13850 F:      drivers/platform/surface/surface_aggregator_hub.c
13851
13852 MICROTEK X6 SCANNER
13853 M:      Oliver Neukum <oliver@neukum.org>
13854 S:      Maintained
13855 F:      drivers/usb/image/microtek.*
13856
13857 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13858 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13859 M:      Luka Perkov <luka.perkov@sartura.hr>
13860 S:      Maintained
13861 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13862 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13863 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13864 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13865 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13866 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13867
13868 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13869 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13870 L:      linux-media@vger.kernel.org
13871 S:      Maintained
13872 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13873 F:      Documentation/driver-api/media/drivers/ccs/
13874 F:      Documentation/userspace-api/media/drivers/ccs.rst
13875 F:      drivers/media/i2c/ccs-pll.c
13876 F:      drivers/media/i2c/ccs-pll.h
13877 F:      drivers/media/i2c/ccs/
13878 F:      include/uapi/linux/ccs.h
13879 F:      include/uapi/linux/smiapp.h
13880
13881 MIPS
13882 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13883 L:      linux-mips@vger.kernel.org
13884 S:      Maintained
13885 W:      http://www.linux-mips.org/
13886 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13888 F:      Documentation/devicetree/bindings/mips/
13889 F:      Documentation/mips/
13890 F:      arch/mips/
13891 F:      drivers/platform/mips/
13892 F:      include/dt-bindings/mips/
13893
13894 MIPS BOSTON DEVELOPMENT BOARD
13895 M:      Paul Burton <paulburton@kernel.org>
13896 L:      linux-mips@vger.kernel.org
13897 S:      Maintained
13898 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13899 F:      arch/mips/boot/dts/img/boston.dts
13900 F:      arch/mips/configs/generic/board-boston.config
13901 F:      drivers/clk/imgtec/clk-boston.c
13902 F:      include/dt-bindings/clock/boston-clock.h
13903
13904 MIPS CORE DRIVERS
13905 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13906 M:      Serge Semin <fancer.lancer@gmail.com>
13907 L:      linux-mips@vger.kernel.org
13908 S:      Supported
13909 F:      drivers/bus/mips_cdmm.c
13910 F:      drivers/clocksource/mips-gic-timer.c
13911 F:      drivers/cpuidle/cpuidle-cps.c
13912 F:      drivers/irqchip/irq-mips-cpu.c
13913 F:      drivers/irqchip/irq-mips-gic.c
13914
13915 MIPS GENERIC PLATFORM
13916 M:      Paul Burton <paulburton@kernel.org>
13917 L:      linux-mips@vger.kernel.org
13918 S:      Supported
13919 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13920 F:      arch/mips/generic/
13921 F:      arch/mips/tools/generic-board-config.sh
13922
13923 MIPS RINT INSTRUCTION EMULATION
13924 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13925 L:      linux-mips@vger.kernel.org
13926 S:      Supported
13927 F:      arch/mips/math-emu/dp_rint.c
13928 F:      arch/mips/math-emu/sp_rint.c
13929
13930 MIPS/LOONGSON1 ARCHITECTURE
13931 M:      Keguang Zhang <keguang.zhang@gmail.com>
13932 L:      linux-mips@vger.kernel.org
13933 S:      Maintained
13934 F:      arch/mips/include/asm/mach-loongson32/
13935 F:      arch/mips/loongson32/
13936 F:      drivers/*/*/*loongson1*
13937 F:      drivers/*/*loongson1*
13938
13939 MIPS/LOONGSON2EF ARCHITECTURE
13940 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13941 L:      linux-mips@vger.kernel.org
13942 S:      Maintained
13943 F:      arch/mips/include/asm/mach-loongson2ef/
13944 F:      arch/mips/loongson2ef/
13945 F:      drivers/cpufreq/loongson2_cpufreq.c
13946
13947 MIPS/LOONGSON64 ARCHITECTURE
13948 M:      Huacai Chen <chenhuacai@kernel.org>
13949 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13950 L:      linux-mips@vger.kernel.org
13951 S:      Maintained
13952 F:      arch/mips/include/asm/mach-loongson64/
13953 F:      arch/mips/loongson64/
13954 F:      drivers/irqchip/irq-loongson*
13955 F:      drivers/platform/mips/cpu_hwmon.c
13956
13957 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13958 M:      Hans Verkuil <hverkuil@xs4all.nl>
13959 L:      linux-media@vger.kernel.org
13960 S:      Odd Fixes
13961 W:      https://linuxtv.org
13962 T:      git git://linuxtv.org/media_tree.git
13963 F:      drivers/media/radio/radio-miropcm20*
13964
13965 MMP SUPPORT
13966 R:      Lubomir Rintel <lkundrak@v3.sk>
13967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13968 S:      Odd Fixes
13969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13970 F:      arch/arm/boot/dts/mmp*
13971 F:      arch/arm/mach-mmp/
13972 F:      include/linux/soc/mmp/
13973
13974 MMP USB PHY DRIVERS
13975 R:      Lubomir Rintel <lkundrak@v3.sk>
13976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13977 S:      Maintained
13978 F:      drivers/phy/marvell/phy-mmp3-usb.c
13979 F:      drivers/phy/marvell/phy-pxa-usb.c
13980
13981 MMU GATHER AND TLB INVALIDATION
13982 M:      Will Deacon <will@kernel.org>
13983 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13984 M:      Andrew Morton <akpm@linux-foundation.org>
13985 M:      Nick Piggin <npiggin@gmail.com>
13986 M:      Peter Zijlstra <peterz@infradead.org>
13987 L:      linux-arch@vger.kernel.org
13988 L:      linux-mm@kvack.org
13989 S:      Maintained
13990 F:      arch/*/include/asm/tlb.h
13991 F:      include/asm-generic/tlb.h
13992 F:      mm/mmu_gather.c
13993
13994 MN88472 MEDIA DRIVER
13995 M:      Antti Palosaari <crope@iki.fi>
13996 L:      linux-media@vger.kernel.org
13997 S:      Maintained
13998 W:      https://linuxtv.org
13999 W:      http://palosaari.fi/linux/
14000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14001 F:      drivers/media/dvb-frontends/mn88472*
14002
14003 MN88473 MEDIA DRIVER
14004 M:      Antti Palosaari <crope@iki.fi>
14005 L:      linux-media@vger.kernel.org
14006 S:      Maintained
14007 W:      https://linuxtv.org
14008 W:      http://palosaari.fi/linux/
14009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14010 F:      drivers/media/dvb-frontends/mn88473*
14011
14012 MODULE SUPPORT
14013 M:      Luis Chamberlain <mcgrof@kernel.org>
14014 L:      linux-modules@vger.kernel.org
14015 L:      linux-kernel@vger.kernel.org
14016 S:      Maintained
14017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14018 F:      include/linux/module.h
14019 F:      kernel/module/
14020 F:      scripts/module*
14021
14022 MONOLITHIC POWER SYSTEM PMIC DRIVER
14023 M:      Saravanan Sekar <sravanhome@gmail.com>
14024 S:      Maintained
14025 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14026 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14027 F:      drivers/iio/adc/mp2629_adc.c
14028 F:      drivers/mfd/mp2629.c
14029 F:      drivers/power/supply/mp2629_charger.c
14030 F:      drivers/regulator/mp5416.c
14031 F:      drivers/regulator/mpq7920.c
14032 F:      drivers/regulator/mpq7920.h
14033 F:      include/linux/mfd/mp2629.h
14034
14035 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
14036 S:      Orphan
14037 W:      http://popies.net/meye/
14038 F:      Documentation/userspace-api/media/drivers/meye*
14039 F:      drivers/staging/media/deprecated/meye/
14040 F:      include/uapi/linux/meye.h
14041
14042 MOTORCOMM PHY DRIVER
14043 M:      Peter Geis <pgwipeout@gmail.com>
14044 M:      Frank <Frank.Sae@motor-comm.com>
14045 L:      netdev@vger.kernel.org
14046 S:      Maintained
14047 F:      Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
14048 F:      drivers/net/phy/motorcomm.c
14049
14050 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14051 M:      Jiri Slaby <jirislaby@kernel.org>
14052 S:      Maintained
14053 F:      Documentation/driver-api/tty/moxa-smartio.rst
14054 F:      drivers/tty/mxser.*
14055
14056 MR800 AVERMEDIA USB FM RADIO DRIVER
14057 M:      Alexey Klimov <klimov.linux@gmail.com>
14058 L:      linux-media@vger.kernel.org
14059 S:      Maintained
14060 T:      git git://linuxtv.org/media_tree.git
14061 F:      drivers/media/radio/radio-mr800.c
14062
14063 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14064 M:      Stefan Schmidt <stefan@datenfreihafen.org>
14065 L:      linux-wpan@vger.kernel.org
14066 S:      Odd Fixes
14067 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14068 F:      drivers/net/ieee802154/mrf24j40.c
14069
14070 MSI LAPTOP SUPPORT
14071 M:      "Lee, Chun-Yi" <jlee@suse.com>
14072 L:      platform-driver-x86@vger.kernel.org
14073 S:      Maintained
14074 F:      drivers/platform/x86/msi-laptop.c
14075
14076 MSI WMI SUPPORT
14077 L:      platform-driver-x86@vger.kernel.org
14078 S:      Orphan
14079 F:      drivers/platform/x86/msi-wmi.c
14080
14081 MSI001 MEDIA DRIVER
14082 M:      Antti Palosaari <crope@iki.fi>
14083 L:      linux-media@vger.kernel.org
14084 S:      Maintained
14085 W:      https://linuxtv.org
14086 W:      http://palosaari.fi/linux/
14087 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14088 T:      git git://linuxtv.org/anttip/media_tree.git
14089 F:      drivers/media/tuners/msi001*
14090
14091 MSI2500 MEDIA DRIVER
14092 M:      Antti Palosaari <crope@iki.fi>
14093 L:      linux-media@vger.kernel.org
14094 S:      Maintained
14095 W:      https://linuxtv.org
14096 W:      http://palosaari.fi/linux/
14097 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14098 T:      git git://linuxtv.org/anttip/media_tree.git
14099 F:      drivers/media/usb/msi2500/
14100
14101 MSTAR INTERRUPT CONTROLLER DRIVER
14102 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14103 M:      Daniel Palmer <daniel@thingy.jp>
14104 S:      Maintained
14105 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14106 F:      drivers/irqchip/irq-mst-intc.c
14107
14108 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14109 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14110 L:      linux-mtd@lists.infradead.org
14111 S:      Maintained
14112 F:      drivers/mtd/devices/docg3*
14113
14114 MT9M032 APTINA SENSOR DRIVER
14115 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14116 L:      linux-media@vger.kernel.org
14117 S:      Maintained
14118 T:      git git://linuxtv.org/media_tree.git
14119 F:      drivers/media/i2c/mt9m032.c
14120 F:      include/media/i2c/mt9m032.h
14121
14122 MT9P031 APTINA CAMERA SENSOR
14123 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14124 L:      linux-media@vger.kernel.org
14125 S:      Maintained
14126 T:      git git://linuxtv.org/media_tree.git
14127 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14128 F:      drivers/media/i2c/mt9p031.c
14129 F:      include/media/i2c/mt9p031.h
14130
14131 MT9T001 APTINA CAMERA SENSOR
14132 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14133 L:      linux-media@vger.kernel.org
14134 S:      Maintained
14135 T:      git git://linuxtv.org/media_tree.git
14136 F:      drivers/media/i2c/mt9t001.c
14137 F:      include/media/i2c/mt9t001.h
14138
14139 MT9T112 APTINA CAMERA SENSOR
14140 M:      Jacopo Mondi <jacopo@jmondi.org>
14141 L:      linux-media@vger.kernel.org
14142 S:      Odd Fixes
14143 T:      git git://linuxtv.org/media_tree.git
14144 F:      drivers/media/i2c/mt9t112.c
14145 F:      include/media/i2c/mt9t112.h
14146
14147 MT9V032 APTINA CAMERA SENSOR
14148 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14149 L:      linux-media@vger.kernel.org
14150 S:      Maintained
14151 T:      git git://linuxtv.org/media_tree.git
14152 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14153 F:      drivers/media/i2c/mt9v032.c
14154 F:      include/media/i2c/mt9v032.h
14155
14156 MT9V111 APTINA CAMERA SENSOR
14157 M:      Jacopo Mondi <jacopo@jmondi.org>
14158 L:      linux-media@vger.kernel.org
14159 S:      Maintained
14160 T:      git git://linuxtv.org/media_tree.git
14161 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14162 F:      drivers/media/i2c/mt9v111.c
14163
14164 MULTIFUNCTION DEVICES (MFD)
14165 M:      Lee Jones <lee@kernel.org>
14166 S:      Supported
14167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14168 F:      Documentation/devicetree/bindings/mfd/
14169 F:      drivers/mfd/
14170 F:      include/dt-bindings/mfd/
14171 F:      include/linux/mfd/
14172
14173 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14174 S:      Orphan
14175 F:      drivers/mmc/host/mmc_spi.c
14176 F:      include/linux/spi/mmc_spi.h
14177
14178 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14179 M:      Ulf Hansson <ulf.hansson@linaro.org>
14180 L:      linux-mmc@vger.kernel.org
14181 S:      Maintained
14182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14183 F:      Documentation/devicetree/bindings/mmc/
14184 F:      drivers/mmc/
14185 F:      include/linux/mmc/
14186 F:      include/uapi/linux/mmc/
14187
14188 MULTIPLEXER SUBSYSTEM
14189 M:      Peter Rosin <peda@axentia.se>
14190 S:      Maintained
14191 F:      Documentation/ABI/testing/sysfs-class-mux*
14192 F:      Documentation/devicetree/bindings/mux/
14193 F:      drivers/mux/
14194 F:      include/dt-bindings/mux/
14195 F:      include/linux/mux/
14196
14197 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14198 M:      Bin Liu <b-liu@ti.com>
14199 L:      linux-usb@vger.kernel.org
14200 S:      Maintained
14201 F:      drivers/usb/musb/
14202
14203 MXL301RF MEDIA DRIVER
14204 M:      Akihiro Tsukada <tskd08@gmail.com>
14205 L:      linux-media@vger.kernel.org
14206 S:      Odd Fixes
14207 F:      drivers/media/tuners/mxl301rf*
14208
14209 MXL5007T MEDIA DRIVER
14210 M:      Michael Krufky <mkrufky@linuxtv.org>
14211 L:      linux-media@vger.kernel.org
14212 S:      Maintained
14213 W:      https://linuxtv.org
14214 W:      http://github.com/mkrufky
14215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14216 T:      git git://linuxtv.org/mkrufky/tuners.git
14217 F:      drivers/media/tuners/mxl5007t.*
14218
14219 MXSFB DRM DRIVER
14220 M:      Marek Vasut <marex@denx.de>
14221 M:      Stefan Agner <stefan@agner.ch>
14222 L:      dri-devel@lists.freedesktop.org
14223 S:      Supported
14224 T:      git git://anongit.freedesktop.org/drm/drm-misc
14225 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14226 F:      drivers/gpu/drm/mxsfb/
14227
14228 MYLEX DAC960 PCI RAID Controller
14229 M:      Hannes Reinecke <hare@kernel.org>
14230 L:      linux-scsi@vger.kernel.org
14231 S:      Supported
14232 F:      drivers/scsi/myrb.*
14233 F:      drivers/scsi/myrs.*
14234
14235 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14236 M:      Chris Lee <christopher.lee@cspi.com>
14237 L:      netdev@vger.kernel.org
14238 S:      Supported
14239 W:      https://www.cspi.com/ethernet-products/support/downloads/
14240 F:      drivers/net/ethernet/myricom/myri10ge/
14241
14242 NAND FLASH SUBSYSTEM
14243 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14244 R:      Richard Weinberger <richard@nod.at>
14245 L:      linux-mtd@lists.infradead.org
14246 S:      Maintained
14247 W:      http://www.linux-mtd.infradead.org/
14248 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14249 C:      irc://irc.oftc.net/mtd
14250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14251 F:      drivers/mtd/nand/
14252 F:      include/linux/mtd/*nand*.h
14253
14254 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14255 M:      Daniel Mack <zonque@gmail.com>
14256 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14257 S:      Maintained
14258 W:      http://www.native-instruments.com
14259 F:      sound/usb/caiaq/
14260
14261 NATSEMI ETHERNET DRIVER (DP8381x)
14262 S:      Orphan
14263 F:      drivers/net/ethernet/natsemi/natsemi.c
14264
14265 NCR 5380 SCSI DRIVERS
14266 M:      Finn Thain <fthain@linux-m68k.org>
14267 M:      Michael Schmitz <schmitzmic@gmail.com>
14268 L:      linux-scsi@vger.kernel.org
14269 S:      Maintained
14270 F:      Documentation/scsi/g_NCR5380.rst
14271 F:      drivers/scsi/NCR5380.*
14272 F:      drivers/scsi/arm/cumana_1.c
14273 F:      drivers/scsi/arm/oak.c
14274 F:      drivers/scsi/atari_scsi.*
14275 F:      drivers/scsi/dmx3191d.c
14276 F:      drivers/scsi/g_NCR5380.*
14277 F:      drivers/scsi/mac_scsi.*
14278 F:      drivers/scsi/sun3_scsi.*
14279 F:      drivers/scsi/sun3_scsi_vme.c
14280
14281 NCSI LIBRARY
14282 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14283 S:      Maintained
14284 F:      net/ncsi/
14285
14286 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14287 M:      Guenter Roeck <linux@roeck-us.net>
14288 L:      linux-hwmon@vger.kernel.org
14289 S:      Maintained
14290 F:      Documentation/hwmon/nct6775.rst
14291 F:      drivers/hwmon/nct6775-core.c
14292 F:      drivers/hwmon/nct6775-platform.c
14293 F:      drivers/hwmon/nct6775.h
14294
14295 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14296 M:      Zev Weiss <zev@bewilderbeest.net>
14297 L:      linux-hwmon@vger.kernel.org
14298 S:      Maintained
14299 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14300 F:      drivers/hwmon/nct6775-i2c.c
14301
14302 NETDEVSIM
14303 M:      Jakub Kicinski <kuba@kernel.org>
14304 S:      Maintained
14305 F:      drivers/net/netdevsim/*
14306
14307 NETEM NETWORK EMULATOR
14308 M:      Stephen Hemminger <stephen@networkplumber.org>
14309 L:      netdev@vger.kernel.org
14310 S:      Maintained
14311 F:      net/sched/sch_netem.c
14312
14313 NETERION 10GbE DRIVERS (s2io)
14314 M:      Jon Mason <jdmason@kudzu.us>
14315 L:      netdev@vger.kernel.org
14316 S:      Supported
14317 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14318 F:      drivers/net/ethernet/neterion/
14319
14320 NETFILTER
14321 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14322 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14323 M:      Florian Westphal <fw@strlen.de>
14324 L:      netfilter-devel@vger.kernel.org
14325 L:      coreteam@netfilter.org
14326 S:      Maintained
14327 W:      http://www.netfilter.org/
14328 W:      http://www.iptables.org/
14329 W:      http://www.nftables.org/
14330 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14331 C:      irc://irc.libera.chat/netfilter
14332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14334 F:      include/linux/netfilter*
14335 F:      include/linux/netfilter/
14336 F:      include/net/netfilter/
14337 F:      include/uapi/linux/netfilter*
14338 F:      include/uapi/linux/netfilter/
14339 F:      net/*/netfilter.c
14340 F:      net/*/netfilter/
14341 F:      net/bridge/br_netfilter*.c
14342 F:      net/netfilter/
14343
14344 NETROM NETWORK LAYER
14345 M:      Ralf Baechle <ralf@linux-mips.org>
14346 L:      linux-hams@vger.kernel.org
14347 S:      Maintained
14348 W:      http://www.linux-ax25.org/
14349 F:      include/net/netrom.h
14350 F:      include/uapi/linux/netrom.h
14351 F:      net/netrom/
14352
14353 NETRONIX EMBEDDED CONTROLLER
14354 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14355 S:      Maintained
14356 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14357 F:      drivers/mfd/ntxec.c
14358 F:      drivers/pwm/pwm-ntxec.c
14359 F:      drivers/rtc/rtc-ntxec.c
14360 F:      include/linux/mfd/ntxec.h
14361
14362 NETRONOME ETHERNET DRIVERS
14363 M:      Simon Horman <simon.horman@corigine.com>
14364 R:      Jakub Kicinski <kuba@kernel.org>
14365 L:      oss-drivers@corigine.com
14366 S:      Maintained
14367 F:      drivers/net/ethernet/netronome/
14368
14369 NETWORK BLOCK DEVICE (NBD)
14370 M:      Josef Bacik <josef@toxicpanda.com>
14371 L:      linux-block@vger.kernel.org
14372 L:      nbd@other.debian.org
14373 S:      Maintained
14374 F:      Documentation/admin-guide/blockdev/nbd.rst
14375 F:      drivers/block/nbd.c
14376 F:      include/trace/events/nbd.h
14377 F:      include/uapi/linux/nbd.h
14378
14379 NETWORK DROP MONITOR
14380 M:      Neil Horman <nhorman@tuxdriver.com>
14381 L:      netdev@vger.kernel.org
14382 S:      Maintained
14383 W:      https://fedorahosted.org/dropwatch/
14384 F:      include/uapi/linux/net_dropmon.h
14385 F:      net/core/drop_monitor.c
14386
14387 NETWORKING DRIVERS
14388 M:      "David S. Miller" <davem@davemloft.net>
14389 M:      Eric Dumazet <edumazet@google.com>
14390 M:      Jakub Kicinski <kuba@kernel.org>
14391 M:      Paolo Abeni <pabeni@redhat.com>
14392 L:      netdev@vger.kernel.org
14393 S:      Maintained
14394 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14397 F:      Documentation/devicetree/bindings/net/
14398 F:      drivers/connector/
14399 F:      drivers/net/
14400 F:      include/dt-bindings/net/
14401 F:      include/linux/etherdevice.h
14402 F:      include/linux/fcdevice.h
14403 F:      include/linux/fddidevice.h
14404 F:      include/linux/hippidevice.h
14405 F:      include/linux/if_*
14406 F:      include/linux/inetdevice.h
14407 F:      include/linux/netdevice.h
14408 F:      include/uapi/linux/if_*
14409 F:      include/uapi/linux/netdevice.h
14410
14411 NETWORKING DRIVERS (WIRELESS)
14412 M:      Kalle Valo <kvalo@kernel.org>
14413 L:      linux-wireless@vger.kernel.org
14414 S:      Maintained
14415 W:      https://wireless.wiki.kernel.org/
14416 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14419 F:      Documentation/devicetree/bindings/net/wireless/
14420 F:      drivers/net/wireless/
14421
14422 NETWORKING [DSA]
14423 M:      Andrew Lunn <andrew@lunn.ch>
14424 M:      Florian Fainelli <f.fainelli@gmail.com>
14425 M:      Vladimir Oltean <olteanv@gmail.com>
14426 S:      Maintained
14427 F:      Documentation/devicetree/bindings/net/dsa/
14428 F:      Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
14429 F:      Documentation/devicetree/bindings/net/ethernet-switch.yaml
14430 F:      drivers/net/dsa/
14431 F:      include/linux/dsa/
14432 F:      include/linux/platform_data/dsa.h
14433 F:      include/net/dsa.h
14434 F:      net/dsa/
14435 F:      tools/testing/selftests/drivers/net/dsa/
14436
14437 NETWORKING [GENERAL]
14438 M:      "David S. Miller" <davem@davemloft.net>
14439 M:      Eric Dumazet <edumazet@google.com>
14440 M:      Jakub Kicinski <kuba@kernel.org>
14441 M:      Paolo Abeni <pabeni@redhat.com>
14442 L:      netdev@vger.kernel.org
14443 S:      Maintained
14444 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14445 B:      mailto:netdev@vger.kernel.org
14446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14448 F:      Documentation/core-api/netlink.rst
14449 F:      Documentation/networking/
14450 F:      Documentation/process/maintainer-netdev.rst
14451 F:      Documentation/userspace-api/netlink/
14452 F:      include/linux/in.h
14453 F:      include/linux/net.h
14454 F:      include/linux/netdevice.h
14455 F:      include/net/
14456 F:      include/uapi/linux/in.h
14457 F:      include/uapi/linux/net.h
14458 F:      include/uapi/linux/net_namespace.h
14459 F:      include/uapi/linux/netdevice.h
14460 F:      lib/net_utils.c
14461 F:      lib/random32.c
14462 F:      net/
14463 F:      tools/net/
14464 F:      tools/testing/selftests/net/
14465
14466 NETWORKING [IPSEC]
14467 M:      Steffen Klassert <steffen.klassert@secunet.com>
14468 M:      Herbert Xu <herbert@gondor.apana.org.au>
14469 M:      "David S. Miller" <davem@davemloft.net>
14470 L:      netdev@vger.kernel.org
14471 S:      Maintained
14472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14474 F:      include/net/xfrm.h
14475 F:      include/uapi/linux/xfrm.h
14476 F:      net/ipv4/ah4.c
14477 F:      net/ipv4/esp4*
14478 F:      net/ipv4/ip_vti.c
14479 F:      net/ipv4/ipcomp.c
14480 F:      net/ipv4/xfrm*
14481 F:      net/ipv6/ah6.c
14482 F:      net/ipv6/esp6*
14483 F:      net/ipv6/ip6_vti.c
14484 F:      net/ipv6/ipcomp6.c
14485 F:      net/ipv6/xfrm*
14486 F:      net/key/
14487 F:      net/xfrm/
14488 F:      tools/testing/selftests/net/ipsec.c
14489
14490 NETWORKING [IPv4/IPv6]
14491 M:      "David S. Miller" <davem@davemloft.net>
14492 M:      David Ahern <dsahern@kernel.org>
14493 L:      netdev@vger.kernel.org
14494 S:      Maintained
14495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14496 F:      arch/x86/net/*
14497 F:      include/linux/ip.h
14498 F:      include/linux/ipv6*
14499 F:      include/net/fib*
14500 F:      include/net/ip*
14501 F:      include/net/route.h
14502 F:      net/ipv4/
14503 F:      net/ipv6/
14504
14505 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14506 M:      Paul Moore <paul@paul-moore.com>
14507 L:      netdev@vger.kernel.org
14508 L:      linux-security-module@vger.kernel.org
14509 S:      Maintained
14510 W:      https://github.com/netlabel
14511 F:      Documentation/netlabel/
14512 F:      include/net/calipso.h
14513 F:      include/net/cipso_ipv4.h
14514 F:      include/net/netlabel.h
14515 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14516 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14517 F:      net/ipv4/cipso_ipv4.c
14518 F:      net/ipv6/calipso.c
14519 F:      net/netfilter/xt_CONNSECMARK.c
14520 F:      net/netfilter/xt_SECMARK.c
14521 F:      net/netlabel/
14522
14523 NETWORKING [MPTCP]
14524 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14525 L:      netdev@vger.kernel.org
14526 L:      mptcp@lists.linux.dev
14527 S:      Maintained
14528 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14529 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14530 F:      Documentation/networking/mptcp-sysctl.rst
14531 F:      include/net/mptcp.h
14532 F:      include/trace/events/mptcp.h
14533 F:      include/uapi/linux/mptcp.h
14534 F:      net/mptcp/
14535 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14536 F:      tools/testing/selftests/net/mptcp/
14537
14538 NETWORKING [TCP]
14539 M:      Eric Dumazet <edumazet@google.com>
14540 L:      netdev@vger.kernel.org
14541 S:      Maintained
14542 F:      include/linux/tcp.h
14543 F:      include/net/tcp.h
14544 F:      include/trace/events/tcp.h
14545 F:      include/uapi/linux/tcp.h
14546 F:      net/ipv4/syncookies.c
14547 F:      net/ipv4/tcp*.c
14548 F:      net/ipv6/syncookies.c
14549 F:      net/ipv6/tcp*.c
14550
14551 NETWORKING [TLS]
14552 M:      Boris Pismenny <borisp@nvidia.com>
14553 M:      John Fastabend <john.fastabend@gmail.com>
14554 M:      Jakub Kicinski <kuba@kernel.org>
14555 L:      netdev@vger.kernel.org
14556 S:      Maintained
14557 F:      include/net/tls.h
14558 F:      include/uapi/linux/tls.h
14559 F:      net/tls/*
14560
14561 NETXEN (1/10) GbE SUPPORT
14562 M:      Manish Chopra <manishc@marvell.com>
14563 M:      Rahul Verma <rahulv@marvell.com>
14564 M:      GR-Linux-NIC-Dev@marvell.com
14565 L:      netdev@vger.kernel.org
14566 S:      Supported
14567 F:      drivers/net/ethernet/qlogic/netxen/
14568
14569 NET_FAILOVER MODULE
14570 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14571 L:      netdev@vger.kernel.org
14572 S:      Supported
14573 F:      Documentation/networking/net_failover.rst
14574 F:      drivers/net/net_failover.c
14575 F:      include/net/net_failover.h
14576
14577 NEXTHOP
14578 M:      David Ahern <dsahern@kernel.org>
14579 L:      netdev@vger.kernel.org
14580 S:      Maintained
14581 F:      include/net/netns/nexthop.h
14582 F:      include/net/nexthop.h
14583 F:      include/uapi/linux/nexthop.h
14584 F:      net/ipv4/nexthop.c
14585
14586 NFC SUBSYSTEM
14587 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14588 L:      linux-nfc@lists.01.org (subscribers-only)
14589 L:      netdev@vger.kernel.org
14590 S:      Maintained
14591 B:      mailto:linux-nfc@lists.01.org
14592 F:      Documentation/devicetree/bindings/net/nfc/
14593 F:      drivers/nfc/
14594 F:      include/linux/platform_data/nfcmrvl.h
14595 F:      include/net/nfc/
14596 F:      include/uapi/linux/nfc.h
14597 F:      net/nfc/
14598
14599 NFC VIRTUAL NCI DEVICE DRIVER
14600 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14601 L:      netdev@vger.kernel.org
14602 L:      linux-nfc@lists.01.org (subscribers-only)
14603 S:      Supported
14604 F:      drivers/nfc/virtual_ncidev.c
14605 F:      tools/testing/selftests/nci/
14606
14607 NFS, SUNRPC, AND LOCKD CLIENTS
14608 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14609 M:      Anna Schumaker <anna@kernel.org>
14610 L:      linux-nfs@vger.kernel.org
14611 S:      Maintained
14612 W:      http://client.linux-nfs.org
14613 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14614 F:      fs/lockd/
14615 F:      fs/nfs/
14616 F:      fs/nfs_common/
14617 F:      include/linux/lockd/
14618 F:      include/linux/nfs*
14619 F:      include/linux/sunrpc/
14620 F:      include/uapi/linux/nfs*
14621 F:      include/uapi/linux/sunrpc/
14622 F:      net/sunrpc/
14623 F:      Documentation/filesystems/nfs/
14624
14625 NILFS2 FILESYSTEM
14626 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14627 L:      linux-nilfs@vger.kernel.org
14628 S:      Supported
14629 W:      https://nilfs.sourceforge.io/
14630 W:      https://nilfs.osdn.jp/
14631 T:      git https://github.com/konis/nilfs2.git
14632 F:      Documentation/filesystems/nilfs2.rst
14633 F:      fs/nilfs2/
14634 F:      include/trace/events/nilfs2.h
14635 F:      include/uapi/linux/nilfs2_api.h
14636 F:      include/uapi/linux/nilfs2_ondisk.h
14637
14638 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14639 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14640 S:      Maintained
14641 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14642 F:      Documentation/scsi/NinjaSCSI.rst
14643 F:      drivers/scsi/pcmcia/nsp_*
14644
14645 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14646 M:      GOTO Masanori <gotom@debian.or.jp>
14647 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14648 S:      Maintained
14649 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14650 F:      Documentation/scsi/NinjaSCSI.rst
14651 F:      drivers/scsi/nsp32*
14652
14653 NINTENDO HID DRIVER
14654 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14655 L:      linux-input@vger.kernel.org
14656 S:      Maintained
14657 F:      drivers/hid/hid-nintendo*
14658
14659 NIOS2 ARCHITECTURE
14660 M:      Dinh Nguyen <dinguyen@kernel.org>
14661 S:      Maintained
14662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14663 F:      arch/nios2/
14664
14665 NITRO ENCLAVES (NE)
14666 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14667 L:      linux-kernel@vger.kernel.org
14668 L:      The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14669 S:      Supported
14670 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14671 F:      Documentation/virt/ne_overview.rst
14672 F:      drivers/virt/nitro_enclaves/
14673 F:      include/linux/nitro_enclaves.h
14674 F:      include/uapi/linux/nitro_enclaves.h
14675 F:      samples/nitro_enclaves/
14676
14677 NOHZ, DYNTICKS SUPPORT
14678 M:      Frederic Weisbecker <fweisbec@gmail.com>
14679 M:      Thomas Gleixner <tglx@linutronix.de>
14680 M:      Ingo Molnar <mingo@kernel.org>
14681 L:      linux-kernel@vger.kernel.org
14682 S:      Maintained
14683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14684 F:      include/linux/sched/nohz.h
14685 F:      include/linux/tick.h
14686 F:      kernel/time/tick*.*
14687
14688 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14689 M:      Pavel Machek <pavel@ucw.cz>
14690 M:      Sakari Ailus <sakari.ailus@iki.fi>
14691 L:      linux-media@vger.kernel.org
14692 S:      Maintained
14693 F:      drivers/media/i2c/ad5820.c
14694 F:      drivers/media/i2c/et8ek8
14695
14696 NOKIA N900 POWER SUPPLY DRIVERS
14697 R:      Pali Rohár <pali@kernel.org>
14698 F:      drivers/power/supply/bq2415x_charger.c
14699 F:      drivers/power/supply/bq27xxx_battery.c
14700 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14701 F:      drivers/power/supply/isp1704_charger.c
14702 F:      drivers/power/supply/rx51_battery.c
14703 F:      include/linux/power/bq2415x_charger.h
14704 F:      include/linux/power/bq27xxx_battery.h
14705
14706 NOLIBC HEADER FILE
14707 M:      Willy Tarreau <w@1wt.eu>
14708 S:      Maintained
14709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14710 F:      tools/include/nolibc/
14711 F:      tools/testing/selftests/nolibc/
14712
14713 NSDEPS
14714 M:      Matthias Maennich <maennich@google.com>
14715 S:      Maintained
14716 F:      Documentation/core-api/symbol-namespaces.rst
14717 F:      scripts/nsdeps
14718
14719 NTB AMD DRIVER
14720 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14721 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14722 L:      ntb@lists.linux.dev
14723 S:      Supported
14724 F:      drivers/ntb/hw/amd/
14725
14726 NTB DRIVER CORE
14727 M:      Jon Mason <jdmason@kudzu.us>
14728 M:      Dave Jiang <dave.jiang@intel.com>
14729 M:      Allen Hubbe <allenbh@gmail.com>
14730 L:      ntb@lists.linux.dev
14731 S:      Supported
14732 W:      https://github.com/jonmason/ntb/wiki
14733 T:      git git://github.com/jonmason/ntb.git
14734 F:      drivers/net/ntb_netdev.c
14735 F:      drivers/ntb/
14736 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14737 F:      include/linux/ntb.h
14738 F:      include/linux/ntb_transport.h
14739 F:      tools/testing/selftests/ntb/
14740
14741 NTB IDT DRIVER
14742 M:      Serge Semin <fancer.lancer@gmail.com>
14743 L:      ntb@lists.linux.dev
14744 S:      Supported
14745 F:      drivers/ntb/hw/idt/
14746
14747 NTB INTEL DRIVER
14748 M:      Dave Jiang <dave.jiang@intel.com>
14749 L:      ntb@lists.linux.dev
14750 S:      Supported
14751 W:      https://github.com/davejiang/linux/wiki
14752 T:      git https://github.com/davejiang/linux.git
14753 F:      drivers/ntb/hw/intel/
14754
14755 NTFS FILESYSTEM
14756 M:      Anton Altaparmakov <anton@tuxera.com>
14757 L:      linux-ntfs-dev@lists.sourceforge.net
14758 S:      Supported
14759 W:      http://www.tuxera.com/
14760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14761 F:      Documentation/filesystems/ntfs.rst
14762 F:      fs/ntfs/
14763
14764 NTFS3 FILESYSTEM
14765 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14766 L:      ntfs3@lists.linux.dev
14767 S:      Supported
14768 W:      http://www.paragon-software.com/
14769 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14770 F:      Documentation/filesystems/ntfs3.rst
14771 F:      fs/ntfs3/
14772
14773 NUBUS SUBSYSTEM
14774 M:      Finn Thain <fthain@linux-m68k.org>
14775 L:      linux-m68k@lists.linux-m68k.org
14776 S:      Maintained
14777 F:      arch/*/include/asm/nubus.h
14778 F:      drivers/nubus/
14779 F:      include/linux/nubus.h
14780 F:      include/uapi/linux/nubus.h
14781
14782 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14783 M:      Antonino Daplas <adaplas@gmail.com>
14784 L:      linux-fbdev@vger.kernel.org
14785 S:      Maintained
14786 F:      drivers/video/fbdev/nvidia/
14787 F:      drivers/video/fbdev/riva/
14788
14789 NVIDIA WMI EC BACKLIGHT DRIVER
14790 M:      Daniel Dadap <ddadap@nvidia.com>
14791 L:      platform-driver-x86@vger.kernel.org
14792 S:      Supported
14793 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14794 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14795
14796 NVM EXPRESS DRIVER
14797 M:      Keith Busch <kbusch@kernel.org>
14798 M:      Jens Axboe <axboe@fb.com>
14799 M:      Christoph Hellwig <hch@lst.de>
14800 M:      Sagi Grimberg <sagi@grimberg.me>
14801 L:      linux-nvme@lists.infradead.org
14802 S:      Supported
14803 W:      http://git.infradead.org/nvme.git
14804 T:      git://git.infradead.org/nvme.git
14805 F:      Documentation/nvme/
14806 F:      drivers/nvme/host/
14807 F:      drivers/nvme/common/
14808 F:      include/linux/nvme.h
14809 F:      include/linux/nvme-*.h
14810 F:      include/uapi/linux/nvme_ioctl.h
14811
14812 NVM EXPRESS FABRICS AUTHENTICATION
14813 M:      Hannes Reinecke <hare@suse.de>
14814 L:      linux-nvme@lists.infradead.org
14815 S:      Supported
14816 F:      drivers/nvme/host/auth.c
14817 F:      drivers/nvme/target/auth.c
14818 F:      drivers/nvme/target/fabrics-cmd-auth.c
14819 F:      include/linux/nvme-auth.h
14820
14821 NVM EXPRESS HARDWARE MONITORING SUPPORT
14822 M:      Guenter Roeck <linux@roeck-us.net>
14823 L:      linux-nvme@lists.infradead.org
14824 S:      Supported
14825 F:      drivers/nvme/host/hwmon.c
14826
14827 NVM EXPRESS FC TRANSPORT DRIVERS
14828 M:      James Smart <james.smart@broadcom.com>
14829 L:      linux-nvme@lists.infradead.org
14830 S:      Supported
14831 F:      drivers/nvme/host/fc.c
14832 F:      drivers/nvme/target/fc.c
14833 F:      drivers/nvme/target/fcloop.c
14834 F:      include/linux/nvme-fc-driver.h
14835 F:      include/linux/nvme-fc.h
14836
14837 NVM EXPRESS TARGET DRIVER
14838 M:      Christoph Hellwig <hch@lst.de>
14839 M:      Sagi Grimberg <sagi@grimberg.me>
14840 M:      Chaitanya Kulkarni <kch@nvidia.com>
14841 L:      linux-nvme@lists.infradead.org
14842 S:      Supported
14843 W:      http://git.infradead.org/nvme.git
14844 T:      git://git.infradead.org/nvme.git
14845 F:      drivers/nvme/target/
14846
14847 NVMEM FRAMEWORK
14848 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14849 S:      Maintained
14850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14851 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14852 F:      Documentation/devicetree/bindings/nvmem/
14853 F:      drivers/nvmem/
14854 F:      include/linux/nvmem-consumer.h
14855 F:      include/linux/nvmem-provider.h
14856
14857 NXP C45 TJA11XX PHY DRIVER
14858 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14859 L:      netdev@vger.kernel.org
14860 S:      Maintained
14861 F:      drivers/net/phy/nxp-c45-tja11xx.c
14862
14863 NXP FSPI DRIVER
14864 M:      Han Xu <han.xu@nxp.com>
14865 M:      Haibo Chen <haibo.chen@nxp.com>
14866 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14867 L:      linux-spi@vger.kernel.org
14868 S:      Maintained
14869 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14870 F:      drivers/spi/spi-nxp-fspi.c
14871
14872 NXP FXAS21002C DRIVER
14873 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14874 L:      linux-iio@vger.kernel.org
14875 S:      Maintained
14876 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14877 F:      drivers/iio/gyro/fxas21002c.h
14878 F:      drivers/iio/gyro/fxas21002c_core.c
14879 F:      drivers/iio/gyro/fxas21002c_i2c.c
14880 F:      drivers/iio/gyro/fxas21002c_spi.c
14881
14882 NXP i.MX CLOCK DRIVERS
14883 M:      Abel Vesa <abelvesa@kernel.org>
14884 L:      linux-clk@vger.kernel.org
14885 L:      linux-imx@nxp.com
14886 S:      Maintained
14887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14888 F:      Documentation/devicetree/bindings/clock/imx*
14889 F:      drivers/clk/imx/
14890 F:      include/dt-bindings/clock/imx*
14891
14892 NXP i.MX 8MQ DCSS DRIVER
14893 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14894 R:      Lucas Stach <l.stach@pengutronix.de>
14895 L:      dri-devel@lists.freedesktop.org
14896 S:      Maintained
14897 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14898 F:      drivers/gpu/drm/imx/dcss/
14899
14900 NXP i.MX 8QXP ADC DRIVER
14901 M:      Cai Huoqing <cai.huoqing@linux.dev>
14902 M:      Haibo Chen <haibo.chen@nxp.com>
14903 L:      linux-imx@nxp.com
14904 L:      linux-iio@vger.kernel.org
14905 S:      Maintained
14906 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14907 F:      drivers/iio/adc/imx8qxp-adc.c
14908
14909 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14910 M:      Haibo Chen <haibo.chen@nxp.com>
14911 L:      linux-iio@vger.kernel.org
14912 L:      linux-imx@nxp.com
14913 S:      Maintained
14914 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14915 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14916 F:      drivers/iio/adc/imx7d_adc.c
14917 F:      drivers/iio/adc/vf610_adc.c
14918
14919 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14920 M:      Jagan Teki <jagan@amarulasolutions.com>
14921 S:      Maintained
14922 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14923 F:      drivers/regulator/pf8x00-regulator.c
14924
14925 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14926 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14927 L:      linux-kernel@vger.kernel.org
14928 S:      Maintained
14929 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14930 F:      drivers/extcon/extcon-ptn5150.c
14931
14932 NXP SGTL5000 DRIVER
14933 M:      Fabio Estevam <festevam@gmail.com>
14934 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14935 S:      Maintained
14936 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14937 F:      sound/soc/codecs/sgtl5000*
14938
14939 NXP SJA1105 ETHERNET SWITCH DRIVER
14940 M:      Vladimir Oltean <olteanv@gmail.com>
14941 L:      linux-kernel@vger.kernel.org
14942 S:      Maintained
14943 F:      drivers/net/dsa/sja1105
14944 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14945
14946 NXP TDA998X DRM DRIVER
14947 M:      Russell King <linux@armlinux.org.uk>
14948 S:      Maintained
14949 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14950 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14951 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14952 F:      include/drm/i2c/tda998x.h
14953 F:      include/dt-bindings/display/tda998x.h
14954 K:      "nxp,tda998x"
14955
14956 NXP TFA9879 DRIVER
14957 M:      Peter Rosin <peda@axentia.se>
14958 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14959 S:      Maintained
14960 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14961 F:      sound/soc/codecs/tfa9879*
14962
14963 NXP/Goodix TFA989X (TFA1) DRIVER
14964 M:      Stephan Gerhold <stephan@gerhold.net>
14965 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14966 S:      Maintained
14967 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14968 F:      sound/soc/codecs/tfa989x.c
14969
14970 NXP-NCI NFC DRIVER
14971 L:      linux-nfc@lists.01.org (subscribers-only)
14972 S:      Orphan
14973 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14974 F:      drivers/nfc/nxp-nci
14975
14976 NXP i.MX 8MP DW100 V4L2 DRIVER
14977 M:      Xavier Roumegue <xavier.roumegue@oss.nxp.com>
14978 L:      linux-media@vger.kernel.org
14979 S:      Maintained
14980 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
14981 F:      Documentation/userspace-api/media/drivers/dw100.rst
14982 F:      drivers/media/platform/nxp/dw100/
14983 F:      include/uapi/linux/dw100.h
14984
14985 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14986 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14987 R:      NXP Linux Team <linux-imx@nxp.com>
14988 L:      linux-media@vger.kernel.org
14989 S:      Maintained
14990 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14991 F:      drivers/media/platform/nxp/imx-jpeg
14992
14993 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14994 M:      Jonas Malaco <jonas@protocubo.io>
14995 L:      linux-hwmon@vger.kernel.org
14996 S:      Maintained
14997 F:      Documentation/hwmon/nzxt-kraken2.rst
14998 F:      drivers/hwmon/nzxt-kraken2.c
14999
15000 NZXT-SMART2 HARDWARE MONITORING DRIVER
15001 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
15002 L:      linux-hwmon@vger.kernel.org
15003 S:      Maintained
15004 F:      Documentation/hwmon/nzxt-smart2.rst
15005 F:      drivers/hwmon/nzxt-smart2.c
15006
15007 OBJAGG
15008 M:      Jiri Pirko <jiri@nvidia.com>
15009 L:      netdev@vger.kernel.org
15010 S:      Supported
15011 F:      include/linux/objagg.h
15012 F:      lib/objagg.c
15013 F:      lib/test_objagg.c
15014
15015 OBJTOOL
15016 M:      Josh Poimboeuf <jpoimboe@kernel.org>
15017 M:      Peter Zijlstra <peterz@infradead.org>
15018 S:      Supported
15019 F:      tools/objtool/
15020 F:      include/linux/objtool.h
15021
15022 OCELOT ETHERNET SWITCH DRIVER
15023 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
15024 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
15025 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15026 M:      UNGLinuxDriver@microchip.com
15027 L:      netdev@vger.kernel.org
15028 S:      Supported
15029 F:      drivers/net/dsa/ocelot/*
15030 F:      drivers/net/ethernet/mscc/
15031 F:      include/soc/mscc/ocelot*
15032 F:      net/dsa/tag_ocelot.c
15033 F:      net/dsa/tag_ocelot_8021q.c
15034 F:      tools/testing/selftests/drivers/net/ocelot/*
15035
15036 OCELOT EXTERNAL SWITCH CONTROL
15037 M:      Colin Foster <colin.foster@in-advantage.com>
15038 S:      Supported
15039 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15040 F:      drivers/mfd/ocelot*
15041 F:      drivers/net/dsa/ocelot/ocelot_ext.c
15042 F:      include/linux/mfd/ocelot.h
15043
15044 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15045 M:      Frederic Barrat <fbarrat@linux.ibm.com>
15046 M:      Andrew Donnellan <ajd@linux.ibm.com>
15047 L:      linuxppc-dev@lists.ozlabs.org
15048 S:      Supported
15049 F:      Documentation/userspace-api/accelerators/ocxl.rst
15050 F:      arch/powerpc/include/asm/pnv-ocxl.h
15051 F:      arch/powerpc/platforms/powernv/ocxl.c
15052 F:      drivers/misc/ocxl/
15053 F:      include/misc/ocxl*
15054 F:      include/uapi/misc/ocxl.h
15055
15056 OMAP AUDIO SUPPORT
15057 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
15058 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
15059 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15060 L:      linux-omap@vger.kernel.org
15061 S:      Maintained
15062 F:      sound/soc/ti/n810.c
15063 F:      sound/soc/ti/omap*
15064 F:      sound/soc/ti/rx51.c
15065 F:      sound/soc/ti/sdma-pcm.*
15066
15067 OMAP CLOCK FRAMEWORK SUPPORT
15068 M:      Paul Walmsley <paul@pwsan.com>
15069 L:      linux-omap@vger.kernel.org
15070 S:      Maintained
15071 F:      arch/arm/*omap*/*clock*
15072
15073 OMAP DEVICE TREE SUPPORT
15074 M:      Benoît Cousson <bcousson@baylibre.com>
15075 M:      Tony Lindgren <tony@atomide.com>
15076 L:      linux-omap@vger.kernel.org
15077 L:      devicetree@vger.kernel.org
15078 S:      Maintained
15079 F:      arch/arm/boot/dts/*am3*
15080 F:      arch/arm/boot/dts/*am4*
15081 F:      arch/arm/boot/dts/*am5*
15082 F:      arch/arm/boot/dts/*dra7*
15083 F:      arch/arm/boot/dts/*omap*
15084 F:      arch/arm/boot/dts/logicpd-som-lv*
15085 F:      arch/arm/boot/dts/logicpd-torpedo*
15086
15087 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15088 L:      linux-omap@vger.kernel.org
15089 L:      linux-fbdev@vger.kernel.org
15090 S:      Orphan
15091 F:      Documentation/arm/omap/dss.rst
15092 F:      drivers/video/fbdev/omap2/
15093
15094 OMAP FRAMEBUFFER SUPPORT
15095 L:      linux-fbdev@vger.kernel.org
15096 L:      linux-omap@vger.kernel.org
15097 S:      Orphan
15098 F:      drivers/video/fbdev/omap/
15099
15100 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15101 M:      Roger Quadros <rogerq@kernel.org>
15102 M:      Tony Lindgren <tony@atomide.com>
15103 L:      linux-omap@vger.kernel.org
15104 S:      Maintained
15105 F:      arch/arm/mach-omap2/*gpmc*
15106 F:      drivers/memory/omap-gpmc.c
15107
15108 OMAP GPIO DRIVER
15109 M:      Grygorii Strashko <grygorii.strashko@ti.com>
15110 M:      Santosh Shilimkar <ssantosh@kernel.org>
15111 M:      Kevin Hilman <khilman@kernel.org>
15112 L:      linux-omap@vger.kernel.org
15113 S:      Maintained
15114 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15115 F:      drivers/gpio/gpio-omap.c
15116
15117 OMAP HARDWARE SPINLOCK SUPPORT
15118 M:      Ohad Ben-Cohen <ohad@wizery.com>
15119 L:      linux-omap@vger.kernel.org
15120 S:      Maintained
15121 F:      drivers/hwspinlock/omap_hwspinlock.c
15122
15123 OMAP HS MMC SUPPORT
15124 L:      linux-mmc@vger.kernel.org
15125 L:      linux-omap@vger.kernel.org
15126 S:      Orphan
15127 F:      drivers/mmc/host/omap_hsmmc.c
15128
15129 OMAP HWMOD DATA
15130 M:      Paul Walmsley <paul@pwsan.com>
15131 L:      linux-omap@vger.kernel.org
15132 S:      Maintained
15133 F:      arch/arm/mach-omap2/omap_hwmod*data*
15134
15135 OMAP HWMOD SUPPORT
15136 M:      Benoît Cousson <bcousson@baylibre.com>
15137 M:      Paul Walmsley <paul@pwsan.com>
15138 L:      linux-omap@vger.kernel.org
15139 S:      Maintained
15140 F:      arch/arm/mach-omap2/omap_hwmod.*
15141
15142 OMAP I2C DRIVER
15143 M:      Vignesh R <vigneshr@ti.com>
15144 L:      linux-omap@vger.kernel.org
15145 L:      linux-i2c@vger.kernel.org
15146 S:      Maintained
15147 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15148 F:      drivers/i2c/busses/i2c-omap.c
15149
15150 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15151 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15152 L:      linux-media@vger.kernel.org
15153 S:      Maintained
15154 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15155 F:      drivers/media/platform/ti/omap3isp/
15156 F:      drivers/staging/media/omap4iss/
15157
15158 OMAP MMC SUPPORT
15159 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15160 L:      linux-omap@vger.kernel.org
15161 S:      Odd Fixes
15162 F:      drivers/mmc/host/omap.c
15163
15164 OMAP POWER MANAGEMENT SUPPORT
15165 M:      Kevin Hilman <khilman@kernel.org>
15166 L:      linux-omap@vger.kernel.org
15167 S:      Maintained
15168 F:      arch/arm/*omap*/*pm*
15169 F:      drivers/cpufreq/omap-cpufreq.c
15170
15171 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15172 M:      Paul Walmsley <paul@pwsan.com>
15173 L:      linux-omap@vger.kernel.org
15174 S:      Maintained
15175 F:      arch/arm/mach-omap2/prm*
15176
15177 OMAP RANDOM NUMBER GENERATOR SUPPORT
15178 M:      Deepak Saxena <dsaxena@plexity.net>
15179 S:      Maintained
15180 F:      drivers/char/hw_random/omap-rng.c
15181
15182 OMAP USB SUPPORT
15183 L:      linux-usb@vger.kernel.org
15184 L:      linux-omap@vger.kernel.org
15185 S:      Orphan
15186 F:      arch/arm/*omap*/usb*
15187 F:      drivers/usb/*/*omap*
15188
15189 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15190 M:      Mark Jackson <mpfj@newflow.co.uk>
15191 L:      linux-omap@vger.kernel.org
15192 S:      Maintained
15193 F:      arch/arm/boot/dts/am335x-nano.dts
15194
15195 OMAP1 SUPPORT
15196 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15197 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
15198 M:      Tony Lindgren <tony@atomide.com>
15199 L:      linux-omap@vger.kernel.org
15200 S:      Maintained
15201 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15203 F:      arch/arm/configs/omap1_defconfig
15204 F:      arch/arm/mach-omap1/
15205 F:      drivers/i2c/busses/i2c-omap.c
15206 F:      include/linux/platform_data/ams-delta-fiq.h
15207 F:      include/linux/platform_data/i2c-omap.h
15208
15209 OMAP2+ SUPPORT
15210 M:      Tony Lindgren <tony@atomide.com>
15211 L:      linux-omap@vger.kernel.org
15212 S:      Maintained
15213 W:      http://www.muru.com/linux/omap/
15214 W:      http://linux.omap.com/
15215 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15217 F:      arch/arm/configs/omap2plus_defconfig
15218 F:      arch/arm/mach-omap2/
15219 F:      drivers/bus/ti-sysc.c
15220 F:      drivers/i2c/busses/i2c-omap.c
15221 F:      drivers/irqchip/irq-omap-intc.c
15222 F:      drivers/mfd/*omap*.c
15223 F:      drivers/mfd/menelaus.c
15224 F:      drivers/mfd/palmas.c
15225 F:      drivers/mfd/tps65217.c
15226 F:      drivers/mfd/tps65218.c
15227 F:      drivers/mfd/tps65219.c
15228 F:      drivers/mfd/tps65910.c
15229 F:      drivers/mfd/twl-core.[ch]
15230 F:      drivers/mfd/twl4030*.c
15231 F:      drivers/mfd/twl6030*.c
15232 F:      drivers/mfd/twl6040*.c
15233 F:      drivers/regulator/palmas-regulator*.c
15234 F:      drivers/regulator/pbias-regulator.c
15235 F:      drivers/regulator/tps65217-regulator.c
15236 F:      drivers/regulator/tps65218-regulator.c
15237 F:      drivers/regulator/tps65219-regulator.c
15238 F:      drivers/regulator/tps65910-regulator.c
15239 F:      drivers/regulator/twl-regulator.c
15240 F:      drivers/regulator/twl6030-regulator.c
15241 F:      include/linux/platform_data/i2c-omap.h
15242 F:      include/linux/platform_data/ti-sysc.h
15243
15244 OMFS FILESYSTEM
15245 M:      Bob Copeland <me@bobcopeland.com>
15246 L:      linux-karma-devel@lists.sourceforge.net
15247 S:      Maintained
15248 F:      Documentation/filesystems/omfs.rst
15249 F:      fs/omfs/
15250
15251 OMNIKEY CARDMAN 4000 DRIVER
15252 M:      Harald Welte <laforge@gnumonks.org>
15253 S:      Maintained
15254 F:      drivers/char/pcmcia/cm4000_cs.c
15255 F:      include/linux/cm4000_cs.h
15256 F:      include/uapi/linux/cm4000_cs.h
15257
15258 OMNIKEY CARDMAN 4040 DRIVER
15259 M:      Harald Welte <laforge@gnumonks.org>
15260 S:      Maintained
15261 F:      drivers/char/pcmcia/cm4040_cs.*
15262
15263 OMNIVISION OG01A1B SENSOR DRIVER
15264 M:      Shawn Tu <shawnx.tu@intel.com>
15265 L:      linux-media@vger.kernel.org
15266 S:      Maintained
15267 F:      drivers/media/i2c/og01a1b.c
15268
15269 OMNIVISION OV02A10 SENSOR DRIVER
15270 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15271 L:      linux-media@vger.kernel.org
15272 S:      Maintained
15273 T:      git git://linuxtv.org/media_tree.git
15274 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15275 F:      drivers/media/i2c/ov02a10.c
15276
15277 OMNIVISION OV08D10 SENSOR DRIVER
15278 M:      Jimmy Su <jimmy.su@intel.com>
15279 L:      linux-media@vger.kernel.org
15280 S:      Maintained
15281 T:      git git://linuxtv.org/media_tree.git
15282 F:      drivers/media/i2c/ov08d10.c
15283
15284 OMNIVISION OV08X40 SENSOR DRIVER
15285 M:      Jason Chen <jason.z.chen@intel.com>
15286 L:      linux-media@vger.kernel.org
15287 S:      Maintained
15288 T:      git git://linuxtv.org/media_tree.git
15289 F:      drivers/media/i2c/ov08x40.c
15290
15291 OMNIVISION OV13858 SENSOR DRIVER
15292 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15293 L:      linux-media@vger.kernel.org
15294 S:      Maintained
15295 T:      git git://linuxtv.org/media_tree.git
15296 F:      drivers/media/i2c/ov13858.c
15297
15298 OMNIVISION OV13B10 SENSOR DRIVER
15299 M:      Arec Kao <arec.kao@intel.com>
15300 L:      linux-media@vger.kernel.org
15301 S:      Maintained
15302 T:      git git://linuxtv.org/media_tree.git
15303 F:      drivers/media/i2c/ov13b10.c
15304
15305 OMNIVISION OV2680 SENSOR DRIVER
15306 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15307 L:      linux-media@vger.kernel.org
15308 S:      Maintained
15309 T:      git git://linuxtv.org/media_tree.git
15310 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15311 F:      drivers/media/i2c/ov2680.c
15312
15313 OMNIVISION OV2685 SENSOR DRIVER
15314 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15315 L:      linux-media@vger.kernel.org
15316 S:      Maintained
15317 T:      git git://linuxtv.org/media_tree.git
15318 F:      drivers/media/i2c/ov2685.c
15319
15320 OMNIVISION OV2740 SENSOR DRIVER
15321 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15322 R:      Shawn Tu <shawnx.tu@intel.com>
15323 R:      Bingbu Cao <bingbu.cao@intel.com>
15324 L:      linux-media@vger.kernel.org
15325 S:      Maintained
15326 T:      git git://linuxtv.org/media_tree.git
15327 F:      drivers/media/i2c/ov2740.c
15328
15329 OMNIVISION OV4689 SENSOR DRIVER
15330 M:      Mikhail Rudenko <mike.rudenko@gmail.com>
15331 L:      linux-media@vger.kernel.org
15332 S:      Maintained
15333 T:      git git://linuxtv.org/media_tree.git
15334 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15335 F:      drivers/media/i2c/ov5647.c
15336
15337 OMNIVISION OV5640 SENSOR DRIVER
15338 M:      Steve Longerbeam <slongerbeam@gmail.com>
15339 L:      linux-media@vger.kernel.org
15340 S:      Maintained
15341 T:      git git://linuxtv.org/media_tree.git
15342 F:      drivers/media/i2c/ov5640.c
15343
15344 OMNIVISION OV5647 SENSOR DRIVER
15345 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15346 M:      Jacopo Mondi <jacopo@jmondi.org>
15347 L:      linux-media@vger.kernel.org
15348 S:      Maintained
15349 T:      git git://linuxtv.org/media_tree.git
15350 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15351 F:      drivers/media/i2c/ov5647.c
15352
15353 OMNIVISION OV5670 SENSOR DRIVER
15354 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15355 L:      linux-media@vger.kernel.org
15356 S:      Maintained
15357 T:      git git://linuxtv.org/media_tree.git
15358 F:      drivers/media/i2c/ov5670.c
15359
15360 OMNIVISION OV5675 SENSOR DRIVER
15361 M:      Shawn Tu <shawnx.tu@intel.com>
15362 L:      linux-media@vger.kernel.org
15363 S:      Maintained
15364 T:      git git://linuxtv.org/media_tree.git
15365 F:      drivers/media/i2c/ov5675.c
15366
15367 OMNIVISION OV5693 SENSOR DRIVER
15368 M:      Daniel Scally <djrscally@gmail.com>
15369 L:      linux-media@vger.kernel.org
15370 S:      Maintained
15371 T:      git git://linuxtv.org/media_tree.git
15372 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15373 F:      drivers/media/i2c/ov5693.c
15374
15375 OMNIVISION OV5695 SENSOR DRIVER
15376 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15377 L:      linux-media@vger.kernel.org
15378 S:      Maintained
15379 T:      git git://linuxtv.org/media_tree.git
15380 F:      drivers/media/i2c/ov5695.c
15381
15382 OMNIVISION OV7670 SENSOR DRIVER
15383 L:      linux-media@vger.kernel.org
15384 S:      Orphan
15385 T:      git git://linuxtv.org/media_tree.git
15386 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15387 F:      drivers/media/i2c/ov7670.c
15388
15389 OMNIVISION OV772x SENSOR DRIVER
15390 M:      Jacopo Mondi <jacopo@jmondi.org>
15391 L:      linux-media@vger.kernel.org
15392 S:      Odd fixes
15393 T:      git git://linuxtv.org/media_tree.git
15394 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15395 F:      drivers/media/i2c/ov772x.c
15396 F:      include/media/i2c/ov772x.h
15397
15398 OMNIVISION OV7740 SENSOR DRIVER
15399 M:      Wenyou Yang <wenyou.yang@microchip.com>
15400 L:      linux-media@vger.kernel.org
15401 S:      Maintained
15402 T:      git git://linuxtv.org/media_tree.git
15403 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15404 F:      drivers/media/i2c/ov7740.c
15405
15406 OMNIVISION OV8856 SENSOR DRIVER
15407 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15408 L:      linux-media@vger.kernel.org
15409 S:      Maintained
15410 T:      git git://linuxtv.org/media_tree.git
15411 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15412 F:      drivers/media/i2c/ov8856.c
15413
15414 OMNIVISION OV9282 SENSOR DRIVER
15415 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15416 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15417 L:      linux-media@vger.kernel.org
15418 S:      Maintained
15419 T:      git git://linuxtv.org/media_tree.git
15420 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15421 F:      drivers/media/i2c/ov9282.c
15422
15423 OMNIVISION OV9640 SENSOR DRIVER
15424 M:      Petr Cvek <petrcvekcz@gmail.com>
15425 L:      linux-media@vger.kernel.org
15426 S:      Maintained
15427 F:      drivers/media/i2c/ov9640.*
15428
15429 OMNIVISION OV9650 SENSOR DRIVER
15430 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15431 R:      Akinobu Mita <akinobu.mita@gmail.com>
15432 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15433 L:      linux-media@vger.kernel.org
15434 S:      Maintained
15435 T:      git git://linuxtv.org/media_tree.git
15436 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15437 F:      drivers/media/i2c/ov9650.c
15438
15439 OMNIVISION OV9734 SENSOR DRIVER
15440 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15441 R:      Bingbu Cao <bingbu.cao@intel.com>
15442 L:      linux-media@vger.kernel.org
15443 S:      Maintained
15444 T:      git git://linuxtv.org/media_tree.git
15445 F:      drivers/media/i2c/ov9734.c
15446
15447 ONBOARD USB HUB DRIVER
15448 M:      Matthias Kaehlcke <mka@chromium.org>
15449 L:      linux-usb@vger.kernel.org
15450 S:      Maintained
15451 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15452 F:      drivers/usb/misc/onboard_usb_hub.c
15453
15454 ONENAND FLASH DRIVER
15455 M:      Kyungmin Park <kyungmin.park@samsung.com>
15456 L:      linux-mtd@lists.infradead.org
15457 S:      Maintained
15458 F:      drivers/mtd/nand/onenand/
15459 F:      include/linux/mtd/onenand*.h
15460
15461 ONEXPLAYER FAN DRIVER
15462 M:      Joaquín Ignacio Aramendía <samsagax@gmail.com>
15463 L:      linux-hwmon@vger.kernel.org
15464 S:      Maintained
15465 F:      drivers/hwmon/oxp-sensors.c
15466
15467 ONION OMEGA2+ BOARD
15468 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15469 L:      linux-mips@vger.kernel.org
15470 S:      Maintained
15471 F:      arch/mips/boot/dts/ralink/omega2p.dts
15472
15473 ONSEMI ETHERNET PHY DRIVERS
15474 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
15475 L:      netdev@vger.kernel.org
15476 S:      Supported
15477 W:      http://www.onsemi.com
15478 F:      drivers/net/phy/ncn*
15479
15480 OP-TEE DRIVER
15481 M:      Jens Wiklander <jens.wiklander@linaro.org>
15482 L:      op-tee@lists.trustedfirmware.org
15483 S:      Maintained
15484 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15485 F:      drivers/tee/optee/
15486
15487 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15488 M:      Sumit Garg <sumit.garg@linaro.org>
15489 L:      op-tee@lists.trustedfirmware.org
15490 S:      Maintained
15491 F:      drivers/char/hw_random/optee-rng.c
15492
15493 OP-TEE RTC DRIVER
15494 M:      Clément Léger <clement.leger@bootlin.com>
15495 L:      linux-rtc@vger.kernel.org
15496 S:      Maintained
15497 F:      drivers/rtc/rtc-optee.c
15498
15499 OPA-VNIC DRIVER
15500 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15501 L:      linux-rdma@vger.kernel.org
15502 S:      Supported
15503 F:      drivers/infiniband/ulp/opa_vnic
15504
15505 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15506 M:      Rob Herring <robh+dt@kernel.org>
15507 M:      Frank Rowand <frowand.list@gmail.com>
15508 L:      devicetree@vger.kernel.org
15509 S:      Maintained
15510 C:      irc://irc.libera.chat/devicetree
15511 W:      http://www.devicetree.org/
15512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15513 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15514 F:      drivers/of/
15515 F:      include/linux/of*.h
15516 F:      scripts/dtc/
15517 K:      of_overlay_notifier_
15518 K:      of_overlay_fdt_apply
15519 K:      of_overlay_remove
15520
15521 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15522 M:      Rob Herring <robh+dt@kernel.org>
15523 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15524 L:      devicetree@vger.kernel.org
15525 S:      Maintained
15526 C:      irc://irc.libera.chat/devicetree
15527 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15529 F:      Documentation/devicetree/
15530 F:      arch/*/boot/dts/
15531 F:      include/dt-bindings/
15532
15533 OPENCOMPUTE PTP CLOCK DRIVER
15534 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15535 M:      Vadim Fedorenko <vadfed@fb.com>
15536 L:      netdev@vger.kernel.org
15537 S:      Maintained
15538 F:      drivers/ptp/ptp_ocp.c
15539
15540 OPENCORES I2C BUS DRIVER
15541 M:      Peter Korsgaard <peter@korsgaard.com>
15542 M:      Andrew Lunn <andrew@lunn.ch>
15543 L:      linux-i2c@vger.kernel.org
15544 S:      Maintained
15545 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15546 F:      Documentation/i2c/busses/i2c-ocores.rst
15547 F:      drivers/i2c/busses/i2c-ocores.c
15548 F:      include/linux/platform_data/i2c-ocores.h
15549
15550 OPENRISC ARCHITECTURE
15551 M:      Jonas Bonn <jonas@southpole.se>
15552 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15553 M:      Stafford Horne <shorne@gmail.com>
15554 L:      linux-openrisc@vger.kernel.org
15555 S:      Maintained
15556 W:      http://openrisc.io
15557 T:      git https://github.com/openrisc/linux.git
15558 F:      Documentation/devicetree/bindings/openrisc/
15559 F:      Documentation/openrisc/
15560 F:      arch/openrisc/
15561 F:      drivers/irqchip/irq-ompic.c
15562 F:      drivers/irqchip/irq-or1k-*
15563
15564 OPENVSWITCH
15565 M:      Pravin B Shelar <pshelar@ovn.org>
15566 L:      netdev@vger.kernel.org
15567 L:      dev@openvswitch.org
15568 S:      Maintained
15569 W:      http://openvswitch.org
15570 F:      include/uapi/linux/openvswitch.h
15571 F:      net/openvswitch/
15572 F:      tools/testing/selftests/net/openvswitch/
15573
15574 OPERATING PERFORMANCE POINTS (OPP)
15575 M:      Viresh Kumar <vireshk@kernel.org>
15576 M:      Nishanth Menon <nm@ti.com>
15577 M:      Stephen Boyd <sboyd@kernel.org>
15578 L:      linux-pm@vger.kernel.org
15579 S:      Maintained
15580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15581 F:      Documentation/devicetree/bindings/opp/
15582 F:      Documentation/power/opp.rst
15583 F:      drivers/opp/
15584 F:      include/linux/pm_opp.h
15585
15586 OPL4 DRIVER
15587 M:      Clemens Ladisch <clemens@ladisch.de>
15588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15589 S:      Maintained
15590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15591 F:      sound/drivers/opl4/
15592
15593 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15594 M:      Mark Fasheh <mark@fasheh.com>
15595 M:      Joel Becker <jlbec@evilplan.org>
15596 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15597 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15598 S:      Supported
15599 W:      http://ocfs2.wiki.kernel.org
15600 F:      Documentation/filesystems/dlmfs.rst
15601 F:      Documentation/filesystems/ocfs2.rst
15602 F:      fs/ocfs2/
15603
15604 ORANGEFS FILESYSTEM
15605 M:      Mike Marshall <hubcap@omnibond.com>
15606 R:      Martin Brandenburg <martin@omnibond.com>
15607 L:      devel@lists.orangefs.org
15608 S:      Supported
15609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15610 F:      Documentation/filesystems/orangefs.rst
15611 F:      fs/orangefs/
15612
15613 ORINOCO DRIVER
15614 L:      linux-wireless@vger.kernel.org
15615 S:      Orphan
15616 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15617 W:      http://www.nongnu.org/orinoco/
15618 F:      drivers/net/wireless/intersil/orinoco/
15619
15620 OV2659 OMNIVISION SENSOR DRIVER
15621 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15622 L:      linux-media@vger.kernel.org
15623 S:      Maintained
15624 W:      https://linuxtv.org
15625 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15626 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15627 F:      drivers/media/i2c/ov2659.c
15628 F:      include/media/i2c/ov2659.h
15629
15630 OVERLAY FILESYSTEM
15631 M:      Miklos Szeredi <miklos@szeredi.hu>
15632 L:      linux-unionfs@vger.kernel.org
15633 S:      Supported
15634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15635 F:      Documentation/filesystems/overlayfs.rst
15636 F:      fs/overlayfs/
15637
15638 P54 WIRELESS DRIVER
15639 M:      Christian Lamparter <chunkeey@googlemail.com>
15640 L:      linux-wireless@vger.kernel.org
15641 S:      Maintained
15642 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15643 F:      drivers/net/wireless/intersil/p54/
15644
15645 PACKET SOCKETS
15646 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15647 S:      Maintained
15648 F:      include/uapi/linux/if_packet.h
15649 F:      net/packet/af_packet.c
15650
15651 PACKING
15652 M:      Vladimir Oltean <olteanv@gmail.com>
15653 L:      netdev@vger.kernel.org
15654 S:      Supported
15655 F:      Documentation/core-api/packing.rst
15656 F:      include/linux/packing.h
15657 F:      lib/packing.c
15658
15659 PADATA PARALLEL EXECUTION MECHANISM
15660 M:      Steffen Klassert <steffen.klassert@secunet.com>
15661 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15662 L:      linux-crypto@vger.kernel.org
15663 L:      linux-kernel@vger.kernel.org
15664 S:      Maintained
15665 F:      Documentation/core-api/padata.rst
15666 F:      include/linux/padata.h
15667 F:      kernel/padata.c
15668
15669 PAGE CACHE
15670 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15671 L:      linux-fsdevel@vger.kernel.org
15672 S:      Supported
15673 T:      git git://git.infradead.org/users/willy/pagecache.git
15674 F:      Documentation/filesystems/locking.rst
15675 F:      Documentation/filesystems/vfs.rst
15676 F:      include/linux/pagemap.h
15677 F:      mm/filemap.c
15678 F:      mm/page-writeback.c
15679 F:      mm/readahead.c
15680 F:      mm/truncate.c
15681
15682 PAGE POOL
15683 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15684 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15685 L:      netdev@vger.kernel.org
15686 S:      Supported
15687 F:      Documentation/networking/page_pool.rst
15688 F:      include/net/page_pool.h
15689 F:      include/trace/events/page_pool.h
15690 F:      net/core/page_pool.c
15691
15692 PAGE TABLE CHECK
15693 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15694 M:      Andrew Morton <akpm@linux-foundation.org>
15695 L:      linux-mm@kvack.org
15696 S:      Maintained
15697 F:      Documentation/mm/page_table_check.rst
15698 F:      include/linux/page_table_check.h
15699 F:      mm/page_table_check.c
15700
15701 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15702 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15703 L:      platform-driver-x86@vger.kernel.org
15704 S:      Maintained
15705 F:      drivers/platform/x86/panasonic-laptop.c
15706
15707 PARALLAX PING IIO SENSOR DRIVER
15708 M:      Andreas Klinger <ak@it-klinger.de>
15709 L:      linux-iio@vger.kernel.org
15710 S:      Maintained
15711 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15712 F:      drivers/iio/proximity/ping.c
15713
15714 PARALLEL LCD/KEYPAD PANEL DRIVER
15715 M:      Willy Tarreau <willy@haproxy.com>
15716 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15717 S:      Odd Fixes
15718 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15719 F:      drivers/auxdisplay/panel.c
15720
15721 PARALLEL PORT SUBSYSTEM
15722 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15723 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15724 L:      linux-parport@lists.infradead.org (subscribers-only)
15725 S:      Maintained
15726 F:      Documentation/driver-api/parport*.rst
15727 F:      drivers/char/ppdev.c
15728 F:      drivers/parport/
15729 F:      include/linux/parport*.h
15730 F:      include/uapi/linux/ppdev.h
15731
15732 PARAVIRT_OPS INTERFACE
15733 M:      Juergen Gross <jgross@suse.com>
15734 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15735 R:      Alexey Makhalov <amakhalov@vmware.com>
15736 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15737 L:      virtualization@lists.linux-foundation.org
15738 L:      x86@kernel.org
15739 S:      Supported
15740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15741 F:      Documentation/virt/paravirt_ops.rst
15742 F:      arch/*/include/asm/paravirt*.h
15743 F:      arch/*/kernel/paravirt*
15744 F:      include/linux/hypervisor.h
15745
15746 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15747 M:      Tim Waugh <tim@cyberelk.net>
15748 L:      linux-parport@lists.infradead.org (subscribers-only)
15749 S:      Maintained
15750 F:      Documentation/admin-guide/blockdev/paride.rst
15751 F:      drivers/block/paride/
15752
15753 PARISC ARCHITECTURE
15754 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15755 M:      Helge Deller <deller@gmx.de>
15756 L:      linux-parisc@vger.kernel.org
15757 S:      Maintained
15758 W:      https://parisc.wiki.kernel.org
15759 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15762 F:      Documentation/parisc/
15763 F:      arch/parisc/
15764 F:      drivers/char/agp/parisc-agp.c
15765 F:      drivers/input/misc/hp_sdc_rtc.c
15766 F:      drivers/input/serio/gscps2.c
15767 F:      drivers/input/serio/hp_sdc*
15768 F:      drivers/parisc/
15769 F:      drivers/parport/parport_gsc.*
15770 F:      drivers/tty/serial/8250/8250_parisc.c
15771 F:      drivers/video/console/sti*
15772 F:      drivers/video/fbdev/sti*
15773 F:      drivers/video/logo/logo_parisc*
15774 F:      include/linux/hp_sdc.h
15775
15776 PARMAN
15777 M:      Jiri Pirko <jiri@nvidia.com>
15778 L:      netdev@vger.kernel.org
15779 S:      Supported
15780 F:      include/linux/parman.h
15781 F:      lib/parman.c
15782 F:      lib/test_parman.c
15783
15784 PC ENGINES APU BOARD DRIVER
15785 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15786 S:      Maintained
15787 F:      drivers/platform/x86/pcengines-apuv2.c
15788
15789 PC87360 HARDWARE MONITORING DRIVER
15790 M:      Jim Cromie <jim.cromie@gmail.com>
15791 L:      linux-hwmon@vger.kernel.org
15792 S:      Maintained
15793 F:      Documentation/hwmon/pc87360.rst
15794 F:      drivers/hwmon/pc87360.c
15795
15796 PC8736x GPIO DRIVER
15797 M:      Jim Cromie <jim.cromie@gmail.com>
15798 S:      Maintained
15799 F:      drivers/char/pc8736x_gpio.c
15800
15801 PC87427 HARDWARE MONITORING DRIVER
15802 M:      Jean Delvare <jdelvare@suse.com>
15803 L:      linux-hwmon@vger.kernel.org
15804 S:      Maintained
15805 F:      Documentation/hwmon/pc87427.rst
15806 F:      drivers/hwmon/pc87427.c
15807
15808 PCA9532 LED DRIVER
15809 M:      Riku Voipio <riku.voipio@iki.fi>
15810 S:      Maintained
15811 F:      drivers/leds/leds-pca9532.c
15812 F:      include/linux/leds-pca9532.h
15813
15814 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15815 M:      Guenter Roeck <linux@roeck-us.net>
15816 L:      linux-i2c@vger.kernel.org
15817 S:      Maintained
15818 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15819
15820 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15821 M:      Khalid Aziz <khalid@gonehiking.org>
15822 S:      Maintained
15823 F:      drivers/firmware/pcdp.*
15824
15825 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15826 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15827 M:      Pali Rohár <pali@kernel.org>
15828 L:      linux-pci@vger.kernel.org
15829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15830 S:      Maintained
15831 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15832 F:      drivers/pci/controller/pci-aardvark.c
15833
15834 PCI DRIVER FOR ALTERA PCIE IP
15835 M:      Joyce Ooi <joyce.ooi@intel.com>
15836 L:      linux-pci@vger.kernel.org
15837 S:      Supported
15838 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15839 F:      drivers/pci/controller/pcie-altera.c
15840
15841 PCI DRIVER FOR APPLIEDMICRO XGENE
15842 M:      Toan Le <toan@os.amperecomputing.com>
15843 L:      linux-pci@vger.kernel.org
15844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15845 S:      Maintained
15846 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15847 F:      drivers/pci/controller/pci-xgene.c
15848
15849 PCI DRIVER FOR ARM VERSATILE PLATFORM
15850 M:      Rob Herring <robh@kernel.org>
15851 L:      linux-pci@vger.kernel.org
15852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15853 S:      Maintained
15854 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15855 F:      drivers/pci/controller/pci-versatile.c
15856
15857 PCI DRIVER FOR ARMADA 8K
15858 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15859 L:      linux-pci@vger.kernel.org
15860 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15861 S:      Maintained
15862 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15863 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15864
15865 PCI DRIVER FOR CADENCE PCIE IP
15866 M:      Tom Joseph <tjoseph@cadence.com>
15867 L:      linux-pci@vger.kernel.org
15868 S:      Maintained
15869 F:      Documentation/devicetree/bindings/pci/cdns,*
15870 F:      drivers/pci/controller/cadence/
15871
15872 PCI DRIVER FOR FREESCALE LAYERSCAPE
15873 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15874 M:      Mingkai Hu <mingkai.hu@nxp.com>
15875 M:      Roy Zang <roy.zang@nxp.com>
15876 L:      linuxppc-dev@lists.ozlabs.org
15877 L:      linux-pci@vger.kernel.org
15878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15879 S:      Maintained
15880 F:      drivers/pci/controller/dwc/*layerscape*
15881
15882 PCI DRIVER FOR GENERIC OF HOSTS
15883 M:      Will Deacon <will@kernel.org>
15884 L:      linux-pci@vger.kernel.org
15885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15886 S:      Maintained
15887 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15888 F:      drivers/pci/controller/pci-host-common.c
15889 F:      drivers/pci/controller/pci-host-generic.c
15890
15891 PCI DRIVER FOR IMX6
15892 M:      Richard Zhu <hongxing.zhu@nxp.com>
15893 M:      Lucas Stach <l.stach@pengutronix.de>
15894 L:      linux-pci@vger.kernel.org
15895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15896 S:      Maintained
15897 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15898 F:      drivers/pci/controller/dwc/*imx6*
15899
15900 PCI DRIVER FOR FU740
15901 M:      Paul Walmsley <paul.walmsley@sifive.com>
15902 M:      Greentime Hu <greentime.hu@sifive.com>
15903 L:      linux-pci@vger.kernel.org
15904 S:      Maintained
15905 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15906 F:      drivers/pci/controller/dwc/pcie-fu740.c
15907
15908 PCI DRIVER FOR INTEL IXP4XX
15909 M:      Linus Walleij <linus.walleij@linaro.org>
15910 S:      Maintained
15911 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15912 F:      drivers/pci/controller/pci-ixp4xx.c
15913
15914 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15915 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15916 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15917 L:      linux-pci@vger.kernel.org
15918 S:      Supported
15919 F:      drivers/pci/controller/vmd.c
15920
15921 PCI DRIVER FOR MICROSEMI SWITCHTEC
15922 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15923 M:      Logan Gunthorpe <logang@deltatee.com>
15924 L:      linux-pci@vger.kernel.org
15925 S:      Maintained
15926 F:      Documentation/ABI/testing/sysfs-class-switchtec
15927 F:      Documentation/driver-api/switchtec.rst
15928 F:      drivers/ntb/hw/mscc/
15929 F:      drivers/pci/switch/switchtec*
15930 F:      include/linux/switchtec.h
15931 F:      include/uapi/linux/switchtec_ioctl.h
15932
15933 PCI DRIVER FOR MOBIVEIL PCIE IP
15934 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15935 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15936 L:      linux-pci@vger.kernel.org
15937 S:      Supported
15938 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15939 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15940
15941 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15942 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15943 M:      Pali Rohár <pali@kernel.org>
15944 L:      linux-pci@vger.kernel.org
15945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15946 S:      Maintained
15947 F:      drivers/pci/controller/*mvebu*
15948
15949 PCI DRIVER FOR NVIDIA TEGRA
15950 M:      Thierry Reding <thierry.reding@gmail.com>
15951 L:      linux-tegra@vger.kernel.org
15952 L:      linux-pci@vger.kernel.org
15953 S:      Supported
15954 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15955 F:      drivers/pci/controller/pci-tegra.c
15956
15957 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15958 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15959 L:      linux-pci@vger.kernel.org
15960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15961 S:      Maintained
15962 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15963 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15964
15965 PCI DRIVER FOR RENESAS R-CAR
15966 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15967 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15968 L:      linux-pci@vger.kernel.org
15969 L:      linux-renesas-soc@vger.kernel.org
15970 S:      Maintained
15971 F:      Documentation/devicetree/bindings/pci/*rcar*
15972 F:      drivers/pci/controller/*rcar*
15973
15974 PCI DRIVER FOR SAMSUNG EXYNOS
15975 M:      Jingoo Han <jingoohan1@gmail.com>
15976 L:      linux-pci@vger.kernel.org
15977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15978 L:      linux-samsung-soc@vger.kernel.org
15979 S:      Maintained
15980 F:      drivers/pci/controller/dwc/pci-exynos.c
15981
15982 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15983 M:      Jingoo Han <jingoohan1@gmail.com>
15984 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15985 L:      linux-pci@vger.kernel.org
15986 S:      Maintained
15987 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15988 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15989 F:      drivers/pci/controller/dwc/*designware*
15990
15991 PCI DRIVER FOR TI DRA7XX/J721E
15992 M:      Vignesh Raghavendra <vigneshr@ti.com>
15993 L:      linux-omap@vger.kernel.org
15994 L:      linux-pci@vger.kernel.org
15995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15996 S:      Supported
15997 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15998 F:      drivers/pci/controller/cadence/pci-j721e.c
15999 F:      drivers/pci/controller/dwc/pci-dra7xx.c
16000
16001 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
16002 M:      Linus Walleij <linus.walleij@linaro.org>
16003 L:      linux-pci@vger.kernel.org
16004 S:      Maintained
16005 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
16006 F:      drivers/pci/controller/pci-v3-semi.c
16007
16008 PCI ENDPOINT SUBSYSTEM
16009 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16010 M:      Krzysztof Wilczyński <kw@linux.com>
16011 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16012 R:      Kishon Vijay Abraham I <kishon@kernel.org>
16013 L:      linux-pci@vger.kernel.org
16014 S:      Supported
16015 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16016 B:      https://bugzilla.kernel.org
16017 C:      irc://irc.oftc.net/linux-pci
16018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16019 F:      Documentation/PCI/endpoint/*
16020 F:      Documentation/misc-devices/pci-endpoint-test.rst
16021 F:      drivers/misc/pci_endpoint_test.c
16022 F:      drivers/pci/endpoint/
16023 F:      tools/pci/
16024
16025 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16026 M:      Mahesh J Salgaonkar <mahesh@linux.ibm.com>
16027 R:      Oliver O'Halloran <oohall@gmail.com>
16028 L:      linuxppc-dev@lists.ozlabs.org
16029 S:      Supported
16030 F:      Documentation/PCI/pci-error-recovery.rst
16031 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
16032 F:      arch/powerpc/include/*/eeh*.h
16033 F:      arch/powerpc/kernel/eeh*.c
16034 F:      arch/powerpc/platforms/*/eeh*.c
16035 F:      drivers/pci/pcie/aer.c
16036 F:      drivers/pci/pcie/dpc.c
16037 F:      drivers/pci/pcie/err.c
16038
16039 PCI ERROR RECOVERY
16040 M:      Linas Vepstas <linasvepstas@gmail.com>
16041 L:      linux-pci@vger.kernel.org
16042 S:      Supported
16043 F:      Documentation/PCI/pci-error-recovery.rst
16044
16045 PCI PEER-TO-PEER DMA (P2PDMA)
16046 M:      Bjorn Helgaas <bhelgaas@google.com>
16047 M:      Logan Gunthorpe <logang@deltatee.com>
16048 L:      linux-pci@vger.kernel.org
16049 S:      Supported
16050 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16051 B:      https://bugzilla.kernel.org
16052 C:      irc://irc.oftc.net/linux-pci
16053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16054 F:      Documentation/driver-api/pci/p2pdma.rst
16055 F:      drivers/pci/p2pdma.c
16056 F:      include/linux/pci-p2pdma.h
16057
16058 PCI MSI DRIVER FOR ALTERA MSI IP
16059 M:      Joyce Ooi <joyce.ooi@intel.com>
16060 L:      linux-pci@vger.kernel.org
16061 S:      Supported
16062 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16063 F:      drivers/pci/controller/pcie-altera-msi.c
16064
16065 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16066 M:      Toan Le <toan@os.amperecomputing.com>
16067 L:      linux-pci@vger.kernel.org
16068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16069 S:      Maintained
16070 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16071 F:      drivers/pci/controller/pci-xgene-msi.c
16072
16073 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16074 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16075 M:      Krzysztof Wilczyński <kw@linux.com>
16076 R:      Rob Herring <robh@kernel.org>
16077 L:      linux-pci@vger.kernel.org
16078 S:      Supported
16079 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16080 B:      https://bugzilla.kernel.org
16081 C:      irc://irc.oftc.net/linux-pci
16082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16083 F:      Documentation/devicetree/bindings/pci/
16084 F:      drivers/pci/controller/
16085 F:      drivers/pci/pci-bridge-emul.c
16086 F:      drivers/pci/pci-bridge-emul.h
16087
16088 PCI SUBSYSTEM
16089 M:      Bjorn Helgaas <bhelgaas@google.com>
16090 L:      linux-pci@vger.kernel.org
16091 S:      Supported
16092 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16093 B:      https://bugzilla.kernel.org
16094 C:      irc://irc.oftc.net/linux-pci
16095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16096 F:      Documentation/PCI/
16097 F:      Documentation/devicetree/bindings/pci/
16098 F:      arch/x86/kernel/early-quirks.c
16099 F:      arch/x86/kernel/quirks.c
16100 F:      arch/x86/pci/
16101 F:      drivers/acpi/pci*
16102 F:      drivers/pci/
16103 F:      include/asm-generic/pci*
16104 F:      include/linux/of_pci.h
16105 F:      include/linux/pci*
16106 F:      include/uapi/linux/pci*
16107 F:      lib/pci*
16108
16109 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16110 M:      Jonathan Chocron <jonnyc@amazon.com>
16111 L:      linux-pci@vger.kernel.org
16112 S:      Maintained
16113 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16114 F:      drivers/pci/controller/dwc/pcie-al.c
16115
16116 PCIE DRIVER FOR AMLOGIC MESON
16117 M:      Yue Wang <yue.wang@Amlogic.com>
16118 L:      linux-pci@vger.kernel.org
16119 L:      linux-amlogic@lists.infradead.org
16120 S:      Maintained
16121 F:      drivers/pci/controller/dwc/pci-meson.c
16122
16123 PCIE DRIVER FOR AXIS ARTPEC
16124 M:      Jesper Nilsson <jesper.nilsson@axis.com>
16125 L:      linux-arm-kernel@axis.com
16126 L:      linux-pci@vger.kernel.org
16127 S:      Maintained
16128 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16129 F:      drivers/pci/controller/dwc/*artpec*
16130
16131 PCIE DRIVER FOR CAVIUM THUNDERX
16132 M:      Robert Richter <rric@kernel.org>
16133 L:      linux-pci@vger.kernel.org
16134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16135 S:      Odd Fixes
16136 F:      drivers/pci/controller/pci-thunder-*
16137
16138 PCIE DRIVER FOR HISILICON
16139 M:      Zhou Wang <wangzhou1@hisilicon.com>
16140 L:      linux-pci@vger.kernel.org
16141 S:      Maintained
16142 F:      drivers/pci/controller/dwc/pcie-hisi.c
16143
16144 PCIE DRIVER FOR HISILICON KIRIN
16145 M:      Xiaowei Song <songxiaowei@hisilicon.com>
16146 M:      Binghui Wang <wangbinghui@hisilicon.com>
16147 L:      linux-pci@vger.kernel.org
16148 S:      Maintained
16149 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16150 F:      drivers/pci/controller/dwc/pcie-kirin.c
16151
16152 PCIE DRIVER FOR HISILICON STB
16153 M:      Shawn Guo <shawn.guo@linaro.org>
16154 L:      linux-pci@vger.kernel.org
16155 S:      Maintained
16156 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16157 F:      drivers/pci/controller/dwc/pcie-histb.c
16158
16159 PCIE DRIVER FOR INTEL KEEM BAY
16160 M:      Srikanth Thokala <srikanth.thokala@intel.com>
16161 L:      linux-pci@vger.kernel.org
16162 S:      Supported
16163 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16164 F:      drivers/pci/controller/dwc/pcie-keembay.c
16165
16166 PCIE DRIVER FOR INTEL LGM GW SOC
16167 M:      Rahul Tanwar <rtanwar@maxlinear.com>
16168 L:      linux-pci@vger.kernel.org
16169 S:      Maintained
16170 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16171 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16172
16173 PCIE DRIVER FOR MEDIATEK
16174 M:      Ryder Lee <ryder.lee@mediatek.com>
16175 M:      Jianjun Wang <jianjun.wang@mediatek.com>
16176 L:      linux-pci@vger.kernel.org
16177 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16178 S:      Supported
16179 F:      Documentation/devicetree/bindings/pci/mediatek*
16180 F:      drivers/pci/controller/*mediatek*
16181
16182 PCIE DRIVER FOR MICROCHIP
16183 M:      Daire McNamara <daire.mcnamara@microchip.com>
16184 L:      linux-pci@vger.kernel.org
16185 S:      Supported
16186 F:      Documentation/devicetree/bindings/pci/microchip*
16187 F:      drivers/pci/controller/*microchip*
16188
16189 PCIE DRIVER FOR QUALCOMM MSM
16190 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16191 L:      linux-pci@vger.kernel.org
16192 L:      linux-arm-msm@vger.kernel.org
16193 S:      Maintained
16194 F:      drivers/pci/controller/dwc/pcie-qcom.c
16195
16196 PCIE ENDPOINT DRIVER FOR QUALCOMM
16197 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16198 L:      linux-pci@vger.kernel.org
16199 L:      linux-arm-msm@vger.kernel.org
16200 S:      Maintained
16201 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16202 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16203
16204 PCIE DRIVER FOR ROCKCHIP
16205 M:      Shawn Lin <shawn.lin@rock-chips.com>
16206 L:      linux-pci@vger.kernel.org
16207 L:      linux-rockchip@lists.infradead.org
16208 S:      Maintained
16209 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
16210 F:      drivers/pci/controller/pcie-rockchip*
16211
16212 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16213 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16214 L:      linux-pci@vger.kernel.org
16215 S:      Maintained
16216 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16217 F:      drivers/pci/controller/dwc/pcie-uniphier*
16218
16219 PCIE DRIVER FOR ST SPEAR13XX
16220 M:      Pratyush Anand <pratyush.anand@gmail.com>
16221 L:      linux-pci@vger.kernel.org
16222 S:      Maintained
16223 F:      drivers/pci/controller/dwc/*spear*
16224
16225 PCI DRIVER FOR XILINX VERSAL CPM
16226 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16227 M:      Michal Simek <michal.simek@amd.com>
16228 L:      linux-pci@vger.kernel.org
16229 S:      Maintained
16230 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16231 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16232
16233 PCMCIA SUBSYSTEM
16234 M:      Dominik Brodowski <linux@dominikbrodowski.net>
16235 S:      Odd Fixes
16236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16237 F:      Documentation/pcmcia/
16238 F:      drivers/pcmcia/
16239 F:      include/pcmcia/
16240 F:      tools/pcmcia/
16241
16242 PCNET32 NETWORK DRIVER
16243 M:      Don Fry <pcnet32@frontier.com>
16244 L:      netdev@vger.kernel.org
16245 S:      Maintained
16246 F:      drivers/net/ethernet/amd/pcnet32.c
16247
16248 PCRYPT PARALLEL CRYPTO ENGINE
16249 M:      Steffen Klassert <steffen.klassert@secunet.com>
16250 L:      linux-crypto@vger.kernel.org
16251 S:      Maintained
16252 F:      crypto/pcrypt.c
16253 F:      include/crypto/pcrypt.h
16254
16255 PEAQ WMI HOTKEYS DRIVER
16256 M:      Hans de Goede <hdegoede@redhat.com>
16257 L:      platform-driver-x86@vger.kernel.org
16258 S:      Maintained
16259 F:      drivers/platform/x86/peaq-wmi.c
16260
16261 PECI HARDWARE MONITORING DRIVERS
16262 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16263 L:      linux-hwmon@vger.kernel.org
16264 S:      Supported
16265 F:      Documentation/hwmon/peci-cputemp.rst
16266 F:      Documentation/hwmon/peci-dimmtemp.rst
16267 F:      drivers/hwmon/peci/
16268
16269 PECI SUBSYSTEM
16270 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16271 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
16272 S:      Supported
16273 F:      Documentation/devicetree/bindings/peci/
16274 F:      Documentation/peci/
16275 F:      drivers/peci/
16276 F:      include/linux/peci-cpu.h
16277 F:      include/linux/peci.h
16278
16279 PENSANDO ETHERNET DRIVERS
16280 M:      Shannon Nelson <shannon.nelson@amd.com>
16281 M:      Brett Creeley <brett.creeley@amd.com>
16282 M:      drivers@pensando.io
16283 L:      netdev@vger.kernel.org
16284 S:      Supported
16285 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16286 F:      drivers/net/ethernet/pensando/
16287
16288 PER-CPU MEMORY ALLOCATOR
16289 M:      Dennis Zhou <dennis@kernel.org>
16290 M:      Tejun Heo <tj@kernel.org>
16291 M:      Christoph Lameter <cl@linux.com>
16292 L:      linux-mm@kvack.org
16293 S:      Maintained
16294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16295 F:      arch/*/include/asm/percpu.h
16296 F:      include/linux/percpu*.h
16297 F:      lib/percpu*.c
16298 F:      mm/percpu*.c
16299
16300 PER-TASK DELAY ACCOUNTING
16301 M:      Balbir Singh <bsingharora@gmail.com>
16302 S:      Maintained
16303 F:      include/linux/delayacct.h
16304 F:      kernel/delayacct.c
16305
16306 PERFORMANCE EVENTS SUBSYSTEM
16307 M:      Peter Zijlstra <peterz@infradead.org>
16308 M:      Ingo Molnar <mingo@redhat.com>
16309 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16310 R:      Mark Rutland <mark.rutland@arm.com>
16311 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16312 R:      Jiri Olsa <jolsa@kernel.org>
16313 R:      Namhyung Kim <namhyung@kernel.org>
16314 L:      linux-perf-users@vger.kernel.org
16315 L:      linux-kernel@vger.kernel.org
16316 S:      Supported
16317 W:      https://perf.wiki.kernel.org/
16318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16319 F:      arch/*/events/*
16320 F:      arch/*/events/*/*
16321 F:      arch/*/include/asm/perf_event.h
16322 F:      arch/*/kernel/*/*/perf_event*.c
16323 F:      arch/*/kernel/*/perf_event*.c
16324 F:      arch/*/kernel/perf_callchain.c
16325 F:      arch/*/kernel/perf_event*.c
16326 F:      include/linux/perf_event.h
16327 F:      include/uapi/linux/perf_event.h
16328 F:      kernel/events/*
16329 F:      tools/lib/perf/
16330 F:      tools/perf/
16331
16332 PERFORMANCE EVENTS TOOLING ARM64
16333 R:      John Garry <john.g.garry@oracle.com>
16334 R:      Will Deacon <will@kernel.org>
16335 R:      James Clark <james.clark@arm.com>
16336 R:      Mike Leach <mike.leach@linaro.org>
16337 R:      Leo Yan <leo.yan@linaro.org>
16338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16339 S:      Supported
16340 F:      tools/build/feature/test-libopencsd.c
16341 F:      tools/perf/arch/arm*/
16342 F:      tools/perf/pmu-events/arch/arm64/
16343 F:      tools/perf/util/arm-spe*
16344 F:      tools/perf/util/cs-etm*
16345
16346 PERSONALITY HANDLING
16347 M:      Christoph Hellwig <hch@infradead.org>
16348 L:      linux-abi-devel@lists.sourceforge.net
16349 S:      Maintained
16350 F:      include/linux/personality.h
16351 F:      include/uapi/linux/personality.h
16352
16353 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16354 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16355 L:      linux-input@vger.kernel.org
16356 S:      Maintained
16357 F:      Documentation/input/devices/pxrc.rst
16358 F:      drivers/input/joystick/pxrc.c
16359
16360 PHONET PROTOCOL
16361 M:      Remi Denis-Courmont <courmisch@gmail.com>
16362 S:      Supported
16363 F:      Documentation/networking/phonet.rst
16364 F:      include/linux/phonet.h
16365 F:      include/net/phonet/
16366 F:      include/uapi/linux/phonet.h
16367 F:      net/phonet/
16368
16369 PHRAM MTD DRIVER
16370 M:      Joern Engel <joern@lazybastard.org>
16371 L:      linux-mtd@lists.infradead.org
16372 S:      Maintained
16373 F:      drivers/mtd/devices/phram.c
16374
16375 PICOLCD HID DRIVER
16376 M:      Bruno Prémont <bonbons@linux-vserver.org>
16377 L:      linux-input@vger.kernel.org
16378 S:      Maintained
16379 F:      drivers/hid/hid-picolcd*
16380
16381 PIDFD API
16382 M:      Christian Brauner <christian@brauner.io>
16383 L:      linux-kernel@vger.kernel.org
16384 S:      Maintained
16385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16386 F:      samples/pidfd/
16387 F:      tools/testing/selftests/clone3/
16388 F:      tools/testing/selftests/pid_namespace/
16389 F:      tools/testing/selftests/pidfd/
16390 K:      (?i)pidfd
16391 K:      (?i)clone3
16392 K:      \b(clone_args|kernel_clone_args)\b
16393
16394 PIN CONTROL SUBSYSTEM
16395 M:      Linus Walleij <linus.walleij@linaro.org>
16396 L:      linux-gpio@vger.kernel.org
16397 S:      Maintained
16398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16399 F:      Documentation/devicetree/bindings/pinctrl/
16400 F:      Documentation/driver-api/pin-control.rst
16401 F:      drivers/pinctrl/
16402 F:      include/dt-bindings/pinctrl/
16403 F:      include/linux/pinctrl/
16404
16405 PIN CONTROLLER - AMD
16406 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16407 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16408 S:      Maintained
16409 F:      drivers/pinctrl/pinctrl-amd.c
16410
16411 PIN CONTROLLER - FREESCALE
16412 M:      Dong Aisheng <aisheng.dong@nxp.com>
16413 M:      Fabio Estevam <festevam@gmail.com>
16414 M:      Shawn Guo <shawnguo@kernel.org>
16415 M:      Jacky Bai <ping.bai@nxp.com>
16416 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16417 L:      linux-gpio@vger.kernel.org
16418 S:      Maintained
16419 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16420 F:      drivers/pinctrl/freescale/
16421
16422 PIN CONTROLLER - INTEL
16423 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16424 M:      Andy Shevchenko <andy@kernel.org>
16425 S:      Supported
16426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16427 F:      drivers/pinctrl/intel/
16428
16429 PIN CONTROLLER - KEEMBAY
16430 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16431 S:      Supported
16432 F:      drivers/pinctrl/pinctrl-keembay*
16433
16434 PIN CONTROLLER - MEDIATEK
16435 M:      Sean Wang <sean.wang@kernel.org>
16436 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16437 S:      Maintained
16438 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16439 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16440 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16441 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16442 F:      drivers/pinctrl/mediatek/
16443
16444 PIN CONTROLLER - MICROCHIP AT91
16445 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16447 L:      linux-gpio@vger.kernel.org
16448 S:      Supported
16449 F:      drivers/gpio/gpio-sama5d2-piobu.c
16450 F:      drivers/pinctrl/pinctrl-at91*
16451
16452 PIN CONTROLLER - QUALCOMM
16453 M:      Bjorn Andersson <andersson@kernel.org>
16454 L:      linux-arm-msm@vger.kernel.org
16455 S:      Maintained
16456 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16457 F:      drivers/pinctrl/qcom/
16458
16459 PIN CONTROLLER - RENESAS
16460 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16461 L:      linux-renesas-soc@vger.kernel.org
16462 S:      Supported
16463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16464 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16465 F:      drivers/pinctrl/renesas/
16466
16467 PIN CONTROLLER - SAMSUNG
16468 M:      Tomasz Figa <tomasz.figa@gmail.com>
16469 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16470 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16471 R:      Alim Akhtar <alim.akhtar@samsung.com>
16472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16473 L:      linux-samsung-soc@vger.kernel.org
16474 S:      Maintained
16475 C:      irc://irc.libera.chat/linux-exynos
16476 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16477 B:      mailto:linux-samsung-soc@vger.kernel.org
16478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16479 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16480 F:      drivers/pinctrl/samsung/
16481 F:      include/dt-bindings/pinctrl/samsung.h
16482
16483 PIN CONTROLLER - SINGLE
16484 M:      Tony Lindgren <tony@atomide.com>
16485 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16487 L:      linux-omap@vger.kernel.org
16488 S:      Maintained
16489 F:      drivers/pinctrl/pinctrl-single.c
16490
16491 PIN CONTROLLER - THUNDERBAY
16492 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16493 S:      Supported
16494 F:      drivers/pinctrl/pinctrl-thunderbay.c
16495
16496 PIN CONTROLLER - SUNPLUS / TIBBO
16497 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16498 M:      Wells Lu <wellslutw@gmail.com>
16499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16500 S:      Maintained
16501 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16502 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16503 F:      drivers/pinctrl/sunplus/
16504 F:      include/dt-bindings/pinctrl/sppctl*.h
16505
16506 PINE64 PINEPHONE KEYBOARD DRIVER
16507 M:      Samuel Holland <samuel@sholland.org>
16508 S:      Supported
16509 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16510 F:      drivers/input/keyboard/pinephone-keyboard.c
16511
16512 PKTCDVD DRIVER
16513 M:      linux-block@vger.kernel.org
16514 S:      Orphan
16515 F:      drivers/block/pktcdvd.c
16516 F:      include/linux/pktcdvd.h
16517 F:      include/uapi/linux/pktcdvd.h
16518
16519 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16520 M:      Tomasz Duszynski <tduszyns@gmail.com>
16521 S:      Maintained
16522 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16523 F:      drivers/iio/chemical/pms7003.c
16524
16525 PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
16526 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
16527 L:      netdev@vger.kernel.org
16528 S:      Maintained
16529 F:      drivers/net/phy/mdio-open-alliance.h
16530 F:      net/ethtool/plca.c
16531
16532 PLDMFW LIBRARY
16533 M:      Jacob Keller <jacob.e.keller@intel.com>
16534 S:      Maintained
16535 F:      Documentation/driver-api/pldmfw/
16536 F:      include/linux/pldmfw.h
16537 F:      lib/pldmfw/
16538
16539 PLX DMA DRIVER
16540 M:      Logan Gunthorpe <logang@deltatee.com>
16541 S:      Maintained
16542 F:      drivers/dma/plx_dma.c
16543
16544 PM6764TR DRIVER
16545 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16546 L:      linux-hwmon@vger.kernel.org
16547 S:      Maintained
16548 F:      Documentation/hwmon/pm6764tr.rst
16549 F:      drivers/hwmon/pmbus/pm6764tr.c
16550
16551 PM-GRAPH UTILITY
16552 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16553 L:      linux-pm@vger.kernel.org
16554 S:      Supported
16555 W:      https://01.org/pm-graph
16556 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16557 T:      git git://github.com/intel/pm-graph
16558 F:      tools/power/pm-graph
16559
16560 PMBUS HARDWARE MONITORING DRIVERS
16561 M:      Guenter Roeck <linux@roeck-us.net>
16562 L:      linux-hwmon@vger.kernel.org
16563 S:      Maintained
16564 W:      http://hwmon.wiki.kernel.org/
16565 W:      http://www.roeck-us.net/linux/drivers/
16566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16567 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16568 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16569 F:      Documentation/hwmon/adm1275.rst
16570 F:      Documentation/hwmon/ibm-cffps.rst
16571 F:      Documentation/hwmon/ir35221.rst
16572 F:      Documentation/hwmon/lm25066.rst
16573 F:      Documentation/hwmon/ltc2978.rst
16574 F:      Documentation/hwmon/ltc3815.rst
16575 F:      Documentation/hwmon/max16064.rst
16576 F:      Documentation/hwmon/max20751.rst
16577 F:      Documentation/hwmon/max31785.rst
16578 F:      Documentation/hwmon/max34440.rst
16579 F:      Documentation/hwmon/max8688.rst
16580 F:      Documentation/hwmon/pmbus-core.rst
16581 F:      Documentation/hwmon/pmbus.rst
16582 F:      Documentation/hwmon/tps40422.rst
16583 F:      Documentation/hwmon/ucd9000.rst
16584 F:      Documentation/hwmon/ucd9200.rst
16585 F:      Documentation/hwmon/zl6100.rst
16586 F:      drivers/hwmon/pmbus/
16587 F:      include/linux/pmbus.h
16588
16589 PMC SIERRA MaxRAID DRIVER
16590 L:      linux-scsi@vger.kernel.org
16591 S:      Orphan
16592 W:      http://www.pmc-sierra.com/
16593 F:      drivers/scsi/pmcraid.*
16594
16595 PMC SIERRA PM8001 DRIVER
16596 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16597 L:      linux-scsi@vger.kernel.org
16598 S:      Supported
16599 F:      drivers/scsi/pm8001/
16600
16601 PNI RM3100 IIO DRIVER
16602 M:      Song Qiang <songqiang1304521@gmail.com>
16603 L:      linux-iio@vger.kernel.org
16604 S:      Maintained
16605 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16606 F:      drivers/iio/magnetometer/rm3100*
16607
16608 PNP SUPPORT
16609 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16610 L:      linux-acpi@vger.kernel.org
16611 S:      Maintained
16612 F:      drivers/pnp/
16613 F:      include/linux/pnp.h
16614
16615 POSIX CLOCKS and TIMERS
16616 M:      Thomas Gleixner <tglx@linutronix.de>
16617 L:      linux-kernel@vger.kernel.org
16618 S:      Maintained
16619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16620 F:      fs/timerfd.c
16621 F:      include/linux/time_namespace.h
16622 F:      include/linux/timer*
16623 F:      kernel/time/*timer*
16624 F:      kernel/time/namespace.c
16625
16626 POWER MANAGEMENT CORE
16627 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16628 L:      linux-pm@vger.kernel.org
16629 S:      Supported
16630 B:      https://bugzilla.kernel.org
16631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16632 F:      drivers/base/power/
16633 F:      drivers/powercap/
16634 F:      include/linux/intel_rapl.h
16635 F:      include/linux/pm.h
16636 F:      include/linux/pm_*
16637 F:      include/linux/powercap.h
16638 F:      kernel/configs/nopm.config
16639
16640 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16641 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16642 L:      linux-pm@vger.kernel.org
16643 S:      Supported
16644 B:      https://bugzilla.kernel.org
16645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16646 F:      drivers/powercap/dtpm*
16647 F:      include/linux/dtpm.h
16648
16649 POWER STATE COORDINATION INTERFACE (PSCI)
16650 M:      Mark Rutland <mark.rutland@arm.com>
16651 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16653 S:      Maintained
16654 F:      drivers/firmware/psci/
16655 F:      include/linux/psci.h
16656 F:      include/uapi/linux/psci.h
16657
16658 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16659 M:      Sebastian Reichel <sre@kernel.org>
16660 L:      linux-pm@vger.kernel.org
16661 S:      Maintained
16662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16663 F:      Documentation/ABI/testing/sysfs-class-power
16664 F:      Documentation/devicetree/bindings/power/supply/
16665 F:      drivers/power/supply/
16666 F:      include/linux/power/
16667 F:      include/linux/power_supply.h
16668
16669 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16670 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16671 L:      linuxppc-dev@lists.ozlabs.org
16672 S:      Maintained
16673 F:      drivers/char/powernv-op-panel.c
16674
16675 PPP OVER ATM (RFC 2364)
16676 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16677 S:      Maintained
16678 F:      include/uapi/linux/atmppp.h
16679 F:      net/atm/pppoatm.c
16680
16681 PPP OVER ETHERNET
16682 M:      Michal Ostrowski <mostrows@earthlink.net>
16683 S:      Maintained
16684 F:      drivers/net/ppp/pppoe.c
16685 F:      drivers/net/ppp/pppox.c
16686
16687 PPP OVER L2TP
16688 M:      James Chapman <jchapman@katalix.com>
16689 S:      Maintained
16690 F:      include/linux/if_pppol2tp.h
16691 F:      include/uapi/linux/if_pppol2tp.h
16692 F:      net/l2tp/l2tp_ppp.c
16693
16694 PPP PROTOCOL DRIVERS AND COMPRESSORS
16695 M:      Paul Mackerras <paulus@samba.org>
16696 L:      linux-ppp@vger.kernel.org
16697 S:      Maintained
16698 F:      drivers/net/ppp/ppp_*
16699
16700 PPS SUPPORT
16701 M:      Rodolfo Giometti <giometti@enneenne.com>
16702 L:      linuxpps@ml.enneenne.com (subscribers-only)
16703 S:      Maintained
16704 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16705 F:      Documentation/ABI/testing/sysfs-pps
16706 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16707 F:      Documentation/driver-api/pps.rst
16708 F:      drivers/pps/
16709 F:      include/linux/pps*.h
16710 F:      include/uapi/linux/pps.h
16711
16712 PPTP DRIVER
16713 M:      Dmitry Kozlov <xeb@mail.ru>
16714 L:      netdev@vger.kernel.org
16715 S:      Maintained
16716 W:      http://sourceforge.net/projects/accel-pptp
16717 F:      drivers/net/ppp/pptp.c
16718
16719 PRESSURE STALL INFORMATION (PSI)
16720 M:      Johannes Weiner <hannes@cmpxchg.org>
16721 M:      Suren Baghdasaryan <surenb@google.com>
16722 S:      Maintained
16723 F:      include/linux/psi*
16724 F:      kernel/sched/psi.c
16725
16726 PRINTK
16727 M:      Petr Mladek <pmladek@suse.com>
16728 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16729 R:      Steven Rostedt <rostedt@goodmis.org>
16730 R:      John Ogness <john.ogness@linutronix.de>
16731 S:      Maintained
16732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16733 F:      include/linux/printk.h
16734 F:      kernel/printk/
16735
16736 PRINTK INDEXING
16737 R:      Chris Down <chris@chrisdown.name>
16738 S:      Maintained
16739 F:      Documentation/core-api/printk-index.rst
16740 F:      kernel/printk/index.c
16741 K:      printk_index
16742
16743 PROC FILESYSTEM
16744 L:      linux-kernel@vger.kernel.org
16745 L:      linux-fsdevel@vger.kernel.org
16746 S:      Maintained
16747 F:      Documentation/filesystems/proc.rst
16748 F:      fs/proc/
16749 F:      include/linux/proc_fs.h
16750 F:      tools/testing/selftests/proc/
16751
16752 PROC SYSCTL
16753 M:      Luis Chamberlain <mcgrof@kernel.org>
16754 M:      Kees Cook <keescook@chromium.org>
16755 M:      Iurii Zaikin <yzaikin@google.com>
16756 L:      linux-kernel@vger.kernel.org
16757 L:      linux-fsdevel@vger.kernel.org
16758 S:      Maintained
16759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16760 F:      fs/proc/proc_sysctl.c
16761 F:      include/linux/sysctl.h
16762 F:      kernel/sysctl-test.c
16763 F:      kernel/sysctl.c
16764 F:      tools/testing/selftests/sysctl/
16765
16766 PS3 NETWORK SUPPORT
16767 M:      Geoff Levand <geoff@infradead.org>
16768 L:      netdev@vger.kernel.org
16769 L:      linuxppc-dev@lists.ozlabs.org
16770 S:      Maintained
16771 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16772
16773 PS3 PLATFORM SUPPORT
16774 M:      Geoff Levand <geoff@infradead.org>
16775 L:      linuxppc-dev@lists.ozlabs.org
16776 S:      Maintained
16777 F:      arch/powerpc/boot/ps3*
16778 F:      arch/powerpc/include/asm/lv1call.h
16779 F:      arch/powerpc/include/asm/ps3*.h
16780 F:      arch/powerpc/platforms/ps3/
16781 F:      drivers/*/ps3*
16782 F:      drivers/ps3/
16783 F:      drivers/rtc/rtc-ps3.c
16784 F:      drivers/usb/host/*ps3.c
16785 F:      sound/ppc/snd_ps3*
16786
16787 PS3VRAM DRIVER
16788 M:      Jim Paris <jim@jtan.com>
16789 M:      Geoff Levand <geoff@infradead.org>
16790 L:      linuxppc-dev@lists.ozlabs.org
16791 S:      Maintained
16792 F:      drivers/block/ps3vram.c
16793
16794 PSAMPLE PACKET SAMPLING SUPPORT
16795 M:      Yotam Gigi <yotam.gi@gmail.com>
16796 S:      Maintained
16797 F:      include/net/psample.h
16798 F:      include/uapi/linux/psample.h
16799 F:      net/psample
16800
16801 PSTORE FILESYSTEM
16802 M:      Kees Cook <keescook@chromium.org>
16803 R:      Tony Luck <tony.luck@intel.com>
16804 R:      Guilherme G. Piccoli <gpiccoli@igalia.com>
16805 L:      linux-hardening@vger.kernel.org
16806 S:      Supported
16807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16808 F:      Documentation/admin-guide/ramoops.rst
16809 F:      Documentation/admin-guide/pstore-blk.rst
16810 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16811 F:      drivers/acpi/apei/erst.c
16812 F:      drivers/firmware/efi/efi-pstore.c
16813 F:      fs/pstore/
16814 F:      include/linux/pstore*
16815 K:      \b(pstore|ramoops)
16816
16817 PTP HARDWARE CLOCK SUPPORT
16818 M:      Richard Cochran <richardcochran@gmail.com>
16819 L:      netdev@vger.kernel.org
16820 S:      Maintained
16821 W:      http://linuxptp.sourceforge.net/
16822 F:      Documentation/ABI/testing/sysfs-ptp
16823 F:      Documentation/driver-api/ptp.rst
16824 F:      drivers/net/phy/dp83640*
16825 F:      drivers/ptp/*
16826 F:      include/linux/ptp_cl*
16827 K:      (?:\b|_)ptp(?:\b|_)
16828
16829 PTP VIRTUAL CLOCK SUPPORT
16830 M:      Yangbo Lu <yangbo.lu@nxp.com>
16831 L:      netdev@vger.kernel.org
16832 S:      Maintained
16833 F:      drivers/ptp/ptp_vclock.c
16834 F:      net/ethtool/phc_vclocks.c
16835
16836 PTRACE SUPPORT
16837 M:      Oleg Nesterov <oleg@redhat.com>
16838 S:      Maintained
16839 F:      arch/*/*/ptrace*.c
16840 F:      arch/*/include/asm/ptrace*.h
16841 F:      arch/*/ptrace*.c
16842 F:      include/asm-generic/syscall.h
16843 F:      include/linux/ptrace.h
16844 F:      include/linux/regset.h
16845 F:      include/uapi/linux/ptrace.h
16846 F:      kernel/ptrace.c
16847
16848 PULSE8-CEC DRIVER
16849 M:      Hans Verkuil <hverkuil@xs4all.nl>
16850 L:      linux-media@vger.kernel.org
16851 S:      Maintained
16852 T:      git git://linuxtv.org/media_tree.git
16853 F:      drivers/media/cec/usb/pulse8/
16854
16855 PURELIFI PLFXLC DRIVER
16856 M:      Srinivasan Raju <srini.raju@purelifi.com>
16857 L:      linux-wireless@vger.kernel.org
16858 S:      Supported
16859 F:      drivers/net/wireless/purelifi/plfxlc/
16860
16861 PVRUSB2 VIDEO4LINUX DRIVER
16862 M:      Mike Isely <isely@pobox.com>
16863 L:      pvrusb2@isely.net       (subscribers-only)
16864 L:      linux-media@vger.kernel.org
16865 S:      Maintained
16866 W:      http://www.isely.net/pvrusb2/
16867 T:      git git://linuxtv.org/media_tree.git
16868 F:      Documentation/driver-api/media/drivers/pvrusb2*
16869 F:      drivers/media/usb/pvrusb2/
16870
16871 PWC WEBCAM DRIVER
16872 M:      Hans Verkuil <hverkuil@xs4all.nl>
16873 L:      linux-media@vger.kernel.org
16874 S:      Odd Fixes
16875 T:      git git://linuxtv.org/media_tree.git
16876 F:      drivers/media/usb/pwc/*
16877 F:      include/trace/events/pwc.h
16878
16879 PWM IR Transmitter
16880 M:      Sean Young <sean@mess.org>
16881 L:      linux-media@vger.kernel.org
16882 S:      Maintained
16883 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
16884 F:      drivers/media/rc/pwm-ir-tx.c
16885
16886 PWM SUBSYSTEM
16887 M:      Thierry Reding <thierry.reding@gmail.com>
16888 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16889 L:      linux-pwm@vger.kernel.org
16890 S:      Maintained
16891 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16893 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16894 F:      Documentation/devicetree/bindings/pwm/
16895 F:      Documentation/driver-api/pwm.rst
16896 F:      drivers/gpio/gpio-mvebu.c
16897 F:      drivers/pwm/
16898 F:      drivers/video/backlight/pwm_bl.c
16899 F:      include/dt-bindings/pwm/
16900 F:      include/linux/pwm.h
16901 F:      include/linux/pwm_backlight.h
16902 K:      pwm_(config|apply_state|ops)
16903
16904 PXA GPIO DRIVER
16905 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16906 L:      linux-gpio@vger.kernel.org
16907 S:      Maintained
16908 F:      drivers/gpio/gpio-pxa.c
16909
16910 PXA MMCI DRIVER
16911 S:      Orphan
16912
16913 PXA RTC DRIVER
16914 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16915 L:      linux-rtc@vger.kernel.org
16916 S:      Maintained
16917
16918 PXA2xx/PXA3xx SUPPORT
16919 M:      Daniel Mack <daniel@zonque.org>
16920 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16921 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16923 S:      Maintained
16924 T:      git git://github.com/hzhuang1/linux.git
16925 T:      git git://github.com/rjarzmik/linux.git
16926 F:      arch/arm/boot/dts/pxa*
16927 F:      arch/arm/mach-pxa/
16928 F:      drivers/dma/pxa*
16929 F:      drivers/pcmcia/pxa2xx*
16930 F:      drivers/pinctrl/pxa/
16931 F:      drivers/spi/spi-pxa2xx*
16932 F:      drivers/usb/gadget/udc/pxa2*
16933 F:      include/sound/pxa2xx-lib.h
16934 F:      sound/arm/pxa*
16935 F:      sound/soc/pxa/
16936
16937 QAT DRIVER
16938 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16939 L:      qat-linux@intel.com
16940 S:      Supported
16941 F:      drivers/crypto/qat/
16942
16943 QCOM AUDIO (ASoC) DRIVERS
16944 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16945 M:      Banajit Goswami <bgoswami@quicinc.com>
16946 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16947 S:      Supported
16948 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
16949 F:      Documentation/devicetree/bindings/sound/qcom,*
16950 F:      drivers/soc/qcom/apr.c
16951 F:      include/dt-bindings/sound/qcom,wcd9335.h
16952 F:      sound/soc/codecs/lpass-rx-macro.*
16953 F:      sound/soc/codecs/lpass-tx-macro.*
16954 F:      sound/soc/codecs/lpass-va-macro.c
16955 F:      sound/soc/codecs/lpass-wsa-macro.*
16956 F:      sound/soc/codecs/msm8916-wcd-analog.c
16957 F:      sound/soc/codecs/msm8916-wcd-digital.c
16958 F:      sound/soc/codecs/wcd9335.*
16959 F:      sound/soc/codecs/wcd934x.c
16960 F:      sound/soc/codecs/wcd-clsh-v2.*
16961 F:      sound/soc/codecs/wcd-mbhc-v2.*
16962 F:      sound/soc/codecs/wsa881x.c
16963 F:      sound/soc/codecs/wsa883x.c
16964 F:      sound/soc/qcom/
16965
16966 QCOM EMBEDDED USB DEBUGGER (EUD)
16967 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16968 L:      linux-arm-msm@vger.kernel.org
16969 S:      Maintained
16970 F:      Documentation/ABI/testing/sysfs-driver-eud
16971 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16972 F:      drivers/usb/misc/qcom_eud.c
16973
16974 QCOM IPA DRIVER
16975 M:      Alex Elder <elder@kernel.org>
16976 L:      netdev@vger.kernel.org
16977 S:      Supported
16978 F:      drivers/net/ipa/
16979
16980 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16981 M:      Gabriel Somlo <somlo@cmu.edu>
16982 M:      "Michael S. Tsirkin" <mst@redhat.com>
16983 L:      qemu-devel@nongnu.org
16984 S:      Maintained
16985 F:      drivers/firmware/qemu_fw_cfg.c
16986 F:      include/uapi/linux/qemu_fw_cfg.h
16987
16988 QIB DRIVER
16989 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16990 L:      linux-rdma@vger.kernel.org
16991 S:      Supported
16992 F:      drivers/infiniband/hw/qib/
16993
16994 QLOGIC QL41xxx FCOE DRIVER
16995 M:      Saurav Kashyap <skashyap@marvell.com>
16996 M:      Javed Hasan <jhasan@marvell.com>
16997 M:      GR-QLogic-Storage-Upstream@marvell.com
16998 L:      linux-scsi@vger.kernel.org
16999 S:      Supported
17000 F:      drivers/scsi/qedf/
17001
17002 QLOGIC QL41xxx ISCSI DRIVER
17003 M:      Nilesh Javali <njavali@marvell.com>
17004 M:      Manish Rangankar <mrangankar@marvell.com>
17005 M:      GR-QLogic-Storage-Upstream@marvell.com
17006 L:      linux-scsi@vger.kernel.org
17007 S:      Supported
17008 F:      drivers/scsi/qedi/
17009
17010 QLOGIC QL4xxx ETHERNET DRIVER
17011 M:      Ariel Elior <aelior@marvell.com>
17012 M:      Manish Chopra <manishc@marvell.com>
17013 L:      netdev@vger.kernel.org
17014 S:      Supported
17015 F:      drivers/net/ethernet/qlogic/qed/
17016 F:      drivers/net/ethernet/qlogic/qede/
17017 F:      include/linux/qed/
17018
17019 QLOGIC QL4xxx RDMA DRIVER
17020 M:      Michal Kalderon <mkalderon@marvell.com>
17021 M:      Ariel Elior <aelior@marvell.com>
17022 L:      linux-rdma@vger.kernel.org
17023 S:      Supported
17024 F:      drivers/infiniband/hw/qedr/
17025 F:      include/uapi/rdma/qedr-abi.h
17026
17027 QLOGIC QLA1280 SCSI DRIVER
17028 M:      Michael Reed <mdr@sgi.com>
17029 L:      linux-scsi@vger.kernel.org
17030 S:      Maintained
17031 F:      drivers/scsi/qla1280.[ch]
17032
17033 QLOGIC QLA2XXX FC-SCSI DRIVER
17034 M:      Nilesh Javali <njavali@marvell.com>
17035 M:      GR-QLogic-Storage-Upstream@marvell.com
17036 L:      linux-scsi@vger.kernel.org
17037 S:      Supported
17038 F:      drivers/scsi/qla2xxx/
17039
17040 QLOGIC QLA3XXX NETWORK DRIVER
17041 M:      GR-Linux-NIC-Dev@marvell.com
17042 L:      netdev@vger.kernel.org
17043 S:      Supported
17044 F:      drivers/net/ethernet/qlogic/qla3xxx.*
17045
17046 QLOGIC QLA4XXX iSCSI DRIVER
17047 M:      Nilesh Javali <njavali@marvell.com>
17048 M:      Manish Rangankar <mrangankar@marvell.com>
17049 M:      GR-QLogic-Storage-Upstream@marvell.com
17050 L:      linux-scsi@vger.kernel.org
17051 S:      Supported
17052 F:      drivers/scsi/qla4xxx/
17053
17054 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17055 M:      Shahed Shaikh <shshaikh@marvell.com>
17056 M:      Manish Chopra <manishc@marvell.com>
17057 M:      GR-Linux-NIC-Dev@marvell.com
17058 L:      netdev@vger.kernel.org
17059 S:      Supported
17060 F:      drivers/net/ethernet/qlogic/qlcnic/
17061
17062 QLOGIC QLGE 10Gb ETHERNET DRIVER
17063 M:      Manish Chopra <manishc@marvell.com>
17064 M:      GR-Linux-NIC-Dev@marvell.com
17065 M:      Coiby Xu <coiby.xu@gmail.com>
17066 L:      netdev@vger.kernel.org
17067 S:      Supported
17068 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17069 F:      drivers/staging/qlge/
17070
17071 QM1D1B0004 MEDIA DRIVER
17072 M:      Akihiro Tsukada <tskd08@gmail.com>
17073 L:      linux-media@vger.kernel.org
17074 S:      Odd Fixes
17075 F:      drivers/media/tuners/qm1d1b0004*
17076
17077 QM1D1C0042 MEDIA DRIVER
17078 M:      Akihiro Tsukada <tskd08@gmail.com>
17079 L:      linux-media@vger.kernel.org
17080 S:      Odd Fixes
17081 F:      drivers/media/tuners/qm1d1c0042*
17082
17083 QNX4 FILESYSTEM
17084 M:      Anders Larsen <al@alarsen.net>
17085 S:      Maintained
17086 W:      http://www.alarsen.net/linux/qnx4fs/
17087 F:      fs/qnx4/
17088 F:      include/uapi/linux/qnx4_fs.h
17089 F:      include/uapi/linux/qnxtypes.h
17090
17091 QORIQ DPAA2 FSL-MC BUS DRIVER
17092 M:      Stuart Yoder <stuyoder@gmail.com>
17093 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
17094 L:      linux-kernel@vger.kernel.org
17095 S:      Maintained
17096 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17097 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17098 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17099 F:      drivers/bus/fsl-mc/
17100 F:      include/uapi/linux/fsl_mc.h
17101
17102 QT1010 MEDIA DRIVER
17103 M:      Antti Palosaari <crope@iki.fi>
17104 L:      linux-media@vger.kernel.org
17105 S:      Maintained
17106 W:      https://linuxtv.org
17107 W:      http://palosaari.fi/linux/
17108 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17109 T:      git git://linuxtv.org/anttip/media_tree.git
17110 F:      drivers/media/tuners/qt1010*
17111
17112 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17113 M:      Kalle Valo <kvalo@kernel.org>
17114 L:      ath10k@lists.infradead.org
17115 S:      Supported
17116 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17118 F:      drivers/net/wireless/ath/ath10k/
17119 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
17120
17121 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17122 M:      Kalle Valo <kvalo@kernel.org>
17123 L:      ath11k@lists.infradead.org
17124 S:      Supported
17125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17126 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17127 F:      drivers/net/wireless/ath/ath11k/
17128
17129 QUALCOMM ATH12K WIRELESS DRIVER
17130 M:      Kalle Valo <kvalo@kernel.org>
17131 L:      ath12k@lists.infradead.org
17132 S:      Supported
17133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17134 F:      drivers/net/wireless/ath/ath12k/
17135
17136 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17137 M:      Toke Høiland-Jørgensen <toke@toke.dk>
17138 L:      linux-wireless@vger.kernel.org
17139 S:      Maintained
17140 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17141 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17142 F:      drivers/net/wireless/ath/ath9k/
17143
17144 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17145 M:      Stephan Gerhold <stephan@gerhold.net>
17146 L:      netdev@vger.kernel.org
17147 L:      linux-arm-msm@vger.kernel.org
17148 S:      Maintained
17149 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17150 F:      drivers/net/wwan/qcom_bam_dmux.c
17151
17152 QUALCOMM CAMERA SUBSYSTEM DRIVER
17153 M:      Robert Foss <rfoss@kernel.org>
17154 M:      Todor Tomov <todor.too@gmail.com>
17155 L:      linux-media@vger.kernel.org
17156 S:      Maintained
17157 F:      Documentation/admin-guide/media/qcom_camss.rst
17158 F:      Documentation/devicetree/bindings/media/*camss*
17159 F:      drivers/media/platform/qcom/camss/
17160
17161 QUALCOMM CLOCK DRIVERS
17162 M:      Bjorn Andersson <andersson@kernel.org>
17163 L:      linux-arm-msm@vger.kernel.org
17164 S:      Supported
17165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17166 F:      Documentation/devicetree/bindings/clock/qcom,*
17167 F:      drivers/clk/qcom/
17168 F:      include/dt-bindings/clock/qcom,*
17169
17170 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17171 M:      Niklas Cassel <nks@flawful.org>
17172 L:      linux-pm@vger.kernel.org
17173 L:      linux-arm-msm@vger.kernel.org
17174 S:      Maintained
17175 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17176 F:      drivers/soc/qcom/cpr.c
17177
17178 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17179 M:      Ilia Lin <ilia.lin@kernel.org>
17180 L:      linux-pm@vger.kernel.org
17181 S:      Maintained
17182 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17183 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17184 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17185
17186 QUALCOMM CRYPTO DRIVERS
17187 M:      Thara Gopinath <thara.gopinath@gmail.com>
17188 L:      linux-crypto@vger.kernel.org
17189 L:      linux-arm-msm@vger.kernel.org
17190 S:      Maintained
17191 F:      drivers/crypto/qce/
17192
17193 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17194 M:      Timur Tabi <timur@kernel.org>
17195 L:      netdev@vger.kernel.org
17196 S:      Maintained
17197 F:      drivers/net/ethernet/qualcomm/emac/
17198
17199 QUALCOMM ETHQOS ETHERNET DRIVER
17200 M:      Vinod Koul <vkoul@kernel.org>
17201 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
17202 L:      netdev@vger.kernel.org
17203 S:      Maintained
17204 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
17205 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17206
17207 QUALCOMM FASTRPC DRIVER
17208 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17209 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
17210 L:      linux-arm-msm@vger.kernel.org
17211 S:      Maintained
17212 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17213 F:      drivers/misc/fastrpc.c
17214 F:      include/uapi/misc/fastrpc.h
17215
17216 QUALCOMM HEXAGON ARCHITECTURE
17217 M:      Brian Cain <bcain@quicinc.com>
17218 L:      linux-hexagon@vger.kernel.org
17219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17220 S:      Supported
17221 F:      arch/hexagon/
17222
17223 QUALCOMM HIDMA DRIVER
17224 M:      Sinan Kaya <okaya@kernel.org>
17225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17226 L:      linux-arm-msm@vger.kernel.org
17227 L:      dmaengine@vger.kernel.org
17228 S:      Supported
17229 F:      drivers/dma/qcom/hidma*
17230
17231 QUALCOMM I2C CCI DRIVER
17232 M:      Loic Poulain <loic.poulain@linaro.org>
17233 M:      Robert Foss <rfoss@kernel.org>
17234 L:      linux-i2c@vger.kernel.org
17235 L:      linux-arm-msm@vger.kernel.org
17236 S:      Maintained
17237 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17238 F:      drivers/i2c/busses/i2c-qcom-cci.c
17239
17240 QUALCOMM INTERCONNECT BWMON DRIVER
17241 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17242 L:      linux-arm-msm@vger.kernel.org
17243 S:      Maintained
17244 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17245 F:      drivers/soc/qcom/icc-bwmon.c
17246
17247 QUALCOMM IOMMU
17248 M:      Rob Clark <robdclark@gmail.com>
17249 L:      iommu@lists.linux.dev
17250 L:      linux-arm-msm@vger.kernel.org
17251 S:      Maintained
17252 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17253
17254 QUALCOMM IPC ROUTER (QRTR) DRIVER
17255 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17256 L:      linux-arm-msm@vger.kernel.org
17257 S:      Maintained
17258 F:      include/trace/events/qrtr.h
17259 F:      include/uapi/linux/qrtr.h
17260 F:      net/qrtr/
17261
17262 QUALCOMM IPCC MAILBOX DRIVER
17263 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17264 L:      linux-arm-msm@vger.kernel.org
17265 S:      Supported
17266 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17267 F:      drivers/mailbox/qcom-ipcc.c
17268 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17269
17270 QUALCOMM IPQ4019 USB PHY DRIVER
17271 M:      Robert Marko <robert.marko@sartura.hr>
17272 M:      Luka Perkov <luka.perkov@sartura.hr>
17273 L:      linux-arm-msm@vger.kernel.org
17274 S:      Maintained
17275 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17276 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17277
17278 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17279 M:      Robert Marko <robert.marko@sartura.hr>
17280 M:      Luka Perkov <luka.perkov@sartura.hr>
17281 L:      linux-arm-msm@vger.kernel.org
17282 S:      Maintained
17283 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17284 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17285
17286 QUALCOMM NAND CONTROLLER DRIVER
17287 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17288 L:      linux-mtd@lists.infradead.org
17289 L:      linux-arm-msm@vger.kernel.org
17290 S:      Maintained
17291 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17292 F:      drivers/mtd/nand/raw/qcom_nandc.c
17293
17294 QUALCOMM RMNET DRIVER
17295 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17296 M:      Sean Tranchetti <quic_stranche@quicinc.com>
17297 L:      netdev@vger.kernel.org
17298 S:      Maintained
17299 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17300 F:      drivers/net/ethernet/qualcomm/rmnet/
17301 F:      include/linux/if_rmnet.h
17302
17303 QUALCOMM TSENS THERMAL DRIVER
17304 M:      Amit Kucheria <amitk@kernel.org>
17305 M:      Thara Gopinath <thara.gopinath@gmail.com>
17306 L:      linux-pm@vger.kernel.org
17307 L:      linux-arm-msm@vger.kernel.org
17308 S:      Maintained
17309 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17310 F:      drivers/thermal/qcom/
17311
17312 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17313 M:      Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17314 M:      Vikash Garodia <quic_vgarodia@quicinc.com>
17315 L:      linux-media@vger.kernel.org
17316 L:      linux-arm-msm@vger.kernel.org
17317 S:      Maintained
17318 T:      git git://linuxtv.org/media_tree.git
17319 F:      Documentation/devicetree/bindings/media/*venus*
17320 F:      drivers/media/platform/qcom/venus/
17321
17322 QUALCOMM WCN36XX WIRELESS DRIVER
17323 M:      Loic Poulain <loic.poulain@linaro.org>
17324 L:      wcn36xx@lists.infradead.org
17325 S:      Supported
17326 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17327 F:      drivers/net/wireless/ath/wcn36xx/
17328
17329 QUANTENNA QTNFMAC WIRELESS DRIVER
17330 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17331 R:      Sergey Matyukevich <geomatsi@gmail.com>
17332 L:      linux-wireless@vger.kernel.org
17333 S:      Maintained
17334 F:      drivers/net/wireless/quantenna
17335
17336 RADEON and AMDGPU DRM DRIVERS
17337 M:      Alex Deucher <alexander.deucher@amd.com>
17338 M:      Christian König <christian.koenig@amd.com>
17339 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17340 L:      amd-gfx@lists.freedesktop.org
17341 S:      Supported
17342 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17343 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17344 C:      irc://irc.oftc.net/radeon
17345 F:      Documentation/gpu/amdgpu/
17346 F:      drivers/gpu/drm/amd/
17347 F:      drivers/gpu/drm/radeon/
17348 F:      include/uapi/drm/amdgpu_drm.h
17349 F:      include/uapi/drm/radeon_drm.h
17350
17351 RADEON FRAMEBUFFER DISPLAY DRIVER
17352 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17353 L:      linux-fbdev@vger.kernel.org
17354 S:      Maintained
17355 F:      drivers/video/fbdev/aty/radeon*
17356 F:      include/uapi/linux/radeonfb.h
17357
17358 RADIOSHARK RADIO DRIVER
17359 M:      Hans Verkuil <hverkuil@xs4all.nl>
17360 L:      linux-media@vger.kernel.org
17361 S:      Maintained
17362 T:      git git://linuxtv.org/media_tree.git
17363 F:      drivers/media/radio/radio-shark.c
17364
17365 RADIOSHARK2 RADIO DRIVER
17366 M:      Hans Verkuil <hverkuil@xs4all.nl>
17367 L:      linux-media@vger.kernel.org
17368 S:      Maintained
17369 T:      git git://linuxtv.org/media_tree.git
17370 F:      drivers/media/radio/radio-shark2.c
17371 F:      drivers/media/radio/radio-tea5777.c
17372
17373 RADOS BLOCK DEVICE (RBD)
17374 M:      Ilya Dryomov <idryomov@gmail.com>
17375 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17376 L:      ceph-devel@vger.kernel.org
17377 S:      Supported
17378 W:      http://ceph.com/
17379 T:      git https://github.com/ceph/ceph-client.git
17380 F:      Documentation/ABI/testing/sysfs-bus-rbd
17381 F:      drivers/block/rbd.c
17382 F:      drivers/block/rbd_types.h
17383
17384 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17385 M:      Paul Mackerras <paulus@samba.org>
17386 L:      linux-fbdev@vger.kernel.org
17387 S:      Maintained
17388 F:      drivers/video/fbdev/aty/aty128fb.c
17389
17390 RAINSHADOW-CEC DRIVER
17391 M:      Hans Verkuil <hverkuil@xs4all.nl>
17392 L:      linux-media@vger.kernel.org
17393 S:      Maintained
17394 T:      git git://linuxtv.org/media_tree.git
17395 F:      drivers/media/cec/usb/rainshadow/
17396
17397 RALINK MIPS ARCHITECTURE
17398 M:      John Crispin <john@phrozen.org>
17399 L:      linux-mips@vger.kernel.org
17400 S:      Maintained
17401 F:      arch/mips/ralink
17402
17403 RALINK MT7621 MIPS ARCHITECTURE
17404 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17405 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17406 L:      linux-mips@vger.kernel.org
17407 S:      Maintained
17408 F:      arch/mips/boot/dts/ralink/mt7621*
17409
17410 RALINK PINCTRL DRIVER
17411 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17412 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17413 L:      linux-mips@vger.kernel.org
17414 S:      Maintained
17415 F:      drivers/pinctrl/ralink/
17416
17417 RALINK RT2X00 WIRELESS LAN DRIVER
17418 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17419 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17420 L:      linux-wireless@vger.kernel.org
17421 S:      Maintained
17422 F:      drivers/net/wireless/ralink/rt2x00/
17423
17424 RAMDISK RAM BLOCK DEVICE DRIVER
17425 M:      Jens Axboe <axboe@kernel.dk>
17426 S:      Maintained
17427 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17428 F:      drivers/block/brd.c
17429
17430 RANCHU VIRTUAL BOARD FOR MIPS
17431 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17432 L:      linux-mips@vger.kernel.org
17433 S:      Supported
17434 F:      arch/mips/configs/generic/board-ranchu.config
17435 F:      arch/mips/generic/board-ranchu.c
17436
17437 RANDOM NUMBER DRIVER
17438 M:      "Theodore Ts'o" <tytso@mit.edu>
17439 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17440 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17441 S:      Maintained
17442 F:      drivers/char/random.c
17443 F:      drivers/virt/vmgenid.c
17444
17445 RAPIDIO SUBSYSTEM
17446 M:      Matt Porter <mporter@kernel.crashing.org>
17447 M:      Alexandre Bounine <alex.bou9@gmail.com>
17448 S:      Maintained
17449 F:      drivers/rapidio/
17450
17451 RAS INFRASTRUCTURE
17452 M:      Tony Luck <tony.luck@intel.com>
17453 M:      Borislav Petkov <bp@alien8.de>
17454 L:      linux-edac@vger.kernel.org
17455 S:      Maintained
17456 F:      Documentation/admin-guide/ras.rst
17457 F:      drivers/ras/
17458 F:      include/linux/ras.h
17459 F:      include/ras/ras_event.h
17460
17461 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17462 L:      linux-wireless@vger.kernel.org
17463 S:      Orphan
17464 F:      drivers/net/wireless/ray*
17465
17466 RC-CORE / LIRC FRAMEWORK
17467 M:      Sean Young <sean@mess.org>
17468 L:      linux-media@vger.kernel.org
17469 S:      Maintained
17470 W:      http://linuxtv.org
17471 T:      git git://linuxtv.org/media_tree.git
17472 F:      Documentation/driver-api/media/rc-core.rst
17473 F:      Documentation/userspace-api/media/rc/
17474 F:      drivers/media/rc/
17475 F:      include/media/rc-map.h
17476 F:      include/media/rc-core.h
17477 F:      include/uapi/linux/lirc.h
17478
17479 RCMM REMOTE CONTROLS DECODER
17480 M:      Patrick Lerda <patrick9876@free.fr>
17481 S:      Maintained
17482 F:      drivers/media/rc/ir-rcmm-decoder.c
17483
17484 RCUTORTURE TEST FRAMEWORK
17485 M:      "Paul E. McKenney" <paulmck@kernel.org>
17486 M:      Josh Triplett <josh@joshtriplett.org>
17487 R:      Steven Rostedt <rostedt@goodmis.org>
17488 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17489 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17490 L:      rcu@vger.kernel.org
17491 S:      Supported
17492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17493 F:      tools/testing/selftests/rcutorture
17494
17495 RDACM20 Camera Sensor
17496 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17497 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17498 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17499 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17500 L:      linux-media@vger.kernel.org
17501 S:      Maintained
17502 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17503 F:      drivers/media/i2c/max9271.c
17504 F:      drivers/media/i2c/max9271.h
17505 F:      drivers/media/i2c/rdacm20.c
17506
17507 RDACM21 Camera Sensor
17508 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17509 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17510 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17511 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17512 L:      linux-media@vger.kernel.org
17513 S:      Maintained
17514 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17515 F:      drivers/media/i2c/max9271.c
17516 F:      drivers/media/i2c/max9271.h
17517 F:      drivers/media/i2c/rdacm21.c
17518
17519 RDC R-321X SoC
17520 M:      Florian Fainelli <florian@openwrt.org>
17521 S:      Maintained
17522
17523 RDC R6040 FAST ETHERNET DRIVER
17524 M:      Florian Fainelli <f.fainelli@gmail.com>
17525 L:      netdev@vger.kernel.org
17526 S:      Maintained
17527 F:      drivers/net/ethernet/rdc/r6040.c
17528
17529 RDMAVT - RDMA verbs software
17530 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17531 L:      linux-rdma@vger.kernel.org
17532 S:      Supported
17533 F:      drivers/infiniband/sw/rdmavt
17534
17535 RDS - RELIABLE DATAGRAM SOCKETS
17536 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17537 L:      netdev@vger.kernel.org
17538 L:      linux-rdma@vger.kernel.org
17539 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17540 S:      Supported
17541 W:      https://oss.oracle.com/projects/rds/
17542 F:      Documentation/networking/rds.rst
17543 F:      net/rds/
17544
17545 RDT - RESOURCE ALLOCATION
17546 M:      Fenghua Yu <fenghua.yu@intel.com>
17547 M:      Reinette Chatre <reinette.chatre@intel.com>
17548 L:      linux-kernel@vger.kernel.org
17549 S:      Supported
17550 F:      Documentation/x86/resctrl*
17551 F:      arch/x86/include/asm/resctrl.h
17552 F:      arch/x86/kernel/cpu/resctrl/
17553 F:      tools/testing/selftests/resctrl/
17554
17555 READ-COPY UPDATE (RCU)
17556 M:      "Paul E. McKenney" <paulmck@kernel.org>
17557 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17558 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17559 M:      Josh Triplett <josh@joshtriplett.org>
17560 R:      Steven Rostedt <rostedt@goodmis.org>
17561 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17562 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17563 R:      Joel Fernandes <joel@joelfernandes.org>
17564 L:      rcu@vger.kernel.org
17565 S:      Supported
17566 W:      http://www.rdrop.com/users/paulmck/RCU/
17567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17568 F:      Documentation/RCU/
17569 F:      include/linux/rcu*
17570 F:      kernel/rcu/
17571 X:      Documentation/RCU/torture.rst
17572 X:      include/linux/srcu*.h
17573 X:      kernel/rcu/srcu*.c
17574
17575 REAL TIME CLOCK (RTC) SUBSYSTEM
17576 M:      Alessandro Zummo <a.zummo@towertech.it>
17577 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17578 L:      linux-rtc@vger.kernel.org
17579 S:      Maintained
17580 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17582 F:      Documentation/admin-guide/rtc.rst
17583 F:      Documentation/devicetree/bindings/rtc/
17584 F:      drivers/rtc/
17585 F:      include/linux/platform_data/rtc-*
17586 F:      include/linux/rtc.h
17587 F:      include/linux/rtc/
17588 F:      include/uapi/linux/rtc.h
17589 F:      tools/testing/selftests/rtc/
17590
17591 REALTEK AUDIO CODECS
17592 M:      Oder Chiou <oder_chiou@realtek.com>
17593 S:      Maintained
17594 F:      include/sound/rt*.h
17595 F:      sound/soc/codecs/rt*
17596
17597 REALTEK OTTO WATCHDOG
17598 M:      Sander Vanheule <sander@svanheule.net>
17599 L:      linux-watchdog@vger.kernel.org
17600 S:      Maintained
17601 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17602 F:      drivers/watchdog/realtek_otto_wdt.c
17603
17604 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17605 M:      Linus Walleij <linus.walleij@linaro.org>
17606 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17607 S:      Maintained
17608 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17609 F:      drivers/net/dsa/realtek/*
17610
17611 REALTEK WIRELESS DRIVER (rtlwifi family)
17612 M:      Ping-Ke Shih <pkshih@realtek.com>
17613 L:      linux-wireless@vger.kernel.org
17614 S:      Maintained
17615 W:      https://wireless.wiki.kernel.org/
17616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17617 F:      drivers/net/wireless/realtek/rtlwifi/
17618
17619 REALTEK WIRELESS DRIVER (rtw88)
17620 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17621 L:      linux-wireless@vger.kernel.org
17622 S:      Maintained
17623 F:      drivers/net/wireless/realtek/rtw88/
17624
17625 REALTEK WIRELESS DRIVER (rtw89)
17626 M:      Ping-Ke Shih <pkshih@realtek.com>
17627 L:      linux-wireless@vger.kernel.org
17628 S:      Maintained
17629 F:      drivers/net/wireless/realtek/rtw89/
17630
17631 REDPINE WIRELESS DRIVER
17632 L:      linux-wireless@vger.kernel.org
17633 S:      Orphan
17634 F:      drivers/net/wireless/rsi/
17635
17636 REGISTER MAP ABSTRACTION
17637 M:      Mark Brown <broonie@kernel.org>
17638 L:      linux-kernel@vger.kernel.org
17639 S:      Supported
17640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17641 F:      Documentation/devicetree/bindings/regmap/
17642 F:      drivers/base/regmap/
17643 F:      include/linux/regmap.h
17644
17645 REISERFS FILE SYSTEM
17646 L:      reiserfs-devel@vger.kernel.org
17647 S:      Supported
17648 F:      fs/reiserfs/
17649
17650 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17651 M:      Bjorn Andersson <andersson@kernel.org>
17652 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17653 L:      linux-remoteproc@vger.kernel.org
17654 S:      Maintained
17655 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17656 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17657 F:      Documentation/devicetree/bindings/remoteproc/
17658 F:      Documentation/staging/remoteproc.rst
17659 F:      drivers/remoteproc/
17660 F:      include/linux/remoteproc.h
17661 F:      include/linux/remoteproc/
17662
17663 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17664 M:      Bjorn Andersson <andersson@kernel.org>
17665 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17666 L:      linux-remoteproc@vger.kernel.org
17667 S:      Maintained
17668 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17669 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17670 F:      Documentation/staging/rpmsg.rst
17671 F:      drivers/rpmsg/
17672 F:      include/linux/rpmsg.h
17673 F:      include/linux/rpmsg/
17674 F:      include/uapi/linux/rpmsg.h
17675 F:      samples/rpmsg/
17676
17677 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17678 M:      Stephan Gerhold <stephan@gerhold.net>
17679 L:      netdev@vger.kernel.org
17680 L:      linux-remoteproc@vger.kernel.org
17681 S:      Maintained
17682 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17683
17684 RENESAS CLOCK DRIVERS
17685 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17686 L:      linux-renesas-soc@vger.kernel.org
17687 S:      Supported
17688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17689 F:      Documentation/devicetree/bindings/clock/renesas,*
17690 F:      drivers/clk/renesas/
17691
17692 RENESAS EMEV2 I2C DRIVER
17693 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17694 L:      linux-renesas-soc@vger.kernel.org
17695 S:      Supported
17696 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17697 F:      drivers/i2c/busses/i2c-emev2.c
17698
17699 RENESAS ETHERNET DRIVERS
17700 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17701 L:      netdev@vger.kernel.org
17702 L:      linux-renesas-soc@vger.kernel.org
17703 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17704 F:      drivers/net/ethernet/renesas/
17705 F:      include/linux/sh_eth.h
17706
17707 RENESAS IDT821034 ASoC CODEC
17708 M:      Herve Codina <herve.codina@bootlin.com>
17709 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17710 S:      Maintained
17711 F:      Documentation/devicetree/bindings/sound/renesas,idt821034.yaml
17712 F:      sound/soc/codecs/idt821034.c
17713
17714 RENESAS R-CAR GYROADC DRIVER
17715 M:      Marek Vasut <marek.vasut@gmail.com>
17716 L:      linux-iio@vger.kernel.org
17717 S:      Supported
17718 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17719 F:      drivers/iio/adc/rcar-gyroadc.c
17720
17721 RENESAS R-CAR I2C DRIVERS
17722 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17723 L:      linux-renesas-soc@vger.kernel.org
17724 S:      Supported
17725 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17726 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17727 F:      drivers/i2c/busses/i2c-rcar.c
17728 F:      drivers/i2c/busses/i2c-sh_mobile.c
17729
17730 RENESAS R-CAR SATA DRIVER
17731 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17732 S:      Supported
17733 L:      linux-ide@vger.kernel.org
17734 L:      linux-renesas-soc@vger.kernel.org
17735 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17736 F:      drivers/ata/sata_rcar.c
17737
17738 RENESAS R-CAR THERMAL DRIVERS
17739 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17740 L:      linux-renesas-soc@vger.kernel.org
17741 S:      Supported
17742 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17743 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17744 F:      drivers/thermal/rcar_gen3_thermal.c
17745 F:      drivers/thermal/rcar_thermal.c
17746
17747 RENESAS RIIC DRIVER
17748 M:      Chris Brandt <chris.brandt@renesas.com>
17749 L:      linux-renesas-soc@vger.kernel.org
17750 S:      Supported
17751 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17752 F:      drivers/i2c/busses/i2c-riic.c
17753
17754 RENESAS USB PHY DRIVER
17755 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17756 L:      linux-renesas-soc@vger.kernel.org
17757 S:      Maintained
17758 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17759
17760 RENESAS RZ/G2L A/D DRIVER
17761 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17762 L:      linux-iio@vger.kernel.org
17763 L:      linux-renesas-soc@vger.kernel.org
17764 S:      Supported
17765 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17766 F:      drivers/iio/adc/rzg2l_adc.c
17767
17768 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17769 M:      Clément Léger <clement.leger@bootlin.com>
17770 L:      linux-renesas-soc@vger.kernel.org
17771 L:      netdev@vger.kernel.org
17772 S:      Maintained
17773 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17774 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17775 F:      drivers/net/dsa/rzn1_a5psw*
17776 F:      drivers/net/pcs/pcs-rzn1-miic.c
17777 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17778 F:      include/linux/pcs-rzn1-miic.h
17779 F:      net/dsa/tag_rzn1_a5psw.c
17780
17781 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17782 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17783 L:      linux-rtc@vger.kernel.org
17784 L:      linux-renesas-soc@vger.kernel.org
17785 S:      Maintained
17786 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17787 F:      drivers/rtc/rtc-rzn1.c
17788
17789 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17790 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17791 L:      linux-mtd@lists.infradead.org
17792 L:      linux-renesas-soc@vger.kernel.org
17793 S:      Maintained
17794 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17795 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17796
17797 RENESAS VERSACLOCK 7 CLOCK DRIVER
17798 M:      Alex Helms <alexander.helms.jy@renesas.com>
17799 S:      Maintained
17800 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17801 F:      drivers/clk/clk-versaclock7.c
17802
17803 RESET CONTROLLER FRAMEWORK
17804 M:      Philipp Zabel <p.zabel@pengutronix.de>
17805 S:      Maintained
17806 T:      git git://git.pengutronix.de/git/pza/linux
17807 F:      Documentation/devicetree/bindings/reset/
17808 F:      Documentation/driver-api/reset.rst
17809 F:      drivers/reset/
17810 F:      include/dt-bindings/reset/
17811 F:      include/linux/reset-controller.h
17812 F:      include/linux/reset.h
17813 F:      include/linux/reset/
17814 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17815
17816 RESTARTABLE SEQUENCES SUPPORT
17817 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17818 M:      Peter Zijlstra <peterz@infradead.org>
17819 M:      "Paul E. McKenney" <paulmck@kernel.org>
17820 M:      Boqun Feng <boqun.feng@gmail.com>
17821 L:      linux-kernel@vger.kernel.org
17822 S:      Supported
17823 F:      include/trace/events/rseq.h
17824 F:      include/uapi/linux/rseq.h
17825 F:      kernel/rseq.c
17826 F:      tools/testing/selftests/rseq/
17827
17828 RFKILL
17829 M:      Johannes Berg <johannes@sipsolutions.net>
17830 L:      linux-wireless@vger.kernel.org
17831 S:      Maintained
17832 W:      https://wireless.wiki.kernel.org/
17833 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17836 F:      Documentation/ABI/stable/sysfs-class-rfkill
17837 F:      Documentation/driver-api/rfkill.rst
17838 F:      include/linux/rfkill.h
17839 F:      include/uapi/linux/rfkill.h
17840 F:      net/rfkill/
17841
17842 RHASHTABLE
17843 M:      Thomas Graf <tgraf@suug.ch>
17844 M:      Herbert Xu <herbert@gondor.apana.org.au>
17845 L:      netdev@vger.kernel.org
17846 S:      Maintained
17847 F:      include/linux/rhashtable-types.h
17848 F:      include/linux/rhashtable.h
17849 F:      lib/rhashtable.c
17850 F:      lib/test_rhashtable.c
17851
17852 RICOH R5C592 MEMORYSTICK DRIVER
17853 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17854 S:      Maintained
17855 F:      drivers/memstick/host/r592.*
17856
17857 RICOH SMARTMEDIA/XD DRIVER
17858 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17859 S:      Maintained
17860 F:      drivers/mtd/nand/raw/r852.c
17861 F:      drivers/mtd/nand/raw/r852.h
17862
17863 RISC-V PMU DRIVERS
17864 M:      Atish Patra <atishp@atishpatra.org>
17865 R:      Anup Patel <anup@brainfault.org>
17866 L:      linux-riscv@lists.infradead.org
17867 S:      Supported
17868 F:      drivers/perf/riscv_pmu.c
17869 F:      drivers/perf/riscv_pmu_legacy.c
17870 F:      drivers/perf/riscv_pmu_sbi.c
17871
17872 RISC-V ARCHITECTURE
17873 M:      Paul Walmsley <paul.walmsley@sifive.com>
17874 M:      Palmer Dabbelt <palmer@dabbelt.com>
17875 M:      Albert Ou <aou@eecs.berkeley.edu>
17876 L:      linux-riscv@lists.infradead.org
17877 S:      Supported
17878 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17879 C:      irc://irc.libera.chat/riscv
17880 P:      Documentation/riscv/patch-acceptance.rst
17881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17882 F:      arch/riscv/
17883 N:      riscv
17884 K:      riscv
17885
17886 RISC-V MICROCHIP FPGA SUPPORT
17887 M:      Conor Dooley <conor.dooley@microchip.com>
17888 M:      Daire McNamara <daire.mcnamara@microchip.com>
17889 L:      linux-riscv@lists.infradead.org
17890 S:      Supported
17891 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
17892 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
17893 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
17894 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
17895 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
17896 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
17897 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
17898 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
17899 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
17900 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
17901 F:      arch/riscv/boot/dts/microchip/
17902 F:      drivers/char/hw_random/mpfs-rng.c
17903 F:      drivers/clk/microchip/clk-mpfs.c
17904 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
17905 F:      drivers/mailbox/mailbox-mpfs.c
17906 F:      drivers/pci/controller/pcie-microchip-host.c
17907 F:      drivers/reset/reset-mpfs.c
17908 F:      drivers/rtc/rtc-mpfs.c
17909 F:      drivers/soc/microchip/mpfs-sys-controller.c
17910 F:      drivers/spi/spi-microchip-core-qspi.c
17911 F:      drivers/spi/spi-microchip-core.c
17912 F:      drivers/usb/musb/mpfs.c
17913 F:      include/soc/microchip/mpfs.h
17914
17915 RISC-V MISC SOC SUPPORT
17916 M:      Conor Dooley <conor@kernel.org>
17917 L:      linux-riscv@lists.infradead.org
17918 S:      Maintained
17919 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17920 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
17921 F:      Documentation/devicetree/bindings/riscv/
17922 F:      arch/riscv/boot/dts/
17923
17924 RNBD BLOCK DRIVERS
17925 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17926 M:      Jack Wang <jinpu.wang@ionos.com>
17927 L:      linux-block@vger.kernel.org
17928 S:      Maintained
17929 F:      drivers/block/rnbd/
17930
17931 ROCCAT DRIVERS
17932 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17933 S:      Maintained
17934 W:      http://sourceforge.net/projects/roccat/
17935 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17936 F:      drivers/hid/hid-roccat*
17937 F:      include/linux/hid-roccat*
17938
17939 ROCKCHIP CRYPTO DRIVERS
17940 M:      Corentin Labbe <clabbe@baylibre.com>
17941 L:      linux-crypto@vger.kernel.org
17942 S:      Maintained
17943 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
17944 F:      drivers/crypto/rockchip/
17945
17946 ROCKCHIP I2S TDM DRIVER
17947 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17948 L:      linux-rockchip@lists.infradead.org
17949 S:      Maintained
17950 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17951 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17952
17953 ROCKCHIP ISP V1 DRIVER
17954 M:      Dafna Hirschfeld <dafna@fastmail.com>
17955 L:      linux-media@vger.kernel.org
17956 L:      linux-rockchip@lists.infradead.org
17957 S:      Maintained
17958 F:      Documentation/admin-guide/media/rkisp1.rst
17959 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17960 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17961 F:      drivers/media/platform/rockchip/rkisp1
17962 F:      include/uapi/linux/rkisp1-config.h
17963
17964 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17965 M:      Jacob Chen <jacob-chen@iotwrt.com>
17966 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17967 L:      linux-media@vger.kernel.org
17968 L:      linux-rockchip@lists.infradead.org
17969 S:      Maintained
17970 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17971 F:      drivers/media/platform/rockchip/rga/
17972
17973 ROCKCHIP VIDEO DECODER DRIVER
17974 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17975 L:      linux-media@vger.kernel.org
17976 L:      linux-rockchip@lists.infradead.org
17977 S:      Maintained
17978 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17979 F:      drivers/staging/media/rkvdec/
17980
17981 ROCKER DRIVER
17982 M:      Jiri Pirko <jiri@resnulli.us>
17983 L:      netdev@vger.kernel.org
17984 S:      Supported
17985 F:      drivers/net/ethernet/rocker/
17986
17987 ROCKETPORT EXPRESS/INFINITY DRIVER
17988 M:      Kevin Cernekee <cernekee@gmail.com>
17989 L:      linux-serial@vger.kernel.org
17990 S:      Odd Fixes
17991 F:      drivers/tty/serial/rp2.*
17992
17993 ROHM BD99954 CHARGER IC
17994 M:      Matti Vaittinen <mazziesaccount@gmail.com>
17995 S:      Supported
17996 F:      drivers/power/supply/bd99954-charger.c
17997 F:      drivers/power/supply/bd99954-charger.h
17998
17999 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
18000 M:      Tomasz Duszynski <tduszyns@gmail.com>
18001 S:      Maintained
18002 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
18003 F:      drivers/iio/light/bh1750.c
18004
18005 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
18006 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
18007 L:      linux-kernel@vger.kernel.org
18008 L:      linux-renesas-soc@vger.kernel.org
18009 S:      Supported
18010 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
18011 F:      drivers/gpio/gpio-bd9571mwv.c
18012 F:      drivers/mfd/bd9571mwv.c
18013 F:      drivers/regulator/bd9571mwv-regulator.c
18014 F:      include/linux/mfd/bd9571mwv.h
18015
18016 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
18017 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18018 S:      Supported
18019 F:      drivers/clk/clk-bd718x7.c
18020 F:      drivers/gpio/gpio-bd71815.c
18021 F:      drivers/gpio/gpio-bd71828.c
18022 F:      drivers/mfd/rohm-bd71828.c
18023 F:      drivers/mfd/rohm-bd718x7.c
18024 F:      drivers/mfd/rohm-bd9576.c
18025 F:      drivers/regulator/bd71815-regulator.c
18026 F:      drivers/regulator/bd71828-regulator.c
18027 F:      drivers/regulator/bd718x7-regulator.c
18028 F:      drivers/regulator/bd9576-regulator.c
18029 F:      drivers/regulator/rohm-regulator.c
18030 F:      drivers/rtc/rtc-bd70528.c
18031 F:      drivers/watchdog/bd9576_wdt.c
18032 F:      include/linux/mfd/rohm-bd71815.h
18033 F:      include/linux/mfd/rohm-bd71828.h
18034 F:      include/linux/mfd/rohm-bd718x7.h
18035 F:      include/linux/mfd/rohm-bd957x.h
18036 F:      include/linux/mfd/rohm-generic.h
18037 F:      include/linux/mfd/rohm-shared.h
18038
18039 ROSE NETWORK LAYER
18040 M:      Ralf Baechle <ralf@linux-mips.org>
18041 L:      linux-hams@vger.kernel.org
18042 S:      Maintained
18043 W:      http://www.linux-ax25.org/
18044 F:      include/net/rose.h
18045 F:      include/uapi/linux/rose.h
18046 F:      net/rose/
18047
18048 ROTATION DRIVER FOR ALLWINNER A83T
18049 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
18050 L:      linux-media@vger.kernel.org
18051 S:      Maintained
18052 T:      git git://linuxtv.org/media_tree.git
18053 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18054 F:      drivers/media/platform/sunxi/sun8i-rotate/
18055
18056 RPMSG TTY DRIVER
18057 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18058 L:      linux-remoteproc@vger.kernel.org
18059 S:      Maintained
18060 F:      drivers/tty/rpmsg_tty.c
18061
18062 RTL2830 MEDIA DRIVER
18063 M:      Antti Palosaari <crope@iki.fi>
18064 L:      linux-media@vger.kernel.org
18065 S:      Maintained
18066 W:      https://linuxtv.org
18067 W:      http://palosaari.fi/linux/
18068 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18069 T:      git git://linuxtv.org/anttip/media_tree.git
18070 F:      drivers/media/dvb-frontends/rtl2830*
18071
18072 RTL2832 MEDIA DRIVER
18073 M:      Antti Palosaari <crope@iki.fi>
18074 L:      linux-media@vger.kernel.org
18075 S:      Maintained
18076 W:      https://linuxtv.org
18077 W:      http://palosaari.fi/linux/
18078 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18079 T:      git git://linuxtv.org/anttip/media_tree.git
18080 F:      drivers/media/dvb-frontends/rtl2832*
18081
18082 RTL2832_SDR MEDIA DRIVER
18083 M:      Antti Palosaari <crope@iki.fi>
18084 L:      linux-media@vger.kernel.org
18085 S:      Maintained
18086 W:      https://linuxtv.org
18087 W:      http://palosaari.fi/linux/
18088 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18089 T:      git git://linuxtv.org/anttip/media_tree.git
18090 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18091
18092 RTL8180 WIRELESS DRIVER
18093 L:      linux-wireless@vger.kernel.org
18094 S:      Orphan
18095 W:      https://wireless.wiki.kernel.org/
18096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18097 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18098
18099 RTL8187 WIRELESS DRIVER
18100 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18101 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
18102 M:      Larry Finger <Larry.Finger@lwfinger.net>
18103 L:      linux-wireless@vger.kernel.org
18104 S:      Maintained
18105 W:      https://wireless.wiki.kernel.org/
18106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18107 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18108
18109 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18110 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
18111 L:      linux-wireless@vger.kernel.org
18112 S:      Maintained
18113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18114 F:      drivers/net/wireless/realtek/rtl8xxxu/
18115
18116 RTRS TRANSPORT DRIVERS
18117 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18118 M:      Jack Wang <jinpu.wang@ionos.com>
18119 L:      linux-rdma@vger.kernel.org
18120 S:      Maintained
18121 F:      drivers/infiniband/ulp/rtrs/
18122
18123 RUNTIME VERIFICATION (RV)
18124 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
18125 M:      Steven Rostedt <rostedt@goodmis.org>
18126 L:      linux-trace-devel@vger.kernel.org
18127 S:      Maintained
18128 F:      Documentation/trace/rv/
18129 F:      include/linux/rv.h
18130 F:      include/rv/
18131 F:      kernel/trace/rv/
18132 F:      tools/verification/
18133
18134 RUST
18135 M:      Miguel Ojeda <ojeda@kernel.org>
18136 M:      Alex Gaynor <alex.gaynor@gmail.com>
18137 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
18138 R:      Boqun Feng <boqun.feng@gmail.com>
18139 R:      Gary Guo <gary@garyguo.net>
18140 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
18141 L:      rust-for-linux@vger.kernel.org
18142 S:      Supported
18143 W:      https://github.com/Rust-for-Linux/linux
18144 B:      https://github.com/Rust-for-Linux/linux/issues
18145 C:      zulip://rust-for-linux.zulipchat.com
18146 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18147 F:      Documentation/rust/
18148 F:      rust/
18149 F:      samples/rust/
18150 F:      scripts/*rust*
18151 K:      \b(?i:rust)\b
18152
18153 RXRPC SOCKETS (AF_RXRPC)
18154 M:      David Howells <dhowells@redhat.com>
18155 M:      Marc Dionne <marc.dionne@auristor.com>
18156 L:      linux-afs@lists.infradead.org
18157 S:      Supported
18158 W:      https://www.infradead.org/~dhowells/kafs/
18159 F:      Documentation/networking/rxrpc.rst
18160 F:      include/keys/rxrpc-type.h
18161 F:      include/net/af_rxrpc.h
18162 F:      include/trace/events/rxrpc.h
18163 F:      include/uapi/linux/rxrpc.h
18164 F:      net/rxrpc/
18165
18166 S3 SAVAGE FRAMEBUFFER DRIVER
18167 M:      Antonino Daplas <adaplas@gmail.com>
18168 L:      linux-fbdev@vger.kernel.org
18169 S:      Maintained
18170 F:      drivers/video/fbdev/savage/
18171
18172 S390 ARCHITECTURE
18173 M:      Heiko Carstens <hca@linux.ibm.com>
18174 M:      Vasily Gorbik <gor@linux.ibm.com>
18175 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18176 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
18177 R:      Sven Schnelle <svens@linux.ibm.com>
18178 L:      linux-s390@vger.kernel.org
18179 S:      Supported
18180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18181 F:      Documentation/driver-api/s390-drivers.rst
18182 F:      Documentation/s390/
18183 F:      arch/s390/
18184 F:      drivers/s390/
18185 F:      drivers/watchdog/diag288_wdt.c
18186
18187 S390 COMMON I/O LAYER
18188 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18189 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
18190 L:      linux-s390@vger.kernel.org
18191 S:      Supported
18192 F:      drivers/s390/cio/
18193
18194 S390 DASD DRIVER
18195 M:      Stefan Haberland <sth@linux.ibm.com>
18196 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
18197 L:      linux-s390@vger.kernel.org
18198 S:      Supported
18199 F:      block/partitions/ibm.c
18200 F:      drivers/s390/block/dasd*
18201 F:      include/linux/dasd_mod.h
18202
18203 S390 IOMMU (PCI)
18204 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18205 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18206 L:      linux-s390@vger.kernel.org
18207 S:      Supported
18208 F:      drivers/iommu/s390-iommu.c
18209
18210 S390 IUCV NETWORK LAYER
18211 M:      Alexandra Winter <wintera@linux.ibm.com>
18212 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18213 L:      linux-s390@vger.kernel.org
18214 L:      netdev@vger.kernel.org
18215 S:      Supported
18216 F:      drivers/s390/net/*iucv*
18217 F:      include/net/iucv/
18218 F:      net/iucv/
18219
18220 S390 NETWORK DRIVERS
18221 M:      Alexandra Winter <wintera@linux.ibm.com>
18222 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18223 L:      linux-s390@vger.kernel.org
18224 L:      netdev@vger.kernel.org
18225 S:      Supported
18226 F:      drivers/s390/net/
18227
18228 S390 MM
18229 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18230 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18231 L:      linux-s390@vger.kernel.org
18232 S:      Supported
18233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18234 F:      arch/s390/include/asm/pgtable.h
18235 F:      arch/s390/mm
18236
18237 S390 PCI SUBSYSTEM
18238 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18239 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18240 L:      linux-s390@vger.kernel.org
18241 S:      Supported
18242 F:      arch/s390/pci/
18243 F:      drivers/pci/hotplug/s390_pci_hpc.c
18244 F:      Documentation/s390/pci.rst
18245
18246 S390 SCM DRIVER
18247 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18248 L:      linux-s390@vger.kernel.org
18249 S:      Supported
18250 F:      drivers/s390/block/scm*
18251 F:      drivers/s390/cio/scm.c
18252
18253 S390 VFIO AP DRIVER
18254 M:      Tony Krowiak <akrowiak@linux.ibm.com>
18255 M:      Halil Pasic <pasic@linux.ibm.com>
18256 M:      Jason Herne <jjherne@linux.ibm.com>
18257 L:      linux-s390@vger.kernel.org
18258 S:      Supported
18259 F:      Documentation/s390/vfio-ap*
18260 F:      drivers/s390/crypto/vfio_ap*
18261
18262 S390 VFIO-CCW DRIVER
18263 M:      Eric Farman <farman@linux.ibm.com>
18264 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18265 R:      Halil Pasic <pasic@linux.ibm.com>
18266 L:      linux-s390@vger.kernel.org
18267 L:      kvm@vger.kernel.org
18268 S:      Supported
18269 F:      Documentation/s390/vfio-ccw.rst
18270 F:      drivers/s390/cio/vfio_ccw*
18271 F:      include/uapi/linux/vfio_ccw.h
18272
18273 S390 VFIO-PCI DRIVER
18274 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18275 M:      Eric Farman <farman@linux.ibm.com>
18276 L:      linux-s390@vger.kernel.org
18277 L:      kvm@vger.kernel.org
18278 S:      Supported
18279 F:      arch/s390/kvm/pci*
18280 F:      drivers/vfio/pci/vfio_pci_zdev.c
18281 F:      include/uapi/linux/vfio_zdev.h
18282
18283 S390 ZCRYPT DRIVER
18284 M:      Harald Freudenberger <freude@linux.ibm.com>
18285 L:      linux-s390@vger.kernel.org
18286 S:      Supported
18287 F:      drivers/s390/crypto/
18288
18289 S390 ZFCP DRIVER
18290 M:      Steffen Maier <maier@linux.ibm.com>
18291 M:      Benjamin Block <bblock@linux.ibm.com>
18292 L:      linux-s390@vger.kernel.org
18293 S:      Supported
18294 F:      drivers/s390/scsi/zfcp_*
18295
18296 SAA6588 RDS RECEIVER DRIVER
18297 M:      Hans Verkuil <hverkuil@xs4all.nl>
18298 L:      linux-media@vger.kernel.org
18299 S:      Odd Fixes
18300 W:      https://linuxtv.org
18301 T:      git git://linuxtv.org/media_tree.git
18302 F:      drivers/media/i2c/saa6588*
18303
18304 SAA7134 VIDEO4LINUX DRIVER
18305 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18306 L:      linux-media@vger.kernel.org
18307 S:      Odd fixes
18308 W:      https://linuxtv.org
18309 T:      git git://linuxtv.org/media_tree.git
18310 F:      Documentation/driver-api/media/drivers/saa7134*
18311 F:      drivers/media/pci/saa7134/
18312
18313 SAA7146 VIDEO4LINUX-2 DRIVER
18314 M:      Hans Verkuil <hverkuil@xs4all.nl>
18315 L:      linux-media@vger.kernel.org
18316 S:      Maintained
18317 T:      git git://linuxtv.org/media_tree.git
18318 F:      drivers/staging/media/deprecated/saa7146/
18319
18320 SAFESETID SECURITY MODULE
18321 M:      Micah Morton <mortonm@chromium.org>
18322 S:      Supported
18323 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18324 F:      security/safesetid/
18325
18326 SAMSUNG AUDIO (ASoC) DRIVERS
18327 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18328 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18329 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18330 S:      Supported
18331 B:      mailto:linux-samsung-soc@vger.kernel.org
18332 F:      Documentation/devicetree/bindings/sound/samsung*
18333 F:      sound/soc/samsung/
18334
18335 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18336 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18337 L:      linux-crypto@vger.kernel.org
18338 L:      linux-samsung-soc@vger.kernel.org
18339 S:      Maintained
18340 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18341 F:      drivers/crypto/exynos-rng.c
18342
18343 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18344 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18345 L:      linux-samsung-soc@vger.kernel.org
18346 S:      Maintained
18347 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18348 F:      drivers/char/hw_random/exynos-trng.c
18349
18350 SAMSUNG FRAMEBUFFER DRIVER
18351 M:      Jingoo Han <jingoohan1@gmail.com>
18352 L:      linux-fbdev@vger.kernel.org
18353 S:      Maintained
18354 F:      drivers/video/fbdev/s3c-fb.c
18355
18356 SAMSUNG INTERCONNECT DRIVERS
18357 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18358 M:      Artur Świgoń <a.swigon@samsung.com>
18359 L:      linux-pm@vger.kernel.org
18360 L:      linux-samsung-soc@vger.kernel.org
18361 S:      Supported
18362 F:      drivers/interconnect/samsung/
18363
18364 SAMSUNG LAPTOP DRIVER
18365 M:      Corentin Chary <corentin.chary@gmail.com>
18366 L:      platform-driver-x86@vger.kernel.org
18367 S:      Maintained
18368 F:      drivers/platform/x86/samsung-laptop.c
18369
18370 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18371 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18372 L:      linux-kernel@vger.kernel.org
18373 L:      linux-samsung-soc@vger.kernel.org
18374 S:      Supported
18375 B:      mailto:linux-samsung-soc@vger.kernel.org
18376 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18377 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18378 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18379 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18380 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18381 F:      drivers/clk/clk-s2mps11.c
18382 F:      drivers/mfd/sec*.c
18383 F:      drivers/regulator/s2m*.c
18384 F:      drivers/regulator/s5m*.c
18385 F:      drivers/rtc/rtc-s5m.c
18386 F:      include/linux/mfd/samsung/
18387
18388 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18389 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18390 L:      linux-media@vger.kernel.org
18391 L:      linux-samsung-soc@vger.kernel.org
18392 S:      Maintained
18393 F:      drivers/media/platform/samsung/s3c-camif/
18394 F:      include/media/drv-intf/s3c_camif.h
18395
18396 SAMSUNG S3FWRN5 NFC DRIVER
18397 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18398 L:      linux-nfc@lists.01.org (subscribers-only)
18399 S:      Maintained
18400 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18401 F:      drivers/nfc/s3fwrn5
18402
18403 SAMSUNG S5C73M3 CAMERA DRIVER
18404 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18405 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18406 L:      linux-media@vger.kernel.org
18407 S:      Supported
18408 F:      drivers/media/i2c/s5c73m3/*
18409
18410 SAMSUNG S5K5BAF CAMERA DRIVER
18411 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18412 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18413 L:      linux-media@vger.kernel.org
18414 S:      Supported
18415 F:      drivers/media/i2c/s5k5baf.c
18416
18417 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18418 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18419 M:      Vladimir Zapolskiy <vz@mleia.com>
18420 L:      linux-crypto@vger.kernel.org
18421 L:      linux-samsung-soc@vger.kernel.org
18422 S:      Maintained
18423 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18424 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18425 F:      drivers/crypto/s5p-sss.c
18426
18427 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18428 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18429 L:      linux-media@vger.kernel.org
18430 S:      Supported
18431 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18432 F:      drivers/media/platform/samsung/exynos4-is/
18433
18434 SAMSUNG SOC CLOCK DRIVERS
18435 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18436 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18437 M:      Tomasz Figa <tomasz.figa@gmail.com>
18438 M:      Chanwoo Choi <cw00.choi@samsung.com>
18439 R:      Alim Akhtar <alim.akhtar@samsung.com>
18440 L:      linux-samsung-soc@vger.kernel.org
18441 S:      Supported
18442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18444 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18445 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18446 F:      drivers/clk/samsung/
18447 F:      include/dt-bindings/clock/exynos*.h
18448 F:      include/dt-bindings/clock/s5p*.h
18449 F:      include/dt-bindings/clock/samsung,*.h
18450 F:      include/linux/clk/samsung.h
18451
18452 SAMSUNG SPI DRIVERS
18453 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18454 M:      Andi Shyti <andi@etezian.org>
18455 L:      linux-spi@vger.kernel.org
18456 L:      linux-samsung-soc@vger.kernel.org
18457 S:      Maintained
18458 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18459 F:      drivers/spi/spi-s3c*
18460 F:      include/linux/platform_data/spi-s3c64xx.h
18461
18462 SAMSUNG SXGBE DRIVERS
18463 M:      Byungho An <bh74.an@samsung.com>
18464 L:      netdev@vger.kernel.org
18465 S:      Supported
18466 F:      drivers/net/ethernet/samsung/sxgbe/
18467
18468 SAMSUNG THERMAL DRIVER
18469 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18470 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18471 L:      linux-pm@vger.kernel.org
18472 L:      linux-samsung-soc@vger.kernel.org
18473 S:      Maintained
18474 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18475 F:      drivers/thermal/samsung/
18476
18477 SAMSUNG USB2 PHY DRIVER
18478 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18479 L:      linux-kernel@vger.kernel.org
18480 S:      Supported
18481 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18482 F:      Documentation/driver-api/phy/samsung-usb2.rst
18483 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18484 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18485 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18486 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18487 F:      drivers/phy/samsung/phy-samsung-usb2.c
18488 F:      drivers/phy/samsung/phy-samsung-usb2.h
18489
18490 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18491 M:      Paul Barker <paul.barker@sancloud.com>
18492 R:      Marc Murphy <marc.murphy@sancloud.com>
18493 S:      Supported
18494 F:      arch/arm/boot/dts/am335x-sancloud*
18495
18496 SC1200 WDT DRIVER
18497 M:      Zwane Mwaikambo <zwanem@gmail.com>
18498 S:      Maintained
18499 F:      drivers/watchdog/sc1200wdt.c
18500
18501 SCHEDULER
18502 M:      Ingo Molnar <mingo@redhat.com>
18503 M:      Peter Zijlstra <peterz@infradead.org>
18504 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18505 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18506 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18507 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18508 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18509 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18510 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18511 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18512 L:      linux-kernel@vger.kernel.org
18513 S:      Maintained
18514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18515 F:      include/linux/preempt.h
18516 F:      include/linux/sched.h
18517 F:      include/linux/wait.h
18518 F:      include/uapi/linux/sched.h
18519 F:      kernel/sched/
18520
18521 SCR24X CHIP CARD INTERFACE DRIVER
18522 M:      Lubomir Rintel <lkundrak@v3.sk>
18523 S:      Supported
18524 F:      drivers/char/pcmcia/scr24x_cs.c
18525
18526 SCSI RDMA PROTOCOL (SRP) INITIATOR
18527 M:      Bart Van Assche <bvanassche@acm.org>
18528 L:      linux-rdma@vger.kernel.org
18529 S:      Supported
18530 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18531 F:      drivers/infiniband/ulp/srp/
18532 F:      include/scsi/srp.h
18533
18534 SCSI RDMA PROTOCOL (SRP) TARGET
18535 M:      Bart Van Assche <bvanassche@acm.org>
18536 L:      linux-rdma@vger.kernel.org
18537 L:      target-devel@vger.kernel.org
18538 S:      Supported
18539 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18540 F:      drivers/infiniband/ulp/srpt/
18541
18542 SCSI SG DRIVER
18543 M:      Doug Gilbert <dgilbert@interlog.com>
18544 L:      linux-scsi@vger.kernel.org
18545 S:      Maintained
18546 W:      http://sg.danny.cz/sg
18547 F:      Documentation/scsi/scsi-generic.rst
18548 F:      drivers/scsi/sg.c
18549 F:      include/scsi/sg.h
18550
18551 SCSI SUBSYSTEM
18552 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18553 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18554 L:      linux-scsi@vger.kernel.org
18555 S:      Maintained
18556 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18559 F:      Documentation/devicetree/bindings/scsi/
18560 F:      drivers/scsi/
18561 F:      drivers/ufs/
18562 F:      include/scsi/
18563
18564 SCSI TAPE DRIVER
18565 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18566 L:      linux-scsi@vger.kernel.org
18567 S:      Maintained
18568 F:      Documentation/scsi/st.rst
18569 F:      drivers/scsi/st.*
18570 F:      drivers/scsi/st_*.h
18571
18572 SCSI TARGET CORE USER DRIVER
18573 M:      Bodo Stroesser <bostroesser@gmail.com>
18574 L:      linux-scsi@vger.kernel.org
18575 L:      target-devel@vger.kernel.org
18576 S:      Supported
18577 F:      Documentation/target/tcmu-design.rst
18578 F:      drivers/target/target_core_user.c
18579 F:      include/uapi/linux/target_core_user.h
18580
18581 SCSI TARGET SUBSYSTEM
18582 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18583 L:      linux-scsi@vger.kernel.org
18584 L:      target-devel@vger.kernel.org
18585 S:      Supported
18586 W:      http://www.linux-iscsi.org
18587 Q:      https://patchwork.kernel.org/project/target-devel/list/
18588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18589 F:      Documentation/target/
18590 F:      drivers/target/
18591 F:      include/target/
18592
18593 SCTP PROTOCOL
18594 M:      Neil Horman <nhorman@tuxdriver.com>
18595 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18596 M:      Xin Long <lucien.xin@gmail.com>
18597 L:      linux-sctp@vger.kernel.org
18598 S:      Maintained
18599 W:      http://lksctp.sourceforge.net
18600 F:      Documentation/networking/sctp.rst
18601 F:      include/linux/sctp.h
18602 F:      include/net/sctp/
18603 F:      include/uapi/linux/sctp.h
18604 F:      net/sctp/
18605
18606 SCx200 CPU SUPPORT
18607 M:      Jim Cromie <jim.cromie@gmail.com>
18608 S:      Odd Fixes
18609 F:      Documentation/i2c/busses/scx200_acb.rst
18610 F:      arch/x86/platform/scx200/
18611 F:      drivers/i2c/busses/scx200*
18612 F:      drivers/mtd/maps/scx200_docflash.c
18613 F:      drivers/watchdog/scx200_wdt.c
18614 F:      include/linux/scx200.h
18615
18616 SCx200 GPIO DRIVER
18617 M:      Jim Cromie <jim.cromie@gmail.com>
18618 S:      Maintained
18619 F:      drivers/char/scx200_gpio.c
18620 F:      include/linux/scx200_gpio.h
18621
18622 SCx200 HRT CLOCKSOURCE DRIVER
18623 M:      Jim Cromie <jim.cromie@gmail.com>
18624 S:      Maintained
18625 F:      drivers/clocksource/scx200_hrt.c
18626
18627 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18628 M:      Sascha Sommer <saschasommer@freenet.de>
18629 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18630 S:      Maintained
18631 F:      drivers/mmc/host/sdricoh_cs.c
18632
18633 SECO BOARDS CEC DRIVER
18634 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18635 S:      Maintained
18636 F:      drivers/media/cec/platform/seco/seco-cec.c
18637 F:      drivers/media/cec/platform/seco/seco-cec.h
18638
18639 SECURE COMPUTING
18640 M:      Kees Cook <keescook@chromium.org>
18641 R:      Andy Lutomirski <luto@amacapital.net>
18642 R:      Will Drewry <wad@chromium.org>
18643 S:      Supported
18644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18645 F:      Documentation/userspace-api/seccomp_filter.rst
18646 F:      include/linux/seccomp.h
18647 F:      include/uapi/linux/seccomp.h
18648 F:      kernel/seccomp.c
18649 F:      tools/testing/selftests/kselftest_harness.h
18650 F:      tools/testing/selftests/seccomp/*
18651 K:      \bsecure_computing
18652 K:      \bTIF_SECCOMP\b
18653
18654 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18655 M:      Kamal Dasu <kdasu.kdev@gmail.com>
18656 M:      Al Cooper <alcooperx@gmail.com>
18657 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18658 L:      linux-mmc@vger.kernel.org
18659 S:      Maintained
18660 F:      drivers/mmc/host/sdhci-brcmstb*
18661
18662 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18663 M:      Adrian Hunter <adrian.hunter@intel.com>
18664 L:      linux-mmc@vger.kernel.org
18665 S:      Supported
18666 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18667 F:      drivers/mmc/host/sdhci*
18668
18669 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18670 M:      Eugen Hristev <eugen.hristev@microchip.com>
18671 L:      linux-mmc@vger.kernel.org
18672 S:      Supported
18673 F:      drivers/mmc/host/sdhci-of-at91.c
18674
18675 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18676 M:      Ben Dooks <ben-linux@fluff.org>
18677 M:      Jaehoon Chung <jh80.chung@samsung.com>
18678 L:      linux-mmc@vger.kernel.org
18679 S:      Maintained
18680 F:      drivers/mmc/host/sdhci-s3c*
18681
18682 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18683 M:      Viresh Kumar <vireshk@kernel.org>
18684 L:      linux-mmc@vger.kernel.org
18685 S:      Maintained
18686 F:      drivers/mmc/host/sdhci-spear.c
18687
18688 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18689 M:      Vignesh Raghavendra <vigneshr@ti.com>
18690 L:      linux-mmc@vger.kernel.org
18691 S:      Maintained
18692 F:      drivers/mmc/host/sdhci-omap.c
18693
18694 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18695 M:      Haibo Chen <haibo.chen@nxp.com>
18696 L:      linux-imx@nxp.com
18697 L:      linux-mmc@vger.kernel.org
18698 S:      Maintained
18699 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18700
18701 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18702 M:      Jonathan Derrick <jonathan.derrick@linux.dev>
18703 L:      linux-block@vger.kernel.org
18704 S:      Supported
18705 F:      block/opal_proto.h
18706 F:      block/sed*
18707 F:      include/linux/sed*
18708 F:      include/uapi/linux/sed*
18709
18710 SECURITY CONTACT
18711 M:      Security Officers <security@kernel.org>
18712 S:      Supported
18713 F:      Documentation/admin-guide/security-bugs.rst
18714
18715 SECURITY SUBSYSTEM
18716 M:      Paul Moore <paul@paul-moore.com>
18717 M:      James Morris <jmorris@namei.org>
18718 M:      "Serge E. Hallyn" <serge@hallyn.com>
18719 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18720 S:      Supported
18721 W:      http://kernsec.org/
18722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18723 F:      security/
18724 X:      security/selinux/
18725
18726 SELINUX SECURITY MODULE
18727 M:      Paul Moore <paul@paul-moore.com>
18728 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18729 M:      Eric Paris <eparis@parisplace.org>
18730 L:      selinux@vger.kernel.org
18731 S:      Supported
18732 W:      https://selinuxproject.org
18733 W:      https://github.com/SELinuxProject
18734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18735 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18736 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18737 F:      Documentation/admin-guide/LSM/SELinux.rst
18738 F:      include/trace/events/avc.h
18739 F:      include/uapi/linux/selinux_netlink.h
18740 F:      scripts/selinux/
18741 F:      security/selinux/
18742
18743 SENSABLE PHANTOM
18744 M:      Jiri Slaby <jirislaby@kernel.org>
18745 S:      Maintained
18746 F:      drivers/misc/phantom.c
18747 F:      include/uapi/linux/phantom.h
18748
18749 SENSEAIR SUNRISE 006-0-0007
18750 M:      Jacopo Mondi <jacopo@jmondi.org>
18751 S:      Maintained
18752 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18753 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18754 F:      drivers/iio/chemical/sunrise_co2.c
18755
18756 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18757 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18758 S:      Maintained
18759 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18760 F:      drivers/iio/chemical/scd30.h
18761 F:      drivers/iio/chemical/scd30_core.c
18762 F:      drivers/iio/chemical/scd30_i2c.c
18763 F:      drivers/iio/chemical/scd30_serial.c
18764
18765 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18766 M:      Roan van Dijk <roan@protonic.nl>
18767 S:      Maintained
18768 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18769 F:      drivers/iio/chemical/scd4x.c
18770
18771 SENSIRION SGP40 GAS SENSOR DRIVER
18772 M:      Andreas Klinger <ak@it-klinger.de>
18773 S:      Maintained
18774 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18775 F:      drivers/iio/chemical/sgp40.c
18776
18777 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18778 M:      Tomasz Duszynski <tduszyns@gmail.com>
18779 S:      Maintained
18780 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18781 F:      drivers/iio/chemical/sps30.c
18782 F:      drivers/iio/chemical/sps30_i2c.c
18783 F:      drivers/iio/chemical/sps30_serial.c
18784
18785 SERIAL DEVICE BUS
18786 M:      Rob Herring <robh@kernel.org>
18787 L:      linux-serial@vger.kernel.org
18788 S:      Maintained
18789 F:      Documentation/devicetree/bindings/serial/serial.yaml
18790 F:      drivers/tty/serdev/
18791 F:      include/linux/serdev.h
18792
18793 SERIAL DRIVERS
18794 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18795 L:      linux-serial@vger.kernel.org
18796 S:      Maintained
18797 F:      Documentation/devicetree/bindings/serial/
18798 F:      drivers/tty/serial/
18799
18800 SERIAL IR RECEIVER
18801 M:      Sean Young <sean@mess.org>
18802 L:      linux-media@vger.kernel.org
18803 S:      Maintained
18804 F:      drivers/media/rc/serial_ir.c
18805
18806 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18807 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18808 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18809 S:      Maintained
18810 F:      Documentation/devicetree/bindings/slimbus/
18811 F:      drivers/slimbus/
18812 F:      include/linux/slimbus.h
18813
18814 SFC NETWORK DRIVER
18815 M:      Edward Cree <ecree.xilinx@gmail.com>
18816 M:      Martin Habets <habetsm.xilinx@gmail.com>
18817 L:      netdev@vger.kernel.org
18818 S:      Supported
18819 F:      Documentation/networking/devlink/sfc.rst
18820 F:      drivers/net/ethernet/sfc/
18821
18822 SFF/SFP/SFP+ MODULE SUPPORT
18823 M:      Russell King <linux@armlinux.org.uk>
18824 L:      netdev@vger.kernel.org
18825 S:      Maintained
18826 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18827 F:      drivers/net/phy/phylink.c
18828 F:      drivers/net/phy/sfp*
18829 F:      include/linux/mdio/mdio-i2c.h
18830 F:      include/linux/phylink.h
18831 F:      include/linux/sfp.h
18832 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)
18833
18834 SGI GRU DRIVER
18835 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18836 S:      Maintained
18837 F:      drivers/misc/sgi-gru/
18838
18839 SGI XP/XPC/XPNET DRIVER
18840 M:      Robin Holt <robinmholt@gmail.com>
18841 M:      Steve Wahl <steve.wahl@hpe.com>
18842 R:      Mike Travis <mike.travis@hpe.com>
18843 S:      Maintained
18844 F:      drivers/misc/sgi-xp/
18845
18846 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18847 M:      Karsten Graul <kgraul@linux.ibm.com>
18848 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18849 M:      Jan Karcher <jaka@linux.ibm.com>
18850 L:      linux-s390@vger.kernel.org
18851 S:      Supported
18852 F:      net/smc/
18853
18854 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18855 M:      Linus Walleij <linus.walleij@linaro.org>
18856 L:      linux-iio@vger.kernel.org
18857 S:      Maintained
18858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18859 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18860 F:      drivers/iio/light/gp2ap002.c
18861
18862 SHARP RJ54N1CB0C SENSOR DRIVER
18863 M:      Jacopo Mondi <jacopo@jmondi.org>
18864 L:      linux-media@vger.kernel.org
18865 S:      Odd fixes
18866 T:      git git://linuxtv.org/media_tree.git
18867 F:      drivers/media/i2c/rj54n1cb0c.c
18868 F:      include/media/i2c/rj54n1cb0c.h
18869
18870 SH_VOU V4L2 OUTPUT DRIVER
18871 L:      linux-media@vger.kernel.org
18872 S:      Orphan
18873 F:      drivers/media/platform/renesas/sh_vou.c
18874 F:      include/media/drv-intf/sh_vou.h
18875
18876 SI2157 MEDIA DRIVER
18877 M:      Antti Palosaari <crope@iki.fi>
18878 L:      linux-media@vger.kernel.org
18879 S:      Maintained
18880 W:      https://linuxtv.org
18881 W:      http://palosaari.fi/linux/
18882 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18883 T:      git git://linuxtv.org/anttip/media_tree.git
18884 F:      drivers/media/tuners/si2157*
18885
18886 SI2165 MEDIA DRIVER
18887 M:      Matthias Schwarzott <zzam@gentoo.org>
18888 L:      linux-media@vger.kernel.org
18889 S:      Maintained
18890 W:      https://linuxtv.org
18891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18892 F:      drivers/media/dvb-frontends/si2165*
18893
18894 SI2168 MEDIA DRIVER
18895 M:      Antti Palosaari <crope@iki.fi>
18896 L:      linux-media@vger.kernel.org
18897 S:      Maintained
18898 W:      https://linuxtv.org
18899 W:      http://palosaari.fi/linux/
18900 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18901 T:      git git://linuxtv.org/anttip/media_tree.git
18902 F:      drivers/media/dvb-frontends/si2168*
18903
18904 SI470X FM RADIO RECEIVER I2C DRIVER
18905 M:      Hans Verkuil <hverkuil@xs4all.nl>
18906 L:      linux-media@vger.kernel.org
18907 S:      Odd Fixes
18908 W:      https://linuxtv.org
18909 T:      git git://linuxtv.org/media_tree.git
18910 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18911
18912 SI470X FM RADIO RECEIVER USB DRIVER
18913 M:      Hans Verkuil <hverkuil@xs4all.nl>
18914 L:      linux-media@vger.kernel.org
18915 S:      Maintained
18916 W:      https://linuxtv.org
18917 T:      git git://linuxtv.org/media_tree.git
18918 F:      drivers/media/radio/si470x/radio-si470x-common.c
18919 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18920 F:      drivers/media/radio/si470x/radio-si470x.h
18921
18922 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18923 M:      Eduardo Valentin <edubezval@gmail.com>
18924 L:      linux-media@vger.kernel.org
18925 S:      Odd Fixes
18926 W:      https://linuxtv.org
18927 T:      git git://linuxtv.org/media_tree.git
18928 F:      drivers/media/radio/si4713/si4713.?
18929
18930 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18931 M:      Eduardo Valentin <edubezval@gmail.com>
18932 L:      linux-media@vger.kernel.org
18933 S:      Odd Fixes
18934 W:      https://linuxtv.org
18935 T:      git git://linuxtv.org/media_tree.git
18936 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18937
18938 SI4713 FM RADIO TRANSMITTER USB DRIVER
18939 M:      Hans Verkuil <hverkuil@xs4all.nl>
18940 L:      linux-media@vger.kernel.org
18941 S:      Maintained
18942 W:      https://linuxtv.org
18943 T:      git git://linuxtv.org/media_tree.git
18944 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18945
18946 SIANO DVB DRIVER
18947 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18948 L:      linux-media@vger.kernel.org
18949 S:      Odd fixes
18950 W:      https://linuxtv.org
18951 T:      git git://linuxtv.org/media_tree.git
18952 F:      drivers/media/common/siano/
18953 F:      drivers/media/mmc/siano/
18954 F:      drivers/media/usb/siano/
18955 F:      drivers/media/usb/siano/
18956
18957 SIFIVE DRIVERS
18958 M:      Palmer Dabbelt <palmer@dabbelt.com>
18959 M:      Paul Walmsley <paul.walmsley@sifive.com>
18960 L:      linux-riscv@lists.infradead.org
18961 S:      Supported
18962 N:      sifive
18963 K:      [^@]sifive
18964
18965 SIFIVE FU540 SYSTEM-ON-CHIP
18966 M:      Paul Walmsley <paul.walmsley@sifive.com>
18967 M:      Palmer Dabbelt <palmer@dabbelt.com>
18968 L:      linux-riscv@lists.infradead.org
18969 S:      Supported
18970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18971 N:      fu540
18972 K:      fu540
18973
18974 SIFIVE PDMA DRIVER
18975 M:      Green Wan <green.wan@sifive.com>
18976 S:      Maintained
18977 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18978 F:      drivers/dma/sf-pdma/
18979
18980 SIFIVE SOC DRIVERS
18981 M:      Conor Dooley <conor@kernel.org>
18982 L:      linux-riscv@lists.infradead.org
18983 S:      Maintained
18984 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18985 F:      drivers/soc/sifive/
18986
18987 SILEAD TOUCHSCREEN DRIVER
18988 M:      Hans de Goede <hdegoede@redhat.com>
18989 L:      linux-input@vger.kernel.org
18990 L:      platform-driver-x86@vger.kernel.org
18991 S:      Maintained
18992 F:      drivers/input/touchscreen/silead.c
18993 F:      drivers/platform/x86/touchscreen_dmi.c
18994
18995 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18996 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18997 S:      Supported
18998 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18999 F:      drivers/net/wireless/silabs/wfx/
19000
19001 SILICON MOTION SM712 FRAME BUFFER DRIVER
19002 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19003 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19004 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19005 L:      linux-fbdev@vger.kernel.org
19006 S:      Maintained
19007 F:      Documentation/fb/sm712fb.rst
19008 F:      drivers/video/fbdev/sm712*
19009
19010 SILVACO I3C DUAL-ROLE MASTER
19011 M:      Miquel Raynal <miquel.raynal@bootlin.com>
19012 M:      Conor Culhane <conor.culhane@silvaco.com>
19013 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
19014 S:      Maintained
19015 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
19016 F:      drivers/i3c/master/svc-i3c-master.c
19017
19018 SIMPLEFB FB DRIVER
19019 M:      Hans de Goede <hdegoede@redhat.com>
19020 L:      linux-fbdev@vger.kernel.org
19021 S:      Maintained
19022 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19023 F:      drivers/video/fbdev/simplefb.c
19024 F:      include/linux/platform_data/simplefb.h
19025
19026 SIMTEC EB110ATX (Chalice CATS)
19027 M:      Simtec Linux Team <linux@simtec.co.uk>
19028 S:      Supported
19029 W:      http://www.simtec.co.uk/products/EB110ATX/
19030
19031 SIOX
19032 M:      Thorsten Scherer <t.scherer@eckelmann.de>
19033 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
19034 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
19035 S:      Supported
19036 F:      drivers/gpio/gpio-siox.c
19037 F:      drivers/siox/*
19038 F:      include/trace/events/siox.h
19039
19040 SIPHASH PRF ROUTINES
19041 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19042 S:      Maintained
19043 F:      include/linux/siphash.h
19044 F:      lib/siphash.c
19045 F:      lib/siphash_kunit.c
19046
19047 SIS 190 ETHERNET DRIVER
19048 M:      Francois Romieu <romieu@fr.zoreil.com>
19049 L:      netdev@vger.kernel.org
19050 S:      Maintained
19051 F:      drivers/net/ethernet/sis/sis190.c
19052
19053 SIS 900/7016 FAST ETHERNET DRIVER
19054 M:      Daniele Venzano <venza@brownhat.org>
19055 L:      netdev@vger.kernel.org
19056 S:      Maintained
19057 W:      http://www.brownhat.org/sis900.html
19058 F:      drivers/net/ethernet/sis/sis900.*
19059
19060 SIS FRAMEBUFFER DRIVER
19061 M:      Thomas Winischhofer <thomas@winischhofer.net>
19062 S:      Maintained
19063 W:      http://www.winischhofer.net/linuxsisvga.shtml
19064 F:      Documentation/fb/sisfb.rst
19065 F:      drivers/video/fbdev/sis/
19066 F:      include/video/sisfb.h
19067
19068 SIS I2C TOUCHSCREEN DRIVER
19069 M:      Mika Penttilä <mpenttil@redhat.com>
19070 L:      linux-input@vger.kernel.org
19071 S:      Maintained
19072 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19073 F:      drivers/input/touchscreen/sis_i2c.c
19074
19075 SIS USB2VGA DRIVER
19076 M:      Thomas Winischhofer <thomas@winischhofer.net>
19077 S:      Maintained
19078 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
19079 F:      drivers/usb/misc/sisusbvga/
19080
19081 SL28 CPLD MFD DRIVER
19082 M:      Michael Walle <michael@walle.cc>
19083 S:      Maintained
19084 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19085 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19086 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19087 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19088 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19089 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19090 F:      drivers/gpio/gpio-sl28cpld.c
19091 F:      drivers/hwmon/sl28cpld-hwmon.c
19092 F:      drivers/irqchip/irq-sl28cpld.c
19093 F:      drivers/pwm/pwm-sl28cpld.c
19094 F:      drivers/watchdog/sl28cpld_wdt.c
19095
19096 SLAB ALLOCATOR
19097 M:      Christoph Lameter <cl@linux.com>
19098 M:      Pekka Enberg <penberg@kernel.org>
19099 M:      David Rientjes <rientjes@google.com>
19100 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
19101 M:      Andrew Morton <akpm@linux-foundation.org>
19102 M:      Vlastimil Babka <vbabka@suse.cz>
19103 R:      Roman Gushchin <roman.gushchin@linux.dev>
19104 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
19105 L:      linux-mm@kvack.org
19106 S:      Maintained
19107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19108 F:      include/linux/sl?b*.h
19109 F:      mm/sl?b*
19110
19111 SLCAN CAN NETWORK DRIVER
19112 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
19113 L:      linux-can@vger.kernel.org
19114 S:      Maintained
19115 F:      drivers/net/can/slcan/
19116
19117 SLEEPABLE READ-COPY UPDATE (SRCU)
19118 M:      Lai Jiangshan <jiangshanlai@gmail.com>
19119 M:      "Paul E. McKenney" <paulmck@kernel.org>
19120 M:      Josh Triplett <josh@joshtriplett.org>
19121 R:      Steven Rostedt <rostedt@goodmis.org>
19122 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19123 L:      rcu@vger.kernel.org
19124 S:      Supported
19125 W:      http://www.rdrop.com/users/paulmck/RCU/
19126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19127 F:      include/linux/srcu*.h
19128 F:      kernel/rcu/srcu*.c
19129
19130 SMACK SECURITY MODULE
19131 M:      Casey Schaufler <casey@schaufler-ca.com>
19132 L:      linux-security-module@vger.kernel.org
19133 S:      Maintained
19134 W:      http://schaufler-ca.com
19135 T:      git git://github.com/cschaufler/smack-next
19136 F:      Documentation/admin-guide/LSM/Smack.rst
19137 F:      security/smack/
19138
19139 SMC91x ETHERNET DRIVER
19140 M:      Nicolas Pitre <nico@fluxnic.net>
19141 S:      Odd Fixes
19142 F:      drivers/net/ethernet/smsc/smc91x.*
19143
19144 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19145 M:      Mark Rutland <mark.rutland@arm.com>
19146 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
19147 M:      Sudeep Holla <sudeep.holla@arm.com>
19148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19149 S:      Maintained
19150 F:      drivers/firmware/smccc/
19151 F:      include/linux/arm-smccc.h
19152
19153 SMM665 HARDWARE MONITOR DRIVER
19154 M:      Guenter Roeck <linux@roeck-us.net>
19155 L:      linux-hwmon@vger.kernel.org
19156 S:      Maintained
19157 F:      Documentation/hwmon/smm665.rst
19158 F:      drivers/hwmon/smm665.c
19159
19160 SMSC EMC2103 HARDWARE MONITOR DRIVER
19161 M:      Steve Glendinning <steve.glendinning@shawell.net>
19162 L:      linux-hwmon@vger.kernel.org
19163 S:      Maintained
19164 F:      Documentation/hwmon/emc2103.rst
19165 F:      drivers/hwmon/emc2103.c
19166
19167 SMSC SCH5627 HARDWARE MONITOR DRIVER
19168 M:      Hans de Goede <hdegoede@redhat.com>
19169 L:      linux-hwmon@vger.kernel.org
19170 S:      Supported
19171 F:      Documentation/hwmon/sch5627.rst
19172 F:      drivers/hwmon/sch5627.c
19173
19174 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19175 M:      Steve Glendinning <steve.glendinning@shawell.net>
19176 L:      linux-fbdev@vger.kernel.org
19177 S:      Maintained
19178 F:      drivers/video/fbdev/smscufx.c
19179
19180 SMSC47B397 HARDWARE MONITOR DRIVER
19181 M:      Jean Delvare <jdelvare@suse.com>
19182 L:      linux-hwmon@vger.kernel.org
19183 S:      Maintained
19184 F:      Documentation/hwmon/smsc47b397.rst
19185 F:      drivers/hwmon/smsc47b397.c
19186
19187 SMSC911x ETHERNET DRIVER
19188 M:      Steve Glendinning <steve.glendinning@shawell.net>
19189 L:      netdev@vger.kernel.org
19190 S:      Maintained
19191 F:      drivers/net/ethernet/smsc/smsc911x.*
19192 F:      include/linux/smsc911x.h
19193
19194 SMSC9420 PCI ETHERNET DRIVER
19195 M:      Steve Glendinning <steve.glendinning@shawell.net>
19196 L:      netdev@vger.kernel.org
19197 S:      Maintained
19198 F:      drivers/net/ethernet/smsc/smsc9420.*
19199
19200 SOCIONEXT (SNI) AVE NETWORK DRIVER
19201 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19202 L:      netdev@vger.kernel.org
19203 S:      Maintained
19204 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19205 F:      drivers/net/ethernet/socionext/sni_ave.c
19206
19207 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19208 M:      Jassi Brar <jaswinder.singh@linaro.org>
19209 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
19210 L:      netdev@vger.kernel.org
19211 S:      Maintained
19212 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19213 F:      drivers/net/ethernet/socionext/netsec.c
19214
19215 SOCIONEXT (SNI) Synquacer SPI DRIVER
19216 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
19217 M:      Jassi Brar <jaswinder.singh@linaro.org>
19218 L:      linux-spi@vger.kernel.org
19219 S:      Maintained
19220 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19221 F:      drivers/spi/spi-synquacer.c
19222
19223 SOCIONEXT SYNQUACER I2C DRIVER
19224 M:      Ard Biesheuvel <ardb@kernel.org>
19225 L:      linux-i2c@vger.kernel.org
19226 S:      Maintained
19227 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
19228 F:      drivers/i2c/busses/i2c-synquacer.c
19229
19230 SOCIONEXT UNIPHIER SOUND DRIVER
19231 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19232 S:      Orphan
19233 F:      sound/soc/uniphier/
19234
19235 SOCKET TIMESTAMPING
19236 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19237 S:      Maintained
19238 F:      Documentation/networking/timestamping.rst
19239 F:      include/uapi/linux/net_tstamp.h
19240 F:      tools/testing/selftests/net/so_txtime.c
19241
19242 SOEKRIS NET48XX LED SUPPORT
19243 M:      Chris Boot <bootc@bootc.net>
19244 S:      Maintained
19245 F:      drivers/leds/leds-net48xx.c
19246
19247 SOFT-IWARP DRIVER (siw)
19248 M:      Bernard Metzler <bmt@zurich.ibm.com>
19249 L:      linux-rdma@vger.kernel.org
19250 S:      Supported
19251 F:      drivers/infiniband/sw/siw/
19252 F:      include/uapi/rdma/siw-abi.h
19253
19254 SOFT-ROCE DRIVER (rxe)
19255 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
19256 L:      linux-rdma@vger.kernel.org
19257 S:      Supported
19258 F:      drivers/infiniband/sw/rxe/
19259 F:      include/uapi/rdma/rdma_user_rxe.h
19260
19261 SOFTLOGIC 6x10 MPEG CODEC
19262 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19263 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19264 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19265 M:      Ismael Luceno <ismael@iodev.co.uk>
19266 L:      linux-media@vger.kernel.org
19267 S:      Supported
19268 F:      drivers/media/pci/solo6x10/
19269
19270 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19271 M:      James Morse <james.morse@arm.com>
19272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19273 S:      Maintained
19274 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19275 F:      drivers/firmware/arm_sdei.c
19276 F:      include/linux/arm_sdei.h
19277 F:      include/uapi/linux/arm_sdei.h
19278
19279 SOFTWARE NODES AND DEVICE PROPERTIES
19280 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19281 R:      Daniel Scally <djrscally@gmail.com>
19282 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19283 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19284 L:      linux-acpi@vger.kernel.org
19285 S:      Maintained
19286 F:      drivers/base/property.c
19287 F:      drivers/base/swnode.c
19288 F:      include/linux/fwnode.h
19289 F:      include/linux/property.h
19290
19291 SOFTWARE RAID (Multiple Disks) SUPPORT
19292 M:      Song Liu <song@kernel.org>
19293 L:      linux-raid@vger.kernel.org
19294 S:      Supported
19295 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19297 F:      drivers/md/Kconfig
19298 F:      drivers/md/Makefile
19299 F:      drivers/md/md*
19300 F:      drivers/md/raid*
19301 F:      include/linux/raid/
19302 F:      include/uapi/linux/raid/
19303
19304 SOLIDRUN CLEARFOG SUPPORT
19305 M:      Russell King <linux@armlinux.org.uk>
19306 S:      Maintained
19307 F:      arch/arm/boot/dts/armada-388-clearfog*
19308 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19309
19310 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19311 M:      Russell King <linux@armlinux.org.uk>
19312 S:      Maintained
19313 F:      arch/arm/boot/dts/imx6*-cubox-i*
19314 F:      arch/arm/boot/dts/imx6*-hummingboard*
19315 F:      arch/arm/boot/dts/imx6*-sr-*
19316
19317 SONIC NETWORK DRIVER
19318 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19319 L:      netdev@vger.kernel.org
19320 S:      Maintained
19321 F:      drivers/net/ethernet/natsemi/sonic.*
19322
19323 SONICS SILICON BACKPLANE DRIVER (SSB)
19324 M:      Michael Buesch <m@bues.ch>
19325 L:      linux-wireless@vger.kernel.org
19326 S:      Maintained
19327 F:      drivers/ssb/
19328 F:      include/linux/ssb/
19329
19330 SONY IMX208 SENSOR DRIVER
19331 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19332 L:      linux-media@vger.kernel.org
19333 S:      Maintained
19334 T:      git git://linuxtv.org/media_tree.git
19335 F:      drivers/media/i2c/imx208.c
19336
19337 SONY IMX214 SENSOR DRIVER
19338 M:      Ricardo Ribalda <ribalda@kernel.org>
19339 L:      linux-media@vger.kernel.org
19340 S:      Maintained
19341 T:      git git://linuxtv.org/media_tree.git
19342 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19343 F:      drivers/media/i2c/imx214.c
19344
19345 SONY IMX219 SENSOR DRIVER
19346 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19347 L:      linux-media@vger.kernel.org
19348 S:      Maintained
19349 T:      git git://linuxtv.org/media_tree.git
19350 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19351 F:      drivers/media/i2c/imx219.c
19352
19353 SONY IMX258 SENSOR DRIVER
19354 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19355 L:      linux-media@vger.kernel.org
19356 S:      Maintained
19357 T:      git git://linuxtv.org/media_tree.git
19358 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19359 F:      drivers/media/i2c/imx258.c
19360
19361 SONY IMX274 SENSOR DRIVER
19362 M:      Leon Luo <leonl@leopardimaging.com>
19363 L:      linux-media@vger.kernel.org
19364 S:      Maintained
19365 T:      git git://linuxtv.org/media_tree.git
19366 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19367 F:      drivers/media/i2c/imx274.c
19368
19369 SONY IMX290 SENSOR DRIVER
19370 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19371 L:      linux-media@vger.kernel.org
19372 S:      Maintained
19373 T:      git git://linuxtv.org/media_tree.git
19374 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19375 F:      drivers/media/i2c/imx290.c
19376
19377 SONY IMX319 SENSOR DRIVER
19378 M:      Bingbu Cao <bingbu.cao@intel.com>
19379 L:      linux-media@vger.kernel.org
19380 S:      Maintained
19381 T:      git git://linuxtv.org/media_tree.git
19382 F:      drivers/media/i2c/imx319.c
19383
19384 SONY IMX334 SENSOR DRIVER
19385 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19386 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19387 L:      linux-media@vger.kernel.org
19388 S:      Maintained
19389 T:      git git://linuxtv.org/media_tree.git
19390 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19391 F:      drivers/media/i2c/imx334.c
19392
19393 SONY IMX335 SENSOR DRIVER
19394 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19395 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19396 L:      linux-media@vger.kernel.org
19397 S:      Maintained
19398 T:      git git://linuxtv.org/media_tree.git
19399 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19400 F:      drivers/media/i2c/imx335.c
19401
19402 SONY IMX355 SENSOR DRIVER
19403 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19404 L:      linux-media@vger.kernel.org
19405 S:      Maintained
19406 T:      git git://linuxtv.org/media_tree.git
19407 F:      drivers/media/i2c/imx355.c
19408
19409 SONY IMX412 SENSOR DRIVER
19410 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19411 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19412 L:      linux-media@vger.kernel.org
19413 S:      Maintained
19414 T:      git git://linuxtv.org/media_tree.git
19415 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19416 F:      drivers/media/i2c/imx412.c
19417
19418 SONY MEMORYSTICK SUBSYSTEM
19419 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19420 M:      Alex Dubov <oakad@yahoo.com>
19421 M:      Ulf Hansson <ulf.hansson@linaro.org>
19422 L:      linux-mmc@vger.kernel.org
19423 S:      Maintained
19424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19425 F:      drivers/memstick/
19426 F:      include/linux/memstick.h
19427
19428 SONY VAIO CONTROL DEVICE DRIVER
19429 M:      Mattia Dongili <malattia@linux.it>
19430 L:      platform-driver-x86@vger.kernel.org
19431 S:      Maintained
19432 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19433 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19434 F:      drivers/char/sonypi.c
19435 F:      drivers/platform/x86/sony-laptop.c
19436 F:      include/linux/sony-laptop.h
19437
19438 SOUND
19439 M:      Jaroslav Kysela <perex@perex.cz>
19440 M:      Takashi Iwai <tiwai@suse.com>
19441 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19442 S:      Maintained
19443 W:      http://www.alsa-project.org/
19444 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19446 F:      Documentation/sound/
19447 F:      include/sound/
19448 F:      include/uapi/sound/
19449 F:      sound/
19450 F:      tools/testing/selftests/alsa
19451
19452 SOUND - COMPRESSED AUDIO
19453 M:      Vinod Koul <vkoul@kernel.org>
19454 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19455 S:      Supported
19456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19457 F:      Documentation/sound/designs/compress-offload.rst
19458 F:      include/sound/compress_driver.h
19459 F:      include/uapi/sound/compress_*
19460 F:      sound/core/compress_offload.c
19461 F:      sound/soc/soc-compress.c
19462
19463 SOUND - DMAENGINE HELPERS
19464 M:      Lars-Peter Clausen <lars@metafoo.de>
19465 S:      Supported
19466 F:      include/sound/dmaengine_pcm.h
19467 F:      sound/core/pcm_dmaengine.c
19468 F:      sound/soc/soc-generic-dmaengine-pcm.c
19469
19470 SOUND - ALSA SELFTESTS
19471 M:      Mark Brown <broonie@kernel.org>
19472 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19473 L:      linux-kselftest@vger.kernel.org
19474 S:      Supported
19475 F:      tools/testing/selftests/alsa
19476
19477 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19478 M:      Liam Girdwood <lgirdwood@gmail.com>
19479 M:      Mark Brown <broonie@kernel.org>
19480 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19481 S:      Supported
19482 W:      http://alsa-project.org/main/index.php/ASoC
19483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19484 F:      Documentation/devicetree/bindings/sound/
19485 F:      Documentation/sound/soc/
19486 F:      include/dt-bindings/sound/
19487 F:      include/sound/soc*
19488 F:      sound/soc/
19489
19490 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19491 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19492 M:      Liam Girdwood <lgirdwood@gmail.com>
19493 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19494 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19495 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19496 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19497 M:      Daniel Baluta <daniel.baluta@nxp.com>
19498 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19499 S:      Supported
19500 W:      https://github.com/thesofproject/linux/
19501 F:      sound/soc/sof/
19502
19503 SOUNDWIRE SUBSYSTEM
19504 M:      Vinod Koul <vkoul@kernel.org>
19505 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19506 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19507 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19508 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19509 S:      Supported
19510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19511 F:      Documentation/driver-api/soundwire/
19512 F:      drivers/soundwire/
19513 F:      include/linux/soundwire/
19514
19515 SP2 MEDIA DRIVER
19516 M:      Olli Salonen <olli.salonen@iki.fi>
19517 L:      linux-media@vger.kernel.org
19518 S:      Maintained
19519 W:      https://linuxtv.org
19520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19521 F:      drivers/media/dvb-frontends/sp2*
19522
19523 SPANISH DOCUMENTATION
19524 M:      Carlos Bilbao <carlos.bilbao@amd.com>
19525 S:      Maintained
19526 F:      Documentation/translations/sp_SP/
19527
19528 SPARC + UltraSPARC (sparc/sparc64)
19529 M:      "David S. Miller" <davem@davemloft.net>
19530 L:      sparclinux@vger.kernel.org
19531 S:      Maintained
19532 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19535 F:      arch/sparc/
19536 F:      drivers/sbus/
19537
19538 SPARC SERIAL DRIVERS
19539 M:      "David S. Miller" <davem@davemloft.net>
19540 L:      sparclinux@vger.kernel.org
19541 S:      Maintained
19542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19544 F:      drivers/tty/serial/suncore.c
19545 F:      drivers/tty/serial/sunhv.c
19546 F:      drivers/tty/serial/sunsab.c
19547 F:      drivers/tty/serial/sunsab.h
19548 F:      drivers/tty/serial/sunsu.c
19549 F:      drivers/tty/serial/sunzilog.c
19550 F:      drivers/tty/serial/sunzilog.h
19551 F:      drivers/tty/vcc.c
19552 F:      include/linux/sunserialcore.h
19553
19554 SPARSE CHECKER
19555 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19556 L:      linux-sparse@vger.kernel.org
19557 S:      Maintained
19558 W:      https://sparse.docs.kernel.org/
19559 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19560 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19561 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19562 F:      include/linux/compiler.h
19563
19564 SPEAKUP CONSOLE SPEECH DRIVER
19565 M:      William Hubbs <w.d.hubbs@gmail.com>
19566 M:      Chris Brannon <chris@the-brannons.com>
19567 M:      Kirk Reiser <kirk@reisers.ca>
19568 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19569 L:      speakup@linux-speakup.org
19570 S:      Odd Fixes
19571 W:      http://www.linux-speakup.org/
19572 W:      https://github.com/linux-speakup/speakup
19573 B:      https://github.com/linux-speakup/speakup/issues
19574 F:      drivers/accessibility/speakup/
19575
19576 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19577 M:      Viresh Kumar <vireshk@kernel.org>
19578 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19579 M:      soc@kernel.org
19580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19581 S:      Maintained
19582 W:      http://www.st.com/spear
19583 F:      arch/arm/boot/dts/spear*
19584 F:      arch/arm/mach-spear/
19585 F:      drivers/clk/spear/
19586 F:      drivers/pinctrl/spear/
19587
19588 SPI NOR SUBSYSTEM
19589 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
19590 M:      Pratyush Yadav <pratyush@kernel.org>
19591 R:      Michael Walle <michael@walle.cc>
19592 L:      linux-mtd@lists.infradead.org
19593 S:      Maintained
19594 W:      http://www.linux-mtd.infradead.org/
19595 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19596 C:      irc://irc.oftc.net/mtd
19597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19598 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19599 F:      drivers/mtd/spi-nor/
19600 F:      include/linux/mtd/spi-nor.h
19601
19602 SPI SUBSYSTEM
19603 M:      Mark Brown <broonie@kernel.org>
19604 L:      linux-spi@vger.kernel.org
19605 S:      Maintained
19606 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19608 F:      Documentation/devicetree/bindings/spi/
19609 F:      Documentation/spi/
19610 F:      drivers/spi/
19611 F:      include/linux/spi/
19612 F:      include/uapi/linux/spi/
19613 F:      tools/spi/
19614
19615 SPIDERNET NETWORK DRIVER for CELL
19616 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19617 M:      Geoff Levand <geoff@infradead.org>
19618 L:      netdev@vger.kernel.org
19619 L:      linuxppc-dev@lists.ozlabs.org
19620 S:      Maintained
19621 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19622 F:      drivers/net/ethernet/toshiba/spider_net*
19623
19624 SPMI SUBSYSTEM
19625 M:      Stephen Boyd <sboyd@kernel.org>
19626 L:      linux-kernel@vger.kernel.org
19627 S:      Maintained
19628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19629 F:      Documentation/devicetree/bindings/spmi/
19630 F:      drivers/spmi/
19631 F:      include/dt-bindings/spmi/spmi.h
19632 F:      include/linux/spmi.h
19633 F:      include/trace/events/spmi.h
19634
19635 SPU FILE SYSTEM
19636 M:      Jeremy Kerr <jk@ozlabs.org>
19637 L:      linuxppc-dev@lists.ozlabs.org
19638 S:      Supported
19639 W:      http://www.ibm.com/developerworks/power/cell/
19640 F:      Documentation/filesystems/spufs/spufs.rst
19641 F:      arch/powerpc/platforms/cell/spufs/
19642
19643 SQUASHFS FILE SYSTEM
19644 M:      Phillip Lougher <phillip@squashfs.org.uk>
19645 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19646 S:      Maintained
19647 W:      http://squashfs.org.uk
19648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19649 F:      Documentation/filesystems/squashfs.rst
19650 F:      fs/squashfs/
19651
19652 SRM (Alpha) environment access
19653 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19654 S:      Maintained
19655 F:      arch/alpha/kernel/srm_env.c
19656
19657 ST LSM6DSx IMU IIO DRIVER
19658 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19659 L:      linux-iio@vger.kernel.org
19660 S:      Maintained
19661 W:      http://www.st.com/
19662 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19663 F:      drivers/iio/imu/st_lsm6dsx/
19664
19665 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19666 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19667 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19668 L:      linux-media@vger.kernel.org
19669 S:      Maintained
19670 T:      git git://linuxtv.org/media_tree.git
19671 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19672 F:      drivers/media/i2c/st-mipid02.c
19673
19674 ST STM32 I2C/SMBUS DRIVER
19675 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19676 M:      Alain Volmat <alain.volmat@foss.st.com>
19677 L:      linux-i2c@vger.kernel.org
19678 S:      Maintained
19679 F:      drivers/i2c/busses/i2c-stm32*
19680
19681 ST STM32 SPI DRIVER
19682 M:      Alain Volmat <alain.volmat@foss.st.com>
19683 L:      linux-spi@vger.kernel.org
19684 S:      Maintained
19685 F:      drivers/spi/spi-stm32.c
19686
19687 ST STPDDC60 DRIVER
19688 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19689 L:      linux-hwmon@vger.kernel.org
19690 S:      Maintained
19691 F:      Documentation/hwmon/stpddc60.rst
19692 F:      drivers/hwmon/pmbus/stpddc60.c
19693
19694 ST VGXY61 DRIVER
19695 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19696 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19697 L:      linux-media@vger.kernel.org
19698 S:      Maintained
19699 T:      git git://linuxtv.org/media_tree.git
19700 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19701 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19702 F:      drivers/media/i2c/st-vgxy61.c
19703
19704 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19705 M:      Song Qiang <songqiang1304521@gmail.com>
19706 L:      linux-iio@vger.kernel.org
19707 S:      Maintained
19708 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19709 F:      drivers/iio/proximity/vl53l0x-i2c.c
19710
19711 STABLE BRANCH
19712 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19713 M:      Sasha Levin <sashal@kernel.org>
19714 L:      stable@vger.kernel.org
19715 S:      Supported
19716 F:      Documentation/process/stable-kernel-rules.rst
19717
19718 STAGING - ATOMISP DRIVER
19719 M:      Hans de Goede <hdegoede@redhat.com>
19720 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19721 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19722 L:      linux-media@vger.kernel.org
19723 S:      Maintained
19724 F:      drivers/staging/media/atomisp/
19725
19726 STAGING - FIELDBUS SUBSYSTEM
19727 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19728 S:      Maintained
19729 F:      drivers/staging/fieldbus/*
19730 F:      drivers/staging/fieldbus/Documentation/
19731
19732 STAGING - HMS ANYBUS-S BUS
19733 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19734 S:      Maintained
19735 F:      drivers/staging/fieldbus/anybuss/
19736
19737 STAGING - INDUSTRIAL IO
19738 M:      Jonathan Cameron <jic23@kernel.org>
19739 L:      linux-iio@vger.kernel.org
19740 S:      Odd Fixes
19741 F:      Documentation/devicetree/bindings/staging/iio/
19742 F:      drivers/staging/iio/
19743
19744 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19745 M:      Marc Dietrich <marvin24@gmx.de>
19746 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19747 L:      linux-tegra@vger.kernel.org
19748 S:      Maintained
19749 F:      drivers/staging/nvec/
19750
19751 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19752 M:      Jens Frederich <jfrederich@gmail.com>
19753 M:      Jon Nettleton <jon.nettleton@gmail.com>
19754 S:      Maintained
19755 W:      http://wiki.laptop.org/go/DCON
19756 F:      drivers/staging/olpc_dcon/
19757
19758 STAGING - REALTEK RTL8188EU DRIVERS
19759 M:      Larry Finger <Larry.Finger@lwfinger.net>
19760 M:      Phillip Potter <phil@philpotter.co.uk>
19761 R:      Pavel Skripkin <paskripkin@gmail.com>
19762 S:      Supported
19763 F:      drivers/staging/r8188eu/
19764
19765 STAGING - REALTEK RTL8712U DRIVERS
19766 M:      Larry Finger <Larry.Finger@lwfinger.net>
19767 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19768 S:      Odd Fixes
19769 F:      drivers/staging/rtl8712/
19770
19771 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19772 M:      Michael Hennerich <michael.hennerich@analog.com>
19773 L:      linux-fbdev@vger.kernel.org
19774 S:      Supported
19775 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19776 F:      drivers/staging/fbtft/fb_seps525.c
19777
19778 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19779 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19780 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19781 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19782 L:      linux-fbdev@vger.kernel.org
19783 S:      Maintained
19784 F:      drivers/staging/sm750fb/
19785
19786 STAGING - VIA VT665X DRIVERS
19787 M:      Forest Bond <forest@alittletooquiet.net>
19788 S:      Odd Fixes
19789 F:      drivers/staging/vt665?/
19790
19791 STAGING SUBSYSTEM
19792 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19793 L:      linux-staging@lists.linux.dev
19794 S:      Supported
19795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19796 F:      drivers/staging/
19797
19798 STARFIRE/DURALAN NETWORK DRIVER
19799 M:      Ion Badulescu <ionut@badula.org>
19800 S:      Odd Fixes
19801 F:      drivers/net/ethernet/adaptec/starfire*
19802
19803 STARFIVE DEVICETREES
19804 M:      Emil Renner Berthing <kernel@esmil.dk>
19805 S:      Maintained
19806 F:      arch/riscv/boot/dts/starfive/
19807
19808 STARFIVE JH7100 CLOCK DRIVERS
19809 M:      Emil Renner Berthing <kernel@esmil.dk>
19810 S:      Maintained
19811 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19812 F:      drivers/clk/starfive/clk-starfive-jh7100*
19813 F:      include/dt-bindings/clock/starfive-jh7100*.h
19814
19815 STARFIVE JH7100 PINCTRL DRIVER
19816 M:      Emil Renner Berthing <kernel@esmil.dk>
19817 L:      linux-gpio@vger.kernel.org
19818 S:      Maintained
19819 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19820 F:      drivers/pinctrl/starfive/
19821 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
19822
19823 STARFIVE JH7100 RESET CONTROLLER DRIVER
19824 M:      Emil Renner Berthing <kernel@esmil.dk>
19825 S:      Maintained
19826 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19827 F:      drivers/reset/reset-starfive-jh7100.c
19828 F:      include/dt-bindings/reset/starfive-jh7100.h
19829
19830 STARFIVE TRNG DRIVER
19831 M:      Jia Jie Ho <jiajie.ho@starfivetech.com>
19832 S:      Supported
19833 F:      Documentation/devicetree/bindings/rng/starfive*
19834 F:      drivers/char/hw_random/jh7110-trng.c
19835
19836 STATIC BRANCH/CALL
19837 M:      Peter Zijlstra <peterz@infradead.org>
19838 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19839 M:      Jason Baron <jbaron@akamai.com>
19840 R:      Steven Rostedt <rostedt@goodmis.org>
19841 R:      Ard Biesheuvel <ardb@kernel.org>
19842 S:      Supported
19843 F:      arch/*/include/asm/jump_label*.h
19844 F:      arch/*/include/asm/static_call*.h
19845 F:      arch/*/kernel/jump_label.c
19846 F:      arch/*/kernel/static_call.c
19847 F:      include/linux/jump_label*.h
19848 F:      include/linux/static_call*.h
19849 F:      kernel/jump_label.c
19850 F:      kernel/static_call.c
19851
19852 STI AUDIO (ASoC) DRIVERS
19853 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19854 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19855 S:      Maintained
19856 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19857 F:      sound/soc/sti/
19858
19859 STI CEC DRIVER
19860 M:      Alain Volmat <alain.volmat@foss.st.com>
19861 S:      Maintained
19862 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19863 F:      drivers/media/cec/platform/sti/
19864
19865 STK1160 USB VIDEO CAPTURE DRIVER
19866 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19867 L:      linux-media@vger.kernel.org
19868 S:      Maintained
19869 T:      git git://linuxtv.org/media_tree.git
19870 F:      drivers/media/usb/stk1160/
19871
19872 STM32 AUDIO (ASoC) DRIVERS
19873 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19874 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19875 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19876 S:      Maintained
19877 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19878 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19879 F:      sound/soc/stm/
19880
19881 STM32 TIMER/LPTIMER DRIVERS
19882 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19883 S:      Maintained
19884 F:      Documentation/ABI/testing/*timer-stm32
19885 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19886 F:      drivers/*/stm32-*timer*
19887 F:      drivers/pwm/pwm-stm32*
19888 F:      include/linux/*/stm32-*tim*
19889
19890 STMMAC ETHERNET DRIVER
19891 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19892 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19893 M:      Jose Abreu <joabreu@synopsys.com>
19894 L:      netdev@vger.kernel.org
19895 S:      Supported
19896 W:      http://www.stlinux.com
19897 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19898 F:      drivers/net/ethernet/stmicro/stmmac/
19899
19900 SUN3/3X
19901 M:      Sam Creasey <sammy@sammy.net>
19902 S:      Maintained
19903 W:      http://sammy.net/sun3/
19904 F:      arch/m68k/include/asm/sun3*
19905 F:      arch/m68k/kernel/*sun3*
19906 F:      arch/m68k/sun3*/
19907 F:      drivers/net/ethernet/i825xx/sun3*
19908
19909 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19910 M:      Hans de Goede <hdegoede@redhat.com>
19911 L:      linux-input@vger.kernel.org
19912 S:      Maintained
19913 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19914 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19915
19916 SUNDANCE NETWORK DRIVER
19917 M:      Denis Kirjanov <kda@linux-powerpc.org>
19918 L:      netdev@vger.kernel.org
19919 S:      Maintained
19920 F:      drivers/net/ethernet/dlink/sundance.c
19921
19922 SUN HAPPY MEAL ETHERNET DRIVER
19923 M:      Sean Anderson <seanga2@gmail.com>
19924 S:      Maintained
19925 F:      drivers/net/ethernet/sun/sunhme.*
19926
19927 SUNPLUS ETHERNET DRIVER
19928 M:      Wells Lu <wellslutw@gmail.com>
19929 L:      netdev@vger.kernel.org
19930 S:      Maintained
19931 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19932 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19933 F:      drivers/net/ethernet/sunplus/
19934
19935 SUNPLUS MMC DRIVER
19936 M:      Tony Huang <tonyhuang.sunplus@gmail.com>
19937 M:      Li-hao Kuo <lhjeff911@gmail.com>
19938 S:      Maintained
19939 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
19940 F:      drivers/mmc/host/sunplus-mmc.c
19941
19942 SUNPLUS OCOTP DRIVER
19943 M:      Vincent Shih <vincent.sunplus@gmail.com>
19944 S:      Maintained
19945 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19946 F:      drivers/nvmem/sunplus-ocotp.c
19947
19948 SUNPLUS USB2 PHY DRIVER
19949 M:      Vincent Shih <vincent.sunplus@gmail.com>
19950 L:      linux-usb@vger.kernel.org
19951 S:      Maintained
19952 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
19953 F:      drivers/phy/sunplus/Kconfig
19954 F:      drivers/phy/sunplus/Makefile
19955 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
19956
19957 SUNPLUS PWM DRIVER
19958 M:      Hammer Hsieh <hammerh0314@gmail.com>
19959 S:      Maintained
19960 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19961 F:      drivers/pwm/pwm-sunplus.c
19962
19963 SUNPLUS RTC DRIVER
19964 M:      Vincent Shih <vincent.sunplus@gmail.com>
19965 L:      linux-rtc@vger.kernel.org
19966 S:      Maintained
19967 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19968 F:      drivers/rtc/rtc-sunplus.c
19969
19970 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19971 M:      Li-hao Kuo <lhjeff911@gmail.com>
19972 L:      linux-spi@vger.kernel.org
19973 S:      Maintained
19974 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19975 F:      drivers/spi/spi-sunplus-sp7021.c
19976
19977 SUNPLUS UART DRIVER
19978 M:      Hammer Hsieh <hammerh0314@gmail.com>
19979 S:      Maintained
19980 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19981 F:      drivers/tty/serial/sunplus-uart.c
19982
19983 SUNPLUS WATCHDOG DRIVER
19984 M:      Xiantao Hu <xt.hu@cqplus1.com>
19985 L:      linux-watchdog@vger.kernel.org
19986 S:      Maintained
19987 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19988 F:      drivers/watchdog/sunplus_wdt.c
19989
19990 SUPERH
19991 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19992 M:      Rich Felker <dalias@libc.org>
19993 M:      John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
19994 L:      linux-sh@vger.kernel.org
19995 S:      Maintained
19996 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19997 F:      Documentation/sh/
19998 F:      arch/sh/
19999 F:      drivers/sh/
20000
20001 SUSPEND TO RAM
20002 M:      "Rafael J. Wysocki" <rafael@kernel.org>
20003 M:      Len Brown <len.brown@intel.com>
20004 M:      Pavel Machek <pavel@ucw.cz>
20005 L:      linux-pm@vger.kernel.org
20006 S:      Supported
20007 B:      https://bugzilla.kernel.org
20008 F:      Documentation/power/
20009 F:      arch/x86/kernel/acpi/sleep*
20010 F:      arch/x86/kernel/acpi/wakeup*
20011 F:      drivers/base/power/
20012 F:      include/linux/freezer.h
20013 F:      include/linux/pm.h
20014 F:      include/linux/suspend.h
20015 F:      kernel/power/
20016
20017 SVGA HANDLING
20018 M:      Martin Mares <mj@ucw.cz>
20019 L:      linux-video@atrey.karlin.mff.cuni.cz
20020 S:      Maintained
20021 F:      Documentation/admin-guide/svga.rst
20022 F:      arch/x86/boot/video*
20023
20024 SWITCHDEV
20025 M:      Jiri Pirko <jiri@resnulli.us>
20026 M:      Ivan Vecera <ivecera@redhat.com>
20027 L:      netdev@vger.kernel.org
20028 S:      Supported
20029 F:      include/net/switchdev.h
20030 F:      net/switchdev/
20031
20032 SY8106A REGULATOR DRIVER
20033 M:      Icenowy Zheng <icenowy@aosc.io>
20034 S:      Maintained
20035 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20036 F:      drivers/regulator/sy8106a-regulator.c
20037
20038 SYNC FILE FRAMEWORK
20039 M:      Sumit Semwal <sumit.semwal@linaro.org>
20040 R:      Gustavo Padovan <gustavo@padovan.org>
20041 L:      linux-media@vger.kernel.org
20042 L:      dri-devel@lists.freedesktop.org
20043 S:      Maintained
20044 T:      git git://anongit.freedesktop.org/drm/drm-misc
20045 F:      Documentation/driver-api/sync_file.rst
20046 F:      drivers/dma-buf/dma-fence*
20047 F:      drivers/dma-buf/sw_sync.c
20048 F:      drivers/dma-buf/sync_*
20049 F:      include/linux/sync_file.h
20050 F:      include/uapi/linux/sync_file.h
20051
20052 SYNOPSYS ARC ARCHITECTURE
20053 M:      Vineet Gupta <vgupta@kernel.org>
20054 L:      linux-snps-arc@lists.infradead.org
20055 S:      Supported
20056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20057 F:      Documentation/arc/
20058 F:      Documentation/devicetree/bindings/arc/*
20059 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20060 F:      arch/arc/
20061 F:      drivers/clocksource/arc_timer.c
20062 F:      drivers/tty/serial/arc_uart.c
20063
20064 SYNOPSYS ARC HSDK SDP pll clock driver
20065 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20066 S:      Supported
20067 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20068 F:      drivers/clk/clk-hsdk-pll.c
20069
20070 SYNOPSYS ARC SDP clock driver
20071 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20072 S:      Supported
20073 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20074 F:      drivers/clk/axs10x/*
20075
20076 SYNOPSYS ARC SDP platform support
20077 M:      Alexey Brodkin <abrodkin@synopsys.com>
20078 S:      Supported
20079 F:      Documentation/devicetree/bindings/arc/axs10*
20080 F:      arch/arc/boot/dts/ax*
20081 F:      arch/arc/plat-axs10x
20082
20083 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20084 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20085 S:      Supported
20086 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20087 F:      drivers/reset/reset-axs10x.c
20088
20089 SYNOPSYS CREG GPIO DRIVER
20090 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20091 S:      Maintained
20092 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20093 F:      drivers/gpio/gpio-creg-snps.c
20094
20095 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20096 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20097 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20098 S:      Supported
20099 F:      drivers/tty/serial/8250/8250_dw.c
20100 F:      drivers/tty/serial/8250/8250_dwlib.*
20101 F:      drivers/tty/serial/8250/8250_lpss.c
20102
20103 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20104 M:      Hoan Tran <hoan@os.amperecomputing.com>
20105 M:      Serge Semin <fancer.lancer@gmail.com>
20106 L:      linux-gpio@vger.kernel.org
20107 S:      Maintained
20108 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20109 F:      drivers/gpio/gpio-dwapb.c
20110
20111 SYNOPSYS DESIGNWARE APB SSI DRIVER
20112 M:      Serge Semin <fancer.lancer@gmail.com>
20113 L:      linux-spi@vger.kernel.org
20114 S:      Supported
20115 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20116 F:      drivers/spi/spi-dw*
20117
20118 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20119 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20120 S:      Maintained
20121 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20122 F:      drivers/dma/dw-axi-dmac/
20123
20124 SYNOPSYS DESIGNWARE DMAC DRIVER
20125 M:      Viresh Kumar <vireshk@kernel.org>
20126 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20127 S:      Maintained
20128 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20129 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20130 F:      drivers/dma/dw/
20131 F:      include/dt-bindings/dma/dw-dmac.h
20132 F:      include/linux/dma/dw.h
20133 F:      include/linux/platform_data/dma-dw.h
20134
20135 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20136 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20137 L:      netdev@vger.kernel.org
20138 S:      Supported
20139 F:      drivers/net/ethernet/synopsys/
20140
20141 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20142 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20143 L:      netdev@vger.kernel.org
20144 S:      Supported
20145 F:      drivers/net/pcs/pcs-xpcs.c
20146 F:      drivers/net/pcs/pcs-xpcs.h
20147 F:      include/linux/pcs/pcs-xpcs.h
20148
20149 SYNOPSYS DESIGNWARE I2C DRIVER
20150 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
20151 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20152 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
20153 R:      Jan Dabros <jsd@semihalf.com>
20154 L:      linux-i2c@vger.kernel.org
20155 S:      Supported
20156 F:      drivers/i2c/busses/i2c-designware-*
20157
20158 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20159 M:      Jaehoon Chung <jh80.chung@samsung.com>
20160 L:      linux-mmc@vger.kernel.org
20161 S:      Maintained
20162 F:      drivers/mmc/host/dw_mmc*
20163
20164 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20165 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20166 S:      Supported
20167 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20168 F:      drivers/reset/reset-hsdk.c
20169 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20170
20171 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20172 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
20173 M:      Manjunath M B <manjumb@synopsys.com>
20174 L:      linux-mmc@vger.kernel.org
20175 S:      Maintained
20176 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20177
20178 SYSTEM CONFIGURATION (SYSCON)
20179 M:      Lee Jones <lee@kernel.org>
20180 M:      Arnd Bergmann <arnd@arndb.de>
20181 S:      Supported
20182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20183 F:      drivers/mfd/syscon.c
20184
20185 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20186 M:      Sudeep Holla <sudeep.holla@arm.com>
20187 R:      Cristian Marussi <cristian.marussi@arm.com>
20188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20189 S:      Maintained
20190 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20191 F:      drivers/clk/clk-sc[mp]i.c
20192 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20193 F:      drivers/firmware/arm_scmi/
20194 F:      drivers/firmware/arm_scpi.c
20195 F:      drivers/powercap/arm_scmi_powercap.c
20196 F:      drivers/regulator/scmi-regulator.c
20197 F:      drivers/reset/reset-scmi.c
20198 F:      include/linux/sc[mp]i_protocol.h
20199 F:      include/trace/events/scmi.h
20200 F:      include/uapi/linux/virtio_scmi.h
20201
20202 SYSTEM RESET/SHUTDOWN DRIVERS
20203 M:      Sebastian Reichel <sre@kernel.org>
20204 L:      linux-pm@vger.kernel.org
20205 S:      Maintained
20206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20207 F:      Documentation/devicetree/bindings/power/reset/
20208 F:      drivers/power/reset/
20209
20210 SYSTEM TRACE MODULE CLASS
20211 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
20212 S:      Maintained
20213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20214 F:      Documentation/trace/stm.rst
20215 F:      drivers/hwtracing/stm/
20216 F:      include/linux/stm.h
20217 F:      include/uapi/linux/stm.h
20218
20219 SYSTEM76 ACPI DRIVER
20220 M:      Jeremy Soller <jeremy@system76.com>
20221 M:      System76 Product Development <productdev@system76.com>
20222 L:      platform-driver-x86@vger.kernel.org
20223 S:      Maintained
20224 F:      drivers/platform/x86/system76_acpi.c
20225
20226 SYSV FILESYSTEM
20227 S:      Orphan
20228 F:      Documentation/filesystems/sysv-fs.rst
20229 F:      fs/sysv/
20230 F:      include/linux/sysv_fs.h
20231
20232 TASKSTATS STATISTICS INTERFACE
20233 M:      Balbir Singh <bsingharora@gmail.com>
20234 S:      Maintained
20235 F:      Documentation/accounting/taskstats*
20236 F:      include/linux/taskstats*
20237 F:      kernel/taskstats.c
20238
20239 TC subsystem
20240 M:      Jamal Hadi Salim <jhs@mojatatu.com>
20241 M:      Cong Wang <xiyou.wangcong@gmail.com>
20242 M:      Jiri Pirko <jiri@resnulli.us>
20243 L:      netdev@vger.kernel.org
20244 S:      Maintained
20245 F:      include/net/pkt_cls.h
20246 F:      include/net/pkt_sched.h
20247 F:      include/net/tc_act/
20248 F:      include/uapi/linux/pkt_cls.h
20249 F:      include/uapi/linux/pkt_sched.h
20250 F:      include/uapi/linux/tc_act/
20251 F:      include/uapi/linux/tc_ematch/
20252 F:      net/sched/
20253 F:      tools/testing/selftests/tc-testing
20254
20255 TC90522 MEDIA DRIVER
20256 M:      Akihiro Tsukada <tskd08@gmail.com>
20257 L:      linux-media@vger.kernel.org
20258 S:      Odd Fixes
20259 F:      drivers/media/dvb-frontends/tc90522*
20260
20261 TCP LOW PRIORITY MODULE
20262 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20263 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20264 S:      Maintained
20265 W:      http://tcp-lp-mod.sourceforge.net/
20266 F:      net/ipv4/tcp_lp.c
20267
20268 TDA10071 MEDIA DRIVER
20269 M:      Antti Palosaari <crope@iki.fi>
20270 L:      linux-media@vger.kernel.org
20271 S:      Maintained
20272 W:      https://linuxtv.org
20273 W:      http://palosaari.fi/linux/
20274 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20275 T:      git git://linuxtv.org/anttip/media_tree.git
20276 F:      drivers/media/dvb-frontends/tda10071*
20277
20278 TDA18212 MEDIA DRIVER
20279 M:      Antti Palosaari <crope@iki.fi>
20280 L:      linux-media@vger.kernel.org
20281 S:      Maintained
20282 W:      https://linuxtv.org
20283 W:      http://palosaari.fi/linux/
20284 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20285 T:      git git://linuxtv.org/anttip/media_tree.git
20286 F:      drivers/media/tuners/tda18212*
20287
20288 TDA18218 MEDIA DRIVER
20289 M:      Antti Palosaari <crope@iki.fi>
20290 L:      linux-media@vger.kernel.org
20291 S:      Maintained
20292 W:      https://linuxtv.org
20293 W:      http://palosaari.fi/linux/
20294 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20295 T:      git git://linuxtv.org/anttip/media_tree.git
20296 F:      drivers/media/tuners/tda18218*
20297
20298 TDA18250 MEDIA DRIVER
20299 M:      Olli Salonen <olli.salonen@iki.fi>
20300 L:      linux-media@vger.kernel.org
20301 S:      Maintained
20302 W:      https://linuxtv.org
20303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20304 T:      git git://linuxtv.org/media_tree.git
20305 F:      drivers/media/tuners/tda18250*
20306
20307 TDA18271 MEDIA DRIVER
20308 M:      Michael Krufky <mkrufky@linuxtv.org>
20309 L:      linux-media@vger.kernel.org
20310 S:      Maintained
20311 W:      https://linuxtv.org
20312 W:      http://github.com/mkrufky
20313 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20314 T:      git git://linuxtv.org/mkrufky/tuners.git
20315 F:      drivers/media/tuners/tda18271*
20316
20317 TDA1997x MEDIA DRIVER
20318 M:      Tim Harvey <tharvey@gateworks.com>
20319 L:      linux-media@vger.kernel.org
20320 S:      Maintained
20321 W:      https://linuxtv.org
20322 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20323 F:      drivers/media/i2c/tda1997x.*
20324
20325 TDA827x MEDIA DRIVER
20326 M:      Michael Krufky <mkrufky@linuxtv.org>
20327 L:      linux-media@vger.kernel.org
20328 S:      Maintained
20329 W:      https://linuxtv.org
20330 W:      http://github.com/mkrufky
20331 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20332 T:      git git://linuxtv.org/mkrufky/tuners.git
20333 F:      drivers/media/tuners/tda8290.*
20334
20335 TDA8290 MEDIA DRIVER
20336 M:      Michael Krufky <mkrufky@linuxtv.org>
20337 L:      linux-media@vger.kernel.org
20338 S:      Maintained
20339 W:      https://linuxtv.org
20340 W:      http://github.com/mkrufky
20341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20342 T:      git git://linuxtv.org/mkrufky/tuners.git
20343 F:      drivers/media/tuners/tda8290.*
20344
20345 TDA9840 MEDIA DRIVER
20346 M:      Hans Verkuil <hverkuil@xs4all.nl>
20347 L:      linux-media@vger.kernel.org
20348 S:      Maintained
20349 W:      https://linuxtv.org
20350 T:      git git://linuxtv.org/media_tree.git
20351 F:      drivers/media/i2c/tda9840*
20352
20353 TEA5761 TUNER DRIVER
20354 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20355 L:      linux-media@vger.kernel.org
20356 S:      Odd fixes
20357 W:      https://linuxtv.org
20358 T:      git git://linuxtv.org/media_tree.git
20359 F:      drivers/media/tuners/tea5761.*
20360
20361 TEA5767 TUNER DRIVER
20362 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20363 L:      linux-media@vger.kernel.org
20364 S:      Maintained
20365 W:      https://linuxtv.org
20366 T:      git git://linuxtv.org/media_tree.git
20367 F:      drivers/media/tuners/tea5767.*
20368
20369 TEA6415C MEDIA DRIVER
20370 M:      Hans Verkuil <hverkuil@xs4all.nl>
20371 L:      linux-media@vger.kernel.org
20372 S:      Maintained
20373 W:      https://linuxtv.org
20374 T:      git git://linuxtv.org/media_tree.git
20375 F:      drivers/media/i2c/tea6415c*
20376
20377 TEA6420 MEDIA DRIVER
20378 M:      Hans Verkuil <hverkuil@xs4all.nl>
20379 L:      linux-media@vger.kernel.org
20380 S:      Maintained
20381 W:      https://linuxtv.org
20382 T:      git git://linuxtv.org/media_tree.git
20383 F:      drivers/media/i2c/tea6420*
20384
20385 TEAM DRIVER
20386 M:      Jiri Pirko <jiri@resnulli.us>
20387 L:      netdev@vger.kernel.org
20388 S:      Supported
20389 F:      drivers/net/team/
20390 F:      include/linux/if_team.h
20391 F:      include/uapi/linux/if_team.h
20392 F:      tools/testing/selftests/drivers/net/team/
20393
20394 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20395 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20396 S:      Maintained
20397 F:      arch/x86/platform/ts5500/
20398
20399 TECHNOTREND USB IR RECEIVER
20400 M:      Sean Young <sean@mess.org>
20401 L:      linux-media@vger.kernel.org
20402 S:      Maintained
20403 F:      drivers/media/rc/ttusbir.c
20404
20405 TECHWELL TW9910 VIDEO DECODER
20406 L:      linux-media@vger.kernel.org
20407 S:      Orphan
20408 F:      drivers/media/i2c/tw9910.c
20409 F:      include/media/i2c/tw9910.h
20410
20411 TEE SUBSYSTEM
20412 M:      Jens Wiklander <jens.wiklander@linaro.org>
20413 R:      Sumit Garg <sumit.garg@linaro.org>
20414 L:      op-tee@lists.trustedfirmware.org
20415 S:      Maintained
20416 F:      Documentation/staging/tee.rst
20417 F:      drivers/tee/
20418 F:      include/linux/tee_drv.h
20419 F:      include/uapi/linux/tee.h
20420
20421 TEGRA ARCHITECTURE SUPPORT
20422 M:      Thierry Reding <thierry.reding@gmail.com>
20423 M:      Jonathan Hunter <jonathanh@nvidia.com>
20424 L:      linux-tegra@vger.kernel.org
20425 S:      Supported
20426 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20428 N:      [^a-z]tegra
20429
20430 TEGRA CLOCK DRIVER
20431 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20432 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20433 S:      Supported
20434 F:      drivers/clk/tegra/
20435
20436 TEGRA DMA DRIVERS
20437 M:      Laxman Dewangan <ldewangan@nvidia.com>
20438 M:      Jon Hunter <jonathanh@nvidia.com>
20439 S:      Supported
20440 F:      drivers/dma/tegra*
20441
20442 TEGRA I2C DRIVER
20443 M:      Laxman Dewangan <ldewangan@nvidia.com>
20444 R:      Dmitry Osipenko <digetx@gmail.com>
20445 S:      Supported
20446 F:      drivers/i2c/busses/i2c-tegra.c
20447
20448 TEGRA IOMMU DRIVERS
20449 M:      Thierry Reding <thierry.reding@gmail.com>
20450 R:      Krishna Reddy <vdumpa@nvidia.com>
20451 L:      linux-tegra@vger.kernel.org
20452 S:      Supported
20453 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20454 F:      drivers/iommu/tegra*
20455
20456 TEGRA KBC DRIVER
20457 M:      Laxman Dewangan <ldewangan@nvidia.com>
20458 S:      Supported
20459 F:      drivers/input/keyboard/tegra-kbc.c
20460
20461 TEGRA NAND DRIVER
20462 M:      Stefan Agner <stefan@agner.ch>
20463 M:      Lucas Stach <dev@lynxeye.de>
20464 S:      Maintained
20465 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20466 F:      drivers/mtd/nand/raw/tegra_nand.c
20467
20468 TEGRA PWM DRIVER
20469 M:      Thierry Reding <thierry.reding@gmail.com>
20470 S:      Supported
20471 F:      drivers/pwm/pwm-tegra.c
20472
20473 TEGRA SERIAL DRIVER
20474 M:      Laxman Dewangan <ldewangan@nvidia.com>
20475 S:      Supported
20476 F:      drivers/tty/serial/serial-tegra.c
20477
20478 TEGRA SPI DRIVER
20479 M:      Laxman Dewangan <ldewangan@nvidia.com>
20480 S:      Supported
20481 F:      drivers/spi/spi-tegra*
20482
20483 TEGRA QUAD SPI DRIVER
20484 M:      Thierry Reding <thierry.reding@gmail.com>
20485 M:      Jonathan Hunter <jonathanh@nvidia.com>
20486 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20487 L:      linux-tegra@vger.kernel.org
20488 S:      Maintained
20489 F:      drivers/spi/spi-tegra210-quad.c
20490
20491 TEGRA VIDEO DRIVER
20492 M:      Thierry Reding <thierry.reding@gmail.com>
20493 M:      Jonathan Hunter <jonathanh@nvidia.com>
20494 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20495 L:      linux-media@vger.kernel.org
20496 L:      linux-tegra@vger.kernel.org
20497 S:      Maintained
20498 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20499 F:      drivers/staging/media/tegra-video/
20500
20501 TEGRA XUSB PADCTL DRIVER
20502 M:      JC Kuo <jckuo@nvidia.com>
20503 S:      Supported
20504 F:      drivers/phy/tegra/xusb*
20505
20506 TEHUTI ETHERNET DRIVER
20507 M:      Andy Gospodarek <andy@greyhouse.net>
20508 L:      netdev@vger.kernel.org
20509 S:      Supported
20510 F:      drivers/net/ethernet/tehuti/*
20511
20512 TELECOM CLOCK DRIVER FOR MCPL0010
20513 M:      Mark Gross <markgross@kernel.org>
20514 S:      Supported
20515 F:      drivers/char/tlclk.c
20516
20517 TEMPO SEMICONDUCTOR DRIVERS
20518 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20519 S:      Maintained
20520 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20521 F:      sound/soc/codecs/tscs*.c
20522 F:      sound/soc/codecs/tscs*.h
20523
20524 TENSILICA XTENSA PORT (xtensa)
20525 M:      Chris Zankel <chris@zankel.net>
20526 M:      Max Filippov <jcmvbkbc@gmail.com>
20527 L:      linux-xtensa@linux-xtensa.org
20528 S:      Maintained
20529 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20530 F:      arch/xtensa/
20531 F:      drivers/irqchip/irq-xtensa-*
20532
20533 TEXAS INSTRUMENTS ASoC DRIVERS
20534 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20535 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20536 S:      Maintained
20537 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20538 F:      sound/soc/ti/
20539
20540 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20541 M:      Ricardo Ribalda <ribalda@kernel.org>
20542 L:      linux-iio@vger.kernel.org
20543 S:      Supported
20544 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20545 F:      drivers/iio/dac/ti-dac7612.c
20546
20547 TEXAS INSTRUMENTS DMA DRIVERS
20548 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20549 L:      dmaengine@vger.kernel.org
20550 S:      Maintained
20551 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20552 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20553 F:      Documentation/devicetree/bindings/dma/ti/
20554 F:      drivers/dma/ti/
20555 X:      drivers/dma/ti/cppi41.c
20556 F:      include/linux/dma/k3-udma-glue.h
20557 F:      include/linux/dma/ti-cppi5.h
20558 F:      include/linux/dma/k3-psil.h
20559
20560 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20561 M:      Nishanth Menon <nm@ti.com>
20562 M:      Tero Kristo <kristo@kernel.org>
20563 M:      Santosh Shilimkar <ssantosh@kernel.org>
20564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20565 S:      Maintained
20566 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20567 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20568 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20569 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20570 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20571 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20572 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20573 F:      drivers/clk/keystone/sci-clk.c
20574 F:      drivers/firmware/ti_sci*
20575 F:      drivers/irqchip/irq-ti-sci-inta.c
20576 F:      drivers/irqchip/irq-ti-sci-intr.c
20577 F:      drivers/reset/reset-ti-sci.c
20578 F:      drivers/soc/ti/ti_sci_inta_msi.c
20579 F:      drivers/soc/ti/ti_sci_pm_domains.c
20580 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20581 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20582 F:      include/linux/soc/ti/ti_sci_protocol.h
20583
20584 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20585 M:      Robert Marko <robert.marko@sartura.hr>
20586 M:      Luka Perkov <luka.perkov@sartura.hr>
20587 L:      linux-hwmon@vger.kernel.org
20588 S:      Maintained
20589 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20590 F:      Documentation/hwmon/tps23861.rst
20591 F:      drivers/hwmon/tps23861.c
20592
20593 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20594 M:      Puranjay Mohan <puranjay12@gmail.com>
20595 L:      linux-iio@vger.kernel.org
20596 S:      Supported
20597 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20598 F:      drivers/iio/temperature/tmp117.c
20599
20600 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20601 M:      Hans Verkuil <hverkuil@xs4all.nl>
20602 L:      linux-media@vger.kernel.org
20603 S:      Maintained
20604 W:      https://linuxtv.org
20605 T:      git git://linuxtv.org/media_tree.git
20606 F:      drivers/media/radio/radio-raremono.c
20607
20608 THERMAL
20609 M:      Rafael J. Wysocki <rafael@kernel.org>
20610 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20611 R:      Amit Kucheria <amitk@kernel.org>
20612 R:      Zhang Rui <rui.zhang@intel.com>
20613 L:      linux-pm@vger.kernel.org
20614 S:      Supported
20615 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20617 F:      Documentation/ABI/testing/sysfs-class-thermal
20618 F:      Documentation/admin-guide/thermal/
20619 F:      Documentation/devicetree/bindings/thermal/
20620 F:      Documentation/driver-api/thermal/
20621 F:      drivers/thermal/
20622 F:      include/dt-bindings/thermal/
20623 F:      include/linux/cpu_cooling.h
20624 F:      include/linux/thermal.h
20625 F:      include/uapi/linux/thermal.h
20626 F:      tools/lib/thermal/
20627 F:      tools/thermal/
20628
20629 THERMAL DRIVER FOR AMLOGIC SOCS
20630 M:      Guillaume La Roque <glaroque@baylibre.com>
20631 L:      linux-pm@vger.kernel.org
20632 L:      linux-amlogic@lists.infradead.org
20633 S:      Supported
20634 W:      http://linux-meson.com/
20635 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20636 F:      drivers/thermal/amlogic_thermal.c
20637
20638 THERMAL/CPU_COOLING
20639 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20640 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20641 M:      Viresh Kumar <viresh.kumar@linaro.org>
20642 R:      Lukasz Luba <lukasz.luba@arm.com>
20643 L:      linux-pm@vger.kernel.org
20644 S:      Supported
20645 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20646 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20647 F:      drivers/thermal/cpufreq_cooling.c
20648 F:      drivers/thermal/cpuidle_cooling.c
20649 F:      include/linux/cpu_cooling.h
20650
20651 THERMAL/POWER_ALLOCATOR
20652 M:      Lukasz Luba <lukasz.luba@arm.com>
20653 L:      linux-pm@vger.kernel.org
20654 S:      Maintained
20655 F:      Documentation/driver-api/thermal/power_allocator.rst
20656 F:      drivers/thermal/gov_power_allocator.c
20657 F:      include/trace/events/thermal_power_allocator.h
20658
20659 THINKPAD ACPI EXTRAS DRIVER
20660 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20661 L:      ibm-acpi-devel@lists.sourceforge.net
20662 L:      platform-driver-x86@vger.kernel.org
20663 S:      Maintained
20664 W:      http://ibm-acpi.sourceforge.net
20665 W:      http://thinkwiki.org/wiki/Ibm-acpi
20666 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20667 F:      drivers/platform/x86/thinkpad_acpi.c
20668
20669 THINKPAD LMI DRIVER
20670 M:      Mark Pearson <markpearson@lenovo.com>
20671 L:      platform-driver-x86@vger.kernel.org
20672 S:      Maintained
20673 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20674 F:      drivers/platform/x86/think-lmi.?
20675
20676 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20677 M:      Isaac Hazan <isaac.hazan@intel.com>
20678 L:      linux-usb@vger.kernel.org
20679 S:      Maintained
20680 F:      drivers/thunderbolt/dma_test.c
20681
20682 THUNDERBOLT DRIVER
20683 M:      Andreas Noever <andreas.noever@gmail.com>
20684 M:      Michael Jamet <michael.jamet@intel.com>
20685 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20686 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20687 L:      linux-usb@vger.kernel.org
20688 S:      Maintained
20689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20690 F:      Documentation/admin-guide/thunderbolt.rst
20691 F:      drivers/thunderbolt/
20692 F:      include/linux/thunderbolt.h
20693
20694 THUNDERBOLT NETWORK DRIVER
20695 M:      Michael Jamet <michael.jamet@intel.com>
20696 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20697 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20698 L:      netdev@vger.kernel.org
20699 S:      Maintained
20700 F:      drivers/net/thunderbolt/
20701
20702 THUNDERX GPIO DRIVER
20703 M:      Robert Richter <rric@kernel.org>
20704 S:      Odd Fixes
20705 F:      drivers/gpio/gpio-thunderx.c
20706
20707 TI AM437X VPFE DRIVER
20708 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20709 L:      linux-media@vger.kernel.org
20710 S:      Maintained
20711 W:      https://linuxtv.org
20712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20713 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20714 F:      drivers/media/platform/ti/am437x/
20715
20716 TI BANDGAP AND THERMAL DRIVER
20717 M:      Eduardo Valentin <edubezval@gmail.com>
20718 M:      Keerthy <j-keerthy@ti.com>
20719 L:      linux-pm@vger.kernel.org
20720 L:      linux-omap@vger.kernel.org
20721 S:      Maintained
20722 F:      drivers/thermal/ti-soc-thermal/
20723
20724 TI BQ27XXX POWER SUPPLY DRIVER
20725 F:      drivers/power/supply/bq27xxx_battery.c
20726 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20727 F:      include/linux/power/bq27xxx_battery.h
20728
20729 TI CDCE706 CLOCK DRIVER
20730 M:      Max Filippov <jcmvbkbc@gmail.com>
20731 S:      Maintained
20732 F:      drivers/clk/clk-cdce706.c
20733
20734 TI CLOCK DRIVER
20735 M:      Tero Kristo <kristo@kernel.org>
20736 L:      linux-omap@vger.kernel.org
20737 S:      Odd Fixes
20738 F:      drivers/clk/ti/
20739 F:      include/linux/clk/ti.h
20740
20741 TI DAVINCI MACHINE SUPPORT
20742 M:      Sekhar Nori <nsekhar@ti.com>
20743 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20745 S:      Supported
20746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20747 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20748 F:      arch/arm/boot/dts/da850*
20749 F:      arch/arm/mach-davinci/
20750 F:      drivers/i2c/busses/i2c-davinci.c
20751
20752 TI DAVINCI SERIES CLOCK DRIVER
20753 M:      David Lechner <david@lechnology.com>
20754 R:      Sekhar Nori <nsekhar@ti.com>
20755 S:      Maintained
20756 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20757 F:      drivers/clk/davinci/
20758 F:      include/linux/clk/davinci.h
20759
20760 TI DAVINCI SERIES GPIO DRIVER
20761 M:      Keerthy <j-keerthy@ti.com>
20762 L:      linux-gpio@vger.kernel.org
20763 S:      Maintained
20764 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20765 F:      drivers/gpio/gpio-davinci.c
20766
20767 TI DAVINCI SERIES MEDIA DRIVER
20768 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20769 L:      linux-media@vger.kernel.org
20770 S:      Maintained
20771 W:      https://linuxtv.org
20772 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20773 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20774 F:      drivers/media/platform/ti/davinci/
20775 F:      include/media/davinci/
20776
20777 TI ENHANCED CAPTURE (eCAP) DRIVER
20778 M:      Vignesh Raghavendra <vigneshr@ti.com>
20779 R:      Julien Panis <jpanis@baylibre.com>
20780 L:      linux-iio@vger.kernel.org
20781 L:      linux-omap@vger.kernel.org
20782 S:      Maintained
20783 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
20784 F:      drivers/counter/ti-ecap-capture.c
20785
20786 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20787 R:      David Lechner <david@lechnology.com>
20788 L:      linux-iio@vger.kernel.org
20789 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20790 F:      drivers/counter/ti-eqep.c
20791
20792 TI ETHERNET SWITCH DRIVER (CPSW)
20793 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20794 L:      linux-omap@vger.kernel.org
20795 L:      netdev@vger.kernel.org
20796 S:      Maintained
20797 F:      drivers/net/ethernet/ti/cpsw*
20798 F:      drivers/net/ethernet/ti/davinci*
20799
20800 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20801 M:      Alex Dubov <oakad@yahoo.com>
20802 S:      Maintained
20803 W:      http://tifmxx.berlios.de/
20804 F:      drivers/memstick/host/tifm_ms.c
20805 F:      drivers/misc/tifm*
20806 F:      drivers/mmc/host/tifm_sd.c
20807 F:      include/linux/tifm.h
20808
20809 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20810 M:      Nishanth Menon <nm@ti.com>
20811 M:      Santosh Shilimkar <ssantosh@kernel.org>
20812 L:      linux-kernel@vger.kernel.org
20813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20814 S:      Maintained
20815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20816 F:      drivers/soc/ti/*
20817
20818 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20819 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20820 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20821 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20822 S:      Maintained
20823 F:      sound/soc/codecs/isabelle*
20824 F:      sound/soc/codecs/lm49453*
20825
20826 TI PCM3060 ASoC CODEC DRIVER
20827 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20828 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20829 S:      Maintained
20830 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20831 F:      sound/soc/codecs/pcm3060*
20832
20833 TI TAS571X FAMILY ASoC CODEC DRIVER
20834 M:      Kevin Cernekee <cernekee@chromium.org>
20835 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20836 S:      Odd Fixes
20837 F:      sound/soc/codecs/tas571x*
20838
20839 TI TRF7970A NFC DRIVER
20840 M:      Mark Greer <mgreer@animalcreek.com>
20841 L:      linux-wireless@vger.kernel.org
20842 L:      linux-nfc@lists.01.org (subscribers-only)
20843 S:      Supported
20844 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20845 F:      drivers/nfc/trf7970a.c
20846
20847 TI TSC2046 ADC DRIVER
20848 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20849 R:      kernel@pengutronix.de
20850 L:      linux-iio@vger.kernel.org
20851 S:      Maintained
20852 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20853 F:      drivers/iio/adc/ti-tsc2046.c
20854
20855 TI TWL4030 SERIES SOC CODEC DRIVER
20856 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20857 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20858 S:      Maintained
20859 F:      sound/soc/codecs/twl4030*
20860
20861 TI VPE/CAL DRIVERS
20862 M:      Benoit Parrot <bparrot@ti.com>
20863 L:      linux-media@vger.kernel.org
20864 S:      Maintained
20865 W:      http://linuxtv.org/
20866 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20867 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20868 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20869 F:      drivers/media/platform/ti/cal/
20870 F:      drivers/media/platform/ti/vpe/
20871
20872 TI WILINK WIRELESS DRIVERS
20873 L:      linux-wireless@vger.kernel.org
20874 S:      Orphan
20875 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20876 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20878 F:      drivers/net/wireless/ti/
20879
20880 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20881 M:      John Stultz <jstultz@google.com>
20882 M:      Thomas Gleixner <tglx@linutronix.de>
20883 R:      Stephen Boyd <sboyd@kernel.org>
20884 L:      linux-kernel@vger.kernel.org
20885 S:      Supported
20886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20887 F:      include/linux/clocksource.h
20888 F:      include/linux/time.h
20889 F:      include/linux/timex.h
20890 F:      include/uapi/linux/time.h
20891 F:      include/uapi/linux/timex.h
20892 F:      kernel/time/alarmtimer.c
20893 F:      kernel/time/clocksource.c
20894 F:      kernel/time/ntp.c
20895 F:      kernel/time/time*.c
20896 F:      tools/testing/selftests/timers/
20897
20898 TIPC NETWORK LAYER
20899 M:      Jon Maloy <jmaloy@redhat.com>
20900 M:      Ying Xue <ying.xue@windriver.com>
20901 L:      netdev@vger.kernel.org (core kernel code)
20902 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20903 S:      Maintained
20904 W:      http://tipc.sourceforge.net/
20905 F:      include/uapi/linux/tipc*.h
20906 F:      net/tipc/
20907
20908 TLAN NETWORK DRIVER
20909 M:      Samuel Chessman <chessman@tux.org>
20910 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20911 S:      Maintained
20912 W:      http://sourceforge.net/projects/tlan/
20913 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20914 F:      drivers/net/ethernet/ti/tlan.*
20915
20916 TM6000 VIDEO4LINUX DRIVER
20917 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20918 L:      linux-media@vger.kernel.org
20919 S:      Odd fixes
20920 W:      https://linuxtv.org
20921 T:      git git://linuxtv.org/media_tree.git
20922 F:      Documentation/admin-guide/media/tm6000*
20923 F:      drivers/staging/media/deprecated/tm6000/
20924
20925 TMIO/SDHI MMC DRIVER
20926 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20927 L:      linux-mmc@vger.kernel.org
20928 L:      linux-renesas-soc@vger.kernel.org
20929 S:      Supported
20930 F:      drivers/mmc/host/renesas_sdhi*
20931 F:      drivers/mmc/host/tmio_mmc*
20932 F:      include/linux/mfd/tmio.h
20933
20934 TMP401 HARDWARE MONITOR DRIVER
20935 M:      Guenter Roeck <linux@roeck-us.net>
20936 L:      linux-hwmon@vger.kernel.org
20937 S:      Maintained
20938 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20939 F:      Documentation/hwmon/tmp401.rst
20940 F:      drivers/hwmon/tmp401.c
20941
20942 TMP464 HARDWARE MONITOR DRIVER
20943 M:      Agathe Porte <agathe.porte@nokia.com>
20944 M:      Guenter Roeck <linux@roeck-us.net>
20945 L:      linux-hwmon@vger.kernel.org
20946 S:      Maintained
20947 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20948 F:      Documentation/hwmon/tmp464.rst
20949 F:      drivers/hwmon/tmp464.c
20950
20951 TMP513 HARDWARE MONITOR DRIVER
20952 M:      Eric Tremblay <etremblay@distech-controls.com>
20953 L:      linux-hwmon@vger.kernel.org
20954 S:      Maintained
20955 F:      Documentation/hwmon/tmp513.rst
20956 F:      drivers/hwmon/tmp513.c
20957
20958 TMPFS (SHMEM FILESYSTEM)
20959 M:      Hugh Dickins <hughd@google.com>
20960 L:      linux-mm@kvack.org
20961 S:      Maintained
20962 F:      include/linux/shmem_fs.h
20963 F:      mm/shmem.c
20964
20965 TOMOYO SECURITY MODULE
20966 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20967 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20968 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20969 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20970 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20971 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20972 S:      Maintained
20973 W:      https://tomoyo.osdn.jp/
20974 F:      security/tomoyo/
20975
20976 TOPSTAR LAPTOP EXTRAS DRIVER
20977 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20978 L:      platform-driver-x86@vger.kernel.org
20979 S:      Maintained
20980 F:      drivers/platform/x86/topstar-laptop.c
20981
20982 TORTURE-TEST MODULES
20983 M:      Davidlohr Bueso <dave@stgolabs.net>
20984 M:      "Paul E. McKenney" <paulmck@kernel.org>
20985 M:      Josh Triplett <josh@joshtriplett.org>
20986 L:      linux-kernel@vger.kernel.org
20987 S:      Supported
20988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20989 F:      Documentation/RCU/torture.rst
20990 F:      kernel/locking/locktorture.c
20991 F:      kernel/rcu/rcuscale.c
20992 F:      kernel/rcu/rcutorture.c
20993 F:      kernel/rcu/refscale.c
20994 F:      kernel/torture.c
20995
20996 TOSHIBA ACPI EXTRAS DRIVER
20997 M:      Azael Avalos <coproscefalo@gmail.com>
20998 L:      platform-driver-x86@vger.kernel.org
20999 S:      Maintained
21000 F:      drivers/platform/x86/toshiba_acpi.c
21001
21002 TOSHIBA BLUETOOTH DRIVER
21003 M:      Azael Avalos <coproscefalo@gmail.com>
21004 L:      platform-driver-x86@vger.kernel.org
21005 S:      Maintained
21006 F:      drivers/platform/x86/toshiba_bluetooth.c
21007
21008 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
21009 M:      Azael Avalos <coproscefalo@gmail.com>
21010 L:      platform-driver-x86@vger.kernel.org
21011 S:      Maintained
21012 F:      drivers/platform/x86/toshiba_haps.c
21013
21014 TOSHIBA SMM DRIVER
21015 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
21016 S:      Maintained
21017 W:      http://www.buzzard.org.uk/toshiba/
21018 F:      drivers/char/toshiba.c
21019 F:      include/linux/toshiba.h
21020 F:      include/uapi/linux/toshiba.h
21021
21022 TOSHIBA TC358743 DRIVER
21023 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21024 L:      linux-media@vger.kernel.org
21025 S:      Maintained
21026 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
21027 F:      drivers/media/i2c/tc358743*
21028 F:      include/media/i2c/tc358743.h
21029
21030 TOSHIBA WMI HOTKEYS DRIVER
21031 M:      Azael Avalos <coproscefalo@gmail.com>
21032 L:      platform-driver-x86@vger.kernel.org
21033 S:      Maintained
21034 F:      drivers/platform/x86/toshiba-wmi.c
21035
21036 TPM DEVICE DRIVER
21037 M:      Peter Huewe <peterhuewe@gmx.de>
21038 M:      Jarkko Sakkinen <jarkko@kernel.org>
21039 R:      Jason Gunthorpe <jgg@ziepe.ca>
21040 L:      linux-integrity@vger.kernel.org
21041 S:      Maintained
21042 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21043 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
21044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21045 F:      drivers/char/tpm/
21046
21047 TPS546D24 DRIVER
21048 M:      Duke Du <dukedu83@gmail.com>
21049 L:      linux-hwmon@vger.kernel.org
21050 S:      Maintained
21051 F:      Documentation/hwmon/tps546d24.rst
21052 F:      drivers/hwmon/pmbus/tps546d24.c
21053
21054 TRACING
21055 M:      Steven Rostedt <rostedt@goodmis.org>
21056 M:      Masami Hiramatsu <mhiramat@kernel.org>
21057 L:      linux-kernel@vger.kernel.org
21058 L:      linux-trace-kernel@vger.kernel.org
21059 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
21060 S:      Maintained
21061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21062 F:      Documentation/trace/*
21063 F:      fs/tracefs/
21064 F:      include/linux/trace*.h
21065 F:      include/trace/
21066 F:      kernel/trace/
21067 F:      scripts/tracing/
21068 F:      tools/testing/selftests/ftrace/
21069
21070 TRACING MMIO ACCESSES (MMIOTRACE)
21071 M:      Steven Rostedt <rostedt@goodmis.org>
21072 M:      Masami Hiramatsu <mhiramat@kernel.org>
21073 R:      Karol Herbst <karolherbst@gmail.com>
21074 R:      Pekka Paalanen <ppaalanen@gmail.com>
21075 L:      linux-kernel@vger.kernel.org
21076 L:      nouveau@lists.freedesktop.org
21077 S:      Maintained
21078 F:      arch/x86/mm/kmmio.c
21079 F:      arch/x86/mm/mmio-mod.c
21080 F:      arch/x86/mm/testmmiotrace.c
21081 F:      include/linux/mmiotrace.h
21082 F:      kernel/trace/trace_mmiotrace.c
21083
21084 TRACING OS NOISE / LATENCY TRACERS
21085 M:      Steven Rostedt <rostedt@goodmis.org>
21086 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21087 S:      Maintained
21088 F:      kernel/trace/trace_osnoise.c
21089 F:      include/trace/events/osnoise.h
21090 F:      kernel/trace/trace_hwlat.c
21091 F:      kernel/trace/trace_irqsoff.c
21092 F:      kernel/trace/trace_sched_wakeup.c
21093 F:      Documentation/trace/osnoise-tracer.rst
21094 F:      Documentation/trace/timerlat-tracer.rst
21095 F:      Documentation/trace/hwlat_detector.rst
21096 F:      arch/*/kernel/trace.c
21097
21098 Real-time Linux Analysis (RTLA) tools
21099 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21100 M:      Steven Rostedt <rostedt@goodmis.org>
21101 L:      linux-trace-devel@vger.kernel.org
21102 S:      Maintained
21103 F:      Documentation/tools/rtla/
21104 F:      tools/tracing/rtla/
21105
21106 TRADITIONAL CHINESE DOCUMENTATION
21107 M:      Hu Haowen <src.res@email.cn>
21108 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21109 S:      Maintained
21110 W:      https://github.com/srcres258/linux-doc
21111 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21112 F:      Documentation/translations/zh_TW/
21113
21114 TTY LAYER
21115 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21116 M:      Jiri Slaby <jirislaby@kernel.org>
21117 S:      Supported
21118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21119 F:      Documentation/driver-api/serial/
21120 F:      drivers/tty/
21121 F:      drivers/tty/serial/serial_core.c
21122 F:      include/linux/selection.h
21123 F:      include/linux/serial.h
21124 F:      include/linux/serial_core.h
21125 F:      include/linux/sysrq.h
21126 F:      include/linux/tty*.h
21127 F:      include/linux/vt.h
21128 F:      include/linux/vt_*.h
21129 F:      include/uapi/linux/serial.h
21130 F:      include/uapi/linux/serial_core.h
21131 F:      include/uapi/linux/tty.h
21132
21133 TUA9001 MEDIA DRIVER
21134 M:      Antti Palosaari <crope@iki.fi>
21135 L:      linux-media@vger.kernel.org
21136 S:      Maintained
21137 W:      https://linuxtv.org
21138 W:      http://palosaari.fi/linux/
21139 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21140 T:      git git://linuxtv.org/anttip/media_tree.git
21141 F:      drivers/media/tuners/tua9001*
21142
21143 TULIP NETWORK DRIVERS
21144 L:      netdev@vger.kernel.org
21145 L:      linux-parisc@vger.kernel.org
21146 S:      Orphan
21147 F:      drivers/net/ethernet/dec/tulip/
21148
21149 TUN/TAP driver
21150 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
21151 S:      Maintained
21152 W:      http://vtun.sourceforge.net/tun
21153 F:      Documentation/networking/tuntap.rst
21154 F:      arch/um/os-Linux/drivers/
21155
21156 TURBOCHANNEL SUBSYSTEM
21157 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21158 M:      Ralf Baechle <ralf@linux-mips.org>
21159 L:      linux-mips@vger.kernel.org
21160 S:      Maintained
21161 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21162 F:      drivers/tc/
21163 F:      include/linux/tc.h
21164
21165 TURBOSTAT UTILITY
21166 M:      "Len Brown" <lenb@kernel.org>
21167 L:      linux-pm@vger.kernel.org
21168 S:      Supported
21169 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21170 B:      https://bugzilla.kernel.org
21171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21172 F:      tools/power/x86/turbostat/
21173
21174 TW5864 VIDEO4LINUX DRIVER
21175 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21176 M:      Anton Sviridenko <anton@corp.bluecherry.net>
21177 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21178 M:      Andrey Utkin <andrey_utkin@fastmail.com>
21179 L:      linux-media@vger.kernel.org
21180 S:      Supported
21181 F:      drivers/media/pci/tw5864/
21182
21183 TW68 VIDEO4LINUX DRIVER
21184 M:      Hans Verkuil <hverkuil@xs4all.nl>
21185 L:      linux-media@vger.kernel.org
21186 S:      Odd Fixes
21187 W:      https://linuxtv.org
21188 T:      git git://linuxtv.org/media_tree.git
21189 F:      drivers/media/pci/tw68/
21190
21191 TW686X VIDEO4LINUX DRIVER
21192 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21193 L:      linux-media@vger.kernel.org
21194 S:      Maintained
21195 W:      http://linuxtv.org
21196 T:      git git://linuxtv.org/media_tree.git
21197 F:      drivers/media/pci/tw686x/
21198
21199 U-BOOT ENVIRONMENT VARIABLES
21200 M:      Rafał Miłecki <rafal@milecki.pl>
21201 S:      Maintained
21202 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21203 F:      drivers/nvmem/u-boot-env.c
21204
21205 UACCE ACCELERATOR FRAMEWORK
21206 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
21207 M:      Zhou Wang <wangzhou1@hisilicon.com>
21208 L:      linux-accelerators@lists.ozlabs.org
21209 L:      linux-kernel@vger.kernel.org
21210 S:      Maintained
21211 F:      Documentation/ABI/testing/sysfs-driver-uacce
21212 F:      Documentation/misc-devices/uacce.rst
21213 F:      drivers/misc/uacce/
21214 F:      include/linux/uacce.h
21215 F:      include/uapi/misc/uacce/
21216
21217 UBI FILE SYSTEM (UBIFS)
21218 M:      Richard Weinberger <richard@nod.at>
21219 L:      linux-mtd@lists.infradead.org
21220 S:      Supported
21221 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21224 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21225 F:      Documentation/filesystems/ubifs-authentication.rst
21226 F:      Documentation/filesystems/ubifs.rst
21227 F:      fs/ubifs/
21228
21229 UBLK USERSPACE BLOCK DRIVER
21230 M:      Ming Lei <ming.lei@redhat.com>
21231 L:      linux-block@vger.kernel.org
21232 S:      Maintained
21233 F:      Documentation/block/ublk.rst
21234 F:      drivers/block/ublk_drv.c
21235 F:      include/uapi/linux/ublk_cmd.h
21236
21237 UCLINUX (M68KNOMMU AND COLDFIRE)
21238 M:      Greg Ungerer <gerg@linux-m68k.org>
21239 L:      linux-m68k@lists.linux-m68k.org
21240 L:      uclinux-dev@uclinux.org  (subscribers-only)
21241 S:      Maintained
21242 W:      http://www.linux-m68k.org/
21243 W:      http://www.uclinux.org/
21244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21245 F:      arch/m68k/*/*_no.*
21246 F:      arch/m68k/68*/
21247 F:      arch/m68k/coldfire/
21248 F:      arch/m68k/include/asm/*_no.*
21249
21250 UDF FILESYSTEM
21251 M:      Jan Kara <jack@suse.com>
21252 S:      Maintained
21253 F:      Documentation/filesystems/udf.rst
21254 F:      fs/udf/
21255
21256 UDRAW TABLET
21257 M:      Bastien Nocera <hadess@hadess.net>
21258 L:      linux-input@vger.kernel.org
21259 S:      Maintained
21260 F:      drivers/hid/hid-udraw-ps3.c
21261
21262 UFS FILESYSTEM
21263 M:      Evgeniy Dushistov <dushistov@mail.ru>
21264 S:      Maintained
21265 F:      Documentation/admin-guide/ufs.rst
21266 F:      fs/ufs/
21267
21268 UHID USERSPACE HID IO DRIVER
21269 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21270 L:      linux-input@vger.kernel.org
21271 S:      Maintained
21272 F:      drivers/hid/uhid.c
21273 F:      include/uapi/linux/uhid.h
21274
21275 ULPI BUS
21276 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21277 L:      linux-usb@vger.kernel.org
21278 S:      Maintained
21279 F:      drivers/usb/common/ulpi.c
21280 F:      include/linux/ulpi/
21281
21282 UNICODE SUBSYSTEM
21283 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
21284 L:      linux-fsdevel@vger.kernel.org
21285 S:      Supported
21286 F:      fs/unicode/
21287
21288 UNIFDEF
21289 M:      Tony Finch <dot@dotat.at>
21290 S:      Maintained
21291 W:      http://dotat.at/prog/unifdef
21292 F:      scripts/unifdef.c
21293
21294 UNIFORM CDROM DRIVER
21295 M:      Phillip Potter <phil@philpotter.co.uk>
21296 S:      Maintained
21297 F:      Documentation/cdrom/
21298 F:      drivers/cdrom/cdrom.c
21299 F:      include/linux/cdrom.h
21300 F:      include/uapi/linux/cdrom.h
21301
21302 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21303 R:      Alim Akhtar <alim.akhtar@samsung.com>
21304 R:      Avri Altman <avri.altman@wdc.com>
21305 R:      Bart Van Assche <bvanassche@acm.org>
21306 L:      linux-scsi@vger.kernel.org
21307 S:      Supported
21308 F:      Documentation/devicetree/bindings/ufs/
21309 F:      Documentation/scsi/ufs.rst
21310 F:      drivers/ufs/core/
21311
21312 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21313 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
21314 L:      linux-scsi@vger.kernel.org
21315 S:      Supported
21316 F:      drivers/ufs/host/*dwc*
21317
21318 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21319 M:      Stanley Chu <stanley.chu@mediatek.com>
21320 L:      linux-scsi@vger.kernel.org
21321 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21322 S:      Maintained
21323 F:      drivers/ufs/host/ufs-mediatek*
21324
21325 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21326 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21327 L:      linux-renesas-soc@vger.kernel.org
21328 L:      linux-scsi@vger.kernel.org
21329 S:      Maintained
21330 F:      drivers/ufs/host/ufs-renesas.c
21331
21332 UNSORTED BLOCK IMAGES (UBI)
21333 M:      Richard Weinberger <richard@nod.at>
21334 L:      linux-mtd@lists.infradead.org
21335 S:      Supported
21336 W:      http://www.linux-mtd.infradead.org/
21337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21339 F:      drivers/mtd/ubi/
21340 F:      include/linux/mtd/ubi.h
21341 F:      include/uapi/mtd/ubi-user.h
21342
21343 USB "USBNET" DRIVER FRAMEWORK
21344 M:      Oliver Neukum <oneukum@suse.com>
21345 L:      netdev@vger.kernel.org
21346 S:      Maintained
21347 W:      http://www.linux-usb.org/usbnet
21348 F:      drivers/net/usb/usbnet.c
21349 F:      include/linux/usb/usbnet.h
21350
21351 USB ACM DRIVER
21352 M:      Oliver Neukum <oneukum@suse.com>
21353 L:      linux-usb@vger.kernel.org
21354 S:      Maintained
21355 F:      Documentation/usb/acm.rst
21356 F:      drivers/usb/class/cdc-acm.*
21357
21358 USB APPLE MFI FASTCHARGE DRIVER
21359 M:      Bastien Nocera <hadess@hadess.net>
21360 L:      linux-usb@vger.kernel.org
21361 S:      Maintained
21362 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21363
21364 USB AR5523 WIRELESS DRIVER
21365 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
21366 L:      linux-wireless@vger.kernel.org
21367 S:      Maintained
21368 F:      drivers/net/wireless/ath/ar5523/
21369
21370 USB ATTACHED SCSI
21371 M:      Oliver Neukum <oneukum@suse.com>
21372 L:      linux-usb@vger.kernel.org
21373 L:      linux-scsi@vger.kernel.org
21374 S:      Maintained
21375 F:      drivers/usb/storage/uas.c
21376
21377 USB CDC ETHERNET DRIVER
21378 M:      Oliver Neukum <oliver@neukum.org>
21379 L:      linux-usb@vger.kernel.org
21380 S:      Maintained
21381 F:      drivers/net/usb/cdc_*.c
21382 F:      include/uapi/linux/usb/cdc.h
21383
21384 USB CHAOSKEY DRIVER
21385 M:      Keith Packard <keithp@keithp.com>
21386 L:      linux-usb@vger.kernel.org
21387 S:      Maintained
21388 F:      drivers/usb/misc/chaoskey.c
21389
21390 USB CYPRESS C67X00 DRIVER
21391 L:      linux-usb@vger.kernel.org
21392 S:      Orphan
21393 F:      drivers/usb/c67x00/
21394
21395 USB DAVICOM DM9601 DRIVER
21396 M:      Peter Korsgaard <peter@korsgaard.com>
21397 L:      netdev@vger.kernel.org
21398 S:      Maintained
21399 W:      http://www.linux-usb.org/usbnet
21400 F:      drivers/net/usb/dm9601.c
21401
21402 USB EHCI DRIVER
21403 M:      Alan Stern <stern@rowland.harvard.edu>
21404 L:      linux-usb@vger.kernel.org
21405 S:      Maintained
21406 F:      Documentation/usb/ehci.rst
21407 F:      drivers/usb/host/ehci*
21408
21409 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21410 M:      Jiri Kosina <jikos@kernel.org>
21411 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21412 L:      linux-usb@vger.kernel.org
21413 S:      Maintained
21414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21415 F:      Documentation/hid/hiddev.rst
21416 F:      drivers/hid/usbhid/
21417
21418 USB INTEL XHCI ROLE MUX DRIVER
21419 M:      Hans de Goede <hdegoede@redhat.com>
21420 L:      linux-usb@vger.kernel.org
21421 S:      Maintained
21422 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21423
21424 USB IP DRIVER FOR HISILICON KIRIN 960
21425 M:      Yu Chen <chenyu56@huawei.com>
21426 M:      Binghui Wang <wangbinghui@hisilicon.com>
21427 L:      linux-usb@vger.kernel.org
21428 S:      Maintained
21429 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21430 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21431
21432 USB IP DRIVER FOR HISILICON KIRIN 970
21433 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21434 L:      linux-usb@vger.kernel.org
21435 S:      Maintained
21436 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21437 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21438
21439 USB ISP116X DRIVER
21440 M:      Olav Kongas <ok@artecdesign.ee>
21441 L:      linux-usb@vger.kernel.org
21442 S:      Maintained
21443 F:      drivers/usb/host/isp116x*
21444 F:      include/linux/usb/isp116x.h
21445
21446 USB ISP1760 DRIVER
21447 M:      Rui Miguel Silva <rui.silva@linaro.org>
21448 L:      linux-usb@vger.kernel.org
21449 S:      Maintained
21450 F:      drivers/usb/isp1760/*
21451 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21452
21453 USB LAN78XX ETHERNET DRIVER
21454 M:      Woojung Huh <woojung.huh@microchip.com>
21455 M:      UNGLinuxDriver@microchip.com
21456 L:      netdev@vger.kernel.org
21457 S:      Maintained
21458 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21459 F:      drivers/net/usb/lan78xx.*
21460 F:      include/dt-bindings/net/microchip-lan78xx.h
21461
21462 USB MASS STORAGE DRIVER
21463 M:      Alan Stern <stern@rowland.harvard.edu>
21464 L:      linux-usb@vger.kernel.org
21465 L:      usb-storage@lists.one-eyed-alien.net
21466 S:      Maintained
21467 F:      drivers/usb/storage/
21468
21469 USB MIDI DRIVER
21470 M:      Clemens Ladisch <clemens@ladisch.de>
21471 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21472 S:      Maintained
21473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21474 F:      sound/usb/midi.*
21475
21476 USB NETWORKING DRIVERS
21477 L:      linux-usb@vger.kernel.org
21478 S:      Odd Fixes
21479 F:      drivers/net/usb/
21480
21481 USB OHCI DRIVER
21482 M:      Alan Stern <stern@rowland.harvard.edu>
21483 L:      linux-usb@vger.kernel.org
21484 S:      Maintained
21485 F:      Documentation/usb/ohci.rst
21486 F:      drivers/usb/host/ohci*
21487
21488 USB OTG FSM (Finite State Machine)
21489 M:      Peter Chen <peter.chen@kernel.org>
21490 L:      linux-usb@vger.kernel.org
21491 S:      Maintained
21492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21493 F:      drivers/usb/common/usb-otg-fsm.c
21494
21495 USB OVER IP DRIVER
21496 M:      Valentina Manea <valentina.manea.m@gmail.com>
21497 M:      Shuah Khan <shuah@kernel.org>
21498 M:      Shuah Khan <skhan@linuxfoundation.org>
21499 L:      linux-usb@vger.kernel.org
21500 S:      Maintained
21501 F:      Documentation/usb/usbip_protocol.rst
21502 F:      drivers/usb/usbip/
21503 F:      tools/testing/selftests/drivers/usb/usbip/
21504 F:      tools/usb/usbip/
21505
21506 USB PEGASUS DRIVER
21507 M:      Petko Manolov <petkan@nucleusys.com>
21508 L:      linux-usb@vger.kernel.org
21509 L:      netdev@vger.kernel.org
21510 S:      Maintained
21511 W:      https://github.com/petkan/pegasus
21512 T:      git https://github.com/petkan/pegasus.git
21513 F:      drivers/net/usb/pegasus.*
21514
21515 USB PRINTER DRIVER (usblp)
21516 M:      Pete Zaitcev <zaitcev@redhat.com>
21517 L:      linux-usb@vger.kernel.org
21518 S:      Supported
21519 F:      drivers/usb/class/usblp.c
21520
21521 USB RAW GADGET DRIVER
21522 R:      Andrey Konovalov <andreyknvl@gmail.com>
21523 L:      linux-usb@vger.kernel.org
21524 S:      Maintained
21525 F:      Documentation/usb/raw-gadget.rst
21526 F:      drivers/usb/gadget/legacy/raw_gadget.c
21527 F:      include/uapi/linux/usb/raw_gadget.h
21528
21529 USB QMI WWAN NETWORK DRIVER
21530 M:      Bjørn Mork <bjorn@mork.no>
21531 L:      netdev@vger.kernel.org
21532 S:      Maintained
21533 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21534 F:      drivers/net/usb/qmi_wwan.c
21535
21536 USB RTL8150 DRIVER
21537 M:      Petko Manolov <petkan@nucleusys.com>
21538 L:      linux-usb@vger.kernel.org
21539 L:      netdev@vger.kernel.org
21540 S:      Maintained
21541 W:      https://github.com/petkan/rtl8150
21542 T:      git https://github.com/petkan/rtl8150.git
21543 F:      drivers/net/usb/rtl8150.c
21544
21545 USB SERIAL SUBSYSTEM
21546 M:      Johan Hovold <johan@kernel.org>
21547 L:      linux-usb@vger.kernel.org
21548 S:      Maintained
21549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21550 F:      Documentation/usb/usb-serial.rst
21551 F:      drivers/usb/serial/
21552 F:      include/linux/usb/serial.h
21553
21554 USB SMSC75XX ETHERNET DRIVER
21555 M:      Steve Glendinning <steve.glendinning@shawell.net>
21556 L:      netdev@vger.kernel.org
21557 S:      Maintained
21558 F:      drivers/net/usb/smsc75xx.*
21559
21560 USB SMSC95XX ETHERNET DRIVER
21561 M:      Steve Glendinning <steve.glendinning@shawell.net>
21562 M:      UNGLinuxDriver@microchip.com
21563 L:      netdev@vger.kernel.org
21564 S:      Maintained
21565 F:      drivers/net/usb/smsc95xx.*
21566
21567 USB SUBSYSTEM
21568 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21569 L:      linux-usb@vger.kernel.org
21570 S:      Supported
21571 W:      http://www.linux-usb.org
21572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21573 F:      Documentation/devicetree/bindings/usb/
21574 F:      Documentation/usb/
21575 F:      drivers/usb/
21576 F:      include/dt-bindings/usb/
21577 F:      include/linux/usb.h
21578 F:      include/linux/usb/
21579
21580 USB TYPEC BUS FOR ALTERNATE MODES
21581 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21582 L:      linux-usb@vger.kernel.org
21583 S:      Maintained
21584 F:      Documentation/ABI/testing/sysfs-bus-typec
21585 F:      Documentation/driver-api/usb/typec_bus.rst
21586 F:      drivers/usb/typec/altmodes/
21587 F:      include/linux/usb/typec_altmode.h
21588
21589 USB TYPEC CLASS
21590 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21591 L:      linux-usb@vger.kernel.org
21592 S:      Maintained
21593 F:      Documentation/ABI/testing/sysfs-class-typec
21594 F:      Documentation/driver-api/usb/typec.rst
21595 F:      drivers/usb/typec/
21596 F:      include/linux/usb/typec.h
21597
21598 USB TYPEC INTEL PMC MUX DRIVER
21599 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21600 L:      linux-usb@vger.kernel.org
21601 S:      Maintained
21602 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21603 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21604
21605 USB TYPEC PI3USB30532 MUX DRIVER
21606 M:      Hans de Goede <hdegoede@redhat.com>
21607 L:      linux-usb@vger.kernel.org
21608 S:      Maintained
21609 F:      drivers/usb/typec/mux/pi3usb30532.c
21610
21611 USB TYPEC PORT CONTROLLER DRIVERS
21612 M:      Guenter Roeck <linux@roeck-us.net>
21613 L:      linux-usb@vger.kernel.org
21614 S:      Maintained
21615 F:      drivers/usb/typec/tcpm/
21616
21617 USB UHCI DRIVER
21618 M:      Alan Stern <stern@rowland.harvard.edu>
21619 L:      linux-usb@vger.kernel.org
21620 S:      Maintained
21621 F:      drivers/usb/host/uhci*
21622
21623 USB VIDEO CLASS
21624 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21625 L:      linux-media@vger.kernel.org
21626 S:      Maintained
21627 W:      http://www.ideasonboard.org/uvc/
21628 T:      git git://linuxtv.org/media_tree.git
21629 F:      drivers/media/usb/uvc/
21630 F:      include/uapi/linux/uvcvideo.h
21631
21632 USB WEBCAM GADGET
21633 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21634 M:      Daniel Scally <dan.scally@ideasonboard.com>
21635 L:      linux-usb@vger.kernel.org
21636 S:      Maintained
21637 F:      drivers/usb/gadget/function/*uvc*
21638 F:      drivers/usb/gadget/legacy/webcam.c
21639 F:      include/uapi/linux/usb/g_uvc.h
21640
21641 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21642 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21643 L:      linux-wireless@vger.kernel.org
21644 S:      Maintained
21645 F:      drivers/net/wireless/rndis_wlan.c
21646
21647 USB XHCI DRIVER
21648 M:      Mathias Nyman <mathias.nyman@intel.com>
21649 L:      linux-usb@vger.kernel.org
21650 S:      Supported
21651 F:      drivers/usb/host/pci-quirks*
21652 F:      drivers/usb/host/xhci*
21653
21654 USB ZD1201 DRIVER
21655 L:      linux-wireless@vger.kernel.org
21656 S:      Orphan
21657 W:      http://linux-lc100020.sourceforge.net
21658 F:      drivers/net/wireless/zydas/zd1201.*
21659
21660 USB ZR364XX DRIVER
21661 M:      Antoine Jacquet <royale@zerezo.com>
21662 L:      linux-usb@vger.kernel.org
21663 L:      linux-media@vger.kernel.org
21664 S:      Maintained
21665 W:      http://royale.zerezo.com/zr364xx/
21666 T:      git git://linuxtv.org/media_tree.git
21667 F:      Documentation/admin-guide/media/zr364xx*
21668 F:      drivers/staging/media/deprecated/zr364xx/
21669
21670 USER DATAGRAM PROTOCOL (UDP)
21671 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21672 S:      Maintained
21673 F:      include/linux/udp.h
21674 F:      net/ipv4/udp.c
21675 F:      net/ipv6/udp.c
21676
21677 USER-MODE LINUX (UML)
21678 M:      Richard Weinberger <richard@nod.at>
21679 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21680 M:      Johannes Berg <johannes@sipsolutions.net>
21681 L:      linux-um@lists.infradead.org
21682 S:      Maintained
21683 W:      http://user-mode-linux.sourceforge.net
21684 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21687 F:      Documentation/virt/uml/
21688 F:      arch/um/
21689 F:      arch/x86/um/
21690 F:      fs/hostfs/
21691
21692 USERSPACE COPYIN/COPYOUT (UIOVEC)
21693 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21694 S:      Maintained
21695 F:      include/linux/uio.h
21696 F:      lib/iov_iter.c
21697
21698 USERSPACE DMA BUFFER DRIVER
21699 M:      Gerd Hoffmann <kraxel@redhat.com>
21700 L:      dri-devel@lists.freedesktop.org
21701 S:      Maintained
21702 T:      git git://anongit.freedesktop.org/drm/drm-misc
21703 F:      drivers/dma-buf/udmabuf.c
21704 F:      include/uapi/linux/udmabuf.h
21705
21706 USERSPACE I/O (UIO)
21707 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21708 S:      Maintained
21709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21710 F:      Documentation/driver-api/uio-howto.rst
21711 F:      drivers/uio/
21712 F:      include/linux/uio_driver.h
21713
21714 UTIL-LINUX PACKAGE
21715 M:      Karel Zak <kzak@redhat.com>
21716 L:      util-linux@vger.kernel.org
21717 S:      Maintained
21718 W:      http://en.wikipedia.org/wiki/Util-linux
21719 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21720
21721 UUID HELPERS
21722 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21723 L:      linux-kernel@vger.kernel.org
21724 S:      Maintained
21725 F:      include/linux/uuid.h
21726 F:      include/uapi/linux/uuid.h
21727 F:      lib/test_uuid.c
21728 F:      lib/uuid.c
21729
21730 UV SYSFS DRIVER
21731 M:      Justin Ernst <justin.ernst@hpe.com>
21732 L:      platform-driver-x86@vger.kernel.org
21733 S:      Maintained
21734 F:      drivers/platform/x86/uv_sysfs.c
21735
21736 UVESAFB DRIVER
21737 M:      Michal Januszewski <spock@gentoo.org>
21738 L:      linux-fbdev@vger.kernel.org
21739 S:      Maintained
21740 W:      https://github.com/mjanusz/v86d
21741 F:      Documentation/fb/uvesafb.rst
21742 F:      drivers/video/fbdev/uvesafb.*
21743
21744 Ux500 CLOCK DRIVERS
21745 M:      Ulf Hansson <ulf.hansson@linaro.org>
21746 L:      linux-clk@vger.kernel.org
21747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21748 S:      Maintained
21749 F:      drivers/clk/ux500/
21750
21751 VF610 NAND DRIVER
21752 M:      Stefan Agner <stefan@agner.ch>
21753 L:      linux-mtd@lists.infradead.org
21754 S:      Supported
21755 F:      drivers/mtd/nand/raw/vf610_nfc.c
21756
21757 VFAT/FAT/MSDOS FILESYSTEM
21758 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21759 S:      Maintained
21760 F:      Documentation/filesystems/vfat.rst
21761 F:      fs/fat/
21762 F:      tools/testing/selftests/filesystems/fat/
21763
21764 VFIO DRIVER
21765 M:      Alex Williamson <alex.williamson@redhat.com>
21766 R:      Cornelia Huck <cohuck@redhat.com>
21767 L:      kvm@vger.kernel.org
21768 S:      Maintained
21769 T:      git https://github.com/awilliam/linux-vfio.git
21770 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
21771 F:      Documentation/driver-api/vfio.rst
21772 F:      drivers/vfio/
21773 F:      include/linux/vfio.h
21774 F:      include/linux/vfio_pci_core.h
21775 F:      include/uapi/linux/vfio.h
21776
21777 VFIO FSL-MC DRIVER
21778 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21779 L:      kvm@vger.kernel.org
21780 S:      Maintained
21781 F:      drivers/vfio/fsl-mc/
21782
21783 VFIO HISILICON PCI DRIVER
21784 M:      Longfang Liu <liulongfang@huawei.com>
21785 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21786 L:      kvm@vger.kernel.org
21787 S:      Maintained
21788 F:      drivers/vfio/pci/hisilicon/
21789
21790 VFIO MEDIATED DEVICE DRIVERS
21791 M:      Kirti Wankhede <kwankhede@nvidia.com>
21792 L:      kvm@vger.kernel.org
21793 S:      Maintained
21794 F:      Documentation/driver-api/vfio-mediated-device.rst
21795 F:      drivers/vfio/mdev/
21796 F:      include/linux/mdev.h
21797 F:      samples/vfio-mdev/
21798
21799 VFIO PCI DEVICE SPECIFIC DRIVERS
21800 R:      Jason Gunthorpe <jgg@nvidia.com>
21801 R:      Yishai Hadas <yishaih@nvidia.com>
21802 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21803 R:      Kevin Tian <kevin.tian@intel.com>
21804 L:      kvm@vger.kernel.org
21805 S:      Maintained
21806 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21807 F:      drivers/vfio/pci/*/
21808
21809 VFIO PLATFORM DRIVER
21810 M:      Eric Auger <eric.auger@redhat.com>
21811 L:      kvm@vger.kernel.org
21812 S:      Maintained
21813 F:      drivers/vfio/platform/
21814
21815 VFIO MLX5 PCI DRIVER
21816 M:      Yishai Hadas <yishaih@nvidia.com>
21817 L:      kvm@vger.kernel.org
21818 S:      Maintained
21819 F:      drivers/vfio/pci/mlx5/
21820
21821 VGA_SWITCHEROO
21822 R:      Lukas Wunner <lukas@wunner.de>
21823 S:      Maintained
21824 T:      git git://anongit.freedesktop.org/drm/drm-misc
21825 F:      Documentation/gpu/vga-switcheroo.rst
21826 F:      drivers/gpu/vga/vga_switcheroo.c
21827 F:      include/linux/vga_switcheroo.h
21828
21829 VIA RHINE NETWORK DRIVER
21830 S:      Maintained
21831 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21832 F:      drivers/net/ethernet/via/via-rhine.c
21833
21834 VIA SD/MMC CARD CONTROLLER DRIVER
21835 M:      Bruce Chang <brucechang@via.com.tw>
21836 M:      Harald Welte <HaraldWelte@viatech.com>
21837 S:      Maintained
21838 F:      drivers/mmc/host/via-sdmmc.c
21839
21840 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21841 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21842 L:      linux-fbdev@vger.kernel.org
21843 S:      Maintained
21844 F:      drivers/video/fbdev/via/
21845 F:      include/linux/via-core.h
21846 F:      include/linux/via-gpio.h
21847 F:      include/linux/via_i2c.h
21848
21849 VIA VELOCITY NETWORK DRIVER
21850 M:      Francois Romieu <romieu@fr.zoreil.com>
21851 L:      netdev@vger.kernel.org
21852 S:      Maintained
21853 F:      drivers/net/ethernet/via/via-velocity.*
21854
21855 VICODEC VIRTUAL CODEC DRIVER
21856 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21857 L:      linux-media@vger.kernel.org
21858 S:      Maintained
21859 W:      https://linuxtv.org
21860 T:      git git://linuxtv.org/media_tree.git
21861 F:      drivers/media/test-drivers/vicodec/*
21862
21863 VIDEO I2C POLLING DRIVER
21864 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21865 L:      linux-media@vger.kernel.org
21866 S:      Maintained
21867 F:      drivers/media/i2c/video-i2c.c
21868
21869 VIDEO MULTIPLEXER DRIVER
21870 M:      Philipp Zabel <p.zabel@pengutronix.de>
21871 L:      linux-media@vger.kernel.org
21872 S:      Maintained
21873 F:      drivers/media/platform/video-mux.c
21874
21875 VIDEOBUF2 FRAMEWORK
21876 M:      Tomasz Figa <tfiga@chromium.org>
21877 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21878 L:      linux-media@vger.kernel.org
21879 S:      Maintained
21880 F:      drivers/media/common/videobuf2/*
21881 F:      include/media/videobuf2-*
21882
21883 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21884 M:      Shuah Khan <skhan@linuxfoundation.org>
21885 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21886 L:      linux-media@vger.kernel.org
21887 S:      Maintained
21888 W:      https://linuxtv.org
21889 T:      git git://linuxtv.org/media_tree.git
21890 F:      drivers/media/test-drivers/vimc/*
21891
21892 VIRT LIB
21893 M:      Alex Williamson <alex.williamson@redhat.com>
21894 M:      Paolo Bonzini <pbonzini@redhat.com>
21895 L:      kvm@vger.kernel.org
21896 S:      Supported
21897 F:      virt/lib/
21898
21899 VIRTIO AND VHOST VSOCK DRIVER
21900 M:      Stefan Hajnoczi <stefanha@redhat.com>
21901 M:      Stefano Garzarella <sgarzare@redhat.com>
21902 L:      kvm@vger.kernel.org
21903 L:      virtualization@lists.linux-foundation.org
21904 L:      netdev@vger.kernel.org
21905 S:      Maintained
21906 F:      drivers/vhost/vsock.c
21907 F:      include/linux/virtio_vsock.h
21908 F:      include/uapi/linux/virtio_vsock.h
21909 F:      net/vmw_vsock/virtio_transport.c
21910 F:      net/vmw_vsock/virtio_transport_common.c
21911
21912 VIRTIO BLOCK AND SCSI DRIVERS
21913 M:      "Michael S. Tsirkin" <mst@redhat.com>
21914 M:      Jason Wang <jasowang@redhat.com>
21915 R:      Paolo Bonzini <pbonzini@redhat.com>
21916 R:      Stefan Hajnoczi <stefanha@redhat.com>
21917 L:      virtualization@lists.linux-foundation.org
21918 S:      Maintained
21919 F:      drivers/block/virtio_blk.c
21920 F:      drivers/scsi/virtio_scsi.c
21921 F:      drivers/vhost/scsi.c
21922 F:      include/uapi/linux/virtio_blk.h
21923 F:      include/uapi/linux/virtio_scsi.h
21924
21925 VIRTIO CONSOLE DRIVER
21926 M:      Amit Shah <amit@kernel.org>
21927 L:      virtualization@lists.linux-foundation.org
21928 S:      Maintained
21929 F:      drivers/char/virtio_console.c
21930 F:      include/linux/virtio_console.h
21931 F:      include/uapi/linux/virtio_console.h
21932
21933 VIRTIO CORE AND NET DRIVERS
21934 M:      "Michael S. Tsirkin" <mst@redhat.com>
21935 M:      Jason Wang <jasowang@redhat.com>
21936 L:      virtualization@lists.linux-foundation.org
21937 S:      Maintained
21938 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21939 F:      Documentation/ABI/testing/sysfs-class-vduse
21940 F:      Documentation/devicetree/bindings/virtio/
21941 F:      drivers/block/virtio_blk.c
21942 F:      drivers/crypto/virtio/
21943 F:      drivers/net/virtio_net.c
21944 F:      drivers/vdpa/
21945 F:      drivers/virtio/
21946 F:      include/linux/vdpa.h
21947 F:      include/linux/virtio*.h
21948 F:      include/uapi/linux/virtio_*.h
21949 F:      tools/virtio/
21950
21951 VISL VIRTUAL STATELESS DECODER DRIVER
21952 M:      Daniel Almeida <daniel.almeida@collabora.com>
21953 L:      linux-media@vger.kernel.org
21954 S:      Supported
21955 F:      drivers/media/test-drivers/visl
21956
21957 IFCVF VIRTIO DATA PATH ACCELERATOR
21958 R:      Zhu Lingshan <lingshan.zhu@intel.com>
21959 F:      drivers/vdpa/ifcvf/
21960
21961 VIRTIO BALLOON
21962 M:      "Michael S. Tsirkin" <mst@redhat.com>
21963 M:      David Hildenbrand <david@redhat.com>
21964 L:      virtualization@lists.linux-foundation.org
21965 S:      Maintained
21966 F:      drivers/virtio/virtio_balloon.c
21967 F:      include/uapi/linux/virtio_balloon.h
21968 F:      include/linux/balloon_compaction.h
21969 F:      mm/balloon_compaction.c
21970
21971 VIRTIO CRYPTO DRIVER
21972 M:      Gonglei <arei.gonglei@huawei.com>
21973 L:      virtualization@lists.linux-foundation.org
21974 L:      linux-crypto@vger.kernel.org
21975 S:      Maintained
21976 F:      drivers/crypto/virtio/
21977 F:      include/uapi/linux/virtio_crypto.h
21978
21979 VIRTIO DRIVERS FOR S390
21980 M:      Cornelia Huck <cohuck@redhat.com>
21981 M:      Halil Pasic <pasic@linux.ibm.com>
21982 M:      Eric Farman <farman@linux.ibm.com>
21983 L:      linux-s390@vger.kernel.org
21984 L:      virtualization@lists.linux-foundation.org
21985 L:      kvm@vger.kernel.org
21986 S:      Supported
21987 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21988 F:      drivers/s390/virtio/
21989
21990 VIRTIO FILE SYSTEM
21991 M:      Vivek Goyal <vgoyal@redhat.com>
21992 M:      Stefan Hajnoczi <stefanha@redhat.com>
21993 M:      Miklos Szeredi <miklos@szeredi.hu>
21994 L:      virtualization@lists.linux-foundation.org
21995 L:      linux-fsdevel@vger.kernel.org
21996 S:      Supported
21997 W:      https://virtio-fs.gitlab.io/
21998 F:      Documentation/filesystems/virtiofs.rst
21999 F:      fs/fuse/virtio_fs.c
22000 F:      include/uapi/linux/virtio_fs.h
22001
22002 VIRTIO GPIO DRIVER
22003 M:      Enrico Weigelt, metux IT consult <info@metux.net>
22004 M:      Viresh Kumar <vireshk@kernel.org>
22005 L:      linux-gpio@vger.kernel.org
22006 L:      virtualization@lists.linux-foundation.org
22007 S:      Maintained
22008 F:      drivers/gpio/gpio-virtio.c
22009 F:      include/uapi/linux/virtio_gpio.h
22010
22011 VIRTIO GPU DRIVER
22012 M:      David Airlie <airlied@redhat.com>
22013 M:      Gerd Hoffmann <kraxel@redhat.com>
22014 R:      Gurchetan Singh <gurchetansingh@chromium.org>
22015 R:      Chia-I Wu <olvaffe@gmail.com>
22016 L:      dri-devel@lists.freedesktop.org
22017 L:      virtualization@lists.linux-foundation.org
22018 S:      Maintained
22019 T:      git git://anongit.freedesktop.org/drm/drm-misc
22020 F:      drivers/gpu/drm/virtio/
22021 F:      include/uapi/linux/virtio_gpu.h
22022
22023 VIRTIO HOST (VHOST)
22024 M:      "Michael S. Tsirkin" <mst@redhat.com>
22025 M:      Jason Wang <jasowang@redhat.com>
22026 L:      kvm@vger.kernel.org
22027 L:      virtualization@lists.linux-foundation.org
22028 L:      netdev@vger.kernel.org
22029 S:      Maintained
22030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22031 F:      drivers/vhost/
22032 F:      include/linux/vhost_iotlb.h
22033 F:      include/uapi/linux/vhost.h
22034
22035 VIRTIO INPUT DRIVER
22036 M:      Gerd Hoffmann <kraxel@redhat.com>
22037 S:      Maintained
22038 F:      drivers/virtio/virtio_input.c
22039 F:      include/uapi/linux/virtio_input.h
22040
22041 VIRTIO IOMMU DRIVER
22042 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
22043 L:      virtualization@lists.linux-foundation.org
22044 S:      Maintained
22045 F:      drivers/iommu/virtio-iommu.c
22046 F:      include/uapi/linux/virtio_iommu.h
22047
22048 VIRTIO MEM DRIVER
22049 M:      David Hildenbrand <david@redhat.com>
22050 L:      virtualization@lists.linux-foundation.org
22051 S:      Maintained
22052 W:      https://virtio-mem.gitlab.io/
22053 F:      drivers/virtio/virtio_mem.c
22054 F:      include/uapi/linux/virtio_mem.h
22055
22056 VIRTIO SOUND DRIVER
22057 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
22058 M:      "Michael S. Tsirkin" <mst@redhat.com>
22059 L:      virtualization@lists.linux-foundation.org
22060 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22061 S:      Maintained
22062 F:      include/uapi/linux/virtio_snd.h
22063 F:      sound/virtio/*
22064
22065 VIRTIO I2C DRIVER
22066 M:      Conghui Chen <conghui.chen@intel.com>
22067 M:      Viresh Kumar <viresh.kumar@linaro.org>
22068 L:      linux-i2c@vger.kernel.org
22069 L:      virtualization@lists.linux-foundation.org
22070 S:      Maintained
22071 F:      drivers/i2c/busses/i2c-virtio.c
22072 F:      include/uapi/linux/virtio_i2c.h
22073
22074 VIRTIO PMEM DRIVER
22075 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
22076 L:      virtualization@lists.linux-foundation.org
22077 S:      Maintained
22078 F:      drivers/nvdimm/virtio_pmem.c
22079 F:      drivers/nvdimm/nd_virtio.c
22080
22081 VIRTUAL BOX GUEST DEVICE DRIVER
22082 M:      Hans de Goede <hdegoede@redhat.com>
22083 M:      Arnd Bergmann <arnd@arndb.de>
22084 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22085 S:      Maintained
22086 F:      drivers/virt/vboxguest/
22087 F:      include/linux/vbox_utils.h
22088 F:      include/uapi/linux/vbox*.h
22089
22090 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22091 M:      Hans de Goede <hdegoede@redhat.com>
22092 L:      linux-fsdevel@vger.kernel.org
22093 S:      Maintained
22094 F:      fs/vboxsf/*
22095
22096 VIRTUAL SERIO DEVICE DRIVER
22097 M:      Stephen Chandler Paul <thatslyude@gmail.com>
22098 S:      Maintained
22099 F:      drivers/input/serio/userio.c
22100 F:      include/uapi/linux/userio.h
22101
22102 VIVID VIRTUAL VIDEO DRIVER
22103 M:      Hans Verkuil <hverkuil@xs4all.nl>
22104 L:      linux-media@vger.kernel.org
22105 S:      Maintained
22106 W:      https://linuxtv.org
22107 T:      git git://linuxtv.org/media_tree.git
22108 F:      drivers/media/test-drivers/vivid/*
22109
22110 VIDTV VIRTUAL DIGITAL TV DRIVER
22111 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22112 L:      linux-media@vger.kernel.org
22113 S:      Maintained
22114 W:      https://linuxtv.org
22115 T:      git git://linuxtv.org/media_tree.git
22116 F:      drivers/media/test-drivers/vidtv/*
22117
22118 VLYNQ BUS
22119 M:      Florian Fainelli <f.fainelli@gmail.com>
22120 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
22121 S:      Maintained
22122 F:      drivers/vlynq/vlynq.c
22123 F:      include/linux/vlynq.h
22124
22125 VME SUBSYSTEM
22126 M:      Martyn Welch <martyn@welchs.me.uk>
22127 M:      Manohar Vanga <manohar.vanga@gmail.com>
22128 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22129 L:      linux-kernel@vger.kernel.org
22130 S:      Odd fixes
22131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22132 F:      Documentation/driver-api/vme.rst
22133 F:      drivers/staging/vme_user/
22134
22135 VM SOCKETS (AF_VSOCK)
22136 M:      Stefano Garzarella <sgarzare@redhat.com>
22137 L:      virtualization@lists.linux-foundation.org
22138 L:      netdev@vger.kernel.org
22139 S:      Maintained
22140 F:      drivers/net/vsockmon.c
22141 F:      include/net/af_vsock.h
22142 F:      include/uapi/linux/vm_sockets.h
22143 F:      include/uapi/linux/vm_sockets_diag.h
22144 F:      include/uapi/linux/vsockmon.h
22145 F:      net/vmw_vsock/
22146 F:      tools/testing/vsock/
22147
22148 VMWARE BALLOON DRIVER
22149 M:      Nadav Amit <namit@vmware.com>
22150 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22151 L:      linux-kernel@vger.kernel.org
22152 S:      Supported
22153 F:      drivers/misc/vmw_balloon.c
22154
22155 VMWARE HYPERVISOR INTERFACE
22156 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22157 M:      Alexey Makhalov <amakhalov@vmware.com>
22158 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22159 L:      virtualization@lists.linux-foundation.org
22160 L:      x86@kernel.org
22161 S:      Supported
22162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22163 F:      arch/x86/include/asm/vmware.h
22164 F:      arch/x86/kernel/cpu/vmware.c
22165
22166 VMWARE PVRDMA DRIVER
22167 M:      Bryan Tan <bryantan@vmware.com>
22168 M:      Vishnu Dasa <vdasa@vmware.com>
22169 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22170 L:      linux-rdma@vger.kernel.org
22171 S:      Supported
22172 F:      drivers/infiniband/hw/vmw_pvrdma/
22173
22174 VMWARE PVSCSI DRIVER
22175 M:      Vishal Bhakta <vbhakta@vmware.com>
22176 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22177 L:      linux-scsi@vger.kernel.org
22178 S:      Supported
22179 F:      drivers/scsi/vmw_pvscsi.c
22180 F:      drivers/scsi/vmw_pvscsi.h
22181
22182 VMWARE VIRTUAL PTP CLOCK DRIVER
22183 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22184 M:      Deep Shah <sdeep@vmware.com>
22185 R:      Alexey Makhalov <amakhalov@vmware.com>
22186 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22187 L:      netdev@vger.kernel.org
22188 S:      Supported
22189 F:      drivers/ptp/ptp_vmw.c
22190
22191 VMWARE VMCI DRIVER
22192 M:      Bryan Tan <bryantan@vmware.com>
22193 M:      Vishnu Dasa <vdasa@vmware.com>
22194 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22195 L:      linux-kernel@vger.kernel.org
22196 S:      Supported
22197 F:      drivers/misc/vmw_vmci/
22198 F:      include/linux/vmw_vmci*
22199
22200 VMWARE VMMOUSE SUBDRIVER
22201 M:      Zack Rusin <zackr@vmware.com>
22202 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22203 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22204 L:      linux-input@vger.kernel.org
22205 S:      Supported
22206 F:      drivers/input/mouse/vmmouse.c
22207 F:      drivers/input/mouse/vmmouse.h
22208
22209 VMWARE VMXNET3 ETHERNET DRIVER
22210 M:      Ronak Doshi <doshir@vmware.com>
22211 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22212 L:      netdev@vger.kernel.org
22213 S:      Supported
22214 F:      drivers/net/vmxnet3/
22215
22216 VMWARE VSOCK VMCI TRANSPORT DRIVER
22217 M:      Bryan Tan <bryantan@vmware.com>
22218 M:      Vishnu Dasa <vdasa@vmware.com>
22219 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22220 L:      linux-kernel@vger.kernel.org
22221 S:      Supported
22222 F:      net/vmw_vsock/vmci_transport*
22223
22224 VOCORE VOCORE2 BOARD
22225 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
22226 L:      linux-mips@vger.kernel.org
22227 S:      Maintained
22228 F:      arch/mips/boot/dts/ralink/vocore2.dts
22229
22230 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22231 M:      Liam Girdwood <lgirdwood@gmail.com>
22232 M:      Mark Brown <broonie@kernel.org>
22233 L:      linux-kernel@vger.kernel.org
22234 S:      Supported
22235 W:      http://www.slimlogic.co.uk/?p=48
22236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22237 F:      Documentation/devicetree/bindings/regulator/
22238 F:      Documentation/power/regulator/
22239 F:      drivers/regulator/
22240 F:      include/dt-bindings/regulator/
22241 F:      include/linux/regulator/
22242 K:      regulator_get_optional
22243
22244 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22245 R:      Matti Vaittinen <mazziesaccount@gmail.com>
22246 F:      drivers/regulator/irq_helpers.c
22247
22248 VRF
22249 M:      David Ahern <dsahern@kernel.org>
22250 L:      netdev@vger.kernel.org
22251 S:      Maintained
22252 F:      Documentation/networking/vrf.rst
22253 F:      drivers/net/vrf.c
22254
22255 VSPRINTF
22256 M:      Petr Mladek <pmladek@suse.com>
22257 M:      Steven Rostedt <rostedt@goodmis.org>
22258 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22259 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22260 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
22261 S:      Maintained
22262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22263 F:      Documentation/core-api/printk-formats.rst
22264 F:      lib/test_printf.c
22265 F:      lib/test_scanf.c
22266 F:      lib/vsprintf.c
22267
22268 VT1211 HARDWARE MONITOR DRIVER
22269 M:      Juerg Haefliger <juergh@proton.me>
22270 L:      linux-hwmon@vger.kernel.org
22271 S:      Maintained
22272 F:      Documentation/hwmon/vt1211.rst
22273 F:      drivers/hwmon/vt1211.c
22274
22275 VT8231 HARDWARE MONITOR DRIVER
22276 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
22277 L:      linux-hwmon@vger.kernel.org
22278 S:      Maintained
22279 F:      drivers/hwmon/vt8231.c
22280
22281 VUB300 USB to SDIO/SD/MMC bridge chip
22282 L:      linux-mmc@vger.kernel.org
22283 S:      Orphan
22284 F:      drivers/mmc/host/vub300.c
22285
22286 W1 DALLAS'S 1-WIRE BUS
22287 M:      Evgeniy Polyakov <zbr@ioremap.net>
22288 S:      Maintained
22289 F:      Documentation/devicetree/bindings/w1/
22290 F:      Documentation/w1/
22291 F:      drivers/w1/
22292 F:      include/linux/w1.h
22293
22294 W83791D HARDWARE MONITORING DRIVER
22295 M:      Marc Hulsman <m.hulsman@tudelft.nl>
22296 L:      linux-hwmon@vger.kernel.org
22297 S:      Maintained
22298 F:      Documentation/hwmon/w83791d.rst
22299 F:      drivers/hwmon/w83791d.c
22300
22301 W83793 HARDWARE MONITORING DRIVER
22302 M:      Rudolf Marek <r.marek@assembler.cz>
22303 L:      linux-hwmon@vger.kernel.org
22304 S:      Maintained
22305 F:      Documentation/hwmon/w83793.rst
22306 F:      drivers/hwmon/w83793.c
22307
22308 W83795 HARDWARE MONITORING DRIVER
22309 M:      Jean Delvare <jdelvare@suse.com>
22310 L:      linux-hwmon@vger.kernel.org
22311 S:      Maintained
22312 F:      drivers/hwmon/w83795.c
22313
22314 W83L51xD SD/MMC CARD INTERFACE DRIVER
22315 M:      Pierre Ossman <pierre@ossman.eu>
22316 S:      Maintained
22317 F:      drivers/mmc/host/wbsd.*
22318
22319 WACOM PROTOCOL 4 SERIAL TABLETS
22320 M:      Julian Squires <julian@cipht.net>
22321 M:      Hans de Goede <hdegoede@redhat.com>
22322 L:      linux-input@vger.kernel.org
22323 S:      Maintained
22324 F:      drivers/input/tablet/wacom_serial4.c
22325
22326 WANGXUN ETHERNET DRIVER
22327 M:      Jiawen Wu <jiawenwu@trustnetic.com>
22328 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
22329 W:      https://www.net-swift.com
22330 L:      netdev@vger.kernel.org
22331 S:      Maintained
22332 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22333 F:      drivers/net/ethernet/wangxun/
22334
22335 WATCHDOG DEVICE DRIVERS
22336 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
22337 M:      Guenter Roeck <linux@roeck-us.net>
22338 L:      linux-watchdog@vger.kernel.org
22339 S:      Maintained
22340 W:      http://www.linux-watchdog.org/
22341 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22342 F:      Documentation/devicetree/bindings/watchdog/
22343 F:      Documentation/watchdog/
22344 F:      drivers/watchdog/
22345 F:      include/linux/watchdog.h
22346 F:      include/uapi/linux/watchdog.h
22347 F:      include/trace/events/watchdog.h
22348
22349 WHISKEYCOVE PMIC GPIO DRIVER
22350 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22351 L:      linux-gpio@vger.kernel.org
22352 S:      Maintained
22353 F:      drivers/gpio/gpio-wcove.c
22354
22355 WHWAVE RTC DRIVER
22356 M:      Dianlong Li <long17.cool@163.com>
22357 L:      linux-rtc@vger.kernel.org
22358 S:      Maintained
22359 F:      drivers/rtc/rtc-sd3078.c
22360
22361 WIIMOTE HID DRIVER
22362 M:      David Rheinsberg <david.rheinsberg@gmail.com>
22363 L:      linux-input@vger.kernel.org
22364 S:      Maintained
22365 F:      drivers/hid/hid-wiimote*
22366
22367 WILOCITY WIL6210 WIRELESS DRIVER
22368 L:      linux-wireless@vger.kernel.org
22369 S:      Orphan
22370 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22371 F:      drivers/net/wireless/ath/wil6210/
22372
22373 WINBOND CIR DRIVER
22374 M:      David Härdeman <david@hardeman.nu>
22375 S:      Maintained
22376 F:      drivers/media/rc/winbond-cir.c
22377
22378 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22379 M:      William Breathitt Gray <william.gray@linaro.org>
22380 L:      linux-watchdog@vger.kernel.org
22381 S:      Maintained
22382 F:      drivers/watchdog/ebc-c384_wdt.c
22383
22384 WINSYSTEMS WS16C48 GPIO DRIVER
22385 M:      William Breathitt Gray <william.gray@linaro.org>
22386 L:      linux-gpio@vger.kernel.org
22387 S:      Maintained
22388 F:      drivers/gpio/gpio-ws16c48.c
22389
22390 WIREGUARD SECURE NETWORK TUNNEL
22391 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22392 L:      wireguard@lists.zx2c4.com
22393 L:      netdev@vger.kernel.org
22394 S:      Maintained
22395 F:      drivers/net/wireguard/
22396 F:      tools/testing/selftests/wireguard/
22397
22398 WISTRON LAPTOP BUTTON DRIVER
22399 M:      Miloslav Trmac <mitr@volny.cz>
22400 S:      Maintained
22401 F:      drivers/input/misc/wistron_btns.c
22402
22403 WL3501 WIRELESS PCMCIA CARD DRIVER
22404 L:      linux-wireless@vger.kernel.org
22405 S:      Odd fixes
22406 F:      drivers/net/wireless/wl3501*
22407
22408 WOLFSON MICROELECTRONICS DRIVERS
22409 L:      patches@opensource.cirrus.com
22410 S:      Supported
22411 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22412 T:      git https://github.com/CirrusLogic/linux-drivers.git
22413 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22414 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22415 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22416 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22417 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22418 F:      Documentation/devicetree/bindings/sound/wm*
22419 F:      Documentation/hwmon/wm83??.rst
22420 F:      arch/arm/mach-s3c/mach-crag6410*
22421 F:      drivers/clk/clk-wm83*.c
22422 F:      drivers/gpio/gpio-*wm*.c
22423 F:      drivers/gpio/gpio-arizona.c
22424 F:      drivers/hwmon/wm83??-hwmon.c
22425 F:      drivers/input/misc/wm831x-on.c
22426 F:      drivers/input/touchscreen/wm831x-ts.c
22427 F:      drivers/input/touchscreen/wm97*.c
22428 F:      drivers/leds/leds-wm83*.c
22429 F:      drivers/mfd/arizona*
22430 F:      drivers/mfd/cs47l24*
22431 F:      drivers/mfd/wm*.c
22432 F:      drivers/power/supply/wm83*.c
22433 F:      drivers/regulator/arizona*
22434 F:      drivers/regulator/wm8*.c
22435 F:      drivers/rtc/rtc-wm83*.c
22436 F:      drivers/video/backlight/wm83*_bl.c
22437 F:      drivers/watchdog/wm83*_wdt.c
22438 F:      include/linux/mfd/arizona/
22439 F:      include/linux/mfd/wm831x/
22440 F:      include/linux/mfd/wm8350/
22441 F:      include/linux/mfd/wm8400*
22442 F:      include/linux/regulator/arizona*
22443 F:      include/linux/wm97xx.h
22444 F:      include/sound/wm????.h
22445 F:      sound/soc/codecs/arizona*
22446 F:      sound/soc/codecs/cs47l24*
22447 F:      sound/soc/codecs/wm*
22448
22449 WORKQUEUE
22450 M:      Tejun Heo <tj@kernel.org>
22451 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22452 S:      Maintained
22453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22454 F:      Documentation/core-api/workqueue.rst
22455 F:      include/linux/workqueue.h
22456 F:      kernel/workqueue.c
22457
22458 WWAN DRIVERS
22459 M:      Loic Poulain <loic.poulain@linaro.org>
22460 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22461 R:      Johannes Berg <johannes@sipsolutions.net>
22462 L:      netdev@vger.kernel.org
22463 S:      Maintained
22464 F:      drivers/net/wwan/
22465 F:      include/linux/wwan.h
22466 F:      include/uapi/linux/wwan.h
22467
22468 X-POWERS AXP288 PMIC DRIVERS
22469 M:      Hans de Goede <hdegoede@redhat.com>
22470 S:      Maintained
22471 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22472 N:      axp288
22473
22474 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22475 M:      Chen-Yu Tsai <wens@csie.org>
22476 L:      linux-kernel@vger.kernel.org
22477 S:      Maintained
22478 N:      axp[128]
22479
22480 X.25 STACK
22481 M:      Martin Schiller <ms@dev.tdt.de>
22482 L:      linux-x25@vger.kernel.org
22483 S:      Maintained
22484 F:      Documentation/networking/lapb-module.rst
22485 F:      Documentation/networking/x25*
22486 F:      drivers/net/wan/hdlc_x25.c
22487 F:      drivers/net/wan/lapbether.c
22488 F:      include/*/lapb.h
22489 F:      include/net/x25*
22490 F:      include/uapi/linux/x25.h
22491 F:      net/lapb/
22492 F:      net/x25/
22493
22494 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22495 M:      Thomas Gleixner <tglx@linutronix.de>
22496 M:      Ingo Molnar <mingo@redhat.com>
22497 M:      Borislav Petkov <bp@alien8.de>
22498 M:      Dave Hansen <dave.hansen@linux.intel.com>
22499 M:      x86@kernel.org
22500 R:      "H. Peter Anvin" <hpa@zytor.com>
22501 L:      linux-kernel@vger.kernel.org
22502 S:      Maintained
22503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22504 F:      Documentation/devicetree/bindings/x86/
22505 F:      Documentation/x86/
22506 F:      arch/x86/
22507
22508 X86 ENTRY CODE
22509 M:      Andy Lutomirski <luto@kernel.org>
22510 L:      linux-kernel@vger.kernel.org
22511 S:      Maintained
22512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22513 F:      arch/x86/entry/
22514
22515 X86 MCE INFRASTRUCTURE
22516 M:      Tony Luck <tony.luck@intel.com>
22517 M:      Borislav Petkov <bp@alien8.de>
22518 L:      linux-edac@vger.kernel.org
22519 S:      Maintained
22520 F:      Documentation/ABI/testing/sysfs-mce
22521 F:      Documentation/x86/x86_64/machinecheck.rst
22522 F:      arch/x86/kernel/cpu/mce/*
22523
22524 X86 MICROCODE UPDATE SUPPORT
22525 M:      Borislav Petkov <bp@alien8.de>
22526 S:      Maintained
22527 F:      arch/x86/kernel/cpu/microcode/*
22528
22529 X86 MM
22530 M:      Dave Hansen <dave.hansen@linux.intel.com>
22531 M:      Andy Lutomirski <luto@kernel.org>
22532 M:      Peter Zijlstra <peterz@infradead.org>
22533 L:      linux-kernel@vger.kernel.org
22534 S:      Maintained
22535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22536 F:      arch/x86/mm/
22537
22538 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22539 M:      Hans de Goede <hdegoede@redhat.com>
22540 L:      platform-driver-x86@vger.kernel.org
22541 S:      Maintained
22542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22543 F:      drivers/platform/x86/x86-android-tablets.c
22544
22545 X86 PLATFORM DRIVERS
22546 M:      Hans de Goede <hdegoede@redhat.com>
22547 M:      Mark Gross <markgross@kernel.org>
22548 L:      platform-driver-x86@vger.kernel.org
22549 S:      Maintained
22550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22551 F:      drivers/platform/olpc/
22552 F:      drivers/platform/x86/
22553 F:      include/linux/platform_data/x86/
22554
22555 X86 PLATFORM DRIVERS - ARCH
22556 R:      Darren Hart <dvhart@infradead.org>
22557 R:      Andy Shevchenko <andy@infradead.org>
22558 L:      platform-driver-x86@vger.kernel.org
22559 L:      x86@kernel.org
22560 S:      Maintained
22561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22562 F:      arch/x86/platform
22563
22564 X86 PLATFORM UV HPE SUPERDOME FLEX
22565 M:      Steve Wahl <steve.wahl@hpe.com>
22566 R:      Mike Travis <mike.travis@hpe.com>
22567 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22568 R:      Russ Anderson <russ.anderson@hpe.com>
22569 S:      Supported
22570 F:      arch/x86/include/asm/uv/
22571 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22572 F:      arch/x86/platform/uv/
22573
22574 X86 STACK UNWINDING
22575 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22576 M:      Peter Zijlstra <peterz@infradead.org>
22577 S:      Supported
22578 F:      arch/x86/include/asm/unwind*.h
22579 F:      arch/x86/kernel/dumpstack.c
22580 F:      arch/x86/kernel/stacktrace.c
22581 F:      arch/x86/kernel/unwind_*.c
22582
22583 X86 VDSO
22584 M:      Andy Lutomirski <luto@kernel.org>
22585 L:      linux-kernel@vger.kernel.org
22586 S:      Maintained
22587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22588 F:      arch/x86/entry/vdso/
22589
22590 XARRAY
22591 M:      Matthew Wilcox <willy@infradead.org>
22592 L:      linux-fsdevel@vger.kernel.org
22593 S:      Supported
22594 F:      Documentation/core-api/xarray.rst
22595 F:      include/linux/idr.h
22596 F:      include/linux/xarray.h
22597 F:      lib/idr.c
22598 F:      lib/xarray.c
22599 F:      tools/testing/radix-tree
22600
22601 XBOX DVD IR REMOTE
22602 M:      Benjamin Valentin <benpicco@googlemail.com>
22603 S:      Maintained
22604 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22605 F:      drivers/media/rc/xbox_remote.c
22606
22607 XC2028/3028 TUNER DRIVER
22608 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22609 L:      linux-media@vger.kernel.org
22610 S:      Maintained
22611 W:      https://linuxtv.org
22612 T:      git git://linuxtv.org/media_tree.git
22613 F:      drivers/media/tuners/xc2028.*
22614
22615 XDP (eXpress Data Path)
22616 M:      Alexei Starovoitov <ast@kernel.org>
22617 M:      Daniel Borkmann <daniel@iogearbox.net>
22618 M:      David S. Miller <davem@davemloft.net>
22619 M:      Jakub Kicinski <kuba@kernel.org>
22620 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22621 M:      John Fastabend <john.fastabend@gmail.com>
22622 L:      netdev@vger.kernel.org
22623 L:      bpf@vger.kernel.org
22624 S:      Supported
22625 F:      include/net/xdp.h
22626 F:      include/net/xdp_priv.h
22627 F:      include/trace/events/xdp.h
22628 F:      kernel/bpf/cpumap.c
22629 F:      kernel/bpf/devmap.c
22630 F:      net/core/xdp.c
22631 F:      samples/bpf/xdp*
22632 F:      tools/testing/selftests/bpf/*xdp*
22633 F:      tools/testing/selftests/bpf/*/*xdp*
22634 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22635 F:      drivers/net/ethernet/*/*/*xdp*
22636 K:      (?:\b|_)xdp(?:\b|_)
22637
22638 XDP SOCKETS (AF_XDP)
22639 M:      Björn Töpel <bjorn@kernel.org>
22640 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22641 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22642 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22643 L:      netdev@vger.kernel.org
22644 L:      bpf@vger.kernel.org
22645 S:      Maintained
22646 F:      Documentation/networking/af_xdp.rst
22647 F:      include/net/xdp_sock*
22648 F:      include/net/xsk_buff_pool.h
22649 F:      include/uapi/linux/if_xdp.h
22650 F:      include/uapi/linux/xdp_diag.h
22651 F:      include/net/netns/xdp.h
22652 F:      net/xdp/
22653 F:      tools/testing/selftests/bpf/*xsk*
22654
22655 XEN BLOCK SUBSYSTEM
22656 M:      Roger Pau Monné <roger.pau@citrix.com>
22657 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22658 S:      Supported
22659 F:      drivers/block/xen*
22660 F:      drivers/block/xen-blkback/*
22661
22662 XEN HYPERVISOR ARM
22663 M:      Stefano Stabellini <sstabellini@kernel.org>
22664 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22665 S:      Maintained
22666 F:      arch/arm/include/asm/xen/
22667 F:      arch/arm/xen/
22668
22669 XEN HYPERVISOR ARM64
22670 M:      Stefano Stabellini <sstabellini@kernel.org>
22671 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22672 S:      Maintained
22673 F:      arch/arm64/include/asm/xen/
22674 F:      arch/arm64/xen/
22675
22676 XEN HYPERVISOR INTERFACE
22677 M:      Juergen Gross <jgross@suse.com>
22678 M:      Stefano Stabellini <sstabellini@kernel.org>
22679 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22680 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22681 S:      Supported
22682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22683 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22684 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22685 F:      drivers/*/xen-*front.c
22686 F:      drivers/xen/
22687 F:      include/uapi/xen/
22688 F:      include/xen/
22689 F:      kernel/configs/xen.config
22690
22691 XEN HYPERVISOR X86
22692 M:      Juergen Gross <jgross@suse.com>
22693 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22694 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22695 S:      Supported
22696 F:      arch/x86/configs/xen.config
22697 F:      arch/x86/include/asm/pvclock-abi.h
22698 F:      arch/x86/include/asm/xen/
22699 F:      arch/x86/platform/pvh/
22700 F:      arch/x86/xen/
22701
22702 XEN NETWORK BACKEND DRIVER
22703 M:      Wei Liu <wei.liu@kernel.org>
22704 M:      Paul Durrant <paul@xen.org>
22705 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22706 L:      netdev@vger.kernel.org
22707 S:      Supported
22708 F:      drivers/net/xen-netback/*
22709
22710 XEN PCI SUBSYSTEM
22711 M:      Juergen Gross <jgross@suse.com>
22712 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22713 S:      Supported
22714 F:      arch/x86/pci/*xen*
22715 F:      drivers/pci/*xen*
22716
22717 XEN PVSCSI DRIVERS
22718 M:      Juergen Gross <jgross@suse.com>
22719 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22720 L:      linux-scsi@vger.kernel.org
22721 S:      Supported
22722 F:      drivers/scsi/xen-scsifront.c
22723 F:      drivers/xen/xen-scsiback.c
22724 F:      include/xen/interface/io/vscsiif.h
22725
22726 XEN PVUSB DRIVER
22727 M:      Juergen Gross <jgross@suse.com>
22728 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22729 L:      linux-usb@vger.kernel.org
22730 S:      Supported
22731 F:      drivers/usb/host/xen*
22732 F:      include/xen/interface/io/usbif.h
22733
22734 XEN SOUND FRONTEND DRIVER
22735 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22736 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22737 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22738 S:      Supported
22739 F:      sound/xen/*
22740
22741 XEN SWIOTLB SUBSYSTEM
22742 M:      Juergen Gross <jgross@suse.com>
22743 M:      Stefano Stabellini <sstabellini@kernel.org>
22744 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22745 L:      iommu@lists.linux.dev
22746 S:      Supported
22747 F:      arch/*/include/asm/xen/swiotlb-xen.h
22748 F:      drivers/xen/swiotlb-xen.c
22749 F:      include/xen/arm/swiotlb-xen.h
22750 F:      include/xen/swiotlb-xen.h
22751
22752 XFS FILESYSTEM
22753 C:      irc://irc.oftc.net/xfs
22754 M:      Darrick J. Wong <djwong@kernel.org>
22755 L:      linux-xfs@vger.kernel.org
22756 S:      Supported
22757 W:      http://xfs.org/
22758 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22759 F:      Documentation/ABI/testing/sysfs-fs-xfs
22760 F:      Documentation/admin-guide/xfs.rst
22761 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22762 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22763 F:      fs/xfs/
22764 F:      include/uapi/linux/dqblk_xfs.h
22765 F:      include/uapi/linux/fsmap.h
22766
22767 XILINX AMS DRIVER
22768 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22769 L:      linux-iio@vger.kernel.org
22770 S:      Maintained
22771 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22772 F:      drivers/iio/adc/xilinx-ams.c
22773
22774 XILINX AXI ETHERNET DRIVER
22775 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22776 S:      Maintained
22777 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22778
22779 XILINX CAN DRIVER
22780 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22781 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22782 L:      linux-can@vger.kernel.org
22783 S:      Maintained
22784 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22785 F:      drivers/net/can/xilinx_can.c
22786
22787 XILINX GPIO DRIVER
22788 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22789 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22790 R:      Michal Simek <michal.simek@xilinx.com>
22791 S:      Maintained
22792 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22793 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22794 F:      drivers/gpio/gpio-xilinx.c
22795 F:      drivers/gpio/gpio-zynq.c
22796
22797 XILINX SD-FEC IP CORES
22798 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22799 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22800 S:      Maintained
22801 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22802 F:      Documentation/misc-devices/xilinx_sdfec.rst
22803 F:      drivers/misc/Kconfig
22804 F:      drivers/misc/Makefile
22805 F:      drivers/misc/xilinx_sdfec.c
22806 F:      include/uapi/misc/xilinx_sdfec.h
22807
22808 XILINX PWM DRIVER
22809 M:      Sean Anderson <sean.anderson@seco.com>
22810 S:      Maintained
22811 F:      drivers/pwm/pwm-xilinx.c
22812 F:      include/clocksource/timer-xilinx.h
22813
22814 XILINX UARTLITE SERIAL DRIVER
22815 M:      Peter Korsgaard <jacmet@sunsite.dk>
22816 L:      linux-serial@vger.kernel.org
22817 S:      Maintained
22818 F:      drivers/tty/serial/uartlite.c
22819
22820 XILINX VIDEO IP CORES
22821 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22822 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22823 L:      linux-media@vger.kernel.org
22824 S:      Supported
22825 T:      git git://linuxtv.org/media_tree.git
22826 F:      Documentation/devicetree/bindings/media/xilinx/
22827 F:      drivers/media/platform/xilinx/
22828 F:      include/uapi/linux/xilinx-v4l2-controls.h
22829
22830 XILINX ZYNQMP DPDMA DRIVER
22831 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22832 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22833 L:      dmaengine@vger.kernel.org
22834 S:      Supported
22835 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22836 F:      drivers/dma/xilinx/xilinx_dpdma.c
22837 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22838
22839 XILINX ZYNQMP OCM EDAC DRIVER
22840 M:      Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
22841 M:      Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
22842 S:      Maintained
22843 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
22844 F:      drivers/edac/zynqmp_edac.c
22845
22846 XILINX ZYNQMP PSGTR PHY DRIVER
22847 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22848 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22849 L:      linux-kernel@vger.kernel.org
22850 S:      Supported
22851 T:      git https://github.com/Xilinx/linux-xlnx.git
22852 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22853 F:      drivers/phy/xilinx/phy-zynqmp.c
22854
22855 XILINX ZYNQMP SHA3 DRIVER
22856 M:      Harsha <harsha.harsha@xilinx.com>
22857 S:      Maintained
22858 F:      drivers/crypto/xilinx/zynqmp-sha.c
22859
22860 XILINX EVENT MANAGEMENT DRIVER
22861 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22862 S:      Maintained
22863 F:      drivers/soc/xilinx/xlnx_event_manager.c
22864 F:      include/linux/firmware/xlnx-event-manager.h
22865
22866 XILLYBUS DRIVER
22867 M:      Eli Billauer <eli.billauer@gmail.com>
22868 L:      linux-kernel@vger.kernel.org
22869 S:      Supported
22870 F:      drivers/char/xillybus/
22871
22872 XLP9XX I2C DRIVER
22873 M:      George Cherian <gcherian@marvell.com>
22874 L:      linux-i2c@vger.kernel.org
22875 S:      Supported
22876 W:      http://www.marvell.com
22877 F:      drivers/i2c/busses/i2c-xlp9xx.c
22878
22879 XRA1403 GPIO EXPANDER
22880 M:      Nandor Han <nandor.han@ge.com>
22881 M:      Semi Malinen <semi.malinen@ge.com>
22882 L:      linux-gpio@vger.kernel.org
22883 S:      Maintained
22884 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22885 F:      drivers/gpio/gpio-xra1403.c
22886
22887 XTENSA XTFPGA PLATFORM SUPPORT
22888 M:      Max Filippov <jcmvbkbc@gmail.com>
22889 L:      linux-xtensa@linux-xtensa.org
22890 S:      Maintained
22891 F:      drivers/spi/spi-xtensa-xtfpga.c
22892 F:      sound/soc/xtensa/xtfpga-i2s.c
22893
22894 YAM DRIVER FOR AX.25
22895 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22896 L:      linux-hams@vger.kernel.org
22897 S:      Maintained
22898 F:      drivers/net/hamradio/yam*
22899 F:      include/linux/yam.h
22900
22901 YAMA SECURITY MODULE
22902 M:      Kees Cook <keescook@chromium.org>
22903 S:      Supported
22904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22905 F:      Documentation/admin-guide/LSM/Yama.rst
22906 F:      security/yama/
22907
22908 YEALINK PHONE DRIVER
22909 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22910 L:      usbb2k-api-dev@nongnu.org
22911 S:      Maintained
22912 F:      Documentation/input/devices/yealink.rst
22913 F:      drivers/input/misc/yealink.*
22914
22915 Z8530 DRIVER FOR AX.25
22916 M:      Joerg Reuter <jreuter@yaina.de>
22917 L:      linux-hams@vger.kernel.org
22918 S:      Maintained
22919 W:      http://yaina.de/jreuter/
22920 W:      http://www.qsl.net/dl1bke/
22921 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22922 F:      drivers/net/hamradio/*scc.c
22923 F:      drivers/net/hamradio/z8530.h
22924
22925 ZBUD COMPRESSED PAGE ALLOCATOR
22926 M:      Seth Jennings <sjenning@redhat.com>
22927 M:      Dan Streetman <ddstreet@ieee.org>
22928 L:      linux-mm@kvack.org
22929 S:      Maintained
22930 F:      mm/zbud.c
22931
22932 Z3FOLD COMPRESSED PAGE ALLOCATOR
22933 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22934 R:      Miaohe Lin <linmiaohe@huawei.com>
22935 L:      linux-mm@kvack.org
22936 S:      Maintained
22937 F:      mm/z3fold.c
22938
22939 ZD1211RW WIRELESS DRIVER
22940 M:      Ulrich Kunitz <kune@deine-taler.de>
22941 L:      linux-wireless@vger.kernel.org
22942 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22943 S:      Maintained
22944 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22945 F:      drivers/net/wireless/zydas/zd1211rw/
22946
22947 ZD1301 MEDIA DRIVER
22948 M:      Antti Palosaari <crope@iki.fi>
22949 L:      linux-media@vger.kernel.org
22950 S:      Maintained
22951 W:      https://linuxtv.org/
22952 W:      http://palosaari.fi/linux/
22953 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22954 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22955
22956 ZD1301_DEMOD MEDIA DRIVER
22957 M:      Antti Palosaari <crope@iki.fi>
22958 L:      linux-media@vger.kernel.org
22959 S:      Maintained
22960 W:      https://linuxtv.org/
22961 W:      http://palosaari.fi/linux/
22962 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22963 F:      drivers/media/dvb-frontends/zd1301_demod*
22964
22965 ZHAOXIN PROCESSOR SUPPORT
22966 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22967 L:      linux-kernel@vger.kernel.org
22968 S:      Maintained
22969 F:      arch/x86/kernel/cpu/zhaoxin.c
22970
22971 ZONEFS FILESYSTEM
22972 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22973 M:      Naohiro Aota <naohiro.aota@wdc.com>
22974 R:      Johannes Thumshirn <jth@kernel.org>
22975 L:      linux-fsdevel@vger.kernel.org
22976 S:      Maintained
22977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22978 F:      Documentation/filesystems/zonefs.rst
22979 F:      fs/zonefs/
22980
22981 ZPOOL COMPRESSED PAGE STORAGE API
22982 M:      Dan Streetman <ddstreet@ieee.org>
22983 L:      linux-mm@kvack.org
22984 S:      Maintained
22985 F:      include/linux/zpool.h
22986 F:      mm/zpool.c
22987
22988 ZR36067 VIDEO FOR LINUX DRIVER
22989 M:      Corentin Labbe <clabbe@baylibre.com>
22990 L:      mjpeg-users@lists.sourceforge.net
22991 L:      linux-media@vger.kernel.org
22992 S:      Maintained
22993 W:      http://mjpeg.sourceforge.net/driver-zoran/
22994 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22995 F:      Documentation/driver-api/media/drivers/zoran.rst
22996 F:      drivers/media/pci/zoran/
22997
22998 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22999 M:      Minchan Kim <minchan@kernel.org>
23000 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23001 L:      linux-kernel@vger.kernel.org
23002 S:      Maintained
23003 F:      Documentation/admin-guide/blockdev/zram.rst
23004 F:      drivers/block/zram/
23005
23006 ZS DECSTATION Z85C30 SERIAL DRIVER
23007 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
23008 S:      Maintained
23009 F:      drivers/tty/serial/zs.*
23010
23011 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
23012 M:      Minchan Kim <minchan@kernel.org>
23013 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23014 L:      linux-mm@kvack.org
23015 S:      Maintained
23016 F:      Documentation/mm/zsmalloc.rst
23017 F:      include/linux/zsmalloc.h
23018 F:      mm/zsmalloc.c
23019
23020 ZSTD
23021 M:      Nick Terrell <terrelln@fb.com>
23022 S:      Maintained
23023 B:      https://github.com/facebook/zstd/issues
23024 T:      git https://github.com/terrelln/linux.git
23025 F:      include/linux/zstd*
23026 F:      lib/zstd/
23027 F:      lib/decompress_unzstd.c
23028 F:      crypto/zstd.c
23029 N:      zstd
23030 K:      zstd
23031
23032 ZSWAP COMPRESSED SWAP CACHING
23033 M:      Seth Jennings <sjenning@redhat.com>
23034 M:      Dan Streetman <ddstreet@ieee.org>
23035 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23036 L:      linux-mm@kvack.org
23037 S:      Maintained
23038 F:      mm/zswap.c
23039
23040 THE REST
23041 M:      Linus Torvalds <torvalds@linux-foundation.org>
23042 L:      linux-kernel@vger.kernel.org
23043 S:      Buried alive in reporters
23044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23045 F:      *
23046 F:      */